linux-support 0.0.25

Comprehensive Linux support for namespaces, cgroups, processes, scheduling, parsing /proc, parsing /sys, signals, hyper threads, CPUS, NUMA nodes, unusual file descriptors, PCI devices and much, much more
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
// This file is part of linux-support. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/linux-support/master/COPYRIGHT. No part of linux-support, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
// Copyright © 2020 The developers of linux-support. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/linux-support/master/COPYRIGHT.


/// Block or subroutine.
#[inline(always)]
pub fn block<'name>(program_lines: Vec<ProgramLineWrapper<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLineWrapper::ProgramLines(program_lines)
}

/// Represents a label used for conditional and non-conditional jumps.
///
/// ***CAUTION***: emits ***NO*** instructions - be aware when manually counting jump offsets!
#[inline(always)]
pub fn label<'name>(name: impl Into<Name<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::Label(name.into()).into()
}

/// Represents a label used for relative function calls
///
/// ***CAUTION***: emits ***NO*** instructions - be aware when manually counting jump offsets!
#[inline(always)]
pub fn function<'name>(name: impl Into<Name<'name>>, function_prototype: Option<FunctionPrototype>) -> ProgramLineWrapper<'name>
{
	ProgramLine::Function(name.into(), function_prototype).into()
}

/// Load a true 64-bit value.
///
/// `destination_register = immediate`.
///
/// ***CAUTION***: emits ***2*** instructions - be aware when manually counting jump offsets!
#[inline(always)]
pub fn load_immediate_64<'name>(destination_register: Register, immediate: impl Into<Immediate<'name, u64>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadImmediate64(destination_register, immediate.into()).into()
}

/// Load a map file descriptor.
///
/// `destination_register = map_file_descriptor`.
///
/// ***CAUTION***: emits ***2*** instructions - be aware when manually counting jump offsets!
#[inline(always)]
pub fn load_map_file_descriptor<MN: TryInto<MapName>>(destination_register: Register, map_name: MN) -> ProgramLineWrapper<'static>
where MN::Error: Debug
{
	ProgramLine::LoadMapFileDescriptor(destination_register, map_name.try_into().unwrap()).into()
}

/// Load a map value.
///
/// `destination_register = map_file_descriptor`.
///
/// ***CAUTION***: emits ***2*** instructions - be aware when manually counting jump offsets!
#[inline(always)]
pub fn load_map_value<'name, MN: TryInto<MapName>>(destination_register: Register, map_name: MN, offset_into_value: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
where MN::Error: Debug
{
	ProgramLine::LoadMapValue(destination_register, map_name.try_into().unwrap(), offset_into_value.into()).into()
}

/// Operation on 32-bits of values.
///
/// `destination_register = destination_register operation source`.
#[inline(always)]
pub fn alu_32<'name>(operation: AluOperation, destination_register: Register, source: impl Into<RegisterOrImmediate<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::Alu32(operation, destination_register, source.into()).into()
}

/// Operation on all 64-bits of values.
///
/// `destination_register = destination_register operation source`.
#[inline(always)]
pub fn alu_64<'name>(operation: AluOperation, destination_register: Register, source: impl Into<RegisterOrImmediate<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::Alu64(operation, destination_register, source.into()).into()
}

/// ?Uncertain of Encoding?
#[inline(always)]
pub fn to_little_endian<'name>(destination_register: Register, length: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::ToLittleEndian(destination_register, length.into()).into()
}

/// ?Uncertain of Encoding?
#[inline(always)]
pub fn to_big_endian<'name>(destination_register: Register, length: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::ToBigEndian(destination_register, length.into()).into()
}

/// Move of lower 32 bits.
///
/// `destination_register = source`.
#[inline(always)]
pub fn move_32<'name>(destination_register: Register, source: impl Into<RegisterOrImmediate<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::Move32(destination_register, source.into()).into()
}

/// Move of all 64 bits.
///
/// `destination_register = source`.
#[inline(always)]
pub fn move_64<'name>(destination_register: Register, source: impl Into<RegisterOrImmediate<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::Move64(destination_register, source.into()).into()
}

/// Move of stack pointer.
///
/// `destination_register = stack_pointer`.
#[inline(always)]
pub fn move_stack_pointer(destination_register: Register) -> ProgramLineWrapper<'static>
{
	move_64(destination_register, Register::fp).into()
}

/// Direct packet access.
///
/// Uses a constant offset (`immediate`).
///
/// `r0 = *((skb.data as *const u8).add(immediate))`.
#[inline(always)]
pub fn load_r0_direct_8<'name>(immediate: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadR0Direct8(immediate.into()).into()
}

