syscalls_32.c 1.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/* 
 * Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com)
 * Licensed under the GPL
 */

A
Al Viro 已提交
6 7
#include <linux/syscalls.h>
#include <sysdep/syscalls.h>
L
Linus Torvalds 已提交
8

9 10 11
/*
 * The prototype on i386 is:
 *
A
Al Viro 已提交
12
 *     int clone(int flags, void * child_stack, int * parent_tidptr, struct user_desc * newtls
13 14 15
 *
 * and the "newtls" arg. on i386 is read by copy_thread directly from the
 * register saved on the stack.
L
Linus Torvalds 已提交
16
 */
A
Al Viro 已提交
17 18
long i386_clone(unsigned long clone_flags, unsigned long newsp,
		int __user *parent_tid, void *newtls, int __user *child_tid)
L
Linus Torvalds 已提交
19
{
A
Al Viro 已提交
20
	return sys_clone(clone_flags, newsp, parent_tid, child_tid);
L
Linus Torvalds 已提交
21 22
}

A
Al Viro 已提交
23

L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33
long sys_sigaction(int sig, const struct old_sigaction __user *act,
			 struct old_sigaction __user *oact)
{
	struct k_sigaction new_ka, old_ka;
	int ret;

	if (act) {
		old_sigset_t mask;
		if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
		    __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
34 35 36
		    __get_user(new_ka.sa.sa_restorer, &act->sa_restorer) ||
		    __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
		    __get_user(mask, &act->sa_mask))
L
Linus Torvalds 已提交
37 38 39 40 41 42 43 44 45
			return -EFAULT;
		siginitset(&new_ka.sa.sa_mask, mask);
	}

	ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);

	if (!ret && oact) {
		if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
		    __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
46 47 48
		    __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer) ||
		    __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
		    __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
L
Linus Torvalds 已提交
49 50 51 52 53
			return -EFAULT;
	}

	return ret;
}