author | Michael Krelin <hacker@klever.net> | 2011-03-17 22:13:44 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2011-03-17 22:13:44 (UTC) |
commit | 38252309fa3b72aa121f9fe7016c3a7138ed93cb (patch) (unidiff) | |
tree | 550dd995be7775b4c83426da2731e4e68a8944e9 /src | |
parent | cfeffc5315dd193033182252bb0e4558228e79d1 (diff) | |
download | iii-38252309fa3b72aa121f9fe7016c3a7138ed93cb.zip iii-38252309fa3b72aa121f9fe7016c3a7138ed93cb.tar.gz iii-38252309fa3b72aa121f9fe7016c3a7138ed93cb.tar.bz2 |
do not process configuration twice in StartSession
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | src/eyefiservice.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/eyefiservice.cc b/src/eyefiservice.cc index fb2a90d..291d9fa 100644 --- a/src/eyefiservice.cc +++ b/src/eyefiservice.cc | |||
@@ -1,154 +1,155 @@ | |||
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 <syslog.h> | 6 | #include <syslog.h> |
7 | #include <sys/wait.h> | 7 | #include <sys/wait.h> |
8 | #include <autosprintf.h> | 8 | #include <autosprintf.h> |
9 | #include <openssl/rand.h> | 9 | #include <openssl/rand.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) throw std::runtime_error("failed to fork()"); | 18 | if(p<0) throw std::runtime_error("failed to fork()"); |
19 | if(!p) { | 19 | if(!p) { |
20 | p = fork(); | 20 | p = fork(); |
21 | if(p<0) { | 21 | if(p<0) { |
22 | syslog(LOG_ERR,"Failed to re-fork child process"); | 22 | syslog(LOG_ERR,"Failed to re-fork child process"); |
23 | _exit(-1); | 23 | _exit(-1); |
24 | } | 24 | } |
25 | if(!p) { | 25 | if(!p) { |
26 | setsid(); | 26 | setsid(); |
27 | for(int i=getdtablesize();i>=0;--i) close(i); | 27 | for(int i=getdtablesize();i>=0;--i) close(i); |
28 | int i=open("/dev/null",O_RDWR); assert(i==0); | 28 | int i=open("/dev/null",O_RDWR); assert(i==0); |
29 | i = dup(i); assert(i==1); | 29 | i = dup(i); assert(i==1); |
30 | i = dup(i); assert(i==2); | 30 | i = dup(i); assert(i==2); |
31 | return true; | 31 | return true; |
32 | } | 32 | } |
33 | _exit(0); | 33 | _exit(0); |
34 | } | 34 | } |
35 | int rc; | 35 | int rc; |
36 | if(waitpid(p,&rc,0)<0) throw std::runtime_error("failed to waitpid()"); | 36 | if(waitpid(p,&rc,0)<0) throw std::runtime_error("failed to waitpid()"); |
37 | if(!WIFEXITED(rc)) throw std::runtime_error("error in forked process"); | 37 | if(!WIFEXITED(rc)) throw std::runtime_error("error in forked process"); |
38 | if(WEXITSTATUS(rc)) throw std::runtime_error("forked process signalled error"); | 38 | if(WEXITSTATUS(rc)) throw std::runtime_error("forked process signalled error"); |
39 | return false; | 39 | return false; |
40 | } | 40 | } |
41 | 41 | ||
42 | int eyefiService::StartSession( | 42 | int eyefiService::StartSession( |
43 | std::string macaddress,std::string cnonce, | 43 | std::string macaddress,std::string cnonce, |
44 | int transfermode,long transfermodetimestamp, | 44 | int transfermode,long transfermodetimestamp, |
45 | struct rns__StartSessionResponse &r ) try { | 45 | struct rns__StartSessionResponse &r ) try { |
46 | #ifndef NDEBUG | 46 | #ifndef NDEBUG |
47 | syslog(LOG_DEBUG, | 47 | syslog(LOG_DEBUG, |
48 | "StartSession request from %s with cnonce=%s, transfermode=%d, transfermodetimestamp=%ld", | 48 | "StartSession request from %s with cnonce=%s, transfermode=%d, transfermodetimestamp=%ld", |
49 | macaddress.c_str(), cnonce.c_str(), transfermode, transfermodetimestamp ); | 49 | macaddress.c_str(), cnonce.c_str(), transfermode, transfermodetimestamp ); |
50 | #endif | 50 | #endif |
51 | r.credential = binary_t(macaddress+cnonce+eyekinfig_t(macaddress).get_upload_key()).md5().hex(); | 51 | eyekinfig_t eyekinfig(macaddress); |
52 | r.credential = binary_t(macaddress+cnonce+eyekinfig.get_upload_key()).md5().hex(); | ||
52 | 53 | ||
53 | r.snonce = session_nonce.make_nonce().hex(); | 54 | r.snonce = session_nonce.make_nonce().hex(); |
54 | r.transfermode=transfermode; | 55 | r.transfermode=transfermode; |
55 | r.transfermodetimestamp=transfermodetimestamp; | 56 | r.transfermodetimestamp=transfermodetimestamp; |
56 | r.upsyncallowed=false; | 57 | r.upsyncallowed=false; |
57 | 58 | ||
58 | std::string cmd = eyekinfig_t(macaddress).get_on_start_session(); | 59 | std::string cmd = eyekinfig.get_on_start_session(); |
59 | if(!cmd.empty()) { | 60 | if(!cmd.empty()) { |
60 | if(detached_child()) { | 61 | if(detached_child()) { |
61 | putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) ); | 62 | putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) ); |
62 | putenv( gnu::autosprintf("EYEFI_TRANSFERMODE=%d",transfermode) ); | 63 | putenv( gnu::autosprintf("EYEFI_TRANSFERMODE=%d",transfermode) ); |
63 | putenv( gnu::autosprintf("EYEFI_TRANSFERMODETIMESTAMP=%ld",transfermodetimestamp) ); | 64 | putenv( gnu::autosprintf("EYEFI_TRANSFERMODETIMESTAMP=%ld",transfermodetimestamp) ); |
64 | char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 }; | 65 | char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 }; |
65 | execv("/bin/sh",argv); | 66 | execv("/bin/sh",argv); |
66 | syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str()); | 67 | syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str()); |
67 | _exit(-1); | 68 | _exit(-1); |
68 | } | 69 | } |
69 | } | 70 | } |
70 | return SOAP_OK; | 71 | return SOAP_OK; |
71 | }catch(std::runtime_error& e) { | 72 | }catch(std::runtime_error& e) { |
72 | syslog(LOG_ERR,"error while processing StartSession: %s",e.what()); | 73 | syslog(LOG_ERR,"error while processing StartSession: %s",e.what()); |
73 | } | 74 | } |
74 | 75 | ||
75 | int eyefiService::GetPhotoStatus( | 76 | int eyefiService::GetPhotoStatus( |
76 | std::string credential, std::string macaddress, | 77 | std::string credential, std::string macaddress, |
77 | std::string filename, long filesize, std::string filesignature, | 78 | std::string filename, long filesize, std::string filesignature, |
78 | int flags, | 79 | int flags, |
79 | struct rns__GetPhotoStatusResponse &r ) { | 80 | struct rns__GetPhotoStatusResponse &r ) { |
80 | #ifndef NDEBUG | 81 | #ifndef NDEBUG |
81 | syslog(LOG_DEBUG, | 82 | syslog(LOG_DEBUG, |
82 | "GetPhotoStatus request from %s with credential=%s, filename=%s, filesize=%ld, filesignature=%s, flags=%d; session nonce=%s", | 83 | "GetPhotoStatus request from %s with credential=%s, filename=%s, filesize=%ld, filesignature=%s, flags=%d; session nonce=%s", |
83 | macaddress.c_str(), credential.c_str(), filename.c_str(), filesize, filesignature.c_str(), flags, | 84 | macaddress.c_str(), credential.c_str(), filename.c_str(), filesize, filesignature.c_str(), flags, |
84 | session_nonce.hex().c_str() ); | 85 | session_nonce.hex().c_str() ); |
85 | #endif | 86 | #endif |
86 | 87 | ||
87 | std::string computed_credential = binary_t(macaddress+eyekinfig_t(macaddress).get_upload_key()+session_nonce.hex()).md5().hex(); | 88 | std::string computed_credential = binary_t(macaddress+eyekinfig_t(macaddress).get_upload_key()+session_nonce.hex()).md5().hex(); |
88 | 89 | ||
89 | #ifndef NDEBUG | 90 | #ifndef NDEBUG |
90 | syslog(LOG_DEBUG, " computed credential=%s", computed_credential.c_str()); | 91 | syslog(LOG_DEBUG, " computed credential=%s", computed_credential.c_str()); |
91 | #endif | 92 | #endif |
92 | 93 | ||
93 | if (credential != computed_credential) throw std::runtime_error("card authentication failed"); | 94 | if (credential != computed_credential) throw std::runtime_error("card authentication failed"); |
94 | 95 | ||
95 | r.fileid = 1; r.offset = 0; | 96 | r.fileid = 1; r.offset = 0; |
96 | return SOAP_OK; | 97 | return SOAP_OK; |
97 | } | 98 | } |
98 | 99 | ||
99 | int eyefiService::MarkLastPhotoInRoll( | 100 | int eyefiService::MarkLastPhotoInRoll( |
100 | std::string macaddress, int mergedelta, | 101 | std::string macaddress, int mergedelta, |
101 | struct rns__MarkLastPhotoInRollResponse &r ) { | 102 | struct rns__MarkLastPhotoInRollResponse &r ) { |
102 | #ifndef NDEBUG | 103 | #ifndef NDEBUG |
103 | syslog(LOG_DEBUG, | 104 | syslog(LOG_DEBUG, |
104 | "MarkLastPhotoInRoll request from %s with mergedelta=%d", | 105 | "MarkLastPhotoInRoll request from %s with mergedelta=%d", |
105 | macaddress.c_str(), mergedelta ); | 106 | macaddress.c_str(), mergedelta ); |
106 | #endif | 107 | #endif |
107 | std::string cmd = eyekinfig_t(macaddress).get_on_mark_last_photo_in_roll(); | 108 | std::string cmd = eyekinfig_t(macaddress).get_on_mark_last_photo_in_roll(); |
108 | if(!cmd.empty()) { | 109 | if(!cmd.empty()) { |
109 | if(detached_child()) { | 110 | if(detached_child()) { |
110 | putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) ); | 111 | putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) ); |
111 | putenv( gnu::autosprintf("EYEFI_MERGEDELTA=%d",mergedelta) ); | 112 | putenv( gnu::autosprintf("EYEFI_MERGEDELTA=%d",mergedelta) ); |
112 | char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 }; | 113 | char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 }; |
113 | execv("/bin/sh",argv); | 114 | execv("/bin/sh",argv); |
114 | syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str()); | 115 | syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str()); |
115 | _exit(-1); | 116 | _exit(-1); |
116 | } | 117 | } |
117 | } | 118 | } |
118 | return SOAP_OK; | 119 | return SOAP_OK; |
119 | } | 120 | } |
120 | 121 | ||
121 | int eyefiService::UploadPhoto( | 122 | int eyefiService::UploadPhoto( |
122 | int fileid, std::string macaddress, | 123 | int fileid, std::string macaddress, |
123 | std::string filename, long filesize, std::string filesignature, | 124 | std::string filename, long filesize, std::string filesignature, |
124 | std::string encryption, int flags, | 125 | std::string encryption, int flags, |
125 | struct rns__UploadPhotoResponse& r ) { | 126 | struct rns__UploadPhotoResponse& r ) { |
126 | #ifndef NDEBUG | 127 | #ifndef NDEBUG |
127 | syslog(LOG_DEBUG, | 128 | syslog(LOG_DEBUG, |
128 | "UploadPhoto request from %s with fileid=%d, filename=%s, filesize=%ld," | 129 | "UploadPhoto request from %s with fileid=%d, filename=%s, filesize=%ld," |
129 | " filesignature=%s, encryption=%s, flags=%04X", | 130 | " filesignature=%s, encryption=%s, flags=%04X", |
130 | macaddress.c_str(), fileid, filename.c_str(), filesize, | 131 | macaddress.c_str(), fileid, filename.c_str(), filesize, |
131 | filesignature.c_str(), encryption.c_str(), flags ); | 132 | filesignature.c_str(), encryption.c_str(), flags ); |
132 | #endif | 133 | #endif |
133 | eyekinfig_t eyekinfig(macaddress); | 134 | eyekinfig_t eyekinfig(macaddress); |
134 | 135 | ||
135 | umask(eyekinfig.get_umask()); | 136 | umask(eyekinfig.get_umask()); |
136 | 137 | ||
137 | std::string td = eyekinfig.get_targetdir(); | 138 | std::string td = eyekinfig.get_targetdir(); |
138 | tmpdir_t indir(td+"/.incoming.XXXXXX"); | 139 | tmpdir_t indir(td+"/.incoming.XXXXXX"); |
139 | 140 | ||
140 | std::string jf; | 141 | std::string jf; |
141 | binary_t digest, idigest; | 142 | binary_t digest, idigest; |
142 | 143 | ||
143 | for(soap_multipart::iterator i=mime.begin(),ie=mime.end();i!=ie;++i) { | 144 | for(soap_multipart::iterator i=mime.begin(),ie=mime.end();i!=ie;++i) { |
144 | #ifndef NDEBUG | 145 | #ifndef NDEBUG |
145 | syslog(LOG_DEBUG, | 146 | syslog(LOG_DEBUG, |
146 | " MIME attachment with id=%s, type=%s, size=%ld", | 147 | " MIME attachment with id=%s, type=%s, size=%ld", |
147 | (*i).id, (*i).type, (long)(*i).size ); | 148 | (*i).id, (*i).type, (long)(*i).size ); |
148 | #endif | 149 | #endif |
149 | 150 | ||
150 | if((*i).id && !strcmp((*i).id,"INTEGRITYDIGEST")) { | 151 | if((*i).id && !strcmp((*i).id,"INTEGRITYDIGEST")) { |
151 | std::string idigestr((*i).ptr,(*i).size); | 152 | std::string idigestr((*i).ptr,(*i).size); |
152 | #ifndef NDEBUG | 153 | #ifndef NDEBUG |
153 | syslog(LOG_DEBUG, " INTEGRITYDIGEST=%s", idigestr.c_str()); | 154 | syslog(LOG_DEBUG, " INTEGRITYDIGEST=%s", idigestr.c_str()); |
154 | #endif | 155 | #endif |