source: mainline/uspace/srv/ns/ns.c@ 4ff66ae

Last change on this file since 4ff66ae was bb57a00, checked in by Matthieu Riolo <matthieu.riolo@…>, 6 years ago

sysman: Awareness of boot time tasks as anonymous services

  • sysman calls taskman_dump_events
  • boot time tasks (servers) correctly set their retval

Conflicts:

uspace/srv/ns/ns.c

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[babe786]1/*
[df4ed85]2 * Copyright (c) 2006 Ondrej Palkovsky
[012dd8e]3 * Copyright (c) 2015 Michal Koutny
[babe786]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
[231a60a]30/** @addtogroup ns
[ce5bcb4]31 * @{
[1fcfc94]32 */
[ce5bcb4]33
[babe786]34/**
[1fcfc94]35 * @file ns.c
36 * @brief Naming service for HelenOS IPC.
[babe786]37 */
38
[7b616e2]39#include <abi/ipc/methods.h>
40#include <async.h>
[40313e4]41#include <ipc/ns.h>
[6a8ce16]42#include <ipc/services.h>
[2133e02]43#include <abi/ipc/interfaces.h>
[40313e4]44#include <stdio.h>
[69cdeec]45#include <errno.h>
[012dd8e]46#define TASKMAN_DISABLE_ASYNC
47#include <taskman.h>
48#undef TASKMAN_DISABLE_ASYNC
49
[40313e4]50#include "ns.h"
51#include "service.h"
[bfd1546]52
[984a9ba]53static void ns_connection(ipc_call_t *icall, void *arg)
[69cdeec]54{
[7b616e2]55 ipc_call_t call;
56 iface_t iface;
57 service_t service;
58
[fafb8e5]59 iface = ipc_get_arg1(icall);
60 service = ipc_get_arg2(icall);
[7b616e2]61 if (service != 0) {
62 /*
63 * Client requests to be connected to a service.
64 */
[0a8f070]65 ns_service_forward(service, iface, icall);
[7b616e2]66 return;
67 }
[a35b458]68
[beb83c1]69 async_accept_0(icall);
[7b616e2]70
[1fcfc94]71 while (true) {
[9b1baac]72 ns_pending_conn_process();
[a35b458]73
[984a9ba]74 async_get_call(&call);
[fafb8e5]75 if (!ipc_get_imethod(&call))
[7b616e2]76 break;
[a35b458]77
[40313e4]78 task_id_t id;
[b7fd2a0]79 errno_t retval;
[a35b458]80
[6a8ce16]81 service_t service;
[a35b458]82
[fafb8e5]83 switch (ipc_get_imethod(&call)) {
[7b616e2]84 case NS_REGISTER:
[fafb8e5]85 service = ipc_get_arg1(&call);
86 iface = ipc_get_arg2(&call);
[a35b458]87
[babe786]88 /*
[043dcc27]89 * Server requests service registration.
[babe786]90 */
[0a8f070]91 retval = ns_service_register(service, iface);
[a35b458]92
[9b1baac]93 break;
94 case NS_REGISTER_BROKER:
[fafb8e5]95 service = ipc_get_arg1(&call);
[9b1baac]96 retval = ns_service_register_broker(service);
[11eae82]97 break;
[40313e4]98 case NS_PING:
99 retval = EOK;
100 break;
[69cdeec]101 default:
[9b1baac]102 printf("%s: Method not supported (%" PRIun ")\n",
[fafb8e5]103 NAME, ipc_get_imethod(&call));
[7b616e2]104 retval = ENOTSUP;
[69cdeec]105 break;
106 }
[a35b458]107
[984a9ba]108 async_answer_0(&call, retval);
[69cdeec]109 }
[7b616e2]110
111 (void) ns_task_disconnect(&call);
[889cdb1]112 async_answer_0(&call, EOK);
[7b616e2]113}
114
115int main(int argc, char **argv)
116{
117 printf("%s: HelenOS IPC Naming Service\n", NAME);
[a35b458]118
[9b1baac]119 errno_t rc = ns_service_init();
[7b616e2]120 if (rc != EOK)
121 return rc;
[012dd8e]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 }
[a35b458]128
[7b616e2]129 async_set_fallback_port_handler(ns_connection, NULL);
[a35b458]130
[7b616e2]131 printf("%s: Accepting connections\n", NAME);
[bb57a00]132 // TODO enable NS to use task_retval(0)
[7b616e2]133 async_manager();
[a35b458]134
[e623197]135 /* Not reached */
136 return 0;
[69cdeec]137}
[babe786]138
[1fcfc94]139/**
[ce5bcb4]140 * @}
141 */
Note: See TracBrowser for help on using the repository browser.