blob: 849cd8eb5ca0650c46e51f1848302ced07533757 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _ASM_GENERIC_SECTIONS_H_
3#define _ASM_GENERIC_SECTIONS_H_
4
5/* References to section boundaries */
6
Geert Uytterhoeven7f8998c2014-10-09 15:30:30 -07007#include <linux/compiler.h>
Thierry Reding97955932016-01-15 16:58:18 -08008#include <linux/types.h>
Geert Uytterhoeven7f8998c2014-10-09 15:30:30 -07009
Jiang Liu1622d1a2013-07-03 15:03:33 -070010/*
11 * Usage guidelines:
12 * _text, _data: architecture specific, don't use them in arch-independent code
13 * [_stext, _etext]: contains .text.* sections, may also contain .rodata.*
14 * and/or .init.* sections
15 * [_sdata, _edata]: contains .data.* sections, may also contain .rodata.*
16 * and/or .init.* sections.
17 * [__start_rodata, __end_rodata]: contains .rodata.* sections
Kees Cook906f2a52017-03-31 15:11:58 -070018 * [__start_ro_after_init, __end_ro_after_init]:
19 * contains .data..ro_after_init section
Jiang Liu1622d1a2013-07-03 15:03:33 -070020 * [__init_begin, __init_end]: contains .init.* sections, but .init.text.*
21 * may be out of this range on some architectures.
22 * [_sinittext, _einittext]: contains .init.text.* sections
23 * [__bss_start, __bss_stop]: contains BSS sections
24 *
25 * Following global variables are optional and may be unavailable on some
26 * architectures and/or kernel configurations.
27 * _text, _data
28 * __kprobes_text_start, __kprobes_text_end
29 * __entry_text_start, __entry_text_end
30 * __ctors_start, __ctors_end
Masami Hiramatsu229a7182017-08-03 11:38:21 +090031 * __irqentry_text_start, __irqentry_text_end
32 * __softirqentry_text_start, __softirqentry_text_end
Sergey Senozhatskyb865ea62017-11-10 08:48:25 +090033 * __start_opd, __end_opd
Jiang Liu1622d1a2013-07-03 15:03:33 -070034 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035extern char _text[], _stext[], _etext[];
36extern char _data[], _sdata[], _edata[];
37extern char __bss_start[], __bss_stop[];
38extern char __init_begin[], __init_end[];
39extern char _sinittext[], _einittext[];
Kees Cook906f2a52017-03-31 15:11:58 -070040extern char __start_ro_after_init[], __end_ro_after_init[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070041extern char _end[];
Tejun Heo3e5d8f92009-01-13 20:41:35 +090042extern char __per_cpu_load[], __per_cpu_start[], __per_cpu_end[];
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -070043extern char __kprobes_text_start[], __kprobes_text_end[];
Jiri Olsaea714542011-03-07 19:10:39 +010044extern char __entry_text_start[], __entry_text_end[];
Heiko Carstensa581c2a2006-07-01 04:36:30 -070045extern char __start_rodata[], __end_rodata[];
Masami Hiramatsu229a7182017-08-03 11:38:21 +090046extern char __irqentry_text_start[], __irqentry_text_end[];
47extern char __softirqentry_text_start[], __softirqentry_text_end[];
Andi Kleenb1fca272017-11-17 15:27:03 -080048extern char __start_once[], __end_once[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -070050/* Start and end of .ctors section - used for constructor calls. */
51extern char __ctors_start[], __ctors_end[];
52
Sergey Senozhatskyb865ea62017-11-10 08:48:25 +090053/* Start and end of .opd section - used for function descriptors. */
54extern char __start_opd[], __end_opd[];
55
Geert Uytterhoeven7f8998c2014-10-09 15:30:30 -070056extern __visible const void __nosave_begin, __nosave_end;
57
Sergey Senozhatskyb865ea62017-11-10 08:48:25 +090058/* Function descriptor handling (if any). Override in asm/sections.h */
James Bottomleydeac93d2008-09-03 20:43:36 -050059#ifndef dereference_function_descriptor
60#define dereference_function_descriptor(p) (p)
Sergey Senozhatskyb865ea62017-11-10 08:48:25 +090061#define dereference_kernel_function_descriptor(p) (p)
James Bottomleydeac93d2008-09-03 20:43:36 -050062#endif
63
Mike Frysinger00afe022009-09-22 16:44:14 -070064/* random extra sections (if any). Override
65 * in asm/sections.h */
66#ifndef arch_is_kernel_text
67static inline int arch_is_kernel_text(unsigned long addr)
68{
69 return 0;
70}
71#endif
72
73#ifndef arch_is_kernel_data
74static inline int arch_is_kernel_data(unsigned long addr)
75{
76 return 0;
77}
78#endif
79
Thierry Reding97955932016-01-15 16:58:18 -080080/**
81 * memory_contains - checks if an object is contained within a memory region
82 * @begin: virtual address of the beginning of the memory region
83 * @end: virtual address of the end of the memory region
84 * @virt: virtual address of the memory object
85 * @size: size of the memory object
86 *
87 * Returns: true if the object specified by @virt and @size is entirely
88 * contained within the memory region defined by @begin and @end, false
89 * otherwise.
90 */
91static inline bool memory_contains(void *begin, void *end, void *virt,
92 size_t size)
93{
94 return virt >= begin && virt + size <= end;
95}
96
97/**
98 * memory_intersects - checks if the region occupied by an object intersects
99 * with another memory region
100 * @begin: virtual address of the beginning of the memory regien
101 * @end: virtual address of the end of the memory region
102 * @virt: virtual address of the memory object
103 * @size: size of the memory object
104 *
105 * Returns: true if an object's memory region, specified by @virt and @size,
106 * intersects with the region specified by @begin and @end, false otherwise.
107 */
108static inline bool memory_intersects(void *begin, void *end, void *virt,
109 size_t size)
110{
111 void *vend = virt + size;
112
113 return (virt >= begin && virt < end) || (vend >= begin && vend < end);
114}
115
116/**
117 * init_section_contains - checks if an object is contained within the init
118 * section
119 * @virt: virtual address of the memory object
120 * @size: size of the memory object
121 *
122 * Returns: true if the object specified by @virt and @size is entirely
123 * contained within the init section, false otherwise.
124 */
125static inline bool init_section_contains(void *virt, size_t size)
126{
127 return memory_contains(__init_begin, __init_end, virt, size);
128}
129
130/**
131 * init_section_intersects - checks if the region occupied by an object
132 * intersects with the init section
133 * @virt: virtual address of the memory object
134 * @size: size of the memory object
135 *
136 * Returns: true if an object's memory region, specified by @virt and @size,
137 * intersects with the init section, false otherwise.
138 */
139static inline bool init_section_intersects(void *virt, size_t size)
140{
141 return memory_intersects(__init_begin, __init_end, virt, size);
142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#endif /* _ASM_GENERIC_SECTIONS_H_ */