Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/lib/bpf/bpf.h
26282 views
1
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
2
3
/*
4
* Common BPF ELF operations.
5
*
6
* Copyright (C) 2013-2015 Alexei Starovoitov <[email protected]>
7
* Copyright (C) 2015 Wang Nan <[email protected]>
8
* Copyright (C) 2015 Huawei Inc.
9
*
10
* This program is free software; you can redistribute it and/or
11
* modify it under the terms of the GNU Lesser General Public
12
* License as published by the Free Software Foundation;
13
* version 2.1 of the License (not later!)
14
*
15
* This program is distributed in the hope that it will be useful,
16
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
* GNU Lesser General Public License for more details.
19
*
20
* You should have received a copy of the GNU Lesser General Public
21
* License along with this program; if not, see <http://www.gnu.org/licenses>
22
*/
23
#ifndef __LIBBPF_BPF_H
24
#define __LIBBPF_BPF_H
25
26
#include <linux/bpf.h>
27
#include <stdbool.h>
28
#include <stddef.h>
29
#include <stdint.h>
30
31
#include "libbpf_common.h"
32
#include "libbpf_legacy.h"
33
34
#ifdef __cplusplus
35
extern "C" {
36
#endif
37
38
LIBBPF_API int libbpf_set_memlock_rlim(size_t memlock_bytes);
39
40
struct bpf_map_create_opts {
41
size_t sz; /* size of this struct for forward/backward compatibility */
42
43
__u32 btf_fd;
44
__u32 btf_key_type_id;
45
__u32 btf_value_type_id;
46
__u32 btf_vmlinux_value_type_id;
47
48
__u32 inner_map_fd;
49
__u32 map_flags;
50
__u64 map_extra;
51
52
__u32 numa_node;
53
__u32 map_ifindex;
54
__s32 value_type_btf_obj_fd;
55
56
__u32 token_fd;
57
size_t :0;
58
};
59
#define bpf_map_create_opts__last_field token_fd
60
61
LIBBPF_API int bpf_map_create(enum bpf_map_type map_type,
62
const char *map_name,
63
__u32 key_size,
64
__u32 value_size,
65
__u32 max_entries,
66
const struct bpf_map_create_opts *opts);
67
68
struct bpf_prog_load_opts {
69
size_t sz; /* size of this struct for forward/backward compatibility */
70
71
/* libbpf can retry BPF_PROG_LOAD command if bpf() syscall returns
72
* -EAGAIN. This field determines how many attempts libbpf has to
73
* make. If not specified, libbpf will use default value of 5.
74
*/
75
int attempts;
76
77
enum bpf_attach_type expected_attach_type;
78
__u32 prog_btf_fd;
79
__u32 prog_flags;
80
__u32 prog_ifindex;
81
__u32 kern_version;
82
83
__u32 attach_btf_id;
84
__u32 attach_prog_fd;
85
__u32 attach_btf_obj_fd;
86
87
const int *fd_array;
88
89
/* .BTF.ext func info data */
90
const void *func_info;
91
__u32 func_info_cnt;
92
__u32 func_info_rec_size;
93
94
/* .BTF.ext line info data */
95
const void *line_info;
96
__u32 line_info_cnt;
97
__u32 line_info_rec_size;
98
99
/* verifier log options */
100
__u32 log_level;
101
__u32 log_size;
102
char *log_buf;
103
/* output: actual total log contents size (including terminating zero).
104
* It could be both larger than original log_size (if log was
105
* truncated), or smaller (if log buffer wasn't filled completely).
106
* If kernel doesn't support this feature, log_size is left unchanged.
107
*/
108
__u32 log_true_size;
109
__u32 token_fd;
110
111
/* if set, provides the length of fd_array */
112
__u32 fd_array_cnt;
113
size_t :0;
114
};
115
#define bpf_prog_load_opts__last_field fd_array_cnt
116
117
LIBBPF_API int bpf_prog_load(enum bpf_prog_type prog_type,
118
const char *prog_name, const char *license,
119
const struct bpf_insn *insns, size_t insn_cnt,
120
struct bpf_prog_load_opts *opts);
121
122
/* Flags to direct loading requirements */
123
#define MAPS_RELAX_COMPAT 0x01
124
125
/* Recommended log buffer size */
126
#define BPF_LOG_BUF_SIZE (UINT32_MAX >> 8) /* verifier maximum in kernels <= 5.1 */
127
128
struct bpf_btf_load_opts {
129
size_t sz; /* size of this struct for forward/backward compatibility */
130
131
/* kernel log options */
132
char *log_buf;
133
__u32 log_level;
134
__u32 log_size;
135
/* output: actual total log contents size (including terminating zero).
136
* It could be both larger than original log_size (if log was
137
* truncated), or smaller (if log buffer wasn't filled completely).
138
* If kernel doesn't support this feature, log_size is left unchanged.
139
*/
140
__u32 log_true_size;
141
142
__u32 btf_flags;
143
__u32 token_fd;
144
size_t :0;
145
};
146
#define bpf_btf_load_opts__last_field token_fd
147
148
LIBBPF_API int bpf_btf_load(const void *btf_data, size_t btf_size,
149
struct bpf_btf_load_opts *opts);
150
151
LIBBPF_API int bpf_map_update_elem(int fd, const void *key, const void *value,
152
__u64 flags);
153
154
LIBBPF_API int bpf_map_lookup_elem(int fd, const void *key, void *value);
155
LIBBPF_API int bpf_map_lookup_elem_flags(int fd, const void *key, void *value,
156
__u64 flags);
157
LIBBPF_API int bpf_map_lookup_and_delete_elem(int fd, const void *key,
158
void *value);
159
LIBBPF_API int bpf_map_lookup_and_delete_elem_flags(int fd, const void *key,
160
void *value, __u64 flags);
161
LIBBPF_API int bpf_map_delete_elem(int fd, const void *key);
162
LIBBPF_API int bpf_map_delete_elem_flags(int fd, const void *key, __u64 flags);
163
LIBBPF_API int bpf_map_get_next_key(int fd, const void *key, void *next_key);
164
LIBBPF_API int bpf_map_freeze(int fd);
165
166
struct bpf_map_batch_opts {
167
size_t sz; /* size of this struct for forward/backward compatibility */
168
__u64 elem_flags;
169
__u64 flags;
170
};
171
#define bpf_map_batch_opts__last_field flags
172
173
174
/**
175
* @brief **bpf_map_delete_batch()** allows for batch deletion of multiple
176
* elements in a BPF map.
177
*
178
* @param fd BPF map file descriptor
179
* @param keys pointer to an array of *count* keys
180
* @param count input and output parameter; on input **count** represents the
181
* number of elements in the map to delete in batch;
182
* on output if a non-EFAULT error is returned, **count** represents the number of deleted
183
* elements if the output **count** value is not equal to the input **count** value
184
* If EFAULT is returned, **count** should not be trusted to be correct.
185
* @param opts options for configuring the way the batch deletion works
186
* @return 0, on success; negative error code, otherwise (errno is also set to
187
* the error code)
188
*/
189
LIBBPF_API int bpf_map_delete_batch(int fd, const void *keys,
190
__u32 *count,
191
const struct bpf_map_batch_opts *opts);
192
193
/**
194
* @brief **bpf_map_lookup_batch()** allows for batch lookup of BPF map elements.
195
*
196
* The parameter *in_batch* is the address of the first element in the batch to
197
* read. *out_batch* is an output parameter that should be passed as *in_batch*
198
* to subsequent calls to **bpf_map_lookup_batch()**. NULL can be passed for
199
* *in_batch* to indicate that the batched lookup starts from the beginning of
200
* the map. Both *in_batch* and *out_batch* must point to memory large enough to
201
* hold a single key, except for maps of type **BPF_MAP_TYPE_{HASH, PERCPU_HASH,
202
* LRU_HASH, LRU_PERCPU_HASH}**, for which the memory size must be at
203
* least 4 bytes wide regardless of key size.
204
*
205
* The *keys* and *values* are output parameters which must point to memory large enough to
206
* hold *count* items based on the key and value size of the map *map_fd*. The *keys*
207
* buffer must be of *key_size* * *count*. The *values* buffer must be of
208
* *value_size* * *count*.
209
*
210
* @param fd BPF map file descriptor
211
* @param in_batch address of the first element in batch to read, can pass NULL to
212
* indicate that the batched lookup starts from the beginning of the map.
213
* @param out_batch output parameter that should be passed to next call as *in_batch*
214
* @param keys pointer to an array large enough for *count* keys
215
* @param values pointer to an array large enough for *count* values
216
* @param count input and output parameter; on input it's the number of elements
217
* in the map to read in batch; on output it's the number of elements that were
218
* successfully read.
219
* If a non-EFAULT error is returned, count will be set as the number of elements
220
* that were read before the error occurred.
221
* If EFAULT is returned, **count** should not be trusted to be correct.
222
* @param opts options for configuring the way the batch lookup works
223
* @return 0, on success; negative error code, otherwise (errno is also set to
224
* the error code)
225
*/
226
LIBBPF_API int bpf_map_lookup_batch(int fd, void *in_batch, void *out_batch,
227
void *keys, void *values, __u32 *count,
228
const struct bpf_map_batch_opts *opts);
229
230
/**
231
* @brief **bpf_map_lookup_and_delete_batch()** allows for batch lookup and deletion
232
* of BPF map elements where each element is deleted after being retrieved.
233
*
234
* @param fd BPF map file descriptor
235
* @param in_batch address of the first element in batch to read, can pass NULL to
236
* get address of the first element in *out_batch*. If not NULL, must be large
237
* enough to hold a key. For **BPF_MAP_TYPE_{HASH, PERCPU_HASH, LRU_HASH,
238
* LRU_PERCPU_HASH}**, the memory size must be at least 4 bytes wide regardless
239
* of key size.
240
* @param out_batch output parameter that should be passed to next call as *in_batch*
241
* @param keys pointer to an array of *count* keys
242
* @param values pointer to an array large enough for *count* values
243
* @param count input and output parameter; on input it's the number of elements
244
* in the map to read and delete in batch; on output it represents the number of
245
* elements that were successfully read and deleted
246
* If a non-**EFAULT** error code is returned and if the output **count** value
247
* is not equal to the input **count** value, up to **count** elements may
248
* have been deleted.
249
* if **EFAULT** is returned up to *count* elements may have been deleted without
250
* being returned via the *keys* and *values* output parameters.
251
* @param opts options for configuring the way the batch lookup and delete works
252
* @return 0, on success; negative error code, otherwise (errno is also set to
253
* the error code)
254
*/
255
LIBBPF_API int bpf_map_lookup_and_delete_batch(int fd, void *in_batch,
256
void *out_batch, void *keys,
257
void *values, __u32 *count,
258
const struct bpf_map_batch_opts *opts);
259
260
/**
261
* @brief **bpf_map_update_batch()** updates multiple elements in a map
262
* by specifying keys and their corresponding values.
263
*
264
* The *keys* and *values* parameters must point to memory large enough
265
* to hold *count* items based on the key and value size of the map.
266
*
267
* The *opts* parameter can be used to control how *bpf_map_update_batch()*
268
* should handle keys that either do or do not already exist in the map.
269
* In particular the *flags* parameter of *bpf_map_batch_opts* can be
270
* one of the following:
271
*
272
* Note that *count* is an input and output parameter, where on output it
273
* represents how many elements were successfully updated. Also note that if
274
* **EFAULT** then *count* should not be trusted to be correct.
275
*
276
* **BPF_ANY**
277
* Create new elements or update existing.
278
*
279
* **BPF_NOEXIST**
280
* Create new elements only if they do not exist.
281
*
282
* **BPF_EXIST**
283
* Update existing elements.
284
*
285
* **BPF_F_LOCK**
286
* Update spin_lock-ed map elements. This must be
287
* specified if the map value contains a spinlock.
288
*
289
* @param fd BPF map file descriptor
290
* @param keys pointer to an array of *count* keys
291
* @param values pointer to an array of *count* values
292
* @param count input and output parameter; on input it's the number of elements
293
* in the map to update in batch; on output if a non-EFAULT error is returned,
294
* **count** represents the number of updated elements if the output **count**
295
* value is not equal to the input **count** value.
296
* If EFAULT is returned, **count** should not be trusted to be correct.
297
* @param opts options for configuring the way the batch update works
298
* @return 0, on success; negative error code, otherwise (errno is also set to
299
* the error code)
300
*/
301
LIBBPF_API int bpf_map_update_batch(int fd, const void *keys, const void *values,
302
__u32 *count,
303
const struct bpf_map_batch_opts *opts);
304
305
struct bpf_obj_pin_opts {
306
size_t sz; /* size of this struct for forward/backward compatibility */
307
308
__u32 file_flags;
309
int path_fd;
310
311
size_t :0;
312
};
313
#define bpf_obj_pin_opts__last_field path_fd
314
315
LIBBPF_API int bpf_obj_pin(int fd, const char *pathname);
316
LIBBPF_API int bpf_obj_pin_opts(int fd, const char *pathname,
317
const struct bpf_obj_pin_opts *opts);
318
319
struct bpf_obj_get_opts {
320
size_t sz; /* size of this struct for forward/backward compatibility */
321
322
__u32 file_flags;
323
int path_fd;
324
325
size_t :0;
326
};
327
#define bpf_obj_get_opts__last_field path_fd
328
329
LIBBPF_API int bpf_obj_get(const char *pathname);
330
LIBBPF_API int bpf_obj_get_opts(const char *pathname,
331
const struct bpf_obj_get_opts *opts);
332
333
LIBBPF_API int bpf_prog_attach(int prog_fd, int attachable_fd,
334
enum bpf_attach_type type, unsigned int flags);
335
LIBBPF_API int bpf_prog_detach(int attachable_fd, enum bpf_attach_type type);
336
LIBBPF_API int bpf_prog_detach2(int prog_fd, int attachable_fd,
337
enum bpf_attach_type type);
338
339
struct bpf_prog_attach_opts {
340
size_t sz; /* size of this struct for forward/backward compatibility */
341
__u32 flags;
342
union {
343
int replace_prog_fd;
344
int replace_fd;
345
};
346
int relative_fd;
347
__u32 relative_id;
348
__u64 expected_revision;
349
size_t :0;
350
};
351
#define bpf_prog_attach_opts__last_field expected_revision
352
353
struct bpf_prog_detach_opts {
354
size_t sz; /* size of this struct for forward/backward compatibility */
355
__u32 flags;
356
int relative_fd;
357
__u32 relative_id;
358
__u64 expected_revision;
359
size_t :0;
360
};
361
#define bpf_prog_detach_opts__last_field expected_revision
362
363
/**
364
* @brief **bpf_prog_attach_opts()** attaches the BPF program corresponding to
365
* *prog_fd* to a *target* which can represent a file descriptor or netdevice
366
* ifindex.
367
*
368
* @param prog_fd BPF program file descriptor
369
* @param target attach location file descriptor or ifindex
370
* @param type attach type for the BPF program
371
* @param opts options for configuring the attachment
372
* @return 0, on success; negative error code, otherwise (errno is also set to
373
* the error code)
374
*/
375
LIBBPF_API int bpf_prog_attach_opts(int prog_fd, int target,
376
enum bpf_attach_type type,
377
const struct bpf_prog_attach_opts *opts);
378
379
/**
380
* @brief **bpf_prog_detach_opts()** detaches the BPF program corresponding to
381
* *prog_fd* from a *target* which can represent a file descriptor or netdevice
382
* ifindex.
383
*
384
* @param prog_fd BPF program file descriptor
385
* @param target detach location file descriptor or ifindex
386
* @param type detach type for the BPF program
387
* @param opts options for configuring the detachment
388
* @return 0, on success; negative error code, otherwise (errno is also set to
389
* the error code)
390
*/
391
LIBBPF_API int bpf_prog_detach_opts(int prog_fd, int target,
392
enum bpf_attach_type type,
393
const struct bpf_prog_detach_opts *opts);
394
395
union bpf_iter_link_info; /* defined in up-to-date linux/bpf.h */
396
struct bpf_link_create_opts {
397
size_t sz; /* size of this struct for forward/backward compatibility */
398
__u32 flags;
399
union bpf_iter_link_info *iter_info;
400
__u32 iter_info_len;
401
__u32 target_btf_id;
402
union {
403
struct {
404
__u64 bpf_cookie;
405
} perf_event;
406
struct {
407
__u32 flags;
408
__u32 cnt;
409
const char **syms;
410
const unsigned long *addrs;
411
const __u64 *cookies;
412
} kprobe_multi;
413
struct {
414
__u32 flags;
415
__u32 cnt;
416
const char *path;
417
const unsigned long *offsets;
418
const unsigned long *ref_ctr_offsets;
419
const __u64 *cookies;
420
__u32 pid;
421
} uprobe_multi;
422
struct {
423
__u64 cookie;
424
} tracing;
425
struct {
426
__u32 pf;
427
__u32 hooknum;
428
__s32 priority;
429
__u32 flags;
430
} netfilter;
431
struct {
432
__u32 relative_fd;
433
__u32 relative_id;
434
__u64 expected_revision;
435
} tcx;
436
struct {
437
__u32 relative_fd;
438
__u32 relative_id;
439
__u64 expected_revision;
440
} netkit;
441
struct {
442
__u32 relative_fd;
443
__u32 relative_id;
444
__u64 expected_revision;
445
} cgroup;
446
};
447
size_t :0;
448
};
449
#define bpf_link_create_opts__last_field uprobe_multi.pid
450
451
LIBBPF_API int bpf_link_create(int prog_fd, int target_fd,
452
enum bpf_attach_type attach_type,
453
const struct bpf_link_create_opts *opts);
454
455
LIBBPF_API int bpf_link_detach(int link_fd);
456
457
struct bpf_link_update_opts {
458
size_t sz; /* size of this struct for forward/backward compatibility */
459
__u32 flags; /* extra flags */
460
__u32 old_prog_fd; /* expected old program FD */
461
__u32 old_map_fd; /* expected old map FD */
462
};
463
#define bpf_link_update_opts__last_field old_map_fd
464
465
LIBBPF_API int bpf_link_update(int link_fd, int new_prog_fd,
466
const struct bpf_link_update_opts *opts);
467
468
LIBBPF_API int bpf_iter_create(int link_fd);
469
470
struct bpf_prog_test_run_attr {
471
int prog_fd;
472
int repeat;
473
const void *data_in;
474
__u32 data_size_in;
475
void *data_out; /* optional */
476
__u32 data_size_out; /* in: max length of data_out
477
* out: length of data_out */
478
__u32 retval; /* out: return code of the BPF program */
479
__u32 duration; /* out: average per repetition in ns */
480
const void *ctx_in; /* optional */
481
__u32 ctx_size_in;
482
void *ctx_out; /* optional */
483
__u32 ctx_size_out; /* in: max length of ctx_out
484
* out: length of cxt_out */
485
};
486
487
LIBBPF_API int bpf_prog_get_next_id(__u32 start_id, __u32 *next_id);
488
LIBBPF_API int bpf_map_get_next_id(__u32 start_id, __u32 *next_id);
489
LIBBPF_API int bpf_btf_get_next_id(__u32 start_id, __u32 *next_id);
490
LIBBPF_API int bpf_link_get_next_id(__u32 start_id, __u32 *next_id);
491
492
struct bpf_get_fd_by_id_opts {
493
size_t sz; /* size of this struct for forward/backward compatibility */
494
__u32 open_flags; /* permissions requested for the operation on fd */
495
__u32 token_fd;
496
size_t :0;
497
};
498
#define bpf_get_fd_by_id_opts__last_field token_fd
499
500
LIBBPF_API int bpf_prog_get_fd_by_id(__u32 id);
501
LIBBPF_API int bpf_prog_get_fd_by_id_opts(__u32 id,
502
const struct bpf_get_fd_by_id_opts *opts);
503
LIBBPF_API int bpf_map_get_fd_by_id(__u32 id);
504
LIBBPF_API int bpf_map_get_fd_by_id_opts(__u32 id,
505
const struct bpf_get_fd_by_id_opts *opts);
506
LIBBPF_API int bpf_btf_get_fd_by_id(__u32 id);
507
LIBBPF_API int bpf_btf_get_fd_by_id_opts(__u32 id,
508
const struct bpf_get_fd_by_id_opts *opts);
509
LIBBPF_API int bpf_link_get_fd_by_id(__u32 id);
510
LIBBPF_API int bpf_link_get_fd_by_id_opts(__u32 id,
511
const struct bpf_get_fd_by_id_opts *opts);
512
LIBBPF_API int bpf_obj_get_info_by_fd(int bpf_fd, void *info, __u32 *info_len);
513
514
/**
515
* @brief **bpf_prog_get_info_by_fd()** obtains information about the BPF
516
* program corresponding to *prog_fd*.
517
*
518
* Populates up to *info_len* bytes of *info* and updates *info_len* with the
519
* actual number of bytes written to *info*. Note that *info* should be
520
* zero-initialized or initialized as expected by the requested *info*
521
* type. Failing to (zero-)initialize *info* under certain circumstances can
522
* result in this helper returning an error.
523
*
524
* @param prog_fd BPF program file descriptor
525
* @param info pointer to **struct bpf_prog_info** that will be populated with
526
* BPF program information
527
* @param info_len pointer to the size of *info*; on success updated with the
528
* number of bytes written to *info*
529
* @return 0, on success; negative error code, otherwise (errno is also set to
530
* the error code)
531
*/
532
LIBBPF_API int bpf_prog_get_info_by_fd(int prog_fd, struct bpf_prog_info *info, __u32 *info_len);
533
534
/**
535
* @brief **bpf_map_get_info_by_fd()** obtains information about the BPF
536
* map corresponding to *map_fd*.
537
*
538
* Populates up to *info_len* bytes of *info* and updates *info_len* with the
539
* actual number of bytes written to *info*. Note that *info* should be
540
* zero-initialized or initialized as expected by the requested *info*
541
* type. Failing to (zero-)initialize *info* under certain circumstances can
542
* result in this helper returning an error.
543
*
544
* @param map_fd BPF map file descriptor
545
* @param info pointer to **struct bpf_map_info** that will be populated with
546
* BPF map information
547
* @param info_len pointer to the size of *info*; on success updated with the
548
* number of bytes written to *info*
549
* @return 0, on success; negative error code, otherwise (errno is also set to
550
* the error code)
551
*/
552
LIBBPF_API int bpf_map_get_info_by_fd(int map_fd, struct bpf_map_info *info, __u32 *info_len);
553
554
/**
555
* @brief **bpf_btf_get_info_by_fd()** obtains information about the
556
* BTF object corresponding to *btf_fd*.
557
*
558
* Populates up to *info_len* bytes of *info* and updates *info_len* with the
559
* actual number of bytes written to *info*. Note that *info* should be
560
* zero-initialized or initialized as expected by the requested *info*
561
* type. Failing to (zero-)initialize *info* under certain circumstances can
562
* result in this helper returning an error.
563
*
564
* @param btf_fd BTF object file descriptor
565
* @param info pointer to **struct bpf_btf_info** that will be populated with
566
* BTF object information
567
* @param info_len pointer to the size of *info*; on success updated with the
568
* number of bytes written to *info*
569
* @return 0, on success; negative error code, otherwise (errno is also set to
570
* the error code)
571
*/
572
LIBBPF_API int bpf_btf_get_info_by_fd(int btf_fd, struct bpf_btf_info *info, __u32 *info_len);
573
574
/**
575
* @brief **bpf_btf_get_info_by_fd()** obtains information about the BPF
576
* link corresponding to *link_fd*.
577
*
578
* Populates up to *info_len* bytes of *info* and updates *info_len* with the
579
* actual number of bytes written to *info*. Note that *info* should be
580
* zero-initialized or initialized as expected by the requested *info*
581
* type. Failing to (zero-)initialize *info* under certain circumstances can
582
* result in this helper returning an error.
583
*
584
* @param link_fd BPF link file descriptor
585
* @param info pointer to **struct bpf_link_info** that will be populated with
586
* BPF link information
587
* @param info_len pointer to the size of *info*; on success updated with the
588
* number of bytes written to *info*
589
* @return 0, on success; negative error code, otherwise (errno is also set to
590
* the error code)
591
*/
592
LIBBPF_API int bpf_link_get_info_by_fd(int link_fd, struct bpf_link_info *info, __u32 *info_len);
593
594
struct bpf_prog_query_opts {
595
size_t sz; /* size of this struct for forward/backward compatibility */
596
__u32 query_flags;
597
__u32 attach_flags; /* output argument */
598
__u32 *prog_ids;
599
union {
600
/* input+output argument */
601
__u32 prog_cnt;
602
__u32 count;
603
};
604
__u32 *prog_attach_flags;
605
__u32 *link_ids;
606
__u32 *link_attach_flags;
607
__u64 revision;
608
size_t :0;
609
};
610
#define bpf_prog_query_opts__last_field revision
611
612
/**
613
* @brief **bpf_prog_query_opts()** queries the BPF programs and BPF links
614
* which are attached to *target* which can represent a file descriptor or
615
* netdevice ifindex.
616
*
617
* @param target query location file descriptor or ifindex
618
* @param type attach type for the BPF program
619
* @param opts options for configuring the query
620
* @return 0, on success; negative error code, otherwise (errno is also set to
621
* the error code)
622
*/
623
LIBBPF_API int bpf_prog_query_opts(int target, enum bpf_attach_type type,
624
struct bpf_prog_query_opts *opts);
625
LIBBPF_API int bpf_prog_query(int target_fd, enum bpf_attach_type type,
626
__u32 query_flags, __u32 *attach_flags,
627
__u32 *prog_ids, __u32 *prog_cnt);
628
629
struct bpf_raw_tp_opts {
630
size_t sz; /* size of this struct for forward/backward compatibility */
631
const char *tp_name;
632
__u64 cookie;
633
size_t :0;
634
};
635
#define bpf_raw_tp_opts__last_field cookie
636
637
LIBBPF_API int bpf_raw_tracepoint_open_opts(int prog_fd, struct bpf_raw_tp_opts *opts);
638
LIBBPF_API int bpf_raw_tracepoint_open(const char *name, int prog_fd);
639
LIBBPF_API int bpf_task_fd_query(int pid, int fd, __u32 flags, char *buf,
640
__u32 *buf_len, __u32 *prog_id, __u32 *fd_type,
641
__u64 *probe_offset, __u64 *probe_addr);
642
643
#ifdef __cplusplus
644
/* forward-declaring enums in C++ isn't compatible with pure C enums, so
645
* instead define bpf_enable_stats() as accepting int as an input
646
*/
647
LIBBPF_API int bpf_enable_stats(int type);
648
#else
649
enum bpf_stats_type; /* defined in up-to-date linux/bpf.h */
650
LIBBPF_API int bpf_enable_stats(enum bpf_stats_type type);
651
#endif
652
653
struct bpf_prog_bind_opts {
654
size_t sz; /* size of this struct for forward/backward compatibility */
655
__u32 flags;
656
};
657
#define bpf_prog_bind_opts__last_field flags
658
659
LIBBPF_API int bpf_prog_bind_map(int prog_fd, int map_fd,
660
const struct bpf_prog_bind_opts *opts);
661
662
struct bpf_test_run_opts {
663
size_t sz; /* size of this struct for forward/backward compatibility */
664
const void *data_in; /* optional */
665
void *data_out; /* optional */
666
__u32 data_size_in;
667
__u32 data_size_out; /* in: max length of data_out
668
* out: length of data_out
669
*/
670
const void *ctx_in; /* optional */
671
void *ctx_out; /* optional */
672
__u32 ctx_size_in;
673
__u32 ctx_size_out; /* in: max length of ctx_out
674
* out: length of cxt_out
675
*/
676
__u32 retval; /* out: return code of the BPF program */
677
int repeat;
678
__u32 duration; /* out: average per repetition in ns */
679
__u32 flags;
680
__u32 cpu;
681
__u32 batch_size;
682
};
683
#define bpf_test_run_opts__last_field batch_size
684
685
LIBBPF_API int bpf_prog_test_run_opts(int prog_fd,
686
struct bpf_test_run_opts *opts);
687
688
struct bpf_token_create_opts {
689
size_t sz; /* size of this struct for forward/backward compatibility */
690
__u32 flags;
691
size_t :0;
692
};
693
#define bpf_token_create_opts__last_field flags
694
695
/**
696
* @brief **bpf_token_create()** creates a new instance of BPF token derived
697
* from specified BPF FS mount point.
698
*
699
* BPF token created with this API can be passed to bpf() syscall for
700
* commands like BPF_PROG_LOAD, BPF_MAP_CREATE, etc.
701
*
702
* @param bpffs_fd FD for BPF FS instance from which to derive a BPF token
703
* instance.
704
* @param opts optional BPF token creation options, can be NULL
705
*
706
* @return BPF token FD > 0, on success; negative error code, otherwise (errno
707
* is also set to the error code)
708
*/
709
LIBBPF_API int bpf_token_create(int bpffs_fd,
710
struct bpf_token_create_opts *opts);
711
712
struct bpf_prog_stream_read_opts {
713
size_t sz;
714
size_t :0;
715
};
716
#define bpf_prog_stream_read_opts__last_field sz
717
/**
718
* @brief **bpf_prog_stream_read** reads data from the BPF stream of a given BPF
719
* program.
720
*
721
* @param prog_fd FD for the BPF program whose BPF stream is to be read.
722
* @param stream_id ID of the BPF stream to be read.
723
* @param buf Buffer to read data into from the BPF stream.
724
* @param buf_len Maximum number of bytes to read from the BPF stream.
725
* @param opts optional options, can be NULL
726
*
727
* @return The number of bytes read, on success; negative error code, otherwise
728
* (errno is also set to the error code)
729
*/
730
LIBBPF_API int bpf_prog_stream_read(int prog_fd, __u32 stream_id, void *buf, __u32 buf_len,
731
struct bpf_prog_stream_read_opts *opts);
732
733
#ifdef __cplusplus
734
} /* extern "C" */
735
#endif
736
737
#endif /* __LIBBPF_BPF_H */
738
739