source: mainline/uspace/srv/ns/ns.c@ 13dc048

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 13dc048 was 25a179e, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 8 years ago

IPC return values are always errno constants. Adjust types to reflect that.

In principle, IPC server is not allowed to return non-errno values via
the "main" return value, because kernel interprets it (e.g. EHANGUP).
It's still possible to return arbitrary additional return values alongside EOK,
which are not interpreted in normal communication.

  • Property mode set to 100644
File size: 3.7 KB
RevLine 
[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
[7b616e2]51static void ns_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
[69cdeec]52{
[7b616e2]53 ipc_call_t call;
54 ipc_callid_t callid;
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, iid);
66 } else {
67 connect_to_service(service, iface, icall, iid);
68 }
69 return;
70 }
[40313e4]71
[7b616e2]72 async_answer_0(iid, EOK);
73
[1fcfc94]74 while (true) {
[40313e4]75 process_pending_conn();
[1fcfc94]76
[7b616e2]77 callid = async_get_call(&call);
78 if (!IPC_GET_IMETHOD(call))
79 break;
[40313e4]80
81 task_id_t id;
[25a179e]82 int retval;
[1fcfc94]83
[6a8ce16e]84 service_t service;
85 sysarg_t phone;
86
[228e490]87 switch (IPC_GET_IMETHOD(call)) {
[7b616e2]88 case NS_REGISTER:
89 service = IPC_GET_ARG1(call);
[6a8ce16e]90 phone = IPC_GET_ARG5(call);
91
[babe786]92 /*
[043dcc27]93 * Server requests service registration.
[babe786]94 */
[6a8ce16e]95 if (service_clonable(service)) {
96 register_clonable(service, phone, &call, callid);
[bfd1546]97 continue;
98 } else {
[7b616e2]99 retval = register_service(service, phone, &call);
[bfd1546]100 }
[7b616e2]101
[11eae82]102 break;
[40313e4]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, callid);
110 continue;
[5d96851b]111 case NS_ID_INTRO:
112 retval = ns_task_id_intro(&call);
113 break;
[7114d83]114 case NS_RETVAL:
115 retval = ns_task_retval(&call);
116 break;
[69cdeec]117 default:
[7b616e2]118 printf("ns: method not supported\n");
119 retval = ENOTSUP;
[69cdeec]120 break;
121 }
[1fcfc94]122
[7b616e2]123 async_answer_0(callid, retval);
[69cdeec]124 }
[7b616e2]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 int 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();
[e623197]149
150 /* Not reached */
151 return 0;
[69cdeec]152}
[babe786]153
[1fcfc94]154/**
[ce5bcb4]155 * @}
156 */
Note: See TracBrowser for help on using the repository browser.