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
152
153
166
167
186
188l4_error_u(l4_msgtag_t tag, l4_utcb_t *utcb) L4_NOTHROW;
189
190/*****************************************************************************
191 *** IPC results
192 *****************************************************************************/
193
204
215
226
234l4_ipc_to_errno(unsigned long ipc_error_code) L4_NOTHROW;
235
236
237/*****************************************************************************
238 *** IPC calls
239 *****************************************************************************/
240
271 l4_timeout_t timeout) L4_NOTHROW;
272
273
301l4_ipc_wait(l4_utcb_t *utcb, l4_umword_t *label,
302 l4_timeout_t timeout) L4_NOTHROW;
303
304
333 l4_timeout_t timeout) L4_NOTHROW;
334
367 l4_timeout_t timeout) L4_NOTHROW;
368
389l4_ipc_reply(l4_cap_idx_t reply_cap, l4_utcb_t *utcb, l4_msgtag_t tag,
390 l4_timeout_t timeout) L4_NOTHROW;
391
419 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW;
420
451 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW;
452
458
459#if 0
471l4_ipc_wait_next_period(l4_utcb_t *utcb,
472 l4_umword_t *label,
473 l4_timeout_t timeout);
474
475#endif
476
498 l4_utcb_t *utcb,
499 l4_umword_t flags,
500 l4_umword_t slabel,
501 l4_msgtag_t tag,
502 l4_umword_t *rlabel,
503 l4_timeout_t timeout) L4_NOTHROW;
504
523
542
561
576L4_INLINE int
577l4_sndfpage_add(l4_fpage_t const snd_fpage, unsigned long snd_base,
579
580/*
581 * \internal
582 * \ingroup l4_ipc_api
583 */
584L4_INLINE int
585l4_sndfpage_add_u(l4_fpage_t const snd_fpage, unsigned long snd_base,
586 l4_msgtag_t *tag, l4_utcb_t *utcb) L4_NOTHROW;
587
588
589/************************************************************************
590 * Implementations
591 **********************/
592
594l4_ipc_to_errno(unsigned long ipc_error_code) L4_NOTHROW
595{ return -(L4_EIPC_LO + ipc_error_code); }
596
599 l4_timeout_t timeout) L4_NOTHROW
600{
601 return l4_ipc(object, utcb, L4_SYSF_CALL, 0, tag, 0, timeout);
602}
603
606 l4_timeout_t timeout) L4_NOTHROW
607{
608 return l4_ipc(reply_cap, utcb, L4_SYSF_REPLY | L4_SYSF_SEND, 0, tag, 0,
609 timeout);
610}
611
614 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
615{
616 return l4_ipc(L4_INVALID_CAP, utcb, L4_SYSF_REPLY_AND_WAIT, 0, tag, label, timeout);
617}
618
621 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
622{
623 return l4_ipc(dest, utcb, L4_SYSF_SEND_AND_WAIT, 0, tag, label, timeout);
624}
625
628 l4_timeout_t timeout) L4_NOTHROW
629{
630 return l4_ipc(dest, utcb, L4_SYSF_SEND, 0, tag, 0, timeout);
631}
632
635 l4_timeout_t timeout) L4_NOTHROW
636{
637 l4_msgtag_t t;
638 t.raw = 0;
639 return l4_ipc(L4_INVALID_CAP, utcb, L4_SYSF_WAIT, 0, t, label, timeout);
640}
641
644 l4_timeout_t timeout) L4_NOTHROW
645{
646 l4_msgtag_t t;
647 t.raw = 0;
648 return l4_ipc(object, utcb, L4_SYSF_RECV, 0, t, 0, timeout);
649}
650
653{ return l4_ipc_receive(L4_INVALID_CAP, NULL, timeout); }
654
657{
658 l4_uint64_t us = ms * 1000ULL; // cannot overflow because ms < 2^32
659 return l4_ipc_sleep(l4_timeout(L4_IPC_TIMEOUT_NEVER, l4_timeout_from_us(us)));
660}
661
664{
666 l4_timeout_from_us(us)));
667}
668
671{
673 return 0;
674 return l4_utcb_tcr_u(utcb)->error & L4_IPC_ERROR_MASK;
675}
676
678l4_error_u(l4_msgtag_t tag, l4_utcb_t *u) L4_NOTHROW
679{
681 return l4_ipc_to_errno(l4_utcb_tcr_u(u)->error & L4_IPC_ERROR_MASK);
682
683 return l4_msgtag_label(tag);
684}
685
688{
689 return l4_error_u(tag, l4_utcb());
690}
691
692
694{ return (l4_utcb_tcr_u(u)->error & 1) == 0; }
695
697{ return l4_utcb_tcr_u(u)->error & 1; }
698
700{ return l4_utcb_tcr_u(u)->error & L4_IPC_ERROR_MASK; }
701
702
703/*
704 * \internal
705 * \ingroup l4_ipc_api
706 */
707L4_INLINE int
708l4_sndfpage_add_u(l4_fpage_t const snd_fpage, unsigned long snd_base,
709 l4_msgtag_t *tag, l4_utcb_t *utcb) L4_NOTHROW
710{
711 l4_msg_regs_t *v = l4_utcb_mr_u(utcb);
712 int i = l4_msgtag_words(*tag) + 2 * l4_msgtag_items(*tag);
713
714 if (i >= L4_UTCB_GENERIC_DATA_SIZE - 1)
715 return -L4_ENOMEM;
716
717 v->mr[i] = snd_base | L4_ITEM_MAP | L4_ITEM_CONT;
718 v->mr[i + 1] = snd_fpage.raw;
719
720 *tag = l4_msgtag(l4_msgtag_label(*tag), l4_msgtag_words(*tag),
721 l4_msgtag_items(*tag) + 1, l4_msgtag_flags(*tag));
722 return 0;
723}
724
725L4_INLINE int
726l4_sndfpage_add(l4_fpage_t const snd_fpage, unsigned long snd_base,
728{
729 return l4_sndfpage_add_u(snd_fpage, snd_base, tag, l4_utcb());
730}
731
732#include <l4/sys/arch/ipc.h>
733
734#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:372
#define L4_INVALID_CAP
Invalid capability selector; see l4_cap_idx_t.
Definition consts.h:165
@ L4_EIPC_LO
Communication error-range low.
Definition err.h:64
@ 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:613
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:643
l4_msgtag_t l4_ipc_sleep_us(l4_uint64_t us) L4_NOTHROW
Sleep for a certain amount of microseconds.
Definition ipc.h:663
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:620
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:627
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:598
l4_msgtag_t l4_ipc_sleep(l4_timeout_t timeout) L4_NOTHROW
Sleep for an amount of time.
Definition ipc.h:652
l4_msgtag_t l4_ipc_reply(l4_cap_idx_t reply_cap, l4_utcb_t *utcb, l4_msgtag_t tag, l4_timeout_t timeout) L4_NOTHROW
Reply operation (uses a reply capability).
Definition ipc.h:605
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:726
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:634
l4_msgtag_t l4_ipc_sleep_ms(l4_uint32_t ms) L4_NOTHROW
Sleep for a certain amount of milliseconds.
Definition ipc.h:656
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:693
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:687
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:699
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:696
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:670
@ 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_NO_REPLY_CAP
Receive operation using explicit reply capability failed.
Definition ipc.h:150
@ 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:225
@ L4_ITEM_CONT
Denote that the following item shall be put into the same receive item as this one.
Definition consts.h:231
unsigned l4_msgtag_items(l4_msgtag_t t) L4_NOTHROW
Get the number of typed items.
Definition types.h:467
unsigned l4_msgtag_has_error(l4_msgtag_t t) L4_NOTHROW
Test for error indicator flag.
Definition types.h:476
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:441
unsigned l4_msgtag_words(l4_msgtag_t t) L4_NOTHROW
Get the number of untyped words.
Definition types.h:463
unsigned l4_msgtag_flags(l4_msgtag_t t) L4_NOTHROW
Get the flags.
Definition types.h:471
long l4_msgtag_label(l4_msgtag_t t) L4_NOTHROW
Get the protocol of tag.
Definition types.h:453
#define L4_SYSF_WAIT
Wait flags (combines receive and open wait).
Definition consts.h:118
#define L4_SYSF_CALL
Call flags (combines send and receive).
Definition consts.h:110
#define L4_SYSF_REPLY
Reply flag.
Definition consts.h:102
#define L4_SYSF_RECV
Receive-phase flag.
Definition consts.h:82
#define L4_SYSF_REPLY_AND_WAIT
Reply-and-wait flags.
Definition consts.h:134
#define L4_SYSF_SEND
Send-phase flag.
Definition consts.h:71
#define L4_SYSF_SEND_AND_WAIT
Send-and-wait flags.
Definition consts.h:126
#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:369
#define L4_ALWAYS_INLINE
Always inline a function.
Definition compiler.h:61
#define L4_NOTHROW
Mark a function declaration and definition as never throwing an exception.
Definition compiler.h:167
#define L4_UNLIKELY(x)
Expression is unlikely to execute.
Definition compiler.h:295
#define L4_INLINE
L4 Inline function attribute.
Definition compiler.h:51
#define L4_CONSTEXPR
Constexpr function attribute.
Definition compiler.h:200
#define L4_LIKELY(x)
Expression is likely to execute.
Definition compiler.h:294
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:594
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:29
UTCB definitions.
Message tag data structure.
Definition types.h:269
l4_mword_t raw
raw value
Definition types.h:270
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