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

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

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* Copyright (c) 2015 PLUMgrid, http://plumgrid.com
  2  *
  3  * This program is free software; you can redistribute it and/or
  4  * modify it under the terms of version 2 of the GNU General Public
  5  * License as published by the Free Software Foundation.
  6  */
  7 #include "vmlinux.h"
  8 #include "syscall_nrs.h"
  9 #include <linux/version.h>
 10 #include <uapi/linux/unistd.h>
 11 #include <bpf/bpf_helpers.h>
 12 #include <bpf/bpf_tracing.h>
 13 #include <bpf/bpf_core_read.h>
 14 
 15 #define __stringify(x) #x
 16 #define PROG(F) SEC("kprobe/"__stringify(F)) int bpf_func_##F
 17 
 18 struct {
 19         __uint(type, BPF_MAP_TYPE_PROG_ARRAY);
 20         __uint(key_size, sizeof(u32));
 21         __uint(value_size, sizeof(u32));
 22 #ifdef __mips__
 23         __uint(max_entries, 6000); /* MIPS n64 syscalls start at 5000 */
 24 #else
 25         __uint(max_entries, 1024);
 26 #endif
 27 } progs SEC(".maps");
 28 
 29 SEC("kprobe/__seccomp_filter")
 30 int bpf_prog1(struct pt_regs *ctx)
 31 {
 32         int sc_nr = (int)PT_REGS_PARM1(ctx);
 33 
 34         /* dispatch into next BPF program depending on syscall number */
 35         bpf_tail_call(ctx, &progs, sc_nr);
 36 
 37         /* fall through -> unknown syscall */
 38         if (sc_nr >= __NR_getuid && sc_nr <= __NR_getsid) {
 39                 char fmt[] = "syscall=%d (one of get/set uid/pid/gid)\n";
 40                 bpf_trace_printk(fmt, sizeof(fmt), sc_nr);
 41         }
 42         return 0;
 43 }
 44 
 45 /* we jump here when syscall number == __NR_write */
 46 PROG(SYS__NR_write)(struct pt_regs *ctx)
 47 {
 48         struct seccomp_data sd;
 49 
 50         bpf_core_read(&sd, sizeof(sd), (void *)PT_REGS_PARM2(ctx));
 51         if (sd.args[2] == 512) {
 52                 char fmt[] = "write(fd=%d, buf=%p, size=%d)\n";
 53                 bpf_trace_printk(fmt, sizeof(fmt),
 54                                  sd.args[0], sd.args[1], sd.args[2]);
 55         }
 56         return 0;
 57 }
 58 
 59 PROG(SYS__NR_read)(struct pt_regs *ctx)
 60 {
 61         struct seccomp_data sd;
 62 
 63         bpf_core_read(&sd, sizeof(sd), (void *)PT_REGS_PARM2(ctx));
 64         if (sd.args[2] > 128 && sd.args[2] <= 1024) {
 65                 char fmt[] = "read(fd=%d, buf=%p, size=%d)\n";
 66                 bpf_trace_printk(fmt, sizeof(fmt),
 67                                  sd.args[0], sd.args[1], sd.args[2]);
 68         }
 69         return 0;
 70 }
 71 
 72 #ifdef __NR_mmap2
 73 PROG(SYS__NR_mmap2)(struct pt_regs *ctx)
 74 {
 75         char fmt[] = "mmap2\n";
 76 
 77         bpf_trace_printk(fmt, sizeof(fmt));
 78         return 0;
 79 }
 80 #endif
 81 
 82 #ifdef __NR_mmap
 83 PROG(SYS__NR_mmap)(struct pt_regs *ctx)
 84 {
 85         char fmt[] = "mmap\n";
 86 
 87         bpf_trace_printk(fmt, sizeof(fmt));
 88         return 0;
 89 }
 90 #endif
 91 
 92 char _license[] SEC("license") = "GPL";
 93 u32 _version SEC("version") = LINUX_VERSION_CODE;
 94 

~ [ 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