blob: 5d5b0321da0bd81db3afa2bbe802252ca7e58a94 [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 _LINUX_ELF_H
3#define _LINUX_ELF_H
4
Dave Martindb751e32020-03-16 16:50:43 +00005#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <asm/elf.h>
David Howells607ca462012-10-13 10:46:48 +01007#include <uapi/linux/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
David Howells267aed92011-12-12 13:54:36 +00009#ifndef elf_read_implies_exec
10 /* Executables for which elf_read_implies_exec() returns TRUE will
11 have the READ_IMPLIES_EXEC personality flag set automatically.
12 Override in asm/elf.h as needed. */
13# define elf_read_implies_exec(ex, have_pt_gnu_stack) 0
14#endif
Al Viroe72837e2013-02-17 17:47:04 -050015#ifndef SET_PERSONALITY
16#define SET_PERSONALITY(ex) \
17 set_personality(PER_LINUX | (current->personality & (~PER_MASK)))
18#endif
David Howells267aed92011-12-12 13:54:36 +000019
Paul Burton774c1052014-09-11 08:30:16 +010020#ifndef SET_PERSONALITY2
21#define SET_PERSONALITY2(ex, state) \
22 SET_PERSONALITY(ex)
23#endif
24
Dave Martin00e19ce2020-03-16 16:50:44 +000025#define ELF32_GNU_PROPERTY_ALIGN 4
26#define ELF64_GNU_PROPERTY_ALIGN 8
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#if ELF_CLASS == ELFCLASS32
29
30extern Elf32_Dyn _DYNAMIC [];
31#define elfhdr elf32_hdr
32#define elf_phdr elf32_phdr
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -080033#define elf_shdr elf32_shdr
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define elf_note elf32_note
Magnus Damm386d9a72006-12-06 20:37:53 -080035#define elf_addr_t Elf32_Off
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -080036#define Elf_Half Elf32_Half
Hari Bathini51dbd922017-05-08 15:56:21 -070037#define Elf_Word Elf32_Word
Dave Martin00e19ce2020-03-16 16:50:44 +000038#define ELF_GNU_PROPERTY_ALIGN ELF32_GNU_PROPERTY_ALIGN
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#else
41
42extern Elf64_Dyn _DYNAMIC [];
43#define elfhdr elf64_hdr
44#define elf_phdr elf64_phdr
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -080045#define elf_shdr elf64_shdr
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define elf_note elf64_note
Magnus Damm386d9a72006-12-06 20:37:53 -080047#define elf_addr_t Elf64_Off
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -080048#define Elf_Half Elf64_Half
Hari Bathini51dbd922017-05-08 15:56:21 -070049#define Elf_Word Elf64_Word
Dave Martin00e19ce2020-03-16 16:50:44 +000050#define ELF_GNU_PROPERTY_ALIGN ELF64_GNU_PROPERTY_ALIGN
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#endif
53
Michael Ellermane5501492007-09-19 14:38:12 +100054/* Optional callbacks to write extra ELF notes. */
David Howells267aed92011-12-12 13:54:36 +000055struct file;
Al Virocdc3d562013-10-05 22:24:29 -040056struct coredump_params;
David Howells267aed92011-12-12 13:54:36 +000057
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +010058#ifndef ARCH_HAVE_EXTRA_ELF_NOTES
Michael Ellermane5501492007-09-19 14:38:12 +100059static inline int elf_coredump_extra_notes_size(void) { return 0; }
Al Virocdc3d562013-10-05 22:24:29 -040060static inline int elf_coredump_extra_notes_write(struct coredump_params *cprm) { return 0; }
Michael Ellermane5501492007-09-19 14:38:12 +100061#else
62extern int elf_coredump_extra_notes_size(void);
Al Virocdc3d562013-10-05 22:24:29 -040063extern int elf_coredump_extra_notes_write(struct coredump_params *cprm);
Michael Ellermane5501492007-09-19 14:38:12 +100064#endif
Dave Martindb751e32020-03-16 16:50:43 +000065
66/*
67 * NT_GNU_PROPERTY_TYPE_0 header:
68 * Keep this internal until/unless there is an agreed UAPI definition.
69 * pr_type values (GNU_PROPERTY_*) are public and defined in the UAPI header.
70 */
71struct gnu_property {
72 u32 pr_type;
73 u32 pr_datasz;
74};
75
Dave Martin00e19ce2020-03-16 16:50:44 +000076struct arch_elf_state;
77
78#ifndef CONFIG_ARCH_USE_GNU_PROPERTY
79static inline int arch_parse_elf_property(u32 type, const void *data,
80 size_t datasz, bool compat,
81 struct arch_elf_state *arch)
82{
83 return 0;
84}
85#else
86extern int arch_parse_elf_property(u32 type, const void *data, size_t datasz,
87 bool compat, struct arch_elf_state *arch);
88#endif
89
Dave Martinfe0f6762020-03-16 16:50:46 +000090#ifdef CONFIG_ARCH_HAVE_ELF_PROT
91int arch_elf_adjust_prot(int prot, const struct arch_elf_state *state,
92 bool has_interp, bool is_interp);
93#else
94static inline int arch_elf_adjust_prot(int prot,
95 const struct arch_elf_state *state,
96 bool has_interp, bool is_interp)
97{
98 return prot;
99}
100#endif
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#endif /* _LINUX_ELF_H */