| 1 | /*
|
|---|
| 2 | * Copyright (c) 2006 Ondrej Palkovsky
|
|---|
| 3 | * Copyright (c) 2015 Michal Koutny
|
|---|
| 4 | * All rights reserved.
|
|---|
| 5 | *
|
|---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 7 | * modification, are permitted provided that the following conditions
|
|---|
| 8 | * are met:
|
|---|
| 9 | *
|
|---|
| 10 | * - Redistributions of source code must retain the above copyright
|
|---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 14 | * documentation and/or other materials provided with the distribution.
|
|---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 16 | * derived from this software without specific prior written permission.
|
|---|
| 17 | *
|
|---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 28 | */
|
|---|
| 29 |
|
|---|
| 30 | /** @addtogroup ns
|
|---|
| 31 | * @{
|
|---|
| 32 | */
|
|---|
| 33 |
|
|---|
| 34 | /**
|
|---|
| 35 | * @file ns.c
|
|---|
| 36 | * @brief Naming service for HelenOS IPC.
|
|---|
| 37 | */
|
|---|
| 38 |
|
|---|
| 39 | #include <abi/ipc/methods.h>
|
|---|
| 40 | #include <async.h>
|
|---|
| 41 | #include <ipc/ns.h>
|
|---|
| 42 | #include <ipc/services.h>
|
|---|
| 43 | #include <abi/ipc/interfaces.h>
|
|---|
| 44 | #include <stdio.h>
|
|---|
| 45 | #include <errno.h>
|
|---|
| 46 | #define TASKMAN_DISABLE_ASYNC
|
|---|
| 47 | #include <taskman.h>
|
|---|
| 48 | #undef TASKMAN_DISABLE_ASYNC
|
|---|
| 49 |
|
|---|
| 50 | #include "ns.h"
|
|---|
| 51 | #include "service.h"
|
|---|
| 52 |
|
|---|
| 53 | static void ns_connection(ipc_call_t *icall, void *arg)
|
|---|
| 54 | {
|
|---|
| 55 | ipc_call_t call;
|
|---|
| 56 | iface_t iface;
|
|---|
| 57 | service_t service;
|
|---|
| 58 |
|
|---|
| 59 | iface = ipc_get_arg1(icall);
|
|---|
| 60 | service = ipc_get_arg2(icall);
|
|---|
| 61 | if (service != 0) {
|
|---|
| 62 | /*
|
|---|
| 63 | * Client requests to be connected to a service.
|
|---|
| 64 | */
|
|---|
| 65 | ns_service_forward(service, iface, icall);
|
|---|
| 66 | return;
|
|---|
| 67 | }
|
|---|
| 68 |
|
|---|
| 69 | async_accept_0(icall);
|
|---|
| 70 |
|
|---|
| 71 | while (true) {
|
|---|
| 72 | ns_pending_conn_process();
|
|---|
| 73 |
|
|---|
| 74 | async_get_call(&call);
|
|---|
| 75 | if (!ipc_get_imethod(&call))
|
|---|
| 76 | break;
|
|---|
| 77 |
|
|---|
| 78 | task_id_t id;
|
|---|
| 79 | errno_t retval;
|
|---|
| 80 |
|
|---|
| 81 | service_t service;
|
|---|
| 82 |
|
|---|
| 83 | switch (ipc_get_imethod(&call)) {
|
|---|
| 84 | case NS_REGISTER:
|
|---|
| 85 | service = ipc_get_arg1(&call);
|
|---|
| 86 | iface = ipc_get_arg2(&call);
|
|---|
| 87 |
|
|---|
| 88 | /*
|
|---|
| 89 | * Server requests service registration.
|
|---|
| 90 | */
|
|---|
| 91 | retval = ns_service_register(service, iface);
|
|---|
| 92 |
|
|---|
| 93 | break;
|
|---|
| 94 | case NS_REGISTER_BROKER:
|
|---|
| 95 | service = ipc_get_arg1(&call);
|
|---|
| 96 | retval = ns_service_register_broker(service);
|
|---|
| 97 | break;
|
|---|
| 98 | case NS_PING:
|
|---|
| 99 | retval = EOK;
|
|---|
| 100 | break;
|
|---|
| 101 | default:
|
|---|
| 102 | printf("%s: Method not supported (%" PRIun ")\n",
|
|---|
| 103 | NAME, ipc_get_imethod(&call));
|
|---|
| 104 | retval = ENOTSUP;
|
|---|
| 105 | break;
|
|---|
| 106 | }
|
|---|
| 107 |
|
|---|
| 108 | async_answer_0(&call, retval);
|
|---|
| 109 | }
|
|---|
| 110 |
|
|---|
| 111 | (void) ns_task_disconnect(&call);
|
|---|
| 112 | async_answer_0(&call, EOK);
|
|---|
| 113 | }
|
|---|
| 114 |
|
|---|
| 115 | int main(int argc, char **argv)
|
|---|
| 116 | {
|
|---|
| 117 | printf("%s: HelenOS IPC Naming Service\n", NAME);
|
|---|
| 118 |
|
|---|
| 119 | errno_t rc = ns_service_init();
|
|---|
| 120 | if (rc != EOK)
|
|---|
| 121 | return rc;
|
|---|
| 122 |
|
|---|
| 123 | rc = taskman_intro_ns();
|
|---|
| 124 | if (rc != EOK) {
|
|---|
| 125 | printf("%s: not accepted by taskman (%i)\n", NAME, rc);
|
|---|
| 126 | return rc;
|
|---|
| 127 | }
|
|---|
| 128 |
|
|---|
| 129 | async_set_fallback_port_handler(ns_connection, NULL);
|
|---|
| 130 |
|
|---|
| 131 | printf("%s: Accepting connections\n", NAME);
|
|---|
| 132 | async_manager();
|
|---|
| 133 |
|
|---|
| 134 | /* Not reached */
|
|---|
| 135 | return 0;
|
|---|
| 136 | }
|
|---|
| 137 |
|
|---|
| 138 | /**
|
|---|
| 139 | * @}
|
|---|
| 140 | */
|
|---|