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

TOMOYO Linux Cross Reference
Linux/samples/seccomp/bpf-direct.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/seccomp/bpf-direct.c (Version linux-6.12-rc7) and /samples/seccomp/bpf-direct.c (Version policy-sample)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /*                                                
  3  * Seccomp filter example for x86 (32-bit and     
  4  *                                                
  5  * Copyright (c) 2012 The Chromium OS Authors     
  6  * Author: Will Drewry <wad@chromium.org>         
  7  *                                                
  8  * The code may be used by anyone for any purp    
  9  * and can serve as a starting point for devel    
 10  * applications using prctl(PR_SET_SECCOMP, 2,    
 11  */                                               
 12 #if defined(__i386__) || defined(__x86_64__)      
 13 #define SUPPORTED_ARCH 1                          
 14 #endif                                            
 15                                                   
 16 #if defined(SUPPORTED_ARCH)                       
 17 #define __USE_GNU 1                               
 18 #define _GNU_SOURCE 1                             
 19                                                   
 20 #include <linux/types.h>                          
 21 #include <linux/filter.h>                         
 22 #include <linux/seccomp.h>                        
 23 #include <linux/unistd.h>                         
 24 #include <signal.h>                               
 25 #include <stdio.h>                                
 26 #include <stddef.h>                               
 27 #include <string.h>                               
 28 #include <sys/prctl.h>                            
 29 #include <unistd.h>                               
 30                                                   
 31 #define syscall_arg(_n) (offsetof(struct secco    
 32 #define syscall_nr (offsetof(struct seccomp_da    
 33                                                   
 34 #if defined(__i386__)                             
 35 #define REG_RESULT      REG_EAX                   
 36 #define REG_SYSCALL     REG_EAX                   
 37 #define REG_ARG0        REG_EBX                   
 38 #define REG_ARG1        REG_ECX                   
 39 #define REG_ARG2        REG_EDX                   
 40 #define REG_ARG3        REG_ESI                   
 41 #define REG_ARG4        REG_EDI                   
 42 #define REG_ARG5        REG_EBP                   
 43 #elif defined(__x86_64__)                         
 44 #define REG_RESULT      REG_RAX                   
 45 #define REG_SYSCALL     REG_RAX                   
 46 #define REG_ARG0        REG_RDI                   
 47 #define REG_ARG1        REG_RSI                   
 48 #define REG_ARG2        REG_RDX                   
 49 #define REG_ARG3        REG_R10                   
 50 #define REG_ARG4        REG_R8                    
 51 #define REG_ARG5        REG_R9                    
 52 #endif                                            
 53                                                   
 54 #ifndef PR_SET_NO_NEW_PRIVS                       
 55 #define PR_SET_NO_NEW_PRIVS 38                    
 56 #endif                                            
 57                                                   
 58 #ifndef SYS_SECCOMP                               
 59 #define SYS_SECCOMP 1                             
 60 #endif                                            
 61                                                   
 62 static void emulator(int nr, siginfo_t *info,     
 63 {                                                 
 64         ucontext_t *ctx = (ucontext_t *)(void_    
 65         int syscall;                              
 66         char *buf;                                
 67         ssize_t bytes;                            
 68         size_t len;                               
 69         if (info->si_code != SYS_SECCOMP)         
 70                 return;                           
 71         if (!ctx)                                 
 72                 return;                           
 73         syscall = ctx->uc_mcontext.gregs[REG_S    
 74         buf = (char *) ctx->uc_mcontext.gregs[    
 75         len = (size_t) ctx->uc_mcontext.gregs[    
 76                                                   
 77         if (syscall != __NR_write)                
 78                 return;                           
 79         if (ctx->uc_mcontext.gregs[REG_ARG0] !    
 80                 return;                           
 81         /* Redirect stderr messages to stdout.    
 82         ctx->uc_mcontext.gregs[REG_RESULT] = -    
 83         if (write(STDOUT_FILENO, "[ERR] ", 6)     
 84                 bytes = write(STDOUT_FILENO, b    
 85                 ctx->uc_mcontext.gregs[REG_RES    
 86         }                                         
 87         return;                                   
 88 }                                                 
 89                                                   
 90 static int install_emulator(void)                 
 91 {                                                 
 92         struct sigaction act;                     
 93         sigset_t mask;                            
 94         memset(&act, 0, sizeof(act));             
 95         sigemptyset(&mask);                       
 96         sigaddset(&mask, SIGSYS);                 
 97                                                   
 98         act.sa_sigaction = &emulator;             
 99         act.sa_flags = SA_SIGINFO;                
100         if (sigaction(SIGSYS, &act, NULL) < 0)    
101                 perror("sigaction");              
102                 return -1;                        
103         }                                         
104         if (sigprocmask(SIG_UNBLOCK, &mask, NU    
105                 perror("sigprocmask");            
106                 return -1;                        
107         }                                         
108         return 0;                                 
109 }                                                 
110                                                   
111 static int install_filter(void)                   
112 {                                                 
113         struct sock_filter filter[] = {           
114                 /* Grab the system call number    
115                 BPF_STMT(BPF_LD+BPF_W+BPF_ABS,    
116                 /* Jump table for the allowed     
117                 BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K    
118                 BPF_STMT(BPF_RET+BPF_K, SECCOM    
119 #ifdef __NR_sigreturn                             
120                 BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K    
121                 BPF_STMT(BPF_RET+BPF_K, SECCOM    
122 #endif                                            
123                 BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K    
124                 BPF_STMT(BPF_RET+BPF_K, SECCOM    
125                 BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K    
126                 BPF_STMT(BPF_RET+BPF_K, SECCOM    
127                 BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K    
128                 BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K    
129                                                   
130                 /* Check that read is only usi    
131                 BPF_STMT(BPF_LD+BPF_W+BPF_ABS,    
132                 BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K    
133                 BPF_STMT(BPF_RET+BPF_K, SECCOM    
134                                                   
135                 /* Check that write is only us    
136                 BPF_STMT(BPF_LD+BPF_W+BPF_ABS,    
137                 BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K    
138                 /* Trap attempts to write to s    
139                 BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K    
140                                                   
141                 BPF_STMT(BPF_RET+BPF_K, SECCOM    
142                 BPF_STMT(BPF_RET+BPF_K, SECCOM    
143                 BPF_STMT(BPF_RET+BPF_K, SECCOM    
144         };                                        
145         struct sock_fprog prog = {                
146                 .len = (unsigned short)(sizeof    
147                 .filter = filter,                 
148         };                                        
149                                                   
150         if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0    
151                 perror("prctl(NO_NEW_PRIVS)");    
152                 return 1;                         
153         }                                         
154                                                   
155                                                   
156         if (prctl(PR_SET_SECCOMP, SECCOMP_MODE    
157                 perror("prctl");                  
158                 return 1;                         
159         }                                         
160         return 0;                                 
161 }                                                 
162                                                   
163 #define payload(_c) (_c), sizeof((_c))            
164 int main(int argc, char **argv)                   
165 {                                                 
166         char buf[4096];                           
167         ssize_t bytes = 0;                        
168         if (install_emulator())                   
169                 return 1;                         
170         if (install_filter())                     
171                 return 1;                         
172         syscall(__NR_write, STDOUT_FILENO,        
173                 payload("OHAI! WHAT IS YOUR NA    
174         bytes = syscall(__NR_read, STDIN_FILEN    
175         syscall(__NR_write, STDOUT_FILENO, pay    
176         syscall(__NR_write, STDOUT_FILENO, buf    
177         syscall(__NR_write, STDERR_FILENO,        
178                 payload("Error message going t    
179         return 0;                                 
180 }                                                 
181 #else   /* SUPPORTED_ARCH */                      
182 /*                                                
183  * This sample is x86-only.  Since kernel samp    
184  * host toolchain, a non-x86 host will result     
185  * below.                                         
186  */                                               
187 int main(void)                                    
188 {                                                 
189         return 1;                                 
190 }                                                 
191 #endif  /* SUPPORTED_ARCH */                      
192                                                   

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