source: mainline/uspace/srv/ns/ns.c@ 228e490

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 228e490 was 228e490, checked in by Martin Decky <martin@…>, 15 years ago

initial modifications for supporting declarative IPC interfaces

  • Property mode set to 100644
File size: 5.0 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
[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>
[3bf907a]48#include <sysinfo.h>
[40313e4]49#include "ns.h"
50#include "service.h"
51#include "clonable.h"
52#include "task.h"
[bfd1546]53
[1fcfc94]54static void *clockaddr = NULL;
55static void *klogaddr = NULL;
56
[d9fae235]57static void get_as_area(ipc_callid_t callid, ipc_call_t *call, void *faddr,
[40313e4]58 size_t pages, void **addr)
[0b99e40]59{
[d9fae235]60 if ((faddr == NULL) || (pages == 0)) {
[3636964]61 ipc_answer_0(callid, ENOENT);
62 return;
63 }
[ae318d3]64
[3636964]65 if (*addr == NULL) {
66 *addr = as_get_mappable_page(pages * PAGE_SIZE);
67
68 if (*addr == NULL) {
[b74959bd]69 ipc_answer_0(callid, ENOENT);
[0b99e40]70 return;
71 }
[3636964]72
[d9fae235]73 if (physmem_map(faddr, *addr, pages,
[ae318d3]74 AS_AREA_READ | AS_AREA_CACHEABLE) != 0) {
75 ipc_answer_0(callid, ENOENT);
76 return;
77 }
[0b99e40]78 }
[3636964]79
[96b02eb9]80 ipc_answer_2(callid, EOK, (sysarg_t) *addr, AS_AREA_READ);
[0b99e40]81}
82
[d9fae235]83static void setup_clock_area(ipc_callid_t callid, ipc_call_t *call, void **addr)
84{
85 uintptr_t faddr;
86 int err = sysinfo_get_value("clock.faddr", &faddr);
87
88 if (err != EOK)
89 ipc_answer_0(callid, err);
90
91 get_as_area(callid, call, (void *) faddr, 1, addr);
92}
93
94static void setup_klog_area(ipc_callid_t callid, ipc_call_t *call, void **addr)
95{
96 uintptr_t faddr;
97 int err = sysinfo_get_value("klog.faddr", &faddr);
98
99 if (err != EOK)
100 ipc_answer_0(callid, err);
101
102 size_t pages;
103 err = sysinfo_get_value("klog.pages", &pages);
104
105 if (err != EOK)
106 ipc_answer_0(callid, err);
107
108 get_as_area(callid, call, (void *) faddr, pages, addr);
109}
110
[69cdeec]111int main(int argc, char **argv)
112{
[e623197]113 printf(NAME ": HelenOS IPC Naming Service\n");
114
[40313e4]115 int rc = service_init();
116 if (rc != EOK)
117 return rc;
[1fcfc94]118
[40313e4]119 rc = clonable_init();
120 if (rc != EOK)
121 return rc;
122
123 rc = task_init();
124 if (rc != EOK)
125 return rc;
[e623197]126
[d9fae235]127 printf("%s: Accepting connections\n", NAME);
[40313e4]128
[1fcfc94]129 while (true) {
[40313e4]130 process_pending_conn();
131 process_pending_wait();
[1fcfc94]132
133 ipc_call_t call;
134 ipc_callid_t callid = ipc_wait_for_call(&call);
[40313e4]135
136 task_id_t id;
[96b02eb9]137 sysarg_t retval;
[1fcfc94]138
[228e490]139 switch (IPC_GET_IMETHOD(call)) {
[27d293a]140 case IPC_M_SHARE_IN:
[51dbadf3]141 switch (IPC_GET_ARG3(call)) {
142 case SERVICE_MEM_REALTIME:
[d9fae235]143 setup_clock_area(callid, &call, &clockaddr);
[51dbadf3]144 break;
145 case SERVICE_MEM_KLOG:
[d9fae235]146 setup_klog_area(callid, &call, &klogaddr);
[51dbadf3]147 break;
148 default:
[b74959bd]149 ipc_answer_0(callid, ENOENT);
[51dbadf3]150 }
[0b99e40]151 continue;
[7048773]152 case IPC_M_PHONE_HUNGUP:
[5d96851b]153 retval = ns_task_disconnect(&call);
[7048773]154 break;
[043dcc27]155 case IPC_M_CONNECT_TO_ME:
[babe786]156 /*
[043dcc27]157 * Server requests service registration.
[babe786]158 */
[bfd1546]159 if (service_clonable(IPC_GET_ARG1(call))) {
160 register_clonable(IPC_GET_ARG1(call),
161 IPC_GET_ARG5(call), &call, callid);
162 continue;
163 } else {
164 retval = register_service(IPC_GET_ARG1(call),
165 IPC_GET_ARG5(call), &call);
166 }
[69cdeec]167 break;
[7048773]168 case IPC_M_CONNECT_ME_TO:
[043dcc27]169 /*
170 * Client requests to be connected to a service.
171 */
[bfd1546]172 if (service_clonable(IPC_GET_ARG1(call))) {
173 connect_to_clonable(IPC_GET_ARG1(call),
174 &call, callid);
175 continue;
176 } else {
[1fcfc94]177 connect_to_service(IPC_GET_ARG1(call), &call,
178 callid);
179 continue;
[bfd1546]180 }
[11eae82]181 break;
[40313e4]182 case NS_PING:
183 retval = EOK;
184 break;
185 case NS_TASK_WAIT:
186 id = (task_id_t)
187 MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
188 wait_for_task(id, &call, callid);
189 continue;
[5d96851b]190 case NS_ID_INTRO:
191 retval = ns_task_id_intro(&call);
192 break;
[7114d83]193 case NS_RETVAL:
194 retval = ns_task_retval(&call);
195 break;
[69cdeec]196 default:
197 retval = ENOENT;
198 break;
199 }
[1fcfc94]200
201 if (!(callid & IPC_CALLID_NOTIFICATION))
[b74959bd]202 ipc_answer_0(callid, retval);
[69cdeec]203 }
[e623197]204
205 /* Not reached */
206 return 0;
[69cdeec]207}
[babe786]208
[1fcfc94]209/**
[ce5bcb4]210 * @}
211 */
Note: See TracBrowser for help on using the repository browser.