]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/binfmts.h
Merge tag 'for-linus-20170825' of git://git.infradead.org/linux-mtd
[mirror_ubuntu-artful-kernel.git] / include / linux / binfmts.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_BINFMTS_H
2#define _LINUX_BINFMTS_H
3
96e02d15 4#include <linux/sched.h>
282124d1 5#include <linux/unistd.h>
826eba4d 6#include <asm/exec.h>
607ca46e 7#include <uapi/linux/binfmts.h>
1da177e4 8
28851755
IM
9struct filename;
10
71ce92f3
DA
11#define CORENAME_MAX_SIZE 128
12
1da177e4
LT
13/*
14 * This structure is used to hold the arguments that are used when loading binaries.
15 */
f670d0ec 16struct linux_binprm {
1da177e4 17 char buf[BINPRM_BUF_SIZE];
b6a2fea3
OW
18#ifdef CONFIG_MMU
19 struct vm_area_struct *vma;
3c77f845 20 unsigned long vma_pages;
b6a2fea3
OW
21#else
22# define MAX_ARG_PAGES 32
1da177e4 23 struct page *page[MAX_ARG_PAGES];
b6a2fea3 24#endif
1da177e4
LT
25 struct mm_struct *mm;
26 unsigned long p; /* current top of mem */
a50b0aa4 27 unsigned int
a6f76f23
DH
28 cred_prepared:1,/* true if creds already prepared (multiple
29 * preps happen for interpreters) */
30 cap_effective:1;/* true if has elevated effective capabilities,
31 * false if not; except for init which inherits
32 * its parent's caps anyway */
53112488
KS
33#ifdef __alpha__
34 unsigned int taso:1;
35#endif
131b2f9f 36 unsigned int recursion_depth; /* only for search_binary_handler() */
1da177e4 37 struct file * file;
a6f76f23
DH
38 struct cred *cred; /* new credentials */
39 int unsafe; /* how unsafe this exec is (mask of LSM_UNSAFE_*) */
40 unsigned int per_clear; /* bits to clear in current->personality */
1da177e4 41 int argc, envc;
d7627467
DH
42 const char * filename; /* Name of binary as seen by procps */
43 const char * interp; /* Name of the binary really executed. Most
1da177e4
LT
44 of the time same as filename, but could be
45 different for binfmt_{misc,script} */
46 unsigned interp_flags;
47 unsigned interp_data;
48 unsigned long loader, exec;
3859a271 49} __randomize_layout;
1da177e4
LT
50
51#define BINPRM_FLAGS_ENFORCE_NONDUMP_BIT 0
52#define BINPRM_FLAGS_ENFORCE_NONDUMP (1 << BINPRM_FLAGS_ENFORCE_NONDUMP_BIT)
53
54/* fd of the binary should be passed to the interpreter */
55#define BINPRM_FLAGS_EXECFD_BIT 1
56#define BINPRM_FLAGS_EXECFD (1 << BINPRM_FLAGS_EXECFD_BIT)
57
51f39a1f
DD
58/* filename of the binary will be inaccessible after exec */
59#define BINPRM_FLAGS_PATH_INACCESSIBLE_BIT 2
60#define BINPRM_FLAGS_PATH_INACCESSIBLE (1 << BINPRM_FLAGS_PATH_INACCESSIBLE_BIT)
61
f6151dfe
MH
62/* Function parameter for binfmt->coredump */
63struct coredump_params {
ec57941e 64 const siginfo_t *siginfo;
f6151dfe
MH
65 struct pt_regs *regs;
66 struct file *file;
67 unsigned long limit;
30736a4d 68 unsigned long mm_flags;
ecc8c772 69 loff_t written;
1607f09c 70 loff_t pos;
f6151dfe
MH
71};
72
1da177e4
LT
73/*
74 * This structure defines the functions that are used to load the binary formats that
75 * linux accepts.
76 */
77struct linux_binfmt {
e4dc1b14 78 struct list_head lh;
1da177e4 79 struct module *module;
71613c3b 80 int (*load_binary)(struct linux_binprm *);
1da177e4 81 int (*load_shlib)(struct file *);
f6151dfe 82 int (*core_dump)(struct coredump_params *cprm);
1da177e4 83 unsigned long min_coredump; /* minimal dump size */
3859a271 84} __randomize_layout;
1da177e4 85
8fc3dc5a 86extern void __register_binfmt(struct linux_binfmt *fmt, int insert);
74641f58
IK
87
88/* Registration of default binfmt handlers */
8fc3dc5a 89static inline void register_binfmt(struct linux_binfmt *fmt)
74641f58 90{
8fc3dc5a 91 __register_binfmt(fmt, 0);
74641f58
IK
92}
93/* Same as above, but adds a new binfmt at the top of the list */
8fc3dc5a 94static inline void insert_binfmt(struct linux_binfmt *fmt)
74641f58 95{
8fc3dc5a 96 __register_binfmt(fmt, 1);
74641f58
IK
97}
98
f6b450d4 99extern void unregister_binfmt(struct linux_binfmt *);
1da177e4
LT
100
101extern int prepare_binprm(struct linux_binprm *);
b6a2fea3 102extern int __must_check remove_arg_zero(struct linux_binprm *);
3c456bfc 103extern int search_binary_handler(struct linux_binprm *);
1da177e4 104extern int flush_old_exec(struct linux_binprm * bprm);
221af7f8 105extern void setup_new_exec(struct linux_binprm * bprm);
1b5d783c 106extern void would_dump(struct linux_binprm *, struct file *);
1da177e4 107
d6e71144 108extern int suid_dumpable;
d6e71144 109
1da177e4
LT
110/* Stack area protections */
111#define EXSTACK_DEFAULT 0 /* Whatever the arch defaults to */
112#define EXSTACK_DISABLE_X 1 /* Disable executable stacks */
113#define EXSTACK_ENABLE_X 2 /* Enable executable stacks */
114
115extern int setup_arg_pages(struct linux_binprm * bprm,
116 unsigned long stack_top,
117 int executable_stack);
7e7ec6a9
NP
118extern int transfer_args_to_stack(struct linux_binprm *bprm,
119 unsigned long *sp_location);
b66c5984 120extern int bprm_change_interp(char *interp, struct linux_binprm *bprm);
d7627467
DH
121extern int copy_strings_kernel(int argc, const char *const *argv,
122 struct linux_binprm *bprm);
a2a8474c 123extern int prepare_bprm_creds(struct linux_binprm *bprm);
a6f76f23 124extern void install_exec_creds(struct linux_binprm *bprm);
964ee7df 125extern void set_binfmt(struct linux_binfmt *new);
3dc20cb2 126extern ssize_t read_code(struct file *, unsigned long, loff_t, size_t);
1da177e4 127
28851755
IM
128extern int do_execve(struct filename *,
129 const char __user * const __user *,
130 const char __user * const __user *);
131extern int do_execveat(int, struct filename *,
132 const char __user * const __user *,
133 const char __user * const __user *,
134 int);
135
1da177e4 136#endif /* _LINUX_BINFMTS_H */