L4Re Operating System Framework
Interface and Usage Documentation
Loading...
Searching...
No Matches
ipc.h
Go to the documentation of this file.
1
6/*
7 * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
8 * Alexander Warg <warg@os.inf.tu-dresden.de>,
9 * Björn Döbel <doebel@os.inf.tu-dresden.de>,
10 * Torsten Frenzel <frenzel@os.inf.tu-dresden.de>
11 * economic rights: Technische Universität Dresden (Germany)
12 *
13 * License: see LICENSE.spdx (in this directory or the directories above)
14 */
15#ifndef __L4SYS__INCLUDE__L4API_FIASCO__IPC_H__
16#define __L4SYS__INCLUDE__L4API_FIASCO__IPC_H__
17
18#include <l4/sys/types.h>
19#include <l4/sys/utcb.h>
20#include <l4/sys/err.h>
21
62/*****************************************************************************
63 *** IPC result checking
64 *****************************************************************************/
65
82{
89 L4_IPC_RETIMEOUT = 0x03,
92 L4_IPC_SETIMEOUT = 0x02,
95 L4_IPC_RECANCELED = 0x07,
98 L4_IPC_SECANCELED = 0x06,
101 L4_IPC_REMAPFAILED = 0x11,
105 L4_IPC_SEMAPFAILED = 0x10,
108 L4_IPC_RESNDPFTO = 0x0b,
112 L4_IPC_SESNDPFTO = 0x0a,
116 L4_IPC_RERCVPFTO = 0x0d,
120 L4_IPC_SERCVPFTO = 0x0c,
124 L4_IPC_REABORTED = 0x0f,
127 L4_IPC_SEABORTED = 0x0e,
137
144};
145
146
159
160
177L4_INLINE long
179
180L4_INLINE long
181l4_error_u(l4_msgtag_t tag, l4_utcb_t *utcb) L4_NOTHROW;
182
183/*****************************************************************************
184 *** IPC results
185 *****************************************************************************/
186
197
208
219
226L4_INLINE long l4_ipc_to_errno(unsigned long ipc_error_code) L4_NOTHROW;
227
228
229/*****************************************************************************
230 *** IPC calls
231 *****************************************************************************/
232
263 l4_timeout_t timeout) L4_NOTHROW;
264
265
293l4_ipc_wait(l4_utcb_t *utcb, l4_umword_t *label,
294 l4_timeout_t timeout) L4_NOTHROW;
295
296
323 l4_timeout_t timeout) L4_NOTHROW;
324
357 l4_timeout_t timeout) L4_NOTHROW;
358
359
387 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW;
388
419 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW;
420
427#if 0
439l4_ipc_wait_next_period(l4_utcb_t *utcb,
440 l4_umword_t *label,
441 l4_timeout_t timeout);
442
443#endif
444
466 l4_utcb_t *utcb,
467 l4_umword_t flags,
468 l4_umword_t slabel,
469 l4_msgtag_t tag,
470 l4_umword_t *rlabel,
471 l4_timeout_t timeout) L4_NOTHROW;
472
491
510
529
544L4_INLINE int
545l4_sndfpage_add(l4_fpage_t const snd_fpage, unsigned long snd_base,
547
548/*
549 * \internal
550 * \ingroup l4_ipc_api
551 */
552L4_INLINE int
553l4_sndfpage_add_u(l4_fpage_t const snd_fpage, unsigned long snd_base,
554 l4_msgtag_t *tag, l4_utcb_t *utcb) L4_NOTHROW;
555
556
557/************************************************************************
558 * Implementations
559 **********************/
560
561L4_INLINE long l4_ipc_to_errno(unsigned long ipc_error_code) L4_NOTHROW
562{ return -(L4_EIPC_LO + ipc_error_code); }
563
566 l4_timeout_t timeout) L4_NOTHROW
567{
568 return l4_ipc(object, utcb, L4_SYSF_CALL, 0, tag, 0, timeout);
569}
570
573 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
574{
575 return l4_ipc(L4_INVALID_CAP, utcb, L4_SYSF_REPLY_AND_WAIT, 0, tag, label, timeout);
576}
577
580 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
581{
582 return l4_ipc(dest, utcb, L4_SYSF_SEND_AND_WAIT, 0, tag, label, timeout);
583}
584
587 l4_timeout_t timeout) L4_NOTHROW
588{
589 return l4_ipc(dest, utcb, L4_SYSF_SEND, 0, tag, 0, timeout);
590}
591
594 l4_timeout_t timeout) L4_NOTHROW
595{
596 l4_msgtag_t t;
597 t.raw = 0;
598 return l4_ipc(L4_INVALID_CAP, utcb, L4_SYSF_WAIT, 0, t, label, timeout);
599}
600
603 l4_timeout_t timeout) L4_NOTHROW
604{
605 l4_msgtag_t t;
606 t.raw = 0;
607 return l4_ipc(object, utcb, L4_SYSF_RECV, 0, t, 0, timeout);
608}
609
612{ return l4_ipc_receive(L4_INVALID_CAP, NULL, timeout); }
613
616{
617 l4_uint64_t us = ms * 1000ULL; // cannot overflow because ms < 2^32
618 return l4_ipc_sleep(l4_timeout(L4_IPC_TIMEOUT_NEVER, l4_timeout_from_us(us)));
619}
620
623{
625 l4_timeout_from_us(us)));
626}
627
630{
632 return 0;
633 return l4_utcb_tcr_u(utcb)->error & L4_IPC_ERROR_MASK;
634}
635
636L4_INLINE long
637l4_error_u(l4_msgtag_t tag, l4_utcb_t *u) L4_NOTHROW
638{
640 return l4_ipc_to_errno(l4_utcb_tcr_u(u)->error & L4_IPC_ERROR_MASK);
641
642 return l4_msgtag_label(tag);
643}
644
645L4_INLINE long
647{
648 return l4_error_u(tag, l4_utcb());
649}
650
651
653{ return (l4_utcb_tcr_u(u)->error & 1) == 0; }
654
656{ return l4_utcb_tcr_u(u)->error & 1; }
657
659{ return l4_utcb_tcr_u(u)->error & L4_IPC_ERROR_MASK; }
660
661
662/*
663 * \internal
664 * \ingroup l4_ipc_api
665 */
666L4_INLINE int
667l4_sndfpage_add_u(l4_fpage_t const snd_fpage, unsigned long snd_base,
668 l4_msgtag_t *tag, l4_utcb_t *utcb) L4_NOTHROW
669{
670 l4_msg_regs_t *v = l4_utcb_mr_u(utcb);
671 int i = l4_msgtag_words(*tag) + 2 * l4_msgtag_items(*tag);
672
673 if (i >= L4_UTCB_GENERIC_DATA_SIZE - 1)
674 return -L4_ENOMEM;
675
676 v->mr[i] = snd_base | L4_ITEM_MAP | L4_ITEM_CONT;
677 v->mr[i + 1] = snd_fpage.raw;
678
679 *tag = l4_msgtag(l4_msgtag_label(*tag), l4_msgtag_words(*tag),
680 l4_msgtag_items(*tag) + 1, l4_msgtag_flags(*tag));
681 return 0;
682}
683
684L4_INLINE int
685l4_sndfpage_add(l4_fpage_t const snd_fpage, unsigned long snd_base,
687{
688 return l4_sndfpage_add_u(snd_fpage, snd_base, tag, l4_utcb());
689}
690
691
692#endif /* ! __L4SYS__INCLUDE__L4API_FIASCO__IPC_H__ */
Error codes.
unsigned long l4_umword_t
Unsigned machine word.
Definition l4int.h:40
unsigned int l4_uint32_t
Unsigned 32bit value.
Definition l4int.h:29
unsigned long long l4_uint64_t
Unsigned 64bit value.
Definition l4int.h:31
unsigned long l4_cap_idx_t
Capability selector type.
Definition types.h:335
@ L4_INVALID_CAP
Invalid capability selector.
Definition consts.h:157
@ L4_EIPC_LO
Communication error-range low.
Definition err.h:60
@ L4_ENOMEM
No memory.
Definition err.h:39
l4_msgtag_t l4_ipc_reply_and_wait(l4_utcb_t *utcb, l4_msgtag_t tag, l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
Reply and wait operation (uses the reply capability).
Definition ipc.h:572
l4_msgtag_t l4_ipc(l4_cap_idx_t dest, l4_utcb_t *utcb, l4_umword_t flags, l4_umword_t slabel, l4_msgtag_t tag, l4_umword_t *rlabel, l4_timeout_t timeout) L4_NOTHROW
Generic L4 object invocation.
Definition ipc.h:21
l4_msgtag_t l4_ipc_receive(l4_cap_idx_t object, l4_utcb_t *utcb, l4_timeout_t timeout) L4_NOTHROW
Wait for a message from a specific source.
Definition ipc.h:602
l4_msgtag_t l4_ipc_sleep_us(l4_uint64_t us) L4_NOTHROW
Sleep for a certain amount of microseconds.
Definition ipc.h:622
l4_msgtag_t l4_ipc_send_and_wait(l4_cap_idx_t dest, l4_utcb_t *utcb, l4_msgtag_t tag, l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
Send a message and do an open wait.
Definition ipc.h:579
l4_msgtag_t l4_ipc_send(l4_cap_idx_t dest, l4_utcb_t *utcb, l4_msgtag_t tag, l4_timeout_t timeout) L4_NOTHROW
Send a message to an object (do not wait for a reply).
Definition ipc.h:586
l4_msgtag_t l4_ipc_call(l4_cap_idx_t object, l4_utcb_t *utcb, l4_msgtag_t tag, l4_timeout_t timeout) L4_NOTHROW
Object call (usual invocation).
Definition ipc.h:565
l4_msgtag_t l4_ipc_sleep(l4_timeout_t timeout) L4_NOTHROW
Sleep for an amount of time.
Definition ipc.h:611
int l4_sndfpage_add(l4_fpage_t const snd_fpage, unsigned long snd_base, l4_msgtag_t *tag) L4_NOTHROW
Add a flexpage to be sent to the UTCB.
Definition ipc.h:685
l4_msgtag_t l4_ipc_wait(l4_utcb_t *utcb, l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
Wait for an incoming message from any possible sender.
Definition ipc.h:593
l4_msgtag_t l4_ipc_sleep_ms(l4_uint32_t ms) L4_NOTHROW
Sleep for a certain amount of milliseconds.
Definition ipc.h:615
@ L4_SYSF_SEND_AND_WAIT
Send-and-wait flags.
Definition consts.h:128
@ L4_SYSF_WAIT
Wait flags (combines receive and open wait).
Definition consts.h:120
@ L4_SYSF_CALL
Call flags (combines send and receive).
Definition consts.h:112
@ L4_SYSF_SEND
Send-phase flag.
Definition consts.h:73
@ L4_SYSF_REPLY_AND_WAIT
Reply-and-wait flags.
Definition consts.h:136
@ L4_SYSF_RECV
Receive-phase flag.
Definition consts.h:84
long l4_error(l4_msgtag_t tag) L4_NOTHROW
Get IPC error code if any or message tag label otherwise for an IPC call.
Definition ipc.h:646
int l4_ipc_is_snd_error(l4_utcb_t *utcb) L4_NOTHROW
Returns whether an error occurred in send phase of an invocation.
Definition ipc.h:652
int l4_ipc_error_code(l4_utcb_t *utcb) L4_NOTHROW
Get the error condition of the last invocation from the TCR.
Definition ipc.h:658
l4_ipc_tcr_error_t
Error codes in the error TCR.
Definition ipc.h:82
int l4_ipc_is_rcv_error(l4_utcb_t *utcb) L4_NOTHROW
Returns whether an error occurred in receive phase of an invocation.
Definition ipc.h:655
l4_umword_t l4_ipc_error(l4_msgtag_t tag, l4_utcb_t *utcb) L4_NOTHROW
Get the IPC error code for an IPC operation.
Definition ipc.h:629
@ L4_IPC_SEABORTED
Send operation aborted.
Definition ipc.h:127
@ L4_IPC_SND_ERR_MASK
Send error mask.
Definition ipc.h:84
@ L4_IPC_RECANCELED
Receive operation canceled.
Definition ipc.h:95
@ L4_IPC_SESNDPFTO
Send-pagefault timeout in send operation.
Definition ipc.h:112
@ L4_IPC_SETIMEOUT
Timeout during send operation.
Definition ipc.h:92
@ L4_IPC_ENOT_EXISTENT
Non-existing destination or source.
Definition ipc.h:86
@ L4_IPC_ERROR_MASK
Mask for error bits.
Definition ipc.h:83
@ L4_IPC_REMAPFAILED
Map flexpage failed in receive operation.
Definition ipc.h:101
@ L4_IPC_SEMAPFAILED
Map flexpage failed in send operation.
Definition ipc.h:105
@ L4_IPC_SECANCELED
Send operation canceled.
Definition ipc.h:98
@ L4_IPC_REABORTED
Receive operation aborted.
Definition ipc.h:124
@ L4_IPC_SERCVPFTO
Receive-pagefault timeout in send operation.
Definition ipc.h:120
@ L4_IPC_SEMSGCUT
Sent message truncated.
Definition ipc.h:143
@ L4_IPC_REMSGCUT
Received message truncated.
Definition ipc.h:136
@ L4_IPC_RETIMEOUT
Timeout during receive operation.
Definition ipc.h:89
@ L4_IPC_RESNDPFTO
Send-pagefault timeout in receive operation.
Definition ipc.h:108
@ L4_IPC_RERCVPFTO
Receive-pagefault timeout in receive operation.
Definition ipc.h:116
@ L4_ITEM_MAP
Identify a message item as map item.
Definition consts.h:218
@ L4_ITEM_CONT
Denote that the following item shall be put into the same receive item as this one.
Definition consts.h:224
unsigned l4_msgtag_items(l4_msgtag_t t) L4_NOTHROW
Get the number of typed items.
Definition types.h:430
unsigned l4_msgtag_has_error(l4_msgtag_t t) L4_NOTHROW
Test for error indicator flag.
Definition types.h:439
l4_msgtag_t l4_msgtag(long label, unsigned words, unsigned items, unsigned flags) L4_NOTHROW
Create a message tag from the specified values.
Definition types.h:404
unsigned l4_msgtag_words(l4_msgtag_t t) L4_NOTHROW
Get the number of untyped words.
Definition types.h:426
unsigned l4_msgtag_flags(l4_msgtag_t t) L4_NOTHROW
Get the flags.
Definition types.h:434
long l4_msgtag_label(l4_msgtag_t t) L4_NOTHROW
Get the protocol of tag.
Definition types.h:416
#define L4_IPC_TIMEOUT_NEVER
never timeout
Definition __timeout.h:74
L4_CONSTEXPR l4_timeout_t l4_timeout(l4_timeout_s snd, l4_timeout_s rcv) L4_NOTHROW
Combine send and receive timeout in a timeout.
Definition __timeout.h:213
struct l4_utcb_t l4_utcb_t
Opaque type for the UTCB.
Definition utcb.h:56
l4_utcb_t * l4_utcb(void) L4_NOTHROW L4_PURE
Get the UTCB address.
Definition utcb.h:346
#define L4_ALWAYS_INLINE
Always inline a function.
Definition compiler.h:58
#define L4_NOTHROW
Mark a function declaration and definition as never throwing an exception.
Definition compiler.h:159
#define L4_UNLIKELY(x)
Expression is unlikely to execute.
Definition compiler.h:275
#define L4_INLINE
L4 Inline function attribute.
Definition compiler.h:51
#define L4_LIKELY(x)
Expression is likely to execute.
Definition compiler.h:274
long l4_ipc_to_errno(unsigned long ipc_error_code) L4_NOTHROW
Get a negative error code for the given IPC error code.
Definition ipc.h:561
Common L4 ABI Data Types.
Message tag data structure.
Definition types.h:153
l4_mword_t raw
raw value
Definition types.h:154
l4_umword_t error
System call error code (see l4_ipc_tcr_error_t).
Definition utcb.h:106
L4 flexpage type.
Definition __l4_fpage.h:76
Encapsulation of the message-register block in the UTCB.
Definition utcb.h:68
l4_umword_t mr[L4_UTCB_GENERIC_DATA_SIZE]
Message registers.
Definition utcb.h:69
Timeout pair.
Definition __timeout.h:53