/// Direct packet access.
///
/// Uses a constant offset (`immediate`).
///
/// `r0 = *((skb.data as *const u16).add(immediate))`.
#[inline(always)]
pub fn load_r0_direct_16<'name>(immediate: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadR0Direct16(immediate.into()).into()
}

/// Direct packet access.
///
/// Uses a constant offset (`immediate`).
///
/// `r0 = *((skb.data as *const u32).add(immediate))`.
#[inline(always)]
pub fn load_r0_direct_32<'name>(immediate: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadR0Direct32(immediate.into()).into()
}

/// Direct packet access.
///
/// Uses a constant offset (`immediate`).
///
/// `r0 = *((skb.data as *const u64).add(immediate))`.
#[inline(always)]
pub fn load_r0_direct_64<'name>(immediate: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadR0Direct64(immediate.into()).into()
}

/// Indirect packet access.
///
/// Uses a variable offset (`source_register`) with a constant offset (`immediate`).
///
/// `r0 = *((skb.data as *const u8).add(source_register + immediate))`.
#[inline(always)]
pub fn load_r0_indirect_8<'name>(source_register: Register, immediate: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadR0Indirect8(source_register, immediate.into()).into()
}

/// Indirect packet access.
///
/// Uses a variable offset (`source_register`) with a constant offset (`immediate`).
///
/// `r0 = *((skb.data as *const u16).add(source_register + immediate))`.
#[inline(always)]
pub fn load_r0_indirect_16<'name>(source_register: Register, immediate: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadR0Indirect16(source_register, immediate.into()).into()
}

/// Indirect packet access.
///
/// Uses a variable offset (`source_register`) with a constant offset (`immediate`).
///
/// `r0 = *((skb.data as *const u32).add(source_register + immediate))`.
#[inline(always)]
pub fn load_r0_indirect_32<'name>(source_register: Register, immediate: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadR0Indirect32(source_register, immediate.into()).into()
}

/// Indirect packet access.
///
/// Uses a variable offset (`source_register`) with a constant offset (`immediate`).
///
/// `r0 = *((skb.data as *const u64).add(source_register + immediate))`.
#[inline(always)]
pub fn load_r0_indirect_64<'name>(source_register: Register, immediate: impl Into<Immediate<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadR0Indirect64(source_register, immediate.into()).into()
}

/// Memory load.
///
/// Uses a variable memory location (`source_register`) with a constant offset (`memory_offset`).
///
/// `destination_register = *((source_register as *const u8).add(memory_offset))`.
#[inline(always)]
pub fn load_from_memory_8<'name>(destination_register: Register, source_register: Register, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadFromMemory8(destination_register, source_register, memory_offset.into()).into()
}

/// Memory load.
///
/// Uses a variable memory location (`source_register`) with a constant offset (`memory_offset`).
///
/// `destination_register = *((source_register as *const u16).add(memory_offset))`.
#[inline(always)]
pub fn load_from_memory_16<'name>(destination_register: Register, source_register: Register, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadFromMemory16(destination_register, source_register, memory_offset.into()).into()
}

/// Memory load.
///
/// Uses a variable memory location (`source_register`) with a constant offset (`memory_offset`).
///
/// `destination_register = *((source_register as *const u32).add(memory_offset))`.
#[inline(always)]
pub fn load_from_memory_32<'name>(destination_register: Register, source_register: Register, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadFromMemory32(destination_register, source_register, memory_offset.into()).into()
}

/// Memory load.
///
/// Uses a variable memory location (`source_register`) with a constant offset (`memory_offset`).
///
/// `destination_register = *((source_register as *const u64).add(memory_offset))`.
#[inline(always)]
pub fn load_from_memory_64<'name>(destination_register: Register, source_register: Register, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::LoadFromMemory64(destination_register, source_register, memory_offset.into()).into()
}

/// Memory load from stack.
///
/// Uses a variable memory location (`source_register`) with a constant offset (`memory_offset`).
///
/// `destination_register = *((stack_pointer as *const u8).sub(variable_slot))`.
#[inline(always)]
pub fn load_from_stack_variable_8<VS: TryInto<VariableSlotU64>>(destination_register: Register, variable_slot: VS) -> ProgramLineWrapper<'static>
where VS::Error: Debug
{
	load_from_memory_8(destination_register, Register::fp, VariableSlotU64::to_memory_slot_from_try_into(variable_slot)).into()
}

