sys_sparc_64.c 15.4 KB
Newer Older
1
/* linux/arch/sparc64/kernel/sys_sparc.c
Linus Torvalds's avatar
Linus Torvalds committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * This file contains various random system calls that
 * have a non-standard calling sequence on the Linux/sparc
 * platform.
 */

#include <linux/errno.h>
#include <linux/types.h>
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/file.h>
#include <linux/mm.h>
#include <linux/sem.h>
#include <linux/msg.h>
#include <linux/shm.h>
#include <linux/stat.h>
#include <linux/mman.h>
#include <linux/utsname.h>
#include <linux/smp.h>
#include <linux/slab.h>
#include <linux/syscalls.h>
#include <linux/ipc.h>
#include <linux/personality.h>
25
#include <linux/random.h>
26
#include <linux/export.h>
27
#include <linux/context_tracking.h>
Linus Torvalds's avatar
Linus Torvalds committed
28 29 30

#include <asm/uaccess.h>
#include <asm/utrap.h>
31
#include <asm/unistd.h>
Linus Torvalds's avatar
Linus Torvalds committed
32

33
#include "entry.h"
34
#include "kernel.h"
35 36
#include "systbls.h"

Linus Torvalds's avatar
Linus Torvalds committed
37 38 39 40 41 42 43
/* #define DEBUG_UNIMP_SYSCALL */

asmlinkage unsigned long sys_getpagesize(void)
{
	return PAGE_SIZE;
}

44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
/* Does addr --> addr+len fall within 4GB of the VA-space hole or
 * overflow past the end of the 64-bit address space?
 */
static inline int invalid_64bit_range(unsigned long addr, unsigned long len)
{
	unsigned long va_exclude_start, va_exclude_end;

	va_exclude_start = VA_EXCLUDE_START;
	va_exclude_end   = VA_EXCLUDE_END;

	if (unlikely(len >= va_exclude_start))
		return 1;

	if (unlikely((addr + len) < addr))
		return 1;

	if (unlikely((addr >= va_exclude_start && addr < va_exclude_end) ||
		     ((addr + len) >= va_exclude_start &&
		      (addr + len) < va_exclude_end)))
		return 1;

	return 0;
}

68 69 70 71 72 73 74 75 76
/* These functions differ from the default implementations in
 * mm/mmap.c in two ways:
 *
 * 1) For file backed MAP_SHARED mmap()'s we D-cache color align,
 *    for fixed such mappings we just validate what the user gave us.
 * 2) For 64-bit tasks we avoid mapping anything within 4GB of
 *    the spitfire/niagara VA-hole.
 */

77
static inline unsigned long COLOR_ALIGN(unsigned long addr,
78 79 80 81 82 83 84 85
					 unsigned long pgoff)
{
	unsigned long base = (addr+SHMLBA-1)&~(SHMLBA-1);
	unsigned long off = (pgoff<<PAGE_SHIFT) & (SHMLBA-1);

	return base + off;
}

Linus Torvalds's avatar
Linus Torvalds committed
86 87 88 89 90 91
unsigned long arch_get_unmapped_area(struct file *filp, unsigned long addr, unsigned long len, unsigned long pgoff, unsigned long flags)
{
	struct mm_struct *mm = current->mm;
	struct vm_area_struct * vma;
	unsigned long task_size = TASK_SIZE;
	int do_color_align;
92
	struct vm_unmapped_area_info info;
Linus Torvalds's avatar
Linus Torvalds committed
93 94 95 96 97 98 99 100 101 102 103 104

	if (flags & MAP_FIXED) {
		/* We do not accept a shared mapping if it would violate
		 * cache aliasing constraints.
		 */
		if ((flags & MAP_SHARED) &&
		    ((addr - (pgoff << PAGE_SHIFT)) & (SHMLBA - 1)))
			return -EINVAL;
		return addr;
	}

	if (test_thread_flag(TIF_32BIT))
105
		task_size = STACK_TOP32;
106
	if (unlikely(len > task_size || len >= VA_EXCLUDE_START))
Linus Torvalds's avatar
Linus Torvalds committed
107 108 109 110 111 112 113 114
		return -ENOMEM;

	do_color_align = 0;
	if (filp || (flags & MAP_SHARED))
		do_color_align = 1;

	if (addr) {
		if (do_color_align)
115
			addr = COLOR_ALIGN(addr, pgoff);
Linus Torvalds's avatar
Linus Torvalds committed
116 117 118 119 120 121 122 123 124
		else
			addr = PAGE_ALIGN(addr);

		vma = find_vma(mm, addr);
		if (task_size - len >= addr &&
		    (!vma || addr + len <= vma->vm_start))
			return addr;
	}

125 126 127 128 129 130 131 132 133 134 135 136 137
	info.flags = 0;
	info.length = len;
	info.low_limit = TASK_UNMAPPED_BASE;
	info.high_limit = min(task_size, VA_EXCLUDE_START);
	info.align_mask = do_color_align ? (PAGE_MASK & (SHMLBA - 1)) : 0;
	info.align_offset = pgoff << PAGE_SHIFT;
	addr = vm_unmapped_area(&info);

	if ((addr & ~PAGE_MASK) && task_size > VA_EXCLUDE_END) {
		VM_BUG_ON(addr != -ENOMEM);
		info.low_limit = VA_EXCLUDE_END;
		info.high_limit = task_size;
		addr = vm_unmapped_area(&info);
138
	}
Linus Torvalds's avatar
Linus Torvalds committed
139

140
	return addr;
Linus Torvalds's avatar
Linus Torvalds committed
141 142
}

