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
390l4_ipc_reply(l4_cap_idx_t reply_cap, l4_utcb_t *utcb, l4_msgtag_t tag,
391 l4_timeout_t timeout) L4_NOTHROW;
392
420 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW;
421
452 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW;
453
459
460#if 0
472l4_ipc_wait_next_period(l4_utcb_t *utcb,
473 l4_umword_t *label,
474 l4_timeout_t timeout);
475
476#endif
477
499 l4_utcb_t *utcb,
500 l4_umword_t flags,
501 l4_umword_t slabel,
502 l4_msgtag_t tag,
503 l4_umword_t *rlabel,
504 l4_timeout_t timeout) L4_NOTHROW;
505
524
543
562
577L4_INLINE int
578l4_sndfpage_add(l4_fpage_t const snd_fpage, unsigned long snd_base,
580
581/*
582 * \internal
583 * \ingroup l4_ipc_api
584 */
585L4_INLINE int
586l4_sndfpage_add_u(l4_fpage_t const snd_fpage, unsigned long snd_base,
587 l4_msgtag_t *tag, l4_utcb_t *utcb) L4_NOTHROW;
588
589
590/************************************************************************
591 * Implementations
592 **********************/
593
595l4_ipc_to_errno(unsigned long ipc_error_code) L4_NOTHROW
596{ return -(L4_EIPC_LO + ipc_error_code); }
597
600 l4_timeout_t timeout) L4_NOTHROW
601{
602 return l4_ipc(object, utcb, L4_SYSF_CALL, 0, tag, 0, timeout);
603}
604
607 l4_timeout_t timeout) L4_NOTHROW
608{
609 return l4_ipc(reply_cap, utcb, L4_SYSF_REPLY | L4_SYSF_SEND, 0, tag, 0,
610 timeout);
611}
612
615 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
616{
617 return l4_ipc(L4_INVALID_CAP, utcb, L4_SYSF_REPLY_AND_WAIT, 0, tag, label, timeout);
618}
619
622 l4_umword_t *label, l4_timeout_t timeout) L4_NOTHROW
623{
624 return l4_ipc(dest, utcb, L4_SYSF_SEND_AND_WAIT, 0, tag, label, timeout);
625}
626
629 l4_timeout_t timeout) L4_NOTHROW
630{
631 return l4_ipc(dest, utcb, L4_SYSF_SEND, 0, tag, 0, timeout);
632}
633
636 l4_timeout_t timeout) L4_NOTHROW
637{
638 l4_msgtag_t t;
639 t.raw = 0;
640 return l4_ipc(L4_INVALID_CAP, utcb, L4_SYSF_WAIT, 0, t, label, timeout);
641}
642
645 l4_timeout_t timeout) L4_NOTHROW
646{
647 l4_msgtag_t t;
648 t.raw = 0;
649 return l4_ipc(object, utcb, L4_SYSF_RECV, 0, t, 0, timeout);
650}
651
654{ return l4_ipc_receive(L4_INVALID_CAP, NULL, timeout); }
655
658{
659 l4_uint64_t us = ms * 1000ULL; // cannot overflow because ms < 2^32
660 return l4_ipc_sleep(l4_timeout(L4_IPC_TIMEOUT_NEVER, l4_timeout_from_us(us)));
661}
662
665{
667 l4_timeout_from_us(us)));
668}
669
672{
674 return 0;
675 return l4_utcb_tcr_u(utcb)->error & L4_IPC_ERROR_MASK;
676}
677
679l4_error_u(l4_msgtag_t tag, l4_utcb_t *u) L4_NOTHROW
680{
682 return l4_ipc_to_errno(l4_utcb_tcr_u(u)->error & L4_IPC_ERROR_MASK);
683
684 return l4_msgtag_label(tag);
685}
686
689{
690 return l4_error_u(tag, l4_utcb());
691}
692
693
695{ return (l4_utcb_tcr_u(u)->error & 1) == 0; }
696
698{ return l4_utcb_tcr_u(u)->error & 1; }
699
701{ return l4_utcb_tcr_u(u)->error & L4_IPC_ERROR_MASK; }
702
703
704/*
705 * \internal
706 * \ingroup l4_ipc_api
707 */
708L4_INLINE int
709l4_sndfpage_add_u(l4_fpage_t const snd_fpage, unsigned long snd_base,
710 l4_msgtag_t *tag, l4_utcb_t *utcb) L4_NOTHROW
711{
712 l4_msg_regs_t *v = l4_utcb_mr_u(utcb);
713 int i = l4_msgtag_words(*tag) + 2 * l4_msgtag_items(*tag);
714
715 if (i >= L4_UTCB_GENERIC_DATA_SIZE - 1)
716 return -L4_ENOMEM;
717
718 v->mr[i] = snd_base | L4_ITEM_MAP | L4_ITEM_CONT;
719 v->mr[i + 1] = snd_fpage.raw;
720
721 *tag = l4_msgtag(l4_msgtag_label(*tag), l4_msgtag_words(*tag),
722 l4_msgtag_items(*tag) + 1, l4_msgtag_flags(*tag));
723 return 0;
724}
725
726L4_INLINE int
727l4_sndfpage_add(l4_fpage_t const snd_fpage, unsigned long snd_base,
729{
730 return l4_sndfpage_add_u(snd_fpage, snd_base, tag, l4_utcb());
731}
732
733#include <l4/sys/arch/ipc.h>
734
735#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:357
@ L4_EIPC_LO
Communication error-range low.
Definition err.h:63
@ 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:614
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:644
l4_msgtag_t l4_ipc_sleep_us(l4_uint64_t us) L4_NOTHROW
Sleep for a certain amount of microseconds.
Definition ipc.h:664
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:621
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:628
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:599
l4_msgtag_t l4_ipc_sleep(l4_timeout_t timeout) L4_NOTHROW
Sleep for an amount of time.
Definition ipc.h:653
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:606
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:727
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:635
l4_msgtag_t l4_ipc_sleep_ms(l4_uint32_t ms) L4_NOTHROW
Sleep for a certain amount of milliseconds.
Definition ipc.h:657
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:694
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:688
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:700
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:697
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:671
@ 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:233
@ L4_ITEM_CONT
Denote that the following item shall be put into the same receive item as this one.
Definition consts.h:239
unsigned l4_msgtag_items(l4_msgtag_t t) L4_NOTHROW
Get the number of typed items.
Definition types.h:452
unsigned l4_msgtag_has_error(l4_msgtag_t t) L4_NOTHROW
Test for error indicator flag.
Definition types.h:461
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:426
unsigned l4_msgtag_words(l4_msgtag_t t) L4_NOTHROW
Get the number of untyped words.
Definition types.h:448
unsigned l4_msgtag_flags(l4_msgtag_t t) L4_NOTHROW
Get the flags.
Definition types.h:456
long l4_msgtag_label(l4_msgtag_t t) L4_NOTHROW
Get the protocol of tag.
Definition types.h:438
#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
#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_REPLY
Reply flag.
Definition consts.h:99
#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:595
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