[babe786] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2006 Ondrej Palkovsky
|
---|
[babe786] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[231a60a] | 29 | /** @addtogroup ns
|
---|
[ce5bcb4] | 30 | * @{
|
---|
[1fcfc94] | 31 | */
|
---|
[ce5bcb4] | 32 |
|
---|
[babe786] | 33 | /**
|
---|
[1fcfc94] | 34 | * @file ns.c
|
---|
| 35 | * @brief Naming service for HelenOS IPC.
|
---|
[babe786] | 36 | */
|
---|
| 37 |
|
---|
[7b616e2] | 38 | #include <abi/ipc/methods.h>
|
---|
| 39 | #include <async.h>
|
---|
[40313e4] | 40 | #include <ipc/ns.h>
|
---|
[6a8ce16e] | 41 | #include <ipc/services.h>
|
---|
[2133e02] | 42 | #include <abi/ipc/interfaces.h>
|
---|
[40313e4] | 43 | #include <stdio.h>
|
---|
[69cdeec] | 44 | #include <errno.h>
|
---|
[40313e4] | 45 | #include <macros.h>
|
---|
| 46 | #include "ns.h"
|
---|
| 47 | #include "service.h"
|
---|
| 48 | #include "clonable.h"
|
---|
| 49 | #include "task.h"
|
---|
[bfd1546] | 50 |
|
---|
[984a9ba] | 51 | static void ns_connection(ipc_call_t *icall, void *arg)
|
---|
[69cdeec] | 52 | {
|
---|
[7b616e2] | 53 | ipc_call_t call;
|
---|
| 54 | iface_t iface;
|
---|
| 55 | service_t service;
|
---|
| 56 |
|
---|
| 57 | iface = IPC_GET_ARG1(*icall);
|
---|
| 58 | service = IPC_GET_ARG2(*icall);
|
---|
| 59 | if (service != 0) {
|
---|
| 60 | /*
|
---|
| 61 | * Client requests to be connected to a service.
|
---|
| 62 | */
|
---|
| 63 | if (service_clonable(service)) {
|
---|
[984a9ba] | 64 | connect_to_clonable(service, iface, icall);
|
---|
[7b616e2] | 65 | } else {
|
---|
[984a9ba] | 66 | connect_to_service(service, iface, icall);
|
---|
[7b616e2] | 67 | }
|
---|
| 68 | return;
|
---|
| 69 | }
|
---|
[a35b458] | 70 |
|
---|
[984a9ba] | 71 | async_answer_0(icall, EOK);
|
---|
[7b616e2] | 72 |
|
---|
[1fcfc94] | 73 | while (true) {
|
---|
[40313e4] | 74 | process_pending_conn();
|
---|
[a35b458] | 75 |
|
---|
[984a9ba] | 76 | async_get_call(&call);
|
---|
[7b616e2] | 77 | if (!IPC_GET_IMETHOD(call))
|
---|
| 78 | break;
|
---|
[a35b458] | 79 |
|
---|
[40313e4] | 80 | task_id_t id;
|
---|
[b7fd2a0] | 81 | errno_t retval;
|
---|
[a35b458] | 82 |
|
---|
[6a8ce16e] | 83 | service_t service;
|
---|
| 84 | sysarg_t phone;
|
---|
[a35b458] | 85 |
|
---|
[228e490] | 86 | switch (IPC_GET_IMETHOD(call)) {
|
---|
[7b616e2] | 87 | case NS_REGISTER:
|
---|
| 88 | service = IPC_GET_ARG1(call);
|
---|
[6a8ce16e] | 89 | phone = IPC_GET_ARG5(call);
|
---|
[a35b458] | 90 |
|
---|
[babe786] | 91 | /*
|
---|
[043dcc27] | 92 | * Server requests service registration.
|
---|
[babe786] | 93 | */
|
---|
[6a8ce16e] | 94 | if (service_clonable(service)) {
|
---|
[984a9ba] | 95 | register_clonable(service, phone, &call);
|
---|
[bfd1546] | 96 | continue;
|
---|
| 97 | } else {
|
---|
[7b616e2] | 98 | retval = register_service(service, phone, &call);
|
---|
[bfd1546] | 99 | }
|
---|
[a35b458] | 100 |
|
---|
[11eae82] | 101 | break;
|
---|
[40313e4] | 102 | case NS_PING:
|
---|
| 103 | retval = EOK;
|
---|
| 104 | break;
|
---|
| 105 | case NS_TASK_WAIT:
|
---|
| 106 | id = (task_id_t)
|
---|
| 107 | MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
|
---|
[984a9ba] | 108 | wait_for_task(id, &call);
|
---|
[40313e4] | 109 | continue;
|
---|
[5d96851b] | 110 | case NS_ID_INTRO:
|
---|
| 111 | retval = ns_task_id_intro(&call);
|
---|
| 112 | break;
|
---|
[7114d83] | 113 | case NS_RETVAL:
|
---|
| 114 | retval = ns_task_retval(&call);
|
---|
| 115 | break;
|
---|
[69cdeec] | 116 | default:
|
---|
[7b616e2] | 117 | printf("ns: method not supported\n");
|
---|
| 118 | retval = ENOTSUP;
|
---|
[69cdeec] | 119 | break;
|
---|
| 120 | }
|
---|
[a35b458] | 121 |
|
---|
[984a9ba] | 122 | async_answer_0(&call, retval);
|
---|
[69cdeec] | 123 | }
|
---|
[7b616e2] | 124 |
|
---|
| 125 | (void) ns_task_disconnect(&call);
|
---|
| 126 | }
|
---|
| 127 |
|
---|
| 128 | int main(int argc, char **argv)
|
---|
| 129 | {
|
---|
| 130 | printf("%s: HelenOS IPC Naming Service\n", NAME);
|
---|
[a35b458] | 131 |
|
---|
[b7fd2a0] | 132 | errno_t rc = service_init();
|
---|
[7b616e2] | 133 | if (rc != EOK)
|
---|
| 134 | return rc;
|
---|
[a35b458] | 135 |
|
---|
[7b616e2] | 136 | rc = clonable_init();
|
---|
| 137 | if (rc != EOK)
|
---|
| 138 | return rc;
|
---|
[a35b458] | 139 |
|
---|
[7b616e2] | 140 | rc = task_init();
|
---|
| 141 | if (rc != EOK)
|
---|
| 142 | return rc;
|
---|
[a35b458] | 143 |
|
---|
[7b616e2] | 144 | async_set_fallback_port_handler(ns_connection, NULL);
|
---|
[a35b458] | 145 |
|
---|
[7b616e2] | 146 | printf("%s: Accepting connections\n", NAME);
|
---|
| 147 | async_manager();
|
---|
[a35b458] | 148 |
|
---|
[e623197] | 149 | /* Not reached */
|
---|
| 150 | return 0;
|
---|
[69cdeec] | 151 | }
|
---|
[babe786] | 152 |
|
---|
[1fcfc94] | 153 | /**
|
---|
[ce5bcb4] | 154 | * @}
|
---|
| 155 | */
|
---|