summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2007-07-15 23:55:02 (UTC)
committer Michael Krelin <hacker@klever.net>2007-07-15 23:55:02 (UTC)
commit174edcd91bcb969c4ee71a824849d8737223dd8f (patch) (unidiff)
tree912ef42f7902a1c400ed469e8abc322346765ef3
parent655a28b22bfb5cb2b8080eaf8f3c3d0ef769882e (diff)
downloadopie-174edcd91bcb969c4ee71a824849d8737223dd8f.zip
opie-174edcd91bcb969c4ee71a824849d8737223dd8f.tar.gz
opie-174edcd91bcb969c4ee71a824849d8737223dd8f.tar.bz2
unbreak error handling while preserving functionality
- exit after disconnecting - spit out error message on error - don't close fd in the loop, once is enough
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/obex/obexserver.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/core/obex/obexserver.cpp b/core/obex/obexserver.cpp
index 786e9f7..286961f 100644
--- a/core/obex/obexserver.cpp
+++ b/core/obex/obexserver.cpp
@@ -193,48 +193,49 @@ static void obex_conn_event (obex_t *handle, obex_object_t *object,
193 switch(obex_cmd) { 193 switch(obex_cmd) {
194 case OBEX_CMD_PUT: 194 case OBEX_CMD_PUT:
195 case OBEX_CMD_CONNECT: 195 case OBEX_CMD_CONNECT:
196 case OBEX_CMD_DISCONNECT: 196 case OBEX_CMD_DISCONNECT:
197 OBEX_ObjectSetRsp (object, OBEX_RSP_CONTINUE, OBEX_RSP_SUCCESS); 197 OBEX_ObjectSetRsp (object, OBEX_RSP_CONTINUE, OBEX_RSP_SUCCESS);
198 break; 198 break;
199 default: 199 default:
200 OBEX_ObjectSetRsp (object, OBEX_RSP_NOT_IMPLEMENTED, 200 OBEX_ObjectSetRsp (object, OBEX_RSP_NOT_IMPLEMENTED,
201 OBEX_RSP_NOT_IMPLEMENTED); 201 OBEX_RSP_NOT_IMPLEMENTED);
202 break; 202 break;
203 } 203 }
204 break; 204 break;
205 205
206 case OBEX_EV_REQ: 206 case OBEX_EV_REQ:
207 /* Comes when a server-request has been received. */ 207 /* Comes when a server-request has been received. */
208 handle_request (handle, object, event, obex_cmd); 208 handle_request (handle, object, event, obex_cmd);
209 break; 209 break;
210 case OBEX_EV_REQDONE: 210 case OBEX_EV_REQDONE:
211 switch(obex_cmd) { 211 switch(obex_cmd) {
212 case OBEX_CMD_PUT: 212 case OBEX_CMD_PUT:
213 case OBEX_CMD_CONNECT: 213 case OBEX_CMD_CONNECT:
214 break; 214 break;
215 case OBEX_CMD_DISCONNECT: 215 case OBEX_CMD_DISCONNECT:
216 OBEX_TransportDisconnect(handle); 216 OBEX_TransportDisconnect(handle);
217 _exit(0);
217 break; 218 break;
218 default: 219 default:
219 break; 220 break;
220 } 221 }
221 break; 222 break;
222 case OBEX_EV_LINKERR: 223 case OBEX_EV_LINKERR:
223 break; 224 break;
224 } 225 }
225} 226}
226 227
227/** 228/**
228 * Function handles OBEX event 229 * Function handles OBEX event
229 * @param handle OBEX connection handle 230 * @param handle OBEX connection handle
230 * @param object OBEX object itself 231 * @param object OBEX object itself
231 * @param mode 232 * @param mode
232 * @param event event code 233 * @param event event code
233 * @param obex_cmd OBEX command itself 234 * @param obex_cmd OBEX command itself
234 * @param obex_rsp OBEX responce 235 * @param obex_rsp OBEX responce
235 */ 236 */
236static void obex_event (obex_t* handle, obex_object_t* object, int mode, 237static void obex_event (obex_t* handle, obex_object_t* object, int mode,
237 int event, int obex_cmd, int obex_rsp) 238 int event, int obex_cmd, int obex_rsp)
238{ 239{
239 240
240 obex_t *obex; //OBEX connection handle 241 obex_t *obex; //OBEX connection handle
@@ -413,55 +414,57 @@ bool ObexServer::start(RunMode runmode, Communication comm)
413 } 414 }
414 // The child process 415 // The child process
415 if ( !commSetupDoneC() ) 416 if ( !commSetupDoneC() )
416 qWarning( "Could not finish comm setup in child!" ); 417 qWarning( "Could not finish comm setup in child!" );
417 418
418 setupEnvironment(); 419 setupEnvironment();
419 420
420 // Matthias 421 // Matthias
421 if ( run_mode == DontCare ) 422 if ( run_mode == DontCare )
422 setpgid( 0, 0 ); 423 setpgid( 0, 0 );
423 // restore default SIGPIPE handler (Harri) 424 // restore default SIGPIPE handler (Harri)
424 struct sigaction act; 425 struct sigaction act;
425 sigemptyset( &( act.sa_mask ) ); 426 sigemptyset( &( act.sa_mask ) );
426 sigaddset( &( act.sa_mask ), SIGPIPE ); 427 sigaddset( &( act.sa_mask ), SIGPIPE );
427 act.sa_handler = SIG_DFL; 428 act.sa_handler = SIG_DFL;
428 act.sa_flags = 0; 429 act.sa_flags = 0;
429 sigaction( SIGPIPE, &act, 0L ); 430 sigaction( SIGPIPE, &act, 0L );
430 431
431 // We set the close on exec flag. 432 // We set the close on exec flag.
432 // Closing of fd[1] indicates that the execvp succeeded! 433 // Closing of fd[1] indicates that the execvp succeeded!
433 if ( fd[ 1 ] ) 434 if ( fd[ 1 ] )
434 fcntl( fd[ 1 ], F_SETFD, FD_CLOEXEC ); 435 fcntl( fd[ 1 ], F_SETFD, FD_CLOEXEC );
435 436
436 if (initObex() == 0) { 437 if (initObex() == 0) {
438 if ( fd[ 1 ] ) {
439 ::close(fd[1]);
440 fd[1] = 0;
441 }
437 do { 442 do {
438 if ( fd[ 1 ] ) { 443 if (OBEX_HandleInput(m_obex, 60) < 0) {
439 ::close(fd[1]); 444 fprintf(stderr,"failed to OBEX_HandleInput(), errno=%d\n");
440 fd[1] = 0; 445 _exit(1);
441 } 446 }
442 if (OBEX_HandleInput(m_obex, 10) < 0)
443 _exit(0);
444 } while(1); 447 } while(1);
445 } 448 }
446 char resultByte = 1; 449 char resultByte = 1;
447 if ( fd[ 1 ] ) 450 if ( fd[ 1 ] )
448 write( fd[ 1 ], &resultByte, 1 ); 451 write( fd[ 1 ], &resultByte, 1 );
449 _exit( -1 ); 452 _exit( -1 );
450 } 453 }
451 else if ( -1 == pid_ ) 454 else if ( -1 == pid_ )
452 { 455 {
453 // forking failed 456 // forking failed
454 457
455 runs = false; 458 runs = false;
456 return false; 459 return false;
457 } 460 }
458 else 461 else
459 { 462 {
460 if ( fd[ 1 ] ) 463 if ( fd[ 1 ] )
461 close( fd[ 1 ] ); 464 close( fd[ 1 ] );
462 // the parent continues here 465 // the parent continues here
463 466
464 // Discard any data for stdin that might still be there 467 // Discard any data for stdin that might still be there
465 input_data = 0; 468 input_data = 0;
466 469
467 // Check whether client could be started. 470 // Check whether client could be started.