Linux Audio

Check our new training course

Loading...
v4.10.11
 
  1#ifndef _LINUX_BINFMTS_H
  2#define _LINUX_BINFMTS_H
  3
  4#include <linux/sched.h>
  5#include <linux/unistd.h>
  6#include <asm/exec.h>
  7#include <uapi/linux/binfmts.h>
  8
 
 
 
  9#define CORENAME_MAX_SIZE 128
 10
 11/*
 12 * This structure is used to hold the arguments that are used when loading binaries.
 13 */
 14struct linux_binprm {
 15	char buf[BINPRM_BUF_SIZE];
 16#ifdef CONFIG_MMU
 17	struct vm_area_struct *vma;
 18	unsigned long vma_pages;
 19#else
 20# define MAX_ARG_PAGES	32
 21	struct page *page[MAX_ARG_PAGES];
 22#endif
 23	struct mm_struct *mm;
 24	unsigned long p; /* current top of mem */
 
 25	unsigned int
 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 */
 31#ifdef __alpha__
 32	unsigned int taso:1;
 33#endif
 34	unsigned int recursion_depth; /* only for search_binary_handler() */
 35	struct file * file;
 
 
 
 
 
 
 
 
 
 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 */
 39	int argc, envc;
 40	const char * filename;	/* Name of binary as seen by procps */
 41	const char * interp;	/* Name of the binary really executed. Most
 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;
 47};
 
 
 
 
 48
 49#define BINPRM_FLAGS_ENFORCE_NONDUMP_BIT 0
 50#define BINPRM_FLAGS_ENFORCE_NONDUMP (1 << BINPRM_FLAGS_ENFORCE_NONDUMP_BIT)
 51
 52/* fd of the binary should be passed to the interpreter */
 53#define BINPRM_FLAGS_EXECFD_BIT 1
 54#define BINPRM_FLAGS_EXECFD (1 << BINPRM_FLAGS_EXECFD_BIT)
 55
 56/* filename of the binary will be inaccessible after exec */
 57#define BINPRM_FLAGS_PATH_INACCESSIBLE_BIT 2
 58#define BINPRM_FLAGS_PATH_INACCESSIBLE (1 << BINPRM_FLAGS_PATH_INACCESSIBLE_BIT)
 59
 60/* Function parameter for binfmt->coredump */
 61struct coredump_params {
 62	const siginfo_t *siginfo;
 63	struct pt_regs *regs;
 64	struct file *file;
 65	unsigned long limit;
 66	unsigned long mm_flags;
 67	loff_t written;
 68	loff_t pos;
 69};
 70
 71/*
 72 * This structure defines the functions that are used to load the binary formats that
 73 * linux accepts.
 74 */
 75struct linux_binfmt {
 76	struct list_head lh;
 77	struct module *module;
 78	int (*load_binary)(struct linux_binprm *);
 79	int (*load_shlib)(struct file *);
 
 80	int (*core_dump)(struct coredump_params *cprm);
 81	unsigned long min_coredump;	/* minimal dump size */
 82};
 
 
 
 
 
 
 
 
 
 
 
 83
 84extern void __register_binfmt(struct linux_binfmt *fmt, int insert);
 85
 86/* Registration of default binfmt handlers */
 87static inline void register_binfmt(struct linux_binfmt *fmt)
 88{
 89	__register_binfmt(fmt, 0);
 90}
 91/* Same as above, but adds a new binfmt at the top of the list */
 92static inline void insert_binfmt(struct linux_binfmt *fmt)
 93{
 94	__register_binfmt(fmt, 1);
 95}
 96
 97extern void unregister_binfmt(struct linux_binfmt *);
 98
 99extern int prepare_binprm(struct linux_binprm *);
100extern int __must_check remove_arg_zero(struct linux_binprm *);
101extern int search_binary_handler(struct linux_binprm *);
102extern int flush_old_exec(struct linux_binprm * bprm);
103extern void setup_new_exec(struct linux_binprm * bprm);
 
104extern void would_dump(struct linux_binprm *, struct file *);
105
106extern int suid_dumpable;
107
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);
116extern int transfer_args_to_stack(struct linux_binprm *bprm,
117				  unsigned long *sp_location);
118extern int bprm_change_interp(char *interp, struct linux_binprm *bprm);
119extern int copy_strings_kernel(int argc, const char *const *argv,
120			       struct linux_binprm *bprm);
121extern int prepare_bprm_creds(struct linux_binprm *bprm);
122extern void install_exec_creds(struct linux_binprm *bprm);
123extern void set_binfmt(struct linux_binfmt *new);
124extern ssize_t read_code(struct file *, unsigned long, loff_t, size_t);
 
 
 
