4 * Copyright (C) 1991, 1992 Linus Torvalds
8 * #!-checking implemented by tytso.
11 * Demand-loading implemented 01.12.91 - no need to read anything but
12 * the header into memory. The inode of the executable is put into
13 * "current->executable", and page faults do the actual loading. Clean.
15 * Once more I can proudly say that linux stood up to being changed: it
16 * was less than 2 hours work to get demand-loading completely implemented.
18 * Demand loading changed July 1993 by Eric Youngdale. Use mmap instead,
19 * current->executable is only used by the procfs. This allows a dispatch
20 * table to check for several different types of binary formats. We keep
21 * trying until we recognize the file or we run out of supported binary
25 #include <linux/slab.h>
26 #include <linux/file.h>
27 #include <linux/mman.h>
28 #include <linux/a.out.h>
29 #include <linux/stat.h>
30 #include <linux/fcntl.h>
31 #include <linux/smp_lock.h>
32 #include <linux/init.h>
33 #include <linux/pagemap.h>
34 #include <linux/highmem.h>
35 #include <linux/spinlock.h>
36 #include <linux/key.h>
37 #include <linux/personality.h>
38 #include <linux/binfmts.h>
39 #include <linux/swap.h>
40 #include <linux/utsname.h>
41 #include <linux/pid_namespace.h>
42 #include <linux/module.h>
43 #include <linux/namei.h>
44 #include <linux/proc_fs.h>
45 #include <linux/ptrace.h>
46 #include <linux/mount.h>
47 #include <linux/security.h>
48 #include <linux/syscalls.h>
49 #include <linux/rmap.h>
50 #include <linux/tsacct_kern.h>
51 #include <linux/cn_proc.h>
52 #include <linux/audit.h>
54 #include <asm/uaccess.h>
55 #include <asm/mmu_context.h>
58 #include <linux/kmod.h>
62 char core_pattern
[128] = "core";
63 int suid_dumpable
= 0;
65 EXPORT_SYMBOL(suid_dumpable
);
66 /* The maximal length of core_pattern is also specified in sysctl.c */
68 static struct linux_binfmt
*formats
;
69 static DEFINE_RWLOCK(binfmt_lock
);
71 int register_binfmt(struct linux_binfmt
* fmt
)
73 struct linux_binfmt
** tmp
= &formats
;
79 write_lock(&binfmt_lock
);
82 write_unlock(&binfmt_lock
);
89 write_unlock(&binfmt_lock
);
93 EXPORT_SYMBOL(register_binfmt
);
95 int unregister_binfmt(struct linux_binfmt
* fmt
)
97 struct linux_binfmt
** tmp
= &formats
;
99 write_lock(&binfmt_lock
);
104 write_unlock(&binfmt_lock
);
109 write_unlock(&binfmt_lock
);
113 EXPORT_SYMBOL(unregister_binfmt
);
115 static inline void put_binfmt(struct linux_binfmt
* fmt
)
117 module_put(fmt
->module
);
121 * Note that a shared library must be both readable and executable due to
124 * Also note that we take the address to load from from the file itself.
126 asmlinkage
long sys_uselib(const char __user
* library
)
132 error
= __user_path_lookup_open(library
, LOOKUP_FOLLOW
, &nd
, FMODE_READ
|FMODE_EXEC
);
137 if (!S_ISREG(nd
.dentry
->d_inode
->i_mode
))
140 error
= vfs_permission(&nd
, MAY_READ
| MAY_EXEC
);
144 file
= nameidata_to_filp(&nd
, O_RDONLY
);
145 error
= PTR_ERR(file
);
151 struct linux_binfmt
* fmt
;
153 read_lock(&binfmt_lock
);
154 for (fmt
= formats
; fmt
; fmt
= fmt
->next
) {
155 if (!fmt
->load_shlib
)
157 if (!try_module_get(fmt
->module
))
159 read_unlock(&binfmt_lock
);
160 error
= fmt
->load_shlib(file
);
161 read_lock(&binfmt_lock
);
163 if (error
!= -ENOEXEC
)
166 read_unlock(&binfmt_lock
);
172 release_open_intent(&nd
);
178 * count() counts the number of strings in array ARGV.
180 static int count(char __user
* __user
* argv
, int max
)
188 if (get_user(p
, argv
))
202 * 'copy_strings()' copies argument/environment strings from user
203 * memory to free pages in kernel mem. These are in a format ready
204 * to be put directly into the top of new user memory.
206 static int copy_strings(int argc
, char __user
* __user
* argv
,
207 struct linux_binprm
*bprm
)
209 struct page
*kmapped_page
= NULL
;
218 if (get_user(str
, argv
+argc
) ||
219 !(len
= strnlen_user(str
, bprm
->p
))) {
230 /* XXX: add architecture specific overflow check here. */
235 int offset
, bytes_to_copy
;
238 offset
= pos
% PAGE_SIZE
;
240 page
= bprm
->page
[i
];
243 page
= alloc_page(GFP_HIGHUSER
);
244 bprm
->page
[i
] = page
;
252 if (page
!= kmapped_page
) {
254 kunmap(kmapped_page
);
256 kaddr
= kmap(kmapped_page
);
259 memset(kaddr
, 0, offset
);
260 bytes_to_copy
= PAGE_SIZE
- offset
;
261 if (bytes_to_copy
> len
) {
264 memset(kaddr
+offset
+len
, 0,
265 PAGE_SIZE
-offset
-len
);
267 err
= copy_from_user(kaddr
+offset
, str
, bytes_to_copy
);
273 pos
+= bytes_to_copy
;
274 str
+= bytes_to_copy
;
275 len
-= bytes_to_copy
;
281 kunmap(kmapped_page
);
286 * Like copy_strings, but get argv and its values from kernel memory.
288 int copy_strings_kernel(int argc
,char ** argv
, struct linux_binprm
*bprm
)
291 mm_segment_t oldfs
= get_fs();
293 r
= copy_strings(argc
, (char __user
* __user
*)argv
, bprm
);
298 EXPORT_SYMBOL(copy_strings_kernel
);
302 * This routine is used to map in a page into an address space: needed by
303 * execve() for the initial stack and environment pages.
305 * vma->vm_mm->mmap_sem is held for writing.
307 void install_arg_page(struct vm_area_struct
*vma
,
308 struct page
*page
, unsigned long address
)
310 struct mm_struct
*mm
= vma
->vm_mm
;
314 if (unlikely(anon_vma_prepare(vma
)))
317 flush_dcache_page(page
);
318 pte
= get_locked_pte(mm
, address
, &ptl
);
321 if (!pte_none(*pte
)) {
322 pte_unmap_unlock(pte
, ptl
);
325 inc_mm_counter(mm
, anon_rss
);
326 lru_cache_add_active(page
);
327 set_pte_at(mm
, address
, pte
, pte_mkdirty(pte_mkwrite(mk_pte(
328 page
, vma
->vm_page_prot
))));
329 page_add_new_anon_rmap(page
, vma
, address
);
330 pte_unmap_unlock(pte
, ptl
);
332 /* no need for flush_tlb */
336 force_sig(SIGKILL
, current
);
339 #define EXTRA_STACK_VM_PAGES 20 /* random */
341 int setup_arg_pages(struct linux_binprm
*bprm
,
342 unsigned long stack_top
,
343 int executable_stack
)
345 unsigned long stack_base
;
346 struct vm_area_struct
*mpnt
;
347 struct mm_struct
*mm
= current
->mm
;
351 #ifdef CONFIG_STACK_GROWSUP
352 /* Move the argument and environment strings to the bottom of the
358 /* Start by shifting all the pages down */
360 for (j
= 0; j
< MAX_ARG_PAGES
; j
++) {
361 struct page
*page
= bprm
->page
[j
];
364 bprm
->page
[i
++] = page
;
367 /* Now move them within their pages */
368 offset
= bprm
->p
% PAGE_SIZE
;
369 to
= kmap(bprm
->page
[0]);
370 for (j
= 1; j
< i
; j
++) {
371 memmove(to
, to
+ offset
, PAGE_SIZE
- offset
);
372 from
= kmap(bprm
->page
[j
]);
373 memcpy(to
+ PAGE_SIZE
- offset
, from
, offset
);
374 kunmap(bprm
->page
[j
- 1]);
377 memmove(to
, to
+ offset
, PAGE_SIZE
- offset
);
378 kunmap(bprm
->page
[j
- 1]);
380 /* Limit stack size to 1GB */
381 stack_base
= current
->signal
->rlim
[RLIMIT_STACK
].rlim_max
;
382 if (stack_base
> (1 << 30))
383 stack_base
= 1 << 30;
384 stack_base
= PAGE_ALIGN(stack_top
- stack_base
);
386 /* Adjust bprm->p to point to the end of the strings. */
387 bprm
->p
= stack_base
+ PAGE_SIZE
* i
- offset
;
389 mm
->arg_start
= stack_base
;
390 arg_size
= i
<< PAGE_SHIFT
;
392 /* zero pages that were copied above */
393 while (i
< MAX_ARG_PAGES
)
394 bprm
->page
[i
++] = NULL
;
396 stack_base
= arch_align_stack(stack_top
- MAX_ARG_PAGES
*PAGE_SIZE
);
397 stack_base
= PAGE_ALIGN(stack_base
);
398 bprm
->p
+= stack_base
;
399 mm
->arg_start
= bprm
->p
;
400 arg_size
= stack_top
- (PAGE_MASK
& (unsigned long) mm
->arg_start
);
403 arg_size
+= EXTRA_STACK_VM_PAGES
* PAGE_SIZE
;
406 bprm
->loader
+= stack_base
;
407 bprm
->exec
+= stack_base
;
409 mpnt
= kmem_cache_zalloc(vm_area_cachep
, GFP_KERNEL
);
413 down_write(&mm
->mmap_sem
);
416 #ifdef CONFIG_STACK_GROWSUP
417 mpnt
->vm_start
= stack_base
;
418 mpnt
->vm_end
= stack_base
+ arg_size
;
420 mpnt
->vm_end
= stack_top
;
421 mpnt
->vm_start
= mpnt
->vm_end
- arg_size
;
423 /* Adjust stack execute permissions; explicitly enable
424 * for EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X
425 * and leave alone (arch default) otherwise. */
426 if (unlikely(executable_stack
== EXSTACK_ENABLE_X
))
427 mpnt
->vm_flags
= VM_STACK_FLAGS
| VM_EXEC
;
428 else if (executable_stack
== EXSTACK_DISABLE_X
)
429 mpnt
->vm_flags
= VM_STACK_FLAGS
& ~VM_EXEC
;
431 mpnt
->vm_flags
= VM_STACK_FLAGS
;
432 mpnt
->vm_flags
|= mm
->def_flags
;
433 mpnt
->vm_page_prot
= protection_map
[mpnt
->vm_flags
& 0x7];
434 if ((ret
= insert_vm_struct(mm
, mpnt
))) {
435 up_write(&mm
->mmap_sem
);
436 kmem_cache_free(vm_area_cachep
, mpnt
);
439 mm
->stack_vm
= mm
->total_vm
= vma_pages(mpnt
);
442 for (i
= 0 ; i
< MAX_ARG_PAGES
; i
++) {
443 struct page
*page
= bprm
->page
[i
];
445 bprm
->page
[i
] = NULL
;
446 install_arg_page(mpnt
, page
, stack_base
);
448 stack_base
+= PAGE_SIZE
;
450 up_write(&mm
->mmap_sem
);
455 EXPORT_SYMBOL(setup_arg_pages
);
457 #define free_arg_pages(bprm) do { } while (0)
461 static inline void free_arg_pages(struct linux_binprm
*bprm
)
465 for (i
= 0; i
< MAX_ARG_PAGES
; i
++) {
467 __free_page(bprm
->page
[i
]);
468 bprm
->page
[i
] = NULL
;
472 #endif /* CONFIG_MMU */
474 struct file
*open_exec(const char *name
)
480 err
= path_lookup_open(AT_FDCWD
, name
, LOOKUP_FOLLOW
, &nd
, FMODE_READ
|FMODE_EXEC
);
484 struct inode
*inode
= nd
.dentry
->d_inode
;
485 file
= ERR_PTR(-EACCES
);
486 if (!(nd
.mnt
->mnt_flags
& MNT_NOEXEC
) &&
487 S_ISREG(inode
->i_mode
)) {
488 int err
= vfs_permission(&nd
, MAY_EXEC
);
491 file
= nameidata_to_filp(&nd
, O_RDONLY
);
493 err
= deny_write_access(file
);
503 release_open_intent(&nd
);
509 EXPORT_SYMBOL(open_exec
);
511 int kernel_read(struct file
*file
, unsigned long offset
,
512 char *addr
, unsigned long count
)
520 /* The cast to a user pointer is valid due to the set_fs() */
521 result
= vfs_read(file
, (void __user
*)addr
, count
, &pos
);
526 EXPORT_SYMBOL(kernel_read
);
528 static int exec_mmap(struct mm_struct
*mm
)
530 struct task_struct
*tsk
;
531 struct mm_struct
* old_mm
, *active_mm
;
533 /* Notify parent that we're no longer interested in the old VM */
535 old_mm
= current
->mm
;
536 mm_release(tsk
, old_mm
);
540 * Make sure that if there is a core dump in progress
541 * for the old mm, we get out and die instead of going
542 * through with the exec. We must hold mmap_sem around
543 * checking core_waiters and changing tsk->mm. The
544 * core-inducing thread will increment core_waiters for
545 * each thread whose ->mm == old_mm.
547 down_read(&old_mm
->mmap_sem
);
548 if (unlikely(old_mm
->core_waiters
)) {
549 up_read(&old_mm
->mmap_sem
);
554 active_mm
= tsk
->active_mm
;
557 activate_mm(active_mm
, mm
);
559 arch_pick_mmap_layout(mm
);
561 up_read(&old_mm
->mmap_sem
);
562 BUG_ON(active_mm
!= old_mm
);
571 * This function makes sure the current process has its own signal table,
572 * so that flush_signal_handlers can later reset the handlers without
573 * disturbing other processes. (Other processes might share the signal
574 * table via the CLONE_SIGHAND option to clone().)
576 static int de_thread(struct task_struct
*tsk
)
578 struct signal_struct
*sig
= tsk
->signal
;
579 struct sighand_struct
*newsighand
, *oldsighand
= tsk
->sighand
;
580 spinlock_t
*lock
= &oldsighand
->siglock
;
581 struct task_struct
*leader
= NULL
;
585 * If we don't share sighandlers, then we aren't sharing anything
586 * and we can just re-use it all.
588 if (atomic_read(&oldsighand
->count
) <= 1) {
589 BUG_ON(atomic_read(&sig
->count
) != 1);
594 newsighand
= kmem_cache_alloc(sighand_cachep
, GFP_KERNEL
);
598 if (thread_group_empty(tsk
))
599 goto no_thread_group
;
602 * Kill all other threads in the thread group.
603 * We must hold tasklist_lock to call zap_other_threads.
605 read_lock(&tasklist_lock
);
607 if (sig
->flags
& SIGNAL_GROUP_EXIT
) {
609 * Another group action in progress, just
610 * return so that the signal is processed.
612 spin_unlock_irq(lock
);
613 read_unlock(&tasklist_lock
);
614 kmem_cache_free(sighand_cachep
, newsighand
);
619 * child_reaper ignores SIGKILL, change it now.
620 * Reparenting needs write_lock on tasklist_lock,
621 * so it is safe to do it under read_lock.
623 if (unlikely(tsk
->group_leader
== child_reaper(tsk
)))
624 tsk
->nsproxy
->pid_ns
->child_reaper
= tsk
;
626 zap_other_threads(tsk
);
627 read_unlock(&tasklist_lock
);
630 * Account for the thread group leader hanging around:
633 if (!thread_group_leader(tsk
)) {
636 * The SIGALRM timer survives the exec, but needs to point
637 * at us as the new group leader now. We have a race with
638 * a timer firing now getting the old leader, so we need to
639 * synchronize with any firing (by calling del_timer_sync)
640 * before we can safely let the old group leader die.
643 spin_unlock_irq(lock
);
644 if (hrtimer_cancel(&sig
->real_timer
))
645 hrtimer_restart(&sig
->real_timer
);
648 while (atomic_read(&sig
->count
) > count
) {
649 sig
->group_exit_task
= tsk
;
650 sig
->notify_count
= count
;
651 __set_current_state(TASK_UNINTERRUPTIBLE
);
652 spin_unlock_irq(lock
);
656 sig
->group_exit_task
= NULL
;
657 sig
->notify_count
= 0;
658 spin_unlock_irq(lock
);
661 * At this point all other threads have exited, all we have to
662 * do is to wait for the thread group leader to become inactive,
663 * and to assume its PID:
665 if (!thread_group_leader(tsk
)) {
667 * Wait for the thread group leader to be a zombie.
668 * It should already be zombie at this point, most
671 leader
= tsk
->group_leader
;
672 while (leader
->exit_state
!= EXIT_ZOMBIE
)
676 * The only record we have of the real-time age of a
677 * process, regardless of execs it's done, is start_time.
678 * All the past CPU time is accumulated in signal_struct
679 * from sister threads now dead. But in this non-leader
680 * exec, nothing survives from the original leader thread,
681 * whose birth marks the true age of this process now.
682 * When we take on its identity by switching to its PID, we
683 * also take its birthdate (always earlier than our own).
685 tsk
->start_time
= leader
->start_time
;
687 write_lock_irq(&tasklist_lock
);
689 BUG_ON(leader
->tgid
!= tsk
->tgid
);
690 BUG_ON(tsk
->pid
== tsk
->tgid
);
692 * An exec() starts a new thread group with the
693 * TGID of the previous thread group. Rehash the
694 * two threads with a switched PID, and release
695 * the former thread group leader:
698 /* Become a process group leader with the old leader's pid.
699 * The old leader becomes a thread of the this thread group.
700 * Note: The old leader also uses this pid until release_task
701 * is called. Odd but simple and correct.
703 detach_pid(tsk
, PIDTYPE_PID
);
704 tsk
->pid
= leader
->pid
;
705 attach_pid(tsk
, PIDTYPE_PID
, tsk
->pid
);
706 transfer_pid(leader
, tsk
, PIDTYPE_PGID
);
707 transfer_pid(leader
, tsk
, PIDTYPE_SID
);
708 list_replace_rcu(&leader
->tasks
, &tsk
->tasks
);
710 tsk
->group_leader
= tsk
;
711 leader
->group_leader
= tsk
;
713 tsk
->exit_signal
= SIGCHLD
;
715 BUG_ON(leader
->exit_state
!= EXIT_ZOMBIE
);
716 leader
->exit_state
= EXIT_DEAD
;
718 write_unlock_irq(&tasklist_lock
);
722 * There may be one thread left which is just exiting,
723 * but it's safe to stop telling the group to kill themselves.
730 release_task(leader
);
732 BUG_ON(atomic_read(&sig
->count
) != 1);
734 if (atomic_read(&oldsighand
->count
) == 1) {
736 * Now that we nuked the rest of the thread group,
737 * it turns out we are not sharing sighand any more either.
738 * So we can just keep it.
740 kmem_cache_free(sighand_cachep
, newsighand
);
743 * Move our state over to newsighand and switch it in.
745 atomic_set(&newsighand
->count
, 1);
746 memcpy(newsighand
->action
, oldsighand
->action
,
747 sizeof(newsighand
->action
));
749 write_lock_irq(&tasklist_lock
);
750 spin_lock(&oldsighand
->siglock
);
751 spin_lock_nested(&newsighand
->siglock
, SINGLE_DEPTH_NESTING
);
753 rcu_assign_pointer(tsk
->sighand
, newsighand
);
756 spin_unlock(&newsighand
->siglock
);
757 spin_unlock(&oldsighand
->siglock
);
758 write_unlock_irq(&tasklist_lock
);
760 if (atomic_dec_and_test(&oldsighand
->count
))
761 kmem_cache_free(sighand_cachep
, oldsighand
);
764 BUG_ON(!thread_group_leader(tsk
));
769 * These functions flushes out all traces of the currently running executable
770 * so that a new one can be started
773 static void flush_old_files(struct files_struct
* files
)
778 spin_lock(&files
->file_lock
);
780 unsigned long set
, i
;
784 fdt
= files_fdtable(files
);
785 if (i
>= fdt
->max_fds
)
787 set
= fdt
->close_on_exec
->fds_bits
[j
];
790 fdt
->close_on_exec
->fds_bits
[j
] = 0;
791 spin_unlock(&files
->file_lock
);
792 for ( ; set
; i
++,set
>>= 1) {
797 spin_lock(&files
->file_lock
);
800 spin_unlock(&files
->file_lock
);
803 void get_task_comm(char *buf
, struct task_struct
*tsk
)
805 /* buf must be at least sizeof(tsk->comm) in size */
807 strncpy(buf
, tsk
->comm
, sizeof(tsk
->comm
));
811 void set_task_comm(struct task_struct
*tsk
, char *buf
)
814 strlcpy(tsk
->comm
, buf
, sizeof(tsk
->comm
));
818 int flush_old_exec(struct linux_binprm
* bprm
)
822 struct files_struct
*files
;
823 char tcomm
[sizeof(current
->comm
)];
826 * Make sure we have a private signal table and that
827 * we are unassociated from the previous thread group.
829 retval
= de_thread(current
);
834 * Make sure we have private file handles. Ask the
835 * fork helper to do the work for us and the exit
836 * helper to do the cleanup of the old one.
838 files
= current
->files
; /* refcounted so safe to hold */
839 retval
= unshare_files();
843 * Release all of the old mmap stuff
845 retval
= exec_mmap(bprm
->mm
);
849 bprm
->mm
= NULL
; /* We're using it now */
851 /* This is the point of no return */
852 put_files_struct(files
);
854 current
->sas_ss_sp
= current
->sas_ss_size
= 0;
856 if (current
->euid
== current
->uid
&& current
->egid
== current
->gid
)
857 current
->mm
->dumpable
= 1;
859 current
->mm
->dumpable
= suid_dumpable
;
861 name
= bprm
->filename
;
863 /* Copies the binary name from after last slash */
864 for (i
=0; (ch
= *(name
++)) != '\0';) {
866 i
= 0; /* overwrite what we wrote */
868 if (i
< (sizeof(tcomm
) - 1))
872 set_task_comm(current
, tcomm
);
874 current
->flags
&= ~PF_RANDOMIZE
;
877 /* Set the new mm task size. We have to do that late because it may
878 * depend on TIF_32BIT which is only updated in flush_thread() on
879 * some architectures like powerpc
881 current
->mm
->task_size
= TASK_SIZE
;
883 if (bprm
->e_uid
!= current
->euid
|| bprm
->e_gid
!= current
->egid
||
884 file_permission(bprm
->file
, MAY_READ
) ||
885 (bprm
->interp_flags
& BINPRM_FLAGS_ENFORCE_NONDUMP
)) {
887 current
->mm
->dumpable
= suid_dumpable
;
890 /* An exec changes our domain. We are no longer part of the thread
893 current
->self_exec_id
++;
895 flush_signal_handlers(current
, 0);
896 flush_old_files(current
->files
);
901 reset_files_struct(current
, files
);
906 EXPORT_SYMBOL(flush_old_exec
);
909 * Fill the binprm structure from the inode.
910 * Check permissions, then read the first 128 (BINPRM_BUF_SIZE) bytes
912 int prepare_binprm(struct linux_binprm
*bprm
)
915 struct inode
* inode
= bprm
->file
->f_path
.dentry
->d_inode
;
918 mode
= inode
->i_mode
;
919 if (bprm
->file
->f_op
== NULL
)
922 bprm
->e_uid
= current
->euid
;
923 bprm
->e_gid
= current
->egid
;
925 if(!(bprm
->file
->f_path
.mnt
->mnt_flags
& MNT_NOSUID
)) {
927 if (mode
& S_ISUID
) {
928 current
->personality
&= ~PER_CLEAR_ON_SETID
;
929 bprm
->e_uid
= inode
->i_uid
;
934 * If setgid is set but no group execute bit then this
935 * is a candidate for mandatory locking, not a setgid
938 if ((mode
& (S_ISGID
| S_IXGRP
)) == (S_ISGID
| S_IXGRP
)) {
939 current
->personality
&= ~PER_CLEAR_ON_SETID
;
940 bprm
->e_gid
= inode
->i_gid
;
944 /* fill in binprm security blob */
945 retval
= security_bprm_set(bprm
);
949 memset(bprm
->buf
,0,BINPRM_BUF_SIZE
);
950 return kernel_read(bprm
->file
,0,bprm
->buf
,BINPRM_BUF_SIZE
);
953 EXPORT_SYMBOL(prepare_binprm
);
955 static int unsafe_exec(struct task_struct
*p
)
958 if (p
->ptrace
& PT_PTRACED
) {
959 if (p
->ptrace
& PT_PTRACE_CAP
)
960 unsafe
|= LSM_UNSAFE_PTRACE_CAP
;
962 unsafe
|= LSM_UNSAFE_PTRACE
;
964 if (atomic_read(&p
->fs
->count
) > 1 ||
965 atomic_read(&p
->files
->count
) > 1 ||
966 atomic_read(&p
->sighand
->count
) > 1)
967 unsafe
|= LSM_UNSAFE_SHARE
;
972 void compute_creds(struct linux_binprm
*bprm
)
976 if (bprm
->e_uid
!= current
->uid
)
981 unsafe
= unsafe_exec(current
);
982 security_bprm_apply_creds(bprm
, unsafe
);
983 task_unlock(current
);
984 security_bprm_post_apply_creds(bprm
);
986 EXPORT_SYMBOL(compute_creds
);
989 * Arguments are '\0' separated strings found at the location bprm->p
990 * points to; chop off the first by relocating brpm->p to right after
991 * the first '\0' encountered.
993 void remove_arg_zero(struct linux_binprm
*bprm
)
999 unsigned long offset
;
1000 unsigned long index
;
1004 offset
= bprm
->p
& ~PAGE_MASK
;
1005 index
= bprm
->p
>> PAGE_SHIFT
;
1007 page
= bprm
->page
[index
];
1008 kaddr
= kmap_atomic(page
, KM_USER0
);
1010 /* run through page until we reach end or find NUL */
1012 ch
= *(kaddr
+ offset
);
1014 /* discard that character... */
1017 } while (offset
< PAGE_SIZE
&& ch
!= '\0');
1019 kunmap_atomic(kaddr
, KM_USER0
);
1021 /* free the old page */
1022 if (offset
== PAGE_SIZE
) {
1024 bprm
->page
[index
] = NULL
;
1026 } while (ch
!= '\0');
1031 EXPORT_SYMBOL(remove_arg_zero
);
1034 * cycle the list of binary formats handler, until one recognizes the image
1036 int search_binary_handler(struct linux_binprm
*bprm
,struct pt_regs
*regs
)
1039 struct linux_binfmt
*fmt
;
1041 /* handle /sbin/loader.. */
1043 struct exec
* eh
= (struct exec
*) bprm
->buf
;
1045 if (!bprm
->loader
&& eh
->fh
.f_magic
== 0x183 &&
1046 (eh
->fh
.f_flags
& 0x3000) == 0x3000)
1049 unsigned long loader
;
1051 allow_write_access(bprm
->file
);
1055 loader
= PAGE_SIZE
*MAX_ARG_PAGES
-sizeof(void *);
1057 file
= open_exec("/sbin/loader");
1058 retval
= PTR_ERR(file
);
1062 /* Remember if the application is TASO. */
1063 bprm
->sh_bang
= eh
->ah
.entry
< 0x100000000UL
;
1066 bprm
->loader
= loader
;
1067 retval
= prepare_binprm(bprm
);
1070 /* should call search_binary_handler recursively here,
1071 but it does not matter */
1075 retval
= security_bprm_check(bprm
);
1079 /* kernel module loader fixup */
1080 /* so we don't try to load run modprobe in kernel space. */
1083 retval
= audit_bprm(bprm
);
1088 for (try=0; try<2; try++) {
1089 read_lock(&binfmt_lock
);
1090 for (fmt
= formats
; fmt
; fmt
= fmt
->next
) {
1091 int (*fn
)(struct linux_binprm
*, struct pt_regs
*) = fmt
->load_binary
;
1094 if (!try_module_get(fmt
->module
))
1096 read_unlock(&binfmt_lock
);
1097 retval
= fn(bprm
, regs
);
1100 allow_write_access(bprm
->file
);
1104 current
->did_exec
= 1;
1105 proc_exec_connector(current
);
1108 read_lock(&binfmt_lock
);
1110 if (retval
!= -ENOEXEC
|| bprm
->mm
== NULL
)
1113 read_unlock(&binfmt_lock
);
1117 read_unlock(&binfmt_lock
);
1118 if (retval
!= -ENOEXEC
|| bprm
->mm
== NULL
) {
1122 #define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
1123 if (printable(bprm
->buf
[0]) &&
1124 printable(bprm
->buf
[1]) &&
1125 printable(bprm
->buf
[2]) &&
1126 printable(bprm
->buf
[3]))
1127 break; /* -ENOEXEC */
1128 request_module("binfmt-%04x", *(unsigned short *)(&bprm
->buf
[2]));
1135 EXPORT_SYMBOL(search_binary_handler
);
1138 * sys_execve() executes a new program.
1140 int do_execve(char * filename
,
1141 char __user
*__user
*argv
,
1142 char __user
*__user
*envp
,
1143 struct pt_regs
* regs
)
1145 struct linux_binprm
*bprm
;
1151 bprm
= kzalloc(sizeof(*bprm
), GFP_KERNEL
);
1155 file
= open_exec(filename
);
1156 retval
= PTR_ERR(file
);
1162 bprm
->p
= PAGE_SIZE
*MAX_ARG_PAGES
-sizeof(void *);
1165 bprm
->filename
= filename
;
1166 bprm
->interp
= filename
;
1167 bprm
->mm
= mm_alloc();
1172 retval
= init_new_context(current
, bprm
->mm
);
1176 bprm
->argc
= count(argv
, bprm
->p
/ sizeof(void *));
1177 if ((retval
= bprm
->argc
) < 0)
1180 bprm
->envc
= count(envp
, bprm
->p
/ sizeof(void *));
1181 if ((retval
= bprm
->envc
) < 0)
1184 retval
= security_bprm_alloc(bprm
);
1188 retval
= prepare_binprm(bprm
);
1192 retval
= copy_strings_kernel(1, &bprm
->filename
, bprm
);
1196 bprm
->exec
= bprm
->p
;
1197 retval
= copy_strings(bprm
->envc
, envp
, bprm
);
1201 retval
= copy_strings(bprm
->argc
, argv
, bprm
);
1205 retval
= search_binary_handler(bprm
,regs
);
1207 free_arg_pages(bprm
);
1209 /* execve success */
1210 security_bprm_free(bprm
);
1211 acct_update_integrals(current
);
1217 /* Something went wrong, return the inode and free the argument pages*/
1218 for (i
= 0 ; i
< MAX_ARG_PAGES
; i
++) {
1219 struct page
* page
= bprm
->page
[i
];
1225 security_bprm_free(bprm
);
1233 allow_write_access(bprm
->file
);
1244 int set_binfmt(struct linux_binfmt
*new)
1246 struct linux_binfmt
*old
= current
->binfmt
;
1249 if (!try_module_get(new->module
))
1252 current
->binfmt
= new;
1254 module_put(old
->module
);
1258 EXPORT_SYMBOL(set_binfmt
);
1260 #define CORENAME_MAX_SIZE 64
1262 /* format_corename will inspect the pattern parameter, and output a
1263 * name into corename, which must have space for at least
1264 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
1266 static int format_corename(char *corename
, const char *pattern
, long signr
)
1268 const char *pat_ptr
= pattern
;
1269 char *out_ptr
= corename
;
1270 char *const out_end
= corename
+ CORENAME_MAX_SIZE
;
1272 int pid_in_pattern
= 0;
1275 if (*pattern
== '|')
1278 /* Repeat as long as we have more pattern to process and more output
1281 if (*pat_ptr
!= '%') {
1282 if (out_ptr
== out_end
)
1284 *out_ptr
++ = *pat_ptr
++;
1286 switch (*++pat_ptr
) {
1289 /* Double percent, output one percent */
1291 if (out_ptr
== out_end
)
1298 rc
= snprintf(out_ptr
, out_end
- out_ptr
,
1299 "%d", current
->tgid
);
1300 if (rc
> out_end
- out_ptr
)
1306 rc
= snprintf(out_ptr
, out_end
- out_ptr
,
1307 "%d", current
->uid
);
1308 if (rc
> out_end
- out_ptr
)
1314 rc
= snprintf(out_ptr
, out_end
- out_ptr
,
1315 "%d", current
->gid
);
1316 if (rc
> out_end
- out_ptr
)
1320 /* signal that caused the coredump */
1322 rc
= snprintf(out_ptr
, out_end
- out_ptr
,
1324 if (rc
> out_end
- out_ptr
)
1328 /* UNIX time of coredump */
1331 do_gettimeofday(&tv
);
1332 rc
= snprintf(out_ptr
, out_end
- out_ptr
,
1334 if (rc
> out_end
- out_ptr
)
1341 down_read(&uts_sem
);
1342 rc
= snprintf(out_ptr
, out_end
- out_ptr
,
1343 "%s", utsname()->nodename
);
1345 if (rc
> out_end
- out_ptr
)
1351 rc
= snprintf(out_ptr
, out_end
- out_ptr
,
1352 "%s", current
->comm
);
1353 if (rc
> out_end
- out_ptr
)
1363 /* Backward compatibility with core_uses_pid:
1365 * If core_pattern does not include a %p (as is the default)
1366 * and core_uses_pid is set, then .%pid will be appended to
1367 * the filename. Do not do this for piped commands. */
1368 if (!ispipe
&& !pid_in_pattern
1369 && (core_uses_pid
|| atomic_read(¤t
->mm
->mm_users
) != 1)) {
1370 rc
= snprintf(out_ptr
, out_end
- out_ptr
,
1371 ".%d", current
->tgid
);
1372 if (rc
> out_end
- out_ptr
)
1381 static void zap_process(struct task_struct
*start
)
1383 struct task_struct
*t
;
1385 start
->signal
->flags
= SIGNAL_GROUP_EXIT
;
1386 start
->signal
->group_stop_count
= 0;
1390 if (t
!= current
&& t
->mm
) {
1391 t
->mm
->core_waiters
++;
1392 sigaddset(&t
->pending
.signal
, SIGKILL
);
1393 signal_wake_up(t
, 1);
1395 } while ((t
= next_thread(t
)) != start
);
1398 static inline int zap_threads(struct task_struct
*tsk
, struct mm_struct
*mm
,
1401 struct task_struct
*g
, *p
;
1402 unsigned long flags
;
1405 spin_lock_irq(&tsk
->sighand
->siglock
);
1406 if (!(tsk
->signal
->flags
& SIGNAL_GROUP_EXIT
)) {
1407 tsk
->signal
->group_exit_code
= exit_code
;
1411 spin_unlock_irq(&tsk
->sighand
->siglock
);
1415 if (atomic_read(&mm
->mm_users
) == mm
->core_waiters
+ 1)
1419 for_each_process(g
) {
1420 if (g
== tsk
->group_leader
)
1428 * p->sighand can't disappear, but
1429 * may be changed by de_thread()
1431 lock_task_sighand(p
, &flags
);
1433 unlock_task_sighand(p
, &flags
);
1437 } while ((p
= next_thread(p
)) != g
);
1441 return mm
->core_waiters
;
1444 static int coredump_wait(int exit_code
)
1446 struct task_struct
*tsk
= current
;
1447 struct mm_struct
*mm
= tsk
->mm
;
1448 struct completion startup_done
;
1449 struct completion
*vfork_done
;
1452 init_completion(&mm
->core_done
);
1453 init_completion(&startup_done
);
1454 mm
->core_startup_done
= &startup_done
;
1456 core_waiters
= zap_threads(tsk
, mm
, exit_code
);
1457 up_write(&mm
->mmap_sem
);
1459 if (unlikely(core_waiters
< 0))
1463 * Make sure nobody is waiting for us to release the VM,
1464 * otherwise we can deadlock when we wait on each other
1466 vfork_done
= tsk
->vfork_done
;
1468 tsk
->vfork_done
= NULL
;
1469 complete(vfork_done
);
1473 wait_for_completion(&startup_done
);
1475 BUG_ON(mm
->core_waiters
);
1476 return core_waiters
;
1479 int do_coredump(long signr
, int exit_code
, struct pt_regs
* regs
)
1481 char corename
[CORENAME_MAX_SIZE
+ 1];
1482 struct mm_struct
*mm
= current
->mm
;
1483 struct linux_binfmt
* binfmt
;
1484 struct inode
* inode
;
1487 int fsuid
= current
->fsuid
;
1491 binfmt
= current
->binfmt
;
1492 if (!binfmt
|| !binfmt
->core_dump
)
1494 down_write(&mm
->mmap_sem
);
1495 if (!mm
->dumpable
) {
1496 up_write(&mm
->mmap_sem
);
1501 * We cannot trust fsuid as being the "true" uid of the
1502 * process nor do we know its entire history. We only know it
1503 * was tainted so we dump it as root in mode 2.
1505 if (mm
->dumpable
== 2) { /* Setuid core dump mode */
1506 flag
= O_EXCL
; /* Stop rewrite attacks */
1507 current
->fsuid
= 0; /* Dump root private */
1511 retval
= coredump_wait(exit_code
);
1516 * Clear any false indication of pending signals that might
1517 * be seen by the filesystem code called to write the core file.
1519 clear_thread_flag(TIF_SIGPENDING
);
1521 if (current
->signal
->rlim
[RLIMIT_CORE
].rlim_cur
< binfmt
->min_coredump
)
1525 * lock_kernel() because format_corename() is controlled by sysctl, which
1526 * uses lock_kernel()
1529 ispipe
= format_corename(corename
, core_pattern
, signr
);
1532 /* SIGPIPE can happen, but it's just never processed */
1533 if(call_usermodehelper_pipe(corename
+1, NULL
, NULL
, &file
)) {
1534 printk(KERN_INFO
"Core dump to %s pipe failed\n",
1539 file
= filp_open(corename
,
1540 O_CREAT
| 2 | O_NOFOLLOW
| O_LARGEFILE
| flag
,
1544 inode
= file
->f_path
.dentry
->d_inode
;
1545 if (inode
->i_nlink
> 1)
1546 goto close_fail
; /* multiple links - don't dump */
1547 if (!ispipe
&& d_unhashed(file
->f_path
.dentry
))
1550 /* AK: actually i see no reason to not allow this for named pipes etc.,
1551 but keep the previous behaviour for now. */
1552 if (!ispipe
&& !S_ISREG(inode
->i_mode
))
1556 if (!file
->f_op
->write
)
1558 if (!ispipe
&& do_truncate(file
->f_path
.dentry
, 0, 0, file
) != 0)
1561 retval
= binfmt
->core_dump(signr
, regs
, file
);
1564 current
->signal
->group_exit_code
|= 0x80;
1566 filp_close(file
, NULL
);
1568 current
->fsuid
= fsuid
;
1569 complete_all(&mm
->core_done
);