1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_BINFMTS_H
3 #define _LINUX_BINFMTS_H
5 #include <linux/sched.h>
6 #include <linux/unistd.h>
8 #include <uapi/linux/binfmts.h>
11 struct coredump_params
;
13 #define CORENAME_MAX_SIZE 128
16 * This structure is used to hold the arguments that are used when loading binaries.
20 struct vm_area_struct
*vma
;
21 unsigned long vma_pages
;
22 unsigned long argmin
; /* rlimit marker for copy_strings() */
24 # define MAX_ARG_PAGES 32
25 struct page
*page
[MAX_ARG_PAGES
];
28 unsigned long p
; /* current top of mem */
30 /* Should an execfd be passed to userspace? */
33 /* Use the creds of a script (see binfmt_misc) */
36 * Set by bprm_creds_for_exec hook to indicate a
37 * privilege-gaining exec has happened. Used to set
38 * AT_SECURE auxv for glibc.
42 * Set when errors can no longer be returned to the
46 struct file
*executable
; /* Executable to pass to the interpreter */
47 struct file
*interpreter
;
49 struct cred
*cred
; /* new credentials */
50 int unsafe
; /* how unsafe this exec is (mask of LSM_UNSAFE_*) */
51 unsigned int per_clear
; /* bits to clear in current->personality */
53 const char *filename
; /* Name of binary as seen by procps */
54 const char *interp
; /* Name of the binary really executed. Most
55 of the time same as filename, but could be
56 different for binfmt_{misc,script} */
57 const char *fdpath
; /* generated filename for execveat */
58 unsigned interp_flags
;
59 int execfd
; /* File descriptor of the executable */
60 unsigned long loader
, exec
;
62 struct rlimit rlim_stack
; /* Saved RLIMIT_STACK used during exec. */
64 char buf
[BINPRM_BUF_SIZE
];
67 #define BINPRM_FLAGS_ENFORCE_NONDUMP_BIT 0
68 #define BINPRM_FLAGS_ENFORCE_NONDUMP (1 << BINPRM_FLAGS_ENFORCE_NONDUMP_BIT)
70 /* filename of the binary will be inaccessible after exec */
71 #define BINPRM_FLAGS_PATH_INACCESSIBLE_BIT 2
72 #define BINPRM_FLAGS_PATH_INACCESSIBLE (1 << BINPRM_FLAGS_PATH_INACCESSIBLE_BIT)
74 /* preserve argv0 for the interpreter */
75 #define BINPRM_FLAGS_PRESERVE_ARGV0_BIT 3
76 #define BINPRM_FLAGS_PRESERVE_ARGV0 (1 << BINPRM_FLAGS_PRESERVE_ARGV0_BIT)
79 * This structure defines the functions that are used to load the binary formats that
84 struct module
*module
;
85 int (*load_binary
)(struct linux_binprm
*);
86 int (*load_shlib
)(struct file
*);
87 #ifdef CONFIG_COREDUMP
88 int (*core_dump
)(struct coredump_params
*cprm
);
89 unsigned long min_coredump
; /* minimal dump size */
93 #if IS_ENABLED(CONFIG_BINFMT_MISC)
95 struct list_head entries
;
96 rwlock_t entries_lock
;
100 extern struct binfmt_misc init_binfmt_misc
;
103 extern void __register_binfmt(struct linux_binfmt
*fmt
, int insert
);
105 /* Registration of default binfmt handlers */
106 static inline void register_binfmt(struct linux_binfmt
*fmt
)
108 __register_binfmt(fmt
, 0);
110 /* Same as above, but adds a new binfmt at the top of the list */
111 static inline void insert_binfmt(struct linux_binfmt
*fmt
)
113 __register_binfmt(fmt
, 1);
116 extern void unregister_binfmt(struct linux_binfmt
*);
118 extern int __must_check
remove_arg_zero(struct linux_binprm
*);
119 extern int begin_new_exec(struct linux_binprm
* bprm
);
120 extern void setup_new_exec(struct linux_binprm
* bprm
);
121 extern void finalize_exec(struct linux_binprm
*bprm
);
122 extern void would_dump(struct linux_binprm
*, struct file
*);
124 extern int suid_dumpable
;
126 /* Stack area protections */
127 #define EXSTACK_DEFAULT 0 /* Whatever the arch defaults to */
128 #define EXSTACK_DISABLE_X 1 /* Disable executable stacks */
129 #define EXSTACK_ENABLE_X 2 /* Enable executable stacks */
131 extern int setup_arg_pages(struct linux_binprm
* bprm
,
132 unsigned long stack_top
,
133 int executable_stack
);
134 extern int transfer_args_to_stack(struct linux_binprm
*bprm
,
135 unsigned long *sp_location
);
136 extern int bprm_change_interp(const char *interp
, struct linux_binprm
*bprm
);
137 int copy_string_kernel(const char *arg
, struct linux_binprm
*bprm
);
138 extern void set_binfmt(struct linux_binfmt
*new);
139 extern ssize_t
read_code(struct file
*, unsigned long, loff_t
, size_t);
141 int kernel_execve(const char *filename
,
142 const char *const *argv
, const char *const *envp
);
144 #endif /* _LINUX_BINFMTS_H */