125
126#endif /* _LINUX_BINFMTS_H */
v6.9.4
  1/* SPDX-License-Identifier: GPL-2.0 */
  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;
 11struct coredump_params;
 12
 13#define CORENAME_MAX_SIZE 128
 14
 15/*
 16 * This structure is used to hold the arguments that are used when loading binaries.
 17 */
 18struct linux_binprm {
 
 19#ifdef CONFIG_MMU
 20	struct vm_area_struct *vma;
 21	unsigned long vma_pages;
 22#else
 23# define MAX_ARG_PAGES	32
 24	struct page *page[MAX_ARG_PAGES];
 25#endif
 26	struct mm_struct *mm;
 27	unsigned long p; /* current top of mem */
 28	unsigned long argmin; /* rlimit marker for copy_strings() */
 29	unsigned int
 30		/* Should an execfd be passed to userspace? */
 31		have_execfd:1,
 32
 33		/* Use the creds of a script (see binfmt_misc) */
 34		execfd_creds:1,
 35		/*
 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.
 39		 */
 40		secureexec:1,
 41		/*
 42		 * Set when errors can no longer be returned to the
 43		 * original userspace.
 44		 */
 45		point_of_no_return:1;
 46	struct file *executable; /* Executable to pass to the interpreter */
 47	struct file *interpreter;
 48	struct file *file;
 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 */
 52	int argc, envc;
 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;
 61
 62	struct rlimit rlim_stack; /* Saved RLIMIT_STACK used during exec. */
 63
 64	char buf[BINPRM_BUF_SIZE];
 65} __randomize_layout;
 66
 67#define BINPRM_FLAGS_ENFORCE_NONDUMP_BIT 0
 68#define BINPRM_FLAGS_ENFORCE_NONDUMP (1 << BINPRM_FLAGS_ENFORCE_NONDUMP_BIT)
 69
 
 
 
 
 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)
 73
 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)
 
 
 
 
 
 
 
 77
 78/*
 79 * This structure defines the functions that are used to load the binary formats that
 80 * linux accepts.
 81 */
 82struct linux_binfmt {
 83	struct list_head lh;
 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 */
 90#endif
 91} __randomize_layout;
 92
 93#if IS_ENABLED(CONFIG_BINFMT_MISC)
 94struct binfmt_misc {
 95	struct list_head entries;
 96	rwlock_t entries_lock;
 97	bool enabled;
 98} __randomize_layout;
 99
100extern struct binfmt_misc init_binfmt_misc;
101#endif
102
103extern void __register_binfmt(struct linux_binfmt *fmt, int insert);
104
105/* Registration of default binfmt handlers */
106static inline void register_binfmt(struct linux_binfmt *fmt)
107{
108	__register_binfmt(fmt, 0);
109}
110/* Same as above, but adds a new binfmt at the top of the list */
111static inline void insert_binfmt(struct linux_binfmt *fmt)
112{
113	__register_binfmt(fmt, 1);
114}
115
116extern void unregister_binfmt(struct linux_binfmt *);
117
 
118extern int __must_check remove_arg_zero(struct linux_binprm *);
119extern int begin_new_exec(struct linux_binprm * bprm);
 
120extern void setup_new_exec(struct linux_binprm * bprm);
121extern void finalize_exec(struct linux_binprm *bprm);
122extern void would_dump(struct linux_binprm *, struct file *);
123
124extern int suid_dumpable;
125
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 */
130
131extern int setup_arg_pages(struct linux_binprm * bprm,
132			   unsigned long stack_top,
133			   int executable_stack);
134extern int transfer_args_to_stack(struct linux_binprm *bprm,
135				  unsigned long *sp_location);
136extern int bprm_change_interp(const char *interp, struct linux_binprm *bprm);
137int copy_string_kernel(const char *arg, struct linux_binprm *bprm);
 
 
 
138extern void set_binfmt(struct linux_binfmt *new);
139extern ssize_t read_code(struct file *, unsigned long, loff_t, size_t);
140
141int kernel_execve(const char *filename,
142		  const char *const *argv, const char *const *envp);
143
144#endif /* _LINUX_BINFMTS_H */