143 144 145 146 147 148 149
unsigned long
arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
			  const unsigned long len, const unsigned long pgoff,
			  const unsigned long flags)
{
	struct vm_area_struct *vma;
	struct mm_struct *mm = current->mm;
150
	unsigned long task_size = STACK_TOP32;
151 152
	unsigned long addr = addr0;
	int do_color_align;
153
	struct vm_unmapped_area_info info;
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177

	/* This should only ever run for 32-bit processes.  */
	BUG_ON(!test_thread_flag(TIF_32BIT));

	if (flags & MAP_FIXED) {
		/* We do not accept a shared mapping if it would violate
		 * cache aliasing constraints.
		 */
		if ((flags & MAP_SHARED) &&
		    ((addr - (pgoff << PAGE_SHIFT)) & (SHMLBA - 1)))
			return -EINVAL;
		return addr;
	}

	if (unlikely(len > task_size))
		return -ENOMEM;

	do_color_align = 0;
	if (filp || (flags & MAP_SHARED))
		do_color_align = 1;

	/* requesting a specific address */
	if (addr) {
		if (do_color_align)
178
			addr = COLOR_ALIGN(addr, pgoff);
179 180 181 182 183 184 185 186 187
		else
			addr = PAGE_ALIGN(addr);

		vma = find_vma(mm, addr);
		if (task_size - len >= addr &&
		    (!vma || addr + len <= vma->vm_start))
			return addr;
	}

188 189 190 191 192 193 194
	info.flags = VM_UNMAPPED_AREA_TOPDOWN;
	info.length = len;
	info.low_limit = PAGE_SIZE;
	info.high_limit = mm->mmap_base;
	info.align_mask = do_color_align ? (PAGE_MASK & (SHMLBA - 1)) : 0;
	info.align_offset = pgoff << PAGE_SHIFT;
	addr = vm_unmapped_area(&info);
195 196 197 198 199 200 201

	/*
	 * A failed mmap() very likely causes application failure,
	 * so fall back to the bottom-up function here. This scenario
	 * can happen with large stack limits and large mmap()
	 * allocations.
	 */
202 203 204 205 206 207 208
	if (addr & ~PAGE_MASK) {
		VM_BUG_ON(addr != -ENOMEM);
		info.flags = 0;
		info.low_limit = TASK_UNMAPPED_BASE;
		info.high_limit = STACK_TOP32;
		addr = vm_unmapped_area(&info);
	}
209 210 211 212

	return addr;
}

