GNU Linux-libre 5.4.257-gnu1
[releases.git] / arch / Kconfig
1 # SPDX-License-Identifier: GPL-2.0
2 #
3 # General architecture dependent options
4 #
5
6 #
7 # Note: arch/$(SRCARCH)/Kconfig needs to be included first so that it can
8 # override the default values in this file.
9 #
10 source "arch/$(SRCARCH)/Kconfig"
11
12 menu "General architecture-dependent options"
13
14 config CRASH_CORE
15         bool
16
17 config KEXEC_CORE
18         select CRASH_CORE
19         bool
20
21 config KEXEC_ELF
22         bool
23
24 config HAVE_IMA_KEXEC
25         bool
26
27 config HOTPLUG_SMT
28         bool
29
30 config OPROFILE
31         tristate "OProfile system profiling"
32         depends on PROFILING
33         depends on HAVE_OPROFILE
34         select RING_BUFFER
35         select RING_BUFFER_ALLOW_SWAP
36         help
37           OProfile is a profiling system capable of profiling the
38           whole system, include the kernel, kernel modules, libraries,
39           and applications.
40
41           If unsure, say N.
42
43 config OPROFILE_EVENT_MULTIPLEX
44         bool "OProfile multiplexing support (EXPERIMENTAL)"
45         default n
46         depends on OPROFILE && X86
47         help
48           The number of hardware counters is limited. The multiplexing
49           feature enables OProfile to gather more events than counters
50           are provided by the hardware. This is realized by switching
51           between events at a user specified time interval.
52
53           If unsure, say N.
54
55 config HAVE_OPROFILE
56         bool
57
58 config OPROFILE_NMI_TIMER
59         def_bool y
60         depends on PERF_EVENTS && HAVE_PERF_EVENTS_NMI && !PPC64
61
62 config KPROBES
63         bool "Kprobes"
64         depends on MODULES
65         depends on HAVE_KPROBES
66         select KALLSYMS
67         help
68           Kprobes allows you to trap at almost any kernel address and
69           execute a callback function.  register_kprobe() establishes
70           a probepoint and specifies the callback.  Kprobes is useful
71           for kernel debugging, non-intrusive instrumentation and testing.
72           If in doubt, say "N".
73
74 config JUMP_LABEL
75        bool "Optimize very unlikely/likely branches"
76        depends on HAVE_ARCH_JUMP_LABEL
77        depends on CC_HAS_ASM_GOTO
78        help
79          This option enables a transparent branch optimization that
80          makes certain almost-always-true or almost-always-false branch
81          conditions even cheaper to execute within the kernel.
82
83          Certain performance-sensitive kernel code, such as trace points,
84          scheduler functionality, networking code and KVM have such
85          branches and include support for this optimization technique.
86
87          If it is detected that the compiler has support for "asm goto",
88          the kernel will compile such branches with just a nop
89          instruction. When the condition flag is toggled to true, the
90          nop will be converted to a jump instruction to execute the
91          conditional block of instructions.
92
93          This technique lowers overhead and stress on the branch prediction
94          of the processor and generally makes the kernel faster. The update
95          of the condition is slower, but those are always very rare.
96
97          ( On 32-bit x86, the necessary options added to the compiler
98            flags may increase the size of the kernel slightly. )
99
100 config STATIC_KEYS_SELFTEST
101         bool "Static key selftest"
102         depends on JUMP_LABEL
103         help
104           Boot time self-test of the branch patching code.
105
106 config OPTPROBES
107         def_bool y
108         depends on KPROBES && HAVE_OPTPROBES
109         select TASKS_RCU if PREEMPTION
110
111 config KPROBES_ON_FTRACE
112         def_bool y
113         depends on KPROBES && HAVE_KPROBES_ON_FTRACE
114         depends on DYNAMIC_FTRACE_WITH_REGS
115         help
116          If function tracer is enabled and the arch supports full
117          passing of pt_regs to function tracing, then kprobes can
118          optimize on top of function tracing.
119
120 config UPROBES
121         def_bool n
122         depends on ARCH_SUPPORTS_UPROBES
123         help
124           Uprobes is the user-space counterpart to kprobes: they
125           enable instrumentation applications (such as 'perf probe')
126           to establish unintrusive probes in user-space binaries and
127           libraries, by executing handler functions when the probes
128           are hit by user-space applications.
129
130           ( These probes come in the form of single-byte breakpoints,
131             managed by the kernel and kept transparent to the probed
132             application. )
133
134 config HAVE_64BIT_ALIGNED_ACCESS
135         def_bool 64BIT && !HAVE_EFFICIENT_UNALIGNED_ACCESS
136         help
137           Some architectures require 64 bit accesses to be 64 bit
138           aligned, which also requires structs containing 64 bit values
139           to be 64 bit aligned too. This includes some 32 bit
140           architectures which can do 64 bit accesses, as well as 64 bit
141           architectures without unaligned access.
142
143           This symbol should be selected by an architecture if 64 bit
144           accesses are required to be 64 bit aligned in this way even
145           though it is not a 64 bit architecture.
146
147           See Documentation/unaligned-memory-access.txt for more
148           information on the topic of unaligned memory accesses.
149
150 config HAVE_EFFICIENT_UNALIGNED_ACCESS
151         bool
152         help
153           Some architectures are unable to perform unaligned accesses
154           without the use of get_unaligned/put_unaligned. Others are
155           unable to perform such accesses efficiently (e.g. trap on
156           unaligned access and require fixing it up in the exception
157           handler.)
158
159           This symbol should be selected by an architecture if it can
160           perform unaligned accesses efficiently to allow different
161           code paths to be selected for these cases. Some network
162           drivers, for example, could opt to not fix up alignment
163           problems with received packets if doing so would not help
164           much.
165
166           See Documentation/unaligned-memory-access.txt for more
167           information on the topic of unaligned memory accesses.
168
169 config ARCH_USE_BUILTIN_BSWAP
170        bool
171        help
172          Modern versions of GCC (since 4.4) have builtin functions
173          for handling byte-swapping. Using these, instead of the old
174          inline assembler that the architecture code provides in the
175          __arch_bswapXX() macros, allows the compiler to see what's
176          happening and offers more opportunity for optimisation. In
177          particular, the compiler will be able to combine the byteswap
178          with a nearby load or store and use load-and-swap or
179          store-and-swap instructions if the architecture has them. It
180          should almost *never* result in code which is worse than the
181          hand-coded assembler in <asm/swab.h>.  But just in case it
182          does, the use of the builtins is optional.
183
184          Any architecture with load-and-swap or store-and-swap
185          instructions should set this. And it shouldn't hurt to set it
186          on architectures that don't have such instructions.
187
188 config KRETPROBES
189         def_bool y
190         depends on KPROBES && HAVE_KRETPROBES
191
192 config USER_RETURN_NOTIFIER
193         bool
194         depends on HAVE_USER_RETURN_NOTIFIER
195         help
196           Provide a kernel-internal notification when a cpu is about to
197           switch to user mode.
198
199 config HAVE_IOREMAP_PROT
200         bool
201
202 config HAVE_KPROBES
203         bool
204
205 config HAVE_KRETPROBES
206         bool
207
208 config HAVE_OPTPROBES
209         bool
210
211 config HAVE_KPROBES_ON_FTRACE
212         bool
213
214 config HAVE_FUNCTION_ERROR_INJECTION
215         bool
216
217 config HAVE_NMI
218         bool
219
220 #
221 # An arch should select this if it provides all these things:
222 #
223 #       task_pt_regs()          in asm/processor.h or asm/ptrace.h
224 #       arch_has_single_step()  if there is hardware single-step support
225 #       arch_has_block_step()   if there is hardware block-step support
226 #       asm/syscall.h           supplying asm-generic/syscall.h interface
227 #       linux/regset.h          user_regset interfaces
228 #       CORE_DUMP_USE_REGSET    #define'd in linux/elf.h
229 #       TIF_SYSCALL_TRACE       calls tracehook_report_syscall_{entry,exit}
230 #       TIF_NOTIFY_RESUME       calls tracehook_notify_resume()
231 #       signal delivery         calls tracehook_signal_handler()
232 #
233 config HAVE_ARCH_TRACEHOOK
234         bool
235
236 config HAVE_DMA_CONTIGUOUS
237         bool
238
239 config GENERIC_SMP_IDLE_THREAD
240        bool
241
242 config GENERIC_IDLE_POLL_SETUP
243        bool
244
245 config ARCH_HAS_FORTIFY_SOURCE
246         bool
247         help
248           An architecture should select this when it can successfully
249           build and run with CONFIG_FORTIFY_SOURCE.
250
251 #
252 # Select if the arch provides a historic keepinit alias for the retain_initrd
253 # command line option
254 #
255 config ARCH_HAS_KEEPINITRD
256         bool
257
258 # Select if arch has all set_memory_ro/rw/x/nx() functions in asm/cacheflush.h
259 config ARCH_HAS_SET_MEMORY
260         bool
261
262 # Select if arch has all set_direct_map_invalid/default() functions
263 config ARCH_HAS_SET_DIRECT_MAP
264         bool
265
266 #
267 # Select if arch has an uncached kernel segment and provides the
268 # uncached_kernel_address / cached_kernel_address symbols to use it
269 #
270 config ARCH_HAS_UNCACHED_SEGMENT
271         select ARCH_HAS_DMA_PREP_COHERENT
272         bool
273
274 config ARCH_HAS_CPU_FINALIZE_INIT
275         bool
276
277 # Select if arch init_task must go in the __init_task_data section
278 config ARCH_TASK_STRUCT_ON_STACK
279        bool
280
281 # Select if arch has its private alloc_task_struct() function
282 config ARCH_TASK_STRUCT_ALLOCATOR
283         bool
284
285 config HAVE_ARCH_THREAD_STRUCT_WHITELIST
286         bool
287         depends on !ARCH_TASK_STRUCT_ALLOCATOR
288         help
289           An architecture should select this to provide hardened usercopy
290           knowledge about what region of the thread_struct should be
291           whitelisted for copying to userspace. Normally this is only the
292           FPU registers. Specifically, arch_thread_struct_whitelist()
293           should be implemented. Without this, the entire thread_struct
294           field in task_struct will be left whitelisted.
295
296 # Select if arch has its private alloc_thread_stack() function
297 config ARCH_THREAD_STACK_ALLOCATOR
298         bool
299
300 # Select if arch wants to size task_struct dynamically via arch_task_struct_size:
301 config ARCH_WANTS_DYNAMIC_TASK_STRUCT
302         bool
303
304 config ARCH_32BIT_OFF_T
305         bool
306         depends on !64BIT
307         help
308           All new 32-bit architectures should have 64-bit off_t type on
309           userspace side which corresponds to the loff_t kernel type. This
310           is the requirement for modern ABIs. Some existing architectures
311           still support 32-bit off_t. This option is enabled for all such
312           architectures explicitly.
313
314 config HAVE_ASM_MODVERSIONS
315         bool
316         help
317           This symbol should be selected by an architecure if it provides
318           <asm/asm-prototypes.h> to support the module versioning for symbols
319           exported from assembly code.
320
321 config HAVE_REGS_AND_STACK_ACCESS_API
322         bool
323         help
324           This symbol should be selected by an architecure if it supports
325           the API needed to access registers and stack entries from pt_regs,
326           declared in asm/ptrace.h
327           For example the kprobes-based event tracer needs this API.
328
329 config HAVE_RSEQ
330         bool
331         depends on HAVE_REGS_AND_STACK_ACCESS_API
332         help
333           This symbol should be selected by an architecture if it
334           supports an implementation of restartable sequences.
335
336 config HAVE_FUNCTION_ARG_ACCESS_API
337         bool
338         help
339           This symbol should be selected by an architecure if it supports
340           the API needed to access function arguments from pt_regs,
341           declared in asm/ptrace.h
342
343 config HAVE_CLK
344         bool
345         help
346           The <linux/clk.h> calls support software clock gating and
347           thus are a key power management tool on many systems.
348
349 config HAVE_HW_BREAKPOINT
350         bool
351         depends on PERF_EVENTS
352
353 config HAVE_MIXED_BREAKPOINTS_REGS
354         bool
355         depends on HAVE_HW_BREAKPOINT
356         help
357           Depending on the arch implementation of hardware breakpoints,
358           some of them have separate registers for data and instruction
359           breakpoints addresses, others have mixed registers to store
360           them but define the access type in a control register.
361           Select this option if your arch implements breakpoints under the
362           latter fashion.
363
364 config HAVE_USER_RETURN_NOTIFIER
365         bool
366
367 config HAVE_PERF_EVENTS_NMI
368         bool
369         help
370           System hardware can generate an NMI using the perf event
371           subsystem.  Also has support for calculating CPU cycle events
372           to determine how many clock cycles in a given period.
373
374 config HAVE_HARDLOCKUP_DETECTOR_PERF
375         bool
376         depends on HAVE_PERF_EVENTS_NMI
377         help
378           The arch chooses to use the generic perf-NMI-based hardlockup
379           detector. Must define HAVE_PERF_EVENTS_NMI.
380
381 config HAVE_NMI_WATCHDOG
382         depends on HAVE_NMI
383         bool
384         help
385           The arch provides a low level NMI watchdog. It provides
386           asm/nmi.h, and defines its own arch_touch_nmi_watchdog().
387
388 config HAVE_HARDLOCKUP_DETECTOR_ARCH
389         bool
390         select HAVE_NMI_WATCHDOG
391         help
392           The arch chooses to provide its own hardlockup detector, which is
393           a superset of the HAVE_NMI_WATCHDOG. It also conforms to config
394           interfaces and parameters provided by hardlockup detector subsystem.
395
396 config HAVE_PERF_REGS
397         bool
398         help
399           Support selective register dumps for perf events. This includes
400           bit-mapping of each registers and a unique architecture id.
401
402 config HAVE_PERF_USER_STACK_DUMP
403         bool
404         help
405           Support user stack dumps for perf event samples. This needs
406           access to the user stack pointer which is not unified across
407           architectures.
408
409 config HAVE_ARCH_JUMP_LABEL
410         bool
411
412 config HAVE_ARCH_JUMP_LABEL_RELATIVE
413         bool
414
415 config HAVE_RCU_TABLE_FREE
416         bool
417
418 config HAVE_MMU_GATHER_PAGE_SIZE
419         bool
420
421 config MMU_GATHER_NO_RANGE
422         bool
423
424 config HAVE_MMU_GATHER_NO_GATHER
425         bool
426
427 config ARCH_WANT_IRQS_OFF_ACTIVATE_MM
428         bool
429         help
430           Temporary select until all architectures can be converted to have
431           irqs disabled over activate_mm. Architectures that do IPI based TLB
432           shootdowns should enable this.
433
434 config ARCH_HAVE_NMI_SAFE_CMPXCHG
435         bool
436
437 config HAVE_ALIGNED_STRUCT_PAGE
438         bool
439         help
440           This makes sure that struct pages are double word aligned and that
441           e.g. the SLUB allocator can perform double word atomic operations
442           on a struct page for better performance. However selecting this
443           might increase the size of a struct page by a word.
444
445 config HAVE_CMPXCHG_LOCAL
446         bool
447
448 config HAVE_CMPXCHG_DOUBLE
449         bool
450
451 config ARCH_WEAK_RELEASE_ACQUIRE
452         bool
453
454 config ARCH_WANT_IPC_PARSE_VERSION
455         bool
456
457 config ARCH_WANT_COMPAT_IPC_PARSE_VERSION
458         bool
459
460 config ARCH_WANT_OLD_COMPAT_IPC
461         select ARCH_WANT_COMPAT_IPC_PARSE_VERSION
462         bool
463
464 config HAVE_ARCH_SECCOMP_FILTER
465         bool
466         help
467           An arch should select this symbol if it provides all of these things:
468           - syscall_get_arch()
469           - syscall_get_arguments()
470           - syscall_rollback()
471           - syscall_set_return_value()
472           - SIGSYS siginfo_t support
473           - secure_computing is called from a ptrace_event()-safe context
474           - secure_computing return value is checked and a return value of -1
475             results in the system call being skipped immediately.
476           - seccomp syscall wired up
477
478 config SECCOMP_FILTER
479         def_bool y
480         depends on HAVE_ARCH_SECCOMP_FILTER && SECCOMP && NET
481         help
482           Enable tasks to build secure computing environments defined
483           in terms of Berkeley Packet Filter programs which implement
484           task-defined system call filtering polices.
485
486           See Documentation/userspace-api/seccomp_filter.rst for details.
487
488 config HAVE_ARCH_STACKLEAK
489         bool
490         help
491           An architecture should select this if it has the code which
492           fills the used part of the kernel stack with the STACKLEAK_POISON
493           value before returning from system calls.
494
495 config HAVE_STACKPROTECTOR
496         bool
497         help
498           An arch should select this symbol if:
499           - it has implemented a stack canary (e.g. __stack_chk_guard)
500
501 config CC_HAS_STACKPROTECTOR_NONE
502         def_bool $(cc-option,-fno-stack-protector)
503
504 config STACKPROTECTOR
505         bool "Stack Protector buffer overflow detection"
506         depends on HAVE_STACKPROTECTOR
507         depends on $(cc-option,-fstack-protector)
508         default y
509         help
510           This option turns on the "stack-protector" GCC feature. This
511           feature puts, at the beginning of functions, a canary value on
512           the stack just before the return address, and validates
513           the value just before actually returning.  Stack based buffer
514           overflows (that need to overwrite this return address) now also
515           overwrite the canary, which gets detected and the attack is then
516           neutralized via a kernel panic.
517
518           Functions will have the stack-protector canary logic added if they
519           have an 8-byte or larger character array on the stack.
520
521           This feature requires gcc version 4.2 or above, or a distribution
522           gcc with the feature backported ("-fstack-protector").
523
524           On an x86 "defconfig" build, this feature adds canary checks to
525           about 3% of all kernel functions, which increases kernel code size
526           by about 0.3%.
527
528 config STACKPROTECTOR_STRONG
529         bool "Strong Stack Protector"
530         depends on STACKPROTECTOR
531         depends on $(cc-option,-fstack-protector-strong)
532         default y
533         help
534           Functions will have the stack-protector canary logic added in any
535           of the following conditions:
536
537           - local variable's address used as part of the right hand side of an
538             assignment or function argument
539           - local variable is an array (or union containing an array),
540             regardless of array type or length
541           - uses register local variables
542
543           This feature requires gcc version 4.9 or above, or a distribution
544           gcc with the feature backported ("-fstack-protector-strong").
545
546           On an x86 "defconfig" build, this feature adds canary checks to
547           about 20% of all kernel functions, which increases the kernel code
548           size by about 2%.
549
550 config HAVE_ARCH_WITHIN_STACK_FRAMES
551         bool
552         help
553           An architecture should select this if it can walk the kernel stack
554           frames to determine if an object is part of either the arguments
555           or local variables (i.e. that it excludes saved return addresses,
556           and similar) by implementing an inline arch_within_stack_frames(),
557           which is used by CONFIG_HARDENED_USERCOPY.
558
559 config HAVE_CONTEXT_TRACKING
560         bool
561         help
562           Provide kernel/user boundaries probes necessary for subsystems
563           that need it, such as userspace RCU extended quiescent state.
564           Syscalls need to be wrapped inside user_exit()-user_enter() through
565           the slow path using TIF_NOHZ flag. Exceptions handlers must be
566           wrapped as well. Irqs are already protected inside
567           rcu_irq_enter/rcu_irq_exit() but preemption or signal handling on
568           irq exit still need to be protected.
569
570 config HAVE_VIRT_CPU_ACCOUNTING
571         bool
572
573 config ARCH_HAS_SCALED_CPUTIME
574         bool
575
576 config HAVE_VIRT_CPU_ACCOUNTING_GEN
577         bool
578         default y if 64BIT
579         help
580           With VIRT_CPU_ACCOUNTING_GEN, cputime_t becomes 64-bit.
581           Before enabling this option, arch code must be audited
582           to ensure there are no races in concurrent read/write of
583           cputime_t. For example, reading/writing 64-bit cputime_t on
584           some 32-bit arches may require multiple accesses, so proper
585           locking is needed to protect against concurrent accesses.
586
587
588 config HAVE_IRQ_TIME_ACCOUNTING
589         bool
590         help
591           Archs need to ensure they use a high enough resolution clock to
592           support irq time accounting and then call enable_sched_clock_irqtime().
593
594 config HAVE_MOVE_PMD
595         bool
596         help
597           Archs that select this are able to move page tables at the PMD level.
598
599 config HAVE_ARCH_TRANSPARENT_HUGEPAGE
600         bool
601
602 config HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
603         bool
604
605 config HAVE_ARCH_HUGE_VMAP
606         bool
607
608 config ARCH_WANT_HUGE_PMD_SHARE
609         bool
610
611 config HAVE_ARCH_SOFT_DIRTY
612         bool
613
614 config HAVE_MOD_ARCH_SPECIFIC
615         bool
616         help
617           The arch uses struct mod_arch_specific to store data.  Many arches
618           just need a simple module loader without arch specific data - those
619           should not enable this.
620
621 config MODULES_USE_ELF_RELA
622         bool
623         help
624           Modules only use ELF RELA relocations.  Modules with ELF REL
625           relocations will give an error.
626
627 config MODULES_USE_ELF_REL
628         bool
629         help
630           Modules only use ELF REL relocations.  Modules with ELF RELA
631           relocations will give an error.
632
633 config HAVE_IRQ_EXIT_ON_IRQ_STACK
634         bool
635         help
636           Architecture doesn't only execute the irq handler on the irq stack
637           but also irq_exit(). This way we can process softirqs on this irq
638           stack instead of switching to a new one when we call __do_softirq()
639           in the end of an hardirq.
640           This spares a stack switch and improves cache usage on softirq
641           processing.
642
643 config PGTABLE_LEVELS
644         int
645         default 2
646
647 config ARCH_HAS_ELF_RANDOMIZE
648         bool
649         help
650           An architecture supports choosing randomized locations for
651           stack, mmap, brk, and ET_DYN. Defined functions:
652           - arch_mmap_rnd()
653           - arch_randomize_brk()
654
655 config HAVE_ARCH_MMAP_RND_BITS
656         bool
657         help
658           An arch should select this symbol if it supports setting a variable
659           number of bits for use in establishing the base address for mmap
660           allocations, has MMU enabled and provides values for both:
661           - ARCH_MMAP_RND_BITS_MIN
662           - ARCH_MMAP_RND_BITS_MAX
663
664 config HAVE_EXIT_THREAD
665         bool
666         help
667           An architecture implements exit_thread.
668
669 config ARCH_MMAP_RND_BITS_MIN
670         int
671
672 config ARCH_MMAP_RND_BITS_MAX
673         int
674
675 config ARCH_MMAP_RND_BITS_DEFAULT
676         int
677
678 config ARCH_MMAP_RND_BITS
679         int "Number of bits to use for ASLR of mmap base address" if EXPERT
680         range ARCH_MMAP_RND_BITS_MIN ARCH_MMAP_RND_BITS_MAX
681         default ARCH_MMAP_RND_BITS_DEFAULT if ARCH_MMAP_RND_BITS_DEFAULT
682         default ARCH_MMAP_RND_BITS_MIN
683         depends on HAVE_ARCH_MMAP_RND_BITS
684         help
685           This value can be used to select the number of bits to use to
686           determine the random offset to the base address of vma regions
687           resulting from mmap allocations. This value will be bounded
688           by the architecture's minimum and maximum supported values.
689
690           This value can be changed after boot using the
691           /proc/sys/vm/mmap_rnd_bits tunable
692
693 config HAVE_ARCH_MMAP_RND_COMPAT_BITS
694         bool
695         help
696           An arch should select this symbol if it supports running applications
697           in compatibility mode, supports setting a variable number of bits for
698           use in establishing the base address for mmap allocations, has MMU
699           enabled and provides values for both:
700           - ARCH_MMAP_RND_COMPAT_BITS_MIN
701           - ARCH_MMAP_RND_COMPAT_BITS_MAX
702
703 config ARCH_MMAP_RND_COMPAT_BITS_MIN
704         int
705
706 config ARCH_MMAP_RND_COMPAT_BITS_MAX
707         int
708
709 config ARCH_MMAP_RND_COMPAT_BITS_DEFAULT
710         int
711
712 config ARCH_MMAP_RND_COMPAT_BITS
713         int "Number of bits to use for ASLR of mmap base address for compatible applications" if EXPERT
714         range ARCH_MMAP_RND_COMPAT_BITS_MIN ARCH_MMAP_RND_COMPAT_BITS_MAX
715         default ARCH_MMAP_RND_COMPAT_BITS_DEFAULT if ARCH_MMAP_RND_COMPAT_BITS_DEFAULT
716         default ARCH_MMAP_RND_COMPAT_BITS_MIN
717         depends on HAVE_ARCH_MMAP_RND_COMPAT_BITS
718         help
719           This value can be used to select the number of bits to use to
720           determine the random offset to the base address of vma regions
721           resulting from mmap allocations for compatible applications This
722           value will be bounded by the architecture's minimum and maximum
723           supported values.
724
725           This value can be changed after boot using the
726           /proc/sys/vm/mmap_rnd_compat_bits tunable
727
728 config HAVE_ARCH_COMPAT_MMAP_BASES
729         bool
730         help
731           This allows 64bit applications to invoke 32-bit mmap() syscall
732           and vice-versa 32-bit applications to call 64-bit mmap().
733           Required for applications doing different bitness syscalls.
734
735 # This allows to use a set of generic functions to determine mmap base
736 # address by giving priority to top-down scheme only if the process
737 # is not in legacy mode (compat task, unlimited stack size or
738 # sysctl_legacy_va_layout).
739 # Architecture that selects this option can provide its own version of:
740 # - STACK_RND_MASK
741 config ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT
742         bool
743         depends on MMU
744         select ARCH_HAS_ELF_RANDOMIZE
745
746 config HAVE_COPY_THREAD_TLS
747         bool
748         help
749           Architecture provides copy_thread_tls to accept tls argument via
750           normal C parameter passing, rather than extracting the syscall
751           argument from pt_regs.
752
753 config HAVE_STACK_VALIDATION
754         bool
755         help
756           Architecture supports the 'objtool check' host tool command, which
757           performs compile-time stack metadata validation.
758
759 config HAVE_RELIABLE_STACKTRACE
760         bool
761         help
762           Architecture has a save_stack_trace_tsk_reliable() function which
763           only returns a stack trace if it can guarantee the trace is reliable.
764
765 config HAVE_ARCH_HASH
766         bool
767         default n
768         help
769           If this is set, the architecture provides an <asm/hash.h>
770           file which provides platform-specific implementations of some
771           functions in <linux/hash.h> or fs/namei.c.
772
773 config HAVE_ARCH_NVRAM_OPS
774         bool
775
776 config ISA_BUS_API
777         def_bool ISA
778
779 #
780 # ABI hall of shame
781 #
782 config CLONE_BACKWARDS
783         bool
784         help
785           Architecture has tls passed as the 4th argument of clone(2),
786           not the 5th one.
787
788 config CLONE_BACKWARDS2
789         bool
790         help
791           Architecture has the first two arguments of clone(2) swapped.
792
793 config CLONE_BACKWARDS3
794         bool
795         help
796           Architecture has tls passed as the 3rd argument of clone(2),
797           not the 5th one.
798
799 config ODD_RT_SIGACTION
800         bool
801         help
802           Architecture has unusual rt_sigaction(2) arguments
803
804 config OLD_SIGSUSPEND
805         bool
806         help
807           Architecture has old sigsuspend(2) syscall, of one-argument variety
808
809 config OLD_SIGSUSPEND3
810         bool
811         help
812           Even weirder antique ABI - three-argument sigsuspend(2)
813
814 config OLD_SIGACTION
815         bool
816         help
817           Architecture has old sigaction(2) syscall.  Nope, not the same
818           as OLD_SIGSUSPEND | OLD_SIGSUSPEND3 - alpha has sigsuspend(2),
819           but fairly different variant of sigaction(2), thanks to OSF/1
820           compatibility...
821
822 config COMPAT_OLD_SIGACTION
823         bool
824
825 config 64BIT_TIME
826         def_bool y
827         help
828           This should be selected by all architectures that need to support
829           new system calls with a 64-bit time_t. This is relevant on all 32-bit
830           architectures, and 64-bit architectures as part of compat syscall
831           handling.
832
833 config COMPAT_32BIT_TIME
834         def_bool !64BIT || COMPAT
835         help
836           This enables 32 bit time_t support in addition to 64 bit time_t support.
837           This is relevant on all 32-bit architectures, and 64-bit architectures
838           as part of compat syscall handling.
839
840 config ARCH_NO_PREEMPT
841         bool
842
843 config ARCH_SUPPORTS_RT
844         bool
845
846 config CPU_NO_EFFICIENT_FFS
847         def_bool n
848
849 config HAVE_ARCH_VMAP_STACK
850         def_bool n
851         help
852           An arch should select this symbol if it can support kernel stacks
853           in vmalloc space.  This means:
854
855           - vmalloc space must be large enough to hold many kernel stacks.
856             This may rule out many 32-bit architectures.
857
858           - Stacks in vmalloc space need to work reliably.  For example, if
859             vmap page tables are created on demand, either this mechanism
860             needs to work while the stack points to a virtual address with
861             unpopulated page tables or arch code (switch_to() and switch_mm(),
862             most likely) needs to ensure that the stack's page table entries
863             are populated before running on a possibly unpopulated stack.
864
865           - If the stack overflows into a guard page, something reasonable
866             should happen.  The definition of "reasonable" is flexible, but
867             instantly rebooting without logging anything would be unfriendly.
868
869 config VMAP_STACK
870         default y
871         bool "Use a virtually-mapped stack"
872         depends on HAVE_ARCH_VMAP_STACK && !KASAN
873         ---help---
874           Enable this if you want the use virtually-mapped kernel stacks
875           with guard pages.  This causes kernel stack overflows to be
876           caught immediately rather than causing difficult-to-diagnose
877           corruption.
878
879           This is presently incompatible with KASAN because KASAN expects
880           the stack to map directly to the KASAN shadow map using a formula
881           that is incorrect if the stack is in vmalloc space.
882
883 config ARCH_OPTIONAL_KERNEL_RWX
884         def_bool n
885
886 config ARCH_OPTIONAL_KERNEL_RWX_DEFAULT
887         def_bool n
888
889 config ARCH_HAS_STRICT_KERNEL_RWX
890         def_bool n
891
892 config STRICT_KERNEL_RWX
893         bool "Make kernel text and rodata read-only" if ARCH_OPTIONAL_KERNEL_RWX
894         depends on ARCH_HAS_STRICT_KERNEL_RWX
895         default !ARCH_OPTIONAL_KERNEL_RWX || ARCH_OPTIONAL_KERNEL_RWX_DEFAULT
896         help
897           If this is set, kernel text and rodata memory will be made read-only,
898           and non-text memory will be made non-executable. This provides
899           protection against certain security exploits (e.g. executing the heap
900           or modifying text)
901
902           These features are considered standard security practice these days.
903           You should say Y here in almost all cases.
904
905 config ARCH_HAS_STRICT_MODULE_RWX
906         def_bool n
907
908 config STRICT_MODULE_RWX
909         bool "Set loadable kernel module data as NX and text as RO" if ARCH_OPTIONAL_KERNEL_RWX
910         depends on ARCH_HAS_STRICT_MODULE_RWX && MODULES
911         default !ARCH_OPTIONAL_KERNEL_RWX || ARCH_OPTIONAL_KERNEL_RWX_DEFAULT
912         help
913           If this is set, module text and rodata memory will be made read-only,
914           and non-text memory will be made non-executable. This provides
915           protection against certain security exploits (e.g. writing to text)
916
917 # select if the architecture provides an asm/dma-direct.h header
918 config ARCH_HAS_PHYS_TO_DMA
919         bool
920
921 config HAVE_ARCH_COMPILER_H
922         bool
923         help
924           An architecture can select this if it provides an
925           asm/compiler.h header that should be included after
926           linux/compiler-*.h in order to override macro definitions that those
927           headers generally provide.
928
929 config HAVE_ARCH_PREL32_RELOCATIONS
930         bool
931         help
932           May be selected by an architecture if it supports place-relative
933           32-bit relocations, both in the toolchain and in the module loader,
934           in which case relative references can be used in special sections
935           for PCI fixup, initcalls etc which are only half the size on 64 bit
936           architectures, and don't require runtime relocation on relocatable
937           kernels.
938
939 config ARCH_USE_MEMREMAP_PROT
940         bool
941
942 config LOCK_EVENT_COUNTS
943         bool "Locking event counts collection"
944         depends on DEBUG_FS
945         ---help---
946           Enable light-weight counting of various locking related events
947           in the system with minimal performance impact. This reduces
948           the chance of application behavior change because of timing
949           differences. The counts are reported via debugfs.
950
951 # Select if the architecture has support for applying RELR relocations.
952 config ARCH_HAS_RELR
953         bool
954
955 config RELR
956         bool "Use RELR relocation packing"
957         depends on ARCH_HAS_RELR && TOOLS_SUPPORT_RELR
958         default y
959         help
960           Store the kernel's dynamic relocations in the RELR relocation packing
961           format. Requires a compatible linker (LLD supports this feature), as
962           well as compatible NM and OBJCOPY utilities (llvm-nm and llvm-objcopy
963           are compatible).
964
965 config ARCH_HAS_MEM_ENCRYPT
966         bool
967
968 source "kernel/gcov/Kconfig"
969
970 source "scripts/gcc-plugins/Kconfig"
971
972 endmenu