2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1992 Ross Biro
7 * Copyright (C) Linus Torvalds
8 * Copyright (C) 1994, 95, 96, 97, 98, 2000 Ralf Baechle
9 * Copyright (C) 1996 David S. Miller
10 * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
11 * Copyright (C) 1999 MIPS Technologies, Inc.
12 * Copyright (C) 2000 Ulf Carlsson
14 * At this time Linux/MIPS64 only supports syscall tracing, even for 32-bit
17 #include <linux/compiler.h>
18 #include <linux/context_tracking.h>
19 #include <linux/elf.h>
20 #include <linux/kernel.h>
21 #include <linux/sched.h>
22 #include <linux/sched/task_stack.h>
24 #include <linux/errno.h>
25 #include <linux/ptrace.h>
26 #include <linux/regset.h>
27 #include <linux/smp.h>
28 #include <linux/security.h>
29 #include <linux/stddef.h>
30 #include <linux/tracehook.h>
31 #include <linux/audit.h>
32 #include <linux/seccomp.h>
33 #include <linux/ftrace.h>
35 #include <asm/byteorder.h>
37 #include <asm/cpu-info.h>
40 #include <asm/mipsregs.h>
41 #include <asm/mipsmtregs.h>
42 #include <asm/pgtable.h>
44 #include <asm/syscall.h>
45 #include <linux/uaccess.h>
46 #include <asm/bootinfo.h>
49 #define CREATE_TRACE_POINTS
50 #include <trace/events/syscalls.h>
52 static void init_fp_ctx(struct task_struct
*target
)
54 /* If FP has been used then the target already has context */
55 if (tsk_used_math(target
))
58 /* Begin with data registers set to all 1s... */
59 memset(&target
->thread
.fpu
.fpr
, ~0, sizeof(target
->thread
.fpu
.fpr
));
61 /* FCSR has been preset by `mips_set_personality_nan'. */
64 * Record that the target has "used" math, such that the context
65 * just initialised, and any modifications made by the caller,
68 set_stopped_child_used_math(target
);
72 * Called by kernel/ptrace.c when detaching..
74 * Make sure single step bits etc are not set.
76 void ptrace_disable(struct task_struct
*child
)
78 /* Don't load the watchpoint registers for the ex-child. */
79 clear_tsk_thread_flag(child
, TIF_LOAD_WATCH
);
83 * Poke at FCSR according to its mask. Set the Cause bits even
84 * if a corresponding Enable bit is set. This will be noticed at
85 * the time the thread is switched to and SIGFPE thrown accordingly.
87 static void ptrace_setfcr31(struct task_struct
*child
, u32 value
)
92 fcr31
= child
->thread
.fpu
.fcr31
;
93 mask
= boot_cpu_data
.fpu_msk31
;
94 child
->thread
.fpu
.fcr31
= (value
& ~mask
) | (fcr31
& mask
);
98 * Read a general register set. We always use the 64-bit format, even
99 * for 32-bit kernels and for 32-bit processes on a 64-bit kernel.
100 * Registers are sign extended to fill the available space.
102 int ptrace_getregs(struct task_struct
*child
, struct user_pt_regs __user
*data
)
104 struct pt_regs
*regs
;
107 if (!access_ok(VERIFY_WRITE
, data
, 38 * 8))
110 regs
= task_pt_regs(child
);
112 for (i
= 0; i
< 32; i
++)
113 __put_user((long)regs
->regs
[i
], (__s64 __user
*)&data
->regs
[i
]);
114 __put_user((long)regs
->lo
, (__s64 __user
*)&data
->lo
);
115 __put_user((long)regs
->hi
, (__s64 __user
*)&data
->hi
);
116 __put_user((long)regs
->cp0_epc
, (__s64 __user
*)&data
->cp0_epc
);
117 __put_user((long)regs
->cp0_badvaddr
, (__s64 __user
*)&data
->cp0_badvaddr
);
118 __put_user((long)regs
->cp0_status
, (__s64 __user
*)&data
->cp0_status
);
119 __put_user((long)regs
->cp0_cause
, (__s64 __user
*)&data
->cp0_cause
);
125 * Write a general register set. As for PTRACE_GETREGS, we always use
126 * the 64-bit format. On a 32-bit kernel only the lower order half
127 * (according to endianness) will be used.
129 int ptrace_setregs(struct task_struct
*child
, struct user_pt_regs __user
*data
)
131 struct pt_regs
*regs
;
134 if (!access_ok(VERIFY_READ
, data
, 38 * 8))
137 regs
= task_pt_regs(child
);
139 for (i
= 0; i
< 32; i
++)
140 __get_user(regs
->regs
[i
], (__s64 __user
*)&data
->regs
[i
]);
141 __get_user(regs
->lo
, (__s64 __user
*)&data
->lo
);
142 __get_user(regs
->hi
, (__s64 __user
*)&data
->hi
);
143 __get_user(regs
->cp0_epc
, (__s64 __user
*)&data
->cp0_epc
);
145 /* badvaddr, status, and cause may not be written. */
147 /* System call number may have been changed */
148 mips_syscall_update_nr(child
, regs
);
153 int ptrace_getfpregs(struct task_struct
*child
, __u32 __user
*data
)
157 if (!access_ok(VERIFY_WRITE
, data
, 33 * 8))
160 if (tsk_used_math(child
)) {
161 union fpureg
*fregs
= get_fpu_regs(child
);
162 for (i
= 0; i
< 32; i
++)
163 __put_user(get_fpr64(&fregs
[i
], 0),
164 i
+ (__u64 __user
*)data
);
166 for (i
= 0; i
< 32; i
++)
167 __put_user((__u64
) -1, i
+ (__u64 __user
*) data
);
170 __put_user(child
->thread
.fpu
.fcr31
, data
+ 64);
171 __put_user(boot_cpu_data
.fpu_id
, data
+ 65);
176 int ptrace_setfpregs(struct task_struct
*child
, __u32 __user
*data
)
183 if (!access_ok(VERIFY_READ
, data
, 33 * 8))
187 fregs
= get_fpu_regs(child
);
189 for (i
= 0; i
< 32; i
++) {
190 __get_user(fpr_val
, i
+ (__u64 __user
*)data
);
191 set_fpr64(&fregs
[i
], 0, fpr_val
);
194 __get_user(value
, data
+ 64);
195 ptrace_setfcr31(child
, value
);
197 /* FIR may not be written. */
202 int ptrace_get_watch_regs(struct task_struct
*child
,
203 struct pt_watch_regs __user
*addr
)
205 enum pt_watch_style style
;
208 if (!cpu_has_watch
|| boot_cpu_data
.watch_reg_use_cnt
== 0)
210 if (!access_ok(VERIFY_WRITE
, addr
, sizeof(struct pt_watch_regs
)))
214 style
= pt_watch_style_mips32
;
215 #define WATCH_STYLE mips32
217 style
= pt_watch_style_mips64
;
218 #define WATCH_STYLE mips64
221 __put_user(style
, &addr
->style
);
222 __put_user(boot_cpu_data
.watch_reg_use_cnt
,
223 &addr
->WATCH_STYLE
.num_valid
);
224 for (i
= 0; i
< boot_cpu_data
.watch_reg_use_cnt
; i
++) {
225 __put_user(child
->thread
.watch
.mips3264
.watchlo
[i
],
226 &addr
->WATCH_STYLE
.watchlo
[i
]);
227 __put_user(child
->thread
.watch
.mips3264
.watchhi
[i
] &
228 (MIPS_WATCHHI_MASK
| MIPS_WATCHHI_IRW
),
229 &addr
->WATCH_STYLE
.watchhi
[i
]);
230 __put_user(boot_cpu_data
.watch_reg_masks
[i
],
231 &addr
->WATCH_STYLE
.watch_masks
[i
]);
234 __put_user(0, &addr
->WATCH_STYLE
.watchlo
[i
]);
235 __put_user(0, &addr
->WATCH_STYLE
.watchhi
[i
]);
236 __put_user(0, &addr
->WATCH_STYLE
.watch_masks
[i
]);
242 int ptrace_set_watch_regs(struct task_struct
*child
,
243 struct pt_watch_regs __user
*addr
)
246 int watch_active
= 0;
247 unsigned long lt
[NUM_WATCH_REGS
];
248 u16 ht
[NUM_WATCH_REGS
];
250 if (!cpu_has_watch
|| boot_cpu_data
.watch_reg_use_cnt
== 0)
252 if (!access_ok(VERIFY_READ
, addr
, sizeof(struct pt_watch_regs
)))
254 /* Check the values. */
255 for (i
= 0; i
< boot_cpu_data
.watch_reg_use_cnt
; i
++) {
256 __get_user(lt
[i
], &addr
->WATCH_STYLE
.watchlo
[i
]);
258 if (lt
[i
] & __UA_LIMIT
)
261 if (test_tsk_thread_flag(child
, TIF_32BIT_ADDR
)) {
262 if (lt
[i
] & 0xffffffff80000000UL
)
265 if (lt
[i
] & __UA_LIMIT
)
269 __get_user(ht
[i
], &addr
->WATCH_STYLE
.watchhi
[i
]);
270 if (ht
[i
] & ~MIPS_WATCHHI_MASK
)
274 for (i
= 0; i
< boot_cpu_data
.watch_reg_use_cnt
; i
++) {
275 if (lt
[i
] & MIPS_WATCHLO_IRW
)
277 child
->thread
.watch
.mips3264
.watchlo
[i
] = lt
[i
];
279 child
->thread
.watch
.mips3264
.watchhi
[i
] = ht
[i
];
283 set_tsk_thread_flag(child
, TIF_LOAD_WATCH
);
285 clear_tsk_thread_flag(child
, TIF_LOAD_WATCH
);
290 /* regset get/set implementations */
292 #if defined(CONFIG_32BIT) || defined(CONFIG_MIPS32_O32)
294 static int gpr32_get(struct task_struct
*target
,
295 const struct user_regset
*regset
,
296 unsigned int pos
, unsigned int count
,
297 void *kbuf
, void __user
*ubuf
)
299 struct pt_regs
*regs
= task_pt_regs(target
);
300 u32 uregs
[ELF_NGREG
] = {};
302 mips_dump_regs32(uregs
, regs
);
303 return user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
, uregs
, 0,
307 static int gpr32_set(struct task_struct
*target
,
308 const struct user_regset
*regset
,
309 unsigned int pos
, unsigned int count
,
310 const void *kbuf
, const void __user
*ubuf
)
312 struct pt_regs
*regs
= task_pt_regs(target
);
313 u32 uregs
[ELF_NGREG
];
314 unsigned start
, num_regs
, i
;
317 start
= pos
/ sizeof(u32
);
318 num_regs
= count
/ sizeof(u32
);
320 if (start
+ num_regs
> ELF_NGREG
)
323 err
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
, uregs
, 0,
328 for (i
= start
; i
< num_regs
; i
++) {
330 * Cast all values to signed here so that if this is a 64-bit
331 * kernel, the supplied 32-bit values will be sign extended.
334 case MIPS32_EF_R1
... MIPS32_EF_R25
:
335 /* k0/k1 are ignored. */
336 case MIPS32_EF_R28
... MIPS32_EF_R31
:
337 regs
->regs
[i
- MIPS32_EF_R0
] = (s32
)uregs
[i
];
340 regs
->lo
= (s32
)uregs
[i
];
343 regs
->hi
= (s32
)uregs
[i
];
345 case MIPS32_EF_CP0_EPC
:
346 regs
->cp0_epc
= (s32
)uregs
[i
];
351 /* System call number may have been changed */
352 mips_syscall_update_nr(target
, regs
);
357 #endif /* CONFIG_32BIT || CONFIG_MIPS32_O32 */
361 static int gpr64_get(struct task_struct
*target
,
362 const struct user_regset
*regset
,
363 unsigned int pos
, unsigned int count
,
364 void *kbuf
, void __user
*ubuf
)
366 struct pt_regs
*regs
= task_pt_regs(target
);
367 u64 uregs
[ELF_NGREG
] = {};
369 mips_dump_regs64(uregs
, regs
);
370 return user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
, uregs
, 0,
374 static int gpr64_set(struct task_struct
*target
,
375 const struct user_regset
*regset
,
376 unsigned int pos
, unsigned int count
,
377 const void *kbuf
, const void __user
*ubuf
)
379 struct pt_regs
*regs
= task_pt_regs(target
);
380 u64 uregs
[ELF_NGREG
];
381 unsigned start
, num_regs
, i
;
384 start
= pos
/ sizeof(u64
);
385 num_regs
= count
/ sizeof(u64
);
387 if (start
+ num_regs
> ELF_NGREG
)
390 err
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
, uregs
, 0,
395 for (i
= start
; i
< num_regs
; i
++) {
397 case MIPS64_EF_R1
... MIPS64_EF_R25
:
398 /* k0/k1 are ignored. */
399 case MIPS64_EF_R28
... MIPS64_EF_R31
:
400 regs
->regs
[i
- MIPS64_EF_R0
] = uregs
[i
];
408 case MIPS64_EF_CP0_EPC
:
409 regs
->cp0_epc
= uregs
[i
];
414 /* System call number may have been changed */
415 mips_syscall_update_nr(target
, regs
);
420 #endif /* CONFIG_64BIT */
423 * Copy the floating-point context to the supplied NT_PRFPREG buffer,
424 * !CONFIG_CPU_HAS_MSA variant. FP context's general register slots
425 * correspond 1:1 to buffer slots. Only general registers are copied.
427 static int fpr_get_fpa(struct task_struct
*target
,
428 unsigned int *pos
, unsigned int *count
,
429 void **kbuf
, void __user
**ubuf
)
431 return user_regset_copyout(pos
, count
, kbuf
, ubuf
,
433 0, NUM_FPU_REGS
* sizeof(elf_fpreg_t
));
437 * Copy the floating-point context to the supplied NT_PRFPREG buffer,
438 * CONFIG_CPU_HAS_MSA variant. Only lower 64 bits of FP context's
439 * general register slots are copied to buffer slots. Only general
440 * registers are copied.
442 static int fpr_get_msa(struct task_struct
*target
,
443 unsigned int *pos
, unsigned int *count
,
444 void **kbuf
, void __user
**ubuf
)
450 BUILD_BUG_ON(sizeof(fpr_val
) != sizeof(elf_fpreg_t
));
451 for (i
= 0; i
< NUM_FPU_REGS
; i
++) {
452 fpr_val
= get_fpr64(&target
->thread
.fpu
.fpr
[i
], 0);
453 err
= user_regset_copyout(pos
, count
, kbuf
, ubuf
,
454 &fpr_val
, i
* sizeof(elf_fpreg_t
),
455 (i
+ 1) * sizeof(elf_fpreg_t
));
464 * Copy the floating-point context to the supplied NT_PRFPREG buffer.
465 * Choose the appropriate helper for general registers, and then copy
466 * the FCSR register separately.
468 static int fpr_get(struct task_struct
*target
,
469 const struct user_regset
*regset
,
470 unsigned int pos
, unsigned int count
,
471 void *kbuf
, void __user
*ubuf
)
473 const int fcr31_pos
= NUM_FPU_REGS
* sizeof(elf_fpreg_t
);
476 if (sizeof(target
->thread
.fpu
.fpr
[0]) == sizeof(elf_fpreg_t
))
477 err
= fpr_get_fpa(target
, &pos
, &count
, &kbuf
, &ubuf
);
479 err
= fpr_get_msa(target
, &pos
, &count
, &kbuf
, &ubuf
);
483 err
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
484 &target
->thread
.fpu
.fcr31
,
485 fcr31_pos
, fcr31_pos
+ sizeof(u32
));
491 * Copy the supplied NT_PRFPREG buffer to the floating-point context,
492 * !CONFIG_CPU_HAS_MSA variant. Buffer slots correspond 1:1 to FP
493 * context's general register slots. Only general registers are copied.
495 static int fpr_set_fpa(struct task_struct
*target
,
496 unsigned int *pos
, unsigned int *count
,
497 const void **kbuf
, const void __user
**ubuf
)
499 return user_regset_copyin(pos
, count
, kbuf
, ubuf
,
501 0, NUM_FPU_REGS
* sizeof(elf_fpreg_t
));
505 * Copy the supplied NT_PRFPREG buffer to the floating-point context,
506 * CONFIG_CPU_HAS_MSA variant. Buffer slots are copied to lower 64
507 * bits only of FP context's general register slots. Only general
508 * registers are copied.
510 static int fpr_set_msa(struct task_struct
*target
,
511 unsigned int *pos
, unsigned int *count
,
512 const void **kbuf
, const void __user
**ubuf
)
518 BUILD_BUG_ON(sizeof(fpr_val
) != sizeof(elf_fpreg_t
));
519 for (i
= 0; i
< NUM_FPU_REGS
&& *count
> 0; i
++) {
520 err
= user_regset_copyin(pos
, count
, kbuf
, ubuf
,
521 &fpr_val
, i
* sizeof(elf_fpreg_t
),
522 (i
+ 1) * sizeof(elf_fpreg_t
));
525 set_fpr64(&target
->thread
.fpu
.fpr
[i
], 0, fpr_val
);
532 * Copy the supplied NT_PRFPREG buffer to the floating-point context.
533 * Choose the appropriate helper for general registers, and then copy
534 * the FCSR register separately.
536 * We optimize for the case where `count % sizeof(elf_fpreg_t) == 0',
537 * which is supposed to have been guaranteed by the kernel before
538 * calling us, e.g. in `ptrace_regset'. We enforce that requirement,
539 * so that we can safely avoid preinitializing temporaries for
540 * partial register writes.
542 static int fpr_set(struct task_struct
*target
,
543 const struct user_regset
*regset
,
544 unsigned int pos
, unsigned int count
,
545 const void *kbuf
, const void __user
*ubuf
)
547 const int fcr31_pos
= NUM_FPU_REGS
* sizeof(elf_fpreg_t
);
551 BUG_ON(count
% sizeof(elf_fpreg_t
));
553 if (pos
+ count
> sizeof(elf_fpregset_t
))
558 if (sizeof(target
->thread
.fpu
.fpr
[0]) == sizeof(elf_fpreg_t
))
559 err
= fpr_set_fpa(target
, &pos
, &count
, &kbuf
, &ubuf
);
561 err
= fpr_set_msa(target
, &pos
, &count
, &kbuf
, &ubuf
);
566 err
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
568 fcr31_pos
, fcr31_pos
+ sizeof(u32
));
572 ptrace_setfcr31(target
, fcr31
);
583 struct pt_regs_offset
{
588 #define REG_OFFSET_NAME(reg, r) { \
590 .offset = offsetof(struct pt_regs, r) \
593 #define REG_OFFSET_END { \
598 static const struct pt_regs_offset regoffset_table
[] = {
599 REG_OFFSET_NAME(r0
, regs
[0]),
600 REG_OFFSET_NAME(r1
, regs
[1]),
601 REG_OFFSET_NAME(r2
, regs
[2]),
602 REG_OFFSET_NAME(r3
, regs
[3]),
603 REG_OFFSET_NAME(r4
, regs
[4]),
604 REG_OFFSET_NAME(r5
, regs
[5]),
605 REG_OFFSET_NAME(r6
, regs
[6]),
606 REG_OFFSET_NAME(r7
, regs
[7]),
607 REG_OFFSET_NAME(r8
, regs
[8]),
608 REG_OFFSET_NAME(r9
, regs
[9]),
609 REG_OFFSET_NAME(r10
, regs
[10]),
610 REG_OFFSET_NAME(r11
, regs
[11]),
611 REG_OFFSET_NAME(r12
, regs
[12]),
612 REG_OFFSET_NAME(r13
, regs
[13]),
613 REG_OFFSET_NAME(r14
, regs
[14]),
614 REG_OFFSET_NAME(r15
, regs
[15]),
615 REG_OFFSET_NAME(r16
, regs
[16]),
616 REG_OFFSET_NAME(r17
, regs
[17]),
617 REG_OFFSET_NAME(r18
, regs
[18]),
618 REG_OFFSET_NAME(r19
, regs
[19]),
619 REG_OFFSET_NAME(r20
, regs
[20]),
620 REG_OFFSET_NAME(r21
, regs
[21]),
621 REG_OFFSET_NAME(r22
, regs
[22]),
622 REG_OFFSET_NAME(r23
, regs
[23]),
623 REG_OFFSET_NAME(r24
, regs
[24]),
624 REG_OFFSET_NAME(r25
, regs
[25]),
625 REG_OFFSET_NAME(r26
, regs
[26]),
626 REG_OFFSET_NAME(r27
, regs
[27]),
627 REG_OFFSET_NAME(r28
, regs
[28]),
628 REG_OFFSET_NAME(r29
, regs
[29]),
629 REG_OFFSET_NAME(r30
, regs
[30]),
630 REG_OFFSET_NAME(r31
, regs
[31]),
631 REG_OFFSET_NAME(c0_status
, cp0_status
),
632 REG_OFFSET_NAME(hi
, hi
),
633 REG_OFFSET_NAME(lo
, lo
),
634 #ifdef CONFIG_CPU_HAS_SMARTMIPS
635 REG_OFFSET_NAME(acx
, acx
),
637 REG_OFFSET_NAME(c0_badvaddr
, cp0_badvaddr
),
638 REG_OFFSET_NAME(c0_cause
, cp0_cause
),
639 REG_OFFSET_NAME(c0_epc
, cp0_epc
),
640 #ifdef CONFIG_CPU_CAVIUM_OCTEON
641 REG_OFFSET_NAME(mpl0
, mpl
[0]),
642 REG_OFFSET_NAME(mpl1
, mpl
[1]),
643 REG_OFFSET_NAME(mpl2
, mpl
[2]),
644 REG_OFFSET_NAME(mtp0
, mtp
[0]),
645 REG_OFFSET_NAME(mtp1
, mtp
[1]),
646 REG_OFFSET_NAME(mtp2
, mtp
[2]),
652 * regs_query_register_offset() - query register offset from its name
653 * @name: the name of a register
655 * regs_query_register_offset() returns the offset of a register in struct
656 * pt_regs from its name. If the name is invalid, this returns -EINVAL;
658 int regs_query_register_offset(const char *name
)
660 const struct pt_regs_offset
*roff
;
661 for (roff
= regoffset_table
; roff
->name
!= NULL
; roff
++)
662 if (!strcmp(roff
->name
, name
))
667 #if defined(CONFIG_32BIT) || defined(CONFIG_MIPS32_O32)
669 static const struct user_regset mips_regsets
[] = {
671 .core_note_type
= NT_PRSTATUS
,
673 .size
= sizeof(unsigned int),
674 .align
= sizeof(unsigned int),
679 .core_note_type
= NT_PRFPREG
,
681 .size
= sizeof(elf_fpreg_t
),
682 .align
= sizeof(elf_fpreg_t
),
688 static const struct user_regset_view user_mips_view
= {
690 .e_machine
= ELF_ARCH
,
691 .ei_osabi
= ELF_OSABI
,
692 .regsets
= mips_regsets
,
693 .n
= ARRAY_SIZE(mips_regsets
),
696 #endif /* CONFIG_32BIT || CONFIG_MIPS32_O32 */
700 static const struct user_regset mips64_regsets
[] = {
702 .core_note_type
= NT_PRSTATUS
,
704 .size
= sizeof(unsigned long),
705 .align
= sizeof(unsigned long),
710 .core_note_type
= NT_PRFPREG
,
712 .size
= sizeof(elf_fpreg_t
),
713 .align
= sizeof(elf_fpreg_t
),
719 static const struct user_regset_view user_mips64_view
= {
721 .e_machine
= ELF_ARCH
,
722 .ei_osabi
= ELF_OSABI
,
723 .regsets
= mips64_regsets
,
724 .n
= ARRAY_SIZE(mips64_regsets
),
727 #ifdef CONFIG_MIPS32_N32
729 static const struct user_regset_view user_mipsn32_view
= {
731 .e_flags
= EF_MIPS_ABI2
,
732 .e_machine
= ELF_ARCH
,
733 .ei_osabi
= ELF_OSABI
,
734 .regsets
= mips64_regsets
,
735 .n
= ARRAY_SIZE(mips64_regsets
),
738 #endif /* CONFIG_MIPS32_N32 */
740 #endif /* CONFIG_64BIT */
742 const struct user_regset_view
*task_user_regset_view(struct task_struct
*task
)
745 return &user_mips_view
;
747 #ifdef CONFIG_MIPS32_O32
748 if (test_tsk_thread_flag(task
, TIF_32BIT_REGS
))
749 return &user_mips_view
;
751 #ifdef CONFIG_MIPS32_N32
752 if (test_tsk_thread_flag(task
, TIF_32BIT_ADDR
))
753 return &user_mipsn32_view
;
755 return &user_mips64_view
;
759 long arch_ptrace(struct task_struct
*child
, long request
,
760 unsigned long addr
, unsigned long data
)
763 void __user
*addrp
= (void __user
*) addr
;
764 void __user
*datavp
= (void __user
*) data
;
765 unsigned long __user
*datalp
= (void __user
*) data
;
768 /* when I and D space are separate, these will need to be fixed. */
769 case PTRACE_PEEKTEXT
: /* read word at location addr. */
770 case PTRACE_PEEKDATA
:
771 ret
= generic_ptrace_peekdata(child
, addr
, data
);
774 /* Read the word at location addr in the USER area. */
775 case PTRACE_PEEKUSR
: {
776 struct pt_regs
*regs
;
778 unsigned long tmp
= 0;
780 regs
= task_pt_regs(child
);
781 ret
= 0; /* Default return value. */
785 tmp
= regs
->regs
[addr
];
787 case FPR_BASE
... FPR_BASE
+ 31:
788 if (!tsk_used_math(child
)) {
789 /* FP not yet used */
793 fregs
= get_fpu_regs(child
);
796 if (test_thread_flag(TIF_32BIT_FPREGS
)) {
798 * The odd registers are actually the high
799 * order bits of the values stored in the even
800 * registers - unless we're using r2k_switch.S.
802 tmp
= get_fpr32(&fregs
[(addr
& ~1) - FPR_BASE
],
807 tmp
= get_fpr32(&fregs
[addr
- FPR_BASE
], 0);
813 tmp
= regs
->cp0_cause
;
816 tmp
= regs
->cp0_badvaddr
;
824 #ifdef CONFIG_CPU_HAS_SMARTMIPS
830 tmp
= child
->thread
.fpu
.fcr31
;
833 /* implementation / version register */
834 tmp
= boot_cpu_data
.fpu_id
;
836 case DSP_BASE
... DSP_BASE
+ 5: {
844 dregs
= __get_dsp_regs(child
);
845 tmp
= (unsigned long) (dregs
[addr
- DSP_BASE
]);
854 tmp
= child
->thread
.dsp
.dspcontrol
;
861 ret
= put_user(tmp
, datalp
);
865 /* when I and D space are separate, this will have to be fixed. */
866 case PTRACE_POKETEXT
: /* write the word at location addr. */
867 case PTRACE_POKEDATA
:
868 ret
= generic_ptrace_pokedata(child
, addr
, data
);
871 case PTRACE_POKEUSR
: {
872 struct pt_regs
*regs
;
874 regs
= task_pt_regs(child
);
878 regs
->regs
[addr
] = data
;
879 /* System call number may have been changed */
881 mips_syscall_update_nr(child
, regs
);
882 else if (addr
== 4 &&
883 mips_syscall_is_indirect(child
, regs
))
884 mips_syscall_update_nr(child
, regs
);
886 case FPR_BASE
... FPR_BASE
+ 31: {
887 union fpureg
*fregs
= get_fpu_regs(child
);
891 if (test_thread_flag(TIF_32BIT_FPREGS
)) {
893 * The odd registers are actually the high
894 * order bits of the values stored in the even
895 * registers - unless we're using r2k_switch.S.
897 set_fpr32(&fregs
[(addr
& ~1) - FPR_BASE
],
902 set_fpr64(&fregs
[addr
- FPR_BASE
], 0, data
);
906 regs
->cp0_epc
= data
;
914 #ifdef CONFIG_CPU_HAS_SMARTMIPS
921 ptrace_setfcr31(child
, data
);
923 case DSP_BASE
... DSP_BASE
+ 5: {
931 dregs
= __get_dsp_regs(child
);
932 dregs
[addr
- DSP_BASE
] = data
;
940 child
->thread
.dsp
.dspcontrol
= data
;
943 /* The rest are not allowed. */
951 ret
= ptrace_getregs(child
, datavp
);
955 ret
= ptrace_setregs(child
, datavp
);
958 case PTRACE_GETFPREGS
:
959 ret
= ptrace_getfpregs(child
, datavp
);
962 case PTRACE_SETFPREGS
:
963 ret
= ptrace_setfpregs(child
, datavp
);
966 case PTRACE_GET_THREAD_AREA
:
967 ret
= put_user(task_thread_info(child
)->tp_value
, datalp
);
970 case PTRACE_GET_WATCH_REGS
:
971 ret
= ptrace_get_watch_regs(child
, addrp
);
974 case PTRACE_SET_WATCH_REGS
:
975 ret
= ptrace_set_watch_regs(child
, addrp
);
979 ret
= ptrace_request(child
, request
, addr
, data
);
987 * Notification of system call entry/exit
988 * - triggered by current->work.syscall_trace
990 asmlinkage
long syscall_trace_enter(struct pt_regs
*regs
, long syscall
)
994 current_thread_info()->syscall
= syscall
;
996 if (test_thread_flag(TIF_SYSCALL_TRACE
)) {
997 if (tracehook_report_syscall_entry(regs
))
999 syscall
= current_thread_info()->syscall
;
1002 #ifdef CONFIG_SECCOMP
1003 if (unlikely(test_thread_flag(TIF_SECCOMP
))) {
1005 struct seccomp_data sd
;
1006 unsigned long args
[6];
1009 sd
.arch
= syscall_get_arch();
1010 syscall_get_arguments(current
, regs
, 0, 6, args
);
1011 for (i
= 0; i
< 6; i
++)
1012 sd
.args
[i
] = args
[i
];
1013 sd
.instruction_pointer
= KSTK_EIP(current
);
1015 ret
= __secure_computing(&sd
);
1018 syscall
= current_thread_info()->syscall
;
1022 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT
)))
1023 trace_sys_enter(regs
, regs
->regs
[2]);
1025 audit_syscall_entry(syscall
, regs
->regs
[4], regs
->regs
[5],
1026 regs
->regs
[6], regs
->regs
[7]);
1029 * Negative syscall numbers are mistaken for rejected syscalls, but
1030 * won't have had the return value set appropriately, so we do so now.
1033 syscall_set_return_value(current
, regs
, -ENOSYS
, 0);
1038 * Notification of system call entry/exit
1039 * - triggered by current->work.syscall_trace
1041 asmlinkage
void syscall_trace_leave(struct pt_regs
*regs
)
1044 * We may come here right after calling schedule_user()
1045 * or do_notify_resume(), in which case we can be in RCU
1050 audit_syscall_exit(regs
);
1052 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT
)))
1053 trace_sys_exit(regs
, regs_return_value(regs
));
1055 if (test_thread_flag(TIF_SYSCALL_TRACE
))
1056 tracehook_report_syscall_exit(regs
, 0);