~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/samples/bpf/spintest_user.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /samples/bpf/spintest_user.c (Architecture m68k) and /samples/bpf/spintest_user.c (Architecture sparc)


  1 // SPDX-License-Identifier: GPL-2.0                 1 // SPDX-License-Identifier: GPL-2.0
  2 #include <stdio.h>                                  2 #include <stdio.h>
  3 #include <unistd.h>                                 3 #include <unistd.h>
  4 #include <string.h>                                 4 #include <string.h>
  5 #include <assert.h>                                 5 #include <assert.h>
  6 #include <bpf/libbpf.h>                             6 #include <bpf/libbpf.h>
  7 #include <bpf/bpf.h>                                7 #include <bpf/bpf.h>
  8 #include "trace_helpers.h"                          8 #include "trace_helpers.h"
  9                                                     9 
 10 int main(int ac, char **argv)                      10 int main(int ac, char **argv)
 11 {                                                  11 {
 12         struct bpf_object *obj = NULL;             12         struct bpf_object *obj = NULL;
 13         struct bpf_link *links[20];                13         struct bpf_link *links[20];
 14         long key, next_key, value;                 14         long key, next_key, value;
 15         struct bpf_program *prog;                  15         struct bpf_program *prog;
 16         int map_fd, i, j = 0;                      16         int map_fd, i, j = 0;
 17         char filename[256];                        17         char filename[256];
 18         struct ksym *sym;                          18         struct ksym *sym;
 19                                                    19 
 20         if (load_kallsyms()) {                     20         if (load_kallsyms()) {
 21                 printf("failed to process /pro     21                 printf("failed to process /proc/kallsyms\n");
 22                 return 2;                          22                 return 2;
 23         }                                          23         }
 24                                                    24 
 25         snprintf(filename, sizeof(filename), "     25         snprintf(filename, sizeof(filename), "%s.bpf.o", argv[0]);
 26         obj = bpf_object__open_file(filename,      26         obj = bpf_object__open_file(filename, NULL);
 27         if (libbpf_get_error(obj)) {               27         if (libbpf_get_error(obj)) {
 28                 fprintf(stderr, "ERROR: openin     28                 fprintf(stderr, "ERROR: opening BPF object file failed\n");
 29                 obj = NULL;                        29                 obj = NULL;
 30                 goto cleanup;                      30                 goto cleanup;
 31         }                                          31         }
 32                                                    32 
 33         /* load BPF program */                     33         /* load BPF program */
 34         if (bpf_object__load(obj)) {               34         if (bpf_object__load(obj)) {
 35                 fprintf(stderr, "ERROR: loadin     35                 fprintf(stderr, "ERROR: loading BPF object file failed\n");
 36                 goto cleanup;                      36                 goto cleanup;
 37         }                                          37         }
 38                                                    38 
 39         map_fd = bpf_object__find_map_fd_by_na     39         map_fd = bpf_object__find_map_fd_by_name(obj, "my_map");
 40         if (map_fd < 0) {                          40         if (map_fd < 0) {
 41                 fprintf(stderr, "ERROR: findin     41                 fprintf(stderr, "ERROR: finding a map in obj file failed\n");
 42                 goto cleanup;                      42                 goto cleanup;
 43         }                                          43         }
 44                                                    44 
 45         bpf_object__for_each_program(prog, obj     45         bpf_object__for_each_program(prog, obj) {
 46                 links[j] = bpf_program__attach     46                 links[j] = bpf_program__attach(prog);
 47                 if (libbpf_get_error(links[j])     47                 if (libbpf_get_error(links[j])) {
 48                         fprintf(stderr, "bpf_p     48                         fprintf(stderr, "bpf_program__attach failed\n");
 49                         links[j] = NULL;           49                         links[j] = NULL;
 50                         goto cleanup;              50                         goto cleanup;
 51                 }                                  51                 }
 52                 j++;                               52                 j++;
 53         }                                          53         }
 54                                                    54 
 55         for (i = 0; i < 5; i++) {                  55         for (i = 0; i < 5; i++) {
 56                 key = 0;                           56                 key = 0;
 57                 printf("kprobing funcs:");         57                 printf("kprobing funcs:");
 58                 while (bpf_map_get_next_key(ma     58                 while (bpf_map_get_next_key(map_fd, &key, &next_key) == 0) {
 59                         bpf_map_lookup_elem(ma     59                         bpf_map_lookup_elem(map_fd, &next_key, &value);
 60                         assert(next_key == val     60                         assert(next_key == value);
 61                         sym = ksym_search(valu     61                         sym = ksym_search(value);
 62                         key = next_key;            62                         key = next_key;
 63                         if (!sym) {                63                         if (!sym) {
 64                                 printf("ksym n     64                                 printf("ksym not found. Is kallsyms loaded?\n");
 65                                 continue;          65                                 continue;
 66                         }                          66                         }
 67                                                    67 
 68                         printf(" %s", sym->nam     68                         printf(" %s", sym->name);
 69                 }                                  69                 }
 70                 if (key)                           70                 if (key)
 71                         printf("\n");              71                         printf("\n");
 72                 key = 0;                           72                 key = 0;
 73                 while (bpf_map_get_next_key(ma     73                 while (bpf_map_get_next_key(map_fd, &key, &next_key) == 0)
 74                         bpf_map_delete_elem(ma     74                         bpf_map_delete_elem(map_fd, &next_key);
 75                 sleep(1);                          75                 sleep(1);
 76         }                                          76         }
 77                                                    77 
 78 cleanup:                                           78 cleanup:
 79         for (j--; j >= 0; j--)                     79         for (j--; j >= 0; j--)
 80                 bpf_link__destroy(links[j]);       80                 bpf_link__destroy(links[j]);
 81                                                    81 
 82         bpf_object__close(obj);                    82         bpf_object__close(obj);
 83         return 0;                                  83         return 0;
 84 }                                                  84 }
 85                                                    85 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php