1
2#ifndef _LINUX_BINFMTS_H
3#define _LINUX_BINFMTS_H
4
5#include <linux/sched.h>
6#include <linux/unistd.h>
7#include <asm/exec.h>
8#include <uapi/linux/binfmts.h>
9
10struct filename;
11
12#define CORENAME_MAX_SIZE 128
13
14
15
16
17struct linux_binprm {
18#ifdef CONFIG_MMU
19 struct vm_area_struct *vma;
20 unsigned long vma_pages;
21#else
22# define MAX_ARG_PAGES 32
23 struct page *page[MAX_ARG_PAGES];
24#endif
25 struct mm_struct *mm;
26 unsigned long p;
27 unsigned long argmin;
28 unsigned int
29
30 have_execfd:1,
31
32
33 execfd_creds:1,
34
35
36
37
38
39 secureexec:1,
40
41
42
43
44 point_of_no_return:1;
45#ifdef __alpha__
46 unsigned int taso:1;
47#endif
48 struct file *executable;
49 struct file *interpreter;
50 struct file *file;
51 struct cred *cred;
52 int unsafe;
53 unsigned int per_clear;
54 int argc, envc;
55 const char *filename;
56 const char *interp;
57
58
59 const char *fdpath;
60 unsigned interp_flags;
61 int execfd;
62 unsigned long loader, exec;
63
64 struct rlimit rlim_stack;
65
66 char buf[BINPRM_BUF_SIZE];
67} __randomize_layout;
68
69#define BINPRM_FLAGS_ENFORCE_NONDUMP_BIT 0
70#define BINPRM_FLAGS_ENFORCE_NONDUMP (1 << BINPRM_FLAGS_ENFORCE_NONDUMP_BIT)
71
72
73#define BINPRM_FLAGS_PATH_INACCESSIBLE_BIT 2
74#define BINPRM_FLAGS_PATH_INACCESSIBLE (1 << BINPRM_FLAGS_PATH_INACCESSIBLE_BIT)
75
76
77#define BINPRM_FLAGS_PRESERVE_ARGV0_BIT 3
78#define BINPRM_FLAGS_PRESERVE_ARGV0 (1 << BINPRM_FLAGS_PRESERVE_ARGV0_BIT)
79
80
81struct coredump_params {
82 const kernel_siginfo_t *siginfo;
83 struct pt_regs *regs;
84 struct file *file;
85 unsigned long limit;
86 unsigned long mm_flags;
87 loff_t written;
88 loff_t pos;
89};
90
91
92
93
94
95struct linux_binfmt {
96 struct list_head lh;
97 struct module *module;
98 int (*load_binary)(struct linux_binprm *);
99 int (*load_shlib)(struct file *);
100 int (*core_dump)(struct coredump_params *cprm);
101 unsigned long min_coredump;
102} __randomize_layout;
103
104extern void __register_binfmt(struct linux_binfmt *fmt, int insert);
105
106
107static inline void register_binfmt(struct linux_binfmt *fmt)
108{
109 __register_binfmt(fmt, 0);
110}
111
112static inline void insert_binfmt(struct linux_binfmt *fmt)
113{
114 __register_binfmt(fmt, 1);
115}
116
117extern void unregister_binfmt(struct linux_binfmt *);
118
119extern int __must_check remove_arg_zero(struct linux_binprm *);
120extern int begin_new_exec(struct linux_binprm * bprm);
121extern void setup_new_exec(struct linux_binprm * bprm);
122extern void finalize_exec(struct linux_binprm *bprm);
123extern void would_dump(struct linux_binprm *, struct file *);
124
125extern int suid_dumpable;
126
127
128#define EXSTACK_DEFAULT 0
129#define EXSTACK_DISABLE_X 1
130#define EXSTACK_ENABLE_X 2
131
132extern int setup_arg_pages(struct linux_binprm * bprm,
133 unsigned long stack_top,
134 int executable_stack);
135extern int transfer_args_to_stack(struct linux_binprm *bprm,
136 unsigned long *sp_location);
137extern int bprm_change_interp(const char *interp, struct linux_binprm *bprm);
138int copy_string_kernel(const char *arg, struct linux_binprm *bprm);
139extern void set_binfmt(struct linux_binfmt *new);
140extern ssize_t read_code(struct file *, unsigned long, loff_t, size_t);
141
142int kernel_execve(const char *filename,
143 const char *const *argv, const char *const *envp);
144
145#endif
146