Changeset 0a8f070 in mainline
- 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)
- Files:
-
- 4 added
- 1 deleted
- 20 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
abi/include/abi/ipc/methods.h
r103939e r0a8f070 39 39 40 40 /* Well known phone descriptors */ 41 static cap_phone_handle_t const PHONE_ NS= (cap_phone_handle_t) (CAP_NIL + 1);41 static cap_phone_handle_t const PHONE_INITIAL = (cap_phone_handle_t) (CAP_NIL + 1); 42 42 43 43 /** Kernel IPC interfaces -
boot/Makefile.common
r103939e r0a8f070 76 76 $(USPACE_PATH)/srv/bd/rd/rd \ 77 77 $(USPACE_PATH)/srv/vfs/vfs \ 78 $(USPACE_PATH)/srv/logger/logger 78 $(USPACE_PATH)/srv/logger/logger \ 79 $(USPACE_PATH)/srv/taskman/taskman 79 80 80 81 ifeq ($(RDFMT),tmpfs) -
uspace/Makefile
r103939e r0a8f070 120 120 srv/taskmon \ 121 121 srv/sysman \ 122 srv/taskman \ 122 123 srv/vfs \ 123 124 srv/bd/sata_bd \ -
uspace/app/trace/ipcp.c
r103939e r0a8f070 302 302 } 303 303 304 if ((phone == PHONE_NS) && (method == IPC_M_CONNECT_ME_TO) && 304 // TODO obsoleted (initial phone needn't to be phone to NS anymore) 305 // actually what connections should it monitor? 306 if ((phone == PHONE_INITIAL) && (method == IPC_M_CONNECT_ME_TO) && 305 307 (retval == 0)) { 306 308 /* Connected to a service (through NS) */ -
uspace/lib/c/Makefile
r103939e r0a8f070 165 165 generic/arg_parse.c \ 166 166 generic/stats.c \ 167 generic/taskman.c \ 167 168 generic/assert.c \ 168 169 generic/bsearch.c \ -
uspace/lib/c/generic/async/client.c
r103939e r0a8f070 124 124 static fibril_rmutex_t message_mutex; 125 125 126 /** Naming service session*/127 async_sess_t session_ns;126 /** Primary session (spawn parent, later naming service) */ 127 async_sess_t *session_primary = NULL; 128 128 129 129 /** Message data */ … … 168 168 static FIBRIL_CONDVAR_INITIALIZE(avail_phone_cv); 169 169 170 171 static async_sess_t *create_session_primary(void) 172 { 173 async_sess_t *session = (async_sess_t *) malloc(sizeof(async_sess_t)); 174 175 if (session != NULL) { 176 session_ns->iface = 0; 177 session->mgmt = EXCHANGE_ATOMIC; 178 session->phone = PHONE_INITIAL; 179 session->arg1 = 0; 180 session->arg2 = 0; 181 session->arg3 = 0; 182 183 fibril_mutex_initialize(&session->remote_state_mtx); 184 session->remote_state_data = NULL; 185 186 list_initialize(&session->exch_list); 187 fibril_mutex_initialize(&session->mutex); 188 atomic_set(&session->refcnt, 0); 189 &session.exchanges = 0; 190 } 191 192 return session; 193 } 194 195 170 196 /** Initialize the async framework. 171 197 * 172 198 */ 173 void __async_client_init( void)199 void __async_client_init(async_sess_t *session) 174 200 { 175 201 if (fibril_rmutex_initialize(&message_mutex) != EOK) 176 202 abort(); 177 203 178 session_ns.iface = 0; 179 session_ns.mgmt = EXCHANGE_ATOMIC; 180 session_ns.phone = PHONE_NS; 181 session_ns.arg1 = 0; 182 session_ns.arg2 = 0; 183 session_ns.arg3 = 0; 184 185 fibril_mutex_initialize(&session_ns.remote_state_mtx); 186 session_ns.remote_state_data = NULL; 187 188 list_initialize(&session_ns.exch_list); 189 fibril_mutex_initialize(&session_ns.mutex); 190 session_ns.exchanges = 0; 204 if (session == NULL) { 205 session_primary = create_session_primary(); 206 } else { 207 session_primary = session; 208 } 209 210 if (session_primary == NULL) 211 abort(); 191 212 } 192 213 … … 807 828 *out_phone = (cap_phone_handle_t) ipc_get_arg5(&result); 808 829 return EOK; 830 } 831 832 /** Injects another session instead of original primary session 833 * 834 * @param session Session to naming service. 835 * 836 * @return old primary session (to spawn parent) 837 */ 838 async_sess_t *async_session_primary_swap(async_sess_t *session) 839 { 840 assert(session_primary->phone == PHONE_INITIAL); 841 842 async_sess_t *old_primary = session_primary; 843 session_primary = session; 844 return old_primary; 809 845 } 810 846 -
uspace/lib/c/generic/async/server.c
r103939e r0a8f070 216 216 } 217 217 218 static async_client_conn_t implicit_connection = NULL; 218 219 static fibril_rmutex_t client_mutex; 219 220 static hash_table_t client_hash_table; … … 964 965 /* Route the call according to its request label */ 965 966 errno_t rc = route_call(call); 966 if (rc == EOK) 967 if (rc == EOK) { 967 968 return; 969 } else if (implicit_connection != NULL) { 970 async_new_connection(call->in_task_id, call->in_phone_hash, 971 callid, call, implicit_connection, NULL); 972 return; 973 } 968 974 969 975 // TODO: Log the error. -
uspace/lib/c/generic/libc.c
r103939e r0a8f070 103 103 } 104 104 #endif 105 105 106 /* Setup async framework */ 106 107 __async_server_init(); 107 __async_client_init(); 108 if (__pcb == NULL) { 109 __async_client_init(NULL); 110 } else { 111 __async_client_init(__pcb->session_primary); 112 } 108 113 __async_ports_init(); 109 114 -
uspace/lib/c/generic/loader.c
r103939e r0a8f070 33 33 */ 34 34 35 #include <async.h> 36 #include <errno.h> 35 37 #include <ipc/loader.h> 36 38 #include <ipc/services.h> 39 #include <ipc/taskman.h> 40 #include <libc.h> 41 #include <loader/loader.h> 37 42 #include <ns.h> 38 #include <libc.h> 43 #include <stdlib.h> 44 #include <str.h> 39 45 #include <task.h> 40 #include <str.h>41 #include <stdlib.h>42 #include <async.h>43 #include <errno.h>44 46 #include <vfs/vfs.h> 45 #include <loader/loader.h>46 47 #include "private/loader.h" 47 48 … … 67 68 68 69 async_sess_t *sess = 69 service_connect_blocking(SERVICE_ LOADER, INTERFACE_LOADER, 0);70 service_connect_blocking(SERVICE_TASKMAN, TASKMAN_CONNECT_TO_LOADER, 0); 70 71 if (sess == NULL) { 71 72 free(ldr); -
uspace/lib/c/generic/ns.c
r103939e r0a8f070 41 41 42 42 /* 43 * XXX ns does not know about session_ ns, so we create an extra session for43 * XXX ns does not know about session_primary, so we create an extra session for 44 44 * actual communicaton 45 45 */ 46 static async_sess_t *sess_ ns= NULL;46 static async_sess_t *sess_primary = NULL; 47 47 48 48 errno_t service_register(service_t service, iface_t iface, 49 49 async_port_handler_t handler, void *data) 50 50 { 51 async_sess_t *sess = ns_session_get();51 async_sess_t *sess = get_session_primary(); 52 52 if (sess == NULL) 53 53 return EIO; … … 81 81 async_set_fallback_port_handler(handler, data); 82 82 83 async_sess_t *sess = ns_session_get();83 async_sess_t *sess = get_session_primary(); 84 84 if (sess == NULL) 85 85 return EIO; … … 105 105 async_sess_t *service_connect(service_t service, iface_t iface, sysarg_t arg3) 106 106 { 107 async_sess_t *sess = ns_session_get();107 async_sess_t *sess = get_session_primary(); 108 108 if (sess == NULL) 109 109 return NULL; … … 133 133 sysarg_t arg3) 134 134 { 135 async_sess_t *sess = ns_session_get();135 async_sess_t *sess = get_session_primary(); 136 136 if (sess == NULL) 137 137 return NULL; … … 157 157 errno_t ns_ping(void) 158 158 { 159 async_sess_t *sess = ns_session_get();159 async_sess_t *sess = get_session_primary(); 160 160 if (sess == NULL) 161 161 return EIO; … … 168 168 } 169 169 170 errno_t ns_intro(task_id_t id)171 {172 async_exch_t *exch;173 async_sess_t *sess = ns_session_get();174 if (sess == NULL)175 return EIO;176 170 177 exch = async_exchange_begin(sess); 178 errno_t rc = async_req_2_0(exch, NS_ID_INTRO, LOWER32(id), UPPER32(id)); 179 async_exchange_end(exch); 180 181 return rc; 182 } 183 184 async_sess_t *ns_session_get(void) 171 async_sess_t *get_session_primary(void) 185 172 { 186 173 async_exch_t *exch; 187 174 188 if (sess_ ns== NULL) {189 exch = async_exchange_begin(&session_ ns);190 sess_ ns= async_connect_me_to(exch, 0, 0, 0);175 if (sess_primary == NULL) { 176 exch = async_exchange_begin(&session_primary); 177 sess_primary = async_connect_me_to(exch, 0, 0, 0); 191 178 async_exchange_end(exch); 192 if (sess_ ns== NULL)179 if (sess_primary == NULL) 193 180 return NULL; 194 181 } 195 182 196 return sess_ ns;183 return sess_primary; 197 184 } 198 185 -
uspace/lib/c/generic/private/async.h
r103939e r0a8f070 96 96 extern void __async_server_init(void); 97 97 extern void __async_server_fini(void); 98 extern void __async_client_init( void);98 extern void __async_client_init(async_sess_t *); 99 99 extern void __async_client_fini(void); 100 100 extern void __async_ports_init(void); -
uspace/lib/c/generic/private/ns.h
r103939e r0a8f070 38 38 #include <async.h> 39 39 40 extern async_sess_t session_ns;40 extern async_sess_t *session_primary; 41 41 42 42 #endif -
uspace/lib/c/generic/task.c
r103939e r0a8f070 325 325 errno_t task_setup_wait(task_id_t id, task_wait_t *wait) 326 326 { 327 async_sess_t *sess_ns = ns_session_get();327 async_sess_t *sess_ns = get_session_primary(); 328 328 if (sess_ns == NULL) 329 329 return EIO; 330 330 331 331 async_exch_t *exch = async_exchange_begin(sess_ns); 332 332 333 wait->aid = async_send_2(exch, NS_TASK_WAIT, LOWER32(id), UPPER32(id), 333 334 &wait->result); … … 407 408 errno_t task_retval(int val) 408 409 { 409 async_sess_t *sess_ns = ns_session_get();410 async_sess_t *sess_ns = get_session_primary(); 410 411 if (sess_ns == NULL) 411 412 return EIO; -
uspace/lib/c/include/async.h
r103939e r0a8f070 131 131 extern void *async_get_client_data_by_id(task_id_t); 132 132 extern void async_put_client_data_by_id(task_id_t); 133 134 extern void async_set_implicit_connection(async_client_conn_t); 133 135 134 136 extern errno_t async_create_port(iface_t, async_port_handler_t, void *, … … 274 276 extern sysarg_t async_get_label(void); 275 277 278 extern async_sess_t *async_session_primary_swap(async_sess_t *); 276 279 extern async_sess_t *async_connect_me_to(async_exch_t *, iface_t, sysarg_t, 277 280 sysarg_t); -
uspace/lib/c/include/ipc/services.h
r103939e r0a8f070 43 43 typedef enum { 44 44 SERVICE_NONE = 0, 45 SERVICE_LOADER = FOURCC('l', 'o', 'a', 'd'),46 45 SERVICE_VFS = FOURCC('v', 'f', 's', ' '), 47 46 SERVICE_LOC = FOURCC('l', 'o', 'c', ' '), 48 47 SERVICE_SYSMAN = FOURCC('s', 'y', 's', 'm'), 48 SERVICE_TASKMAN = FOURCC('t', 's', 'k', 'm'), 49 49 SERVICE_LOGGER = FOURCC('l', 'o', 'g', 'g'), 50 50 SERVICE_DEVMAN = FOURCC('d', 'e', 'v', 'n'), -
uspace/lib/c/include/ipc/taskman.h
r103939e r0a8f070 1 1 /* 2 * Copyright (c) 20 09 Martin Decky2 * Copyright (c) 2015 Michal Koutny 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup ns29 /** @addtogroup libcipc 30 30 * @{ 31 31 */ 32 /** @file 33 */ 32 34 33 #ifndef NS_CLONABLE_H__34 #define NS_CLONABLE_H__35 #ifndef LIBC_IPC_TASKMAN_H_ 36 #define LIBC_IPC_TASKMAN_H_ 35 37 36 38 #include <ipc/common.h> 37 #include <ipc/services.h>38 #include <abi/ipc/interfaces.h>39 #include <stdbool.h>40 39 41 extern errno_t ns_clonable_init(void);42 40 43 extern bool ns_service_is_clonable(service_t, iface_t); 44 extern void ns_clonable_register(ipc_call_t *); 45 extern void ns_clonable_forward(service_t, iface_t, ipc_call_t *); 41 typedef enum { 42 TASKMAN_HELLO = IPC_FIRST_USER_METHOD, 43 } taskman_request_t; 44 45 typedef enum { 46 TASKMAN_CONNECT_TO_LOADER = 0, 47 TASKMAN_LOADER_TO_NS, 48 TASKMAN_LOADER_CALLBACK, 49 TASKMAN_CONTROL 50 } taskman_interface_t; 46 51 47 52 #endif 48 53 49 /** 50 * @} 54 /** @} 51 55 */ -
uspace/lib/c/include/loader/pcb.h
r103939e r0a8f070 46 46 }; 47 47 48 /* Forward declaration */ 49 struct async_sess; 50 typedef struct async_sess async_sess_t; 51 48 52 /** Program Control Block. 49 53 * … … 57 61 entry_point_t entry; 58 62 63 /** Primary session to broker. */ 64 async_sess_t *session_primary; 65 59 66 /** Current working directory. */ 60 67 char *cwd; -
uspace/lib/c/include/ns.h
r103939e r0a8f070 47 47 48 48 extern errno_t ns_ping(void); 49 extern errno_t ns_intro(task_id_t);50 49 extern async_sess_t *ns_session_get(void); 51 50 -
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; -
uspace/srv/ns/Makefile
r103939e r0a8f070 35 35 ns.c \ 36 36 service.c \ 37 clonable.c \38 37 task.c 39 38 -
uspace/srv/ns/ns.c
r103939e r0a8f070 46 46 #include "ns.h" 47 47 #include "service.h" 48 #include "clonable.h"49 48 #include "task.h" 50 49 … … 61 60 * Client requests to be connected to a service. 62 61 */ 63 if (ns_service_is_clonable(service, iface)) { 64 ns_clonable_forward(service, iface, icall); 65 } else { 66 ns_service_forward(service, iface, icall); 67 } 68 62 ns_service_forward(service, iface, icall); 69 63 return; 70 64 } … … 92 86 * Server requests service registration. 93 87 */ 94 if (ns_service_is_clonable(service, iface)) { 95 ns_clonable_register(&call); 96 continue; 97 } else { 98 retval = ns_service_register(service, iface); 99 } 88 retval = ns_service_register(service, iface); 100 89 101 90 break; … … 116 105 break; 117 106 case NS_RETVAL: 118 retval = ns_task_retval(&call); 107 // TODO move to taskman 108 retval = EOK; 109 //retval = ns_task_retval(&call); 119 110 break; 120 111 default: … … 140 131 return rc; 141 132 142 rc = ns_clonable_init();143 if (rc != EOK)144 return rc;145 146 133 rc = task_init(); 147 134 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.