xref: /linux/security/Kconfig (revision 2623c4fbe2ad1341ff2d1e12410d0afdae2490ca)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# Security configuration
31da177e4SLinus Torvalds#
41da177e4SLinus Torvalds
51da177e4SLinus Torvaldsmenu "Security options"
61da177e4SLinus Torvalds
78636a1f9SMasahiro Yamadasource "security/keys/Kconfig"
81da177e4SLinus Torvalds
9eaf06b24SDan Rosenbergconfig SECURITY_DMESG_RESTRICT
10eaf06b24SDan Rosenberg	bool "Restrict unprivileged access to the kernel syslog"
11eaf06b24SDan Rosenberg	default n
12eaf06b24SDan Rosenberg	help
13eaf06b24SDan Rosenberg	  This enforces restrictions on unprivileged users reading the kernel
14eaf06b24SDan Rosenberg	  syslog via dmesg(8).
15eaf06b24SDan Rosenberg
16eaf06b24SDan Rosenberg	  If this option is not selected, no restrictions will be enforced
17eaf06b24SDan Rosenberg	  unless the dmesg_restrict sysctl is explicitly set to (1).
18eaf06b24SDan Rosenberg
19eaf06b24SDan Rosenberg	  If you are unsure how to answer this question, answer N.
20eaf06b24SDan Rosenberg
211da177e4SLinus Torvaldsconfig SECURITY
221da177e4SLinus Torvalds	bool "Enable different security models"
232c40579bSAdrian Bunk	depends on SYSFS
242813893fSIulia Manda	depends on MULTIUSER
251da177e4SLinus Torvalds	help
261da177e4SLinus Torvalds	  This allows you to choose different security modules to be
271da177e4SLinus Torvalds	  configured into your kernel.
281da177e4SLinus Torvalds
291da177e4SLinus Torvalds	  If this option is not selected, the default Linux security
301da177e4SLinus Torvalds	  model will be used.
311da177e4SLinus Torvalds
321da177e4SLinus Torvalds	  If you are unsure how to answer this question, answer N.
331da177e4SLinus Torvalds
34dd0859dcSJames Morrisconfig SECURITY_WRITABLE_HOOKS
35dd0859dcSJames Morris	depends on SECURITY
36dd0859dcSJames Morris	bool
37dd0859dcSJames Morris	default n
38dd0859dcSJames Morris
39da31894eSEric Parisconfig SECURITYFS
40da31894eSEric Paris	bool "Enable the securityfs filesystem"
41da31894eSEric Paris	help
42da31894eSEric Paris	  This will build the securityfs filesystem.  It is currently used by
43b102c11eSPetr Vorel	  various security modules (AppArmor, IMA, SafeSetID, TOMOYO, TPM).
44da31894eSEric Paris
45da31894eSEric Paris	  If you are unsure how to answer this question, answer N.
46da31894eSEric Paris
471da177e4SLinus Torvaldsconfig SECURITY_NETWORK
481da177e4SLinus Torvalds	bool "Socket and Networking Security Hooks"
491da177e4SLinus Torvalds	depends on SECURITY
501da177e4SLinus Torvalds	help
511da177e4SLinus Torvalds	  This enables the socket and networking security hooks.
521da177e4SLinus Torvalds	  If enabled, a security module can use these hooks to
531da177e4SLinus Torvalds	  implement socket and networking access controls.
541da177e4SLinus Torvalds	  If you are unsure how to answer this question, answer N.
551da177e4SLinus Torvalds
56385ce0eaSDave Hansenconfig PAGE_TABLE_ISOLATION
57385ce0eaSDave Hansen	bool "Remove the kernel mapping in user mode"
5887faa0d9SThomas Gleixner	default y
5961a6bd83SJoerg Roedel	depends on (X86_64 || X86_PAE) && !UML
60385ce0eaSDave Hansen	help
61385ce0eaSDave Hansen	  This feature reduces the number of hardware side channels by
62385ce0eaSDave Hansen	  ensuring that the majority of kernel addresses are not mapped
63385ce0eaSDave Hansen	  into userspace.
64385ce0eaSDave Hansen
65a237f762SW. Trevor King	  See Documentation/x86/pti.txt for more details.
66385ce0eaSDave Hansen
67d291f1a6SDaniel Jurgensconfig SECURITY_INFINIBAND
68d291f1a6SDaniel Jurgens	bool "Infiniband Security Hooks"
69d291f1a6SDaniel Jurgens	depends on SECURITY && INFINIBAND
70d291f1a6SDaniel Jurgens	help
71d291f1a6SDaniel Jurgens	  This enables the Infiniband security hooks.
72d291f1a6SDaniel Jurgens	  If enabled, a security module can use these hooks to
73d291f1a6SDaniel Jurgens	  implement Infiniband access controls.
74d291f1a6SDaniel Jurgens	  If you are unsure how to answer this question, answer N.
75d291f1a6SDaniel Jurgens
76df71837dSTrent Jaegerconfig SECURITY_NETWORK_XFRM
77df71837dSTrent Jaeger	bool "XFRM (IPSec) Networking Security Hooks"
78df71837dSTrent Jaeger	depends on XFRM && SECURITY_NETWORK
79df71837dSTrent Jaeger	help
80df71837dSTrent Jaeger	  This enables the XFRM (IPSec) networking security hooks.
81df71837dSTrent Jaeger	  If enabled, a security module can use these hooks to
82df71837dSTrent Jaeger	  implement per-packet access controls based on labels
83df71837dSTrent Jaeger	  derived from IPSec policy.  Non-IPSec communications are
84df71837dSTrent Jaeger	  designated as unlabelled, and only sockets authorized
85df71837dSTrent Jaeger	  to communicate unlabelled data can send without using
86df71837dSTrent Jaeger	  IPSec.
87df71837dSTrent Jaeger	  If you are unsure how to answer this question, answer N.
88df71837dSTrent Jaeger
89be6d3e56SKentaro Takedaconfig SECURITY_PATH
90be6d3e56SKentaro Takeda	bool "Security hooks for pathname based access control"
91be6d3e56SKentaro Takeda	depends on SECURITY
92be6d3e56SKentaro Takeda	help
93be6d3e56SKentaro Takeda	  This enables the security hooks for pathname based access control.
94be6d3e56SKentaro Takeda	  If enabled, a security module can use these hooks to
95be6d3e56SKentaro Takeda	  implement pathname based access controls.
96be6d3e56SKentaro Takeda	  If you are unsure how to answer this question, answer N.
97be6d3e56SKentaro Takeda
9831625340SJoseph Cihulaconfig INTEL_TXT
9931625340SJoseph Cihula	bool "Enable Intel(R) Trusted Execution Technology (Intel(R) TXT)"
10069575d38SShane Wang	depends on HAVE_INTEL_TXT
10131625340SJoseph Cihula	help
10231625340SJoseph Cihula	  This option enables support for booting the kernel with the
10331625340SJoseph Cihula	  Trusted Boot (tboot) module. This will utilize
10431625340SJoseph Cihula	  Intel(R) Trusted Execution Technology to perform a measured launch
10531625340SJoseph Cihula	  of the kernel. If the system does not support Intel(R) TXT, this
10631625340SJoseph Cihula	  will have no effect.
10731625340SJoseph Cihula
1083c556e41SArnaldo Carvalho de Melo	  Intel TXT will provide higher assurance of system configuration and
10931625340SJoseph Cihula	  initial state as well as data reset protection.  This is used to
11031625340SJoseph Cihula	  create a robust initial kernel measurement and verification, which
11131625340SJoseph Cihula	  helps to ensure that kernel security mechanisms are functioning
11231625340SJoseph Cihula	  correctly. This level of protection requires a root of trust outside
11331625340SJoseph Cihula	  of the kernel itself.
11431625340SJoseph Cihula
11531625340SJoseph Cihula	  Intel TXT also helps solve real end user concerns about having
11631625340SJoseph Cihula	  confidence that their hardware is running the VMM or kernel that
1173c556e41SArnaldo Carvalho de Melo	  it was configured with, especially since they may be responsible for
11831625340SJoseph Cihula	  providing such assurances to VMs and services running on it.
11931625340SJoseph Cihula
12031625340SJoseph Cihula	  See <http://www.intel.com/technology/security/> for more information
12131625340SJoseph Cihula	  about Intel(R) TXT.
12231625340SJoseph Cihula	  See <http://tboot.sourceforge.net> for more information about tboot.
12331625340SJoseph Cihula	  See Documentation/intel_txt.txt for a description of how to enable
12431625340SJoseph Cihula	  Intel TXT support in a kernel boot.
12531625340SJoseph Cihula
12631625340SJoseph Cihula	  If you are unsure as to whether this is required, answer N.
12731625340SJoseph Cihula
128788084abSEric Parisconfig LSM_MMAP_MIN_ADDR
129024e6cb4SAndreas Schwab	int "Low address space for LSM to protect from user allocation"
130788084abSEric Paris	depends on SECURITY && SECURITY_SELINUX
131530b099dSColin Cross	default 32768 if ARM || (ARM64 && COMPAT)
132a58578e4SDave Jones	default 65536
133788084abSEric Paris	help
134788084abSEric Paris	  This is the portion of low virtual memory which should be protected
135788084abSEric Paris	  from userspace allocation.  Keeping a user from writing to low pages
136788084abSEric Paris	  can help reduce the impact of kernel NULL pointer bugs.
137788084abSEric Paris
138788084abSEric Paris	  For most ia64, ppc64 and x86 users with lots of address space
139788084abSEric Paris	  a value of 65536 is reasonable and should cause no problems.
140788084abSEric Paris	  On arm and other archs it should not be higher than 32768.
141788084abSEric Paris	  Programs which use vm86 functionality or have some need to map
142788084abSEric Paris	  this low address space will need the permission specific to the
143788084abSEric Paris	  systems running LSM.
144788084abSEric Paris
145f5509cc1SKees Cookconfig HAVE_HARDENED_USERCOPY_ALLOCATOR
146f5509cc1SKees Cook	bool
147f5509cc1SKees Cook	help
148f5509cc1SKees Cook	  The heap allocator implements __check_heap_object() for
149f5509cc1SKees Cook	  validating memory ranges against heap object sizes in
150f5509cc1SKees Cook	  support of CONFIG_HARDENED_USERCOPY.
151f5509cc1SKees Cook
152f5509cc1SKees Cookconfig HARDENED_USERCOPY
153f5509cc1SKees Cook	bool "Harden memory copies between kernel and userspace"
1546040e576SLinus Torvalds	depends on HAVE_HARDENED_USERCOPY_ALLOCATOR
15522ec1a2aSKees Cook	imply STRICT_DEVMEM
156f5509cc1SKees Cook	help
157f5509cc1SKees Cook	  This option checks for obviously wrong memory regions when
158f5509cc1SKees Cook	  copying memory to/from the kernel (via copy_to_user() and
159f5509cc1SKees Cook	  copy_from_user() functions) by rejecting memory ranges that
160f5509cc1SKees Cook	  are larger than the specified heap object, span multiple
16199c55fb1SGeert Uytterhoeven	  separately allocated pages, are not on the process stack,
162f5509cc1SKees Cook	  or are part of the kernel text. This kills entire classes
163f5509cc1SKees Cook	  of heap overflow exploits and similar kernel memory exposures.
164f5509cc1SKees Cook
1652d891fbcSKees Cookconfig HARDENED_USERCOPY_FALLBACK
1662d891fbcSKees Cook	bool "Allow usercopy whitelist violations to fallback to object size"
1672d891fbcSKees Cook	depends on HARDENED_USERCOPY
1682d891fbcSKees Cook	default y
1692d891fbcSKees Cook	help
1702d891fbcSKees Cook	  This is a temporary option that allows missing usercopy whitelists
1712d891fbcSKees Cook	  to be discovered via a WARN() to the kernel log, instead of
1722d891fbcSKees Cook	  rejecting the copy, falling back to non-whitelisted hardened
1732d891fbcSKees Cook	  usercopy that checks the slab allocation size instead of the
1742d891fbcSKees Cook	  whitelist size. This option will be removed once it seems like
1752d891fbcSKees Cook	  all missing usercopy whitelists have been identified and fixed.
1762d891fbcSKees Cook	  Booting with "slab_common.usercopy_fallback=Y/N" can change
1772d891fbcSKees Cook	  this setting.
1782d891fbcSKees Cook
1798e1f74eaSKees Cookconfig HARDENED_USERCOPY_PAGESPAN
1808e1f74eaSKees Cook	bool "Refuse to copy allocations that span multiple pages"
1818e1f74eaSKees Cook	depends on HARDENED_USERCOPY
18280a77045SLinus Torvalds	depends on EXPERT
1838e1f74eaSKees Cook	help
1848e1f74eaSKees Cook	  When a multi-page allocation is done without __GFP_COMP,
1858e1f74eaSKees Cook	  hardened usercopy will reject attempts to copy it. There are,
1868e1f74eaSKees Cook	  however, several cases of this in the kernel that have not all
1878e1f74eaSKees Cook	  been removed. This config is intended to be used only while
1888e1f74eaSKees Cook	  trying to find such users.
1898e1f74eaSKees Cook
1906974f0c4SDaniel Micayconfig FORTIFY_SOURCE
1916974f0c4SDaniel Micay	bool "Harden common str/mem functions against buffer overflows"
1926974f0c4SDaniel Micay	depends on ARCH_HAS_FORTIFY_SOURCE
1936974f0c4SDaniel Micay	help
1946974f0c4SDaniel Micay	  Detect overflows of buffers in common string and memory functions
1956974f0c4SDaniel Micay	  where the compiler can determine and validate the buffer sizes.
1966974f0c4SDaniel Micay
19764e90a8aSGreg Kroah-Hartmanconfig STATIC_USERMODEHELPER
19864e90a8aSGreg Kroah-Hartman	bool "Force all usermode helper calls through a single binary"
19964e90a8aSGreg Kroah-Hartman	help
20064e90a8aSGreg Kroah-Hartman	  By default, the kernel can call many different userspace
20164e90a8aSGreg Kroah-Hartman	  binary programs through the "usermode helper" kernel
20264e90a8aSGreg Kroah-Hartman	  interface.  Some of these binaries are statically defined
20364e90a8aSGreg Kroah-Hartman	  either in the kernel code itself, or as a kernel configuration
20464e90a8aSGreg Kroah-Hartman	  option.  However, some of these are dynamically created at
20564e90a8aSGreg Kroah-Hartman	  runtime, or can be modified after the kernel has started up.
20664e90a8aSGreg Kroah-Hartman	  To provide an additional layer of security, route all of these
20764e90a8aSGreg Kroah-Hartman	  calls through a single executable that can not have its name
20864e90a8aSGreg Kroah-Hartman	  changed.
20964e90a8aSGreg Kroah-Hartman
21064e90a8aSGreg Kroah-Hartman	  Note, it is up to this single binary to then call the relevant
21164e90a8aSGreg Kroah-Hartman	  "real" usermode helper binary, based on the first argument
21264e90a8aSGreg Kroah-Hartman	  passed to it.  If desired, this program can filter and pick
21364e90a8aSGreg Kroah-Hartman	  and choose what real programs are called.
21464e90a8aSGreg Kroah-Hartman
21564e90a8aSGreg Kroah-Hartman	  If you wish for all usermode helper programs are to be
21664e90a8aSGreg Kroah-Hartman	  disabled, choose this option and then set
21764e90a8aSGreg Kroah-Hartman	  STATIC_USERMODEHELPER_PATH to an empty string.
21864e90a8aSGreg Kroah-Hartman
21964e90a8aSGreg Kroah-Hartmanconfig STATIC_USERMODEHELPER_PATH
22064e90a8aSGreg Kroah-Hartman	string "Path to the static usermode helper binary"
22164e90a8aSGreg Kroah-Hartman	depends on STATIC_USERMODEHELPER
22264e90a8aSGreg Kroah-Hartman	default "/sbin/usermode-helper"
22364e90a8aSGreg Kroah-Hartman	help
22464e90a8aSGreg Kroah-Hartman	  The binary called by the kernel when any usermode helper
22564e90a8aSGreg Kroah-Hartman	  program is wish to be run.  The "real" application's name will
22664e90a8aSGreg Kroah-Hartman	  be in the first argument passed to this program on the command
22764e90a8aSGreg Kroah-Hartman	  line.
22864e90a8aSGreg Kroah-Hartman
22964e90a8aSGreg Kroah-Hartman	  If you wish for all usermode helper programs to be disabled,
23064e90a8aSGreg Kroah-Hartman	  specify an empty string here (i.e. "").
23164e90a8aSGreg Kroah-Hartman
2328636a1f9SMasahiro Yamadasource "security/selinux/Kconfig"
2338636a1f9SMasahiro Yamadasource "security/smack/Kconfig"
2348636a1f9SMasahiro Yamadasource "security/tomoyo/Kconfig"
2358636a1f9SMasahiro Yamadasource "security/apparmor/Kconfig"
2368636a1f9SMasahiro Yamadasource "security/loadpin/Kconfig"
2378636a1f9SMasahiro Yamadasource "security/yama/Kconfig"
238aeca4e2cSMicah Mortonsource "security/safesetid/Kconfig"
2391da177e4SLinus Torvalds
2408636a1f9SMasahiro Yamadasource "security/integrity/Kconfig"
2413323eec9SMimi Zohar
242*2623c4fbSKees Cookchoice
243*2623c4fbSKees Cook	prompt "First legacy 'major LSM' to be initialized"
244*2623c4fbSKees Cook	default DEFAULT_SECURITY_SELINUX if SECURITY_SELINUX
245*2623c4fbSKees Cook	default DEFAULT_SECURITY_SMACK if SECURITY_SMACK
246*2623c4fbSKees Cook	default DEFAULT_SECURITY_TOMOYO if SECURITY_TOMOYO
247*2623c4fbSKees Cook	default DEFAULT_SECURITY_APPARMOR if SECURITY_APPARMOR
248*2623c4fbSKees Cook	default DEFAULT_SECURITY_DAC
249*2623c4fbSKees Cook
250*2623c4fbSKees Cook	help
251*2623c4fbSKees Cook	  This choice is there only for converting CONFIG_DEFAULT_SECURITY
252*2623c4fbSKees Cook	  in old kernel configs to CONFIG_LSM in new kernel configs. Don't
253*2623c4fbSKees Cook	  change this choice unless you are creating a fresh kernel config,
254*2623c4fbSKees Cook	  for this choice will be ignored after CONFIG_LSM has been set.
255*2623c4fbSKees Cook
256*2623c4fbSKees Cook	  Selects the legacy "major security module" that will be
257*2623c4fbSKees Cook	  initialized first. Overridden by non-default CONFIG_LSM.
258*2623c4fbSKees Cook
259*2623c4fbSKees Cook	config DEFAULT_SECURITY_SELINUX
260*2623c4fbSKees Cook		bool "SELinux" if SECURITY_SELINUX=y
261*2623c4fbSKees Cook
262*2623c4fbSKees Cook	config DEFAULT_SECURITY_SMACK
263*2623c4fbSKees Cook		bool "Simplified Mandatory Access Control" if SECURITY_SMACK=y
264*2623c4fbSKees Cook
265*2623c4fbSKees Cook	config DEFAULT_SECURITY_TOMOYO
266*2623c4fbSKees Cook		bool "TOMOYO" if SECURITY_TOMOYO=y
267*2623c4fbSKees Cook
268*2623c4fbSKees Cook	config DEFAULT_SECURITY_APPARMOR
269*2623c4fbSKees Cook		bool "AppArmor" if SECURITY_APPARMOR=y
270*2623c4fbSKees Cook
271*2623c4fbSKees Cook	config DEFAULT_SECURITY_DAC
272*2623c4fbSKees Cook		bool "Unix Discretionary Access Controls"
273*2623c4fbSKees Cook
274*2623c4fbSKees Cookendchoice
275*2623c4fbSKees Cook
27613e735c0SKees Cookconfig LSM
27713e735c0SKees Cook	string "Ordered list of enabled LSMs"
278*2623c4fbSKees Cook	default "yama,loadpin,safesetid,integrity,smack,selinux,tomoyo,apparmor" if DEFAULT_SECURITY_SMACK
279*2623c4fbSKees Cook	default "yama,loadpin,safesetid,integrity,apparmor,selinux,smack,tomoyo" if DEFAULT_SECURITY_APPARMOR
280*2623c4fbSKees Cook	default "yama,loadpin,safesetid,integrity,tomoyo" if DEFAULT_SECURITY_TOMOYO
281*2623c4fbSKees Cook	default "yama,loadpin,safesetid,integrity" if DEFAULT_SECURITY_DAC
282aeca4e2cSMicah Morton	default "yama,loadpin,safesetid,integrity,selinux,smack,tomoyo,apparmor"
28313e735c0SKees Cook	help
28413e735c0SKees Cook	  A comma-separated list of LSMs, in initialization order.
28579f7865dSKees Cook	  Any LSMs left off this list will be ignored. This can be
28679f7865dSKees Cook	  controlled at boot with the "lsm=" parameter.
28713e735c0SKees Cook
28813e735c0SKees Cook	  If unsure, leave this as the default.
28913e735c0SKees Cook
2901da177e4SLinus Torvaldsendmenu
2911da177e4SLinus Torvalds
292