]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/ia64/kernel/ptrace.c
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux...
[linux-2.6-omap-h63xx.git] / arch / ia64 / kernel / ptrace.c
index 7136c7811efc6b2ae9c69b8935a3c81536502b41..92c9689b7d9764a80fc72b8a06f2c45b10443387 100644 (file)
@@ -22,6 +22,7 @@
 #include <linux/signal.h>
 #include <linux/regset.h>
 #include <linux/elf.h>
+#include <linux/tracehook.h>
 
 #include <asm/pgtable.h>
 #include <asm/processor.h>
@@ -603,7 +604,7 @@ void ia64_ptrace_stop(void)
 {
        if (test_and_set_tsk_thread_flag(current, TIF_RESTORE_RSE))
                return;
-       tsk_set_notify_resume(current);
+       set_notify_resume(current);
        unw_init_running(do_sync_rbs, ia64_sync_user_rbs);
 }
 
@@ -613,7 +614,6 @@ void ia64_ptrace_stop(void)
 void ia64_sync_krbs(void)
 {
        clear_tsk_thread_flag(current, TIF_RESTORE_RSE);
-       tsk_clear_notify_resume(current);
 
        unw_init_running(do_sync_rbs, ia64_sync_kernel_rbs);
 }
@@ -644,7 +644,7 @@ ptrace_attach_sync_user_rbs (struct task_struct *child)
                spin_lock_irq(&child->sighand->siglock);
                if (child->state == TASK_STOPPED &&
                    !test_and_set_tsk_thread_flag(child, TIF_RESTORE_RSE)) {
-                       tsk_set_notify_resume(child);
+                       set_notify_resume(child);
 
                        child->state = TASK_TRACED;
                        stopped = 1;
@@ -745,25 +745,6 @@ ia64_sync_fph (struct task_struct *task)
        psr->dfh = 1;
 }
 
