Changeset 0a8f070 in mainline for uspace/srv/loader/main.c
- Timestamp:
- 2019-08-07T02:33:03Z (6 years ago)
- Children:
- fe86d9d
- Parents:
- 103939e
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-08-16 16:04:14)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 02:33:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/main.c
r103939e r0a8f070 34 34 * 35 35 * The program loader is a special init binary. Its image is used 36 * to create a new task upon a @c task_spawn syscall. The syscall 37 * returns the id of a phone connected to the newly created task. 38 * 39 * The caller uses this phone to send the pathname and various other 36 * to create a new task upon a @c task_spawn syscall. It has a phone connected 37 * to the caller of te syscall. The formal caller (taskman) performs a 38 * handshake with loader so that apparent caller can communicate with the 39 * loader. 40 * 41 * The apparent caller uses his phone to send the pathname and various other 40 42 * information to the loader. This is normally done by the C library 41 43 * and completely hidden from applications. 42 44 */ 45 43 46 44 47 #include <stdio.h> … … 47 50 #include <stddef.h> 48 51 #include <ipc/services.h> 49 #include <ipc/loader.h> 50 #include <ns.h> 51 #include <loader/pcb.h> 52 #include <as.h> 53 #include <async.h> 54 #include <elf/elf.h> 55 #include <elf/elf_load.h> 52 56 #include <entry_point.h> 53 57 #include <errno.h> 54 #include <async.h> 58 #include <fcntl.h> 59 #include <fibril_synch.h> 60 #include <ipc/loader.h> 61 #include <loader/pcb.h> 55 62 #include <str.h> 56 #include < as.h>57 #include < elf/elf.h>58 #include < elf/elf_load.h>63 #include <sys/types.h> 64 #include <taskman.h> 65 #include <unistd.h> 59 66 #include <vfs/vfs.h> 60 67 #include <vfs/inbox.h> … … 73 80 /** The Program control block */ 74 81 static pcb_t pcb; 82 83 /** Primary IPC session */ 84 static async_sess_t *session_primary = NULL; 75 85 76 86 /** Current working directory */ … … 92 102 /** Used to limit number of connections to one. */ 93 103 static bool connected = false; 104 105 /** Ensure synchronization of handshake and connection fibrils. */ 106 static bool handshake_complete = false; 107 FIBRIL_MUTEX_INITIALIZE(handshake_mtx); 108 FIBRIL_CONDVAR_INITIALIZE(handshake_cv); 94 109 95 110 static void ldr_get_taskid(ipc_call_t *req) … … 319 334 DPRINTF("PCB set.\n"); 320 335 336 pcb.session_primary = session_primary; 337 321 338 pcb.cwd = cwd; 322 339 … … 373 390 static void ldr_connection(ipc_call_t *icall, void *arg) 374 391 { 392 /* Wait for handshake */ 393 fibril_mutex_lock(&handshake_mtx); 394 while (!handshake_complete) { 395 fibril_condvar_wait(&handshake_cv, &handshake_mtx); 396 } 397 fibril_mutex_unlock(&handshake_mtx); 398 375 399 /* Already have a connection? */ 376 400 if (connected) { … … 428 452 } 429 453 454 static errno_t ldr_taskman_handshake(void) 455 { 456 errno_t retval = EOK; 457 458 fibril_mutex_lock(&handshake_mtx); 459 session_primary = taskman_handshake(); 460 if (session_primary == NULL) { 461 retval = errno; 462 goto finish; 463 } 464 465 async_sess_t *session_tm = async_session_primary_swap(session_primary); 466 (void)async_hangup(session_tm); 467 468 handshake_complete = true; 469 470 finish: 471 fibril_condvar_signal(&handshake_cv); 472 fibril_mutex_unlock(&handshake_mtx); 473 474 return retval; 475 } 476 430 477 /** Program loader main function. 431 478 */ 432 479 int main(int argc, char *argv[]) 433 480 { 434 /* Introduce this task to the NS (give it our task ID). */ 435 task_id_t id = task_get_id(); 436 errno_t rc = ns_intro(id); 437 if (rc != EOK) 481 /* Set a handler of incomming connections. */ 482 async_set_fallback_port_handler(ldr_connection, NULL); 483 484 /* Handshake with taskman */ 485 int rc = ldr_taskman_handshake(); 486 if (rc != EOK) { 487 DPRINTF("Failed taskman handshake (%i).\n", errno); 438 488 return rc; 439 440 /* Register at naming service. */ 441 rc = service_register(SERVICE_LOADER, INTERFACE_LOADER, 442 ldr_connection, NULL); 443 if (rc != EOK) 444 return rc; 445 489 } 490 491 /* Handle client connections */ 446 492 async_manager(); 447 493 //TODO retval? 494 448 495 /* Never reached */ 449 496 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.