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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
use ::core::hint::unreachable_unchecked;

/// Performs a system call and returns the result.
///
/// The first argument specifies the system call, and the second is a slice of
/// arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall(rax: usize, a: &[usize]) -> usize {
    match a.len() {
        0 => syscall_0(rax),
        1 => syscall_1(rax, a[0]),
        2 => syscall_2(rax, a[0], a[1]),
        3 => syscall_3(rax, a[0], a[1], a[2]),
        4 => syscall_4(rax, a[0], a[1], a[2], a[3]),
        5 => syscall_5(rax, a[0], a[1], a[2], a[3], a[4]),
        6 => syscall_6(rax, a[0], a[1], a[2], a[3], a[4], a[5]),
        _ => unreachable_unchecked(),
    }
}

/// Performs a system call which never returns.
///
/// The first argument specifies the system call, and the second is a slice of
/// arguments to pass it.
///
/// This should only be used for calls like `exit` or `exit_group` which are
/// guaranteed to never return.
///
#[inline(always)]
pub unsafe fn syscall_nr(rax: usize, a: &[usize]) -> ! {
    match a.len() {
        0 => syscall_0_nr(rax),
        1 => syscall_1_nr(rax, a[0]),
        2 => syscall_2_nr(rax, a[0], a[1]),
        3 => syscall_3_nr(rax, a[0], a[1], a[2]),
        4 => syscall_4_nr(rax, a[0], a[1], a[2], a[3]),
        5 => syscall_5_nr(rax, a[0], a[1], a[2], a[3], a[4]),
        6 => syscall_6_nr(rax, a[0], a[1], a[2], a[3], a[4], a[5]),
        _ => unreachable_unchecked(),
    }
}

/// Performs a system call with no arguments and returns the result.
///
/// The argument specifies the system call.
///
#[inline(always)]
pub unsafe fn syscall_0(mut rax: usize) -> usize {
    asm!(
        "syscall"
        : "+{rax}"(rax)
        :
        : "rcx", "r11", "memory"
        : "volatile"
    );
    rax
}

/// Performs a system call with no arguments which never returns.
///
/// The argument specifies the system call.
///
#[inline(always)]
pub unsafe fn syscall_0_nr(rax: usize) -> ! {
    asm!(
        "syscall"
        :
        : "{rax}"(rax)
        : "rcx", "r11"
        : "volatile"
    );
    unreachable_unchecked()
}

/// Performs a system call with one argument and returns the result.
///
/// The first argument specifies the system call, and the second is the
/// argument to pass it.
///
#[inline(always)]
pub unsafe fn syscall_1(mut rax: usize, rdi: usize) -> usize {
    asm!(
        "syscall"
        : "+{rax}"(rax)
        : "{rdi}"(rdi)
        : "rcx", "r11", "memory"
        : "volatile"
    );
    rax
}

/// Performs a system call with one argument and never returns.
///
/// The first argument specifies the system call, and the second is the
/// argument to pass it.
///
#[inline(always)]
pub unsafe fn syscall_1_nr(rax: usize, rdi: usize) -> ! {
    asm!(
        "syscall"
        :
        : "{rax}"(rax), "{rdi}"(rdi)
        : "rcx", "r11"
        : "volatile"
    );
    unreachable_unchecked()
}

/// Performs a system call with two arguments and returns the result.
///
/// The first argument specifies the system call, and the remaining arguments
/// are the arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall_2(mut rax: usize, rdi: usize, rsi: usize) -> usize {
    asm!(
        "syscall"
        : "+{rax}"(rax)
        : "{rdi}"(rdi), "{rsi}"(rsi)
        : "rcx", "r11", "memory"
        : "volatile"
    );
    rax
}

/// Performs a system call with two arguments which never returns.
///
/// The first argument specifies the system call, and the remaining arguments
/// are the arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall_2_nr(rax: usize, rdi: usize, rsi: usize) -> ! {
    asm!(
        "syscall"
        :
        : "{rax}"(rax), "{rdi}"(rdi), "{rsi}"(rsi)
        : "rcx", "r11"
        : "volatile"
    );
    unreachable_unchecked()
}

