2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _LINUX_BINFMTS_H
|
|
|
|
#define _LINUX_BINFMTS_H
|
|
|
|
|
|
|
|
#include <linux/capability.h>
|
|
|
|
|
|
|
|
struct pt_regs;
|
|
|
|
|
|
|
|
/*
|
2007-07-19 08:48:16 +00:00
|
|
|
* These are the maximum length and maximum number of strings passed to the
|
|
|
|
* execve() system call. MAX_ARG_STRLEN is essentially random but serves to
|
|
|
|
* prevent the kernel from being unduly impacted by misaddressed pointers.
|
|
|
|
* MAX_ARG_STRINGS is chosen to fit in a signed 32-bit integer.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2007-07-19 08:48:16 +00:00
|
|
|
#define MAX_ARG_STRLEN (PAGE_SIZE * 32)
|
|
|
|
#define MAX_ARG_STRINGS 0x7FFFFFFF
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* sizeof(linux_binprm->buf) */
|
|
|
|
#define BINPRM_BUF_SIZE 128
|
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2007-05-17 05:11:16 +00:00
|
|
|
#define CORENAME_MAX_SIZE 128
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* This structure is used to hold the arguments that are used when loading binaries.
|
|
|
|
*/
|
|
|
|
struct linux_binprm{
|
|
|
|
char buf[BINPRM_BUF_SIZE];
|
2007-07-19 08:48:16 +00:00
|
|
|
#ifdef CONFIG_MMU
|
|
|
|
struct vm_area_struct *vma;
|
|
|
|
#else
|
|
|
|
# define MAX_ARG_PAGES 32
|
2005-04-16 22:20:36 +00:00
|
|
|
struct page *page[MAX_ARG_PAGES];
|
2007-07-19 08:48:16 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
struct mm_struct *mm;
|
|
|
|
unsigned long p; /* current top of mem */
|
2008-04-29 07:59:24 +00:00
|
|
|
unsigned int sh_bang:1,
|
|
|
|
misc_bang:1;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct file * file;
|
|
|
|
int e_uid, e_gid;
|
2008-07-24 04:28:24 +00:00
|
|
|
kernel_cap_t cap_post_exec_permitted;
|
Implement file posix capabilities
Implement file posix capabilities. This allows programs to be given a
subset of root's powers regardless of who runs them, without having to use
setuid and giving the binary all of root's powers.
This version works with Kaigai Kohei's userspace tools, found at
http://www.kaigai.gr.jp/index.php. For more information on how to use this
patch, Chris Friedhoff has posted a nice page at
http://www.friedhoff.org/fscaps.html.
Changelog:
Nov 27:
Incorporate fixes from Andrew Morton
(security-introduce-file-caps-tweaks and
security-introduce-file-caps-warning-fix)
Fix Kconfig dependency.
Fix change signaling behavior when file caps are not compiled in.
Nov 13:
Integrate comments from Alexey: Remove CONFIG_ ifdef from
capability.h, and use %zd for printing a size_t.
Nov 13:
Fix endianness warnings by sparse as suggested by Alexey
Dobriyan.
Nov 09:
Address warnings of unused variables at cap_bprm_set_security
when file capabilities are disabled, and simultaneously clean
up the code a little, by pulling the new code into a helper
function.
Nov 08:
For pointers to required userspace tools and how to use
them, see http://www.friedhoff.org/fscaps.html.
Nov 07:
Fix the calculation of the highest bit checked in
check_cap_sanity().
Nov 07:
Allow file caps to be enabled without CONFIG_SECURITY, since
capabilities are the default.
Hook cap_task_setscheduler when !CONFIG_SECURITY.
Move capable(TASK_KILL) to end of cap_task_kill to reduce
audit messages.
Nov 05:
Add secondary calls in selinux/hooks.c to task_setioprio and
task_setscheduler so that selinux and capabilities with file
cap support can be stacked.
Sep 05:
As Seth Arnold points out, uid checks are out of place
for capability code.
Sep 01:
Define task_setscheduler, task_setioprio, cap_task_kill, and
task_setnice to make sure a user cannot affect a process in which
they called a program with some fscaps.
One remaining question is the note under task_setscheduler: are we
ok with CAP_SYS_NICE being sufficient to confine a process to a
cpuset?
It is a semantic change, as without fsccaps, attach_task doesn't
allow CAP_SYS_NICE to override the uid equivalence check. But since
it uses security_task_setscheduler, which elsewhere is used where
CAP_SYS_NICE can be used to override the uid equivalence check,
fixing it might be tough.
task_setscheduler
note: this also controls cpuset:attach_task. Are we ok with
CAP_SYS_NICE being used to confine to a cpuset?
task_setioprio
task_setnice
sys_setpriority uses this (through set_one_prio) for another
process. Need same checks as setrlimit
Aug 21:
Updated secureexec implementation to reflect the fact that
euid and uid might be the same and nonzero, but the process
might still have elevated caps.
Aug 15:
Handle endianness of xattrs.
Enforce capability version match between kernel and disk.
Enforce that no bits beyond the known max capability are
set, else return -EPERM.
With this extra processing, it may be worth reconsidering
doing all the work at bprm_set_security rather than
d_instantiate.
Aug 10:
Always call getxattr at bprm_set_security, rather than
caching it at d_instantiate.
[morgan@kernel.org: file-caps clean up for linux/capability.h]
[bunk@kernel.org: unexport cap_inode_killpriv]
Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
Cc: Stephen Smalley <sds@tycho.nsa.gov>
Cc: James Morris <jmorris@namei.org>
Cc: Chris Wright <chrisw@sous-sol.org>
Cc: Andrew Morgan <morgan@kernel.org>
Signed-off-by: Andrew Morgan <morgan@kernel.org>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-17 06:31:36 +00:00
|
|
|
bool cap_effective;
|
2005-04-16 22:20:36 +00:00
|
|
|
void *security;
|
|
|
|
int argc, envc;
|
|
|
|
char * filename; /* Name of binary as seen by procps */
|
|
|
|
char * interp; /* Name of the binary really executed. Most
|
|
|
|
of the time same as filename, but could be
|
|
|
|
different for binfmt_{misc,script} */
|
|
|
|
unsigned interp_flags;
|
|
|
|
unsigned interp_data;
|
|
|
|
unsigned long loader, exec;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define BINPRM_FLAGS_ENFORCE_NONDUMP_BIT 0
|
|
|
|
#define BINPRM_FLAGS_ENFORCE_NONDUMP (1 << BINPRM_FLAGS_ENFORCE_NONDUMP_BIT)
|
|
|
|
|
|
|
|
/* fd of the binary should be passed to the interpreter */
|
|
|
|
#define BINPRM_FLAGS_EXECFD_BIT 1
|
|
|
|
#define BINPRM_FLAGS_EXECFD (1 << BINPRM_FLAGS_EXECFD_BIT)
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This structure defines the functions that are used to load the binary formats that
|
|
|
|
* linux accepts.
|
|
|
|
*/
|
|
|
|
struct linux_binfmt {
|
2007-10-17 06:26:03 +00:00
|
|
|
struct list_head lh;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct module *module;
|
|
|
|
int (*load_binary)(struct linux_binprm *, struct pt_regs * regs);
|
|
|
|
int (*load_shlib)(struct file *);
|
2007-10-17 06:26:34 +00:00
|
|
|
int (*core_dump)(long signr, struct pt_regs *regs, struct file *file, unsigned long limit);
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long min_coredump; /* minimal dump size */
|
2007-02-13 12:26:26 +00:00
|
|
|
int hasvdso;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern int register_binfmt(struct linux_binfmt *);
|
2007-10-17 06:26:04 +00:00
|
|
|
extern void unregister_binfmt(struct linux_binfmt *);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
extern int prepare_binprm(struct linux_binprm *);
|
2007-07-19 08:48:16 +00:00
|
|
|
extern int __must_check remove_arg_zero(struct linux_binprm *);
|
2005-04-16 22:20:36 +00:00
|
|
|
extern int search_binary_handler(struct linux_binprm *,struct pt_regs *);
|
|
|
|
extern int flush_old_exec(struct linux_binprm * bprm);
|
|
|
|
|
2005-06-23 07:09:43 +00:00
|
|
|
extern int suid_dumpable;
|
|
|
|
#define SUID_DUMP_DISABLE 0 /* No setuid dumping */
|
|
|
|
#define SUID_DUMP_USER 1 /* Dump as user of process */
|
|
|
|
#define SUID_DUMP_ROOT 2 /* Dump as root */
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Stack area protections */
|
|
|
|
#define EXSTACK_DEFAULT 0 /* Whatever the arch defaults to */
|
|
|
|
#define EXSTACK_DISABLE_X 1 /* Disable executable stacks */
|
|
|
|
#define EXSTACK_ENABLE_X 2 /* Enable executable stacks */
|
|
|
|
|
|
|
|
extern int setup_arg_pages(struct linux_binprm * bprm,
|
|
|
|
unsigned long stack_top,
|
|
|
|
int executable_stack);
|
2007-07-19 08:48:16 +00:00
|
|
|
extern int bprm_mm_init(struct linux_binprm *bprm);
|
2005-04-16 22:20:36 +00:00
|
|
|
extern int copy_strings_kernel(int argc,char ** argv,struct linux_binprm *bprm);
|
|
|
|
extern void compute_creds(struct linux_binprm *binprm);
|
|
|
|
extern int do_coredump(long signr, int exit_code, struct pt_regs * regs);
|
|
|
|
extern int set_binfmt(struct linux_binfmt *new);
|
2008-05-10 20:38:25 +00:00
|
|
|
extern void free_bprm(struct linux_binprm *);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* _LINUX_BINFMTS_H */
|