[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 |
|
---|
[38edb96] | 38 | #include <ipc/ipc.h>
|
---|
[51dbadf3] | 39 | #include <ipc/services.h>
|
---|
[40313e4] | 40 | #include <ipc/ns.h>
|
---|
[69cdeec] | 41 | #include <unistd.h>
|
---|
[40313e4] | 42 | #include <stdio.h>
|
---|
[69cdeec] | 43 | #include <errno.h>
|
---|
[0b99e40] | 44 | #include <as.h>
|
---|
[40313e4] | 45 | #include <ddi.h>
|
---|
| 46 | #include <event.h>
|
---|
| 47 | #include <macros.h>
|
---|
| 48 | #include "ns.h"
|
---|
| 49 | #include "service.h"
|
---|
| 50 | #include "clonable.h"
|
---|
| 51 | #include "task.h"
|
---|
[bfd1546] | 52 |
|
---|
[1fcfc94] | 53 | static void *clockaddr = NULL;
|
---|
| 54 | static void *klogaddr = NULL;
|
---|
| 55 |
|
---|
[40313e4] | 56 | static void get_as_area(ipc_callid_t callid, ipc_call_t *call, void *ph_addr,
|
---|
| 57 | size_t pages, void **addr)
|
---|
[0b99e40] | 58 | {
|
---|
[3636964] | 59 | if (ph_addr == NULL) {
|
---|
| 60 | ipc_answer_0(callid, ENOENT);
|
---|
| 61 | return;
|
---|
| 62 | }
|
---|
[ae318d3] | 63 |
|
---|
[3636964] | 64 | if (*addr == NULL) {
|
---|
| 65 | *addr = as_get_mappable_page(pages * PAGE_SIZE);
|
---|
| 66 |
|
---|
| 67 | if (*addr == NULL) {
|
---|
[b74959bd] | 68 | ipc_answer_0(callid, ENOENT);
|
---|
[0b99e40] | 69 | return;
|
---|
| 70 | }
|
---|
[3636964] | 71 |
|
---|
| 72 | if (physmem_map(ph_addr, *addr, pages,
|
---|
[ae318d3] | 73 | AS_AREA_READ | AS_AREA_CACHEABLE) != 0) {
|
---|
| 74 | ipc_answer_0(callid, ENOENT);
|
---|
| 75 | return;
|
---|
| 76 | }
|
---|
[0b99e40] | 77 | }
|
---|
[3636964] | 78 |
|
---|
[b74959bd] | 79 | ipc_answer_2(callid, EOK, (ipcarg_t) *addr, AS_AREA_READ);
|
---|
[0b99e40] | 80 | }
|
---|
| 81 |
|
---|
[69cdeec] | 82 | int main(int argc, char **argv)
|
---|
| 83 | {
|
---|
[e623197] | 84 | printf(NAME ": HelenOS IPC Naming Service\n");
|
---|
| 85 |
|
---|
[40313e4] | 86 | int rc = service_init();
|
---|
| 87 | if (rc != EOK)
|
---|
| 88 | return rc;
|
---|
[1fcfc94] | 89 |
|
---|
[40313e4] | 90 | rc = clonable_init();
|
---|
| 91 | if (rc != EOK)
|
---|
| 92 | return rc;
|
---|
| 93 |
|
---|
| 94 | rc = task_init();
|
---|
| 95 | if (rc != EOK)
|
---|
| 96 | return rc;
|
---|
[e623197] | 97 |
|
---|
| 98 | printf(NAME ": Accepting connections\n");
|
---|
[40313e4] | 99 |
|
---|
[1fcfc94] | 100 | while (true) {
|
---|
[40313e4] | 101 | process_pending_conn();
|
---|
| 102 | process_pending_wait();
|
---|
[1fcfc94] | 103 |
|
---|
| 104 | ipc_call_t call;
|
---|
| 105 | ipc_callid_t callid = ipc_wait_for_call(&call);
|
---|
[40313e4] | 106 |
|
---|
| 107 | task_id_t id;
|
---|
[1fcfc94] | 108 | ipcarg_t retval;
|
---|
| 109 |
|
---|
[40313e4] | 110 | if (callid & IPC_CALLID_NOTIFICATION) {
|
---|
| 111 | id = (task_id_t)
|
---|
| 112 | MERGE_LOUP32(IPC_GET_ARG2(call), IPC_GET_ARG3(call));
|
---|
| 113 | wait_notification((wait_type_t) IPC_GET_ARG1(call), id);
|
---|
| 114 | continue;
|
---|
| 115 | }
|
---|
| 116 |
|
---|
[4c61e60] | 117 | switch (IPC_GET_METHOD(call)) {
|
---|
[27d293a] | 118 | case IPC_M_SHARE_IN:
|
---|
[51dbadf3] | 119 | switch (IPC_GET_ARG3(call)) {
|
---|
| 120 | case SERVICE_MEM_REALTIME:
|
---|
[40313e4] | 121 | get_as_area(callid, &call,
|
---|
| 122 | (void *) sysinfo_value("clock.faddr"),
|
---|
| 123 | 1, &clockaddr);
|
---|
[51dbadf3] | 124 | break;
|
---|
| 125 | case SERVICE_MEM_KLOG:
|
---|
[40313e4] | 126 | get_as_area(callid, &call,
|
---|
| 127 | (void *) sysinfo_value("klog.faddr"),
|
---|
| 128 | sysinfo_value("klog.pages"), &klogaddr);
|
---|
[51dbadf3] | 129 | break;
|
---|
| 130 | default:
|
---|
[b74959bd] | 131 | ipc_answer_0(callid, ENOENT);
|
---|
[51dbadf3] | 132 | }
|
---|
[0b99e40] | 133 | continue;
|
---|
[7048773] | 134 | case IPC_M_PHONE_HUNGUP:
|
---|
[20614d0] | 135 | retval = EOK;
|
---|
[7048773] | 136 | break;
|
---|
[043dcc27] | 137 | case IPC_M_CONNECT_TO_ME:
|
---|
[babe786] | 138 | /*
|
---|
[043dcc27] | 139 | * Server requests service registration.
|
---|
[babe786] | 140 | */
|
---|
[bfd1546] | 141 | if (service_clonable(IPC_GET_ARG1(call))) {
|
---|
| 142 | register_clonable(IPC_GET_ARG1(call),
|
---|
| 143 | IPC_GET_ARG5(call), &call, callid);
|
---|
| 144 | continue;
|
---|
| 145 | } else {
|
---|
| 146 | retval = register_service(IPC_GET_ARG1(call),
|
---|
| 147 | IPC_GET_ARG5(call), &call);
|
---|
| 148 | }
|
---|
[69cdeec] | 149 | break;
|
---|
[7048773] | 150 | case IPC_M_CONNECT_ME_TO:
|
---|
[043dcc27] | 151 | /*
|
---|
| 152 | * Client requests to be connected to a service.
|
---|
| 153 | */
|
---|
[bfd1546] | 154 | if (service_clonable(IPC_GET_ARG1(call))) {
|
---|
| 155 | connect_to_clonable(IPC_GET_ARG1(call),
|
---|
| 156 | &call, callid);
|
---|
| 157 | continue;
|
---|
| 158 | } else {
|
---|
[1fcfc94] | 159 | connect_to_service(IPC_GET_ARG1(call), &call,
|
---|
| 160 | callid);
|
---|
| 161 | continue;
|
---|
[bfd1546] | 162 | }
|
---|
[11eae82] | 163 | break;
|
---|
[40313e4] | 164 | case NS_PING:
|
---|
| 165 | retval = EOK;
|
---|
| 166 | break;
|
---|
| 167 | case NS_TASK_WAIT:
|
---|
| 168 | id = (task_id_t)
|
---|
| 169 | MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
|
---|
| 170 | wait_for_task(id, &call, callid);
|
---|
| 171 | continue;
|
---|
[69cdeec] | 172 | default:
|
---|
| 173 | retval = ENOENT;
|
---|
| 174 | break;
|
---|
| 175 | }
|
---|
[1fcfc94] | 176 |
|
---|
| 177 | if (!(callid & IPC_CALLID_NOTIFICATION))
|
---|
[b74959bd] | 178 | ipc_answer_0(callid, retval);
|
---|
[69cdeec] | 179 | }
|
---|
[e623197] | 180 |
|
---|
| 181 | /* Not reached */
|
---|
| 182 | return 0;
|
---|
[69cdeec] | 183 | }
|
---|
[babe786] | 184 |
|
---|
[1fcfc94] | 185 | /**
|
---|
[ce5bcb4] | 186 | * @}
|
---|
| 187 | */
|
---|