summaryrefslogtreecommitdiffabout
path: root/src
authorMichael Krelin <hacker@klever.net>2011-08-30 20:52:04 (UTC)
committer Michael Krelin <hacker@klever.net>2011-08-30 20:52:04 (UTC)
commit55bdd80087710b94e747a622fad8bd0ee3e3dec3 (patch) (unidiff)
tree6d4b8ab76b18c7f6e3d6d2823470c8662cbdf8f5 /src
parent77706495aa0cc1706cfe1535b40477e004312081 (diff)
downloadiii-55bdd80087710b94e747a622fad8bd0ee3e3dec3.zip
iii-55bdd80087710b94e747a622fad8bd0ee3e3dec3.tar.gz
iii-55bdd80087710b94e747a622fad8bd0ee3e3dec3.tar.bz2
updated list of supported suffixes
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'src') (more/less context) (ignore whitespace changes)
-rw-r--r--src/eyefiservice.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/eyefiservice.cc b/src/eyefiservice.cc
index d7f0f04..77526b9 100644
--- a/src/eyefiservice.cc
+++ b/src/eyefiservice.cc
@@ -1,223 +1,227 @@
1#include <cassert> 1#include <cassert>
2#include <iostream> 2#include <iostream>
3#include <fstream> 3#include <fstream>
4#include <stdexcept> 4#include <stdexcept>
5#include <iterator> 5#include <iterator>
6#include <algorithm>
6#include <syslog.h> 7#include <syslog.h>
7#include <sys/wait.h> 8#include <sys/wait.h>
8#include <autosprintf.h> 9#include <autosprintf.h>
9#include "eyekinfig.h" 10#include "eyekinfig.h"
10#include "eyetil.h" 11#include "eyetil.h"
11#include "soapeyefiService.h" 12#include "soapeyefiService.h"
12 13
13static binary_t session_nonce; 14static binary_t session_nonce;
14 15
15static bool detached_child() { 16static bool detached_child() {
16 pid_t p = fork(); 17 pid_t p = fork();
17 if(p<0) { 18 if(p<0) {
18 syslog(LOG_ERR,"Failed to fork away for hook execution"); 19 syslog(LOG_ERR,"Failed to fork away for hook execution");
19 _exit(-1); 20 _exit(-1);
20 } 21 }
21 if(!p) { 22 if(!p) {
22 setsid(); 23 setsid();
23 for(int i=getdtablesize();i>=0;--i) close(i); 24 for(int i=getdtablesize();i>=0;--i) close(i);
24 int i=open("/dev/null",O_RDWR); assert(i==0); 25 int i=open("/dev/null",O_RDWR); assert(i==0);
25 i = dup(i); assert(i==1); 26 i = dup(i); assert(i==1);
26 i = dup(i); assert(i==2); 27 i = dup(i); assert(i==2);
27 return true; 28 return true;
28 } 29 }
29 return false; 30 return false;
30} 31}
31 32
32int eyefiService::StartSession( 33int eyefiService::StartSession(
33 std::string macaddress,std::string cnonce, 34 std::string macaddress,std::string cnonce,
34 int transfermode,long transfermodetimestamp, 35 int transfermode,long transfermodetimestamp,
35 struct rns__StartSessionResponse &r ) try { 36 struct rns__StartSessionResponse &r ) try {
36#ifndef NDEBUG 37#ifndef NDEBUG
37 syslog(LOG_DEBUG, 38 syslog(LOG_DEBUG,
38 "StartSession request from %s with cnonce=%s, transfermode=%d, transfermodetimestamp=%ld", 39 "StartSession request from %s with cnonce=%s, transfermode=%d, transfermodetimestamp=%ld",
39 macaddress.c_str(), cnonce.c_str(), transfermode, transfermodetimestamp ); 40 macaddress.c_str(), cnonce.c_str(), transfermode, transfermodetimestamp );
40#endif 41#endif
41 eyekinfig_t eyekinfig(macaddress); 42 eyekinfig_t eyekinfig(macaddress);
42 r.credential = binary_t(macaddress+cnonce+eyekinfig.get_upload_key()).md5().hex(); 43 r.credential = binary_t(macaddress+cnonce+eyekinfig.get_upload_key()).md5().hex();
43 44
44 r.snonce = session_nonce.make_nonce().hex(); 45 r.snonce = session_nonce.make_nonce().hex();
45 r.transfermode=transfermode; 46 r.transfermode=transfermode;
46 r.transfermodetimestamp=transfermodetimestamp; 47 r.transfermodetimestamp=transfermodetimestamp;
47 r.upsyncallowed=false; 48 r.upsyncallowed=false;
48 49
49 std::string cmd = eyekinfig.get_on_start_session(); 50 std::string cmd = eyekinfig.get_on_start_session();
50 if(!cmd.empty()) { 51 if(!cmd.empty()) {
51 if(detached_child()) { 52 if(detached_child()) {
52 putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) ); 53 putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) );
53 putenv( gnu::autosprintf("EYEFI_TRANSFERMODE=%d",transfermode) ); 54 putenv( gnu::autosprintf("EYEFI_TRANSFERMODE=%d",transfermode) );
54 putenv( gnu::autosprintf("EYEFI_TRANSFERMODETIMESTAMP=%ld",transfermodetimestamp) ); 55 putenv( gnu::autosprintf("EYEFI_TRANSFERMODETIMESTAMP=%ld",transfermodetimestamp) );
55 char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 }; 56 char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 };
56 execv("/bin/sh",argv); 57 execv("/bin/sh",argv);
57 syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str()); 58 syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str());
58 _exit(-1); 59 _exit(-1);
59 } 60 }
60 } 61 }
61 return SOAP_OK; 62 return SOAP_OK;
62}catch(std::runtime_error& e) { 63}catch(std::runtime_error& e) {
63 syslog(LOG_ERR,"error while processing StartSession: %s",e.what()); 64 syslog(LOG_ERR,"error while processing StartSession: %s",e.what());
64} 65}
65 66
66int eyefiService::GetPhotoStatus( 67int eyefiService::GetPhotoStatus(
67 std::string credential, std::string macaddress, 68 std::string credential, std::string macaddress,
68 std::string filename, long filesize, std::string filesignature, 69 std::string filename, long filesize, std::string filesignature,
69 int flags, 70 int flags,
70 struct rns__GetPhotoStatusResponse &r ) { 71 struct rns__GetPhotoStatusResponse &r ) {
71#ifndef NDEBUG 72#ifndef NDEBUG
72 syslog(LOG_DEBUG, 73 syslog(LOG_DEBUG,
73 "GetPhotoStatus request from %s with credential=%s, filename=%s, filesize=%ld, filesignature=%s, flags=%d; session nonce=%s", 74 "GetPhotoStatus request from %s with credential=%s, filename=%s, filesize=%ld, filesignature=%s, flags=%d; session nonce=%s",
74 macaddress.c_str(), credential.c_str(), filename.c_str(), filesize, filesignature.c_str(), flags, 75 macaddress.c_str(), credential.c_str(), filename.c_str(), filesize, filesignature.c_str(), flags,
75 session_nonce.hex().c_str() ); 76 session_nonce.hex().c_str() );
76#endif 77#endif
77 78
78 std::string computed_credential = binary_t(macaddress+eyekinfig_t(macaddress).get_upload_key()+session_nonce.hex()).md5().hex(); 79 std::string computed_credential = binary_t(macaddress+eyekinfig_t(macaddress).get_upload_key()+session_nonce.hex()).md5().hex();
79 80
80#ifndef NDEBUG 81#ifndef NDEBUG
81 syslog(LOG_DEBUG, " computed credential=%s", computed_credential.c_str()); 82 syslog(LOG_DEBUG, " computed credential=%s", computed_credential.c_str());
82#endif 83#endif
83 84
84 if (credential != computed_credential) throw std::runtime_error("card authentication failed"); 85 if (credential != computed_credential) throw std::runtime_error("card authentication failed");
85 86
86 r.fileid = 1; r.offset = 0; 87 r.fileid = 1; r.offset = 0;
87 return SOAP_OK; 88 return SOAP_OK;
88} 89}
89 90
90int eyefiService::MarkLastPhotoInRoll( 91int eyefiService::MarkLastPhotoInRoll(
91 std::string macaddress, int mergedelta, 92 std::string macaddress, int mergedelta,
92 struct rns__MarkLastPhotoInRollResponse &r ) { 93 struct rns__MarkLastPhotoInRollResponse &r ) {
93#ifndef NDEBUG 94#ifndef NDEBUG
94 syslog(LOG_DEBUG, 95 syslog(LOG_DEBUG,
95 "MarkLastPhotoInRoll request from %s with mergedelta=%d", 96 "MarkLastPhotoInRoll request from %s with mergedelta=%d",
96 macaddress.c_str(), mergedelta ); 97 macaddress.c_str(), mergedelta );
97#endif 98#endif
98 std::string cmd = eyekinfig_t(macaddress).get_on_mark_last_photo_in_roll(); 99 std::string cmd = eyekinfig_t(macaddress).get_on_mark_last_photo_in_roll();
99 if(!cmd.empty()) { 100 if(!cmd.empty()) {
100 if(detached_child()) { 101 if(detached_child()) {
101 putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) ); 102 putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) );
102 putenv( gnu::autosprintf("EYEFI_MERGEDELTA=%d",mergedelta) ); 103 putenv( gnu::autosprintf("EYEFI_MERGEDELTA=%d",mergedelta) );
103 char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 }; 104 char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 };
104 execv("/bin/sh",argv); 105 execv("/bin/sh",argv);
105 syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str()); 106 syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str());
106 _exit(-1); 107 _exit(-1);
107 } 108 }
108 } 109 }
109 keep_alive = 0; 110 keep_alive = 0;
110 return SOAP_OK; 111 return SOAP_OK;
111} 112}
112 113
113int eyefiService::UploadPhoto( 114int eyefiService::UploadPhoto(
114 int fileid, std::string macaddress, 115 int fileid, std::string macaddress,
115 std::string filename, long filesize, std::string filesignature, 116 std::string filename, long filesize, std::string filesignature,
116 std::string encryption, int flags, 117 std::string encryption, int flags,
117 struct rns__UploadPhotoResponse& r ) { 118 struct rns__UploadPhotoResponse& r ) {
118#ifndef NDEBUG 119#ifndef NDEBUG
119 syslog(LOG_DEBUG, 120 syslog(LOG_DEBUG,
120 "UploadPhoto request from %s with fileid=%d, filename=%s, filesize=%ld," 121 "UploadPhoto request from %s with fileid=%d, filename=%s, filesize=%ld,"
121 " filesignature=%s, encryption=%s, flags=%04X", 122 " filesignature=%s, encryption=%s, flags=%04X",
122 macaddress.c_str(), fileid, filename.c_str(), filesize, 123 macaddress.c_str(), fileid, filename.c_str(), filesize,
123 filesignature.c_str(), encryption.c_str(), flags ); 124 filesignature.c_str(), encryption.c_str(), flags );
124#endif 125#endif
125 eyekinfig_t eyekinfig(macaddress); 126 eyekinfig_t eyekinfig(macaddress);
126 127
127 umask(eyekinfig.get_umask()); 128 umask(eyekinfig.get_umask());
128 129
129 std::string td = eyekinfig.get_targetdir(); 130 std::string td = eyekinfig.get_targetdir();
130 tmpdir_t indir(td+"/.incoming.XXXXXX"); 131 tmpdir_t indir(td+"/.incoming.XXXXXX");
131 132
132 std::string tf,lf; 133 std::string tf,lf;
133 binary_t digest, idigest; 134 binary_t digest, idigest;
134 135
135 for(soap_multipart::iterator i=mime.begin(),ie=mime.end();i!=ie;++i) { 136 for(soap_multipart::iterator i=mime.begin(),ie=mime.end();i!=ie;++i) {
136#ifndef NDEBUG 137#ifndef NDEBUG
137 syslog(LOG_DEBUG, 138 syslog(LOG_DEBUG,
138 " MIME attachment with id=%s, type=%s, size=%ld", 139 " MIME attachment with id=%s, type=%s, size=%ld",
139 (*i).id, (*i).type, (long)(*i).size ); 140 (*i).id, (*i).type, (long)(*i).size );
140#endif 141#endif
141 142
142 if((*i).id && !strcmp((*i).id,"INTEGRITYDIGEST")) { 143 if((*i).id && !strcmp((*i).id,"INTEGRITYDIGEST")) {
143 std::string idigestr((*i).ptr,(*i).size); 144 std::string idigestr((*i).ptr,(*i).size);
144#ifndef NDEBUG 145#ifndef NDEBUG
145 syslog(LOG_DEBUG, " INTEGRITYDIGEST=%s", idigestr.c_str()); 146 syslog(LOG_DEBUG, " INTEGRITYDIGEST=%s", idigestr.c_str());
146#endif 147#endif
147 idigest.from_hex(idigestr); 148 idigest.from_hex(idigestr);
148 } 149 }
149 if( (*i).id && !strcmp((*i).id,"FILENAME") ) { 150 if( (*i).id && !strcmp((*i).id,"FILENAME") ) {
150 assert( (*i).type && !strcmp((*i).type,"application/x-tar") ); 151 assert( (*i).type && !strcmp((*i).type,"application/x-tar") );
151#ifdef III_SAVE_TARS 152#ifdef III_SAVE_TARS
152 std::string tarfile = indir.get_file(filename); 153 std::string tarfile = indir.get_file(filename);
153 { 154 {
154 std::ofstream(tarfile.c_str(),std::ios::out|std::ios::binary).write((*i).ptr,(*i).size); 155 std::ofstream(tarfile.c_str(),std::ios::out|std::ios::binary).write((*i).ptr,(*i).size);
155 } 156 }
156#endif 157#endif
157 158
158 if(!tf.empty()) throw std::runtime_error("already seen tarball"); 159 if(!tf.empty()) throw std::runtime_error("already seen tarball");
159 if(!digest.empty()) throw std::runtime_error("already have integrity digest"); 160 if(!digest.empty()) throw std::runtime_error("already have integrity digest");
160 digest = integrity_digest((*i).ptr,(*i).size,eyekinfig.get_upload_key()); 161 digest = integrity_digest((*i).ptr,(*i).size,eyekinfig.get_upload_key());
161#ifndef NDEBUG 162#ifndef NDEBUG
162 syslog(LOG_DEBUG," computed integrity digest=%s", digest.hex().c_str()); 163 syslog(LOG_DEBUG," computed integrity digest=%s", digest.hex().c_str());
163#endif 164#endif
164 165
165 tarchive_t a((*i).ptr,(*i).size); 166 tarchive_t a((*i).ptr,(*i).size);
166 while(a.read_next_header()) { 167 while(a.read_next_header()) {
167 std::string f = indir.get_file(a.entry_pathname()); 168 std::string f = indir.get_file(a.entry_pathname());
168 std::string::size_type fl = f.length(); 169 std::string::size_type fl = f.length();
169 if(fl<4) continue; 170 if(fl<4) continue;
170 const char *s = f.c_str()+fl-4; 171 const char *s = f.c_str()+fl-4;
171 if(!(strcasecmp(s,".JPG") && strcasecmp(s,".AVI"))) 172 static const char *suffixes[] = { ".JPG",".AVI",".MP4",".NEF",".RAW",".TIF" };
173 if(std::find_if(suffixes,suffixes+sizeof(suffixes)/sizeof(*suffixes),
174 std::not1(std::bind1st(std::ptr_fun(strcasecmp),s)))
175 != suffixes+sizeof(suffixes)/sizeof(*suffixes))
172 tf = f; 176 tf = f;
173 else if(!strcasecmp(s,".log")) 177 else if(!strcasecmp(s,".log"))
174 lf = f; 178 lf = f;
175 else continue; 179 else continue;
176 int fd=open(f.c_str(),O_CREAT|O_WRONLY,0666); 180 int fd=open(f.c_str(),O_CREAT|O_WRONLY,0666);
177 if(fd<0) 181 if(fd<0)
178 throw std::runtime_error(gnu::autosprintf("failed to create output file '%s'",f.c_str())); 182 throw std::runtime_error(gnu::autosprintf("failed to create output file '%s'",f.c_str()));
179 if(!a.read_data_into_fd(fd)) 183 if(!a.read_data_into_fd(fd))
180 throw std::runtime_error(gnu::autosprintf("failed to untar file into '%s'",f.c_str())); 184 throw std::runtime_error(gnu::autosprintf("failed to untar file into '%s'",f.c_str()));
181 close(fd); 185 close(fd);
182 } 186 }
183 } 187 }
184 } 188 }
185 189
186 if(tf.empty()) throw std::runtime_error("haven't seen THE file"); 190 if(tf.empty()) throw std::runtime_error("haven't seen THE file");
187 if(digest!=idigest) throw std::runtime_error("integrity digest verification failed"); 191 if(digest!=idigest) throw std::runtime_error("integrity digest verification failed");
188 192
189 std::string::size_type ls = tf.rfind('/'); 193 std::string::size_type ls = tf.rfind('/');
190 // XXX: actually, lack of '/' signifies error here 194 // XXX: actually, lack of '/' signifies error here
191 std::string tbn = (ls==std::string::npos)?tf:tf.substr(ls+1); 195 std::string tbn = (ls==std::string::npos)?tf:tf.substr(ls+1);
192 ls = lf.rfind('/'); 196 ls = lf.rfind('/');
193 std::string lbn = (ls==std::string::npos)?lf:lf.substr(ls+1); 197 std::string lbn = (ls==std::string::npos)?lf:lf.substr(ls+1);
194 std::string ttf,tlf; 198 std::string ttf,tlf;
195 bool success = false; 199 bool success = false;
196 for(int i=0;i<32767;++i) { 200 for(int i=0;i<32767;++i) {
197 const char *fmt = i ? "%1$s/(%3$05d)%2$s" : "%1$s/%2$s"; 201 const char *fmt = i ? "%1$s/(%3$05d)%2$s" : "%1$s/%2$s";
198 ttf = (const char*)gnu::autosprintf(fmt,td.c_str(),tbn.c_str(),i); 202 ttf = (const char*)gnu::autosprintf(fmt,td.c_str(),tbn.c_str(),i);
199 if(!lf.empty()) tlf = (const char*)gnu::autosprintf(fmt,td.c_str(),lbn.c_str(),i); 203 if(!lf.empty()) tlf = (const char*)gnu::autosprintf(fmt,td.c_str(),lbn.c_str(),i);
200 if( (!link(tf.c_str(),ttf.c_str())) && (lf.empty()) || !link(lf.c_str(),tlf.c_str()) ) { 204 if( (!link(tf.c_str(),ttf.c_str())) && (lf.empty()) || !link(lf.c_str(),tlf.c_str()) ) {
201 unlink(tf.c_str()); 205 unlink(tf.c_str());
202 if(!lf.empty()) unlink(lf.c_str()); 206 if(!lf.empty()) unlink(lf.c_str());
203 success=true; 207 success=true;
204 break; 208 break;
205 } 209 }
206 } 210 }
207 std::string cmd = eyekinfig.get_on_upload_photo(); 211 std::string cmd = eyekinfig.get_on_upload_photo();
208 if(success && !cmd.empty()) { 212 if(success && !cmd.empty()) {
209 if(detached_child()) { 213 if(detached_child()) {
210 putenv( gnu::autosprintf("EYEFI_UPLOADED_ORIG=%s",tbn.c_str()) ); 214 putenv( gnu::autosprintf("EYEFI_UPLOADED_ORIG=%s",tbn.c_str()) );
211 putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) ); 215 putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) );
212 putenv( gnu::autosprintf("EYEFI_UPLOADED=%s",ttf.c_str()) ); 216 putenv( gnu::autosprintf("EYEFI_UPLOADED=%s",ttf.c_str()) );
213 if(!lf.empty()) putenv( gnu::autosprintf("EYEFI_LOG=%s",tlf.c_str()) ); 217 if(!lf.empty()) putenv( gnu::autosprintf("EYEFI_LOG=%s",tlf.c_str()) );
214 char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 }; 218 char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 };
215 execv("/bin/sh",argv); 219 execv("/bin/sh",argv);
216 syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str()); 220 syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str());
217 _exit(-1); 221 _exit(-1);
218 } 222 }
219 } 223 }
220 224
221 r.success = true; 225 r.success = true;
222 return SOAP_OK; 226 return SOAP_OK;
223} 227}