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