mm: migrate: Account a transhuge page properly when rate limiting
[deliverable/linux.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
71ce92f3
DA
9#define CORENAME_MAX_SIZE 128
10
1da177e4
LT
11/*
12 * This structure is used to hold the arguments that are used when loading binaries.
13 */
f670d0ec 14struct linux_binprm {
1da177e4 15 char buf[BINPRM_BUF_SIZE];
b6a2fea3
OW
16#ifdef CONFIG_MMU
17 struct vm_area_struct *vma;
3c77f845 18 unsigned long vma_pages;
b6a2fea3
OW
19#else
20# define MAX_ARG_PAGES 32
1da177e4 21 struct page *page[MAX_ARG_PAGES];
b6a2fea3 22#endif
1da177e4
LT
23 struct mm_struct *mm;
24 unsigned long p; /* current top of mem */
a50b0aa4 25 unsigned int
a6f76f23
DH
26 cred_prepared:1,/* true if creds already prepared (multiple
27 * preps happen for interpreters) */
28 cap_effective:1;/* true if has elevated effective capabilities,
29 * false if not; except for init which inherits
30 * its parent's caps anyway */
53112488
KS
31#ifdef __alpha__
32 unsigned int taso:1;
33#endif
bf2a9a39 34 unsigned int recursion_depth;
1da177e4 35 struct file * file;
a6f76f23
DH
36 struct cred *cred; /* new credentials */
37 int unsafe; /* how unsafe this exec is (mask of LSM_UNSAFE_*) */
38 unsigned int per_clear; /* bits to clear in current->personality */
1da177e4 39 int argc, envc;
d7627467
DH
40 const char * filename; /* Name of binary as seen by procps */
41 const char * interp; /* Name of the binary really executed. Most
1da177e4
LT
42 of the time same as filename, but could be
43 different for binfmt_{misc,script} */
44 unsigned interp_flags;
45 unsigned interp_data;
46 unsigned long loader, exec;
96e02d15 47 char tcomm[TASK_COMM_LEN];
1da177e4
LT
48};
49
50#define BINPRM_FLAGS_ENFORCE_NONDUMP_BIT 0
51#define BINPRM_FLAGS_ENFORCE_NONDUMP (1 << BINPRM_FLAGS_ENFORCE_NONDUMP_BIT)
52
53/* fd of the binary should be passed to the interpreter */
54#define BINPRM_FLAGS_EXECFD_BIT 1
55#define BINPRM_FLAGS_EXECFD (1 << BINPRM_FLAGS_EXECFD_BIT)
56
bf2a9a39 57#define BINPRM_MAX_RECURSION 4
1da177e4 58
f6151dfe
MH
59/* Function parameter for binfmt->coredump */
60struct coredump_params {
5ab1c309 61 siginfo_t *siginfo;
f6151dfe
MH
62 struct pt_regs *regs;
63 struct file *file;
64 unsigned long limit;
30736a4d 65 unsigned long mm_flags;
f6151dfe
MH
66};
67
1da177e4
LT
68/*
69 * This structure defines the functions that are used to load the binary formats that
70 * linux accepts.
71 */
72struct linux_binfmt {
e4dc1b14 73 struct list_head lh;
1da177e4
LT
74 struct module *module;
75 int (*load_binary)(struct linux_binprm *, struct pt_regs * regs);
76 int (*load_shlib)(struct file *);
f6151dfe 77 int (*core_dump)(struct coredump_params *cprm);
1da177e4
LT
78 unsigned long min_coredump; /* minimal dump size */
79};
80
8fc3dc5a 81extern void __register_binfmt(struct linux_binfmt *fmt, int insert);
74641f58
IK
82
83/* Registration of default binfmt handlers */
8fc3dc5a 84static inline void register_binfmt(struct linux_binfmt *fmt)
74641f58 85{
8fc3dc5a 86 __register_binfmt(fmt, 0);
74641f58
IK
87}
88/* Same as above, but adds a new binfmt at the top of the list */
8fc3dc5a 89static inline void insert_binfmt(struct linux_binfmt *fmt)
74641f58 90{
8fc3dc5a 91 __register_binfmt(fmt, 1);
74641f58
IK
92}
93
f6b450d4 94extern void unregister_binfmt(struct linux_binfmt *);
1da177e4
LT
95
96extern int prepare_binprm(struct linux_binprm *);
b6a2fea3 97extern int __must_check remove_arg_zero(struct linux_binprm *);
f670d0ec 98extern int search_binary_handler(struct linux_binprm *, struct pt_regs *);
1da177e4 99extern int flush_old_exec(struct linux_binprm * bprm);
221af7f8 100extern void setup_new_exec(struct linux_binprm * bprm);
1b5d783c 101extern void would_dump(struct linux_binprm *, struct file *);
1da177e4 102
d6e71144
AC
103extern int suid_dumpable;
104#define SUID_DUMP_DISABLE 0 /* No setuid dumping */
105#define SUID_DUMP_USER 1 /* Dump as user of process */
106#define SUID_DUMP_ROOT 2 /* Dump as root */
107
1da177e4
LT
108/* Stack area protections */
109#define EXSTACK_DEFAULT 0 /* Whatever the arch defaults to */
110#define EXSTACK_DISABLE_X 1 /* Disable executable stacks */
111#define EXSTACK_ENABLE_X 2 /* Enable executable stacks */
112
113extern int setup_arg_pages(struct linux_binprm * bprm,
114 unsigned long stack_top,
115 int executable_stack);
b6a2fea3 116extern int bprm_mm_init(struct linux_binprm *bprm);
d7627467
DH
117extern int copy_strings_kernel(int argc, const char *const *argv,
118 struct linux_binprm *bprm);
a2a8474c 119extern int prepare_bprm_creds(struct linux_binprm *bprm);
a6f76f23 120extern void install_exec_creds(struct linux_binprm *bprm);
964ee7df 121extern void set_binfmt(struct linux_binfmt *new);
08a6fac1 122extern void free_bprm(struct linux_binprm *);
1da177e4 123
282124d1
AV
124#ifdef __ARCH_WANT_KERNEL_EXECVE
125extern void ret_from_kernel_execve(struct pt_regs *normal) __noreturn;
126#endif
127
1da177e4 128#endif /* _LINUX_BINFMTS_H */
This page took 0.758994 seconds and 5 git commands to generate.