source: mainline/uspace/srv/ns/ns.c@ a46e56b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a46e56b was a46e56b, checked in by Jakub Jermar <jakub@…>, 7 years ago

Prefer handle over ID in naming handle variables

  • Property mode set to 100644
File size: 3.7 KB
Line 
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 <macros.h>
46#include "ns.h"
47#include "service.h"
48#include "clonable.h"
49#include "task.h"
50
51static void ns_connection(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg)
52{
53 ipc_call_t call;
54 cap_call_handle_t chandle;
55 iface_t iface;
56 service_t service;
57
58 iface = IPC_GET_ARG1(*icall);
59 service = IPC_GET_ARG2(*icall);
60 if (service != 0) {
61 /*
62 * Client requests to be connected to a service.
63 */
64 if (service_clonable(service)) {
65 connect_to_clonable(service, iface, icall, icall_handle);
66 } else {
67 connect_to_service(service, iface, icall, icall_handle);
68 }
69 return;
70 }
71
72 async_answer_0(icall_handle, EOK);
73
74 while (true) {
75 process_pending_conn();
76
77 chandle = async_get_call(&call);
78 if (!IPC_GET_IMETHOD(call))
79 break;
80
81 task_id_t id;
82 errno_t retval;
83
84 service_t service;
85 sysarg_t phone;
86
87 switch (IPC_GET_IMETHOD(call)) {
88 case NS_REGISTER:
89 service = IPC_GET_ARG1(call);
90 phone = IPC_GET_ARG5(call);
91
92 /*
93 * Server requests service registration.
94 */
95 if (service_clonable(service)) {
96 register_clonable(service, phone, &call, chandle);
97 continue;
98 } else {
99 retval = register_service(service, phone, &call);
100 }
101
102 break;
103 case NS_PING:
104 retval = EOK;
105 break;
106 case NS_TASK_WAIT:
107 id = (task_id_t)
108 MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
109 wait_for_task(id, &call, chandle);
110 continue;
111 case NS_ID_INTRO:
112 retval = ns_task_id_intro(&call);
113 break;
114 case NS_RETVAL:
115 retval = ns_task_retval(&call);
116 break;
117 default:
118 printf("ns: method not supported\n");
119 retval = ENOTSUP;
120 break;
121 }
122
123 async_answer_0(chandle, retval);
124 }
125
126 (void) ns_task_disconnect(&call);
127}
128
129int main(int argc, char **argv)
130{
131 printf("%s: HelenOS IPC Naming Service\n", NAME);
132
133 errno_t rc = service_init();
134 if (rc != EOK)
135 return rc;
136
137 rc = clonable_init();
138 if (rc != EOK)
139 return rc;
140
141 rc = task_init();
142 if (rc != EOK)
143 return rc;
144
145 async_set_fallback_port_handler(ns_connection, NULL);
146
147 printf("%s: Accepting connections\n", NAME);
148 async_manager();
149
150 /* Not reached */
151 return 0;
152}
153
154/**
155 * @}
156 */
Note: See TracBrowser for help on using the repository browser.