1 | /*
|
---|
2 | * Copyright (c) 2006 Ondrej Palkovsky
|
---|
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 |
|
---|
29 | /** @addtogroup ns
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 |
|
---|
33 | /**
|
---|
34 | * @file ns.c
|
---|
35 | * @brief Naming service for HelenOS IPC.
|
---|
36 | */
|
---|
37 |
|
---|
38 | #include <abi/ipc/methods.h>
|
---|
39 | #include <async.h>
|
---|
40 | #include <ipc/ns.h>
|
---|
41 | #include <ipc/services.h>
|
---|
42 | #include <abi/ipc/interfaces.h>
|
---|
43 | #include <stdio.h>
|
---|
44 | #include <errno.h>
|
---|
45 | #include "ns.h"
|
---|
46 | #include "service.h"
|
---|
47 |
|
---|
48 | static void ns_connection(ipc_call_t *icall, void *arg)
|
---|
49 | {
|
---|
50 | ipc_call_t call;
|
---|
51 | iface_t iface;
|
---|
52 | service_t service;
|
---|
53 |
|
---|
54 | iface = ipc_get_arg1(icall);
|
---|
55 | service = ipc_get_arg2(icall);
|
---|
56 | if (service != 0) {
|
---|
57 | /*
|
---|
58 | * Client requests to be connected to a service.
|
---|
59 | */
|
---|
60 | ns_service_forward(service, iface, icall);
|
---|
61 | return;
|
---|
62 | }
|
---|
63 |
|
---|
64 | async_accept_0(icall);
|
---|
65 |
|
---|
66 | while (true) {
|
---|
67 | ns_pending_conn_process();
|
---|
68 |
|
---|
69 | async_get_call(&call);
|
---|
70 | if (!ipc_get_imethod(&call))
|
---|
71 | break;
|
---|
72 |
|
---|
73 | task_id_t id;
|
---|
74 | errno_t retval;
|
---|
75 |
|
---|
76 | service_t service;
|
---|
77 |
|
---|
78 | switch (ipc_get_imethod(&call)) {
|
---|
79 | case NS_REGISTER:
|
---|
80 | service = ipc_get_arg1(&call);
|
---|
81 | iface = ipc_get_arg2(&call);
|
---|
82 |
|
---|
83 | /*
|
---|
84 | * Server requests service registration.
|
---|
85 | */
|
---|
86 | retval = ns_service_register(service, iface);
|
---|
87 |
|
---|
88 | break;
|
---|
89 | case NS_REGISTER_BROKER:
|
---|
90 | service = ipc_get_arg1(&call);
|
---|
91 | retval = ns_service_register_broker(service);
|
---|
92 | break;
|
---|
93 | case NS_PING:
|
---|
94 | retval = EOK;
|
---|
95 | break;
|
---|
96 | default:
|
---|
97 | printf("%s: Method not supported (%" PRIun ")\n",
|
---|
98 | NAME, ipc_get_imethod(&call));
|
---|
99 | retval = ENOTSUP;
|
---|
100 | break;
|
---|
101 | }
|
---|
102 |
|
---|
103 | async_answer_0(&call, retval);
|
---|
104 | }
|
---|
105 |
|
---|
106 | (void) ns_task_disconnect(&call);
|
---|
107 | async_answer_0(&call, EOK);
|
---|
108 | }
|
---|
109 |
|
---|
110 | int main(int argc, char **argv)
|
---|
111 | {
|
---|
112 | printf("%s: HelenOS IPC Naming Service\n", NAME);
|
---|
113 |
|
---|
114 | errno_t rc = ns_service_init();
|
---|
115 | if (rc != EOK)
|
---|
116 | return rc;
|
---|
117 |
|
---|
118 | async_set_fallback_port_handler(ns_connection, NULL);
|
---|
119 |
|
---|
120 | printf("%s: Accepting connections\n", NAME);
|
---|
121 | async_manager();
|
---|
122 |
|
---|
123 | /* Not reached */
|
---|
124 | return 0;
|
---|
125 | }
|
---|
126 |
|
---|
127 | /**
|
---|
128 | * @}
|
---|
129 | */
|
---|