Linus Torvalds's avatar
Linus Torvalds committed
213 214 215 216
/* Try to align mapping such that we align it as much as possible. */
unsigned long get_fb_unmapped_area(struct file *filp, unsigned long orig_addr, unsigned long len, unsigned long pgoff, unsigned long flags)
{
	unsigned long align_goal, addr = -ENOMEM;
217 218 219 220
	unsigned long (*get_area)(struct file *, unsigned long,
				  unsigned long, unsigned long, unsigned long);

	get_area = current->mm->get_unmapped_area;
Linus Torvalds's avatar
Linus Torvalds committed
221 222 223

	if (flags & MAP_FIXED) {
		/* Ok, don't mess with it. */
224
		return get_area(NULL, orig_addr, len, pgoff, flags);
Linus Torvalds's avatar
Linus Torvalds committed
225 226 227 228 229 230 231 232 233 234 235 236
	}
	flags &= ~MAP_SHARED;

	align_goal = PAGE_SIZE;
	if (len >= (4UL * 1024 * 1024))
		align_goal = (4UL * 1024 * 1024);
	else if (len >= (512UL * 1024))
		align_goal = (512UL * 1024);
	else if (len >= (64UL * 1024))
		align_goal = (64UL * 1024);

	do {
237
		addr = get_area(NULL, orig_addr, len + (align_goal - PAGE_SIZE), pgoff, flags);
Linus Torvalds's avatar
Linus Torvalds committed
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
		if (!(addr & ~PAGE_MASK)) {
			addr = (addr + (align_goal - 1UL)) & ~(align_goal - 1UL);
			break;
		}

		if (align_goal == (4UL * 1024 * 1024))
			align_goal = (512UL * 1024);
		else if (align_goal == (512UL * 1024))
			align_goal = (64UL * 1024);
		else
			align_goal = PAGE_SIZE;
	} while ((addr & ~PAGE_MASK) && align_goal > PAGE_SIZE);

	/* Mapping is smaller than 64K or larger areas could not
	 * be obtained.
	 */
	if (addr & ~PAGE_MASK)
255
		addr = get_area(NULL, orig_addr, len, pgoff, flags);
Linus Torvalds's avatar
Linus Torvalds committed
256 257 258

	return addr;
}
259
EXPORT_SYMBOL(get_fb_unmapped_area);
Linus Torvalds's avatar
Linus Torvalds committed
260

261 262
/* Essentially the same as PowerPC.  */
static unsigned long mmap_rnd(void)
263
{
264
	unsigned long rnd = 0UL;
265 266

	if (current->flags & PF_RANDOMIZE) {
267
		unsigned long val = get_random_int();
268
		if (test_thread_flag(TIF_32BIT))
269
			rnd = (val % (1UL << (23UL-PAGE_SHIFT)));
270
		else
271
			rnd = (val % (1UL << (30UL-PAGE_SHIFT)));
272
	}
273
	return rnd << PAGE_SHIFT;
274 275 276 277 278 279
}

void arch_pick_mmap_layout(struct mm_struct *mm)
{
	unsigned long random_factor = mmap_rnd();
	unsigned long gap;
280

281 282 283 284
	/*
	 * Fall back to the standard layout if the personality
	 * bit is set, or if the expected stack growth is unlimited:
	 */
Jiri Slaby's avatar
Jiri Slaby committed
285
	gap = rlimit(RLIMIT_STACK);
286 287
	if (!test_thread_flag(TIF_32BIT) ||
	    (current->personality & ADDR_COMPAT_LAYOUT) ||
Jiri Slaby's avatar
Jiri Slaby committed
288
	    gap == RLIM_INFINITY ||
289
	    sysctl_legacy_va_layout) {
290
		mm->mmap_base = TASK_UNMAPPED_BASE + random_factor;
291 292 293
		mm->get_unmapped_area = arch_get_unmapped_area;
	} else {
		/* We know it's 32-bit */
294
		unsigned long task_size = STACK_TOP32;
295 296 297 298 299 300

		if (gap < 128 * 1024 * 1024)
			gap = 128 * 1024 * 1024;
		if (gap > (task_size / 6 * 5))
			gap = (task_size / 6 * 5);

301
		mm->mmap_base = PAGE_ALIGN(task_size - gap - random_factor);
302 303 304 305
		mm->get_unmapped_area = arch_get_unmapped_area_topdown;
	}
}

Linus Torvalds's avatar
Linus Torvalds committed
306 307 308 309
/*
 * sys_pipe() is the normal C calling standard for creating
 * a pipe. It's not the way unix traditionally does this, though.
 */
310
SYSCALL_DEFINE1(sparc_pipe_real, struct pt_regs *, regs)
Linus Torvalds's avatar
Linus Torvalds committed
311 312 313 314
{
	int fd[2];
	int error;

Ulrich Drepper's avatar
Ulrich Drepper committed
315
	error = do_pipe_flags(fd, 0);
Linus Torvalds's avatar
Linus Torvalds committed
316 317 318 319 320 321 322 323 324 325 326 327 328 329
	if (error)
		goto out;
	regs->u_regs[UREG_I1] = fd[1];
	error = fd[0];
out:
	return error;
}

