2 * Kernel support for the ptrace() and syscall tracing interfaces.
4 * Copyright (C) 1999-2005 Hewlett-Packard Co
5 * David Mosberger-Tang <davidm@hpl.hp.com>
6 * Copyright (C) 2006 Intel Co
7 * 2006-08-12 - IA64 Native Utrace implementation support added by
8 * Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10 * Derived from the x86 and Alpha versions.
12 #include <linux/kernel.h>
13 #include <linux/sched.h>
15 #include <linux/errno.h>
16 #include <linux/ptrace.h>
17 #include <linux/user.h>
18 #include <linux/security.h>
19 #include <linux/audit.h>
20 #include <linux/signal.h>
21 #include <linux/regset.h>
22 #include <linux/elf.h>
23 #include <linux/tracehook.h>
25 #include <asm/pgtable.h>
26 #include <asm/processor.h>
27 #include <asm/ptrace_offsets.h>
29 #include <asm/system.h>
30 #include <asm/uaccess.h>
31 #include <asm/unwind.h>
33 #include <asm/perfmon.h>
39 * Bits in the PSR that we allow ptrace() to change:
40 * be, up, ac, mfl, mfh (the user mask; five bits total)
41 * db (debug breakpoint fault; one bit)
42 * id (instruction debug fault disable; one bit)
43 * dd (data debug fault disable; one bit)
44 * ri (restart instruction; two bits)
45 * is (instruction set; one bit)
47 #define IPSR_MASK (IA64_PSR_UM | IA64_PSR_DB | IA64_PSR_IS \
48 | IA64_PSR_ID | IA64_PSR_DD | IA64_PSR_RI)
50 #define MASK(nbits) ((1UL << (nbits)) - 1) /* mask with NBITS bits set */
51 #define PFM_MASK MASK(38)
53 #define PTRACE_DEBUG 0
56 # define dprintk(format...) printk(format)
59 # define dprintk(format...)
62 /* Return TRUE if PT was created due to kernel-entry via a system-call. */
65 in_syscall (struct pt_regs
*pt
)
67 return (long) pt
->cr_ifs
>= 0;
71 * Collect the NaT bits for r1-r31 from scratch_unat and return a NaT
72 * bitset where bit i is set iff the NaT bit of register i is set.
75 ia64_get_scratch_nat_bits (struct pt_regs
*pt
, unsigned long scratch_unat
)
77 # define GET_BITS(first, last, unat) \
79 unsigned long bit = ia64_unat_pos(&pt->r##first); \
80 unsigned long nbits = (last - first + 1); \
81 unsigned long mask = MASK(nbits) << first; \
84 dist = 64 + bit - first; \
87 ia64_rotr(unat, dist) & mask; \
92 * Registers that are stored consecutively in struct pt_regs
93 * can be handled in parallel. If the register order in
94 * struct_pt_regs changes, this code MUST be updated.
96 val
= GET_BITS( 1, 1, scratch_unat
);
97 val
|= GET_BITS( 2, 3, scratch_unat
);
98 val
|= GET_BITS(12, 13, scratch_unat
);
99 val
|= GET_BITS(14, 14, scratch_unat
);
100 val
|= GET_BITS(15, 15, scratch_unat
);
101 val
|= GET_BITS( 8, 11, scratch_unat
);
102 val
|= GET_BITS(16, 31, scratch_unat
);
109 * Set the NaT bits for the scratch registers according to NAT and
110 * return the resulting unat (assuming the scratch registers are
114 ia64_put_scratch_nat_bits (struct pt_regs
*pt
, unsigned long nat
)
116 # define PUT_BITS(first, last, nat) \
118 unsigned long bit = ia64_unat_pos(&pt->r##first); \
119 unsigned long nbits = (last - first + 1); \
120 unsigned long mask = MASK(nbits) << first; \
123 dist = 64 + bit - first; \
125 dist = bit - first; \
126 ia64_rotl(nat & mask, dist); \
128 unsigned long scratch_unat
;
131 * Registers that are stored consecutively in struct pt_regs
132 * can be handled in parallel. If the register order in
133 * struct_pt_regs changes, this code MUST be updated.
135 scratch_unat
= PUT_BITS( 1, 1, nat
);
136 scratch_unat
|= PUT_BITS( 2, 3, nat
);
137 scratch_unat
|= PUT_BITS(12, 13, nat
);
138 scratch_unat
|= PUT_BITS(14, 14, nat
);
139 scratch_unat
|= PUT_BITS(15, 15, nat
);
140 scratch_unat
|= PUT_BITS( 8, 11, nat
);
141 scratch_unat
|= PUT_BITS(16, 31, nat
);
148 #define IA64_MLX_TEMPLATE 0x2
149 #define IA64_MOVL_OPCODE 6
152 ia64_increment_ip (struct pt_regs
*regs
)
154 unsigned long w0
, ri
= ia64_psr(regs
)->ri
+ 1;
159 } else if (ri
== 2) {
160 get_user(w0
, (char __user
*) regs
->cr_iip
+ 0);
161 if (((w0
>> 1) & 0xf) == IA64_MLX_TEMPLATE
) {
163 * rfi'ing to slot 2 of an MLX bundle causes
164 * an illegal operation fault. We don't want
171 ia64_psr(regs
)->ri
= ri
;
175 ia64_decrement_ip (struct pt_regs
*regs
)
177 unsigned long w0
, ri
= ia64_psr(regs
)->ri
- 1;
179 if (ia64_psr(regs
)->ri
== 0) {
182 get_user(w0
, (char __user
*) regs
->cr_iip
+ 0);
183 if (((w0
>> 1) & 0xf) == IA64_MLX_TEMPLATE
) {
185 * rfi'ing to slot 2 of an MLX bundle causes
186 * an illegal operation fault. We don't want
192 ia64_psr(regs
)->ri
= ri
;
196 * This routine is used to read an rnat bits that are stored on the
197 * kernel backing store. Since, in general, the alignment of the user
198 * and kernel are different, this is not completely trivial. In
199 * essence, we need to construct the user RNAT based on up to two
200 * kernel RNAT values and/or the RNAT value saved in the child's
205 * +--------+ <-- lowest address
212 * | slot01 | > child_regs->ar_rnat
214 * | slot02 | / kernel rbs
215 * +--------+ +--------+
216 * <- child_regs->ar_bspstore | slot61 | <-- krbs
217 * +- - - - + +--------+
219 * +- - - - + +--------+
221 * +- - - - + +--------+
223 * +- - - - + +--------+
228 * | slot01 | > child_stack->ar_rnat
232 * <--- child_stack->ar_bspstore
234 * The way to think of this code is as follows: bit 0 in the user rnat
235 * corresponds to some bit N (0 <= N <= 62) in one of the kernel rnat
236 * value. The kernel rnat value holding this bit is stored in
237 * variable rnat0. rnat1 is loaded with the kernel rnat value that
238 * form the upper bits of the user rnat value.
242 * o when reading the rnat "below" the first rnat slot on the kernel
243 * backing store, rnat0/rnat1 are set to 0 and the low order bits are
244 * merged in from pt->ar_rnat.
246 * o when reading the rnat "above" the last rnat slot on the kernel
247 * backing store, rnat0/rnat1 gets its value from sw->ar_rnat.
250 get_rnat (struct task_struct
*task
, struct switch_stack
*sw
,
251 unsigned long *krbs
, unsigned long *urnat_addr
,
252 unsigned long *urbs_end
)
254 unsigned long rnat0
= 0, rnat1
= 0, urnat
= 0, *slot0_kaddr
;
255 unsigned long umask
= 0, mask
, m
;
256 unsigned long *kbsp
, *ubspstore
, *rnat0_kaddr
, *rnat1_kaddr
, shift
;
257 long num_regs
, nbits
;
260 pt
= task_pt_regs(task
);
261 kbsp
= (unsigned long *) sw
->ar_bspstore
;
262 ubspstore
= (unsigned long *) pt
->ar_bspstore
;
264 if (urbs_end
< urnat_addr
)
265 nbits
= ia64_rse_num_regs(urnat_addr
- 63, urbs_end
);
270 * First, figure out which bit number slot 0 in user-land maps
271 * to in the kernel rnat. Do this by figuring out how many
272 * register slots we're beyond the user's backingstore and
273 * then computing the equivalent address in kernel space.
275 num_regs
= ia64_rse_num_regs(ubspstore
, urnat_addr
+ 1);
276 slot0_kaddr
= ia64_rse_skip_regs(krbs
, num_regs
);
277 shift
= ia64_rse_slot_num(slot0_kaddr
);
278 rnat1_kaddr
= ia64_rse_rnat_addr(slot0_kaddr
);
279 rnat0_kaddr
= rnat1_kaddr
- 64;
281 if (ubspstore
+ 63 > urnat_addr
) {
282 /* some bits need to be merged in from pt->ar_rnat */
283 umask
= MASK(ia64_rse_slot_num(ubspstore
)) & mask
;
284 urnat
= (pt
->ar_rnat
& umask
);
291 if (rnat0_kaddr
>= kbsp
)
293 else if (rnat0_kaddr
> krbs
)
294 rnat0
= *rnat0_kaddr
;
295 urnat
|= (rnat0
& m
) >> shift
;
297 m
= mask
>> (63 - shift
);
298 if (rnat1_kaddr
>= kbsp
)
300 else if (rnat1_kaddr
> krbs
)
301 rnat1
= *rnat1_kaddr
;
302 urnat
|= (rnat1
& m
) << (63 - shift
);
307 * The reverse of get_rnat.
310 put_rnat (struct task_struct
*task
, struct switch_stack
*sw
,
311 unsigned long *krbs
, unsigned long *urnat_addr
, unsigned long urnat
,
312 unsigned long *urbs_end
)
314 unsigned long rnat0
= 0, rnat1
= 0, *slot0_kaddr
, umask
= 0, mask
, m
;
315 unsigned long *kbsp
, *ubspstore
, *rnat0_kaddr
, *rnat1_kaddr
, shift
;
316 long num_regs
, nbits
;
318 unsigned long cfm
, *urbs_kargs
;
320 pt
= task_pt_regs(task
);
321 kbsp
= (unsigned long *) sw
->ar_bspstore
;
322 ubspstore
= (unsigned long *) pt
->ar_bspstore
;
324 urbs_kargs
= urbs_end
;
325 if (in_syscall(pt
)) {
327 * If entered via syscall, don't allow user to set rnat bits
331 urbs_kargs
= ia64_rse_skip_regs(urbs_end
, -(cfm
& 0x7f));
334 if (urbs_kargs
>= urnat_addr
)
337 if ((urnat_addr
- 63) >= urbs_kargs
)
339 nbits
= ia64_rse_num_regs(urnat_addr
- 63, urbs_kargs
);
344 * First, figure out which bit number slot 0 in user-land maps
345 * to in the kernel rnat. Do this by figuring out how many
346 * register slots we're beyond the user's backingstore and
347 * then computing the equivalent address in kernel space.
349 num_regs
= ia64_rse_num_regs(ubspstore
, urnat_addr
+ 1);
350 slot0_kaddr
= ia64_rse_skip_regs(krbs
, num_regs
);
351 shift
= ia64_rse_slot_num(slot0_kaddr
);
352 rnat1_kaddr
= ia64_rse_rnat_addr(slot0_kaddr
);
353 rnat0_kaddr
= rnat1_kaddr
- 64;
355 if (ubspstore
+ 63 > urnat_addr
) {
356 /* some bits need to be place in pt->ar_rnat: */
357 umask
= MASK(ia64_rse_slot_num(ubspstore
)) & mask
;
358 pt
->ar_rnat
= (pt
->ar_rnat
& ~umask
) | (urnat
& umask
);
364 * Note: Section 11.1 of the EAS guarantees that bit 63 of an
365 * rnat slot is ignored. so we don't have to clear it here.
367 rnat0
= (urnat
<< shift
);
369 if (rnat0_kaddr
>= kbsp
)
370 sw
->ar_rnat
= (sw
->ar_rnat
& ~m
) | (rnat0
& m
);
371 else if (rnat0_kaddr
> krbs
)
372 *rnat0_kaddr
= ((*rnat0_kaddr
& ~m
) | (rnat0
& m
));
374 rnat1
= (urnat
>> (63 - shift
));
375 m
= mask
>> (63 - shift
);
376 if (rnat1_kaddr
>= kbsp
)
377 sw
->ar_rnat
= (sw
->ar_rnat
& ~m
) | (rnat1
& m
);
378 else if (rnat1_kaddr
> krbs
)
379 *rnat1_kaddr
= ((*rnat1_kaddr
& ~m
) | (rnat1
& m
));
383 on_kernel_rbs (unsigned long addr
, unsigned long bspstore
,
384 unsigned long urbs_end
)
386 unsigned long *rnat_addr
= ia64_rse_rnat_addr((unsigned long *)
388 return (addr
>= bspstore
&& addr
<= (unsigned long) rnat_addr
);
392 * Read a word from the user-level backing store of task CHILD. ADDR
393 * is the user-level address to read the word from, VAL a pointer to
394 * the return value, and USER_BSP gives the end of the user-level
395 * backing store (i.e., it's the address that would be in ar.bsp after
396 * the user executed a "cover" instruction).
398 * This routine takes care of accessing the kernel register backing
399 * store for those registers that got spilled there. It also takes
400 * care of calculating the appropriate RNaT collection words.
403 ia64_peek (struct task_struct
*child
, struct switch_stack
*child_stack
,
404 unsigned long user_rbs_end
, unsigned long addr
, long *val
)
406 unsigned long *bspstore
, *krbs
, regnum
, *laddr
, *urbs_end
, *rnat_addr
;
407 struct pt_regs
*child_regs
;
411 urbs_end
= (long *) user_rbs_end
;
412 laddr
= (unsigned long *) addr
;
413 child_regs
= task_pt_regs(child
);
414 bspstore
= (unsigned long *) child_regs
->ar_bspstore
;
415 krbs
= (unsigned long *) child
+ IA64_RBS_OFFSET
/8;
416 if (on_kernel_rbs(addr
, (unsigned long) bspstore
,
417 (unsigned long) urbs_end
))
420 * Attempt to read the RBS in an area that's actually
421 * on the kernel RBS => read the corresponding bits in
424 rnat_addr
= ia64_rse_rnat_addr(laddr
);
425 ret
= get_rnat(child
, child_stack
, krbs
, rnat_addr
, urbs_end
);
427 if (laddr
== rnat_addr
) {
428 /* return NaT collection word itself */
433 if (((1UL << ia64_rse_slot_num(laddr
)) & ret
) != 0) {
435 * It is implementation dependent whether the
436 * data portion of a NaT value gets saved on a
437 * st8.spill or RSE spill (e.g., see EAS 2.6,
438 * 4.4.4.6 Register Spill and Fill). To get
439 * consistent behavior across all possible
440 * IA-64 implementations, we return zero in
447 if (laddr
< urbs_end
) {
449 * The desired word is on the kernel RBS and
452 regnum
= ia64_rse_num_regs(bspstore
, laddr
);
453 *val
= *ia64_rse_skip_regs(krbs
, regnum
);
457 copied
= access_process_vm(child
, addr
, &ret
, sizeof(ret
), 0);
458 if (copied
!= sizeof(ret
))
465 ia64_poke (struct task_struct
*child
, struct switch_stack
*child_stack
,
466 unsigned long user_rbs_end
, unsigned long addr
, long val
)
468 unsigned long *bspstore
, *krbs
, regnum
, *laddr
;
469 unsigned long *urbs_end
= (long *) user_rbs_end
;
470 struct pt_regs
*child_regs
;
472 laddr
= (unsigned long *) addr
;
473 child_regs
= task_pt_regs(child
);
474 bspstore
= (unsigned long *) child_regs
->ar_bspstore
;
475 krbs
= (unsigned long *) child
+ IA64_RBS_OFFSET
/8;
476 if (on_kernel_rbs(addr
, (unsigned long) bspstore
,
477 (unsigned long) urbs_end
))
480 * Attempt to write the RBS in an area that's actually
481 * on the kernel RBS => write the corresponding bits
484 if (ia64_rse_is_rnat_slot(laddr
))
485 put_rnat(child
, child_stack
, krbs
, laddr
, val
,
488 if (laddr
< urbs_end
) {
489 regnum
= ia64_rse_num_regs(bspstore
, laddr
);
490 *ia64_rse_skip_regs(krbs
, regnum
) = val
;
493 } else if (access_process_vm(child
, addr
, &val
, sizeof(val
), 1)
500 * Calculate the address of the end of the user-level register backing
501 * store. This is the address that would have been stored in ar.bsp
502 * if the user had executed a "cover" instruction right before
503 * entering the kernel. If CFMP is not NULL, it is used to return the
504 * "current frame mask" that was active at the time the kernel was
508 ia64_get_user_rbs_end (struct task_struct
*child
, struct pt_regs
*pt
,
511 unsigned long *krbs
, *bspstore
, cfm
= pt
->cr_ifs
;
514 krbs
= (unsigned long *) child
+ IA64_RBS_OFFSET
/8;
515 bspstore
= (unsigned long *) pt
->ar_bspstore
;
516 ndirty
= ia64_rse_num_regs(krbs
, krbs
+ (pt
->loadrs
>> 19));
519 ndirty
+= (cfm
& 0x7f);
521 cfm
&= ~(1UL << 63); /* clear valid bit */
525 return (unsigned long) ia64_rse_skip_regs(bspstore
, ndirty
);
529 * Synchronize (i.e, write) the RSE backing store living in kernel
530 * space to the VM of the CHILD task. SW and PT are the pointers to
531 * the switch_stack and pt_regs structures, respectively.
532 * USER_RBS_END is the user-level address at which the backing store
536 ia64_sync_user_rbs (struct task_struct
*child
, struct switch_stack
*sw
,
537 unsigned long user_rbs_start
, unsigned long user_rbs_end
)
539 unsigned long addr
, val
;
542 /* now copy word for word from kernel rbs to user rbs: */
543 for (addr
= user_rbs_start
; addr
< user_rbs_end
; addr
+= 8) {
544 ret
= ia64_peek(child
, sw
, user_rbs_end
, addr
, &val
);
547 if (access_process_vm(child
, addr
, &val
, sizeof(val
), 1)
555 ia64_sync_kernel_rbs (struct task_struct
*child
, struct switch_stack
*sw
,
556 unsigned long user_rbs_start
, unsigned long user_rbs_end
)
558 unsigned long addr
, val
;
561 /* now copy word for word from user rbs to kernel rbs: */
562 for (addr
= user_rbs_start
; addr
< user_rbs_end
; addr
+= 8) {
563 if (access_process_vm(child
, addr
, &val
, sizeof(val
), 0)
567 ret
= ia64_poke(child
, sw
, user_rbs_end
, addr
, val
);
574 typedef long (*syncfunc_t
)(struct task_struct
*, struct switch_stack
*,
575 unsigned long, unsigned long);
577 static void do_sync_rbs(struct unw_frame_info
*info
, void *arg
)
580 unsigned long urbs_end
;
583 if (unw_unwind_to_user(info
) < 0)
585 pt
= task_pt_regs(info
->task
);
586 urbs_end
= ia64_get_user_rbs_end(info
->task
, pt
, NULL
);
588 fn(info
->task
, info
->sw
, pt
->ar_bspstore
, urbs_end
);
592 * when a thread is stopped (ptraced), debugger might change thread's user
593 * stack (change memory directly), and we must avoid the RSE stored in kernel
594 * to override user stack (user space's RSE is newer than kernel's in the
595 * case). To workaround the issue, we copy kernel RSE to user RSE before the
596 * task is stopped, so user RSE has updated data. we then copy user RSE to
597 * kernel after the task is resummed from traced stop and kernel will use the
598 * newer RSE to return to user. TIF_RESTORE_RSE is the flag to indicate we need
599 * synchronize user RSE to kernel.
601 void ia64_ptrace_stop(void)
603 if (test_and_set_tsk_thread_flag(current
, TIF_RESTORE_RSE
))
605 set_notify_resume(current
);
606 unw_init_running(do_sync_rbs
, ia64_sync_user_rbs
);
610 * This is called to read back the register backing store.
612 void ia64_sync_krbs(void)
614 clear_tsk_thread_flag(current
, TIF_RESTORE_RSE
);
616 unw_init_running(do_sync_rbs
, ia64_sync_kernel_rbs
);
620 * After PTRACE_ATTACH, a thread's register backing store area in user
621 * space is assumed to contain correct data whenever the thread is
622 * stopped. arch_ptrace_stop takes care of this on tracing stops.
623 * But if the child was already stopped for job control when we attach
624 * to it, then it might not ever get into ptrace_stop by the time we
625 * want to examine the user memory containing the RBS.
628 ptrace_attach_sync_user_rbs (struct task_struct
*child
)
631 struct unw_frame_info info
;
634 * If the child is in TASK_STOPPED, we need to change that to
635 * TASK_TRACED momentarily while we operate on it. This ensures
636 * that the child won't be woken up and return to user mode while
637 * we are doing the sync. (It can only be woken up for SIGKILL.)
640 read_lock(&tasklist_lock
);
642 spin_lock_irq(&child
->sighand
->siglock
);
643 if (child
->state
== TASK_STOPPED
&&
644 !test_and_set_tsk_thread_flag(child
, TIF_RESTORE_RSE
)) {
645 set_notify_resume(child
);
647 child
->state
= TASK_TRACED
;
650 spin_unlock_irq(&child
->sighand
->siglock
);
652 read_unlock(&tasklist_lock
);
657 unw_init_from_blocked_task(&info
, child
);
658 do_sync_rbs(&info
, ia64_sync_user_rbs
);
661 * Now move the child back into TASK_STOPPED if it should be in a
662 * job control stop, so that SIGCONT can be used to wake it up.
664 read_lock(&tasklist_lock
);
666 spin_lock_irq(&child
->sighand
->siglock
);
667 if (child
->state
== TASK_TRACED
&&
668 (child
->signal
->flags
& SIGNAL_STOP_STOPPED
)) {
669 child
->state
= TASK_STOPPED
;
671 spin_unlock_irq(&child
->sighand
->siglock
);
673 read_unlock(&tasklist_lock
);
677 thread_matches (struct task_struct
*thread
, unsigned long addr
)
679 unsigned long thread_rbs_end
;
680 struct pt_regs
*thread_regs
;
682 if (ptrace_check_attach(thread
, 0) < 0)
684 * If the thread is not in an attachable state, we'll
685 * ignore it. The net effect is that if ADDR happens
686 * to overlap with the portion of the thread's
687 * register backing store that is currently residing
688 * on the thread's kernel stack, then ptrace() may end
689 * up accessing a stale value. But if the thread
690 * isn't stopped, that's a problem anyhow, so we're
691 * doing as well as we can...
695 thread_regs
= task_pt_regs(thread
);
696 thread_rbs_end
= ia64_get_user_rbs_end(thread
, thread_regs
, NULL
);
697 if (!on_kernel_rbs(addr
, thread_regs
->ar_bspstore
, thread_rbs_end
))
700 return 1; /* looks like we've got a winner */
704 * Write f32-f127 back to task->thread.fph if it has been modified.
707 ia64_flush_fph (struct task_struct
*task
)
709 struct ia64_psr
*psr
= ia64_psr(task_pt_regs(task
));
712 * Prevent migrating this task while
713 * we're fiddling with the FPU state
716 if (ia64_is_local_fpu_owner(task
) && psr
->mfh
) {
718 task
->thread
.flags
|= IA64_THREAD_FPH_VALID
;
719 ia64_save_fpu(&task
->thread
.fph
[0]);
725 * Sync the fph state of the task so that it can be manipulated
726 * through thread.fph. If necessary, f32-f127 are written back to
727 * thread.fph or, if the fph state hasn't been used before, thread.fph
728 * is cleared to zeroes. Also, access to f32-f127 is disabled to
729 * ensure that the task picks up the state from thread.fph when it
733 ia64_sync_fph (struct task_struct
*task
)
735 struct ia64_psr
*psr
= ia64_psr(task_pt_regs(task
));
737 ia64_flush_fph(task
);
738 if (!(task
->thread
.flags
& IA64_THREAD_FPH_VALID
)) {
739 task
->thread
.flags
|= IA64_THREAD_FPH_VALID
;
740 memset(&task
->thread
.fph
, 0, sizeof(task
->thread
.fph
));
747 * Change the machine-state of CHILD such that it will return via the normal
748 * kernel exit-path, rather than the syscall-exit path.
751 convert_to_non_syscall (struct task_struct
*child
, struct pt_regs
*pt
,
754 struct unw_frame_info info
, prev_info
;
755 unsigned long ip
, sp
, pr
;
757 unw_init_from_blocked_task(&info
, child
);
760 if (unw_unwind(&info
) < 0)
763 unw_get_sp(&info
, &sp
);
764 if ((long)((unsigned long)child
+ IA64_STK_OFFSET
- sp
)
765 < IA64_PT_REGS_SIZE
) {
766 dprintk("ptrace.%s: ran off the top of the kernel "
767 "stack\n", __func__
);
770 if (unw_get_pr (&prev_info
, &pr
) < 0) {
771 unw_get_rp(&prev_info
, &ip
);
772 dprintk("ptrace.%s: failed to read "
773 "predicate register (ip=0x%lx)\n",
777 if (unw_is_intr_frame(&info
)
778 && (pr
& (1UL << PRED_USER_STACK
)))
783 * Note: at the time of this call, the target task is blocked
784 * in notify_resume_user() and by clearling PRED_LEAVE_SYSCALL
785 * (aka, "pLvSys") we redirect execution from
786 * .work_pending_syscall_end to .work_processed_kernel.
788 unw_get_pr(&prev_info
, &pr
);
789 pr
&= ~((1UL << PRED_SYSCALL
) | (1UL << PRED_LEAVE_SYSCALL
));
790 pr
|= (1UL << PRED_NON_SYSCALL
);
791 unw_set_pr(&prev_info
, pr
);
793 pt
->cr_ifs
= (1UL << 63) | cfm
;
795 * Clear the memory that is NOT written on syscall-entry to
796 * ensure we do not leak kernel-state to user when execution
802 memset(&pt
->r16
, 0, 16*8); /* clear r16-r31 */
803 memset(&pt
->f6
, 0, 6*16); /* clear f6-f11 */
811 access_nat_bits (struct task_struct
*child
, struct pt_regs
*pt
,
812 struct unw_frame_info
*info
,
813 unsigned long *data
, int write_access
)
815 unsigned long regnum
, nat_bits
, scratch_unat
, dummy
= 0;
820 scratch_unat
= ia64_put_scratch_nat_bits(pt
, nat_bits
);
821 if (unw_set_ar(info
, UNW_AR_UNAT
, scratch_unat
) < 0) {
822 dprintk("ptrace: failed to set ar.unat\n");
825 for (regnum
= 4; regnum
<= 7; ++regnum
) {
826 unw_get_gr(info
, regnum
, &dummy
, &nat
);
827 unw_set_gr(info
, regnum
, dummy
,
828 (nat_bits
>> regnum
) & 1);
831 if (unw_get_ar(info
, UNW_AR_UNAT
, &scratch_unat
) < 0) {
832 dprintk("ptrace: failed to read ar.unat\n");
835 nat_bits
= ia64_get_scratch_nat_bits(pt
, scratch_unat
);
836 for (regnum
= 4; regnum
<= 7; ++regnum
) {
837 unw_get_gr(info
, regnum
, &dummy
, &nat
);
838 nat_bits
|= (nat
!= 0) << regnum
;
846 access_uarea (struct task_struct
*child
, unsigned long addr
,
847 unsigned long *data
, int write_access
);
850 ptrace_getregs (struct task_struct
*child
, struct pt_all_user_regs __user
*ppr
)
852 unsigned long psr
, ec
, lc
, rnat
, bsp
, cfm
, nat_bits
, val
;
853 struct unw_frame_info info
;
854 struct ia64_fpreg fpval
;
855 struct switch_stack
*sw
;
857 long ret
, retval
= 0;
861 if (!access_ok(VERIFY_WRITE
, ppr
, sizeof(struct pt_all_user_regs
)))
864 pt
= task_pt_regs(child
);
865 sw
= (struct switch_stack
*) (child
->thread
.ksp
+ 16);
866 unw_init_from_blocked_task(&info
, child
);
867 if (unw_unwind_to_user(&info
) < 0) {
871 if (((unsigned long) ppr
& 0x7) != 0) {
872 dprintk("ptrace:unaligned register address %p\n", ppr
);
876 if (access_uarea(child
, PT_CR_IPSR
, &psr
, 0) < 0
877 || access_uarea(child
, PT_AR_EC
, &ec
, 0) < 0
878 || access_uarea(child
, PT_AR_LC
, &lc
, 0) < 0
879 || access_uarea(child
, PT_AR_RNAT
, &rnat
, 0) < 0
880 || access_uarea(child
, PT_AR_BSP
, &bsp
, 0) < 0
881 || access_uarea(child
, PT_CFM
, &cfm
, 0)
882 || access_uarea(child
, PT_NAT_BITS
, &nat_bits
, 0))
887 retval
|= __put_user(pt
->cr_iip
, &ppr
->cr_iip
);
888 retval
|= __put_user(psr
, &ppr
->cr_ipsr
);
892 retval
|= __put_user(pt
->ar_pfs
, &ppr
->ar
[PT_AUR_PFS
]);
893 retval
|= __put_user(pt
->ar_rsc
, &ppr
->ar
[PT_AUR_RSC
]);
894 retval
|= __put_user(pt
->ar_bspstore
, &ppr
->ar
[PT_AUR_BSPSTORE
]);
895 retval
|= __put_user(pt
->ar_unat
, &ppr
->ar
[PT_AUR_UNAT
]);
896 retval
|= __put_user(pt
->ar_ccv
, &ppr
->ar
[PT_AUR_CCV
]);
897 retval
|= __put_user(pt
->ar_fpsr
, &ppr
->ar
[PT_AUR_FPSR
]);
899 retval
|= __put_user(ec
, &ppr
->ar
[PT_AUR_EC
]);
900 retval
|= __put_user(lc
, &ppr
->ar
[PT_AUR_LC
]);
901 retval
|= __put_user(rnat
, &ppr
->ar
[PT_AUR_RNAT
]);
902 retval
|= __put_user(bsp
, &ppr
->ar
[PT_AUR_BSP
]);
903 retval
|= __put_user(cfm
, &ppr
->cfm
);
907 retval
|= __copy_to_user(&ppr
->gr
[1], &pt
->r1
, sizeof(long));
908 retval
|= __copy_to_user(&ppr
->gr
[2], &pt
->r2
, sizeof(long) *2);
912 for (i
= 4; i
< 8; i
++) {
913 if (unw_access_gr(&info
, i
, &val
, &nat
, 0) < 0)
915 retval
|= __put_user(val
, &ppr
->gr
[i
]);
920 retval
|= __copy_to_user(&ppr
->gr
[8], &pt
->r8
, sizeof(long) * 4);
924 retval
|= __copy_to_user(&ppr
->gr
[12], &pt
->r12
, sizeof(long) * 2);
925 retval
|= __copy_to_user(&ppr
->gr
[14], &pt
->r14
, sizeof(long));
926 retval
|= __copy_to_user(&ppr
->gr
[15], &pt
->r15
, sizeof(long));
930 retval
|= __copy_to_user(&ppr
->gr
[16], &pt
->r16
, sizeof(long) * 16);
934 retval
|= __put_user(pt
->b0
, &ppr
->br
[0]);
938 for (i
= 1; i
< 6; i
++) {
939 if (unw_access_br(&info
, i
, &val
, 0) < 0)
941 __put_user(val
, &ppr
->br
[i
]);
946 retval
|= __put_user(pt
->b6
, &ppr
->br
[6]);
947 retval
|= __put_user(pt
->b7
, &ppr
->br
[7]);
951 for (i
= 2; i
< 6; i
++) {
952 if (unw_get_fr(&info
, i
, &fpval
) < 0)
954 retval
|= __copy_to_user(&ppr
->fr
[i
], &fpval
, sizeof (fpval
));
959 retval
|= __copy_to_user(&ppr
->fr
[6], &pt
->f6
,
960 sizeof(struct ia64_fpreg
) * 6);
962 /* fp scratch regs(12-15) */
964 retval
|= __copy_to_user(&ppr
->fr
[12], &sw
->f12
,
965 sizeof(struct ia64_fpreg
) * 4);
969 for (i
= 16; i
< 32; i
++) {
970 if (unw_get_fr(&info
, i
, &fpval
) < 0)
972 retval
|= __copy_to_user(&ppr
->fr
[i
], &fpval
, sizeof (fpval
));
977 ia64_flush_fph(child
);
978 retval
|= __copy_to_user(&ppr
->fr
[32], &child
->thread
.fph
,
979 sizeof(ppr
->fr
[32]) * 96);
983 retval
|= __put_user(pt
->pr
, &ppr
->pr
);
987 retval
|= __put_user(nat_bits
, &ppr
->nat
);
989 ret
= retval
? -EIO
: 0;
994 ptrace_setregs (struct task_struct
*child
, struct pt_all_user_regs __user
*ppr
)
996 unsigned long psr
, rsc
, ec
, lc
, rnat
, bsp
, cfm
, nat_bits
, val
= 0;
997 struct unw_frame_info info
;
998 struct switch_stack
*sw
;
999 struct ia64_fpreg fpval
;
1001 long ret
, retval
= 0;
1004 memset(&fpval
, 0, sizeof(fpval
));
1006 if (!access_ok(VERIFY_READ
, ppr
, sizeof(struct pt_all_user_regs
)))
1009 pt
= task_pt_regs(child
);
1010 sw
= (struct switch_stack
*) (child
->thread
.ksp
+ 16);
1011 unw_init_from_blocked_task(&info
, child
);
1012 if (unw_unwind_to_user(&info
) < 0) {
1016 if (((unsigned long) ppr
& 0x7) != 0) {
1017 dprintk("ptrace:unaligned register address %p\n", ppr
);
1023 retval
|= __get_user(pt
->cr_iip
, &ppr
->cr_iip
);
1024 retval
|= __get_user(psr
, &ppr
->cr_ipsr
);
1028 retval
|= __get_user(pt
->ar_pfs
, &ppr
->ar
[PT_AUR_PFS
]);
1029 retval
|= __get_user(rsc
, &ppr
->ar
[PT_AUR_RSC
]);
1030 retval
|= __get_user(pt
->ar_bspstore
, &ppr
->ar
[PT_AUR_BSPSTORE
]);
1031 retval
|= __get_user(pt
->ar_unat
, &ppr
->ar
[PT_AUR_UNAT
]);
1032 retval
|= __get_user(pt
->ar_ccv
, &ppr
->ar
[PT_AUR_CCV
]);
1033 retval
|= __get_user(pt
->ar_fpsr
, &ppr
->ar
[PT_AUR_FPSR
]);
1035 retval
|= __get_user(ec
, &ppr
->ar
[PT_AUR_EC
]);
1036 retval
|= __get_user(lc
, &ppr
->ar
[PT_AUR_LC
]);
1037 retval
|= __get_user(rnat
, &ppr
->ar
[PT_AUR_RNAT
]);
1038 retval
|= __get_user(bsp
, &ppr
->ar
[PT_AUR_BSP
]);
1039 retval
|= __get_user(cfm
, &ppr
->cfm
);
1043 retval
|= __copy_from_user(&pt
->r1
, &ppr
->gr
[1], sizeof(long));
1044 retval
|= __copy_from_user(&pt
->r2
, &ppr
->gr
[2], sizeof(long) * 2);
1048 for (i
= 4; i
< 8; i
++) {
1049 retval
|= __get_user(val
, &ppr
->gr
[i
]);
1050 /* NaT bit will be set via PT_NAT_BITS: */
1051 if (unw_set_gr(&info
, i
, val
, 0) < 0)
1057 retval
|= __copy_from_user(&pt
->r8
, &ppr
->gr
[8], sizeof(long) * 4);
1061 retval
|= __copy_from_user(&pt
->r12
, &ppr
->gr
[12], sizeof(long) * 2);
1062 retval
|= __copy_from_user(&pt
->r14
, &ppr
->gr
[14], sizeof(long));
1063 retval
|= __copy_from_user(&pt
->r15
, &ppr
->gr
[15], sizeof(long));
1067 retval
|= __copy_from_user(&pt
->r16
, &ppr
->gr
[16], sizeof(long) * 16);
1071 retval
|= __get_user(pt
->b0
, &ppr
->br
[0]);
1075 for (i
= 1; i
< 6; i
++) {
1076 retval
|= __get_user(val
, &ppr
->br
[i
]);
1077 unw_set_br(&info
, i
, val
);
1082 retval
|= __get_user(pt
->b6
, &ppr
->br
[6]);
1083 retval
|= __get_user(pt
->b7
, &ppr
->br
[7]);
1087 for (i
= 2; i
< 6; i
++) {
1088 retval
|= __copy_from_user(&fpval
, &ppr
->fr
[i
], sizeof(fpval
));
1089 if (unw_set_fr(&info
, i
, fpval
) < 0)
1095 retval
|= __copy_from_user(&pt
->f6
, &ppr
->fr
[6],
1096 sizeof(ppr
->fr
[6]) * 6);
1098 /* fp scratch regs(12-15) */
1100 retval
|= __copy_from_user(&sw
->f12
, &ppr
->fr
[12],
1101 sizeof(ppr
->fr
[12]) * 4);
1105 for (i
= 16; i
< 32; i
++) {
1106 retval
|= __copy_from_user(&fpval
, &ppr
->fr
[i
],
1108 if (unw_set_fr(&info
, i
, fpval
) < 0)
1114 ia64_sync_fph(child
);
1115 retval
|= __copy_from_user(&child
->thread
.fph
, &ppr
->fr
[32],
1116 sizeof(ppr
->fr
[32]) * 96);
1120 retval
|= __get_user(pt
->pr
, &ppr
->pr
);
1124 retval
|= __get_user(nat_bits
, &ppr
->nat
);
1126 retval
|= access_uarea(child
, PT_CR_IPSR
, &psr
, 1);
1127 retval
|= access_uarea(child
, PT_AR_RSC
, &rsc
, 1);
1128 retval
|= access_uarea(child
, PT_AR_EC
, &ec
, 1);
1129 retval
|= access_uarea(child
, PT_AR_LC
, &lc
, 1);
1130 retval
|= access_uarea(child
, PT_AR_RNAT
, &rnat
, 1);
1131 retval
|= access_uarea(child
, PT_AR_BSP
, &bsp
, 1);
1132 retval
|= access_uarea(child
, PT_CFM
, &cfm
, 1);
1133 retval
|= access_uarea(child
, PT_NAT_BITS
, &nat_bits
, 1);
1135 ret
= retval
? -EIO
: 0;
1140 user_enable_single_step (struct task_struct
*child
)
1142 struct ia64_psr
*child_psr
= ia64_psr(task_pt_regs(child
));
1144 set_tsk_thread_flag(child
, TIF_SINGLESTEP
);
1149 user_enable_block_step (struct task_struct
*child
)
1151 struct ia64_psr
*child_psr
= ia64_psr(task_pt_regs(child
));
1153 set_tsk_thread_flag(child
, TIF_SINGLESTEP
);
1158 user_disable_single_step (struct task_struct
*child
)
1160 struct ia64_psr
*child_psr
= ia64_psr(task_pt_regs(child
));
1162 /* make sure the single step/taken-branch trap bits are not set: */
1163 clear_tsk_thread_flag(child
, TIF_SINGLESTEP
);
1169 * Called by kernel/ptrace.c when detaching..
1171 * Make sure the single step bit is not set.
1174 ptrace_disable (struct task_struct
*child
)
1176 user_disable_single_step(child
);
1180 arch_ptrace (struct task_struct
*child
, long request
, long addr
, long data
)
1183 case PTRACE_PEEKTEXT
:
1184 case PTRACE_PEEKDATA
:
1185 /* read word at location addr */
1186 if (access_process_vm(child
, addr
, &data
, sizeof(data
), 0)
1189 /* ensure return value is not mistaken for error code */
1190 force_successful_syscall_return();
1193 /* PTRACE_POKETEXT and PTRACE_POKEDATA is handled
1194 * by the generic ptrace_request().
1197 case PTRACE_PEEKUSR
:
1198 /* read the word at addr in the USER area */
1199 if (access_uarea(child
, addr
, &data
, 0) < 0)
1201 /* ensure return value is not mistaken for error code */
1202 force_successful_syscall_return();
1205 case PTRACE_POKEUSR
:
1206 /* write the word at addr in the USER area */
1207 if (access_uarea(child
, addr
, &data
, 1) < 0)
1211 case PTRACE_OLD_GETSIGINFO
:
1212 /* for backwards-compatibility */
1213 return ptrace_request(child
, PTRACE_GETSIGINFO
, addr
, data
);
1215 case PTRACE_OLD_SETSIGINFO
:
1216 /* for backwards-compatibility */
1217 return ptrace_request(child
, PTRACE_SETSIGINFO
, addr
, data
);
1219 case PTRACE_GETREGS
:
1220 return ptrace_getregs(child
,
1221 (struct pt_all_user_regs __user
*) data
);
1223 case PTRACE_SETREGS
:
1224 return ptrace_setregs(child
,
1225 (struct pt_all_user_regs __user
*) data
);
1228 return ptrace_request(child
, request
, addr
, data
);
1233 /* "asmlinkage" so the input arguments are preserved... */
1236 syscall_trace_enter (long arg0
, long arg1
, long arg2
, long arg3
,
1237 long arg4
, long arg5
, long arg6
, long arg7
,
1238 struct pt_regs regs
)
1240 if (test_thread_flag(TIF_SYSCALL_TRACE
))
1241 if (tracehook_report_syscall_entry(®s
))
1244 /* copy user rbs to kernel rbs */
1245 if (test_thread_flag(TIF_RESTORE_RSE
))
1248 if (unlikely(current
->audit_context
)) {
1253 arch
= AUDIT_ARCH_IA64
;
1255 audit_syscall_entry(arch
, syscall
, arg0
, arg1
, arg2
, arg3
);
1261 /* "asmlinkage" so the input arguments are preserved... */
1264 syscall_trace_leave (long arg0
, long arg1
, long arg2
, long arg3
,
1265 long arg4
, long arg5
, long arg6
, long arg7
,
1266 struct pt_regs regs
)
1270 if (unlikely(current
->audit_context
)) {
1271 int success
= AUDITSC_RESULT(regs
.r10
);
1272 long result
= regs
.r8
;
1274 if (success
!= AUDITSC_SUCCESS
)
1276 audit_syscall_exit(success
, result
);
1279 step
= test_thread_flag(TIF_SINGLESTEP
);
1280 if (step
|| test_thread_flag(TIF_SYSCALL_TRACE
))
1281 tracehook_report_syscall_exit(®s
, step
);
1283 /* copy user rbs to kernel rbs */
1284 if (test_thread_flag(TIF_RESTORE_RSE
))
1288 /* Utrace implementation starts here */
1296 const void __user
*ubuf
;
1299 struct regset_getset
{
1300 struct task_struct
*target
;
1301 const struct user_regset
*regset
;
1303 struct regset_get get
;
1304 struct regset_set set
;
1312 access_elf_gpreg(struct task_struct
*target
, struct unw_frame_info
*info
,
1313 unsigned long addr
, unsigned long *data
, int write_access
)
1316 unsigned long *ptr
= NULL
;
1320 pt
= task_pt_regs(target
);
1322 case ELF_GR_OFFSET(1):
1325 case ELF_GR_OFFSET(2):
1326 case ELF_GR_OFFSET(3):
1327 ptr
= (void *)&pt
->r2
+ (addr
- ELF_GR_OFFSET(2));
1329 case ELF_GR_OFFSET(4) ... ELF_GR_OFFSET(7):
1331 /* read NaT bit first: */
1332 unsigned long dummy
;
1334 ret
= unw_get_gr(info
, addr
/8, &dummy
, &nat
);
1338 return unw_access_gr(info
, addr
/8, data
, &nat
, write_access
);
1339 case ELF_GR_OFFSET(8) ... ELF_GR_OFFSET(11):
1340 ptr
= (void *)&pt
->r8
+ addr
- ELF_GR_OFFSET(8);
1342 case ELF_GR_OFFSET(12):
1343 case ELF_GR_OFFSET(13):
1344 ptr
= (void *)&pt
->r12
+ addr
- ELF_GR_OFFSET(12);
1346 case ELF_GR_OFFSET(14):
1349 case ELF_GR_OFFSET(15):
1360 access_elf_breg(struct task_struct
*target
, struct unw_frame_info
*info
,
1361 unsigned long addr
, unsigned long *data
, int write_access
)
1364 unsigned long *ptr
= NULL
;
1366 pt
= task_pt_regs(target
);
1368 case ELF_BR_OFFSET(0):
1371 case ELF_BR_OFFSET(1) ... ELF_BR_OFFSET(5):
1372 return unw_access_br(info
, (addr
- ELF_BR_OFFSET(0))/8,
1373 data
, write_access
);
1374 case ELF_BR_OFFSET(6):
1377 case ELF_BR_OFFSET(7):
1388 access_elf_areg(struct task_struct
*target
, struct unw_frame_info
*info
,
1389 unsigned long addr
, unsigned long *data
, int write_access
)
1392 unsigned long cfm
, urbs_end
;
1393 unsigned long *ptr
= NULL
;
1395 pt
= task_pt_regs(target
);
1396 if (addr
>= ELF_AR_RSC_OFFSET
&& addr
<= ELF_AR_SSD_OFFSET
) {
1398 case ELF_AR_RSC_OFFSET
:
1401 pt
->ar_rsc
= *data
| (3 << 2);
1405 case ELF_AR_BSP_OFFSET
:
1407 * By convention, we use PT_AR_BSP to refer to
1408 * the end of the user-level backing store.
1409 * Use ia64_rse_skip_regs(PT_AR_BSP, -CFM.sof)
1410 * to get the real value of ar.bsp at the time
1411 * the kernel was entered.
1413 * Furthermore, when changing the contents of
1414 * PT_AR_BSP (or PT_CFM) while the task is
1415 * blocked in a system call, convert the state
1416 * so that the non-system-call exit
1417 * path is used. This ensures that the proper
1418 * state will be picked up when resuming
1419 * execution. However, it *also* means that
1420 * once we write PT_AR_BSP/PT_CFM, it won't be
1421 * possible to modify the syscall arguments of
1422 * the pending system call any longer. This
1423 * shouldn't be an issue because modifying
1424 * PT_AR_BSP/PT_CFM generally implies that
1425 * we're either abandoning the pending system
1426 * call or that we defer it's re-execution
1427 * (e.g., due to GDB doing an inferior
1430 urbs_end
= ia64_get_user_rbs_end(target
, pt
, &cfm
);
1432 if (*data
!= urbs_end
) {
1434 convert_to_non_syscall(target
,
1438 * Simulate user-level write
1442 pt
->ar_bspstore
= *data
;
1447 case ELF_AR_BSPSTORE_OFFSET
:
1448 ptr
= &pt
->ar_bspstore
;
1450 case ELF_AR_RNAT_OFFSET
:
1453 case ELF_AR_CCV_OFFSET
:
1456 case ELF_AR_UNAT_OFFSET
:
1459 case ELF_AR_FPSR_OFFSET
:
1462 case ELF_AR_PFS_OFFSET
:
1465 case ELF_AR_LC_OFFSET
:
1466 return unw_access_ar(info
, UNW_AR_LC
, data
,
1468 case ELF_AR_EC_OFFSET
:
1469 return unw_access_ar(info
, UNW_AR_EC
, data
,
1471 case ELF_AR_CSD_OFFSET
:
1474 case ELF_AR_SSD_OFFSET
:
1477 } else if (addr
>= ELF_CR_IIP_OFFSET
&& addr
<= ELF_CR_IPSR_OFFSET
) {
1479 case ELF_CR_IIP_OFFSET
:
1482 case ELF_CFM_OFFSET
:
1483 urbs_end
= ia64_get_user_rbs_end(target
, pt
, &cfm
);
1485 if (((cfm
^ *data
) & PFM_MASK
) != 0) {
1487 convert_to_non_syscall(target
,
1490 pt
->cr_ifs
= ((pt
->cr_ifs
& ~PFM_MASK
)
1491 | (*data
& PFM_MASK
));
1496 case ELF_CR_IPSR_OFFSET
:
1498 unsigned long tmp
= *data
;
1499 /* psr.ri==3 is a reserved value: SDM 2:25 */
1500 if ((tmp
& IA64_PSR_RI
) == IA64_PSR_RI
)
1501 tmp
&= ~IA64_PSR_RI
;
1502 pt
->cr_ipsr
= ((tmp
& IPSR_MASK
)
1503 | (pt
->cr_ipsr
& ~IPSR_MASK
));
1505 *data
= (pt
->cr_ipsr
& IPSR_MASK
);
1508 } else if (addr
== ELF_NAT_OFFSET
)
1509 return access_nat_bits(target
, pt
, info
,
1510 data
, write_access
);
1511 else if (addr
== ELF_PR_OFFSET
)
1525 access_elf_reg(struct task_struct
*target
, struct unw_frame_info
*info
,
1526 unsigned long addr
, unsigned long *data
, int write_access
)
1528 if (addr
>= ELF_GR_OFFSET(1) && addr
<= ELF_GR_OFFSET(15))
1529 return access_elf_gpreg(target
, info
, addr
, data
, write_access
);
1530 else if (addr
>= ELF_BR_OFFSET(0) && addr
<= ELF_BR_OFFSET(7))
1531 return access_elf_breg(target
, info
, addr
, data
, write_access
);
1533 return access_elf_areg(target
, info
, addr
, data
, write_access
);
1536 void do_gpregs_get(struct unw_frame_info
*info
, void *arg
)
1539 struct regset_getset
*dst
= arg
;
1541 unsigned int i
, index
, min_copy
;
1543 if (unw_unwind_to_user(info
) < 0)
1549 * NaT bits (for r0-r31; bit N == 1 iff rN is a NaT)
1550 * predicate registers (p0-p63)
1553 * ar.rsc ar.bsp ar.bspstore ar.rnat
1554 * ar.ccv ar.unat ar.fpsr ar.pfs ar.lc ar.ec
1559 if (dst
->count
> 0 && dst
->pos
< ELF_GR_OFFSET(1)) {
1560 dst
->ret
= user_regset_copyout_zero(&dst
->pos
, &dst
->count
,
1563 0, ELF_GR_OFFSET(1));
1564 if (dst
->ret
|| dst
->count
== 0)
1569 if (dst
->count
> 0 && dst
->pos
< ELF_GR_OFFSET(16)) {
1570 index
= (dst
->pos
- ELF_GR_OFFSET(1)) / sizeof(elf_greg_t
);
1571 min_copy
= ELF_GR_OFFSET(16) > (dst
->pos
+ dst
->count
) ?
1572 (dst
->pos
+ dst
->count
) : ELF_GR_OFFSET(16);
1573 for (i
= dst
->pos
; i
< min_copy
; i
+= sizeof(elf_greg_t
),
1575 if (access_elf_reg(dst
->target
, info
, i
,
1576 &tmp
[index
], 0) < 0) {
1580 dst
->ret
= user_regset_copyout(&dst
->pos
, &dst
->count
,
1581 &dst
->u
.get
.kbuf
, &dst
->u
.get
.ubuf
, tmp
,
1582 ELF_GR_OFFSET(1), ELF_GR_OFFSET(16));
1583 if (dst
->ret
|| dst
->count
== 0)
1588 if (dst
->count
> 0 && dst
->pos
< ELF_NAT_OFFSET
) {
1589 pt
= task_pt_regs(dst
->target
);
1590 dst
->ret
= user_regset_copyout(&dst
->pos
, &dst
->count
,
1591 &dst
->u
.get
.kbuf
, &dst
->u
.get
.ubuf
, &pt
->r16
,
1592 ELF_GR_OFFSET(16), ELF_NAT_OFFSET
);
1593 if (dst
->ret
|| dst
->count
== 0)
1597 /* nat, pr, b0 - b7 */
1598 if (dst
->count
> 0 && dst
->pos
< ELF_CR_IIP_OFFSET
) {
1599 index
= (dst
->pos
- ELF_NAT_OFFSET
) / sizeof(elf_greg_t
);
1600 min_copy
= ELF_CR_IIP_OFFSET
> (dst
->pos
+ dst
->count
) ?
1601 (dst
->pos
+ dst
->count
) : ELF_CR_IIP_OFFSET
;
1602 for (i
= dst
->pos
; i
< min_copy
; i
+= sizeof(elf_greg_t
),
1604 if (access_elf_reg(dst
->target
, info
, i
,
1605 &tmp
[index
], 0) < 0) {
1609 dst
->ret
= user_regset_copyout(&dst
->pos
, &dst
->count
,
1610 &dst
->u
.get
.kbuf
, &dst
->u
.get
.ubuf
, tmp
,
1611 ELF_NAT_OFFSET
, ELF_CR_IIP_OFFSET
);
1612 if (dst
->ret
|| dst
->count
== 0)
1616 /* ip cfm psr ar.rsc ar.bsp ar.bspstore ar.rnat
1617 * ar.ccv ar.unat ar.fpsr ar.pfs ar.lc ar.ec ar.csd ar.ssd
1619 if (dst
->count
> 0 && dst
->pos
< (ELF_AR_END_OFFSET
)) {
1620 index
= (dst
->pos
- ELF_CR_IIP_OFFSET
) / sizeof(elf_greg_t
);
1621 min_copy
= ELF_AR_END_OFFSET
> (dst
->pos
+ dst
->count
) ?
1622 (dst
->pos
+ dst
->count
) : ELF_AR_END_OFFSET
;
1623 for (i
= dst
->pos
; i
< min_copy
; i
+= sizeof(elf_greg_t
),
1625 if (access_elf_reg(dst
->target
, info
, i
,
1626 &tmp
[index
], 0) < 0) {
1630 dst
->ret
= user_regset_copyout(&dst
->pos
, &dst
->count
,
1631 &dst
->u
.get
.kbuf
, &dst
->u
.get
.ubuf
, tmp
,
1632 ELF_CR_IIP_OFFSET
, ELF_AR_END_OFFSET
);
1636 void do_gpregs_set(struct unw_frame_info
*info
, void *arg
)
1639 struct regset_getset
*dst
= arg
;
1641 unsigned int i
, index
;
1643 if (unw_unwind_to_user(info
) < 0)
1647 if (dst
->count
> 0 && dst
->pos
< ELF_GR_OFFSET(1)) {
1648 dst
->ret
= user_regset_copyin_ignore(&dst
->pos
, &dst
->count
,
1651 0, ELF_GR_OFFSET(1));
1652 if (dst
->ret
|| dst
->count
== 0)
1657 if (dst
->count
> 0 && dst
->pos
< ELF_GR_OFFSET(16)) {
1659 index
= (dst
->pos
- ELF_GR_OFFSET(1)) / sizeof(elf_greg_t
);
1660 dst
->ret
= user_regset_copyin(&dst
->pos
, &dst
->count
,
1661 &dst
->u
.set
.kbuf
, &dst
->u
.set
.ubuf
, tmp
,
1662 ELF_GR_OFFSET(1), ELF_GR_OFFSET(16));
1665 for ( ; i
< dst
->pos
; i
+= sizeof(elf_greg_t
), index
++)
1666 if (access_elf_reg(dst
->target
, info
, i
,
1667 &tmp
[index
], 1) < 0) {
1671 if (dst
->count
== 0)
1676 if (dst
->count
> 0 && dst
->pos
< ELF_NAT_OFFSET
) {
1677 pt
= task_pt_regs(dst
->target
);
1678 dst
->ret
= user_regset_copyin(&dst
->pos
, &dst
->count
,
1679 &dst
->u
.set
.kbuf
, &dst
->u
.set
.ubuf
, &pt
->r16
,
1680 ELF_GR_OFFSET(16), ELF_NAT_OFFSET
);
1681 if (dst
->ret
|| dst
->count
== 0)
1685 /* nat, pr, b0 - b7 */
1686 if (dst
->count
> 0 && dst
->pos
< ELF_CR_IIP_OFFSET
) {
1688 index
= (dst
->pos
- ELF_NAT_OFFSET
) / sizeof(elf_greg_t
);
1689 dst
->ret
= user_regset_copyin(&dst
->pos
, &dst
->count
,
1690 &dst
->u
.set
.kbuf
, &dst
->u
.set
.ubuf
, tmp
,
1691 ELF_NAT_OFFSET
, ELF_CR_IIP_OFFSET
);
1694 for (; i
< dst
->pos
; i
+= sizeof(elf_greg_t
), index
++)
1695 if (access_elf_reg(dst
->target
, info
, i
,
1696 &tmp
[index
], 1) < 0) {
1700 if (dst
->count
== 0)
1704 /* ip cfm psr ar.rsc ar.bsp ar.bspstore ar.rnat
1705 * ar.ccv ar.unat ar.fpsr ar.pfs ar.lc ar.ec ar.csd ar.ssd
1707 if (dst
->count
> 0 && dst
->pos
< (ELF_AR_END_OFFSET
)) {
1709 index
= (dst
->pos
- ELF_CR_IIP_OFFSET
) / sizeof(elf_greg_t
);
1710 dst
->ret
= user_regset_copyin(&dst
->pos
, &dst
->count
,
1711 &dst
->u
.set
.kbuf
, &dst
->u
.set
.ubuf
, tmp
,
1712 ELF_CR_IIP_OFFSET
, ELF_AR_END_OFFSET
);
1715 for ( ; i
< dst
->pos
; i
+= sizeof(elf_greg_t
), index
++)
1716 if (access_elf_reg(dst
->target
, info
, i
,
1717 &tmp
[index
], 1) < 0) {
1724 #define ELF_FP_OFFSET(i) (i * sizeof(elf_fpreg_t))
1726 void do_fpregs_get(struct unw_frame_info
*info
, void *arg
)
1728 struct regset_getset
*dst
= arg
;
1729 struct task_struct
*task
= dst
->target
;
1730 elf_fpreg_t tmp
[30];
1731 int index
, min_copy
, i
;
1733 if (unw_unwind_to_user(info
) < 0)
1736 /* Skip pos 0 and 1 */
1737 if (dst
->count
> 0 && dst
->pos
< ELF_FP_OFFSET(2)) {
1738 dst
->ret
= user_regset_copyout_zero(&dst
->pos
, &dst
->count
,
1741 0, ELF_FP_OFFSET(2));
1742 if (dst
->count
== 0 || dst
->ret
)
1747 if (dst
->count
> 0 && dst
->pos
< ELF_FP_OFFSET(32)) {
1748 index
= (dst
->pos
- ELF_FP_OFFSET(2)) / sizeof(elf_fpreg_t
);
1750 min_copy
= min(((unsigned int)ELF_FP_OFFSET(32)),
1751 dst
->pos
+ dst
->count
);
1752 for (i
= dst
->pos
; i
< min_copy
; i
+= sizeof(elf_fpreg_t
),
1754 if (unw_get_fr(info
, i
/ sizeof(elf_fpreg_t
),
1759 dst
->ret
= user_regset_copyout(&dst
->pos
, &dst
->count
,
1760 &dst
->u
.get
.kbuf
, &dst
->u
.get
.ubuf
, tmp
,
1761 ELF_FP_OFFSET(2), ELF_FP_OFFSET(32));
1762 if (dst
->count
== 0 || dst
->ret
)
1767 if (dst
->count
> 0) {
1768 ia64_flush_fph(dst
->target
);
1769 if (task
->thread
.flags
& IA64_THREAD_FPH_VALID
)
1770 dst
->ret
= user_regset_copyout(
1771 &dst
->pos
, &dst
->count
,
1772 &dst
->u
.get
.kbuf
, &dst
->u
.get
.ubuf
,
1773 &dst
->target
->thread
.fph
,
1774 ELF_FP_OFFSET(32), -1);
1776 /* Zero fill instead. */
1777 dst
->ret
= user_regset_copyout_zero(
1778 &dst
->pos
, &dst
->count
,
1779 &dst
->u
.get
.kbuf
, &dst
->u
.get
.ubuf
,
1780 ELF_FP_OFFSET(32), -1);
1784 void do_fpregs_set(struct unw_frame_info
*info
, void *arg
)
1786 struct regset_getset
*dst
= arg
;
1787 elf_fpreg_t fpreg
, tmp
[30];
1788 int index
, start
, end
;
1790 if (unw_unwind_to_user(info
) < 0)
1793 /* Skip pos 0 and 1 */
1794 if (dst
->count
> 0 && dst
->pos
< ELF_FP_OFFSET(2)) {
1795 dst
->ret
= user_regset_copyin_ignore(&dst
->pos
, &dst
->count
,
1798 0, ELF_FP_OFFSET(2));
1799 if (dst
->count
== 0 || dst
->ret
)
1804 if (dst
->count
> 0 && dst
->pos
< ELF_FP_OFFSET(32)) {
1806 end
= min(((unsigned int)ELF_FP_OFFSET(32)),
1807 dst
->pos
+ dst
->count
);
1808 dst
->ret
= user_regset_copyin(&dst
->pos
, &dst
->count
,
1809 &dst
->u
.set
.kbuf
, &dst
->u
.set
.ubuf
, tmp
,
1810 ELF_FP_OFFSET(2), ELF_FP_OFFSET(32));
1814 if (start
& 0xF) { /* only write high part */
1815 if (unw_get_fr(info
, start
/ sizeof(elf_fpreg_t
),
1820 tmp
[start
/ sizeof(elf_fpreg_t
) - 2].u
.bits
[0]
1824 if (end
& 0xF) { /* only write low part */
1825 if (unw_get_fr(info
, end
/ sizeof(elf_fpreg_t
),
1830 tmp
[end
/ sizeof(elf_fpreg_t
) - 2].u
.bits
[1]
1832 end
= (end
+ 0xF) & ~0xFUL
;
1835 for ( ; start
< end
; start
+= sizeof(elf_fpreg_t
)) {
1836 index
= start
/ sizeof(elf_fpreg_t
);
1837 if (unw_set_fr(info
, index
, tmp
[index
- 2])) {
1842 if (dst
->ret
|| dst
->count
== 0)
1847 if (dst
->count
> 0 && dst
->pos
< ELF_FP_OFFSET(128)) {
1848 ia64_sync_fph(dst
->target
);
1849 dst
->ret
= user_regset_copyin(&dst
->pos
, &dst
->count
,
1852 &dst
->target
->thread
.fph
,
1853 ELF_FP_OFFSET(32), -1);
1858 do_regset_call(void (*call
)(struct unw_frame_info
*, void *),
1859 struct task_struct
*target
,
1860 const struct user_regset
*regset
,
1861 unsigned int pos
, unsigned int count
,
1862 const void *kbuf
, const void __user
*ubuf
)
1864 struct regset_getset info
= { .target
= target
, .regset
= regset
,
1865 .pos
= pos
, .count
= count
,
1866 .u
.set
= { .kbuf
= kbuf
, .ubuf
= ubuf
},
1869 if (target
== current
)
1870 unw_init_running(call
, &info
);
1872 struct unw_frame_info ufi
;
1873 memset(&ufi
, 0, sizeof(ufi
));
1874 unw_init_from_blocked_task(&ufi
, target
);
1875 (*call
)(&ufi
, &info
);
1882 gpregs_get(struct task_struct
*target
,
1883 const struct user_regset
*regset
,
1884 unsigned int pos
, unsigned int count
,
1885 void *kbuf
, void __user
*ubuf
)
1887 return do_regset_call(do_gpregs_get
, target
, regset
, pos
, count
,
1891 static int gpregs_set(struct task_struct
*target
,
1892 const struct user_regset
*regset
,
1893 unsigned int pos
, unsigned int count
,
1894 const void *kbuf
, const void __user
*ubuf
)
1896 return do_regset_call(do_gpregs_set
, target
, regset
, pos
, count
,
1900 static void do_gpregs_writeback(struct unw_frame_info
*info
, void *arg
)
1902 do_sync_rbs(info
, ia64_sync_user_rbs
);
1906 * This is called to write back the register backing store.
1907 * ptrace does this before it stops, so that a tracer reading the user
1908 * memory after the thread stops will get the current register data.
1911 gpregs_writeback(struct task_struct
*target
,
1912 const struct user_regset
*regset
,
1915 if (test_and_set_tsk_thread_flag(target
, TIF_RESTORE_RSE
))
1917 set_notify_resume(target
);
1918 return do_regset_call(do_gpregs_writeback
, target
, regset
, 0, 0,
1923 fpregs_active(struct task_struct
*target
, const struct user_regset
*regset
)
1925 return (target
->thread
.flags
& IA64_THREAD_FPH_VALID
) ? 128 : 32;
1928 static int fpregs_get(struct task_struct
*target
,
1929 const struct user_regset
*regset
,
1930 unsigned int pos
, unsigned int count
,
1931 void *kbuf
, void __user
*ubuf
)
1933 return do_regset_call(do_fpregs_get
, target
, regset
, pos
, count
,
1937 static int fpregs_set(struct task_struct
*target
,
1938 const struct user_regset
*regset
,
1939 unsigned int pos
, unsigned int count
,
1940 const void *kbuf
, const void __user
*ubuf
)
1942 return do_regset_call(do_fpregs_set
, target
, regset
, pos
, count
,
1947 access_uarea(struct task_struct
*child
, unsigned long addr
,
1948 unsigned long *data
, int write_access
)
1950 unsigned int pos
= -1; /* an invalid value */
1952 unsigned long *ptr
, regnum
;
1954 if ((addr
& 0x7) != 0) {
1955 dprintk("ptrace: unaligned register address 0x%lx\n", addr
);
1958 if ((addr
>= PT_NAT_BITS
+ 8 && addr
< PT_F2
) ||
1959 (addr
>= PT_R7
+ 8 && addr
< PT_B1
) ||
1960 (addr
>= PT_AR_LC
+ 8 && addr
< PT_CR_IPSR
) ||
1961 (addr
>= PT_AR_SSD
+ 8 && addr
< PT_DBR
)) {
1962 dprintk("ptrace: rejecting access to register "
1963 "address 0x%lx\n", addr
);
1968 case PT_F32
... (PT_F127
+ 15):
1969 pos
= addr
- PT_F32
+ ELF_FP_OFFSET(32);
1971 case PT_F2
... (PT_F5
+ 15):
1972 pos
= addr
- PT_F2
+ ELF_FP_OFFSET(2);
1974 case PT_F10
... (PT_F31
+ 15):
1975 pos
= addr
- PT_F10
+ ELF_FP_OFFSET(10);
1977 case PT_F6
... (PT_F9
+ 15):
1978 pos
= addr
- PT_F6
+ ELF_FP_OFFSET(6);
1984 ret
= fpregs_set(child
, NULL
, pos
,
1985 sizeof(unsigned long), data
, NULL
);
1987 ret
= fpregs_get(child
, NULL
, pos
,
1988 sizeof(unsigned long), data
, NULL
);
1996 pos
= ELF_NAT_OFFSET
;
1998 case PT_R4
... PT_R7
:
1999 pos
= addr
- PT_R4
+ ELF_GR_OFFSET(4);
2001 case PT_B1
... PT_B5
:
2002 pos
= addr
- PT_B1
+ ELF_BR_OFFSET(1);
2005 pos
= ELF_AR_EC_OFFSET
;
2008 pos
= ELF_AR_LC_OFFSET
;
2011 pos
= ELF_CR_IPSR_OFFSET
;
2014 pos
= ELF_CR_IIP_OFFSET
;
2017 pos
= ELF_CFM_OFFSET
;
2020 pos
= ELF_AR_UNAT_OFFSET
;
2023 pos
= ELF_AR_PFS_OFFSET
;
2026 pos
= ELF_AR_RSC_OFFSET
;
2029 pos
= ELF_AR_RNAT_OFFSET
;
2031 case PT_AR_BSPSTORE
:
2032 pos
= ELF_AR_BSPSTORE_OFFSET
;
2035 pos
= ELF_PR_OFFSET
;
2038 pos
= ELF_BR_OFFSET(6);
2041 pos
= ELF_AR_BSP_OFFSET
;
2043 case PT_R1
... PT_R3
:
2044 pos
= addr
- PT_R1
+ ELF_GR_OFFSET(1);
2046 case PT_R12
... PT_R15
:
2047 pos
= addr
- PT_R12
+ ELF_GR_OFFSET(12);
2049 case PT_R8
... PT_R11
:
2050 pos
= addr
- PT_R8
+ ELF_GR_OFFSET(8);
2052 case PT_R16
... PT_R31
:
2053 pos
= addr
- PT_R16
+ ELF_GR_OFFSET(16);
2056 pos
= ELF_AR_CCV_OFFSET
;
2059 pos
= ELF_AR_FPSR_OFFSET
;
2062 pos
= ELF_BR_OFFSET(0);
2065 pos
= ELF_BR_OFFSET(7);
2068 pos
= ELF_AR_CSD_OFFSET
;
2071 pos
= ELF_AR_SSD_OFFSET
;
2077 ret
= gpregs_set(child
, NULL
, pos
,
2078 sizeof(unsigned long), data
, NULL
);
2080 ret
= gpregs_get(child
, NULL
, pos
,
2081 sizeof(unsigned long), data
, NULL
);
2087 /* access debug registers */
2088 if (addr
>= PT_IBR
) {
2089 regnum
= (addr
- PT_IBR
) >> 3;
2090 ptr
= &child
->thread
.ibr
[0];
2092 regnum
= (addr
- PT_DBR
) >> 3;
2093 ptr
= &child
->thread
.dbr
[0];
2097 dprintk("ptrace: rejecting access to register "
2098 "address 0x%lx\n", addr
);
2101 #ifdef CONFIG_PERFMON
2103 * Check if debug registers are used by perfmon. This
2104 * test must be done once we know that we can do the
2105 * operation, i.e. the arguments are all valid, but
2106 * before we start modifying the state.
2108 * Perfmon needs to keep a count of how many processes
2109 * are trying to modify the debug registers for system
2110 * wide monitoring sessions.
2112 * We also include read access here, because they may
2113 * cause the PMU-installed debug register state
2114 * (dbr[], ibr[]) to be reset. The two arrays are also
2115 * used by perfmon, but we do not use
2116 * IA64_THREAD_DBG_VALID. The registers are restored
2117 * by the PMU context switch code.
2119 if (pfm_use_debug_registers(child
))
2123 if (!(child
->thread
.flags
& IA64_THREAD_DBG_VALID
)) {
2124 child
->thread
.flags
|= IA64_THREAD_DBG_VALID
;
2125 memset(child
->thread
.dbr
, 0,
2126 sizeof(child
->thread
.dbr
));
2127 memset(child
->thread
.ibr
, 0,
2128 sizeof(child
->thread
.ibr
));
2133 if ((regnum
& 1) && write_access
) {
2134 /* don't let the user set kernel-level breakpoints: */
2135 *ptr
= *data
& ~(7UL << 56);
2145 static const struct user_regset native_regsets
[] = {
2147 .core_note_type
= NT_PRSTATUS
,
2149 .size
= sizeof(elf_greg_t
), .align
= sizeof(elf_greg_t
),
2150 .get
= gpregs_get
, .set
= gpregs_set
,
2151 .writeback
= gpregs_writeback
2154 .core_note_type
= NT_PRFPREG
,
2156 .size
= sizeof(elf_fpreg_t
), .align
= sizeof(elf_fpreg_t
),
2157 .get
= fpregs_get
, .set
= fpregs_set
, .active
= fpregs_active
2161 static const struct user_regset_view user_ia64_view
= {
2163 .e_machine
= EM_IA_64
,
2164 .regsets
= native_regsets
, .n
= ARRAY_SIZE(native_regsets
)
2167 const struct user_regset_view
*task_user_regset_view(struct task_struct
*tsk
)
2169 return &user_ia64_view
;
2172 struct syscall_get_set_args
{
2175 unsigned long *args
;
2176 struct pt_regs
*regs
;
2180 static void syscall_get_set_args_cb(struct unw_frame_info
*info
, void *data
)
2182 struct syscall_get_set_args
*args
= data
;
2183 struct pt_regs
*pt
= args
->regs
;
2184 unsigned long *krbs
, cfm
, ndirty
;
2187 if (unw_unwind_to_user(info
) < 0)
2191 krbs
= (unsigned long *)info
->task
+ IA64_RBS_OFFSET
/8;
2192 ndirty
= ia64_rse_num_regs(krbs
, krbs
+ (pt
->loadrs
>> 19));
2196 count
= min_t(int, args
->n
, cfm
& 0x7f);
2198 for (i
= 0; i
< count
; i
++) {
2200 *ia64_rse_skip_regs(krbs
, ndirty
+ i
+ args
->i
) =
2203 args
->args
[i
] = *ia64_rse_skip_regs(krbs
,
2204 ndirty
+ i
+ args
->i
);
2208 while (i
< args
->n
) {
2215 void ia64_syscall_get_set_arguments(struct task_struct
*task
,
2216 struct pt_regs
*regs
, unsigned int i
, unsigned int n
,
2217 unsigned long *args
, int rw
)
2219 struct syscall_get_set_args data
= {
2227 if (task
== current
)
2228 unw_init_running(syscall_get_set_args_cb
, &data
);
2230 struct unw_frame_info ufi
;
2231 memset(&ufi
, 0, sizeof(ufi
));
2232 unw_init_from_blocked_task(&ufi
, task
);
2233 syscall_get_set_args_cb(&ufi
, &data
);