-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 | |||
@@ -35,40 +35,41 @@ static bool detached_child() { | |||
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 | ||