-static int
-access_fr (struct unw_frame_info *info, int regnum, int hi,
-          unsigned long *data, int write_access)
-{
-       struct ia64_fpreg fpval;
-       int ret;
-
-       ret = unw_get_fr(info, regnum, &fpval);
-       if (ret < 0)
-               return ret;
-
-       if (write_access) {
-               fpval.u.bits[hi] = *data;
-               ret = unw_set_fr(info, regnum, fpval);
-       } else
-               *data = fpval.u.bits[hi];
-       return ret;
-}
-
 /*
  * Change the machine-state of CHILD such that it will return via the normal
  * kernel exit-path, rather than the syscall-exit path.
@@ -865,309 +846,7 @@ access_nat_bits (struct task_struct *child, struct pt_regs *pt,
 
 static int
 access_uarea (struct task_struct *child, unsigned long addr,
-             unsigned long *data, int write_access)
-{
-       unsigned long *ptr, regnum, urbs_end, cfm;
-       struct switch_stack *sw;
-       struct pt_regs *pt;
-#      define pt_reg_addr(pt, reg)     ((void *)                           \
-                                        ((unsigned long) (pt)              \
-                                         + offsetof(struct pt_regs, reg)))
-
-
-       pt = task_pt_regs(child);
-       sw = (struct switch_stack *) (child->thread.ksp + 16);
-
-       if ((addr & 0x7) != 0) {
-               dprintk("ptrace: unaligned register address 0x%lx\n", addr);
-               return -1;
-       }
-
-       if (addr < PT_F127 + 16) {
-               /* accessing fph */
-               if (write_access)
-                       ia64_sync_fph(child);
-               else
-                       ia64_flush_fph(child);
-               ptr = (unsigned long *)
-                       ((unsigned long) &child->thread.fph + addr);
-       } else if ((addr >= PT_F10) && (addr < PT_F11 + 16)) {
-               /* scratch registers untouched by kernel (saved in pt_regs) */
-               ptr = pt_reg_addr(pt, f10) + (addr - PT_F10);
-       } else if (addr >= PT_F12 && addr < PT_F15 + 16) {
-               /*
-                * Scratch registers untouched by kernel (saved in
-                * switch_stack).
-                */
-               ptr = (unsigned long *) ((long) sw
-                                        + (addr - PT_NAT_BITS - 32));
-       } else if (addr < PT_AR_LC + 8) {
-               /* preserved state: */
-               struct unw_frame_info info;
-               char nat = 0;
-               int ret;
-
-               unw_init_from_blocked_task(&info, child);
-               if (unw_unwind_to_user(&info) < 0)
-                       return -1;
-
-               switch (addr) {
-                     case PT_NAT_BITS:
-                       return access_nat_bits(child, pt, &info,
-                                              data, write_access);
-
-                     case PT_R4: case PT_R5: case PT_R6: case PT_R7:
-                       if (write_access) {
-                               /* read NaT bit first: */
-                               unsigned long dummy;
-
-                               ret = unw_get_gr(&info, (addr - PT_R4)/8 + 4,
-                                                &dummy, &nat);
-                               if (ret < 0)
-                                       return ret;
-                       }
-                       return unw_access_gr(&info, (addr - PT_R4)/8 + 4, data,
-                                            &nat, write_access);
-
-                     case PT_B1: case PT_B2: case PT_B3:
-                     case PT_B4: case PT_B5:
-                       return unw_access_br(&info, (addr - PT_B1)/8 + 1, data,
-                                            write_access);
-
-                     case PT_AR_EC:
-                       return unw_access_ar(&info, UNW_AR_EC, data,
-                                            write_access);
-
-                     case PT_AR_LC:
-                       return unw_access_ar(&info, UNW_AR_LC, data,
-                                            write_access);
-
-                     default:
-                       if (addr >= PT_F2 && addr < PT_F5 + 16)
-                               return access_fr(&info, (addr - PT_F2)/16 + 2,
-                                                (addr & 8) != 0, data,
-                                                write_access);
-                       else if (addr >= PT_F16 && addr < PT_F31 + 16)
-                               return access_fr(&info,
-                                                (addr - PT_F16)/16 + 16,
-                                                (addr & 8) != 0,
-                                                data, write_access);
-                       else {
-                               dprintk("ptrace: rejecting access to register "
-                                       "address 0x%lx\n", addr);
-                               return -1;
-                       }
-               }
-       } else if (addr < PT_F9+16) {
-               /* scratch state */
-               switch (addr) {
-                     case PT_AR_BSP:
-                       /*
-                        * By convention, we use PT_AR_BSP to refer to
-                        * the end of the user-level backing store.
-                        * Use ia64_rse_skip_regs(PT_AR_BSP, -CFM.sof)
-                        * to get the real value of ar.bsp at the time
-                        * the kernel was entered.
-                        *
-                        * Furthermore, when changing the contents of
-                        * PT_AR_BSP (or PT_CFM) while the task is
-                        * blocked in a system call, convert the state
-                        * so that the non-system-call exit
-                        * path is used.  This ensures that the proper
-                        * state will be picked up when resuming
-                        * execution.  However, it *also* means that
-                        * once we write PT_AR_BSP/PT_CFM, it won't be
-                        * possible to modify the syscall arguments of
-                        * the pending system call any longer.  This
-                        * shouldn't be an issue because modifying
-                        * PT_AR_BSP/PT_CFM generally implies that
-                        * we're either abandoning the pending system
-                        * call or that we defer it's re-execution
-                        * (e.g., due to GDB doing an inferior
-                        * function call).
-                        */
-                       urbs_end = ia64_get_user_rbs_end(child, pt, &cfm);
-                       if (write_access) {
-                               if (*data != urbs_end) {
-                                       if (in_syscall(pt))
-                                               convert_to_non_syscall(child,
-                                                                      pt,
-                                                                      cfm);
-                                       /*
-                                        * Simulate user-level write
-                                        * of ar.bsp:
-                                        */
-                                       pt->loadrs = 0;
-                                       pt->ar_bspstore = *data;
-                               }
-                       } else
-                               *data = urbs_end;
-                       return 0;
-
-                     case PT_CFM:
-                       urbs_end = ia64_get_user_rbs_end(child, pt, &cfm);
-                       if (write_access) {
-                               if (((cfm ^ *data) & PFM_MASK) != 0) {
-                                       if (in_syscall(pt))
-                                               convert_to_non_syscall(child,
-                                                                      pt,
-                                                                      cfm);
-                                       pt->cr_ifs = ((pt->cr_ifs & ~PFM_MASK)
-                                                     | (*data & PFM_MASK));
-                               }
-                       } else
-                               *data = cfm;
-                       return 0;
-
-                     case PT_CR_IPSR:
-                       if (write_access) {
-                               unsigned long tmp = *data;
-                               /* psr.ri==3 is a reserved value: SDM 2:25 */
-                               if ((tmp & IA64_PSR_RI) == IA64_PSR_RI)
-                                       tmp &= ~IA64_PSR_RI;
-                               pt->cr_ipsr = ((tmp & IPSR_MASK)
-                                              | (pt->cr_ipsr & ~IPSR_MASK));
-                       } else
-                               *data = (pt->cr_ipsr & IPSR_MASK);
-                       return 0;
-
-                     case PT_AR_RSC:
-                       if (write_access)
-                               pt->ar_rsc = *data | (3 << 2); /* force PL3 */
-                       else
-                               *data = pt->ar_rsc;
-                       return 0;
-
-                     case PT_AR_RNAT:
-                       ptr = pt_reg_addr(pt, ar_rnat);
-                       break;
-                     case PT_R1:
-                       ptr = pt_reg_addr(pt, r1);
-                       break;
-                     case PT_R2:  case PT_R3:
-                       ptr = pt_reg_addr(pt, r2) + (addr - PT_R2);
-                       break;
-                     case PT_R8:  case PT_R9:  case PT_R10: case PT_R11:
-                       ptr = pt_reg_addr(pt, r8) + (addr - PT_R8);
-                       break;
-                     case PT_R12: case PT_R13:
-                       ptr = pt_reg_addr(pt, r12) + (addr - PT_R12);
-                       break;
-                     case PT_R14:
-                       ptr = pt_reg_addr(pt, r14);
-                       break;
-                     case PT_R15:
-                       ptr = pt_reg_addr(pt, r15);
-                       break;
-                     case PT_R16: case PT_R17: case PT_R18: case PT_R19:
-                     case PT_R20: case PT_R21: case PT_R22: case PT_R23:
-                     case PT_R24: case PT_R25: case PT_R26: case PT_R27:
-                     case PT_R28: case PT_R29: case PT_R30: case PT_R31:
-                       ptr = pt_reg_addr(pt, r16) + (addr - PT_R16);
-                       break;
-                     case PT_B0:
-                       ptr = pt_reg_addr(pt, b0);
-                       break;
-                     case PT_B6:
-                       ptr = pt_reg_addr(pt, b6);
-                       break;
-                     case PT_B7:
-                       ptr = pt_reg_addr(pt, b7);
-                       break;
-                     case PT_F6:  case PT_F6+8: case PT_F7: case PT_F7+8:
-                     case PT_F8:  case PT_F8+8: case PT_F9: case PT_F9+8:
-                       ptr = pt_reg_addr(pt, f6) + (addr - PT_F6);
-                       break;
-                     case PT_AR_BSPSTORE:
-                       ptr = pt_reg_addr(pt, ar_bspstore);
-                       break;
-                     case PT_AR_UNAT:
-                       ptr = pt_reg_addr(pt, ar_unat);
-                       break;
-                     case PT_AR_PFS:
-                       ptr = pt_reg_addr(pt, ar_pfs);
-                       break;
-                     case PT_AR_CCV:
-                       ptr = pt_reg_addr(pt, ar_ccv);
-                       break;
-                     case PT_AR_FPSR:
-                       ptr = pt_reg_addr(pt, ar_fpsr);
-                       break;
-                     case PT_CR_IIP:
-                       ptr = pt_reg_addr(pt, cr_iip);
-                       break;
-                     case PT_PR:
-                       ptr = pt_reg_addr(pt, pr);
-                       break;
-                       /* scratch register */
-
-                     default:
-                       /* disallow accessing anything else... */
-                       dprintk("ptrace: rejecting access to register "
-                               "address 0x%lx\n", addr);
-                       return -1;
-               }
-       } else if (addr <= PT_AR_SSD) {
-               ptr = pt_reg_addr(pt, ar_csd) + (addr - PT_AR_CSD);
-       } else {
-               /* access debug registers */
-
-               if (addr >= PT_IBR) {
-                       regnum = (addr - PT_IBR) >> 3;
-                       ptr = &child->thread.ibr[0];
-               } else {
-                       regnum = (addr - PT_DBR) >> 3;
-                       ptr = &child->thread.dbr[0];
-               }
-
-               if (regnum >= 8) {
-                       dprintk("ptrace: rejecting access to register "
-                               "address 0x%lx\n", addr);
-                       return -1;
-               }
-#ifdef CONFIG_PERFMON
-               /*
-                * Check if debug registers are used by perfmon. This
-                * test must be done once we know that we can do the
-                * operation, i.e. the arguments are all valid, but
-                * before we start modifying the state.
-                *
-                * Perfmon needs to keep a count of how many processes
-                * are trying to modify the debug registers for system
-                * wide monitoring sessions.
-                *
-                * We also include read access here, because they may
-                * cause the PMU-installed debug register state
-                * (dbr[], ibr[]) to be reset. The two arrays are also
-                * used by perfmon, but we do not use
-                * IA64_THREAD_DBG_VALID. The registers are restored
-                * by the PMU context switch code.
-                */
-               if (pfm_use_debug_registers(child)) return -1;
-#endif
-
-               if (!(child->thread.flags & IA64_THREAD_DBG_VALID)) {
-                       child->thread.flags |= IA64_THREAD_DBG_VALID;
-                       memset(child->thread.dbr, 0,
-                              sizeof(child->thread.dbr));
-                       memset(child->thread.ibr, 0,
-                              sizeof(child->thread.ibr));
-               }
-
-               ptr += regnum;
-
-               if ((regnum & 1) && write_access) {
-                       /* don't let the user set kernel-level breakpoints: */
-                       *ptr = *data & ~(7UL << 56);
-                       return 0;
-               }
-       }
-       if (write_access)
-               *ptr = *data;
-       else
-               *data = *ptr;
-       return 0;
-}
+             unsigned long *data, int write_access);
 
 static long
 ptrace_getregs (struct task_struct *child, struct pt_all_user_regs __user *ppr)
