1 /* ptrace.c: Sparc process tracing support.
3 * Copyright (C) 1996, 2008 David S. Miller (davem@davemloft.net)
4 * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
6 * Based upon code written by Ross Biro, Linus Torvalds, Bob Manson,
9 * Added Linux support -miguel (weird, eh?, the original code was meant
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
16 #include <linux/errno.h>
17 #include <linux/ptrace.h>
18 #include <linux/user.h>
19 #include <linux/smp.h>
20 #include <linux/security.h>
21 #include <linux/seccomp.h>
22 #include <linux/audit.h>
23 #include <linux/signal.h>
24 #include <linux/regset.h>
25 #include <linux/tracehook.h>
26 #include <trace/syscall.h>
27 #include <linux/compat.h>
28 #include <linux/elf.h>
31 #include <asm/pgtable.h>
32 #include <asm/system.h>
33 #include <asm/uaccess.h>
34 #include <asm/psrcompat.h>
35 #include <asm/visasm.h>
36 #include <asm/spitfire.h>
38 #include <asm/cpudata.h>
39 #include <asm/cacheflush.h>
41 #define CREATE_TRACE_POINTS
42 #include <trace/events/syscalls.h>
46 /* #define ALLOW_INIT_TRACING */
49 * Called by kernel/ptrace.c when detaching..
51 * Make sure single step bits etc are not set.
53 void ptrace_disable(struct task_struct
*child
)
58 /* To get the necessary page struct, access_process_vm() first calls
59 * get_user_pages(). This has done a flush_dcache_page() on the
60 * accessed page. Then our caller (copy_{to,from}_user_page()) did
61 * to memcpy to read/write the data from that page.
63 * Now, the only thing we have to do is:
64 * 1) flush the D-cache if it's possible than an illegal alias
66 * 2) flush the I-cache if this is pre-cheetah and we did a write
68 void flush_ptrace_access(struct vm_area_struct
*vma
, struct page
*page
,
69 unsigned long uaddr
, void *kaddr
,
70 unsigned long len
, int write
)
72 BUG_ON(len
> PAGE_SIZE
);
74 if (tlb_type
== hypervisor
)
79 #ifdef DCACHE_ALIASING_POSSIBLE
80 /* If bit 13 of the kernel address we used to access the
81 * user page is the same as the virtual address that page
82 * is mapped to in the user's address space, we can skip the
85 if ((uaddr
^ (unsigned long) kaddr
) & (1UL << 13)) {
86 unsigned long start
= __pa(kaddr
);
87 unsigned long end
= start
+ len
;
88 unsigned long dcache_line_size
;
90 dcache_line_size
= local_cpu_data().dcache_line_size
;
92 if (tlb_type
== spitfire
) {
93 for (; start
< end
; start
+= dcache_line_size
)
94 spitfire_put_dcache_tag(start
& 0x3fe0, 0x0);
96 start
&= ~(dcache_line_size
- 1);
97 for (; start
< end
; start
+= dcache_line_size
)
99 "stxa %%g0, [%0] %1\n\t"
103 "i" (ASI_DCACHE_INVALIDATE
));
107 if (write
&& tlb_type
== spitfire
) {
108 unsigned long start
= (unsigned long) kaddr
;
109 unsigned long end
= start
+ len
;
110 unsigned long icache_line_size
;
112 icache_line_size
= local_cpu_data().icache_line_size
;
114 for (; start
< end
; start
+= icache_line_size
)
121 static int get_from_target(struct task_struct
*target
, unsigned long uaddr
,
124 if (target
== current
) {
125 if (copy_from_user(kbuf
, (void __user
*) uaddr
, len
))
128 int len2
= access_process_vm(target
, uaddr
, kbuf
, len
, 0);
135 static int set_to_target(struct task_struct
*target
, unsigned long uaddr
,
138 if (target
== current
) {
139 if (copy_to_user((void __user
*) uaddr
, kbuf
, len
))
142 int len2
= access_process_vm(target
, uaddr
, kbuf
, len
, 1);
149 static int regwindow64_get(struct task_struct
*target
,
150 const struct pt_regs
*regs
,
151 struct reg_window
*wbuf
)
153 unsigned long rw_addr
= regs
->u_regs
[UREG_I6
];
155 if (test_tsk_thread_flag(current
, TIF_32BIT
)) {
156 struct reg_window32 win32
;
159 if (get_from_target(target
, rw_addr
, &win32
, sizeof(win32
)))
161 for (i
= 0; i
< 8; i
++)
162 wbuf
->locals
[i
] = win32
.locals
[i
];
163 for (i
= 0; i
< 8; i
++)
164 wbuf
->ins
[i
] = win32
.ins
[i
];
166 rw_addr
+= STACK_BIAS
;
167 if (get_from_target(target
, rw_addr
, wbuf
, sizeof(*wbuf
)))
174 static int regwindow64_set(struct task_struct
*target
,
175 const struct pt_regs
*regs
,
176 struct reg_window
*wbuf
)
178 unsigned long rw_addr
= regs
->u_regs
[UREG_I6
];
180 if (test_tsk_thread_flag(current
, TIF_32BIT
)) {
181 struct reg_window32 win32
;
184 for (i
= 0; i
< 8; i
++)
185 win32
.locals
[i
] = wbuf
->locals
[i
];
186 for (i
= 0; i
< 8; i
++)
187 win32
.ins
[i
] = wbuf
->ins
[i
];
189 if (set_to_target(target
, rw_addr
, &win32
, sizeof(win32
)))
192 rw_addr
+= STACK_BIAS
;
193 if (set_to_target(target
, rw_addr
, wbuf
, sizeof(*wbuf
)))
205 static int genregs64_get(struct task_struct
*target
,
206 const struct user_regset
*regset
,
207 unsigned int pos
, unsigned int count
,
208 void *kbuf
, void __user
*ubuf
)
210 const struct pt_regs
*regs
= task_pt_regs(target
);
213 if (target
== current
)
216 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
218 0, 16 * sizeof(u64
));
219 if (!ret
&& count
&& pos
< (32 * sizeof(u64
))) {
220 struct reg_window window
;
222 if (regwindow64_get(target
, regs
, &window
))
224 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
231 /* TSTATE, TPC, TNPC */
232 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
239 unsigned long y
= regs
->y
;
241 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
248 ret
= user_regset_copyout_zero(&pos
, &count
, &kbuf
, &ubuf
,
249 36 * sizeof(u64
), -1);
255 static int genregs64_set(struct task_struct
*target
,
256 const struct user_regset
*regset
,
257 unsigned int pos
, unsigned int count
,
258 const void *kbuf
, const void __user
*ubuf
)
260 struct pt_regs
*regs
= task_pt_regs(target
);
263 if (target
== current
)
266 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
268 0, 16 * sizeof(u64
));
269 if (!ret
&& count
&& pos
< (32 * sizeof(u64
))) {
270 struct reg_window window
;
272 if (regwindow64_get(target
, regs
, &window
))
275 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
281 regwindow64_set(target
, regs
, &window
))
285 if (!ret
&& count
> 0) {
286 unsigned long tstate
;
289 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
294 /* Only the condition codes and the "in syscall"
295 * state can be modified in the %tstate register.
297 tstate
&= (TSTATE_ICC
| TSTATE_XCC
| TSTATE_SYSCALL
);
298 regs
->tstate
&= ~(TSTATE_ICC
| TSTATE_XCC
| TSTATE_SYSCALL
);
299 regs
->tstate
|= tstate
;
305 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
314 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
323 ret
= user_regset_copyin_ignore(&pos
, &count
, &kbuf
, &ubuf
,
324 36 * sizeof(u64
), -1);
329 static int fpregs64_get(struct task_struct
*target
,
330 const struct user_regset
*regset
,
331 unsigned int pos
, unsigned int count
,
332 void *kbuf
, void __user
*ubuf
)
334 const unsigned long *fpregs
= task_thread_info(target
)->fpregs
;
335 unsigned long fprs
, fsr
, gsr
;
338 if (target
== current
)
339 save_and_clear_fpu();
341 fprs
= task_thread_info(target
)->fpsaved
[0];
344 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
346 0, 16 * sizeof(u64
));
348 ret
= user_regset_copyout_zero(&pos
, &count
, &kbuf
, &ubuf
,
354 ret
= user_regset_copyout(&pos
, &count
,
360 ret
= user_regset_copyout_zero(&pos
, &count
,
366 if (fprs
& FPRS_FEF
) {
367 fsr
= task_thread_info(target
)->xfsr
[0];
368 gsr
= task_thread_info(target
)->gsr
[0];
374 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
379 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
384 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
390 ret
= user_regset_copyout_zero(&pos
, &count
, &kbuf
, &ubuf
,
391 35 * sizeof(u64
), -1);
396 static int fpregs64_set(struct task_struct
*target
,
397 const struct user_regset
*regset
,
398 unsigned int pos
, unsigned int count
,
399 const void *kbuf
, const void __user
*ubuf
)
401 unsigned long *fpregs
= task_thread_info(target
)->fpregs
;
405 if (target
== current
)
406 save_and_clear_fpu();
408 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
410 0, 32 * sizeof(u64
));
412 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
413 task_thread_info(target
)->xfsr
,
417 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
418 task_thread_info(target
)->gsr
,
422 fprs
= task_thread_info(target
)->fpsaved
[0];
423 if (!ret
&& count
> 0) {
424 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
430 fprs
|= (FPRS_FEF
| FPRS_DL
| FPRS_DU
);
431 task_thread_info(target
)->fpsaved
[0] = fprs
;
434 ret
= user_regset_copyin_ignore(&pos
, &count
, &kbuf
, &ubuf
,
435 35 * sizeof(u64
), -1);
439 static const struct user_regset sparc64_regsets
[] = {
445 * TSTATE, TPC, TNPC, Y
448 .core_note_type
= NT_PRSTATUS
,
450 .size
= sizeof(u64
), .align
= sizeof(u64
),
451 .get
= genregs64_get
, .set
= genregs64_set
460 .core_note_type
= NT_PRFPREG
,
462 .size
= sizeof(u64
), .align
= sizeof(u64
),
463 .get
= fpregs64_get
, .set
= fpregs64_set
467 static const struct user_regset_view user_sparc64_view
= {
468 .name
= "sparc64", .e_machine
= EM_SPARCV9
,
469 .regsets
= sparc64_regsets
, .n
= ARRAY_SIZE(sparc64_regsets
)
473 static int genregs32_get(struct task_struct
*target
,
474 const struct user_regset
*regset
,
475 unsigned int pos
, unsigned int count
,
476 void *kbuf
, void __user
*ubuf
)
478 const struct pt_regs
*regs
= task_pt_regs(target
);
479 compat_ulong_t __user
*reg_window
;
480 compat_ulong_t
*k
= kbuf
;
481 compat_ulong_t __user
*u
= ubuf
;
484 if (target
== current
)
488 count
/= sizeof(reg
);
491 for (; count
> 0 && pos
< 16; count
--)
492 *k
++ = regs
->u_regs
[pos
++];
494 reg_window
= (compat_ulong_t __user
*) regs
->u_regs
[UREG_I6
];
495 if (target
== current
) {
496 for (; count
> 0 && pos
< 32; count
--) {
497 if (get_user(*k
++, ®_window
[pos
++]))
501 for (; count
> 0 && pos
< 32; count
--) {
502 if (access_process_vm(target
,
513 for (; count
> 0 && pos
< 16; count
--) {
514 if (put_user((compat_ulong_t
) regs
->u_regs
[pos
++], u
++))
518 reg_window
= (compat_ulong_t __user
*) regs
->u_regs
[UREG_I6
];
519 if (target
== current
) {
520 for (; count
> 0 && pos
< 32; count
--) {
521 if (get_user(reg
, ®_window
[pos
++]) ||
526 for (; count
> 0 && pos
< 32; count
--) {
527 if (access_process_vm(target
,
530 ®
, sizeof(reg
), 0)
533 if (access_process_vm(target
,
535 ®
, sizeof(reg
), 1)
546 reg
= tstate_to_psr(regs
->tstate
);
567 else if (put_user(reg
, u
++))
574 count
*= sizeof(reg
);
576 return user_regset_copyout_zero(&pos
, &count
, &kbuf
, &ubuf
,
577 38 * sizeof(reg
), -1);
580 static int genregs32_set(struct task_struct
*target
,
581 const struct user_regset
*regset
,
582 unsigned int pos
, unsigned int count
,
583 const void *kbuf
, const void __user
*ubuf
)
585 struct pt_regs
*regs
= task_pt_regs(target
);
586 compat_ulong_t __user
*reg_window
;
587 const compat_ulong_t
*k
= kbuf
;
588 const compat_ulong_t __user
*u
= ubuf
;
591 if (target
== current
)
595 count
/= sizeof(reg
);
598 for (; count
> 0 && pos
< 16; count
--)
599 regs
->u_regs
[pos
++] = *k
++;
601 reg_window
= (compat_ulong_t __user
*) regs
->u_regs
[UREG_I6
];
602 if (target
== current
) {
603 for (; count
> 0 && pos
< 32; count
--) {
604 if (put_user(*k
++, ®_window
[pos
++]))
608 for (; count
> 0 && pos
< 32; count
--) {
609 if (access_process_vm(target
,
621 for (; count
> 0 && pos
< 16; count
--) {
622 if (get_user(reg
, u
++))
624 regs
->u_regs
[pos
++] = reg
;
627 reg_window
= (compat_ulong_t __user
*) regs
->u_regs
[UREG_I6
];
628 if (target
== current
) {
629 for (; count
> 0 && pos
< 32; count
--) {
630 if (get_user(reg
, u
++) ||
631 put_user(reg
, ®_window
[pos
++]))
635 for (; count
> 0 && pos
< 32; count
--) {
636 if (access_process_vm(target
,
639 ®
, sizeof(reg
), 0)
642 if (access_process_vm(target
,
645 ®
, sizeof(reg
), 1)
654 unsigned long tstate
;
658 else if (get_user(reg
, u
++))
663 tstate
= regs
->tstate
;
664 tstate
&= ~(TSTATE_ICC
| TSTATE_XCC
| TSTATE_SYSCALL
);
665 tstate
|= psr_to_tstate_icc(reg
);
666 if (reg
& PSR_SYSCALL
)
667 tstate
|= TSTATE_SYSCALL
;
668 regs
->tstate
= tstate
;
691 count
*= sizeof(reg
);
693 return user_regset_copyin_ignore(&pos
, &count
, &kbuf
, &ubuf
,
694 38 * sizeof(reg
), -1);
697 static int fpregs32_get(struct task_struct
*target
,
698 const struct user_regset
*regset
,
699 unsigned int pos
, unsigned int count
,
700 void *kbuf
, void __user
*ubuf
)
702 const unsigned long *fpregs
= task_thread_info(target
)->fpregs
;
703 compat_ulong_t enabled
;
708 if (target
== current
)
709 save_and_clear_fpu();
711 fprs
= task_thread_info(target
)->fpsaved
[0];
712 if (fprs
& FPRS_FEF
) {
713 fsr
= task_thread_info(target
)->xfsr
[0];
720 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
722 0, 32 * sizeof(u32
));
725 ret
= user_regset_copyout_zero(&pos
, &count
, &kbuf
, &ubuf
,
729 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
737 val
= (enabled
<< 8) | (8 << 16);
738 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
745 ret
= user_regset_copyout_zero(&pos
, &count
, &kbuf
, &ubuf
,
746 35 * sizeof(u32
), -1);
751 static int fpregs32_set(struct task_struct
*target
,
752 const struct user_regset
*regset
,
753 unsigned int pos
, unsigned int count
,
754 const void *kbuf
, const void __user
*ubuf
)
756 unsigned long *fpregs
= task_thread_info(target
)->fpregs
;
760 if (target
== current
)
761 save_and_clear_fpu();
763 fprs
= task_thread_info(target
)->fpsaved
[0];
765 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
767 0, 32 * sizeof(u32
));
769 user_regset_copyin_ignore(&pos
, &count
, &kbuf
, &ubuf
,
772 if (!ret
&& count
> 0) {
776 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
781 val
= task_thread_info(target
)->xfsr
[0];
782 val
&= 0xffffffff00000000UL
;
784 task_thread_info(target
)->xfsr
[0] = val
;
788 fprs
|= (FPRS_FEF
| FPRS_DL
);
789 task_thread_info(target
)->fpsaved
[0] = fprs
;
792 ret
= user_regset_copyin_ignore(&pos
, &count
, &kbuf
, &ubuf
,
793 34 * sizeof(u32
), -1);
797 static const struct user_regset sparc32_regsets
[] = {
803 * PSR, PC, nPC, Y, WIM, TBR
806 .core_note_type
= NT_PRSTATUS
,
808 .size
= sizeof(u32
), .align
= sizeof(u32
),
809 .get
= genregs32_get
, .set
= genregs32_set
815 * FPU QUEUE COUNT (8-bit char)
816 * FPU QUEUE ENTRYSIZE (8-bit char)
817 * FPU ENABLED (8-bit char)
819 * FPU QUEUE (64 32-bit ints)
822 .core_note_type
= NT_PRFPREG
,
824 .size
= sizeof(u32
), .align
= sizeof(u32
),
825 .get
= fpregs32_get
, .set
= fpregs32_set
829 static const struct user_regset_view user_sparc32_view
= {
830 .name
= "sparc", .e_machine
= EM_SPARC
,
831 .regsets
= sparc32_regsets
, .n
= ARRAY_SIZE(sparc32_regsets
)
833 #endif /* CONFIG_COMPAT */
835 const struct user_regset_view
*task_user_regset_view(struct task_struct
*task
)
838 if (test_tsk_thread_flag(task
, TIF_32BIT
))
839 return &user_sparc32_view
;
841 return &user_sparc64_view
;
846 unsigned int regs
[32];
852 unsigned int insnaddr
;
857 long compat_arch_ptrace(struct task_struct
*child
, compat_long_t request
,
858 compat_ulong_t caddr
, compat_ulong_t cdata
)
860 const struct user_regset_view
*view
= task_user_regset_view(current
);
861 compat_ulong_t caddr2
= task_pt_regs(current
)->u_regs
[UREG_I4
];
862 struct pt_regs32 __user
*pregs
;
863 struct compat_fps __user
*fps
;
864 unsigned long addr2
= caddr2
;
865 unsigned long addr
= caddr
;
866 unsigned long data
= cdata
;
869 pregs
= (struct pt_regs32 __user
*) addr
;
870 fps
= (struct compat_fps __user
*) addr
;
874 ret
= (addr
!= 0) ? -EIO
: 0;
878 ret
= copy_regset_to_user(child
, view
, REGSET_GENERAL
,
883 ret
= copy_regset_to_user(child
, view
, REGSET_GENERAL
,
890 ret
= copy_regset_from_user(child
, view
, REGSET_GENERAL
,
895 ret
= copy_regset_from_user(child
, view
, REGSET_GENERAL
,
901 case PTRACE_GETFPREGS
:
902 ret
= copy_regset_to_user(child
, view
, REGSET_FP
,
907 ret
= copy_regset_to_user(child
, view
, REGSET_FP
,
912 if (__put_user(0, &fps
->flags
) ||
913 __put_user(0, &fps
->extra
) ||
914 __put_user(0, &fps
->fpqd
) ||
915 clear_user(&fps
->fpq
[0], 32 * sizeof(unsigned int)))
920 case PTRACE_SETFPREGS
:
921 ret
= copy_regset_from_user(child
, view
, REGSET_FP
,
926 ret
= copy_regset_from_user(child
, view
, REGSET_FP
,
932 case PTRACE_READTEXT
:
933 case PTRACE_READDATA
:
934 ret
= ptrace_readdata(child
, addr
,
935 (char __user
*)addr2
, data
);
942 case PTRACE_WRITETEXT
:
943 case PTRACE_WRITEDATA
:
944 ret
= ptrace_writedata(child
, (char __user
*) addr2
,
953 if (request
== PTRACE_SPARC_DETACH
)
954 request
= PTRACE_DETACH
;
955 ret
= compat_ptrace_request(child
, request
, addr
, data
);
961 #endif /* CONFIG_COMPAT */
964 unsigned int regs
[64];
968 long arch_ptrace(struct task_struct
*child
, long request
, long addr
, long data
)
970 const struct user_regset_view
*view
= task_user_regset_view(current
);
971 unsigned long addr2
= task_pt_regs(current
)->u_regs
[UREG_I4
];
972 struct pt_regs __user
*pregs
;
973 struct fps __user
*fps
;
976 pregs
= (struct pt_regs __user
*) (unsigned long) addr
;
977 fps
= (struct fps __user
*) (unsigned long) addr
;
981 ret
= (addr
!= 0) ? -EIO
: 0;
984 case PTRACE_GETREGS64
:
985 ret
= copy_regset_to_user(child
, view
, REGSET_GENERAL
,
990 /* XXX doesn't handle 'y' register correctly XXX */
991 ret
= copy_regset_to_user(child
, view
, REGSET_GENERAL
,
998 case PTRACE_SETREGS64
:
999 ret
= copy_regset_from_user(child
, view
, REGSET_GENERAL
,
1004 /* XXX doesn't handle 'y' register correctly XXX */
1005 ret
= copy_regset_from_user(child
, view
, REGSET_GENERAL
,
1012 case PTRACE_GETFPREGS64
:
1013 ret
= copy_regset_to_user(child
, view
, REGSET_FP
,
1019 case PTRACE_SETFPREGS64
:
1020 ret
= copy_regset_from_user(child
, view
, REGSET_FP
,
1026 case PTRACE_READTEXT
:
1027 case PTRACE_READDATA
:
1028 ret
= ptrace_readdata(child
, addr
,
1029 (char __user
*)addr2
, data
);
1036 case PTRACE_WRITETEXT
:
1037 case PTRACE_WRITEDATA
:
1038 ret
= ptrace_writedata(child
, (char __user
*) addr2
,
1047 if (request
== PTRACE_SPARC_DETACH
)
1048 request
= PTRACE_DETACH
;
1049 ret
= ptrace_request(child
, request
, addr
, data
);
1056 asmlinkage
int syscall_trace_enter(struct pt_regs
*regs
)
1060 /* do the secure computing check first */
1061 secure_computing(regs
->u_regs
[UREG_G1
]);
1063 if (test_thread_flag(TIF_SYSCALL_TRACE
))
1064 ret
= tracehook_report_syscall_entry(regs
);
1066 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT
)))
1067 trace_sys_enter(regs
, regs
->u_regs
[UREG_G1
]);
1069 if (unlikely(current
->audit_context
) && !ret
)
1070 audit_syscall_entry((test_thread_flag(TIF_32BIT
) ?
1072 AUDIT_ARCH_SPARC64
),
1073 regs
->u_regs
[UREG_G1
],
1074 regs
->u_regs
[UREG_I0
],
1075 regs
->u_regs
[UREG_I1
],
1076 regs
->u_regs
[UREG_I2
],
1077 regs
->u_regs
[UREG_I3
]);
1082 asmlinkage
void syscall_trace_leave(struct pt_regs
*regs
)
1084 if (unlikely(current
->audit_context
)) {
1085 unsigned long tstate
= regs
->tstate
;
1086 int result
= AUDITSC_SUCCESS
;
1088 if (unlikely(tstate
& (TSTATE_XCARRY
| TSTATE_ICARRY
)))
1089 result
= AUDITSC_FAILURE
;
1091 audit_syscall_exit(result
, regs
->u_regs
[UREG_I0
]);
1094 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT
)))
1095 trace_sys_exit(regs
, regs
->u_regs
[UREG_G1
]);
1097 if (test_thread_flag(TIF_SYSCALL_TRACE
))
1098 tracehook_report_syscall_exit(regs
, 0);