aboutsummaryrefslogtreecommitdiff
path: root/kernel/seccomp.c
AgeCommit message (Expand)AuthorFilesLines
7 hoursMerge tag 'sysctl-6.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-1/+0
9 daysseccomp: Constify sysctl subhelpersGravatar Kees Cook 1-2/+2
2024-04-24seccomp: Remove the now superfluous sentinel elements from ctl_table arrayGravatar Joel Granados 1-1/+0
2023-12-12file: remove __receive_fd()Gravatar Christian Brauner 1-1/+1
2023-08-17seccomp: Add missing kerndoc notationsGravatar Kees Cook 1-4/+10
2023-07-17seccomp: add the synchronous mode for seccomp_unotifyGravatar Andrei Vagin 1-2/+29
2023-07-17seccomp: don't use semaphore and wait_queue togetherGravatar Andrei Vagin 1-5/+36
2023-04-13seccomp: simplify sysctls with register_sysctl_init()Gravatar Luis Chamberlain 1-14/+1
2023-01-13seccomp: fix kernel-doc function name warningGravatar Randy Dunlap 1-1/+1
2022-05-03seccomp: Add wait_killable semantic to seccomp user notifierGravatar Sargun Dhillon 1-2/+40
2022-04-29seccomp: Use FIFO semantics to order notificationsGravatar Sargun Dhillon 1-1/+1
2022-03-28Merge tag 'ptrace-cleanups-for-v5.18' of git://git.kernel.org/pub/scm/linux/k...Gravatar Linus Torvalds 1-1/+0
2022-03-10tracehook: Remove tracehook.hGravatar Eric W. Biederman 1-1/+0
2022-02-10seccomp: Invalidate seccomp mode to catch death failuresGravatar Kees Cook 1-0/+10
2021-09-01Merge branch 'exit-cleanups-for-v5.15' of git://git.kernel.org/pub/scm/linux/...Gravatar Linus Torvalds 1-35/+7
2021-08-26signal/seccomp: Dump core when there is only one live threadGravatar Eric W. Biederman 1-1/+1
2021-08-26signal/seccomp: Refactor seccomp signal and coredump generationGravatar Eric W. Biederman 1-34/+6
2021-08-11seccomp: Fix setting loaded filter count during TSYNCGravatar Hsuan-Chi Kuo 1-1/+1
2021-06-28seccomp: Support atomic "addfd + send reply"Gravatar Rodrigo Campos 1-6/+45
2021-05-29seccomp: Refactor notification handler to prepare for new semanticsGravatar Sargun Dhillon 1-14/+16
2021-05-03Merge branch 'work.file' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-5/+12
2021-04-16fs: split receive_fd_replace from __receive_fdGravatar Christoph Hellwig 1-5/+12
2021-03-30seccomp: Fix "cacheable" typo in commentsGravatar Cui GaoSheng 1-1/+1
2021-02-10seccomp: Improve performace by optimizing rmb()Gravatar wanghongzhe 1-1/+1
2021-01-11seccomp: Add missing return in non-void functionGravatar Paul Cercueil 1-0/+2
2020-12-16Merge tag 'seccomp-v5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-3/+293
2020-12-14Merge tag 'core-entry-2020-12-14' of git://git.kernel.org/pub/scm/linux/kerne...Gravatar Linus Torvalds 1-3/+3
2020-11-20Merge branch 'for-linus/seccomp' into for-next/seccompGravatar Kees Cook 1-3/+2
2020-11-20seccomp: Remove bogus __user annotationsGravatar Jann Horn 1-2/+2
2020-11-20seccomp/cache: Report cache data through /proc/pid/seccomp_cacheGravatar YiFei Zhu 1-0/+59
2020-11-20seccomp/cache: Add "emulator" to check if filter is constant allowGravatar YiFei Zhu 1-1/+155
2020-11-20seccomp/cache: Lookup syscall allowlist bitmap for fast pathGravatar YiFei Zhu 1-0/+77
2020-11-17seccomp: Set PF_SUPERPRIV when checking capabilityGravatar Mickaël Salaün 1-3/+2
2020-11-16seccomp: Migrate to use SYSCALL_WORK flagGravatar Gabriel Krisman Bertazi 1-3/+3
2020-10-08seccomp: Make duplicate listener detection non-racyGravatar Jann Horn 1-7/+31
2020-09-08seccomp: Use current_pt_regs() instead of task_pt_regs(current)Gravatar Denis Efremov 1-7/+11
2020-09-08seccomp: kill process instead of thread for unknown actionsGravatar Rich Felker 1-4/+4
2020-09-08seccomp: don't leave dangling ->notif if file allocation failsGravatar Tycho Andersen 1-3/+8
2020-09-08seccomp: don't leak memory when filter install racesGravatar Tycho Andersen 1-3/+10
2020-07-14seccomp: Introduce addfd ioctl to seccomp user notifierGravatar Sargun Dhillon 1-2/+173
2020-07-10seccomp: Use -1 marker for end of mode 1 syscall listGravatar Kees Cook 1-5/+5
2020-07-10seccomp: Fix ioctl number for SECCOMP_IOCTL_NOTIF_ID_VALIDGravatar Kees Cook 1-0/+9
2020-07-10seccomp: Use pr_fmtGravatar Kees Cook 1-1/+2
2020-07-10seccomp: notify about unused filterGravatar Christian Brauner 1-5/+39
2020-07-10seccomp: Lift wait_queue into struct seccomp_filterGravatar Christian Brauner 1-6/+6
2020-07-10seccomp: release filter after task is fully deadGravatar Christian Brauner 1-25/+37
2020-07-10seccomp: rename "usage" to "refs" and documentGravatar Christian Brauner 1-9/+10
2020-07-10seccomp: Add find_notification helperGravatar Sargun Dhillon 1-26/+27
2020-07-10seccomp: Report number of loaded filters in /proc/$pid/statusGravatar Kees Cook 1-0/+3
2020-04-27sysctl: pass kernel pointers to ->proc_handlerGravatar Christoph Hellwig 1-1/+1