@@ -1553,37 +1232,16 @@ arch_ptrace (struct task_struct *child, long request, long addr, long data)
 }
 
 
-static void
-syscall_trace (void)
-{
-       /*
-        * The 0x80 provides a way for the tracing parent to
-        * distinguish between a syscall stop and SIGTRAP delivery.
-        */
-       ptrace_notify(SIGTRAP
-                     | ((current->ptrace & PT_TRACESYSGOOD) ? 0x80 : 0));
-
-       /*
-        * This isn't the same as continuing with a signal, but it
-        * will do for normal use.  strace only continues with a
-        * signal if the stopping signal is not SIGTRAP.  -brl
-        */
-       if (current->exit_code) {
-               send_sig(current->exit_code, current, 1);
-               current->exit_code = 0;
-       }
-}
-
 /* "asmlinkage" so the input arguments are preserved... */
 
-asmlinkage void
+asmlinkage long
 syscall_trace_enter (long arg0, long arg1, long arg2, long arg3,
                     long arg4, long arg5, long arg6, long arg7,
                     struct pt_regs regs)
 {
-       if (test_thread_flag(TIF_SYSCALL_TRACE) 
-           && (current->ptrace & PT_PTRACED))
-               syscall_trace();
+       if (test_thread_flag(TIF_SYSCALL_TRACE))
+               if (tracehook_report_syscall_entry(&regs))
+                       return -ENOSYS;
 
        /* copy user rbs to kernel rbs */
        if (test_thread_flag(TIF_RESTORE_RSE))
@@ -1604,6 +1262,7 @@ syscall_trace_enter (long arg0, long arg1, long arg2, long arg3,
                audit_syscall_entry(arch, syscall, arg0, arg1, arg2, arg3);
        }
 
+       return 0;
 }
 
 /* "asmlinkage" so the input arguments are preserved... */
