2 * arch/s390/kernel/ptrace.c
5 * Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
7 * Martin Schwidefsky (schwidefsky@de.ibm.com)
9 * Based on PowerPC version
10 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
12 * Derived from "arch/m68k/kernel/ptrace.c"
13 * Copyright (C) 1994 by Hamish Macdonald
14 * Taken from linux/kernel/ptrace.c and modified for M680x0.
15 * linux/kernel/ptrace.c is by Ross Biro 1/23/92, edited by Linus Torvalds
17 * Modified by Cort Dougan (cort@cs.nmt.edu)
20 * This file is subject to the terms and conditions of the GNU General
21 * Public License. See the file README.legal in the main directory of
22 * this archive for more details.
25 #include <linux/kernel.h>
26 #include <linux/sched.h>
28 #include <linux/smp.h>
29 #include <linux/smp_lock.h>
30 #include <linux/errno.h>
31 #include <linux/ptrace.h>
32 #include <linux/user.h>
33 #include <linux/security.h>
34 #include <linux/audit.h>
35 #include <linux/signal.h>
36 #include <linux/elf.h>
37 #include <linux/regset.h>
38 #include <linux/tracehook.h>
39 #include <linux/seccomp.h>
40 #include <trace/syscall.h>
41 #include <asm/compat.h>
42 #include <asm/segment.h>
44 #include <asm/pgtable.h>
45 #include <asm/pgalloc.h>
46 #include <asm/system.h>
47 #include <asm/uaccess.h>
48 #include <asm/unistd.h>
52 #include "compat_ptrace.h"
61 FixPerRegisters(struct task_struct
*task
)
66 regs
= task_pt_regs(task
);
67 per_info
= (per_struct
*) &task
->thread
.per_info
;
68 per_info
->control_regs
.bits
.em_instruction_fetch
=
69 per_info
->single_step
| per_info
->instruction_fetch
;
71 if (per_info
->single_step
) {
72 per_info
->control_regs
.bits
.starting_addr
= 0;
75 per_info
->control_regs
.bits
.ending_addr
= 0x7fffffffUL
;
78 per_info
->control_regs
.bits
.ending_addr
= PSW_ADDR_INSN
;
80 per_info
->control_regs
.bits
.starting_addr
=
81 per_info
->starting_addr
;
82 per_info
->control_regs
.bits
.ending_addr
=
83 per_info
->ending_addr
;
86 * if any of the control reg tracing bits are on
87 * we switch on per in the psw
89 if (per_info
->control_regs
.words
.cr
[0] & PER_EM_MASK
)
90 regs
->psw
.mask
|= PSW_MASK_PER
;
92 regs
->psw
.mask
&= ~PSW_MASK_PER
;
94 if (per_info
->control_regs
.bits
.em_storage_alteration
)
95 per_info
->control_regs
.bits
.storage_alt_space_ctl
= 1;
97 per_info
->control_regs
.bits
.storage_alt_space_ctl
= 0;
100 void user_enable_single_step(struct task_struct
*task
)
102 task
->thread
.per_info
.single_step
= 1;
103 FixPerRegisters(task
);
106 void user_disable_single_step(struct task_struct
*task
)
108 task
->thread
.per_info
.single_step
= 0;
109 FixPerRegisters(task
);
113 * Called by kernel/ptrace.c when detaching..
115 * Make sure single step bits etc are not set.
118 ptrace_disable(struct task_struct
*child
)
120 /* make sure the single step bit is not set. */
121 user_disable_single_step(child
);
125 # define __ADDR_MASK 3
127 # define __ADDR_MASK 7
131 * Read the word at offset addr from the user area of a process. The
132 * trouble here is that the information is littered over different
133 * locations. The process registers are found on the kernel stack,
134 * the floating point stuff and the trace settings are stored in
135 * the task structure. In addition the different structures in
136 * struct user contain pad bytes that should be read as zeroes.
139 static unsigned long __peek_user(struct task_struct
*child
, addr_t addr
)
141 struct user
*dummy
= NULL
;
144 if (addr
< (addr_t
) &dummy
->regs
.acrs
) {
146 * psw and gprs are stored on the stack
148 tmp
= *(addr_t
*)((addr_t
) &task_pt_regs(child
)->psw
+ addr
);
149 if (addr
== (addr_t
) &dummy
->regs
.psw
.mask
)
150 /* Remove per bit from user psw. */
151 tmp
&= ~PSW_MASK_PER
;
153 } else if (addr
< (addr_t
) &dummy
->regs
.orig_gpr2
) {
155 * access registers are stored in the thread structure
157 offset
= addr
- (addr_t
) &dummy
->regs
.acrs
;
160 * Very special case: old & broken 64 bit gdb reading
161 * from acrs[15]. Result is a 64 bit value. Read the
162 * 32 bit acrs[15] value and shift it by 32. Sick...
164 if (addr
== (addr_t
) &dummy
->regs
.acrs
[15])
165 tmp
= ((unsigned long) child
->thread
.acrs
[15]) << 32;
168 tmp
= *(addr_t
*)((addr_t
) &child
->thread
.acrs
+ offset
);
170 } else if (addr
== (addr_t
) &dummy
->regs
.orig_gpr2
) {
172 * orig_gpr2 is stored on the kernel stack
174 tmp
= (addr_t
) task_pt_regs(child
)->orig_gpr2
;
176 } else if (addr
< (addr_t
) &dummy
->regs
.fp_regs
) {
178 * prevent reads of padding hole between
179 * orig_gpr2 and fp_regs on s390.
183 } else if (addr
< (addr_t
) (&dummy
->regs
.fp_regs
+ 1)) {
185 * floating point regs. are stored in the thread structure
187 offset
= addr
- (addr_t
) &dummy
->regs
.fp_regs
;
188 tmp
= *(addr_t
*)((addr_t
) &child
->thread
.fp_regs
+ offset
);
189 if (addr
== (addr_t
) &dummy
->regs
.fp_regs
.fpc
)
190 tmp
&= (unsigned long) FPC_VALID_MASK
191 << (BITS_PER_LONG
- 32);
193 } else if (addr
< (addr_t
) (&dummy
->regs
.per_info
+ 1)) {
195 * per_info is found in the thread structure
197 offset
= addr
- (addr_t
) &dummy
->regs
.per_info
;
198 tmp
= *(addr_t
*)((addr_t
) &child
->thread
.per_info
+ offset
);
207 peek_user(struct task_struct
*child
, addr_t addr
, addr_t data
)
212 * Stupid gdb peeks/pokes the access registers in 64 bit with
213 * an alignment of 4. Programmers from hell...
217 if (addr
>= (addr_t
) &((struct user
*) NULL
)->regs
.acrs
&&
218 addr
< (addr_t
) &((struct user
*) NULL
)->regs
.orig_gpr2
)
221 if ((addr
& mask
) || addr
> sizeof(struct user
) - __ADDR_MASK
)
224 tmp
= __peek_user(child
, addr
);
225 return put_user(tmp
, (addr_t __user
*) data
);
229 * Write a word to the user area of a process at location addr. This
230 * operation does have an additional problem compared to peek_user.
231 * Stores to the program status word and on the floating point
232 * control register needs to get checked for validity.
234 static int __poke_user(struct task_struct
*child
, addr_t addr
, addr_t data
)
236 struct user
*dummy
= NULL
;
239 if (addr
< (addr_t
) &dummy
->regs
.acrs
) {
241 * psw and gprs are stored on the stack
243 if (addr
== (addr_t
) &dummy
->regs
.psw
.mask
&&
245 data
!= PSW_MASK_MERGE(psw_user32_bits
, data
) &&
247 data
!= PSW_MASK_MERGE(psw_user_bits
, data
))
248 /* Invalid psw mask. */
251 if (addr
== (addr_t
) &dummy
->regs
.psw
.addr
)
252 /* I'd like to reject addresses without the
253 high order bit but older gdb's rely on it */
254 data
|= PSW_ADDR_AMODE
;
256 *(addr_t
*)((addr_t
) &task_pt_regs(child
)->psw
+ addr
) = data
;
258 } else if (addr
< (addr_t
) (&dummy
->regs
.orig_gpr2
)) {
260 * access registers are stored in the thread structure
262 offset
= addr
- (addr_t
) &dummy
->regs
.acrs
;
265 * Very special case: old & broken 64 bit gdb writing
266 * to acrs[15] with a 64 bit value. Ignore the lower
267 * half of the value and write the upper 32 bit to
270 if (addr
== (addr_t
) &dummy
->regs
.acrs
[15])
271 child
->thread
.acrs
[15] = (unsigned int) (data
>> 32);
274 *(addr_t
*)((addr_t
) &child
->thread
.acrs
+ offset
) = data
;
276 } else if (addr
== (addr_t
) &dummy
->regs
.orig_gpr2
) {
278 * orig_gpr2 is stored on the kernel stack
280 task_pt_regs(child
)->orig_gpr2
= data
;
282 } else if (addr
< (addr_t
) &dummy
->regs
.fp_regs
) {
284 * prevent writes of padding hole between
285 * orig_gpr2 and fp_regs on s390.
289 } else if (addr
< (addr_t
) (&dummy
->regs
.fp_regs
+ 1)) {
291 * floating point regs. are stored in the thread structure
293 if (addr
== (addr_t
) &dummy
->regs
.fp_regs
.fpc
&&
294 (data
& ~((unsigned long) FPC_VALID_MASK
295 << (BITS_PER_LONG
- 32))) != 0)
297 offset
= addr
- (addr_t
) &dummy
->regs
.fp_regs
;
298 *(addr_t
*)((addr_t
) &child
->thread
.fp_regs
+ offset
) = data
;
300 } else if (addr
< (addr_t
) (&dummy
->regs
.per_info
+ 1)) {
302 * per_info is found in the thread structure
304 offset
= addr
- (addr_t
) &dummy
->regs
.per_info
;
305 *(addr_t
*)((addr_t
) &child
->thread
.per_info
+ offset
) = data
;
309 FixPerRegisters(child
);
314 poke_user(struct task_struct
*child
, addr_t addr
, addr_t data
)
319 * Stupid gdb peeks/pokes the access registers in 64 bit with
320 * an alignment of 4. Programmers from hell indeed...
324 if (addr
>= (addr_t
) &((struct user
*) NULL
)->regs
.acrs
&&
325 addr
< (addr_t
) &((struct user
*) NULL
)->regs
.orig_gpr2
)
328 if ((addr
& mask
) || addr
> sizeof(struct user
) - __ADDR_MASK
)
331 return __poke_user(child
, addr
, data
);
334 long arch_ptrace(struct task_struct
*child
, long request
, long addr
, long data
)
340 case PTRACE_PEEKTEXT
:
341 case PTRACE_PEEKDATA
:
342 /* Remove high order bit from address (only for 31 bit). */
343 addr
&= PSW_ADDR_INSN
;
344 /* read word at location addr. */
345 return generic_ptrace_peekdata(child
, addr
, data
);
348 /* read the word at location addr in the USER area. */
349 return peek_user(child
, addr
, data
);
351 case PTRACE_POKETEXT
:
352 case PTRACE_POKEDATA
:
353 /* Remove high order bit from address (only for 31 bit). */
354 addr
&= PSW_ADDR_INSN
;
355 /* write the word at location addr. */
356 return generic_ptrace_pokedata(child
, addr
, data
);
359 /* write the word at location addr in the USER area */
360 return poke_user(child
, addr
, data
);
362 case PTRACE_PEEKUSR_AREA
:
363 case PTRACE_POKEUSR_AREA
:
364 if (copy_from_user(&parea
, (void __force __user
*) addr
,
367 addr
= parea
.kernel_addr
;
368 data
= parea
.process_addr
;
370 while (copied
< parea
.len
) {
371 if (request
== PTRACE_PEEKUSR_AREA
)
372 ret
= peek_user(child
, addr
, data
);
376 (addr_t __force __user
*) data
))
378 ret
= poke_user(child
, addr
, utmp
);
382 addr
+= sizeof(unsigned long);
383 data
+= sizeof(unsigned long);
384 copied
+= sizeof(unsigned long);
388 return ptrace_request(child
, request
, addr
, data
);
393 * Now the fun part starts... a 31 bit program running in the
394 * 31 bit emulation tracing another program. PTRACE_PEEKTEXT,
395 * PTRACE_PEEKDATA, PTRACE_POKETEXT and PTRACE_POKEDATA are easy
396 * to handle, the difference to the 64 bit versions of the requests
397 * is that the access is done in multiples of 4 byte instead of
398 * 8 bytes (sizeof(unsigned long) on 31/64 bit).
399 * The ugly part are PTRACE_PEEKUSR, PTRACE_PEEKUSR_AREA,
400 * PTRACE_POKEUSR and PTRACE_POKEUSR_AREA. If the traced program
401 * is a 31 bit program too, the content of struct user can be
402 * emulated. A 31 bit program peeking into the struct user of
403 * a 64 bit program is a no-no.
407 * Same as peek_user but for a 31 bit program.
409 static u32
__peek_user_compat(struct task_struct
*child
, addr_t addr
)
411 struct user32
*dummy32
= NULL
;
412 per_struct32
*dummy_per32
= NULL
;
416 if (addr
< (addr_t
) &dummy32
->regs
.acrs
) {
418 * psw and gprs are stored on the stack
420 if (addr
== (addr_t
) &dummy32
->regs
.psw
.mask
) {
421 /* Fake a 31 bit psw mask. */
422 tmp
= (__u32
)(task_pt_regs(child
)->psw
.mask
>> 32);
423 tmp
= PSW32_MASK_MERGE(psw32_user_bits
, tmp
);
424 } else if (addr
== (addr_t
) &dummy32
->regs
.psw
.addr
) {
425 /* Fake a 31 bit psw address. */
426 tmp
= (__u32
) task_pt_regs(child
)->psw
.addr
|
430 tmp
= *(__u32
*)((addr_t
) &task_pt_regs(child
)->psw
+
433 } else if (addr
< (addr_t
) (&dummy32
->regs
.orig_gpr2
)) {
435 * access registers are stored in the thread structure
437 offset
= addr
- (addr_t
) &dummy32
->regs
.acrs
;
438 tmp
= *(__u32
*)((addr_t
) &child
->thread
.acrs
+ offset
);
440 } else if (addr
== (addr_t
) (&dummy32
->regs
.orig_gpr2
)) {
442 * orig_gpr2 is stored on the kernel stack
444 tmp
= *(__u32
*)((addr_t
) &task_pt_regs(child
)->orig_gpr2
+ 4);
446 } else if (addr
< (addr_t
) &dummy32
->regs
.fp_regs
) {
448 * prevent reads of padding hole between
449 * orig_gpr2 and fp_regs on s390.
453 } else if (addr
< (addr_t
) (&dummy32
->regs
.fp_regs
+ 1)) {
455 * floating point regs. are stored in the thread structure
457 offset
= addr
- (addr_t
) &dummy32
->regs
.fp_regs
;
458 tmp
= *(__u32
*)((addr_t
) &child
->thread
.fp_regs
+ offset
);
460 } else if (addr
< (addr_t
) (&dummy32
->regs
.per_info
+ 1)) {
462 * per_info is found in the thread structure
464 offset
= addr
- (addr_t
) &dummy32
->regs
.per_info
;
465 /* This is magic. See per_struct and per_struct32. */
466 if ((offset
>= (addr_t
) &dummy_per32
->control_regs
&&
467 offset
< (addr_t
) (&dummy_per32
->control_regs
+ 1)) ||
468 (offset
>= (addr_t
) &dummy_per32
->starting_addr
&&
469 offset
<= (addr_t
) &dummy_per32
->ending_addr
) ||
470 offset
== (addr_t
) &dummy_per32
->lowcore
.words
.address
)
471 offset
= offset
*2 + 4;
474 tmp
= *(__u32
*)((addr_t
) &child
->thread
.per_info
+ offset
);
482 static int peek_user_compat(struct task_struct
*child
,
483 addr_t addr
, addr_t data
)
487 if (!is_compat_task() || (addr
& 3) || addr
> sizeof(struct user
) - 3)
490 tmp
= __peek_user_compat(child
, addr
);
491 return put_user(tmp
, (__u32 __user
*) data
);
495 * Same as poke_user but for a 31 bit program.
497 static int __poke_user_compat(struct task_struct
*child
,
498 addr_t addr
, addr_t data
)
500 struct user32
*dummy32
= NULL
;
501 per_struct32
*dummy_per32
= NULL
;
502 __u32 tmp
= (__u32
) data
;
505 if (addr
< (addr_t
) &dummy32
->regs
.acrs
) {
507 * psw, gprs, acrs and orig_gpr2 are stored on the stack
509 if (addr
== (addr_t
) &dummy32
->regs
.psw
.mask
) {
510 /* Build a 64 bit psw mask from 31 bit mask. */
511 if (tmp
!= PSW32_MASK_MERGE(psw32_user_bits
, tmp
))
512 /* Invalid psw mask. */
514 task_pt_regs(child
)->psw
.mask
=
515 PSW_MASK_MERGE(psw_user32_bits
, (__u64
) tmp
<< 32);
516 } else if (addr
== (addr_t
) &dummy32
->regs
.psw
.addr
) {
517 /* Build a 64 bit psw address from 31 bit address. */
518 task_pt_regs(child
)->psw
.addr
=
519 (__u64
) tmp
& PSW32_ADDR_INSN
;
522 *(__u32
*)((addr_t
) &task_pt_regs(child
)->psw
525 } else if (addr
< (addr_t
) (&dummy32
->regs
.orig_gpr2
)) {
527 * access registers are stored in the thread structure
529 offset
= addr
- (addr_t
) &dummy32
->regs
.acrs
;
530 *(__u32
*)((addr_t
) &child
->thread
.acrs
+ offset
) = tmp
;
532 } else if (addr
== (addr_t
) (&dummy32
->regs
.orig_gpr2
)) {
534 * orig_gpr2 is stored on the kernel stack
536 *(__u32
*)((addr_t
) &task_pt_regs(child
)->orig_gpr2
+ 4) = tmp
;
538 } else if (addr
< (addr_t
) &dummy32
->regs
.fp_regs
) {
540 * prevent writess of padding hole between
541 * orig_gpr2 and fp_regs on s390.
545 } else if (addr
< (addr_t
) (&dummy32
->regs
.fp_regs
+ 1)) {
547 * floating point regs. are stored in the thread structure
549 if (addr
== (addr_t
) &dummy32
->regs
.fp_regs
.fpc
&&
550 (tmp
& ~FPC_VALID_MASK
) != 0)
551 /* Invalid floating point control. */
553 offset
= addr
- (addr_t
) &dummy32
->regs
.fp_regs
;
554 *(__u32
*)((addr_t
) &child
->thread
.fp_regs
+ offset
) = tmp
;
556 } else if (addr
< (addr_t
) (&dummy32
->regs
.per_info
+ 1)) {
558 * per_info is found in the thread structure.
560 offset
= addr
- (addr_t
) &dummy32
->regs
.per_info
;
562 * This is magic. See per_struct and per_struct32.
563 * By incident the offsets in per_struct are exactly
564 * twice the offsets in per_struct32 for all fields.
565 * The 8 byte fields need special handling though,
566 * because the second half (bytes 4-7) is needed and
567 * not the first half.
569 if ((offset
>= (addr_t
) &dummy_per32
->control_regs
&&
570 offset
< (addr_t
) (&dummy_per32
->control_regs
+ 1)) ||
571 (offset
>= (addr_t
) &dummy_per32
->starting_addr
&&
572 offset
<= (addr_t
) &dummy_per32
->ending_addr
) ||
573 offset
== (addr_t
) &dummy_per32
->lowcore
.words
.address
)
574 offset
= offset
*2 + 4;
577 *(__u32
*)((addr_t
) &child
->thread
.per_info
+ offset
) = tmp
;
581 FixPerRegisters(child
);
585 static int poke_user_compat(struct task_struct
*child
,
586 addr_t addr
, addr_t data
)
588 if (!is_compat_task() || (addr
& 3) || addr
> sizeof(struct user32
) - 3)
591 return __poke_user_compat(child
, addr
, data
);
594 long compat_arch_ptrace(struct task_struct
*child
, compat_long_t request
,
595 compat_ulong_t caddr
, compat_ulong_t cdata
)
597 unsigned long addr
= caddr
;
598 unsigned long data
= cdata
;
599 ptrace_area_emu31 parea
;
604 /* read the word at location addr in the USER area. */
605 return peek_user_compat(child
, addr
, data
);
608 /* write the word at location addr in the USER area */
609 return poke_user_compat(child
, addr
, data
);
611 case PTRACE_PEEKUSR_AREA
:
612 case PTRACE_POKEUSR_AREA
:
613 if (copy_from_user(&parea
, (void __force __user
*) addr
,
616 addr
= parea
.kernel_addr
;
617 data
= parea
.process_addr
;
619 while (copied
< parea
.len
) {
620 if (request
== PTRACE_PEEKUSR_AREA
)
621 ret
= peek_user_compat(child
, addr
, data
);
625 (__u32 __force __user
*) data
))
627 ret
= poke_user_compat(child
, addr
, utmp
);
631 addr
+= sizeof(unsigned int);
632 data
+= sizeof(unsigned int);
633 copied
+= sizeof(unsigned int);
637 return compat_ptrace_request(child
, request
, addr
, data
);
641 asmlinkage
long do_syscall_trace_enter(struct pt_regs
*regs
)
645 /* Do the secure computing check first. */
646 secure_computing(regs
->gprs
[2]);
649 * The sysc_tracesys code in entry.S stored the system
650 * call number to gprs[2].
653 if (test_thread_flag(TIF_SYSCALL_TRACE
) &&
654 (tracehook_report_syscall_entry(regs
) ||
655 regs
->gprs
[2] >= NR_syscalls
)) {
657 * Tracing decided this syscall should not happen or the
658 * debugger stored an invalid system call number. Skip
659 * the system call and the system call restart handling.
665 if (unlikely(test_thread_flag(TIF_SYSCALL_FTRACE
)))
666 ftrace_syscall_enter(regs
);
668 if (unlikely(current
->audit_context
))
669 audit_syscall_entry(is_compat_task() ?
670 AUDIT_ARCH_S390
: AUDIT_ARCH_S390X
,
671 regs
->gprs
[2], regs
->orig_gpr2
,
672 regs
->gprs
[3], regs
->gprs
[4],
677 asmlinkage
void do_syscall_trace_exit(struct pt_regs
*regs
)
679 if (unlikely(current
->audit_context
))
680 audit_syscall_exit(AUDITSC_RESULT(regs
->gprs
[2]),
683 if (unlikely(test_thread_flag(TIF_SYSCALL_FTRACE
)))
684 ftrace_syscall_exit(regs
);
686 if (test_thread_flag(TIF_SYSCALL_TRACE
))
687 tracehook_report_syscall_exit(regs
, 0);
691 * user_regset definitions.
694 static int s390_regs_get(struct task_struct
*target
,
695 const struct user_regset
*regset
,
696 unsigned int pos
, unsigned int count
,
697 void *kbuf
, void __user
*ubuf
)
699 if (target
== current
)
700 save_access_regs(target
->thread
.acrs
);
703 unsigned long *k
= kbuf
;
705 *k
++ = __peek_user(target
, pos
);
710 unsigned long __user
*u
= ubuf
;
712 if (__put_user(__peek_user(target
, pos
), u
++))
721 static int s390_regs_set(struct task_struct
*target
,
722 const struct user_regset
*regset
,
723 unsigned int pos
, unsigned int count
,
724 const void *kbuf
, const void __user
*ubuf
)
728 if (target
== current
)
729 save_access_regs(target
->thread
.acrs
);
732 const unsigned long *k
= kbuf
;
733 while (count
> 0 && !rc
) {
734 rc
= __poke_user(target
, pos
, *k
++);
739 const unsigned long __user
*u
= ubuf
;
740 while (count
> 0 && !rc
) {
742 rc
= __get_user(word
, u
++);
745 rc
= __poke_user(target
, pos
, word
);
751 if (rc
== 0 && target
== current
)
752 restore_access_regs(target
->thread
.acrs
);
757 static int s390_fpregs_get(struct task_struct
*target
,
758 const struct user_regset
*regset
, unsigned int pos
,
759 unsigned int count
, void *kbuf
, void __user
*ubuf
)
761 if (target
== current
)
762 save_fp_regs(&target
->thread
.fp_regs
);
764 return user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
765 &target
->thread
.fp_regs
, 0, -1);
768 static int s390_fpregs_set(struct task_struct
*target
,
769 const struct user_regset
*regset
, unsigned int pos
,
770 unsigned int count
, const void *kbuf
,
771 const void __user
*ubuf
)
775 if (target
== current
)
776 save_fp_regs(&target
->thread
.fp_regs
);
778 /* If setting FPC, must validate it first. */
779 if (count
> 0 && pos
< offsetof(s390_fp_regs
, fprs
)) {
780 u32 fpc
[2] = { target
->thread
.fp_regs
.fpc
, 0 };
781 rc
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
, &fpc
,
782 0, offsetof(s390_fp_regs
, fprs
));
785 if ((fpc
[0] & ~FPC_VALID_MASK
) != 0 || fpc
[1] != 0)
787 target
->thread
.fp_regs
.fpc
= fpc
[0];
790 if (rc
== 0 && count
> 0)
791 rc
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
792 target
->thread
.fp_regs
.fprs
,
793 offsetof(s390_fp_regs
, fprs
), -1);
795 if (rc
== 0 && target
== current
)
796 restore_fp_regs(&target
->thread
.fp_regs
);
801 static const struct user_regset s390_regsets
[] = {
803 .core_note_type
= NT_PRSTATUS
,
804 .n
= sizeof(s390_regs
) / sizeof(long),
805 .size
= sizeof(long),
806 .align
= sizeof(long),
807 .get
= s390_regs_get
,
808 .set
= s390_regs_set
,
811 .core_note_type
= NT_PRFPREG
,
812 .n
= sizeof(s390_fp_regs
) / sizeof(long),
813 .size
= sizeof(long),
814 .align
= sizeof(long),
815 .get
= s390_fpregs_get
,
816 .set
= s390_fpregs_set
,
820 static const struct user_regset_view user_s390_view
= {
822 .e_machine
= EM_S390
,
823 .regsets
= s390_regsets
,
824 .n
= ARRAY_SIZE(s390_regsets
)
828 static int s390_compat_regs_get(struct task_struct
*target
,
829 const struct user_regset
*regset
,
830 unsigned int pos
, unsigned int count
,
831 void *kbuf
, void __user
*ubuf
)
833 if (target
== current
)
834 save_access_regs(target
->thread
.acrs
);
837 compat_ulong_t
*k
= kbuf
;
839 *k
++ = __peek_user_compat(target
, pos
);
844 compat_ulong_t __user
*u
= ubuf
;
846 if (__put_user(__peek_user_compat(target
, pos
), u
++))
855 static int s390_compat_regs_set(struct task_struct
*target
,
856 const struct user_regset
*regset
,
857 unsigned int pos
, unsigned int count
,
858 const void *kbuf
, const void __user
*ubuf
)
862 if (target
== current
)
863 save_access_regs(target
->thread
.acrs
);
866 const compat_ulong_t
*k
= kbuf
;
867 while (count
> 0 && !rc
) {
868 rc
= __poke_user_compat(target
, pos
, *k
++);
873 const compat_ulong_t __user
*u
= ubuf
;
874 while (count
> 0 && !rc
) {
876 rc
= __get_user(word
, u
++);
879 rc
= __poke_user_compat(target
, pos
, word
);
885 if (rc
== 0 && target
== current
)
886 restore_access_regs(target
->thread
.acrs
);
891 static const struct user_regset s390_compat_regsets
[] = {
893 .core_note_type
= NT_PRSTATUS
,
894 .n
= sizeof(s390_compat_regs
) / sizeof(compat_long_t
),
895 .size
= sizeof(compat_long_t
),
896 .align
= sizeof(compat_long_t
),
897 .get
= s390_compat_regs_get
,
898 .set
= s390_compat_regs_set
,
901 .core_note_type
= NT_PRFPREG
,
902 .n
= sizeof(s390_fp_regs
) / sizeof(compat_long_t
),
903 .size
= sizeof(compat_long_t
),
904 .align
= sizeof(compat_long_t
),
905 .get
= s390_fpregs_get
,
906 .set
= s390_fpregs_set
,
910 static const struct user_regset_view user_s390_compat_view
= {
912 .e_machine
= EM_S390
,
913 .regsets
= s390_compat_regsets
,
914 .n
= ARRAY_SIZE(s390_compat_regsets
)
918 const struct user_regset_view
*task_user_regset_view(struct task_struct
*task
)
921 if (test_tsk_thread_flag(task
, TIF_31BIT
))
922 return &user_s390_compat_view
;
924 return &user_s390_view
;