1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
#pragma once
#include <errno.h>
#include <mlibc/tcb.hpp>
#include <mlibc/thread.hpp>
#include <mlibc-config.h>
#include <utility>
#include <sys/syscall.h>
#include <bits/syscall.h>
using sc_word_t = __sc_word_t;
extern "C" {
extern sc_word_t __mlibc_do_asm_cp_syscall(int sc, sc_word_t arg1, sc_word_t arg2,
sc_word_t arg3, sc_word_t arg4, sc_word_t arg5, sc_word_t arg6);
extern void __mlibc_do_cancel();
}
namespace mlibc {
// C++ wrappers for the extern "C" functions.
inline sc_word_t do_nargs_syscall(int sc) {
return __do_syscall0(sc);
}
inline sc_word_t do_nargs_syscall(int sc, sc_word_t arg1) {
return __do_syscall1(sc, arg1);
}
inline sc_word_t do_nargs_syscall(int sc, sc_word_t arg1, sc_word_t arg2) {
return __do_syscall2(sc, arg1, arg2);
}
inline sc_word_t do_nargs_syscall(int sc, sc_word_t arg1, sc_word_t arg2, sc_word_t arg3) {
return __do_syscall3(sc, arg1, arg2, arg3);
}
inline sc_word_t do_nargs_syscall(int sc, sc_word_t arg1, sc_word_t arg2, sc_word_t arg3,
sc_word_t arg4) {
return __do_syscall4(sc, arg1, arg2, arg3, arg4);
}
inline sc_word_t do_nargs_syscall(int sc, sc_word_t arg1, sc_word_t arg2, sc_word_t arg3,
sc_word_t arg4, sc_word_t arg5) {
return __do_syscall5(sc, arg1, arg2, arg3, arg4, arg5);
}
inline sc_word_t do_nargs_syscall(int sc, sc_word_t arg1, sc_word_t arg2, sc_word_t arg3,
sc_word_t arg4, sc_word_t arg5, sc_word_t arg6) {
return __do_syscall6(sc, arg1, arg2, arg3, arg4, arg5, arg6);
}
inline sc_word_t do_nargs_cp_syscall(int sc, sc_word_t arg1) {
return __mlibc_do_asm_cp_syscall(sc, arg1, 0, 0, 0, 0, 0);
}
inline sc_word_t do_nargs_cp_syscall(int sc, sc_word_t arg1, sc_word_t arg2) {
return __mlibc_do_asm_cp_syscall(sc, arg1, arg2, 0, 0, 0, 0);
}
inline sc_word_t do_nargs_cp_syscall(int sc, sc_word_t arg1, sc_word_t arg2,
sc_word_t arg3) {
return __mlibc_do_asm_cp_syscall(sc, arg1, arg2, arg3, 0, 0, 0);
}
inline sc_word_t do_nargs_cp_syscall(int sc, sc_word_t arg1, sc_word_t arg2, sc_word_t arg3,
sc_word_t arg4) {
return __mlibc_do_asm_cp_syscall(sc, arg1, arg2, arg3, arg4, 0, 0);
}
inline sc_word_t do_nargs_cp_syscall(int sc, sc_word_t arg1, sc_word_t arg2, sc_word_t arg3,
sc_word_t arg4, sc_word_t arg5) {
return __mlibc_do_asm_cp_syscall(sc, arg1, arg2, arg3, arg4, arg5, 0);
}
inline sc_word_t do_nargs_cp_syscall(int sc, sc_word_t arg1, sc_word_t arg2, sc_word_t arg3,
sc_word_t arg4, sc_word_t arg5, sc_word_t arg6) {
return __mlibc_do_asm_cp_syscall(sc, arg1, arg2, arg3, arg4, arg5, arg6);
}
// Type-safe syscall result type.
enum class sc_result_t : sc_word_t { };
// Cast to the argument type of the extern "C" functions.
inline sc_word_t sc_cast(long x) { return x; }
inline sc_word_t sc_cast(const void *x) { return reinterpret_cast<sc_word_t>(x); }
template<typename... T>
sc_result_t do_syscall(int sc, T... args) {
return static_cast<sc_result_t>(do_nargs_syscall(sc, sc_cast(args)...));
}
inline int sc_error(sc_result_t ret) {
auto v = static_cast<sc_word_t>(ret);
if(static_cast<unsigned long>(v) > -4096UL)
return -v;
return 0;
}
template<typename... T>
sc_result_t do_cp_syscall(int sc, T... args) {
#if __MLIBC_POSIX_OPTION && !MLIBC_BUILDING_RTDL
auto result = static_cast<sc_result_t>(do_nargs_cp_syscall(sc, sc_cast(args)...));
if (int e = sc_error(result); e) {
auto tcb = reinterpret_cast<Tcb*>(get_current_tcb());
if (tcb_cancelled(tcb->cancelBits) && e == EINTR) {
__mlibc_do_cancel();
__builtin_unreachable();
}
}
return result;
#else
return do_syscall(sc, std::forward<T>(args)...);
#endif // __MLIBC_POSIX_OPTION || !MLIBC_BUILDING_RTDL
}
// Cast from the syscall result type.
template<typename T>
T sc_int_result(sc_result_t ret) {
auto v = static_cast<sc_word_t>(ret);
return v;
}
template<typename T>
T *sc_ptr_result(sc_result_t ret) {
auto v = static_cast<sc_word_t>(ret);
return reinterpret_cast<T *>(v);
}
}
|