linux-bk/arch/ppc64/kernel/signal32.c
<<
>>
Prefs
   1/*
   2 * signal32.c: Support 32bit signal syscalls.
   3 *
   4 * Copyright (C) 2001 IBM
   5 * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
   6 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
   7 *
   8 * These routines maintain argument size conversion between 32bit and 64bit
   9 * environment.
  10 *
  11 *      This program is free software; you can redistribute it and/or
  12 *      modify it under the terms of the GNU General Public License
  13 *      as published by the Free Software Foundation; either version
  14 *      2 of the License, or (at your option) any later version.
  15 */
  16
  17#include <linux/config.h>
  18#include <linux/sched.h>
  19#include <linux/mm.h> 
  20#include <linux/smp.h>
  21#include <linux/smp_lock.h>
  22#include <linux/kernel.h>
  23#include <linux/signal.h>
  24#include <linux/syscalls.h>
  25#include <linux/errno.h>
  26#include <linux/elf.h>
  27#include <linux/compat.h>
  28#include <linux/ptrace.h>
  29#include <asm/ppc32.h>
  30#include <asm/uaccess.h>
  31#include <asm/ppcdebug.h>
  32#include <asm/unistd.h>
  33#include <asm/cacheflush.h>
  34
  35#define DEBUG_SIG 0
  36
  37#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
  38
  39#define GP_REGS_SIZE32  min(sizeof(elf_gregset_t32), sizeof(struct pt_regs32))
  40
  41/*
  42 * When we have signals to deliver, we set up on the
  43 * user stack, going down from the original stack pointer:
  44 *      a sigregs32 struct
  45 *      a sigcontext32 struct
  46 *      a gap of __SIGNAL_FRAMESIZE32 bytes
  47 *
  48 * Each of these things must be a multiple of 16 bytes in size.
  49 *
  50 */
  51struct sigregs32 {
  52        struct mcontext32       mctx;           /* all the register values */
  53        /*
  54         * Programs using the rs6000/xcoff abi can save up to 19 gp
  55         * regs and 18 fp regs below sp before decrementing it.
  56         */
  57        int                     abigap[56];
  58};
  59
  60/* We use the mc_pad field for the signal return trampoline. */
  61#define tramp   mc_pad
  62
  63/*
  64 *  When we have rt signals to deliver, we set up on the
  65 *  user stack, going down from the original stack pointer:
  66 *      one rt_sigframe32 struct (siginfo + ucontext + ABI gap)
  67 *      a gap of __SIGNAL_FRAMESIZE32+16 bytes
  68 *  (the +16 is to get the siginfo and ucontext32 in the same
  69 *  positions as in older kernels).
  70 *
  71 *  Each of these things must be a multiple of 16 bytes in size.
  72 *
  73 */
  74struct rt_sigframe32 {
  75        compat_siginfo_t        info;
  76        struct ucontext32       uc;
  77        /*
  78         * Programs using the rs6000/xcoff abi can save up to 19 gp
  79         * regs and 18 fp regs below sp before decrementing it.
  80         */
  81        int                     abigap[56];
  82};
  83
  84
  85/*
  86 * Common utility functions used by signal and context support
  87 *
  88 */
  89
  90/*
  91 * Restore the user process's signal mask
  92 * (implemented in signal.c)
  93 */
  94extern void restore_sigmask(sigset_t *set);
  95
  96/*
  97 * Functions for flipping sigsets (thanks to brain dead generic
  98 * implementation that makes things simple for little endian only
  99 */
 100static inline void compat_from_sigset(compat_sigset_t *compat, sigset_t *set)
 101{
 102        switch (_NSIG_WORDS) {
 103        case 4: compat->sig[5] = set->sig[3] & 0xffffffffull ;
 104                compat->sig[7] = set->sig[3] >> 32; 
 105        case 3: compat->sig[4] = set->sig[2] & 0xffffffffull ;
 106                compat->sig[5] = set->sig[2] >> 32; 
 107        case 2: compat->sig[2] = set->sig[1] & 0xffffffffull ;
 108                compat->sig[3] = set->sig[1] >> 32; 
 109        case 1: compat->sig[0] = set->sig[0] & 0xffffffffull ;
 110                compat->sig[1] = set->sig[0] >> 32; 
 111        }
 112}
 113
 114static inline void sigset_from_compat(sigset_t *set, compat_sigset_t *compat)
 115{
 116        switch (_NSIG_WORDS) {
 117        case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32);
 118        case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32);
 119        case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32);
 120        case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32);
 121        }
 122}
 123
 124
 125/*
 126 * Save the current user registers on the user stack.
 127 * We only save the altivec registers if the process has used
 128 * altivec instructions at some point.
 129 */
 130static int save_user_regs(struct pt_regs *regs, struct mcontext32 __user *frame, int sigret)
 131{
 132        elf_greg_t64 *gregs = (elf_greg_t64 *)regs;
 133        int i, err = 0;
 134
 135        /* Make sure floating point registers are stored in regs */
 136        flush_fp_to_thread(current);
 137
 138        /* save general and floating-point registers */
 139        for (i = 0; i <= PT_RESULT; i ++)
 140                err |= __put_user((unsigned int)gregs[i], &frame->mc_gregs[i]);
 141        err |= __copy_to_user(&frame->mc_fregs, current->thread.fpr,
 142                              ELF_NFPREG * sizeof(double));
 143        if (err)
 144                return 1;
 145
 146        current->thread.fpscr = 0;      /* turn off all fp exceptions */
 147
 148#ifdef CONFIG_ALTIVEC
 149        /* save altivec registers */
 150        if (current->thread.used_vr) {
 151                flush_altivec_to_thread(current);
 152                if (__copy_to_user(&frame->mc_vregs, current->thread.vr,
 153                                   ELF_NVRREG32 * sizeof(vector128)))
 154                        return 1;
 155                /* set MSR_VEC in the saved MSR value to indicate that
 156                   frame->mc_vregs contains valid data */
 157                if (__put_user(regs->msr | MSR_VEC, &frame->mc_gregs[PT_MSR]))
 158                        return 1;
 159        }
 160        /* else assert((regs->msr & MSR_VEC) == 0) */
 161
 162        /* We always copy to/from vrsave, it's 0 if we don't have or don't
 163         * use altivec. Since VSCR only contains 32 bits saved in the least
 164         * significant bits of a vector, we "cheat" and stuff VRSAVE in the
 165         * most significant bits of that same vector. --BenH
 166         */
 167        if (__put_user(current->thread.vrsave, (u32 __user *)&frame->mc_vregs[32]))
 168                return 1;
 169#endif /* CONFIG_ALTIVEC */
 170
 171        if (sigret) {
 172                /* Set up the sigreturn trampoline: li r0,sigret; sc */
 173                if (__put_user(0x38000000UL + sigret, &frame->tramp[0])
 174                    || __put_user(0x44000002UL, &frame->tramp[1]))
 175                        return 1;
 176                flush_icache_range((unsigned long) &frame->tramp[0],
 177                                   (unsigned long) &frame->tramp[2]);
 178        }
 179
 180        return 0;
 181}
 182
 183/*
 184 * Restore the current user register values from the user stack,
 185 * (except for MSR).
 186 */
 187static long restore_user_regs(struct pt_regs *regs,
 188                              struct mcontext32 __user *sr, int sig)
 189{
 190        elf_greg_t64 *gregs = (elf_greg_t64 *)regs;
 191        int i;
 192        long err = 0;
 193        unsigned int save_r2 = 0;
 194#ifdef CONFIG_ALTIVEC
 195        unsigned long msr;
 196#endif
 197
 198        /*
 199         * restore general registers but not including MSR or SOFTE. Also
 200         * take care of keeping r2 (TLS) intact if not a signal
 201         */
 202        if (!sig)
 203                save_r2 = (unsigned int)regs->gpr[2];
 204        for (i = 0; i <= PT_RESULT; i++) {
 205                if ((i == PT_MSR) || (i == PT_SOFTE))
 206                        continue;
 207                err |= __get_user(gregs[i], &sr->mc_gregs[i]);
 208        }
 209        if (!sig)
 210                regs->gpr[2] = (unsigned long) save_r2;
 211        if (err)
 212                return 1;
 213
 214        /* force the process to reload the FP registers from
 215           current->thread when it next does FP instructions */
 216        regs->msr &= ~(MSR_FP | MSR_FE0 | MSR_FE1);
 217        if (__copy_from_user(current->thread.fpr, &sr->mc_fregs,
 218                             sizeof(sr->mc_fregs)))
 219                return 1;
 220
 221#ifdef CONFIG_ALTIVEC
 222        /* force the process to reload the altivec registers from
 223           current->thread when it next does altivec instructions */
 224        regs->msr &= ~MSR_VEC;
 225        if (!__get_user(msr, &sr->mc_gregs[PT_MSR]) && (msr & MSR_VEC) != 0) {
 226                /* restore altivec registers from the stack */
 227                if (__copy_from_user(current->thread.vr, &sr->mc_vregs,
 228                                     sizeof(sr->mc_vregs)))
 229                        return 1;
 230        } else if (current->thread.used_vr)
 231                memset(current->thread.vr, 0, ELF_NVRREG32 * sizeof(vector128));
 232
 233        /* Always get VRSAVE back */
 234        if (__get_user(current->thread.vrsave, (u32 __user *)&sr->mc_vregs[32]))
 235                return 1;
 236#endif /* CONFIG_ALTIVEC */
 237
 238#ifndef CONFIG_SMP
 239        preempt_disable();
 240        if (last_task_used_math == current)
 241                last_task_used_math = NULL;
 242        if (last_task_used_altivec == current)
 243                last_task_used_altivec = NULL;
 244        preempt_enable();
 245#endif
 246        return 0;
 247}
 248
 249
 250/*
 251 *  Start of nonRT signal support
 252 *
 253 *     sigset_t is 32 bits for non-rt signals
 254 *
 255 *  System Calls
 256 *       sigaction                sys32_sigaction
 257 *       sigreturn                sys32_sigreturn
 258 *
 259 *  Note sigsuspend has no special 32 bit routine - uses the 64 bit routine
 260 *
 261 *  Other routines
 262 *        setup_frame32
 263 */
 264
 265/*
 266 * Atomically swap in the new signal mask, and wait for a signal.
 267 */
 268long sys32_sigsuspend(old_sigset_t mask, int p2, int p3, int p4, int p6, int p7,
 269               struct pt_regs *regs)
 270{
 271        sigset_t saveset;
 272
 273        mask &= _BLOCKABLE;
 274        spin_lock_irq(&current->sighand->siglock);
 275        saveset = current->blocked;
 276        siginitset(&current->blocked, mask);
 277        recalc_sigpending();
 278        spin_unlock_irq(&current->sighand->siglock);
 279
 280        regs->result = -EINTR;
 281        regs->gpr[3] = EINTR;
 282        regs->ccr |= 0x10000000;
 283        while (1) {
 284                current->state = TASK_INTERRUPTIBLE;
 285                schedule();
 286                if (do_signal32(&saveset, regs))
 287                        /*
 288                         * Returning 0 means we return to userspace via
 289                         * ret_from_except and thus restore all user
 290                         * registers from *regs.  This is what we need
 291                         * to do when a signal has been delivered.
 292                         */
 293                        return 0;
 294        }
 295}
 296
 297long sys32_sigaction(int sig, struct old_sigaction32 __user *act,
 298                struct old_sigaction32 __user *oact)
 299{
 300        struct k_sigaction new_ka, old_ka;
 301        int ret;
 302        
 303        if (sig < 0)
 304                sig = -sig;
 305
 306        if (act) {
 307                compat_old_sigset_t mask;
 308                compat_uptr_t handler, restorer;
 309
 310                if (get_user(handler, &act->sa_handler) ||
 311                    __get_user(restorer, &act->sa_restorer) ||
 312                    __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
 313                    __get_user(mask, &act->sa_mask))
 314                        return -EFAULT;
 315                new_ka.sa.sa_handler = compat_ptr(handler);
 316                new_ka.sa.sa_restorer = compat_ptr(restorer);
 317                siginitset(&new_ka.sa.sa_mask, mask);
 318        }
 319
 320        ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
 321        if (!ret && oact) {
 322                if (put_user((long)old_ka.sa.sa_handler, &oact->sa_handler) ||
 323                    __put_user((long)old_ka.sa.sa_restorer, &oact->sa_restorer) ||
 324                    __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
 325                    __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
 326                        return -EFAULT;
 327        }
 328
 329        return ret;
 330}
 331
 332
 333
 334/*
 335 *  Start of RT signal support
 336 *
 337 *     sigset_t is 64 bits for rt signals
 338 *
 339 *  System Calls
 340 *       sigaction                sys32_rt_sigaction
 341 *       sigpending               sys32_rt_sigpending
 342 *       sigprocmask              sys32_rt_sigprocmask
 343 *       sigreturn                sys32_rt_sigreturn
 344 *       sigqueueinfo             sys32_rt_sigqueueinfo
 345 *       sigsuspend               sys32_rt_sigsuspend
 346 *
 347 *  Other routines
 348 *        setup_rt_frame32
 349 *        copy_siginfo_to_user32
 350 *        siginfo32to64
 351 */
 352
 353
 354long sys32_rt_sigaction(int sig, const struct sigaction32 __user *act,
 355                struct sigaction32 __user *oact, size_t sigsetsize)
 356{
 357        struct k_sigaction new_ka, old_ka;
 358        int ret;
 359        compat_sigset_t set32;
 360
 361        /* XXX: Don't preclude handling different sized sigset_t's.  */
 362        if (sigsetsize != sizeof(compat_sigset_t))
 363                return -EINVAL;
 364
 365        if (act) {
 366                compat_uptr_t handler;
 367
 368                ret = get_user(handler, &act->sa_handler);
 369                new_ka.sa.sa_handler = compat_ptr(handler);
 370                ret |= __copy_from_user(&set32, &act->sa_mask,
 371                                        sizeof(compat_sigset_t));
 372                sigset_from_compat(&new_ka.sa.sa_mask, &set32);
 373                ret |= __get_user(new_ka.sa.sa_flags, &act->sa_flags);
 374                if (ret)
 375                        return -EFAULT;
 376        }
 377
 378        ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
 379        if (!ret && oact) {
 380                compat_from_sigset(&set32, &old_ka.sa.sa_mask);
 381                ret = put_user((long)old_ka.sa.sa_handler, &oact->sa_handler);
 382                ret |= __copy_to_user(&oact->sa_mask, &set32,
 383                                      sizeof(compat_sigset_t));
 384                ret |= __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
 385        }
 386        return ret;
 387}
 388
 389/*
 390 * Note: it is necessary to treat how as an unsigned int, with the
 391 * corresponding cast to a signed int to insure that the proper
 392 * conversion (sign extension) between the register representation
 393 * of a signed int (msr in 32-bit mode) and the register representation
 394 * of a signed int (msr in 64-bit mode) is performed.
 395 */
 396long sys32_rt_sigprocmask(u32 how, compat_sigset_t __user *set,
 397                compat_sigset_t __user *oset, size_t sigsetsize)
 398{
 399        sigset_t s;
 400        sigset_t __user *up;
 401        compat_sigset_t s32;
 402        int ret;
 403        mm_segment_t old_fs = get_fs();
 404
 405        if (set) {
 406                if (copy_from_user (&s32, set, sizeof(compat_sigset_t)))
 407                        return -EFAULT;    
 408                sigset_from_compat(&s, &s32);
 409        }
 410        
 411        set_fs(KERNEL_DS);
 412        /* This is valid because of the set_fs() */
 413        up = (sigset_t __user *) &s;
 414        ret = sys_rt_sigprocmask((int)how, set ? up : NULL, oset ? up : NULL,
 415                                 sigsetsize); 
 416        set_fs(old_fs);
 417        if (ret)
 418                return ret;
 419        if (oset) {
 420                compat_from_sigset(&s32, &s);
 421                if (copy_to_user (oset, &s32, sizeof(compat_sigset_t)))
 422                        return -EFAULT;
 423        }
 424        return 0;
 425}
 426
 427long sys32_rt_sigpending(compat_sigset_t __user *set, compat_size_t sigsetsize)
 428{
 429        sigset_t s;
 430        compat_sigset_t s32;
 431        int ret;
 432        mm_segment_t old_fs = get_fs();
 433
 434        set_fs(KERNEL_DS);
 435        /* The __user pointer cast is valid because of the set_fs() */
 436        ret = sys_rt_sigpending((sigset_t __user *) &s, sigsetsize);
 437        set_fs(old_fs);
 438        if (!ret) {
 439                compat_from_sigset(&s32, &s);
 440                if (copy_to_user (set, &s32, sizeof(compat_sigset_t)))
 441                        return -EFAULT;
 442        }
 443        return ret;
 444}
 445
 446
 447int copy_siginfo_to_user32(struct compat_siginfo __user *d, siginfo_t *s)
 448{
 449        int err;
 450
 451        if (!access_ok (VERIFY_WRITE, d, sizeof(*d)))
 452                return -EFAULT;
 453
 454        /* If you change siginfo_t structure, please be sure
 455         * this code is fixed accordingly.
 456         * It should never copy any pad contained in the structure
 457         * to avoid security leaks, but must copy the generic
 458         * 3 ints plus the relevant union member.
 459         * This routine must convert siginfo from 64bit to 32bit as well
 460         * at the same time.
 461         */
 462        err = __put_user(s->si_signo, &d->si_signo);
 463        err |= __put_user(s->si_errno, &d->si_errno);
 464        err |= __put_user((short)s->si_code, &d->si_code);
 465        if (s->si_code < 0)
 466                err |= __copy_to_user(&d->_sifields._pad, &s->_sifields._pad,
 467                                      SI_PAD_SIZE32);
 468        else switch(s->si_code >> 16) {
 469        case __SI_CHLD >> 16:
 470                err |= __put_user(s->si_pid, &d->si_pid);
 471                err |= __put_user(s->si_uid, &d->si_uid);
 472                err |= __put_user(s->si_utime, &d->si_utime);
 473                err |= __put_user(s->si_stime, &d->si_stime);
 474                err |= __put_user(s->si_status, &d->si_status);
 475                break;
 476        case __SI_FAULT >> 16:
 477                err |= __put_user((unsigned int)(unsigned long)s->si_addr,
 478                                  &d->si_addr);
 479                break;
 480        case __SI_POLL >> 16:
 481                err |= __put_user(s->si_band, &d->si_band);
 482                err |= __put_user(s->si_fd, &d->si_fd);
 483                break;
 484        case __SI_TIMER >> 16:
 485                err |= __put_user(s->si_tid, &d->si_tid);
 486                err |= __put_user(s->si_overrun, &d->si_overrun);
 487                err |= __put_user(s->si_int, &d->si_int);
 488                break;
 489        case __SI_RT >> 16: /* This is not generated by the kernel as of now.  */
 490        case __SI_MESGQ >> 16:
 491                err |= __put_user(s->si_int, &d->si_int);
 492                /* fallthrough */
 493        case __SI_KILL >> 16:
 494        default:
 495                err |= __put_user(s->si_pid, &d->si_pid);
 496                err |= __put_user(s->si_uid, &d->si_uid);
 497                break;
 498        }
 499        return err;
 500}
 501
 502/*
 503 * Note: it is necessary to treat pid and sig as unsigned ints, with the
 504 * corresponding cast to a signed int to insure that the proper conversion
 505 * (sign extension) between the register representation of a signed int
 506 * (msr in 32-bit mode) and the register representation of a signed int
 507 * (msr in 64-bit mode) is performed.
 508 */
 509long sys32_rt_sigqueueinfo(u32 pid, u32 sig, compat_siginfo_t __user *uinfo)
 510{
 511        siginfo_t info;
 512        int ret;
 513        mm_segment_t old_fs = get_fs();
 514        
 515        if (copy_from_user (&info, uinfo, 3*sizeof(int)) ||
 516            copy_from_user (info._sifields._pad, uinfo->_sifields._pad, SI_PAD_SIZE32))
 517                return -EFAULT;
 518        set_fs (KERNEL_DS);
 519        /* The __user pointer cast is valid becasuse of the set_fs() */
 520        ret = sys_rt_sigqueueinfo((int)pid, (int)sig, (siginfo_t __user *) &info);
 521        set_fs (old_fs);
 522        return ret;
 523}
 524
 525int sys32_rt_sigsuspend(compat_sigset_t __user * unewset, size_t sigsetsize, int p3,
 526                int p4, int p6, int p7, struct pt_regs *regs)
 527{
 528        sigset_t saveset, newset;
 529        compat_sigset_t s32;
 530
 531        /* XXX: Don't preclude handling different sized sigset_t's.  */
 532        if (sigsetsize != sizeof(sigset_t))
 533                return -EINVAL;
 534
 535        if (copy_from_user(&s32, unewset, sizeof(s32)))
 536                return -EFAULT;
 537
 538        /*
 539         * Swap the 2 words of the 64-bit sigset_t (they are stored
 540         * in the "wrong" endian in 32-bit user storage).
 541         */
 542        sigset_from_compat(&newset, &s32);
 543
 544        sigdelsetmask(&newset, ~_BLOCKABLE);
 545        spin_lock_irq(&current->sighand->siglock);
 546        saveset = current->blocked;
 547        current->blocked = newset;
 548        recalc_sigpending();
 549        spin_unlock_irq(&current->sighand->siglock);
 550
 551        regs->result = -EINTR;
 552        regs->gpr[3] = EINTR;
 553        regs->ccr |= 0x10000000;
 554        while (1) {
 555                current->state = TASK_INTERRUPTIBLE;
 556                schedule();
 557                if (do_signal32(&saveset, regs))
 558                        /*
 559                         * Returning 0 means we return to userspace via
 560                         * ret_from_except and thus restore all user
 561                         * registers from *regs.  This is what we need
 562                         * to do when a signal has been delivered.
 563                         */
 564                        return 0;
 565        }
 566}
 567
 568/*
 569 *  Start Alternate signal stack support
 570 *
 571 *  System Calls
 572 *       sigaltatck               sys32_sigaltstack
 573 */
 574
 575int sys32_sigaltstack(u32 __new, u32 __old, int r5,
 576                      int r6, int r7, int r8, struct pt_regs *regs)
 577{
 578        stack_32_t __user * newstack = (stack_32_t __user *)(long) __new;
 579        stack_32_t __user * oldstack = (stack_32_t __user *)(long) __old;
 580        stack_t uss, uoss;
 581        int ret;
 582        mm_segment_t old_fs;
 583        unsigned long sp;
 584        compat_uptr_t ss_sp;
 585
 586        /*
 587         * set sp to the user stack on entry to the system call
 588         * the system call router sets R9 to the saved registers
 589         */
 590        sp = regs->gpr[1];
 591
 592        /* Put new stack info in local 64 bit stack struct */
 593        if (newstack) {
 594                if (get_user(ss_sp, &newstack->ss_sp) ||
 595                    __get_user(uss.ss_flags, &newstack->ss_flags) ||
 596                    __get_user(uss.ss_size, &newstack->ss_size))
 597                        return -EFAULT;
 598                uss.ss_sp = compat_ptr(ss_sp);
 599        }
 600
 601        old_fs = get_fs();
 602        set_fs(KERNEL_DS);
 603        /* The __user pointer casts are valid because of the set_fs() */
 604        ret = do_sigaltstack(
 605                newstack ? (stack_t __user *) &uss : NULL,
 606                oldstack ? (stack_t __user *) &uoss : NULL,
 607                sp);
 608        set_fs(old_fs);
 609        /* Copy the stack information to the user output buffer */
 610        if (!ret && oldstack  &&
 611                (put_user((long)uoss.ss_sp, &oldstack->ss_sp) ||
 612                 __put_user(uoss.ss_flags, &oldstack->ss_flags) ||
 613                 __put_user(uoss.ss_size, &oldstack->ss_size)))
 614                return -EFAULT;
 615        return ret;
 616}
 617
 618
 619/*
 620 * Set up a signal frame for a "real-time" signal handler
 621 * (one which gets siginfo).
 622 */
 623static int handle_rt_signal32(unsigned long sig, struct k_sigaction *ka,
 624                              siginfo_t *info, sigset_t *oldset,
 625                              struct pt_regs * regs, unsigned long newsp)
 626{
 627        struct rt_sigframe32 __user *rt_sf;
 628        struct mcontext32 __user *frame;
 629        unsigned long origsp = newsp;
 630        compat_sigset_t c_oldset;
 631
 632        /* Set up Signal Frame */
 633        /* Put a Real Time Context onto stack */
 634        newsp -= sizeof(*rt_sf);
 635        rt_sf = (struct rt_sigframe32 __user *)newsp;
 636
 637        /* create a stack frame for the caller of the handler */
 638        newsp -= __SIGNAL_FRAMESIZE32 + 16;
 639
 640        if (verify_area(VERIFY_WRITE, (void __user *)newsp, origsp - newsp))
 641                goto badframe;
 642
 643        compat_from_sigset(&c_oldset, oldset);
 644
 645        /* Put the siginfo & fill in most of the ucontext */
 646        if (copy_siginfo_to_user32(&rt_sf->info, info)
 647            || __put_user(0, &rt_sf->uc.uc_flags)
 648            || __put_user(0, &rt_sf->uc.uc_link)
 649            || __put_user(current->sas_ss_sp, &rt_sf->uc.uc_stack.ss_sp)
 650            || __put_user(sas_ss_flags(regs->gpr[1]),
 651                          &rt_sf->uc.uc_stack.ss_flags)
 652            || __put_user(current->sas_ss_size, &rt_sf->uc.uc_stack.ss_size)
 653            || __put_user((u32)(u64)&rt_sf->uc.uc_mcontext, &rt_sf->uc.uc_regs)
 654            || __copy_to_user(&rt_sf->uc.uc_sigmask, &c_oldset, sizeof(c_oldset)))
 655                goto badframe;
 656
 657        /* Save user registers on the stack */
 658        frame = &rt_sf->uc.uc_mcontext;
 659        if (save_user_regs(regs, frame, __NR_rt_sigreturn))
 660                goto badframe;
 661
 662        if (put_user(regs->gpr[1], (unsigned long __user *)newsp))
 663                goto badframe;
 664        regs->gpr[1] = (unsigned long) newsp;
 665        regs->gpr[3] = sig;
 666        regs->gpr[4] = (unsigned long) &rt_sf->info;
 667        regs->gpr[5] = (unsigned long) &rt_sf->uc;
 668        regs->gpr[6] = (unsigned long) rt_sf;
 669        regs->nip = (unsigned long) ka->sa.sa_handler;
 670        regs->link = (unsigned long) frame->tramp;
 671        regs->trap = 0;
 672        regs->result = 0;
 673
 674        if (test_thread_flag(TIF_SINGLESTEP))
 675                ptrace_notify(SIGTRAP);
 676
 677        return 1;
 678
 679badframe:
 680#if DEBUG_SIG
 681        printk("badframe in handle_rt_signal, regs=%p frame=%p newsp=%lx\n",
 682               regs, frame, newsp);
 683#endif
 684        force_sigsegv(sig, current);
 685        return 0;
 686}
 687
 688static long do_setcontext32(struct ucontext32 __user *ucp, struct pt_regs *regs, int sig)
 689{
 690        compat_sigset_t c_set;
 691        sigset_t set;
 692        u32 mcp;
 693
 694        if (__copy_from_user(&c_set, &ucp->uc_sigmask, sizeof(c_set))
 695            || __get_user(mcp, &ucp->uc_regs))
 696                return -EFAULT;
 697        sigset_from_compat(&set, &c_set);
 698        restore_sigmask(&set);
 699        if (restore_user_regs(regs, (struct mcontext32 __user *)(u64)mcp, sig))
 700                return -EFAULT;
 701
 702        return 0;
 703}
 704
 705/*
 706 * Handle {get,set,swap}_context operations for 32 bits processes
 707 */
 708
 709long sys32_swapcontext(struct ucontext32 __user *old_ctx,
 710                       struct ucontext32 __user *new_ctx,
 711                       int ctx_size, int r6, int r7, int r8, struct pt_regs *regs)
 712{
 713        unsigned char tmp;
 714        compat_sigset_t c_set;
 715
 716        /* Context size is for future use. Right now, we only make sure
 717         * we are passed something we understand
 718         */
 719        if (ctx_size < sizeof(struct ucontext32))
 720                return -EINVAL;
 721
 722        if (old_ctx != NULL) {
 723                compat_from_sigset(&c_set, &current->blocked);
 724                if (verify_area(VERIFY_WRITE, old_ctx, sizeof(*old_ctx))
 725                    || save_user_regs(regs, &old_ctx->uc_mcontext, 0)
 726                    || __copy_to_user(&old_ctx->uc_sigmask, &c_set, sizeof(c_set))
 727                    || __put_user((u32)(u64)&old_ctx->uc_mcontext, &old_ctx->uc_regs))
 728                        return -EFAULT;
 729        }
 730        if (new_ctx == NULL)
 731                return 0;
 732        if (verify_area(VERIFY_READ, new_ctx, sizeof(*new_ctx))
 733            || __get_user(tmp, (u8 __user *) new_ctx)
 734            || __get_user(tmp, (u8 __user *) (new_ctx + 1) - 1))
 735                return -EFAULT;
 736
 737        /*
 738         * If we get a fault copying the context into the kernel's
 739         * image of the user's registers, we can't just return -EFAULT
 740         * because the user's registers will be corrupted.  For instance
 741         * the NIP value may have been updated but not some of the
 742         * other registers.  Given that we have done the verify_area
 743         * and successfully read the first and last bytes of the region
 744         * above, this should only happen in an out-of-memory situation
 745         * or if another thread unmaps the region containing the context.
 746         * We kill the task with a SIGSEGV in this situation.
 747         */
 748        if (do_setcontext32(new_ctx, regs, 0))
 749                do_exit(SIGSEGV);
 750
 751        return 0;
 752}
 753
 754long sys32_rt_sigreturn(int r3, int r4, int r5, int r6, int r7, int r8,
 755                     struct pt_regs *regs)
 756{
 757        struct rt_sigframe32 __user *rt_sf;
 758        int ret;
 759
 760
 761        /* Always make any pending restarted system calls return -EINTR */
 762        current_thread_info()->restart_block.fn = do_no_restart_syscall;
 763
 764        rt_sf = (struct rt_sigframe32 __user *)
 765                (regs->gpr[1] + __SIGNAL_FRAMESIZE32 + 16);
 766        if (verify_area(VERIFY_READ, rt_sf, sizeof(*rt_sf)))
 767                goto bad;
 768        if (do_setcontext32(&rt_sf->uc, regs, 1))
 769                goto bad;
 770
 771        /*
 772         * It's not clear whether or why it is desirable to save the
 773         * sigaltstack setting on signal delivery and restore it on
 774         * signal return.  But other architectures do this and we have
 775         * always done it up until now so it is probably better not to
 776         * change it.  -- paulus
 777         * We use the sys32_ version that does the 32/64 bits conversion
 778         * and takes userland pointer directly. What about error checking ?
 779         * nobody does any...
 780         */
 781        sys32_sigaltstack((u32)(u64)&rt_sf->uc.uc_stack, 0, 0, 0, 0, 0, regs);
 782
 783        ret = regs->result;
 784
 785        return ret;
 786
 787 bad:
 788        force_sig(SIGSEGV, current);
 789        return 0;
 790}
 791
 792
 793/*
 794 * OK, we're invoking a handler
 795 */
 796static int handle_signal32(unsigned long sig, struct k_sigaction *ka,
 797                            siginfo_t *info, sigset_t *oldset,
 798                            struct pt_regs * regs, unsigned long newsp)
 799{
 800        struct sigcontext32 __user *sc;
 801        struct sigregs32 __user *frame;
 802        unsigned long origsp = newsp;
 803
 804        /* Set up Signal Frame */
 805        newsp -= sizeof(struct sigregs32);
 806        frame = (struct sigregs32 __user *) newsp;
 807
 808        /* Put a sigcontext on the stack */
 809        newsp -= sizeof(*sc);
 810        sc = (struct sigcontext32 __user *) newsp;
 811
 812        /* create a stack frame for the caller of the handler */
 813        newsp -= __SIGNAL_FRAMESIZE32;
 814
 815        if (verify_area(VERIFY_WRITE, (void __user *) newsp, origsp - newsp))
 816                goto badframe;
 817
 818#if _NSIG != 64
 819#error "Please adjust handle_signal32()"
 820#endif
 821        if (__put_user((u32)(u64)ka->sa.sa_handler, &sc->handler)
 822            || __put_user(oldset->sig[0], &sc->oldmask)
 823            || __put_user((oldset->sig[0] >> 32), &sc->_unused[3])
 824            || __put_user((u32)(u64)frame, &sc->regs)
 825            || __put_user(sig, &sc->signal))
 826                goto badframe;
 827
 828        if (save_user_regs(regs, &frame->mctx, __NR_sigreturn))
 829                goto badframe;
 830
 831        if (put_user(regs->gpr[1], (unsigned long __user *)newsp))
 832                goto badframe;
 833        regs->gpr[1] = (unsigned long) newsp;
 834        regs->gpr[3] = sig;
 835        regs->gpr[4] = (unsigned long) sc;
 836        regs->nip = (unsigned long) ka->sa.sa_handler;
 837        regs->link = (unsigned long) frame->mctx.tramp;
 838        regs->trap = 0;
 839        regs->result = 0;
 840
 841        if (test_thread_flag(TIF_SINGLESTEP))
 842                ptrace_notify(SIGTRAP);
 843
 844        return 1;
 845
 846badframe:
 847#if DEBUG_SIG
 848        printk("badframe in handle_signal, regs=%p frame=%x newsp=%x\n",
 849               regs, frame, *newspp);
 850#endif
 851        force_sigsegv(sig, current);
 852        return 0;
 853}
 854
 855/*
 856 * Do a signal return; undo the signal stack.
 857 */
 858long sys32_sigreturn(int r3, int r4, int r5, int r6, int r7, int r8,
 859                       struct pt_regs *regs)
 860{
 861        struct sigcontext32 __user *sc;
 862        struct sigcontext32 sigctx;
 863        struct mcontext32 __user *sr;
 864        sigset_t set;
 865        int ret;
 866
 867        /* Always make any pending restarted system calls return -EINTR */
 868        current_thread_info()->restart_block.fn = do_no_restart_syscall;
 869
 870        sc = (struct sigcontext32 __user *)(regs->gpr[1] + __SIGNAL_FRAMESIZE32);
 871        if (copy_from_user(&sigctx, sc, sizeof(sigctx)))
 872                goto badframe;
 873
 874        /*
 875         * Note that PPC32 puts the upper 32 bits of the sigmask in the
 876         * unused part of the signal stackframe
 877         */
 878        set.sig[0] = sigctx.oldmask + ((long)(sigctx._unused[3]) << 32);
 879        restore_sigmask(&set);
 880
 881        sr = (struct mcontext32 __user *)(u64)sigctx.regs;
 882        if (verify_area(VERIFY_READ, sr, sizeof(*sr))
 883            || restore_user_regs(regs, sr, 1))
 884                goto badframe;
 885
 886        ret = regs->result;
 887        return ret;
 888
 889badframe:
 890        force_sig(SIGSEGV, current);
 891        return 0;
 892}
 893
 894
 895
 896/*
 897 *  Start of do_signal32 routine
 898 *
 899 *   This routine gets control when a pending signal needs to be processed
 900 *     in the 32 bit target thread -
 901 *
 902 *   It handles both rt and non-rt signals
 903 */
 904
 905/*
 906 * Note that 'init' is a special process: it doesn't get signals it doesn't
 907 * want to handle. Thus you cannot kill init even with a SIGKILL even by
 908 * mistake.
 909 */
 910
 911int do_signal32(sigset_t *oldset, struct pt_regs *regs)
 912{
 913        siginfo_t info;
 914        unsigned int frame, newsp;
 915        int signr, ret;
 916        struct k_sigaction ka;
 917
 918        if (!oldset)
 919                oldset = &current->blocked;
 920
 921        newsp = frame = 0;
 922
 923        signr = get_signal_to_deliver(&info, &ka, regs, NULL);
 924
 925        if (TRAP(regs) == 0x0C00                /* System Call! */
 926            && regs->ccr & 0x10000000           /* error signalled */
 927            && ((ret = regs->gpr[3]) == ERESTARTSYS
 928                || ret == ERESTARTNOHAND || ret == ERESTARTNOINTR
 929                || ret == ERESTART_RESTARTBLOCK)) {
 930
 931                if (signr > 0
 932                    && (ret == ERESTARTNOHAND || ret == ERESTART_RESTARTBLOCK
 933                        || (ret == ERESTARTSYS
 934                            && !(ka.sa.sa_flags & SA_RESTART)))) {
 935                        /* make the system call return an EINTR error */
 936                        regs->result = -EINTR;
 937                        regs->gpr[3] = EINTR;
 938                        /* note that the cr0.SO bit is already set */
 939                } else {
 940                        regs->nip -= 4; /* Back up & retry system call */
 941                        regs->result = 0;
 942                        regs->trap = 0;
 943                        if (ret == ERESTART_RESTARTBLOCK)
 944                                regs->gpr[0] = __NR_restart_syscall;
 945                        else
 946                                regs->gpr[3] = regs->orig_gpr3;
 947                }
 948        }
 949
 950        if (signr == 0)
 951                return 0;               /* no signals delivered */
 952
 953        if ((ka.sa.sa_flags & SA_ONSTACK) && current->sas_ss_size
 954            && (!on_sig_stack(regs->gpr[1])))
 955                newsp = (current->sas_ss_sp + current->sas_ss_size);
 956        else
 957                newsp = regs->gpr[1];
 958        newsp &= ~0xfUL;
 959
 960        /* Whee!  Actually deliver the signal.  */
 961        if (ka.sa.sa_flags & SA_SIGINFO)
 962                ret = handle_rt_signal32(signr, &ka, &info, oldset, regs, newsp);
 963        else
 964                ret = handle_signal32(signr, &ka, &info, oldset, regs, newsp);
 965
 966        if (ret && !(ka.sa.sa_flags & SA_NODEFER)) {
 967                spin_lock_irq(&current->sighand->siglock);
 968                sigorsets(&current->blocked, &current->blocked,
 969                          &ka.sa.sa_mask);
 970                sigaddset(&current->blocked, signr);
 971                recalc_sigpending();
 972                spin_unlock_irq(&current->sighand->siglock);
 973        }
 974
 975        return ret;
 976}
 977
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.