syscall.c 1.5 KB
Newer Older
J
Jeff Dike 已提交
1
/*
J
Jeff Dike 已提交
2
 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
L
Linus Torvalds 已提交
3 4 5
 * Licensed under the GPL
 */

6 7 8 9 10 11 12 13 14 15
#include <linux/file.h>
#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/sched.h>
#include <linux/utsname.h>
#include <linux/syscalls.h>
#include <asm/current.h>
#include <asm/mman.h>
#include <asm/uaccess.h>
#include <asm/unistd.h>
A
Al Viro 已提交
16
#include "internal.h"
L
Linus Torvalds 已提交
17 18 19

long sys_fork(void)
{
A
Al Viro 已提交
20
	return do_fork(SIGCHLD, UPT_SP(&current->thread.regs.regs),
J
Jeff Dike 已提交
21
		      &current->thread.regs, 0, NULL, NULL);
L
Linus Torvalds 已提交
22 23 24 25
}

long sys_vfork(void)
{
A
Al Viro 已提交
26
	return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
J
Jeff Dike 已提交
27 28
		      UPT_SP(&current->thread.regs.regs),
		      &current->thread.regs, 0, NULL, NULL);
A
Al Viro 已提交
29 30 31 32 33 34 35 36 37 38
}

long sys_clone(unsigned long clone_flags, unsigned long newsp,
	       void __user *parent_tid, void __user *child_tid)
{
	if (!newsp)
		newsp = UPT_SP(&current->thread.regs.regs);

	return do_fork(clone_flags, newsp, &current->thread.regs, 0, parent_tid,
		      child_tid);
L
Linus Torvalds 已提交
39 40 41 42 43 44 45 46 47 48
}

long old_mmap(unsigned long addr, unsigned long len,
	      unsigned long prot, unsigned long flags,
	      unsigned long fd, unsigned long offset)
{
	long err = -EINVAL;
	if (offset & ~PAGE_MASK)
		goto out;

A
Al Viro 已提交
49
	err = sys_mmap_pgoff(addr, len, prot, flags, fd, offset >> PAGE_SHIFT);
L
Linus Torvalds 已提交
50 51 52 53
 out:
	return err;
}

54 55 56
int kernel_execve(const char *filename,
		  const char *const argv[],
		  const char *const envp[])
57 58 59 60 61 62
{
	mm_segment_t fs;
	int ret;

	fs = get_fs();
	set_fs(KERNEL_DS);
R
Richard Weinberger 已提交
63 64
	ret = um_execve(filename, (const char __user *const __user *)argv,
			(const char __user *const __user *) envp);
65 66 67 68
	set_fs(fs);

	return ret;
}