/// Memory load from stack.
///
/// Uses a variable memory location (`source_register`) with a constant offset (`memory_offset`).
///
/// `destination_register = *((stack_pointer as *const u16).sub(variable_slot * 2))`.
#[inline(always)]
pub fn load_from_stack_variable_16<VS: TryInto<VariableSlotU64>>(destination_register: Register, variable_slot: VS) -> ProgramLineWrapper<'static>
where VS::Error: Debug
{
	load_from_memory_16(destination_register, Register::fp, VariableSlotU64::to_memory_slot_from_try_into(variable_slot)).into()
}

/// Memory load from stack.
///
/// Uses a variable memory location (`source_register`) with a constant offset (`memory_offset`).
///
/// `destination_register = *((stack_pointer as *const u64).sub(variable_slot * 4))`.
#[inline(always)]
pub fn load_from_stack_variable_32<VS: TryInto<VariableSlotU64>>(destination_register: Register, variable_slot: VS) -> ProgramLineWrapper<'static>
where VS::Error: Debug
{
	load_from_memory_32(destination_register, Register::fp, VariableSlotU64::to_memory_slot_from_try_into(variable_slot)).into()
}

/// Memory load from stack.
///
/// Uses a variable memory location (`source_register`) with a constant offset (`memory_offset`).
///
/// `destination_register = *((stack_pointer as *const u64).sub(variable_slot * 8))`.
#[inline(always)]
pub fn load_from_stack_variable_64<VS: TryInto<VariableSlotU64>>(destination_register: Register, variable_slot: VS) -> ProgramLineWrapper<'static>
where VS::Error: Debug
{
	load_from_memory_64(destination_register, Register::fp, VariableSlotU64::to_memory_slot_from_try_into(variable_slot)).into()
}

/// Memory store.
///
/// `*((destination_register as *mut u8).add(memory_offset)) = source`.
#[inline(always)]
pub fn store_to_memory_8<'name>(destination_register: Register, source: impl Into<RegisterOrImmediate<'name>>, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::StoreToMemory8(destination_register, source.into(), memory_offset.into()).into()
}

/// Memory store.
///
/// `*((destination_register as *mut u16).add(memory_offset)) = source`.
#[inline(always)]
pub fn store_to_memory_16<'name>(destination_register: Register, source: impl Into<RegisterOrImmediate<'name>>, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::StoreToMemory16(destination_register, source.into(), memory_offset.into()).into()
}

/// Memory store.
///
/// `*((destination_register as *mut u32).add(memory_offset)) = source`.
#[inline(always)]
pub fn store_to_memory_32<'name>(destination_register: Register, source: impl Into<RegisterOrImmediate<'name>>, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::StoreToMemory32(destination_register, source.into(), memory_offset.into()).into()
}

/// Memory store.
///
/// `*((destination_register as *mut u64).add(memory_offset)) = source`.
#[inline(always)]
pub fn store_to_memory_64<'name>(destination_register: Register, source: impl Into<RegisterOrImmediate<'name>>, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::StoreToMemory64(destination_register, source.into(), memory_offset.into()).into()
}

/// Memory store to stack.
///
/// `*((stack_pointer as *mut u8).sub(variable_slot)) = source`.
#[inline(always)]
pub fn store_to_stack_variable_8<'name, VS: TryInto<VariableSlotU64>>(source: impl Into<RegisterOrImmediate<'name>>, variable_slot: VS) -> ProgramLineWrapper<'name>
where VS::Error: Debug
{
	store_to_memory_8(Register::fp, source.into(), VariableSlotU64::to_memory_slot_from_try_into(variable_slot))
}

/// Memory store to stack.
///
/// `*((stack_pointer as *mut u16).sub(variable_slot * 2)) = source`.
#[inline(always)]
pub fn store_to_stack_variable_16<'name, VS: TryInto<VariableSlotU64>>(source: impl Into<RegisterOrImmediate<'name>>, variable_slot: VS) -> ProgramLineWrapper<'name>
where VS::Error: Debug
{
	store_to_memory_16(Register::fp, source.into(), VariableSlotU64::to_memory_slot_from_try_into(variable_slot))
}

/// Memory store to stack.
///
/// `*((stack_pointer as *mut u32).sub(variable_slot * 4)) = source`.
#[inline(always)]
pub fn store_to_stack_variable_32<'name, VS: TryInto<VariableSlotU64>>(source: impl Into<RegisterOrImmediate<'name>>, variable_slot: VS) -> ProgramLineWrapper<'name>
where VS::Error: Debug
{
	store_to_memory_32(Register::fp, source.into(), VariableSlotU64::to_memory_slot_from_try_into(variable_slot))
}

