summaryrefslogtreecommitdiffabout
path: root/src
Unidiff
Diffstat (limited to 'src') (more/less context) (ignore whitespace changes)
-rw-r--r--src/eyefi.h1
-rw-r--r--src/eyefiservice.cc6
2 files changed, 5 insertions, 2 deletions
diff --git a/src/eyefi.h b/src/eyefi.h
index 70e918d..84a5ebd 100644
--- a/src/eyefi.h
+++ b/src/eyefi.h
@@ -1,47 +1,48 @@
1 //gsoap efs service name: eyefi 1 //gsoap efs service name: eyefi
2 //gsoap efs service location: http://api.eye.fi/api/soap/eyefilm/v1 2 //gsoap efs service location: http://api.eye.fi/api/soap/eyefilm/v1
3 //gsoap efs service namespace: EyeFi/SOAP/EyeFilm 3 //gsoap efs service namespace: EyeFi/SOAP/EyeFilm
4 //gsoap efs service method-action:StartSession "urn:StartSession" 4 //gsoap efs service method-action:StartSession "urn:StartSession"
5 //gsoap efs service method-action:GetPhotoStatus "urn:GetPhotoStatus" 5 //gsoap efs service method-action:GetPhotoStatus "urn:GetPhotoStatus"
6 //gsoap efs service method-action:MarkLastPhotoInRoll "urn:MarkLastPhotoInRoll" 6 //gsoap efs service method-action:MarkLastPhotoInRoll "urn:MarkLastPhotoInRoll"
7 //gsoap rns service namespace: http://localhost/api/soap/eyefilm 7 //gsoap rns service namespace: http://localhost/api/soap/eyefilm
8 8
9struct rns__StartSessionResponse { 9struct rns__StartSessionResponse {
10 std::string credential; 10 std::string credential;
11 std::string snonce; 11 std::string snonce;
12 int transfermode; 12 int transfermode;
13 unsigned int transfermodetimestamp; 13 unsigned int transfermodetimestamp;
14 bool upsyncallowed; 14 bool upsyncallowed;
15}; 15};
16 16
17int efs__StartSession( 17int efs__StartSession(
18 std::string macaddress,std::string cnonce, 18 std::string macaddress,std::string cnonce,
19 int transfermode,long transfermodetimestamp, 19 int transfermode,long transfermodetimestamp,
20 struct rns__StartSessionResponse &r ); 20 struct rns__StartSessionResponse &r );
21 21
22struct rns__GetPhotoStatusResponse { 22struct rns__GetPhotoStatusResponse {
23 int fileid; 23 int fileid;
24 long offset; 24 long offset;
25}; 25};
26 26
27int efs__GetPhotoStatus( 27int efs__GetPhotoStatus(
28 std::string credential, std::string macaddress, 28 std::string credential, std::string macaddress,
29 std::string filename, long filesize, std::string filesignature, 29 std::string filename, long filesize, std::string filesignature,
30 int flags,
30 struct rns__GetPhotoStatusResponse &r ); 31 struct rns__GetPhotoStatusResponse &r );
31 32
32struct rns__MarkLastPhotoInRollResponse { 33struct rns__MarkLastPhotoInRollResponse {
33}; 34};
34 35
35int efs__MarkLastPhotoInRoll( 36int efs__MarkLastPhotoInRoll(
36 std::string macaddress, int mergedelta, 37 std::string macaddress, int mergedelta,
37 struct rns__MarkLastPhotoInRollResponse &r ); 38 struct rns__MarkLastPhotoInRollResponse &r );
38 39
39struct rns__UploadPhotoResponse { 40struct rns__UploadPhotoResponse {
40 bool success; 41 bool success;
41}; 42};
42 43
43int efs__UploadPhoto( 44int efs__UploadPhoto(
44 int fileid, std::string macaddress, 45 int fileid, std::string macaddress,
45 std::string filename, long filesize, std::string filesignature, 46 std::string filename, long filesize, std::string filesignature,
46 std::string encryption, int flags, 47 std::string encryption, int flags,
47 struct rns__UploadPhotoResponse& r ); 48 struct rns__UploadPhotoResponse& r );
diff --git a/src/eyefiservice.cc b/src/eyefiservice.cc
index 1a21c02..5cbc396 100644
--- a/src/eyefiservice.cc
+++ b/src/eyefiservice.cc
@@ -1,176 +1,178 @@
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
14static binary_t session_nonce; 14static binary_t session_nonce;
15 15
16static bool detached_child() { 16static 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
42int eyefiService::StartSession( 42int 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 ) { 45 struct rns__StartSessionResponse &r ) {
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 r.credential = binary_t(macaddress+cnonce+eyekinfig_t(macaddress).get_upload_key()).md5().hex();
52 52
53 r.snonce = session_nonce.make_nonce().hex(); 53 r.snonce = session_nonce.make_nonce().hex();
54 r.transfermode=transfermode; 54 r.transfermode=transfermode;
55 r.transfermodetimestamp=transfermodetimestamp; 55 r.transfermodetimestamp=transfermodetimestamp;
56 r.upsyncallowed=false; 56 r.upsyncallowed=false;
57 57
58 std::string cmd = eyekinfig_t(macaddress).get_on_start_session(); 58 std::string cmd = eyekinfig_t(macaddress).get_on_start_session();
59 if(!cmd.empty()) { 59 if(!cmd.empty()) {
60 if(detached_child()) { 60 if(detached_child()) {
61 putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) ); 61 putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) );
62 putenv( gnu::autosprintf("EYEFI_TRANSFERMODE=%d",transfermode) ); 62 putenv( gnu::autosprintf("EYEFI_TRANSFERMODE=%d",transfermode) );
63 putenv( gnu::autosprintf("EYEFI_TRANSFERMODETIMESTAMP=%ld",transfermodetimestamp) ); 63 putenv( gnu::autosprintf("EYEFI_TRANSFERMODETIMESTAMP=%ld",transfermodetimestamp) );
64 char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 }; 64 char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 };
65 execv("/bin/sh",argv); 65 execv("/bin/sh",argv);
66 syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str()); 66 syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str());
67 _exit(-1); 67 _exit(-1);
68 } 68 }
69 } 69 }
70 return SOAP_OK; 70 return SOAP_OK;
71} 71}
72 72
73int eyefiService::GetPhotoStatus( 73int eyefiService::GetPhotoStatus(
74 std::string credential, std::string macaddress, 74 std::string credential, std::string macaddress,
75 std::string filename, long filesize, std::string filesignature, 75 std::string filename, long filesize, std::string filesignature,
76 int flags,
76 struct rns__GetPhotoStatusResponse &r ) { 77 struct rns__GetPhotoStatusResponse &r ) {
77#ifndef NDEBUG 78#ifndef NDEBUG
78 syslog(LOG_DEBUG, 79 syslog(LOG_DEBUG,
79 "GetPhotoStatus request from %s with credential=%s, filename=%s, filesize=%ld, filesignature=%s; session nonce=%s", 80 "GetPhotoStatus request from %s with credential=%s, filename=%s, filesize=%ld, filesignature=%s, flags=%d; session nonce=%s",
80 macaddress.c_str(), credential.c_str(), filename.c_str(), filesize, filesignature.c_str(), session_nonce.hex().c_str() ); 81 macaddress.c_str(), credential.c_str(), filename.c_str(), filesize, filesignature.c_str(), flags,
82 session_nonce.hex().c_str() );
81#endif 83#endif
82 84
83 std::string computed_credential = binary_t(macaddress+eyekinfig_t(macaddress).get_upload_key()+session_nonce.hex()).md5().hex(); 85 std::string computed_credential = binary_t(macaddress+eyekinfig_t(macaddress).get_upload_key()+session_nonce.hex()).md5().hex();
84 86
85#ifndef NDEBUG 87#ifndef NDEBUG
86 syslog(LOG_DEBUG, " computed credential=%s", computed_credential.c_str()); 88 syslog(LOG_DEBUG, " computed credential=%s", computed_credential.c_str());
87#endif 89#endif
88 90
89 if (credential != computed_credential) throw std::runtime_error("card authentication failed"); 91 if (credential != computed_credential) throw std::runtime_error("card authentication failed");
90 92
91 r.fileid = 1; r.offset = 0; 93 r.fileid = 1; r.offset = 0;
92 return SOAP_OK; 94 return SOAP_OK;
93} 95}
94 96
95int eyefiService::MarkLastPhotoInRoll( 97int eyefiService::MarkLastPhotoInRoll(
96 std::string macaddress, int mergedelta, 98 std::string macaddress, int mergedelta,
97 struct rns__MarkLastPhotoInRollResponse &r ) { 99 struct rns__MarkLastPhotoInRollResponse &r ) {
98#ifndef NDEBUG 100#ifndef NDEBUG
99 syslog(LOG_DEBUG, 101 syslog(LOG_DEBUG,
100 "MarkLastPhotoInRoll request from %s with mergedelta=%d", 102 "MarkLastPhotoInRoll request from %s with mergedelta=%d",
101 macaddress.c_str(), mergedelta ); 103 macaddress.c_str(), mergedelta );
102#endif 104#endif
103 std::string cmd = eyekinfig_t(macaddress).get_on_mark_last_photo_in_roll(); 105 std::string cmd = eyekinfig_t(macaddress).get_on_mark_last_photo_in_roll();
104 if(!cmd.empty()) { 106 if(!cmd.empty()) {
105 if(detached_child()) { 107 if(detached_child()) {
106 putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) ); 108 putenv( gnu::autosprintf("EYEFI_MACADDRESS=%s",macaddress.c_str()) );
107 putenv( gnu::autosprintf("EYEFI_MERGEDELTA=%d",mergedelta) ); 109 putenv( gnu::autosprintf("EYEFI_MERGEDELTA=%d",mergedelta) );
108 char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 }; 110 char *argv[] = { (char*)"/bin/sh", (char*)"-c", (char*)cmd.c_str(), 0 };
109 execv("/bin/sh",argv); 111 execv("/bin/sh",argv);
110 syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str()); 112 syslog(LOG_ERR,"Failed to execute '%s'",cmd.c_str());
111 _exit(-1); 113 _exit(-1);
112 } 114 }
113 } 115 }
114 return SOAP_OK; 116 return SOAP_OK;
115} 117}
116 118
117int eyefiService::UploadPhoto( 119int eyefiService::UploadPhoto(
118 int fileid, std::string macaddress, 120 int fileid, std::string macaddress,
119 std::string filename, long filesize, std::string filesignature, 121 std::string filename, long filesize, std::string filesignature,
120 std::string encryption, int flags, 122 std::string encryption, int flags,
121 struct rns__UploadPhotoResponse& r ) { 123 struct rns__UploadPhotoResponse& r ) {
122#ifndef NDEBUG 124#ifndef NDEBUG
123 syslog(LOG_DEBUG, 125 syslog(LOG_DEBUG,
124 "UploadPhoto request from %s with fileid=%d, filename=%s, filesize=%ld," 126 "UploadPhoto request from %s with fileid=%d, filename=%s, filesize=%ld,"
125 " filesignature=%s, encryption=%s, flags=%04X", 127 " filesignature=%s, encryption=%s, flags=%04X",
126 macaddress.c_str(), fileid, filename.c_str(), filesize, 128 macaddress.c_str(), fileid, filename.c_str(), filesize,
127 filesignature.c_str(), encryption.c_str(), flags ); 129 filesignature.c_str(), encryption.c_str(), flags );
128#endif 130#endif
129 eyekinfig_t eyekinfig(macaddress); 131 eyekinfig_t eyekinfig(macaddress);
130 132
131 umask(eyekinfig.get_umask()); 133 umask(eyekinfig.get_umask());
132 134
133 std::string td = eyekinfig.get_targetdir(); 135 std::string td = eyekinfig.get_targetdir();
134 tmpdir_t indir(td+"/.incoming.XXXXXX"); 136 tmpdir_t indir(td+"/.incoming.XXXXXX");
135 137
136 std::string jf; 138 std::string jf;
137 binary_t digest, idigest; 139 binary_t digest, idigest;
138 140
139 for(soap_multipart::iterator i=mime.begin(),ie=mime.end();i!=ie;++i) { 141 for(soap_multipart::iterator i=mime.begin(),ie=mime.end();i!=ie;++i) {
140#ifndef NDEBUG 142#ifndef NDEBUG
141 syslog(LOG_DEBUG, 143 syslog(LOG_DEBUG,
142 " MIME attachment with id=%s, type=%s, size=%ld", 144 " MIME attachment with id=%s, type=%s, size=%ld",
143 (*i).id, (*i).type, (long)(*i).size ); 145 (*i).id, (*i).type, (long)(*i).size );
144#endif 146#endif
145 147
146 if((*i).id && !strcmp((*i).id,"INTEGRITYDIGEST")) { 148 if((*i).id && !strcmp((*i).id,"INTEGRITYDIGEST")) {
147 std::string idigestr((*i).ptr,(*i).size); 149 std::string idigestr((*i).ptr,(*i).size);
148#ifndef NDEBUG 150#ifndef NDEBUG
149 syslog(LOG_DEBUG, " INTEGRITYDIGEST=%s", idigestr.c_str()); 151 syslog(LOG_DEBUG, " INTEGRITYDIGEST=%s", idigestr.c_str());
150#endif 152#endif
151 idigest.from_hex(idigestr); 153 idigest.from_hex(idigestr);
152 } 154 }
153 if( (*i).id && !strcmp((*i).id,"FILENAME") ) { 155 if( (*i).id && !strcmp((*i).id,"FILENAME") ) {
154 assert( (*i).type && !strcmp((*i).type,"application/x-tar") ); 156 assert( (*i).type && !strcmp((*i).type,"application/x-tar") );
155#ifdef III_SAVE_TARS 157#ifdef III_SAVE_TARS
156 std::string tarfile = indir.get_file(filename); 158 std::string tarfile = indir.get_file(filename);
157 { 159 {
158 std::ofstream(tarfile.c_str(),std::ios::out|std::ios::binary).write((*i).ptr,(*i).size); 160 std::ofstream(tarfile.c_str(),std::ios::out|std::ios::binary).write((*i).ptr,(*i).size);
159 } 161 }
160#endif 162#endif
161 163
162 if(!jf.empty()) throw std::runtime_error("already seen tarball"); 164 if(!jf.empty()) throw std::runtime_error("already seen tarball");
163 if(!digest.empty()) throw std::runtime_error("already have integrity digest"); 165 if(!digest.empty()) throw std::runtime_error("already have integrity digest");
164 digest = integrity_digest((*i).ptr,(*i).size,eyekinfig.get_upload_key()); 166 digest = integrity_digest((*i).ptr,(*i).size,eyekinfig.get_upload_key());
165#ifndef NDEBUG 167#ifndef NDEBUG
166 syslog(LOG_DEBUG," computed integrity digest=%s", digest.hex().c_str()); 168 syslog(LOG_DEBUG," computed integrity digest=%s", digest.hex().c_str());
167#endif 169#endif
168 170
169 tarchive_t a((*i).ptr,(*i).size); 171 tarchive_t a((*i).ptr,(*i).size);
170 if(!a.read_next_header()) 172 if(!a.read_next_header())
171 throw std::runtime_error("failed to tarchive_t::read_next_header())"); 173 throw std::runtime_error("failed to tarchive_t::read_next_header())");
172 jf = indir.get_file(a.entry_pathname()); 174 jf = indir.get_file(a.entry_pathname());
173 int fd=open(jf.c_str(),O_CREAT|O_WRONLY,0666); 175 int fd=open(jf.c_str(),O_CREAT|O_WRONLY,0666);
174 assert(fd>0); 176 assert(fd>0);
175 a.read_data_into_fd(fd); 177 a.read_data_into_fd(fd);
176 close(fd); 178 close(fd);