/* * Copyright (c) 2006 Ondrej Palkovsky * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * - The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** @addtogroup ns * @{ */ /** * @file ns.c * @brief Naming service for HelenOS IPC. */ #include #include #include #include #include #include #include #include #include "ns.h" #include "service.h" #include "clonable.h" #include "task.h" static void ns_connection(ipc_call_t *icall, void *arg) { ipc_call_t call; iface_t iface; service_t service; iface = IPC_GET_ARG1(*icall); service = IPC_GET_ARG2(*icall); if (service != 0) { /* * Client requests to be connected to a service. */ if (ns_service_is_clonable(service, iface)) { ns_clonable_forward(service, iface, icall); } else { ns_service_forward(service, iface, icall); } return; } async_answer_0(icall, EOK); while (true) { ns_pending_conn_process(); async_get_call(&call); if (!IPC_GET_IMETHOD(call)) break; task_id_t id; errno_t retval; service_t service; switch (IPC_GET_IMETHOD(call)) { case NS_REGISTER: service = IPC_GET_ARG1(call); iface = IPC_GET_ARG2(call); /* * Server requests service registration. */ if (ns_service_is_clonable(service, iface)) { ns_clonable_register(&call); continue; } else { retval = ns_service_register(service, iface); } break; case NS_REGISTER_BROKER: service = IPC_GET_ARG1(call); retval = ns_service_register_broker(service); break; case NS_PING: retval = EOK; break; case NS_TASK_WAIT: id = (task_id_t) MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call)); wait_for_task(id, &call); continue; case NS_ID_INTRO: retval = ns_task_id_intro(&call); break; case NS_RETVAL: retval = ns_task_retval(&call); break; default: printf("%s: Method not supported (%" PRIun ")\n", NAME, IPC_GET_IMETHOD(call)); retval = ENOTSUP; break; } async_answer_0(&call, retval); } (void) ns_task_disconnect(&call); async_answer_0(&call, EOK); } int main(int argc, char **argv) { printf("%s: HelenOS IPC Naming Service\n", NAME); errno_t rc = ns_service_init(); if (rc != EOK) return rc; rc = ns_clonable_init(); if (rc != EOK) return rc; rc = task_init(); if (rc != EOK) return rc; async_set_fallback_port_handler(ns_connection, NULL); printf("%s: Accepting connections\n", NAME); async_manager(); /* Not reached */ return 0; } /** * @} */