source: mainline/uspace/lib/c/generic/ipc.c@ 01c3bb4

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 01c3bb4 was 01c3bb4, checked in by Jakub Jermar <jakub@…>, 8 years ago

Convert call-handling syscalls to capabilities

This commit modifies the behavior of sys_ipc_wait_for_call() to return a
capability handle for requests. This capability handle can be used
either by sys_ipc_answer*() to answer the call or by sys_ipc_forward*()
to forward it further along. Answering or forwarding the call results in
destruction of the respective capability. For requests and
notifications, sys_ipc_wait_for_call() returns CAP_NIL and sets call
flags accordingly.

  • Property mode set to 100644
File size: 11.1 KB
Line 
1/*
2 * Copyright (c) 2006 Ondrej Palkovsky
3 * Copyright (c) 2017 Jakub Jermar
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
30/** @addtogroup libc
31 * @{
32 * @}
33 */
34
35/** @addtogroup libcipc IPC
36 * @brief HelenOS uspace IPC
37 * @{
38 * @ingroup libc
39 */
40/** @file
41 */
42
43#include <ipc/ipc.h>
44#include <libc.h>
45#include <malloc.h>
46#include <errno.h>
47#include <adt/list.h>
48#include <futex.h>
49#include <fibril.h>
50#include <macros.h>
51
52/**
53 * Structures of this type are used for keeping track of sent asynchronous calls.
54 */
55typedef struct async_call {
56 ipc_async_callback_t callback;
57 void *private;
58
59 struct {
60 ipc_call_t data;
61 } msg;
62} async_call_t;
63
64/** Prologue for ipc_call_async_*() functions.
65 *
66 * @param private Argument for the answer/error callback.
67 * @param callback Answer/error callback.
68 *
69 * @return New, partially initialized async_call structure or NULL.
70 *
71 */
72static inline async_call_t *ipc_prepare_async(void *private,
73 ipc_async_callback_t callback)
74{
75 async_call_t *call =
76 (async_call_t *) malloc(sizeof(async_call_t));
77 if (!call) {
78 if (callback)
79 callback(private, ENOMEM, NULL);
80
81 return NULL;
82 }
83
84 call->callback = callback;
85 call->private = private;
86
87 return call;
88}
89
90/** Epilogue for ipc_call_async_*() functions.
91 *
92 * @param rc Value returned by the SYS_IPC_CALL_ASYNC_* syscall.
93 * @param call Structure returned by ipc_prepare_async().
94 */
95static inline void ipc_finish_async(int rc, async_call_t *call)
96{
97 if (!call) {
98 /* Nothing to do regardless if failed or not */
99 return;
100 }
101
102 if (rc == IPC_CALLRET_FATAL) {
103 /* Call asynchronous handler with error code */
104 if (call->callback)
105 call->callback(call->private, ENOENT, NULL);
106
107 free(call);
108 return;
109 }
110}
111
112/** Fast asynchronous call.
113 *
114 * This function can only handle three arguments of payload. It is, however,
115 * faster than the more generic ipc_call_async_slow().
116 *
117 * Note that this function is a void function.
118 *
119 * During normal operation, answering this call will trigger the callback.
120 * In case of fatal error, the callback handler is called with the proper
121 * error code. If the call cannot be temporarily made, it is queued.
122 *
123 * @param phandle Phone handle for the call.
124 * @param imethod Requested interface and method.
125 * @param arg1 Service-defined payload argument.
126 * @param arg2 Service-defined payload argument.
127 * @param arg3 Service-defined payload argument.
128 * @param private Argument to be passed to the answer/error callback.
129 * @param callback Answer or error callback.
130 */
131void ipc_call_async_fast(cap_handle_t phandle, sysarg_t imethod, sysarg_t arg1,
132 sysarg_t arg2, sysarg_t arg3, void *private, ipc_async_callback_t callback)
133{
134 async_call_t *call = ipc_prepare_async(private, callback);
135 if (!call)
136 return;
137
138 int rc = __SYSCALL6(SYS_IPC_CALL_ASYNC_FAST, phandle, imethod, arg1,
139 arg2, arg3, (sysarg_t) call);
140
141 ipc_finish_async(rc, call);
142}
143
144/** Asynchronous call transmitting the entire payload.
145 *
146 * Note that this function is a void function.
147 *
148 * During normal operation, answering this call will trigger the callback.
149 * In case of fatal error, the callback handler is called with the proper
150 * error code. If the call cannot be temporarily made, it is queued.
151 *
152 * @param phandle Phone handle for the call.
153 * @param imethod Requested interface and method.
154 * @param arg1 Service-defined payload argument.
155 * @param arg2 Service-defined payload argument.
156 * @param arg3 Service-defined payload argument.
157 * @param arg4 Service-defined payload argument.
158 * @param arg5 Service-defined payload argument.
159 * @param private Argument to be passed to the answer/error callback.
160 * @param callback Answer or error callback.
161 */
162void ipc_call_async_slow(int phandle, sysarg_t imethod, sysarg_t arg1,
163 sysarg_t arg2, sysarg_t arg3, sysarg_t arg4, sysarg_t arg5, void *private,
164 ipc_async_callback_t callback)
165{
166 async_call_t *call = ipc_prepare_async(private, callback);
167 if (!call)
168 return;
169
170 IPC_SET_IMETHOD(call->msg.data, imethod);
171 IPC_SET_ARG1(call->msg.data, arg1);
172 IPC_SET_ARG2(call->msg.data, arg2);
173 IPC_SET_ARG3(call->msg.data, arg3);
174 IPC_SET_ARG4(call->msg.data, arg4);
175 IPC_SET_ARG5(call->msg.data, arg5);
176
177 int rc = __SYSCALL3(SYS_IPC_CALL_ASYNC_SLOW, phandle,
178 (sysarg_t) &call->msg.data, (sysarg_t) call);
179
180 ipc_finish_async(rc, call);
181}
182
183/** Answer received call (fast version).
184 *
185 * The fast answer makes use of passing retval and first four arguments in
186 * registers. If you need to return more, use the ipc_answer_slow() instead.
187 *
188 * @param chandle Handle of the call being answered.
189 * @param retval Return value.
190 * @param arg1 First return argument.
191 * @param arg2 Second return argument.
192 * @param arg3 Third return argument.
193 * @param arg4 Fourth return argument.
194 *
195 * @return Zero on success.
196 * @return Value from @ref errno.h on failure.
197 *
198 */
199sysarg_t ipc_answer_fast(cap_handle_t chandle, sysarg_t retval, sysarg_t arg1,
200 sysarg_t arg2, sysarg_t arg3, sysarg_t arg4)
201{
202 return __SYSCALL6(SYS_IPC_ANSWER_FAST, chandle, retval, arg1, arg2,
203 arg3, arg4);
204}
205
206/** Answer received call (entire payload).
207 *
208 * @param chandle Handle of the call being answered.
209 * @param retval Return value.
210 * @param arg1 First return argument.
211 * @param arg2 Second return argument.
212 * @param arg3 Third return argument.
213 * @param arg4 Fourth return argument.
214 * @param arg5 Fifth return argument.
215 *
216 * @return Zero on success.
217 * @return Value from @ref errno.h on failure.
218 *
219 */
220sysarg_t ipc_answer_slow(cap_handle_t chandle, sysarg_t retval, sysarg_t arg1,
221 sysarg_t arg2, sysarg_t arg3, sysarg_t arg4, sysarg_t arg5)
222{
223 ipc_call_t data;
224
225 IPC_SET_RETVAL(data, retval);
226 IPC_SET_ARG1(data, arg1);
227 IPC_SET_ARG2(data, arg2);
228 IPC_SET_ARG3(data, arg3);
229 IPC_SET_ARG4(data, arg4);
230 IPC_SET_ARG5(data, arg5);
231
232 return __SYSCALL2(SYS_IPC_ANSWER_SLOW, chandle, (sysarg_t) &data);
233}
234
235/** Handle received answer.
236 *
237 * @param data Call data of the answer.
238 */
239static void handle_answer(ipc_call_t *data)
240{
241 async_call_t *call = data->label;
242
243 if (!call)
244 return;
245
246 if (call->callback)
247 call->callback(call->private, IPC_GET_RETVAL(*data), data);
248 free(call);
249}
250
251/** Wait for first IPC call to come.
252 *
253 * @param call Incoming call storage.
254 * @param usec Timeout in microseconds
255 * @param flags Flags passed to SYS_IPC_WAIT (blocking, nonblocking).
256 *
257 * @return Call handle.
258 * @return Negative error code.
259 */
260cap_handle_t ipc_wait_cycle(ipc_call_t *call, sysarg_t usec, unsigned int flags)
261{
262 cap_handle_t chandle =
263 __SYSCALL3(SYS_IPC_WAIT, (sysarg_t) call, usec, flags);
264
265 /* Handle received answers */
266 if ((chandle == CAP_NIL) && (call->flags & IPC_CALLID_ANSWERED))
267 handle_answer(call);
268
269 return chandle;
270}
271
272/** Interrupt one thread of this task from waiting for IPC.
273 *
274 */
275void ipc_poke(void)
276{
277 __SYSCALL0(SYS_IPC_POKE);
278}
279
280/** Wait for first IPC call to come.
281 *
282 * Only requests are returned, answers are processed internally.
283 *
284 * @param call Incoming call storage.
285 * @param usec Timeout in microseconds
286 *
287 * @return Call handle.
288 * @return Negative error code.
289 *
290 */
291cap_handle_t ipc_wait_for_call_timeout(ipc_call_t *call, sysarg_t usec)
292{
293 cap_handle_t chandle;
294
295 do {
296 chandle = ipc_wait_cycle(call, usec, SYNCH_FLAGS_NONE);
297 } while ((chandle == CAP_NIL) && (call->flags & IPC_CALLID_ANSWERED));
298
299 return chandle;
300}
301
302/** Check if there is an IPC call waiting to be picked up.
303 *
304 * Only requests are returned, answers are processed internally.
305 *
306 * @param call Incoming call storage.
307 *
308 * @return Call handle.
309 * @return Negative error code.
310 *
311 */
312cap_handle_t ipc_trywait_for_call(ipc_call_t *call)
313{
314 cap_handle_t chandle;
315
316 do {
317 chandle = ipc_wait_cycle(call, SYNCH_NO_TIMEOUT,
318 SYNCH_FLAGS_NON_BLOCKING);
319 } while ((chandle == CAP_NIL) && (call->flags & IPC_CALLID_ANSWERED));
320
321 return chandle;
322}
323
324/** Hang up a phone.
325 *
326 * @param phandle Handle of the phone to be hung up.
327 *
328 * @return Zero on success or a negative error code.
329 *
330 */
331int ipc_hangup(cap_handle_t phandle)
332{
333 return __SYSCALL1(SYS_IPC_HANGUP, phandle);
334}
335
336/** Forward a received call to another destination.
337 *
338 * For non-system methods, the old method, arg1 and arg2 are rewritten by the
339 * new values. For system methods, the new method, arg1 and arg2 are written to
340 * the old arg1, arg2 and arg3, respectivelly. Calls with immutable methods are
341 * forwarded verbatim.
342 *
343 * @param chandle Handle of the call to forward.
344 * @param phandle Phone handle to use for forwarding.
345 * @param imethod New interface and method for the forwarded call.
346 * @param arg1 New value of the first argument for the forwarded call.
347 * @param arg2 New value of the second argument for the forwarded call.
348 * @param mode Flags specifying mode of the forward operation.
349 *
350 * @return Zero on success or an error code.
351 *
352 */
353int ipc_forward_fast(cap_handle_t chandle, cap_handle_t phandle,
354 sysarg_t imethod, sysarg_t arg1, sysarg_t arg2, unsigned int mode)
355{
356 return __SYSCALL6(SYS_IPC_FORWARD_FAST, chandle, phandle, imethod, arg1,
357 arg2, mode);
358}
359
360int ipc_forward_slow(cap_handle_t chandle, cap_handle_t phandle,
361 sysarg_t imethod, sysarg_t arg1, sysarg_t arg2, sysarg_t arg3,
362 sysarg_t arg4, sysarg_t arg5, unsigned int mode)
363{
364 ipc_call_t data;
365
366 IPC_SET_IMETHOD(data, imethod);
367 IPC_SET_ARG1(data, arg1);
368 IPC_SET_ARG2(data, arg2);
369 IPC_SET_ARG3(data, arg3);
370 IPC_SET_ARG4(data, arg4);
371 IPC_SET_ARG5(data, arg5);
372
373 return __SYSCALL4(SYS_IPC_FORWARD_SLOW, chandle, phandle,
374 (sysarg_t) &data, mode);
375}
376
377/** Connect to a task specified by id.
378 *
379 */
380int ipc_connect_kbox(task_id_t id)
381{
382#ifdef __32_BITS__
383 sysarg64_t arg = (sysarg64_t) id;
384 return __SYSCALL1(SYS_IPC_CONNECT_KBOX, (sysarg_t) &arg);
385#endif
386
387#ifdef __64_BITS__
388 return __SYSCALL1(SYS_IPC_CONNECT_KBOX, (sysarg_t) id);
389#endif
390}
391
392/** @}
393 */
Note: See TracBrowser for help on using the repository browser.