/// Performs a system call with three arguments and returns the result.
///
/// The first argument specifies the system call, and the remaining arguments
/// are the arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall_3(mut rax: usize, rdi: usize, rsi: usize, rdx: usize) -> usize {
    asm!(
        "syscall"
        : "+{rax}"(rax)
        : "{rdi}"(rdi), "{rsi}"(rsi), "{rdx}"(rdx)
        : "rcx", "r11", "memory"
        : "volatile"
    );
    rax
}

/// Performs a system call with three arguments which never returns.
///
/// The first argument specifies the system call, and the remaining arguments
/// are the arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall_3_nr(rax: usize, rdi: usize, rsi: usize, rdx: usize) -> ! {
    asm!(
        "syscall"
        :
        : "{rax}"(rax), "{rdi}"(rdi), "{rsi}"(rsi), "{rdx}"(rdx)
        : "rcx", "r11"
        : "volatile"
    );
    unreachable_unchecked()
}

/// Performs a system call with four arguments and returns the result.
///
/// The first argument specifies the system call, and the remaining arguments
/// are the arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall_4(mut rax: usize, rdi: usize, rsi: usize, rdx: usize, r10: usize) -> usize {
    asm!(
        "syscall"
        : "+{rax}"(rax)
        : "{rdi}"(rdi), "{rsi}"(rsi), "{rdx}"(rdx), "{r10}"(r10)
        : "rcx", "r11", "memory"
        : "volatile"
    );
    rax
}

/// Performs a system call with four arguments which never returns.
///
/// The first argument specifies the system call, and the remaining arguments
/// are the arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall_4_nr(rax: usize, rdi: usize, rsi: usize, rdx: usize, r10: usize) -> ! {
    asm!(
        "syscall"
        :
        : "{rax}"(rax), "{rdi}"(rdi), "{rsi}"(rsi), "{rdx}"(rdx), "{r10}"(r10)
        : "rcx", "r11"
        : "volatile"
    );
    unreachable_unchecked()
}

/// Performs a system call with five arguments and returns the result.
///
/// The first argument specifies the system call, and the remaining arguments
/// are the arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall_5(mut rax: usize, rdi: usize, rsi: usize, rdx: usize, r10: usize, r8: usize) -> usize {
    asm!(
        "syscall"
        : "+{rax}"(rax)
        : "{rdi}"(rdi), "{rsi}"(rsi), "{rdx}"(rdx), "{r10}"(r10), "{r8}"(r8)
        : "rcx", "r11", "memory"
        : "volatile"
    );
    rax
}

/// Performs a system call with five arguments which never returns.
///
/// The first argument specifies the system call, and the remaining arguments
/// are the arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall_5_nr(rax: usize, rdi: usize, rsi: usize, rdx: usize, r10: usize, r8: usize) -> ! {
    asm!(
        "syscall"
        :
        : "{rax}"(rax), "{rdi}"(rdi), "{rsi}"(rsi), "{rdx}"(rdx), "{r10}"(r10), "{r8}"(r8)
        : "rcx", "r11"
        : "volatile"
    );
    unreachable_unchecked()
}

/// Performs a system call with six arguments and returns the result.
///
/// The first argument specifies the system call, and the remaining arguments
/// are the arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall_6(mut rax: usize, rdi: usize, rsi: usize, rdx: usize, r10: usize, r8: usize, r9: usize) -> usize {
    asm!(
        "syscall"
        : "+{rax}"(rax)
        : "{rdi}"(rdi), "{rsi}"(rsi), "{rdx}"(rdx), "{r10}"(r10), "{r8}"(r8), "{r9}"(r9)
        : "rcx", "r11", "memory"
        : "volatile"
    );
    rax
}

/// Performs a system call with six arguments which never returns.
///
/// The first argument specifies the system call, and the remaining arguments
/// are the arguments to pass it.
///
#[inline(always)]
pub unsafe fn syscall_6_nr(rax: usize, rdi: usize, rsi: usize, rdx: usize, r10: usize, r8: usize, r9: usize) -> ! {
    asm!(
        "syscall"
        :
        : "{rax}"(rax), "{rdi}"(rdi), "{rsi}"(rsi), "{rdx}"(rdx), "{r10}"(r10), "{r8}"(r8), "{r9}"(r9)
        : "rcx", "r11"
        : "volatile"
    );
    unreachable_unchecked()
}