8#pragma GCC system_header
15template<
typename T,
template <
typename X>
class B >
16struct Generic_va_type : B<T>
18 enum { Id = B<T>::Id };
20 typedef T
const &Ret_value;
23 static Ret_value value(
void const *d)
24 {
return *
reinterpret_cast<Value
const *
>(d); }
26 static void const *addr_of(Value
const &v) {
return &v; }
28 static unsigned size(
void const *) {
return sizeof(T); }
30 static L4_varg_type unsigned_id()
32 return static_cast<L4_varg_type
>(Id & ~L4_VARG_TYPE_SIGN);
35 static L4_varg_type signed_id()
37 return static_cast<L4_varg_type
>(Id | L4_VARG_TYPE_SIGN);
40 static L4_varg_type id()
42 return static_cast<L4_varg_type
>(Id);
46template<
typename T >
struct Va_type_id;
47template<>
struct Va_type_id<
l4_umword_t> {
enum { Id = L4_VARG_TYPE_UMWORD }; };
48template<>
struct Va_type_id<
l4_mword_t> {
enum { Id = L4_VARG_TYPE_MWORD }; };
49template<>
struct Va_type_id<
l4_fpage_t> {
enum { Id = L4_VARG_TYPE_FPAGE }; };
50template<>
struct Va_type_id<void> {
enum { Id = L4_VARG_TYPE_NIL }; };
51template<>
struct Va_type_id<char const *> {
enum { Id = L4_VARG_TYPE_STRING }; };
53template<
typename T >
struct Va_type;
55template<>
struct Va_type<
l4_umword_t> : Generic_va_type<l4_umword_t, Va_type_id> {};
56template<>
struct Va_type<
l4_mword_t> : Generic_va_type<l4_mword_t, Va_type_id> {};
57template<>
struct Va_type<
l4_fpage_t> : Generic_va_type<l4_fpage_t, Va_type_id> {};
59template<>
struct Va_type<void>
61 typedef void Ret_value;
64 static void const *addr_of(
void) {
return 0; }
66 static void value(
void const *) {}
67 static L4_varg_type id() {
return L4_VARG_TYPE_NIL; }
68 static unsigned size(
void const *) {
return 0; }
71template<>
struct Va_type<char const *>
73 typedef char const *Ret_value;
74 typedef char const *Value;
76 static void const *addr_of(Value v) {
return v; }
78 static L4_varg_type id() {
return L4_VARG_TYPE_STRING; }
79 static unsigned size(
void const *s)
81 char const *_s =
reinterpret_cast<char const *
>(s);
90 static Ret_value value(
void const *d) {
return static_cast<char const *
>(d); }
99 enum { Direct_data = 0x8000 };
109 L4_varg_type
type()
const {
return static_cast<L4_varg_type
>(_tag & 0xff); }
114 unsigned length()
const {
return _tag >> 16; }
116 Tag tag()
const {
return _tag & ~Direct_data; }
120 void data(
char const *d) { _d = d; }
125 if (_tag & Direct_data)
127 union T {
char const *d;
char v[
sizeof(
char const *)]; };
128 return reinterpret_cast<T
const *
>(&_d)->v;
134#if __cplusplus >= 201103L
141 Varg(L4_varg_type t,
void const *v,
int len)
142 : _tag(t | (static_cast<
l4_mword_t>(len) << 16)),
143 _d(static_cast<char const *>(v))
141 Varg(L4_varg_type t,
void const *v,
int len) {
…}
146 static Varg nil() {
return Varg(L4_VARG_TYPE_NIL, 0, 0); }
154 template<
typename V >
155 typename Va_type<V>::Ret_value
value()
const
157 if (_tag & Direct_data)
159 union X {
char const *d; V v; };
160 return reinterpret_cast<X
const &
>(_d).v;
163 return Va_type<V>::value(_d);
155 typename Va_type<V>::Ret_value
value()
const {
…}
168 template<
typename T >
169 bool is_of()
const {
return Va_type<T>::id() ==
type(); }
172 bool is_nil()
const {
return is_of<void>(); }
176 {
return (
type() & ~L4_VARG_TYPE_SIGN) == L4_VARG_TYPE_UMWORD; }
184 template<
typename T >
190 *v = this->value<T>();
195 template<
typename T >
198 typedef Va_type<T> Vt;
199 _tag = Vt::id() | (Vt::size(d) << 16);
200 _d =
static_cast<char const *
>(d);
207 static_assert(
sizeof(T) <=
sizeof(
char const *),
"direct Varg value too big");
208 typedef Va_type<T> Vt;
209 _tag = Vt::id() | (
sizeof(T) << 16) | Direct_data;
210 union X {
char const *d; T v; };
211 reinterpret_cast<X &
>(_d).v = val;
215 template<
typename T>
explicit
221 template<
typename T>
explicit
222 Varg(T
data,
typename L4::Types::Enable_if<
sizeof(T) <=
sizeof(
char const *),
bool>
::type =
true)
223 { set_direct_value<T>(
data); }
222 Varg(T
data,
typename L4::Types::Enable_if<
sizeof(T) <=
sizeof(
char const *),
bool>
::type =
true) {
…}
228class Varg_t :
public Varg
231 typedef typename Va_type<T>::Value Value;
232 explicit Varg_t(Value v) :
Varg()
233 { _data = v; set_value<T>(Va_type<T>::addr_of(_data)); }
239template<
unsigned MAX = L4_UTCB_GENERIC_DATA_SIZE>
264 using Mp = M
const *;
269 Mp next_arg(
Varg const &a)
const
271 return _c + 1 + (Msg::align_to<M>(a.
length()) /
sizeof(M));
276 Iter_state() : _c(
nullptr), _e(
nullptr) {}
279 Iter_state(Mp c, Mp e) : _c(c), _e(e)
284 {
return _c && _c < _e; }
287 Mp begin()
const {
return _c; }
290 Mp end()
const {
return _e; }
303 a.
data(
reinterpret_cast<char const *
>(&_c[1]));
312 bool operator == (Iter_state
const &o)
const
313 {
return _c == o._c; }
316 bool operator != (Iter_state
const &o)
const
317 {
return _c != o._c; }
353 explicit operator bool ()
const
353 explicit operator bool ()
const {
…}
378 bool operator == (
Iterator const &o)
const
381 bool operator != (Iterator
const &o)
const
410template<
unsigned MAX>
424 unsigned c = r._s.end() - rs;
425 for (
unsigned i = 0; i < c; ++i)
428 this->_s = Iter_state(data, data + c);
434template<>
struct Elem<Varg const *>
436 typedef Varg
const *arg_type;
437 typedef Varg_list_ref svr_type;
438 typedef Varg_list_ref svr_arg_type;
439 enum { Is_optional =
false };
447template<>
struct Direction<Varg const *> : Dir_in {};
448template<>
struct Class<Varg const *> : Cls_data {};
450template<
typename DIR,
typename CLASS>
451struct Clnt_val_ops<Varg, DIR, CLASS>;
454struct Clnt_val_ops<Varg, Dir_in, Cls_data> :
455 Clnt_noops<Varg const &>
457 using Clnt_noops<Varg
const &>::to_msg;
458 static int to_msg(
char *msg,
unsigned offs,
unsigned limit,
459 Varg
const &a, Dir_in, Cls_data)
461 for (Varg
const *i = &a; i->tag(); ++i)
463 offs = align_to<l4_umword_t>(offs);
464 if (
L4_UNLIKELY(!check_size<l4_umword_t>(offs, limit)))
466 *
reinterpret_cast<l4_umword_t*
>(msg + offs) = i->tag();
468 if (
L4_UNLIKELY(!check_size<char>(offs, limit, i->length())))
470 char const *d = i->data();
471 for (
unsigned x = 0; x < i->length(); ++x)
480struct Svr_val_ops<Varg_list_ref, Dir_in, Cls_data> :
481 Svr_noops<Varg_list_ref>
483 using Svr_noops<Varg_list_ref>::to_svr;
484 static int to_svr(
char *msg,
unsigned offset,
unsigned limit,
485 Varg_list_ref &a, Dir_in, Cls_data)
487 unsigned start = align_to<l4_umword_t>(offset);
489 for (offs = start; offs < limit;)
491 unsigned noffs = align_to<l4_umword_t>(offs);
492 if (
L4_UNLIKELY(!check_size<l4_umword_t>(noffs, limit)))
497 arg.tag(*
reinterpret_cast<l4_umword_t*
>(msg + offs));
504 if (
L4_UNLIKELY(!check_size<char>(offs, limit, arg.length())))
506 offs += arg.length();
509 a = Varg_list_ref(msg + start, msg + align_to<l4_umword_t>(offs));
Iterator(Iter_state const &s)
Create a new iterator.
bool equals(Iterator const &o) const
check for equality
Iterator & operator++()
increment iterator to the next arg
Varg operator*() const
dereference the iterator, get Varg
List of variable-sized RPC parameters as received by the server.
Iterator begin() const
Returns an interator to the first Varg.
Varg pop_front()
Get the next parameter in the list.
Varg next()
Get the next parameter in the list.
Varg_list_ref(void const *start, void const *end)
Create a parameter list over a given memory region.
Iterator end() const
Returns the end of the list.
Varg_list_ref()=default
Create an empty parameter list.
Self-contained list of variable-sized RPC parameters.
Varg_list(Varg_list_ref const &r)
Create a parameter list as a copy from a referencing list.
Variably sized RPC argument.
Varg(char const *data)
Make Varg from null-terminated string.
char const * data() const
Varg(L4_varg_type t, void const *v, int len)
Make an indirect varg.
Varg()=default
Make uninitialized Varg.
l4_umword_t Tag
The data type for the tag.
Va_type< V >::Ret_value value() const
void set_direct_value(T val, typename L4::Types::Enable_if< sizeof(T)<=sizeof(char const *), bool >::type=true)
Set to directly stored value of type T.
unsigned length() const
Get the size of the RPC argument.
void set_value(void const *d)
Set to indirect value of type T.
L4_varg_type type() const
void tag(Tag tag)
Set Varg tag (usually from message)
Varg(T const *data)
Make Varg from indirect value (pointer)
Varg(T data, typename L4::Types::Enable_if< sizeof(T)<=sizeof(char const *), bool >::type=true)
Make Varg from direct value.
void data(char const *d)
Set Varg to indirect data value (usually in UTCB)
bool get_value(typename Va_type< T >::Value *v) const
Get the value of the Varg as type T.
unsigned long l4_umword_t
Unsigned machine word.
signed long l4_mword_t
Signed machine word.
@ L4_EMSGTOOLONG
Message too long.
#define L4_UNLIKELY(x)
Expression is unlikely to execute.
#define L4_EXPORT
Attribute to mark functions, variables, and data types as being exported from a library.
#define L4_DEPRECATED(s)
Mark symbol deprecated.
L4 low-level kernel interface.