Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 37843
b: refs/heads/master
c: 6760856
h: refs/heads/master
i:
  37841: 76ace0c
  37839: 80e0a87
v: v3
  • Loading branch information
Arnd Bergmann authored and Linus Torvalds committed Oct 2, 2006
1 parent 7eb9f91 commit 17aff91
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2453a3062d36f39f01302f9f1ad18e7a0c54fe38
refs/heads/master: 6760856791c6e527da678021ee6a67896549d4da
5 changes: 2 additions & 3 deletions trunk/arch/sparc64/kernel/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
* Copyright (C) 1999 David S. Miller (davem@redhat.com)
*/

#define __KERNEL_SYSCALLS__

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
Expand All @@ -14,6 +12,7 @@
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/pm.h>
#include <linux/syscalls.h>

#include <asm/system.h>
#include <asm/auxio.h>
Expand Down Expand Up @@ -98,7 +97,7 @@ static int powerd(void *__unused)

/* Ok, down we go... */
button_pressed = 0;
if (execve("/sbin/shutdown", argv, envp) < 0) {
if (kernel_execve("/sbin/shutdown", argv, envp) < 0) {
printk("powerd: shutdown execution failed\n");
add_wait_queue(&powerd_wait, &wait);
goto again;
Expand Down
3 changes: 1 addition & 2 deletions trunk/init/do_mounts_initrd.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#define __KERNEL_SYSCALLS__
#include <linux/unistd.h>
#include <linux/kernel.h>
#include <linux/fs.h>
Expand Down Expand Up @@ -35,7 +34,7 @@ static int __init do_linuxrc(void * shell)
(void) sys_open("/dev/console",O_RDWR,0);
(void) sys_dup(0);
(void) sys_dup(0);
return execve(shell, argv, envp_init);
return kernel_execve(shell, argv, envp_init);
}

static void __init handle_initrd(void)
Expand Down
4 changes: 1 addition & 3 deletions trunk/init/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
* Simplified starting of init: Michael A. Griffith <grif@acm.org>
*/

#define __KERNEL_SYSCALLS__

#include <linux/types.h>
#include <linux/module.h>
#include <linux/proc_fs.h>
Expand Down Expand Up @@ -703,7 +701,7 @@ static void do_pre_smp_initcalls(void)
static void run_init_process(char *init_filename)
{
argv_init[0] = init_filename;
execve(init_filename, argv_init, envp_init);
kernel_execve(init_filename, argv_init, envp_init);
}

static int init(void * unused)
Expand Down
5 changes: 2 additions & 3 deletions trunk/kernel/kmod.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
call_usermodehelper wait flag, and remove exec_usermodehelper.
Rusty Russell <rusty@rustcorp.com.au> Jan 2003
*/
#define __KERNEL_SYSCALLS__

#include <linux/module.h>
#include <linux/sched.h>
#include <linux/syscalls.h>
Expand Down Expand Up @@ -169,7 +167,8 @@ static int ____call_usermodehelper(void *data)

retval = -EPERM;
if (current->fs->root)
retval = execve(sub_info->path, sub_info->argv, sub_info->envp);
retval = kernel_execve(sub_info->path,
sub_info->argv, sub_info->envp);

/* Exec failed? */
sub_info->retval = retval;
Expand Down
2 changes: 2 additions & 0 deletions trunk/lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ ifneq ($(CONFIG_HAVE_DEC_LOCK),y)
lib-y += dec_and_lock.o
endif

lib-y += execve.o

obj-$(CONFIG_CRC_CCITT) += crc-ccitt.o
obj-$(CONFIG_CRC16) += crc16.o
obj-$(CONFIG_CRC32) += crc32.o
Expand Down
23 changes: 23 additions & 0 deletions trunk/lib/execve.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#include <asm/bug.h>
#include <asm/uaccess.h>

#define __KERNEL_SYSCALLS__
static int errno __attribute__((unused));
#include <asm/unistd.h>

#ifdef _syscall3
int kernel_execve (const char *filename, char *const argv[], char *const envp[])
__attribute__((__weak__));
int kernel_execve (const char *filename, char *const argv[], char *const envp[])
{
mm_segment_t fs = get_fs();
int ret;

WARN_ON(segment_eq(fs, USER_DS));
ret = execve(filename, (char **)argv, (char **)envp);
if (ret)
ret = -errno;

return ret;
}
#endif

0 comments on commit 17aff91

Please sign in to comment.