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
61
62/*****************************************************************************
63 *** IPC result checking
64 *****************************************************************************/
65
73
145
146
159
160
179
181l4_error_u(l4_msgtag_t tag, l4_utcb_t *utcb) L4_NOTHROW;
182
183/*****************************************************************************
184 *** IPC results
185 *****************************************************************************/
186
197
208
219
227l4_ipc_to_errno(unsigned long ipc_error_code) L4_NOTHROW;
228
229
230/*****************************************************************************
231 *** IPC calls
232 *****************************************************************************/
233
264 l4_timeout_t timeout) L4_NOTHROW;
265
266
294l4_ipc_wait(l4_utcb_t *utcb, l4_umword_t *label,
295 l4_timeout_t timeout) L4_NOTHROW;
296
297
326 l4_timeout_t timeout) L4_NOTHROW;
327
360 l4_timeout_t timeout) L4_NOTHROW;
361
362
390 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW;
391
422 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW;
423
429
430#if 0
442l4_ipc_wait_next_period(l4_utcb_t *utcb,
443 l4_umword_t *label,
444 l4_timeout_t timeout);
445
446#endif
447
469 l4_utcb_t *utcb,
470 l4_umword_t flags,
471 l4_umword_t slabel,
472 l4_msgtag_t tag,
473 l4_umword_t *rlabel,
474 l4_timeout_t timeout) L4_NOTHROW;
475
494
513
532
547L4_INLINE int
548l4_sndfpage_add(l4_fpage_t const snd_fpage, unsigned long snd_base,
550
551/*
552 * \internal
553 * \ingroup l4_ipc_api
554 */
555L4_INLINE int
556l4_sndfpage_add_u(l4_fpage_t const snd_fpage, unsigned long snd_base,
557 l4_msgtag_t *tag, l4_utcb_t *utcb) L4_NOTHROW;
558
559
560/************************************************************************
561 * Implementations
562 **********************/
563
565l4_ipc_to_errno(unsigned long ipc_error_code) L4_NOTHROW
566{ return -(L4_EIPC_LO + ipc_error_code); }
567
570 l4_timeout_t timeout) L4_NOTHROW
571{
572 return l4_ipc(object, utcb, L4_SYSF_CALL, 0, tag, 0, timeout);
573}
574
577 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
578{
579 return l4_ipc(L4_INVALID_CAP, utcb, L4_SYSF_REPLY_AND_WAIT, 0, tag, label, timeout);
580}
581
584 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
585{
586 return l4_ipc(dest, utcb, L4_SYSF_SEND_AND_WAIT, 0, tag, label, timeout);
587}
588
591 l4_timeout_t timeout) L4_NOTHROW
592{
593 return l4_ipc(dest, utcb, L4_SYSF_SEND, 0, tag, 0, timeout);
594}
595
598 l4_timeout_t timeout) L4_NOTHROW
599{
600 l4_msgtag_t t;
601 t.raw = 0;
602 return l4_ipc(L4_INVALID_CAP, utcb, L4_SYSF_WAIT, 0, t, label, timeout);
603}
604
607 l4_timeout_t timeout) L4_NOTHROW
608{
609 l4_msgtag_t t;
610 t.raw = 0;
611 return l4_ipc(object, utcb, L4_SYSF_RECV, 0, t, 0, timeout);
612}
613
616{ return l4_ipc_receive(L4_INVALID_CAP, NULL, timeout); }
617
620{
621 l4_uint64_t us = ms * 1000ULL; // cannot overflow because ms < 2^32
622 return l4_ipc_sleep(l4_timeout(L4_IPC_TIMEOUT_NEVER, l4_timeout_from_us(us)));
623}
624
627{
629 l4_timeout_from_us(us)));
630}
631
634{
636 return 0;
637 return l4_utcb_tcr_u(utcb)->error & L4_IPC_ERROR_MASK;
638}
639
641l4_error_u(l4_msgtag_t tag, l4_utcb_t *u) L4_NOTHROW
642{
644 return l4_ipc_to_errno(l4_utcb_tcr_u(u)->error & L4_IPC_ERROR_MASK);
645
646 return l4_msgtag_label(tag);
647}
648
651{
652 return l4_error_u(tag, l4_utcb());
653}
654
655
657{ return (l4_utcb_tcr_u(u)->error & 1) == 0; }
658
660{ return l4_utcb_tcr_u(u)->error & 1; }
661
663{ return l4_utcb_tcr_u(u)->error & L4_IPC_ERROR_MASK; }
664
665
666/*
667 * \internal
668 * \ingroup l4_ipc_api
669 */
670L4_INLINE int
671l4_sndfpage_add_u(l4_fpage_t const snd_fpage, unsigned long snd_base,
672 l4_msgtag_t *tag, l4_utcb_t *utcb) L4_NOTHROW
673{
674 l4_msg_regs_t *v = l4_utcb_mr_u(utcb);
675 int i = l4_msgtag_words(*tag) + 2 * l4_msgtag_items(*tag);
676
677 if (i >= L4_UTCB_GENERIC_DATA_SIZE - 1)
678 return -L4_ENOMEM;
679
680 v->mr[i] = snd_base | L4_ITEM_MAP | L4_ITEM_CONT;
681 v->mr[i + 1] = snd_fpage.raw;
682
683 *tag = l4_msgtag(l4_msgtag_label(*tag), l4_msgtag_words(*tag),
684 l4_msgtag_items(*tag) + 1, l4_msgtag_flags(*tag));
685 return 0;
686}
687
688L4_INLINE int
689l4_sndfpage_add(l4_fpage_t const snd_fpage, unsigned long snd_base,
691{
692 return l4_sndfpage_add_u(snd_fpage, snd_base, tag, l4_utcb());
693}
694
695#include <l4/sys/arch/ipc.h>
696
697#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:352
@ L4_EIPC_LO
Communication error-range low.
Definition err.h:62
@ L4_ENOMEM
No memory.
Definition err.h:40
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:576
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:19
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:606
l4_msgtag_t l4_ipc_sleep_us(l4_uint64_t us) L4_NOTHROW
Sleep for a certain amount of microseconds.
Definition ipc.h:626
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:583
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:590
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:569
l4_msgtag_t l4_ipc_sleep(l4_timeout_t timeout) L4_NOTHROW
Sleep for an amount of time.
Definition ipc.h:615
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:689
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:597
l4_msgtag_t l4_ipc_sleep_ms(l4_uint32_t ms) L4_NOTHROW
Sleep for a certain amount of milliseconds.
Definition ipc.h:619
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:656
l4_ret_t 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:650
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:662
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:659
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:633
@ 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:212
@ L4_ITEM_CONT
Denote that the following item shall be put into the same receive item as this one.
Definition consts.h:218
unsigned l4_msgtag_items(l4_msgtag_t t) L4_NOTHROW
Get the number of typed items.
Definition types.h:447
unsigned l4_msgtag_has_error(l4_msgtag_t t) L4_NOTHROW
Test for error indicator flag.
Definition types.h:456
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:421
unsigned l4_msgtag_words(l4_msgtag_t t) L4_NOTHROW
Get the number of untyped words.
Definition types.h:443
unsigned l4_msgtag_flags(l4_msgtag_t t) L4_NOTHROW
Get the flags.
Definition types.h:451
long l4_msgtag_label(l4_msgtag_t t) L4_NOTHROW
Get the protocol of tag.
Definition types.h:433
#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:217
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:349
#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:161
#define L4_UNLIKELY(x)
Expression is unlikely to execute.
Definition compiler.h:289
#define L4_INLINE
L4 Inline function attribute.
Definition compiler.h:51
#define L4_CONSTEXPR
Constexpr function attribute.
Definition compiler.h:194
#define L4_LIKELY(x)
Expression is likely to execute.
Definition compiler.h:288
#define L4_INVALID_CAP
Invalid capability selector.
Definition consts.h:152
#define L4_SYSF_WAIT
Wait flags (combines receive and open wait).
Definition consts.h:115
#define L4_SYSF_CALL
Call flags (combines send and receive).
Definition consts.h:107
#define L4_SYSF_RECV
Receive-phase flag.
Definition consts.h:79
#define L4_SYSF_REPLY_AND_WAIT
Reply-and-wait flags.
Definition consts.h:131
#define L4_SYSF_SEND
Send-phase flag.
Definition consts.h:68
#define L4_SYSF_SEND_AND_WAIT
Send-and-wait flags.
Definition consts.h:123
L4_CONSTEXPR l4_ret_t 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:565
Common L4 ABI Data Types.
l4_int16_t l4_ret_t
Return value of an IPC call as well as an RPC call.
Definition types.h:28
UTCB definitions.
Message tag data structure.
Definition types.h:266
l4_mword_t raw
raw value
Definition types.h:267
L4 flexpage type.
Definition __l4_fpage.h:76
Encapsulation of the message-register block in the UTCB.
Definition utcb.h:133
l4_umword_t mr[L4_UTCB_GENERIC_DATA_SIZE]
Message registers.
Definition utcb.h:134
Timeout pair.
Definition __timeout.h:53