@@ -1613,6 +1272,8 @@ syscall_trace_leave (long arg0, long arg1, long arg2, long arg3,
                     long arg4, long arg5, long arg6, long arg7,
                     struct pt_regs regs)
 {
+       int step;
+
        if (unlikely(current->audit_context)) {
                int success = AUDITSC_RESULT(regs.r10);
                long result = regs.r8;
@@ -1622,10 +1283,9 @@ syscall_trace_leave (long arg0, long arg1, long arg2, long arg3,
                audit_syscall_exit(success, result);
        }
 
-       if ((test_thread_flag(TIF_SYSCALL_TRACE)
-           || test_thread_flag(TIF_SINGLESTEP))
-           && (current->ptrace & PT_PTRACED))
-               syscall_trace();
+       step = test_thread_flag(TIF_SINGLESTEP);
+       if (step || test_thread_flag(TIF_SYSCALL_TRACE))
+               tracehook_report_syscall_exit(&regs, step);
 
        /* copy user rbs to kernel rbs */
        if (test_thread_flag(TIF_RESTORE_RSE))
@@ -2261,7 +1921,7 @@ gpregs_writeback(struct task_struct *target,
 {
        if (test_and_set_tsk_thread_flag(target, TIF_RESTORE_RSE))
                return 0;
-       tsk_set_notify_resume(target);
+       set_notify_resume(target);
        return do_regset_call(do_gpregs_writeback, target, regset, 0, 0,
                NULL, NULL);
 }
@@ -2290,6 +1950,205 @@ static int fpregs_set(struct task_struct *target,
                kbuf, ubuf);
 }
 
+static int
+access_uarea(struct task_struct *child, unsigned long addr,
+             unsigned long *data, int write_access)
+{
+       unsigned int pos = -1; /* an invalid value */
+       int ret;
+       unsigned long *ptr, regnum;
+
+       if ((addr & 0x7) != 0) {
+               dprintk("ptrace: unaligned register address 0x%lx\n", addr);
+               return -1;
+       }
+       if ((addr >= PT_NAT_BITS + 8 && addr < PT_F2) ||
+               (addr >= PT_R7 + 8 && addr < PT_B1) ||
+               (addr >= PT_AR_LC + 8 && addr < PT_CR_IPSR) ||
+               (addr >= PT_AR_SSD + 8 && addr < PT_DBR)) {
+               dprintk("ptrace: rejecting access to register "
+                                       "address 0x%lx\n", addr);
+               return -1;
+       }
+
+       switch (addr) {
+       case PT_F32 ... (PT_F127 + 15):
+               pos = addr - PT_F32 + ELF_FP_OFFSET(32);
+               break;
+       case PT_F2 ... (PT_F5 + 15):
+               pos = addr - PT_F2 + ELF_FP_OFFSET(2);
+               break;
+       case PT_F10 ... (PT_F31 + 15):
+               pos = addr - PT_F10 + ELF_FP_OFFSET(10);
+               break;
+       case PT_F6 ... (PT_F9 + 15):
+               pos = addr - PT_F6 + ELF_FP_OFFSET(6);
+               break;
+       }
+
+       if (pos != -1) {
+               if (write_access)
+                       ret = fpregs_set(child, NULL, pos,
+                               sizeof(unsigned long), data, NULL);
+               else
+                       ret = fpregs_get(child, NULL, pos,
+                               sizeof(unsigned long), data, NULL);
+               if (ret != 0)
+                       return -1;
+               return 0;
+       }
+
+       switch (addr) {
+       case PT_NAT_BITS:
+               pos = ELF_NAT_OFFSET;
+               break;
+       case PT_R4 ... PT_R7:
+               pos = addr - PT_R4 + ELF_GR_OFFSET(4);
+               break;
+       case PT_B1 ... PT_B5:
+               pos = addr - PT_B1 + ELF_BR_OFFSET(1);
+               break;
+       case PT_AR_EC:
+               pos = ELF_AR_EC_OFFSET;
+               break;
+       case PT_AR_LC:
+               pos = ELF_AR_LC_OFFSET;
+               break;
+       case PT_CR_IPSR:
+               pos = ELF_CR_IPSR_OFFSET;
+               break;
+       case PT_CR_IIP:
+               pos = ELF_CR_IIP_OFFSET;
+               break;
+       case PT_CFM:
+               pos = ELF_CFM_OFFSET;
+               break;
+       case PT_AR_UNAT:
+               pos = ELF_AR_UNAT_OFFSET;
+               break;
+       case PT_AR_PFS:
+               pos = ELF_AR_PFS_OFFSET;
+               break;
+       case PT_AR_RSC:
+               pos = ELF_AR_RSC_OFFSET;
+               break;
+       case PT_AR_RNAT:
+               pos = ELF_AR_RNAT_OFFSET;
+               break;
+       case PT_AR_BSPSTORE:
+               pos = ELF_AR_BSPSTORE_OFFSET;
+               break;
+       case PT_PR:
+               pos = ELF_PR_OFFSET;
+               break;
+       case PT_B6:
+               pos = ELF_BR_OFFSET(6);
+               break;
+       case PT_AR_BSP:
+               pos = ELF_AR_BSP_OFFSET;
+               break;
+       case PT_R1 ... PT_R3:
+               pos = addr - PT_R1 + ELF_GR_OFFSET(1);
+               break;
+       case PT_R12 ... PT_R15:
+               pos = addr - PT_R12 + ELF_GR_OFFSET(12);
+               break;
+       case PT_R8 ... PT_R11:
+               pos = addr - PT_R8 + ELF_GR_OFFSET(8);
+               break;
+       case PT_R16 ... PT_R31:
+               pos = addr - PT_R16 + ELF_GR_OFFSET(16);
+               break;
+       case PT_AR_CCV:
+               pos = ELF_AR_CCV_OFFSET;
+               break;
+       case PT_AR_FPSR:
+               pos = ELF_AR_FPSR_OFFSET;
+               break;
+       case PT_B0:
+               pos = ELF_BR_OFFSET(0);
+               break;
+       case PT_B7:
+               pos = ELF_BR_OFFSET(7);
+               break;
+       case PT_AR_CSD:
+               pos = ELF_AR_CSD_OFFSET;
+               break;
+       case PT_AR_SSD:
+               pos = ELF_AR_SSD_OFFSET;
+               break;
+       }
+
+       if (pos != -1) {
+               if (write_access)
+                       ret = gpregs_set(child, NULL, pos,
+                               sizeof(unsigned long), data, NULL);
+               else
+                       ret = gpregs_get(child, NULL, pos,
+                               sizeof(unsigned long), data, NULL);
+               if (ret != 0)
+                       return -1;
+               return 0;
+       }
+
+       /* access debug registers */
+       if (addr >= PT_IBR) {
+               regnum = (addr - PT_IBR) >> 3;
+               ptr = &child->thread.ibr[0];
+       } else {
+               regnum = (addr - PT_DBR) >> 3;
+               ptr = &child->thread.dbr[0];
+       }
+
+       if (regnum >= 8) {
+               dprintk("ptrace: rejecting access to register "
+                               "address 0x%lx\n", addr);
+               return -1;
+       }
+#ifdef CONFIG_PERFMON
+       /*
+        * Check if debug registers are used by perfmon. This
+        * test must be done once we know that we can do the
+        * operation, i.e. the arguments are all valid, but
+        * before we start modifying the state.
+        *
+        * Perfmon needs to keep a count of how many processes
+        * are trying to modify the debug registers for system
+        * wide monitoring sessions.
+        *
+        * We also include read access here, because they may
+        * cause the PMU-installed debug register state
+        * (dbr[], ibr[]) to be reset. The two arrays are also
+        * used by perfmon, but we do not use
+        * IA64_THREAD_DBG_VALID. The registers are restored
+        * by the PMU context switch code.
+        */
+       if (pfm_use_debug_registers(child))
+               return -1;
+#endif
+
+       if (!(child->thread.flags & IA64_THREAD_DBG_VALID)) {
+               child->thread.flags |= IA64_THREAD_DBG_VALID;
+               memset(child->thread.dbr, 0,
+                               sizeof(child->thread.dbr));
+               memset(child->thread.ibr, 0,
+                               sizeof(child->thread.ibr));
+       }
+
+       ptr += regnum;
+
+       if ((regnum & 1) && write_access) {
+               /* don't let the user set kernel-level breakpoints: */
+               *ptr = *data & ~(7UL << 56);
+               return 0;
+       }
+       if (write_access)
+               *ptr = *data;
+       else
+               *data = *ptr;
+       return 0;
+}
+
 static const struct user_regset native_regsets[] = {
        {
                .core_note_type = NT_PRSTATUS,
@@ -2314,5 +2173,75 @@ static const struct user_regset_view user_ia64_view = {
 
 const struct user_regset_view *task_user_regset_view(struct task_struct *tsk)
 {
+#ifdef CONFIG_IA32_SUPPORT
+       extern const struct user_regset_view user_ia32_view;
+       if (IS_IA32_PROCESS(task_pt_regs(tsk)))
+               return &user_ia32_view;
+#endif
        return &user_ia64_view;
 }
+
+struct syscall_get_set_args {
+       unsigned int i;
+       unsigned int n;
+       unsigned long *args;
+       struct pt_regs *regs;
+       int rw;
+};
+
+static void syscall_get_set_args_cb(struct unw_frame_info *info, void *data)
+{
+       struct syscall_get_set_args *args = data;
+       struct pt_regs *pt = args->regs;
+       unsigned long *krbs, cfm, ndirty;
+       int i, count;
+
+       if (unw_unwind_to_user(info) < 0)
+               return;
+
+       cfm = pt->cr_ifs;
+       krbs = (unsigned long *)info->task + IA64_RBS_OFFSET/8;
+       ndirty = ia64_rse_num_regs(krbs, krbs + (pt->loadrs >> 19));
+
+       count = 0;
+       if (in_syscall(pt))
+               count = min_t(int, args->n, cfm & 0x7f);
+
+       for (i = 0; i < count; i++) {
+               if (args->rw)
+                       *ia64_rse_skip_regs(krbs, ndirty + i + args->i) =
+                               args->args[i];
+               else
+                       args->args[i] = *ia64_rse_skip_regs(krbs,
+                               ndirty + i + args->i);
+       }
+
+       if (!args->rw) {
+               while (i < args->n) {
+                       args->args[i] = 0;
+                       i++;
+               }
+       }
+}
+
+void ia64_syscall_get_set_arguments(struct task_struct *task,
+       struct pt_regs *regs, unsigned int i, unsigned int n,
+       unsigned long *args, int rw)
+{
+       struct syscall_get_set_args data = {
+               .i = i,
+               .n = n,
+               .args = args,
+               .regs = regs,
+               .rw = rw,
+       };
+
+       if (task == current)
+               unw_init_running(syscall_get_set_args_cb, &data);
+       else {
+               struct unw_frame_info ufi;
+               memset(&ufi, 0, sizeof(ufi));
+               unw_init_from_blocked_task(&ufi, task);
+               syscall_get_set_args_cb(&ufi, &data);
+       }
+}