/*
 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
 *
 * This is really horribly ugly.
 */

330
SYSCALL_DEFINE6(sparc_ipc, unsigned int, call, int, first, unsigned long, second,
331
		unsigned long, third, void __user *, ptr, long, fifth)
Linus Torvalds's avatar
Linus Torvalds committed
332
{
333
	long err;
Linus Torvalds's avatar
Linus Torvalds committed
334 335

	/* No need for backward compatibility. We can start fresh... */
336
	if (call <= SEMTIMEDOP) {
Linus Torvalds's avatar
Linus Torvalds committed
337 338 339 340 341 342 343
		switch (call) {
		case SEMOP:
			err = sys_semtimedop(first, ptr,
					     (unsigned)second, NULL);
			goto out;
		case SEMTIMEDOP:
			err = sys_semtimedop(first, ptr, (unsigned)second,
344 345
				(const struct timespec __user *)
					     (unsigned long) fifth);
Linus Torvalds's avatar
Linus Torvalds committed
346 347 348 349 350
			goto out;
		case SEMGET:
			err = sys_semget(first, (int)second, (int)third);
			goto out;
		case SEMCTL: {
351 352
			err = sys_semctl(first, second,
					 (int)third | IPC_64,
353
					 (unsigned long) ptr);
Linus Torvalds's avatar
Linus Torvalds committed
354 355 356 357 358
			goto out;
		}
		default:
			err = -ENOSYS;
			goto out;
359
		}
Linus Torvalds's avatar
Linus Torvalds committed
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
	}
	if (call <= MSGCTL) {
		switch (call) {
		case MSGSND:
			err = sys_msgsnd(first, ptr, (size_t)second,
					 (int)third);
			goto out;
		case MSGRCV:
			err = sys_msgrcv(first, ptr, (size_t)second, fifth,
					 (int)third);
			goto out;
		case MSGGET:
			err = sys_msgget((key_t)first, (int)second);
			goto out;
		case MSGCTL:
			err = sys_msgctl(first, (int)second | IPC_64, ptr);
			goto out;
		default:
			err = -ENOSYS;
			goto out;
380
		}
Linus Torvalds's avatar
Linus Torvalds committed
381 382 383 384 385
	}
	if (call <= SHMCTL) {
		switch (call) {
		case SHMAT: {
			ulong raddr;
Will Deacon's avatar
Will Deacon committed
386
			err = do_shmat(first, ptr, (int)second, &raddr, SHMLBA);
Linus Torvalds's avatar
Linus Torvalds committed
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
			if (!err) {
				if (put_user(raddr,
					     (ulong __user *) third))
					err = -EFAULT;
			}
			goto out;
		}
		case SHMDT:
			err = sys_shmdt(ptr);
			goto out;
		case SHMGET:
			err = sys_shmget(first, (size_t)second, (int)third);
			goto out;
		case SHMCTL:
			err = sys_shmctl(first, (int)second | IPC_64, ptr);
			goto out;
		default:
			err = -ENOSYS;
			goto out;
406
		}
Linus Torvalds's avatar
Linus Torvalds committed
407 408 409 410 411 412 413
	} else {
		err = -ENOSYS;
	}
out:
	return err;
}

414
SYSCALL_DEFINE1(sparc64_personality, unsigned long, personality)
Linus Torvalds's avatar
Linus Torvalds committed
415
{
416
	long ret;
Linus Torvalds's avatar
Linus Torvalds committed
417

418 419 420
	if (personality(current->personality) == PER_LINUX32 &&
	    personality(personality) == PER_LINUX)
		personality |= PER_LINUX32;
Linus Torvalds's avatar
Linus Torvalds committed
421
	ret = sys_personality(personality);
422 423
	if (personality(ret) == PER_LINUX32)
		ret &= ~PER_LINUX32;
Linus Torvalds's avatar
Linus Torvalds committed
424 425 426 427

	return ret;
}