/// Memory store to stack.
///
/// `*((stack_pointer as *mut u64).sub(variable_slot * 8)) = source`.
#[inline(always)]
pub fn store_to_stack_variable_64<'name, VS: TryInto<VariableSlotU64>>(source: impl Into<RegisterOrImmediate<'name>>, variable_slot: VS) -> ProgramLineWrapper<'name>
where VS::Error: Debug
{
	store_to_memory_64(Register::fp, source.into(), VariableSlotU64::to_memory_slot_from_try_into(variable_slot))
}

/// Memory store using an atomic add.
///
/// `*((destination_register as *mut u8).add(memory_offset)) += source_register`.
#[inline(always)]
pub fn store_to_memory_atomic_add_8<'name>(destination_register: Register, source: Register, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::StoreToMemoryAtomicAdd8(destination_register, source, memory_offset.into()).into()
}

/// Memory store using an atomic add.
///
/// `*((destination_register as *mut u16).add(memory_offset)) += source_register`.
#[inline(always)]
pub fn store_to_memory_atomic_add_16<'name>(destination_register: Register, source: Register, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::StoreToMemoryAtomicAdd16(destination_register, source, memory_offset.into()).into()
}

/// Memory store using an atomic add.
///
/// `*((destination_register as *mut u32).add(memory_offset)) += source_register`.
#[inline(always)]
pub fn store_to_memory_atomic_add_32<'name>(destination_register: Register, source: Register, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::StoreToMemoryAtomicAdd32(destination_register, source, memory_offset.into()).into()
}

/// Memory store using an atomic add.
///
/// `*((destination_register as *mut u64).add(memory_offset)) += source_register`.
#[inline(always)]
pub fn store_to_memory_atomic_add_64<'name>(destination_register: Register, source: Register, memory_offset: impl Into<MemoryOffset<'name>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::StoreToMemoryAtomicAdd64(destination_register, source, memory_offset.into()).into()
}

/// Conditional jump after comparison of lower 32 bits.
///
/// ```bash
/// if destination_register jump_operation source
/// {
/// 	goto program_counter + program_counter_offset
/// }
/// ```
///
/// `program_counter` is also known as `pc`.
#[inline(always)]
pub fn conditional_jump_32<'name>(jump_operation: JumpOperation, destination_register: Register, source: impl Into<RegisterOrImmediate<'name>>, program_counter_offset: impl Into<ProgramCounterOffset<'name, i16>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::ConditionalJump32(jump_operation, destination_register, source.into(), program_counter_offset.into()).into()
}

/// Conditional jump after comparison of all 64 bits.
///
/// ```bash
/// if destination_register jump_operation source
/// {
/// 	goto program_counter + program_counter_offset
/// }
/// ```
///
/// `program_counter` is also known as `pc`.
#[inline(always)]
pub fn conditional_jump_64<'name>(jump_operation: JumpOperation, destination_register: Register, source: impl Into<RegisterOrImmediate<'name>>, program_counter_offset: impl Into<ProgramCounterOffset<'name, i16>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::ConditionalJump64(jump_operation, destination_register, source.into(), program_counter_offset.into()).into()
}

/// Unconditional jump.
///
/// `goto program_counter + program_counter_offset`.
///
/// `program_counter` is also known as `pc`.
#[inline(always)]
pub fn unconditional_jump<'name>(program_counter_offset: impl Into<ProgramCounterOffset<'name, i16>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::UnconditionalJump(program_counter_offset.into()).into()
}

/// Function call.
///
/// Registers `r1` through to `r5` inclusive are used to pass function arguments and are clobbered.
/// The function result will be returned in `r0`.
/// The function `bpf_tail_call()` never returns if successfully invoked.
///
/// `call function_identifier`.
#[inline(always)]
pub fn function_call(function_identifier: bpf_func_id) -> ProgramLineWrapper<'static>
{
	ProgramLine::FunctionCall(function_identifier).into()
}

/// Relative function call.
///
/// Calls a BPF function within the same block of instructions.
///
/// Registers `r1` through to `r5` inclusive are used to pass function arguments and are clobbered.
/// The function result will be returned in `r0`.
#[inline(always)]
pub fn relative_function_call<'name>(program_counter_offset: impl Into<ProgramCounterOffset<'name, i32>>) -> ProgramLineWrapper<'name>
{
	ProgramLine::RelativeFunctionCall(program_counter_offset.into()).into()
}

/// Program exit.
#[inline(always)]
pub fn program_exit() ->  ProgramLineWrapper<'static>
{
	ProgramLine::ProgramExit.into()
}