blob: 317ccb78cf400fe92beff1c115bf7b330091e877 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_SECCOMP_H
2#define _LINUX_SECCOMP_H
3
Will Drewrye2cfabdf2012-04-12 16:47:57 -05004#include <linux/compiler.h>
5#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Will Drewrye2cfabdf2012-04-12 16:47:57 -05007
8/* Valid values for seccomp.mode and prctl(PR_SET_SECCOMP, <mode>) */
9#define SECCOMP_MODE_DISABLED 0 /* seccomp is not in use. */
10#define SECCOMP_MODE_STRICT 1 /* uses hard-coded filter. */
11#define SECCOMP_MODE_FILTER 2 /* uses user-supplied filter. */
12
13/*
14 * All BPF programs must return a 32-bit value.
Will Drewryacf3b2c2012-04-12 16:47:59 -050015 * The bottom 16-bits are for optional return data.
Will Drewrye2cfabdf2012-04-12 16:47:57 -050016 * The upper 16-bits are ordered from least permissive values to most.
17 *
18 * The ordering ensures that a min_t() over composed return values always
19 * selects the least permissive choice.
20 */
21#define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */
Will Drewrybb6ea432012-04-12 16:48:01 -050022#define SECCOMP_RET_TRAP 0x00030000U /* disallow and force a SIGSYS */
Will Drewryacf3b2c2012-04-12 16:47:59 -050023#define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */
Will Drewrye2cfabdf2012-04-12 16:47:57 -050024#define SECCOMP_RET_ALLOW 0x7fff0000U /* allow */
25
26/* Masks for the return value sections. */
27#define SECCOMP_RET_ACTION 0x7fff0000U
28#define SECCOMP_RET_DATA 0x0000ffffU
29
30/**
31 * struct seccomp_data - the format the BPF program executes over.
32 * @nr: the system call number
33 * @arch: indicates system call convention as an AUDIT_ARCH_* value
34 * as defined in <linux/audit.h>.
35 * @instruction_pointer: at the time of the system call.
36 * @args: up to 6 system call arguments always stored as 64-bit values
37 * regardless of the architecture.
38 */
39struct seccomp_data {
40 int nr;
41 __u32 arch;
42 __u64 instruction_pointer;
43 __u64 args[6];
44};
45
46#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#ifdef CONFIG_SECCOMP
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/thread_info.h>
50#include <asm/seccomp.h>
51
Will Drewrye2cfabdf2012-04-12 16:47:57 -050052struct seccomp_filter;
53/**
54 * struct seccomp - the state of a seccomp'ed process
55 *
56 * @mode: indicates one of the valid values above for controlled
57 * system calls available to a process.
58 * @filter: The metadata and ruleset for determining what system calls
59 * are allowed for a task.
60 *
61 * @filter must only be accessed from the context of current as there
62 * is no locking.
63 */
Will Drewry932eceb2012-04-12 16:47:54 -050064struct seccomp {
65 int mode;
Will Drewrye2cfabdf2012-04-12 16:47:57 -050066 struct seccomp_filter *filter;
Will Drewry932eceb2012-04-12 16:47:54 -050067};
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Will Drewryacf3b2c2012-04-12 16:47:59 -050069extern int __secure_computing(int);
70static inline int secure_computing(int this_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 if (unlikely(test_thread_flag(TIF_SECCOMP)))
Will Drewryacf3b2c2012-04-12 16:47:59 -050073 return __secure_computing(this_syscall);
74 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -070077extern long prctl_get_seccomp(void);
Will Drewrye2cfabdf2012-04-12 16:47:57 -050078extern long prctl_set_seccomp(unsigned long, char __user *);
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -070079
Will Drewry932eceb2012-04-12 16:47:54 -050080static inline int seccomp_mode(struct seccomp *s)
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040081{
82 return s->mode;
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#else /* CONFIG_SECCOMP */
86
Ralf Baechle42a17ad2009-04-18 11:30:56 +020087#include <linux/errno.h>
88
Will Drewry932eceb2012-04-12 16:47:54 -050089struct seccomp { };
Will Drewrye2cfabdf2012-04-12 16:47:57 -050090struct seccomp_filter { };
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Will Drewrye2cfabdf2012-04-12 16:47:57 -050092#define secure_computing(x) 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -070094static inline long prctl_get_seccomp(void)
95{
96 return -EINVAL;
97}
98
Will Drewrye2cfabdf2012-04-12 16:47:57 -050099static inline long prctl_set_seccomp(unsigned long arg2, char __user *arg3)
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700100{
101 return -EINVAL;
102}
103
Will Drewry932eceb2012-04-12 16:47:54 -0500104static inline int seccomp_mode(struct seccomp *s)
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400105{
106 return 0;
107}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#endif /* CONFIG_SECCOMP */
109
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500110#ifdef CONFIG_SECCOMP_FILTER
111extern void put_seccomp_filter(struct task_struct *tsk);
112extern void get_seccomp_filter(struct task_struct *tsk);
113extern u32 seccomp_bpf_load(int off);
114#else /* CONFIG_SECCOMP_FILTER */
115static inline void put_seccomp_filter(struct task_struct *tsk)
116{
117 return;
118}
119static inline void get_seccomp_filter(struct task_struct *tsk)
120{
121 return;
122}
123#endif /* CONFIG_SECCOMP_FILTER */
124#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif /* _LINUX_SECCOMP_H */