428
int sparc_mmap_check(unsigned long addr, unsigned long len)
429 430 431 432 433
{
	if (test_thread_flag(TIF_32BIT)) {
		if (len >= STACK_TOP32)
			return -EINVAL;

434
		if (addr > STACK_TOP32 - len)
435 436 437 438 439
			return -EINVAL;
	} else {
		if (len >= VA_EXCLUDE_START)
			return -EINVAL;

440
		if (invalid_64bit_range(addr, len))
441 442 443 444 445 446
			return -EINVAL;
	}

	return 0;
}

Linus Torvalds's avatar
Linus Torvalds committed
447
/* Linux version of mmap */
448 449 450
SYSCALL_DEFINE6(mmap, unsigned long, addr, unsigned long, len,
		unsigned long, prot, unsigned long, flags, unsigned long, fd,
		unsigned long, off)
Linus Torvalds's avatar
Linus Torvalds committed
451
{
Al Viro's avatar
Al Viro committed
452
	unsigned long retval = -EINVAL;
Linus Torvalds's avatar
Linus Torvalds committed
453

Al Viro's avatar
Al Viro committed
454 455 456 457 458
	if ((off + PAGE_ALIGN(len)) < off)
		goto out;
	if (off & ~PAGE_MASK)
		goto out;
	retval = sys_mmap_pgoff(addr, len, prot, flags, fd, off >> PAGE_SHIFT);
Linus Torvalds's avatar
Linus Torvalds committed
459 460 461 462
out:
	return retval;
}

463
SYSCALL_DEFINE2(64_munmap, unsigned long, addr, size_t, len)
Linus Torvalds's avatar
Linus Torvalds committed
464
{
465
	if (invalid_64bit_range(addr, len))
Linus Torvalds's avatar
Linus Torvalds committed
466
		return -EINVAL;
467

Al Viro's avatar
Al Viro committed
468
	return vm_munmap(addr, len);
Linus Torvalds's avatar
Linus Torvalds committed
469 470
}
                
471 472 473
SYSCALL_DEFINE5(64_mremap, unsigned long, addr,	unsigned long, old_len,
		unsigned long, new_len, unsigned long, flags,
		unsigned long, new_addr)
Linus Torvalds's avatar
Linus Torvalds committed
474 475
{
	if (test_thread_flag(TIF_32BIT))
476 477
		return -EINVAL;
	return sys_mremap(addr, old_len, new_len, flags, new_addr);
Linus Torvalds's avatar
Linus Torvalds committed
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
}

/* we come to here via sys_nis_syscall so it can setup the regs argument */
asmlinkage unsigned long c_sys_nis_syscall(struct pt_regs *regs)
{
	static int count;
	
	/* Don't make the system unusable, if someone goes stuck */
	if (count++ > 5)
		return -ENOSYS;

	printk ("Unimplemented SPARC system call %ld\n",regs->u_regs[1]);
#ifdef DEBUG_UNIMP_SYSCALL	
	show_regs (regs);
#endif

	return -ENOSYS;
}

/* #define DEBUG_SPARC_BREAKPOINT */

asmlinkage void sparc_breakpoint(struct pt_regs *regs)
{
501
	enum ctx_state prev_state = exception_enter();
Linus Torvalds's avatar
Linus Torvalds committed
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
	siginfo_t info;

	if (test_thread_flag(TIF_32BIT)) {
		regs->tpc &= 0xffffffff;
		regs->tnpc &= 0xffffffff;
	}
#ifdef DEBUG_SPARC_BREAKPOINT
        printk ("TRAP: Entering kernel PC=%lx, nPC=%lx\n", regs->tpc, regs->tnpc);
#endif
	info.si_signo = SIGTRAP;
	info.si_errno = 0;
	info.si_code = TRAP_BRKPT;
	info.si_addr = (void __user *)regs->tpc;
	info.si_trapno = 0;
	force_sig_info(SIGTRAP, &info, current);
#ifdef DEBUG_SPARC_BREAKPOINT
	printk ("TRAP: Returning to space: PC=%lx nPC=%lx\n", regs->tpc, regs->tnpc);
#endif
520
	exception_exit(prev_state);
Linus Torvalds's avatar
Linus Torvalds committed
521 522 523 524
}

extern void check_pending(int signum);

525
SYSCALL_DEFINE2(getdomainname, char __user *, name, int, len)
Linus Torvalds's avatar
Linus Torvalds committed
526
{
527 528
        int nlen, err;

529
	if (len < 0)
530
		return -EINVAL;
Linus Torvalds's avatar
Linus Torvalds committed
531 532 533

 	down_read(&uts_sem);
 	
534
	nlen = strlen(utsname()->domainname) + 1;
535 536 537
	err = -EINVAL;
	if (nlen > len)
		goto out;
538 539

	err = -EFAULT;
540
	if (!copy_to_user(name, utsname()->domainname, nlen))
541 542
		err = 0;

543
out:
Linus Torvalds's avatar
Linus Torvalds committed
544 545 546 547
	up_read(&uts_sem);
	return err;
}

548 549 550 551
SYSCALL_DEFINE5(utrap_install, utrap_entry_t, type,
		utrap_handler_t, new_p, utrap_handler_t, new_d,
		utrap_handler_t __user *, old_p,
		utrap_handler_t __user *, old_d)
Linus Torvalds's avatar
Linus Torvalds committed
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
{
	if (type < UT_INSTRUCTION_EXCEPTION || type > UT_TRAP_INSTRUCTION_31)
		return -EINVAL;
	if (new_p == (utrap_handler_t)(long)UTH_NOCHANGE) {
		if (old_p) {
			if (!current_thread_info()->utraps) {
				if (put_user(NULL, old_p))
					return -EFAULT;
			} else {
				if (put_user((utrap_handler_t)(current_thread_info()->utraps[type]), old_p))
					return -EFAULT;
			}
		}
		if (old_d) {
			if (put_user(NULL, old_d))
				return -EFAULT;
		}
		return 0;
	}
	if (!current_thread_info()->utraps) {
		current_thread_info()->utraps =
573
			kzalloc((UT_TRAP_INSTRUCTION_31+1)*sizeof(long), GFP_KERNEL);
Linus Torvalds's avatar
Linus Torvalds committed
574 575 576 577 578 579
		if (!current_thread_info()->utraps)
			return -ENOMEM;
		current_thread_info()->utraps[0] = 1;
	} else {
		if ((utrap_handler_t)current_thread_info()->utraps[type] != new_p &&
		    current_thread_info()->utraps[0] > 1) {
580
			unsigned long *p = current_thread_info()->utraps;
Linus Torvalds's avatar
Linus Torvalds committed
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607

			current_thread_info()->utraps =
				kmalloc((UT_TRAP_INSTRUCTION_31+1)*sizeof(long),
					GFP_KERNEL);
			if (!current_thread_info()->utraps) {
				current_thread_info()->utraps = p;
				return -ENOMEM;
			}
			p[0]--;
			current_thread_info()->utraps[0] = 1;
			memcpy(current_thread_info()->utraps+1, p+1,
			       UT_TRAP_INSTRUCTION_31*sizeof(long));
		}
	}
	if (old_p) {
		if (put_user((utrap_handler_t)(current_thread_info()->utraps[type]), old_p))
			return -EFAULT;
	}
	if (old_d) {
		if (put_user(NULL, old_d))
			return -EFAULT;
	}
	current_thread_info()->utraps[type] = (long)new_p;

	return 0;
}

608 609
asmlinkage long sparc_memory_ordering(unsigned long model,
				      struct pt_regs *regs)
Linus Torvalds's avatar
Linus Torvalds committed
610 611 612 613 614 615 616
{
	if (model >= 3)
		return -EINVAL;
	regs->tstate = (regs->tstate & ~TSTATE_MM) | (model << 14);
	return 0;
}

617 618 619
SYSCALL_DEFINE5(rt_sigaction, int, sig, const struct sigaction __user *, act,
		struct sigaction __user *, oact, void __user *, restorer,
		size_t, sigsetsize)
Linus Torvalds's avatar
Linus Torvalds committed
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
{
	struct k_sigaction new_ka, old_ka;
	int ret;

	/* XXX: Don't preclude handling different sized sigset_t's.  */
	if (sigsetsize != sizeof(sigset_t))
		return -EINVAL;

	if (act) {
		new_ka.ka_restorer = restorer;
		if (copy_from_user(&new_ka.sa, act, sizeof(*act)))
			return -EFAULT;
	}

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

	if (!ret && oact) {
		if (copy_to_user(oact, &old_ka.sa, sizeof(*oact)))
			return -EFAULT;
	}

	return ret;
}

644 645 646 647
asmlinkage long sys_kern_features(void)
{
	return KERN_FEATURE_MIXED_MODE_STACK;
}