ptrace.c 39.7 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
M
Martin Schwidefsky 已提交
2
 *  Ptrace user space interface.
L
Linus Torvalds 已提交
3
 *
4
 *    Copyright IBM Corp. 1999, 2010
M
Martin Schwidefsky 已提交
5
 *    Author(s): Denis Joseph Barrow
L
Linus Torvalds 已提交
6 7 8 9 10 11 12 13 14 15 16 17
 *               Martin Schwidefsky (schwidefsky@de.ibm.com)
 */

#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/smp.h>
#include <linux/errno.h>
#include <linux/ptrace.h>
#include <linux/user.h>
#include <linux/security.h>
#include <linux/audit.h>
18
#include <linux/signal.h>
19 20
#include <linux/elf.h>
#include <linux/regset.h>
M
Martin Schwidefsky 已提交
21
#include <linux/tracehook.h>
22
#include <linux/seccomp.h>
23
#include <linux/compat.h>
24
#include <trace/syscall.h>
L
Linus Torvalds 已提交
25 26 27 28 29
#include <asm/segment.h>
#include <asm/page.h>
#include <asm/pgtable.h>
#include <asm/pgalloc.h>
#include <asm/uaccess.h>
30
#include <asm/unistd.h>
31
#include <asm/switch_to.h>
32
#include "entry.h"
L
Linus Torvalds 已提交
33

34
#ifdef CONFIG_COMPAT
L
Linus Torvalds 已提交
35 36 37
#include "compat_ptrace.h"
#endif

38 39
#define CREATE_TRACE_POINTS
#include <trace/events/syscalls.h>
40

41
void update_cr_regs(struct task_struct *task)
L
Linus Torvalds 已提交
42
{
M
Martin Schwidefsky 已提交
43 44
	struct pt_regs *regs = task_pt_regs(task);
	struct thread_struct *thread = &task->thread;
45
	struct per_regs old, new;
M
Martin Schwidefsky 已提交
46

47
	/* Take care of the enable/disable of transactional execution. */
48
	if (MACHINE_HAS_TE) {
49
		unsigned long cr, cr_new;
50

51
		__ctl_store(cr, 0, 0);
52 53 54 55
		/* Set or clear transaction execution TXC bit 8. */
		cr_new = cr | (1UL << 55);
		if (task->thread.per_flags & PER_FLAG_NO_TE)
			cr_new &= ~(1UL << 55);
56
		if (cr_new != cr)
57
			__ctl_load(cr_new, 0, 0);
58 59 60 61 62 63 64 65
		/* Set or clear transaction execution TDC bits 62 and 63. */
		__ctl_store(cr, 2, 2);
		cr_new = cr & ~3UL;
		if (task->thread.per_flags & PER_FLAG_TE_ABORT_RAND) {
			if (task->thread.per_flags & PER_FLAG_TE_ABORT_RAND_TEND)
				cr_new |= 1UL;
			else
				cr_new |= 2UL;
66
		}
67 68
		if (cr_new != cr)
			__ctl_load(cr_new, 2, 2);
69
	}
70 71 72 73 74 75
	/* Copy user specified PER registers */
	new.control = thread->per_user.control;
	new.start = thread->per_user.start;
	new.end = thread->per_user.end;

	/* merge TIF_SINGLE_STEP into user specified PER registers. */
76 77
	if (test_tsk_thread_flag(task, TIF_SINGLE_STEP) ||
	    test_tsk_thread_flag(task, TIF_UPROBE_SINGLESTEP)) {
78 79 80 81
		if (test_tsk_thread_flag(task, TIF_BLOCK_STEP))
			new.control |= PER_EVENT_BRANCH;
		else
			new.control |= PER_EVENT_IFETCH;
82 83
		new.control |= PER_CONTROL_SUSPENSION;
		new.control |= PER_EVENT_TRANSACTION_END;
84 85
		if (test_tsk_thread_flag(task, TIF_UPROBE_SINGLESTEP))
			new.control |= PER_EVENT_IFETCH;
86 87 88
		new.start = 0;
		new.end = PSW_ADDR_INSN;
	}
M
Martin Schwidefsky 已提交
89 90

	/* Take care of the PER enablement bit in the PSW. */
91
	if (!(new.control & PER_EVENT_MASK)) {
L
Linus Torvalds 已提交
92
		regs->psw.mask &= ~PSW_MASK_PER;
M
Martin Schwidefsky 已提交
93
		return;
94
	}
M
Martin Schwidefsky 已提交
95 96
	regs->psw.mask |= PSW_MASK_PER;
	__ctl_store(old, 9, 11);
97 98
	if (memcmp(&new, &old, sizeof(struct per_regs)) != 0)
		__ctl_load(new, 9, 11);
L
Linus Torvalds 已提交
99 100
}

R
Roland McGrath 已提交
101
void user_enable_single_step(struct task_struct *task)
L
Linus Torvalds 已提交
102
{
103
	clear_tsk_thread_flag(task, TIF_BLOCK_STEP);
M
Martin Schwidefsky 已提交
104
	set_tsk_thread_flag(task, TIF_SINGLE_STEP);
L
Linus Torvalds 已提交
105 106
}

R
Roland McGrath 已提交
107
void user_disable_single_step(struct task_struct *task)
L
Linus Torvalds 已提交
108
{
109
	clear_tsk_thread_flag(task, TIF_BLOCK_STEP);
M
Martin Schwidefsky 已提交
110
	clear_tsk_thread_flag(task, TIF_SINGLE_STEP);
L
Linus Torvalds 已提交
111 112
}

113 114 115 116 117 118
void user_enable_block_step(struct task_struct *task)
{
	set_tsk_thread_flag(task, TIF_SINGLE_STEP);
	set_tsk_thread_flag(task, TIF_BLOCK_STEP);
}

L
Linus Torvalds 已提交
119 120 121
/*
 * Called by kernel/ptrace.c when detaching..
 *
M
Martin Schwidefsky 已提交
122
 * Clear all debugging related fields.
L
Linus Torvalds 已提交
123
 */
M
Martin Schwidefsky 已提交
124
void ptrace_disable(struct task_struct *task)
L
Linus Torvalds 已提交
125
{
M
Martin Schwidefsky 已提交
126 127 128
	memset(&task->thread.per_user, 0, sizeof(task->thread.per_user));
	memset(&task->thread.per_event, 0, sizeof(task->thread.per_event));
	clear_tsk_thread_flag(task, TIF_SINGLE_STEP);
129
	clear_pt_regs_flag(task_pt_regs(task), PIF_PER_TRAP);
130
	task->thread.per_flags = 0;
L
Linus Torvalds 已提交
131 132
}

H
Heiko Carstens 已提交
133
#define __ADDR_MASK 7
L
Linus Torvalds 已提交
134

M
Martin Schwidefsky 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
static inline unsigned long __peek_user_per(struct task_struct *child,
					    addr_t addr)
{
	struct per_struct_kernel *dummy = NULL;

	if (addr == (addr_t) &dummy->cr9)
		/* Control bits of the active per set. */
		return test_thread_flag(TIF_SINGLE_STEP) ?
			PER_EVENT_IFETCH : child->thread.per_user.control;
	else if (addr == (addr_t) &dummy->cr10)
		/* Start address of the active per set. */
		return test_thread_flag(TIF_SINGLE_STEP) ?
			0 : child->thread.per_user.start;
	else if (addr == (addr_t) &dummy->cr11)
		/* End address of the active per set. */
		return test_thread_flag(TIF_SINGLE_STEP) ?
			PSW_ADDR_INSN : child->thread.per_user.end;
	else if (addr == (addr_t) &dummy->bits)
		/* Single-step bit. */
		return test_thread_flag(TIF_SINGLE_STEP) ?
			(1UL << (BITS_PER_LONG - 1)) : 0;
	else if (addr == (addr_t) &dummy->starting_addr)
		/* Start address of the user specified per set. */
		return child->thread.per_user.start;
	else if (addr == (addr_t) &dummy->ending_addr)
		/* End address of the user specified per set. */
		return child->thread.per_user.end;
	else if (addr == (addr_t) &dummy->perc_atmid)
		/* PER code, ATMID and AI of the last PER trap */
		return (unsigned long)
			child->thread.per_event.cause << (BITS_PER_LONG - 16);
	else if (addr == (addr_t) &dummy->address)
		/* Address of the last PER trap */
		return child->thread.per_event.address;
	else if (addr == (addr_t) &dummy->access_id)
		/* Access id of the last PER trap */
		return (unsigned long)
			child->thread.per_event.paid << (BITS_PER_LONG - 8);
	return 0;
}

L
Linus Torvalds 已提交
176 177 178 179 180 181 182 183 184
/*
 * Read the word at offset addr from the user area of a process. The
 * trouble here is that the information is littered over different
 * locations. The process registers are found on the kernel stack,
 * the floating point stuff and the trace settings are stored in
 * the task structure. In addition the different structures in
 * struct user contain pad bytes that should be read as zeroes.
 * Lovely...
 */
185
static unsigned long __peek_user(struct task_struct *child, addr_t addr)
L
Linus Torvalds 已提交
186 187
{
	struct user *dummy = NULL;
188
	addr_t offset, tmp;
L
Linus Torvalds 已提交
189 190 191 192 193

	if (addr < (addr_t) &dummy->regs.acrs) {
		/*
		 * psw and gprs are stored on the stack
		 */
A
Al Viro 已提交
194
		tmp = *(addr_t *)((addr_t) &task_pt_regs(child)->psw + addr);
195
		if (addr == (addr_t) &dummy->regs.psw.mask) {
196
			/* Return a clean psw mask. */
197 198 199
			tmp &= PSW_MASK_USER | PSW_MASK_RI;
			tmp |= PSW_USER_BITS;
		}
L
Linus Torvalds 已提交
200 201 202 203 204 205

	} else if (addr < (addr_t) &dummy->regs.orig_gpr2) {
		/*
		 * access registers are stored in the thread structure
		 */
		offset = addr - (addr_t) &dummy->regs.acrs;
206 207 208 209 210 211 212 213
		/*
		 * Very special case: old & broken 64 bit gdb reading
		 * from acrs[15]. Result is a 64 bit value. Read the
		 * 32 bit acrs[15] value and shift it by 32. Sick...
		 */
		if (addr == (addr_t) &dummy->regs.acrs[15])
			tmp = ((unsigned long) child->thread.acrs[15]) << 32;
		else
H
Heiko Carstens 已提交
214
			tmp = *(addr_t *)((addr_t) &child->thread.acrs + offset);
L
Linus Torvalds 已提交
215 216 217 218 219

	} else if (addr == (addr_t) &dummy->regs.orig_gpr2) {
		/*
		 * orig_gpr2 is stored on the kernel stack
		 */
A
Al Viro 已提交
220
		tmp = (addr_t) task_pt_regs(child)->orig_gpr2;
L
Linus Torvalds 已提交
221

222 223 224 225 226 227 228
	} else if (addr < (addr_t) &dummy->regs.fp_regs) {
		/*
		 * prevent reads of padding hole between
		 * orig_gpr2 and fp_regs on s390.
		 */
		tmp = 0;

229 230 231 232
	} else if (addr == (addr_t) &dummy->regs.fp_regs.fpc) {
		/*
		 * floating point control reg. is in the thread structure
		 */
233
		tmp = child->thread.fpu.fpc;
234 235
		tmp <<= BITS_PER_LONG - 32;

L
Linus Torvalds 已提交
236
	} else if (addr < (addr_t) (&dummy->regs.fp_regs + 1)) {
237
		/*
238 239
		 * floating point regs. are either in child->thread.fpu
		 * or the child->thread.fpu.vxrs array
L
Linus Torvalds 已提交
240
		 */
241
		offset = addr - (addr_t) &dummy->regs.fp_regs.fprs;
242
		if (MACHINE_HAS_VX)
243
			tmp = *(addr_t *)
244
			       ((addr_t) child->thread.fpu.vxrs + 2*offset);
245 246
		else
			tmp = *(addr_t *)
247
			       ((addr_t) child->thread.fpu.fprs + offset);
L
Linus Torvalds 已提交
248 249 250

	} else if (addr < (addr_t) (&dummy->regs.per_info + 1)) {
		/*
M
Martin Schwidefsky 已提交
251
		 * Handle access to the per_info structure.
L
Linus Torvalds 已提交
252
		 */
M
Martin Schwidefsky 已提交
253 254
		addr -= (addr_t) &dummy->regs.per_info;
		tmp = __peek_user_per(child, addr);
L
Linus Torvalds 已提交
255 256 257 258

	} else
		tmp = 0;

259
	return tmp;
L
Linus Torvalds 已提交
260 261 262
}

static int
263
peek_user(struct task_struct *child, addr_t addr, addr_t data)
L
Linus Torvalds 已提交
264
{
265
	addr_t tmp, mask;
L
Linus Torvalds 已提交
266 267 268

	/*
	 * Stupid gdb peeks/pokes the access registers in 64 bit with
269
	 * an alignment of 4. Programmers from hell...
L
Linus Torvalds 已提交
270
	 */
271
	mask = __ADDR_MASK;
272 273
	if (addr >= (addr_t) &((struct user *) NULL)->regs.acrs &&
	    addr < (addr_t) &((struct user *) NULL)->regs.orig_gpr2)
274 275
		mask = 3;
	if ((addr & mask) || addr > sizeof(struct user) - __ADDR_MASK)
L
Linus Torvalds 已提交
276 277
		return -EIO;

278 279 280 281
	tmp = __peek_user(child, addr);
	return put_user(tmp, (addr_t __user *) data);
}

M
Martin Schwidefsky 已提交
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
static inline void __poke_user_per(struct task_struct *child,
				   addr_t addr, addr_t data)
{
	struct per_struct_kernel *dummy = NULL;

	/*
	 * There are only three fields in the per_info struct that the
	 * debugger user can write to.
	 * 1) cr9: the debugger wants to set a new PER event mask
	 * 2) starting_addr: the debugger wants to set a new starting
	 *    address to use with the PER event mask.
	 * 3) ending_addr: the debugger wants to set a new ending
	 *    address to use with the PER event mask.
	 * The user specified PER event mask and the start and end
	 * addresses are used only if single stepping is not in effect.
	 * Writes to any other field in per_info are ignored.
	 */
	if (addr == (addr_t) &dummy->cr9)
		/* PER event mask of the user specified per set. */
		child->thread.per_user.control =
			data & (PER_EVENT_MASK | PER_CONTROL_MASK);
	else if (addr == (addr_t) &dummy->starting_addr)
		/* Starting address of the user specified per set. */
		child->thread.per_user.start = data;
	else if (addr == (addr_t) &dummy->ending_addr)
		/* Ending address of the user specified per set. */
		child->thread.per_user.end = data;
}

311 312 313 314 315 316 317 318 319
/*
 * Write a word to the user area of a process at location addr. This
 * operation does have an additional problem compared to peek_user.
 * Stores to the program status word and on the floating point
 * control register needs to get checked for validity.
 */
static int __poke_user(struct task_struct *child, addr_t addr, addr_t data)
{
	struct user *dummy = NULL;
320
	addr_t offset;
321

L
Linus Torvalds 已提交
322 323 324 325
	if (addr < (addr_t) &dummy->regs.acrs) {
		/*
		 * psw and gprs are stored on the stack
		 */
326 327 328 329
		if (addr == (addr_t) &dummy->regs.psw.mask) {
			unsigned long mask = PSW_MASK_USER;

			mask |= is_ri_task(child) ? PSW_MASK_RI : 0;
330 331 332 333 334
			if ((data ^ PSW_USER_BITS) & ~mask)
				/* Invalid psw mask. */
				return -EINVAL;
			if ((data & PSW_MASK_ASC) == PSW_ASC_HOME)
				/* Invalid address-space-control bits */
335 336
				return -EINVAL;
			if ((data & PSW_MASK_EA) && !(data & PSW_MASK_BA))
337
				/* Invalid addressing mode bits */
338 339
				return -EINVAL;
		}
A
Al Viro 已提交
340
		*(addr_t *)((addr_t) &task_pt_regs(child)->psw + addr) = data;
L
Linus Torvalds 已提交
341 342 343 344 345 346

	} else if (addr < (addr_t) (&dummy->regs.orig_gpr2)) {
		/*
		 * access registers are stored in the thread structure
		 */
		offset = addr - (addr_t) &dummy->regs.acrs;
347 348 349 350 351 352 353 354 355
		/*
		 * Very special case: old & broken 64 bit gdb writing
		 * to acrs[15] with a 64 bit value. Ignore the lower
		 * half of the value and write the upper 32 bit to
		 * acrs[15]. Sick...
		 */
		if (addr == (addr_t) &dummy->regs.acrs[15])
			child->thread.acrs[15] = (unsigned int) (data >> 32);
		else
H
Heiko Carstens 已提交
356
			*(addr_t *)((addr_t) &child->thread.acrs + offset) = data;
L
Linus Torvalds 已提交
357 358 359 360 361

	} else if (addr == (addr_t) &dummy->regs.orig_gpr2) {
		/*
		 * orig_gpr2 is stored on the kernel stack
		 */
A
Al Viro 已提交
362
		task_pt_regs(child)->orig_gpr2 = data;
L
Linus Torvalds 已提交
363

364 365 366 367 368 369 370
	} else if (addr < (addr_t) &dummy->regs.fp_regs) {
		/*
		 * prevent writes of padding hole between
		 * orig_gpr2 and fp_regs on s390.
		 */
		return 0;

371 372 373 374 375 376 377
	} else if (addr == (addr_t) &dummy->regs.fp_regs.fpc) {
		/*
		 * floating point control reg. is in the thread structure
		 */
		if ((unsigned int) data != 0 ||
		    test_fp_ctl(data >> (BITS_PER_LONG - 32)))
			return -EINVAL;
378
		child->thread.fpu.fpc = data >> (BITS_PER_LONG - 32);
379

L
Linus Torvalds 已提交
380 381
	} else if (addr < (addr_t) (&dummy->regs.fp_regs + 1)) {
		/*
382 383
		 * floating point regs. are either in child->thread.fpu
		 * or the child->thread.fpu.vxrs array
L
Linus Torvalds 已提交
384
		 */
385
		offset = addr - (addr_t) &dummy->regs.fp_regs.fprs;
386
		if (MACHINE_HAS_VX)
387
			*(addr_t *)((addr_t)
388
				child->thread.fpu.vxrs + 2*offset) = data;
389 390
		else
			*(addr_t *)((addr_t)
391
				child->thread.fpu.fprs + offset) = data;
L
Linus Torvalds 已提交
392 393 394

	} else if (addr < (addr_t) (&dummy->regs.per_info + 1)) {
		/*
M
Martin Schwidefsky 已提交
395
		 * Handle access to the per_info structure.
L
Linus Torvalds 已提交
396
		 */
M
Martin Schwidefsky 已提交
397 398
		addr -= (addr_t) &dummy->regs.per_info;
		__poke_user_per(child, addr, data);
L
Linus Torvalds 已提交
399 400 401 402 403 404

	}

	return 0;
}

M
Martin Schwidefsky 已提交
405
static int poke_user(struct task_struct *child, addr_t addr, addr_t data)
406 407 408 409 410 411 412 413
{
	addr_t mask;

	/*
	 * Stupid gdb peeks/pokes the access registers in 64 bit with
	 * an alignment of 4. Programmers from hell indeed...
	 */
	mask = __ADDR_MASK;
414 415
	if (addr >= (addr_t) &((struct user *) NULL)->regs.acrs &&
	    addr < (addr_t) &((struct user *) NULL)->regs.orig_gpr2)
416 417 418 419 420 421 422
		mask = 3;
	if ((addr & mask) || addr > sizeof(struct user) - __ADDR_MASK)
		return -EIO;

	return __poke_user(child, addr, data);
}

423 424
long arch_ptrace(struct task_struct *child, long request,
		 unsigned long addr, unsigned long data)
L
Linus Torvalds 已提交
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
{
	ptrace_area parea; 
	int copied, ret;

	switch (request) {
	case PTRACE_PEEKUSR:
		/* read the word at location addr in the USER area. */
		return peek_user(child, addr, data);

	case PTRACE_POKEUSR:
		/* write the word at location addr in the USER area */
		return poke_user(child, addr, data);

	case PTRACE_PEEKUSR_AREA:
	case PTRACE_POKEUSR_AREA:
440
		if (copy_from_user(&parea, (void __force __user *) addr,
L
Linus Torvalds 已提交
441 442 443 444 445 446 447 448 449
							sizeof(parea)))
			return -EFAULT;
		addr = parea.kernel_addr;
		data = parea.process_addr;
		copied = 0;
		while (copied < parea.len) {
			if (request == PTRACE_PEEKUSR_AREA)
				ret = peek_user(child, addr, data);
			else {
450 451 452
				addr_t utmp;
				if (get_user(utmp,
					     (addr_t __force __user *) data))
L
Linus Torvalds 已提交
453
					return -EFAULT;
454
				ret = poke_user(child, addr, utmp);
L
Linus Torvalds 已提交
455 456 457 458 459 460 461 462
			}
			if (ret)
				return ret;
			addr += sizeof(unsigned long);
			data += sizeof(unsigned long);
			copied += sizeof(unsigned long);
		}
		return 0;
463 464 465 466
	case PTRACE_GET_LAST_BREAK:
		put_user(task_thread_info(child)->last_break,
			 (unsigned long __user *) data);
		return 0;
467 468 469 470 471 472 473 474 475
	case PTRACE_ENABLE_TE:
		if (!MACHINE_HAS_TE)
			return -EIO;
		child->thread.per_flags &= ~PER_FLAG_NO_TE;
		return 0;
	case PTRACE_DISABLE_TE:
		if (!MACHINE_HAS_TE)
			return -EIO;
		child->thread.per_flags |= PER_FLAG_NO_TE;
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
		child->thread.per_flags &= ~PER_FLAG_TE_ABORT_RAND;
		return 0;
	case PTRACE_TE_ABORT_RAND:
		if (!MACHINE_HAS_TE || (child->thread.per_flags & PER_FLAG_NO_TE))
			return -EIO;
		switch (data) {
		case 0UL:
			child->thread.per_flags &= ~PER_FLAG_TE_ABORT_RAND;
			break;
		case 1UL:
			child->thread.per_flags |= PER_FLAG_TE_ABORT_RAND;
			child->thread.per_flags |= PER_FLAG_TE_ABORT_RAND_TEND;
			break;
		case 2UL:
			child->thread.per_flags |= PER_FLAG_TE_ABORT_RAND;
			child->thread.per_flags &= ~PER_FLAG_TE_ABORT_RAND_TEND;
			break;
		default:
			return -EINVAL;
		}
496
		return 0;
497 498 499 500
	default:
		/* Removing high order bit from addr (only for 31 bit). */
		addr &= PSW_ADDR_INSN;
		return ptrace_request(child, request, addr, data);
L
Linus Torvalds 已提交
501 502 503
	}
}

504
#ifdef CONFIG_COMPAT
L
Linus Torvalds 已提交
505 506 507 508 509 510 511 512 513 514 515 516 517 518
/*
 * Now the fun part starts... a 31 bit program running in the
 * 31 bit emulation tracing another program. PTRACE_PEEKTEXT,
 * PTRACE_PEEKDATA, PTRACE_POKETEXT and PTRACE_POKEDATA are easy
 * to handle, the difference to the 64 bit versions of the requests
 * is that the access is done in multiples of 4 byte instead of
 * 8 bytes (sizeof(unsigned long) on 31/64 bit).
 * The ugly part are PTRACE_PEEKUSR, PTRACE_PEEKUSR_AREA,
 * PTRACE_POKEUSR and PTRACE_POKEUSR_AREA. If the traced program
 * is a 31 bit program too, the content of struct user can be
 * emulated. A 31 bit program peeking into the struct user of
 * a 64 bit program is a no-no.
 */

M
Martin Schwidefsky 已提交
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
/*
 * Same as peek_user_per but for a 31 bit program.
 */
static inline __u32 __peek_user_per_compat(struct task_struct *child,
					   addr_t addr)
{
	struct compat_per_struct_kernel *dummy32 = NULL;

	if (addr == (addr_t) &dummy32->cr9)
		/* Control bits of the active per set. */
		return (__u32) test_thread_flag(TIF_SINGLE_STEP) ?
			PER_EVENT_IFETCH : child->thread.per_user.control;
	else if (addr == (addr_t) &dummy32->cr10)
		/* Start address of the active per set. */
		return (__u32) test_thread_flag(TIF_SINGLE_STEP) ?
			0 : child->thread.per_user.start;
	else if (addr == (addr_t) &dummy32->cr11)
		/* End address of the active per set. */
		return test_thread_flag(TIF_SINGLE_STEP) ?
			PSW32_ADDR_INSN : child->thread.per_user.end;
	else if (addr == (addr_t) &dummy32->bits)
		/* Single-step bit. */
		return (__u32) test_thread_flag(TIF_SINGLE_STEP) ?
			0x80000000 : 0;
	else if (addr == (addr_t) &dummy32->starting_addr)
		/* Start address of the user specified per set. */
		return (__u32) child->thread.per_user.start;
	else if (addr == (addr_t) &dummy32->ending_addr)
		/* End address of the user specified per set. */
		return (__u32) child->thread.per_user.end;
	else if (addr == (addr_t) &dummy32->perc_atmid)
		/* PER code, ATMID and AI of the last PER trap */
		return (__u32) child->thread.per_event.cause << 16;
	else if (addr == (addr_t) &dummy32->address)
		/* Address of the last PER trap */
		return (__u32) child->thread.per_event.address;
	else if (addr == (addr_t) &dummy32->access_id)
		/* Access id of the last PER trap */
		return (__u32) child->thread.per_event.paid << 24;
	return 0;
}

L
Linus Torvalds 已提交
561 562 563
/*
 * Same as peek_user but for a 31 bit program.
 */
564
static u32 __peek_user_compat(struct task_struct *child, addr_t addr)
L
Linus Torvalds 已提交
565
{
M
Martin Schwidefsky 已提交
566
	struct compat_user *dummy32 = NULL;
L
Linus Torvalds 已提交
567 568 569 570
	addr_t offset;
	__u32 tmp;

	if (addr < (addr_t) &dummy32->regs.acrs) {
571
		struct pt_regs *regs = task_pt_regs(child);
L
Linus Torvalds 已提交
572 573 574 575 576
		/*
		 * psw and gprs are stored on the stack
		 */
		if (addr == (addr_t) &dummy32->regs.psw.mask) {
			/* Fake a 31 bit psw mask. */
577
			tmp = (__u32)(regs->psw.mask >> 32);
578
			tmp &= PSW32_MASK_USER | PSW32_MASK_RI;
579
			tmp |= PSW32_USER_BITS;
L
Linus Torvalds 已提交
580 581
		} else if (addr == (addr_t) &dummy32->regs.psw.addr) {
			/* Fake a 31 bit psw address. */
582 583
			tmp = (__u32) regs->psw.addr |
				(__u32)(regs->psw.mask & PSW_MASK_BA);
L
Linus Torvalds 已提交
584 585
		} else {
			/* gpr 0-15 */
586
			tmp = *(__u32 *)((addr_t) &regs->psw + addr*2 + 4);
L
Linus Torvalds 已提交
587 588 589 590 591 592 593 594 595 596 597 598
		}
	} else if (addr < (addr_t) (&dummy32->regs.orig_gpr2)) {
		/*
		 * access registers are stored in the thread structure
		 */
		offset = addr - (addr_t) &dummy32->regs.acrs;
		tmp = *(__u32*)((addr_t) &child->thread.acrs + offset);

	} else if (addr == (addr_t) (&dummy32->regs.orig_gpr2)) {
		/*
		 * orig_gpr2 is stored on the kernel stack
		 */
A
Al Viro 已提交
599
		tmp = *(__u32*)((addr_t) &task_pt_regs(child)->orig_gpr2 + 4);
L
Linus Torvalds 已提交
600

601 602 603 604 605 606 607
	} else if (addr < (addr_t) &dummy32->regs.fp_regs) {
		/*
		 * prevent reads of padding hole between
		 * orig_gpr2 and fp_regs on s390.
		 */
		tmp = 0;

608 609 610 611
	} else if (addr == (addr_t) &dummy32->regs.fp_regs.fpc) {
		/*
		 * floating point control reg. is in the thread structure
		 */
612
		tmp = child->thread.fpu.fpc;
613

L
Linus Torvalds 已提交
614 615
	} else if (addr < (addr_t) (&dummy32->regs.fp_regs + 1)) {
		/*
616 617
		 * floating point regs. are either in child->thread.fpu
		 * or the child->thread.fpu.vxrs array
L
Linus Torvalds 已提交
618
		 */
619
		offset = addr - (addr_t) &dummy32->regs.fp_regs.fprs;
620
		if (MACHINE_HAS_VX)
621
			tmp = *(__u32 *)
622
			       ((addr_t) child->thread.fpu.vxrs + 2*offset);
623 624
		else
			tmp = *(__u32 *)
625
			       ((addr_t) child->thread.fpu.fprs + offset);
L
Linus Torvalds 已提交
626 627 628

	} else if (addr < (addr_t) (&dummy32->regs.per_info + 1)) {
		/*
M
Martin Schwidefsky 已提交
629
		 * Handle access to the per_info structure.
L
Linus Torvalds 已提交
630
		 */
M
Martin Schwidefsky 已提交
631 632
		addr -= (addr_t) &dummy32->regs.per_info;
		tmp = __peek_user_per_compat(child, addr);
L
Linus Torvalds 已提交
633 634 635 636

	} else
		tmp = 0;

637 638 639 640 641 642 643 644
	return tmp;
}

static int peek_user_compat(struct task_struct *child,
			    addr_t addr, addr_t data)
{
	__u32 tmp;

H
Heiko Carstens 已提交
645
	if (!is_compat_task() || (addr & 3) || addr > sizeof(struct user) - 3)
646 647 648
		return -EIO;

	tmp = __peek_user_compat(child, addr);
L
Linus Torvalds 已提交
649 650 651
	return put_user(tmp, (__u32 __user *) data);
}

M
Martin Schwidefsky 已提交
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
/*
 * Same as poke_user_per but for a 31 bit program.
 */
static inline void __poke_user_per_compat(struct task_struct *child,
					  addr_t addr, __u32 data)
{
	struct compat_per_struct_kernel *dummy32 = NULL;

	if (addr == (addr_t) &dummy32->cr9)
		/* PER event mask of the user specified per set. */
		child->thread.per_user.control =
			data & (PER_EVENT_MASK | PER_CONTROL_MASK);
	else if (addr == (addr_t) &dummy32->starting_addr)
		/* Starting address of the user specified per set. */
		child->thread.per_user.start = data;
	else if (addr == (addr_t) &dummy32->ending_addr)
		/* Ending address of the user specified per set. */
		child->thread.per_user.end = data;
}

L
Linus Torvalds 已提交
672 673 674
/*
 * Same as poke_user but for a 31 bit program.
 */
675 676
static int __poke_user_compat(struct task_struct *child,
			      addr_t addr, addr_t data)
L
Linus Torvalds 已提交
677
{
M
Martin Schwidefsky 已提交
678
	struct compat_user *dummy32 = NULL;
679
	__u32 tmp = (__u32) data;
L
Linus Torvalds 已提交
680 681 682
	addr_t offset;

	if (addr < (addr_t) &dummy32->regs.acrs) {
683
		struct pt_regs *regs = task_pt_regs(child);
L
Linus Torvalds 已提交
684 685 686 687
		/*
		 * psw, gprs, acrs and orig_gpr2 are stored on the stack
		 */
		if (addr == (addr_t) &dummy32->regs.psw.mask) {
688 689 690
			__u32 mask = PSW32_MASK_USER;

			mask |= is_ri_task(child) ? PSW32_MASK_RI : 0;
L
Linus Torvalds 已提交
691
			/* Build a 64 bit psw mask from 31 bit mask. */
692
			if ((tmp ^ PSW32_USER_BITS) & ~mask)
L
Linus Torvalds 已提交
693 694
				/* Invalid psw mask. */
				return -EINVAL;
695 696 697
			if ((data & PSW32_MASK_ASC) == PSW32_ASC_HOME)
				/* Invalid address-space-control bits */
				return -EINVAL;
698
			regs->psw.mask = (regs->psw.mask & ~PSW_MASK_USER) |
699
				(regs->psw.mask & PSW_MASK_BA) |
700
				(__u64)(tmp & mask) << 32;
L
Linus Torvalds 已提交
701 702
		} else if (addr == (addr_t) &dummy32->regs.psw.addr) {
			/* Build a 64 bit psw address from 31 bit address. */
703
			regs->psw.addr = (__u64) tmp & PSW32_ADDR_INSN;
704 705 706
			/* Transfer 31 bit amode bit to psw mask. */
			regs->psw.mask = (regs->psw.mask & ~PSW_MASK_BA) |
				(__u64)(tmp & PSW32_ADDR_AMODE);
L
Linus Torvalds 已提交
707 708
		} else {
			/* gpr 0-15 */
709
			*(__u32*)((addr_t) &regs->psw + addr*2 + 4) = tmp;
L
Linus Torvalds 已提交
710 711 712 713 714 715 716 717 718 719 720 721
		}
	} else if (addr < (addr_t) (&dummy32->regs.orig_gpr2)) {
		/*
		 * access registers are stored in the thread structure
		 */
		offset = addr - (addr_t) &dummy32->regs.acrs;
		*(__u32*)((addr_t) &child->thread.acrs + offset) = tmp;

	} else if (addr == (addr_t) (&dummy32->regs.orig_gpr2)) {
		/*
		 * orig_gpr2 is stored on the kernel stack
		 */
A
Al Viro 已提交
722
		*(__u32*)((addr_t) &task_pt_regs(child)->orig_gpr2 + 4) = tmp;
L
Linus Torvalds 已提交
723

724 725 726 727 728 729 730
	} else if (addr < (addr_t) &dummy32->regs.fp_regs) {
		/*
		 * prevent writess of padding hole between
		 * orig_gpr2 and fp_regs on s390.
		 */
		return 0;

731
	} else if (addr == (addr_t) &dummy32->regs.fp_regs.fpc) {
L
Linus Torvalds 已提交
732
		/*
733
		 * floating point control reg. is in the thread structure
L
Linus Torvalds 已提交
734
		 */
735
		if (test_fp_ctl(tmp))
L
Linus Torvalds 已提交
736
			return -EINVAL;
737
		child->thread.fpu.fpc = data;
738 739 740

	} else if (addr < (addr_t) (&dummy32->regs.fp_regs + 1)) {
		/*
741 742
		 * floating point regs. are either in child->thread.fpu
		 * or the child->thread.fpu.vxrs array
743 744
		 */
		offset = addr - (addr_t) &dummy32->regs.fp_regs.fprs;
745
		if (MACHINE_HAS_VX)
746
			*(__u32 *)((addr_t)
747
				child->thread.fpu.vxrs + 2*offset) = tmp;
748 749
		else
			*(__u32 *)((addr_t)
750
				child->thread.fpu.fprs + offset) = tmp;
L
Linus Torvalds 已提交
751 752 753

	} else if (addr < (addr_t) (&dummy32->regs.per_info + 1)) {
		/*
M
Martin Schwidefsky 已提交
754
		 * Handle access to the per_info structure.
L
Linus Torvalds 已提交
755
		 */
M
Martin Schwidefsky 已提交
756 757
		addr -= (addr_t) &dummy32->regs.per_info;
		__poke_user_per_compat(child, addr, data);
L
Linus Torvalds 已提交
758 759 760 761 762
	}

	return 0;
}

763 764 765
static int poke_user_compat(struct task_struct *child,
			    addr_t addr, addr_t data)
{
M
Martin Schwidefsky 已提交
766 767
	if (!is_compat_task() || (addr & 3) ||
	    addr > sizeof(struct compat_user) - 3)
768 769 770 771 772
		return -EIO;

	return __poke_user_compat(child, addr, data);
}

R
Roland McGrath 已提交
773 774
long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
			compat_ulong_t caddr, compat_ulong_t cdata)
L
Linus Torvalds 已提交
775
{
R
Roland McGrath 已提交
776 777
	unsigned long addr = caddr;
	unsigned long data = cdata;
M
Martin Schwidefsky 已提交
778
	compat_ptrace_area parea;
L
Linus Torvalds 已提交
779 780 781 782 783
	int copied, ret;

	switch (request) {
	case PTRACE_PEEKUSR:
		/* read the word at location addr in the USER area. */
784
		return peek_user_compat(child, addr, data);
L
Linus Torvalds 已提交
785 786 787

	case PTRACE_POKEUSR:
		/* write the word at location addr in the USER area */
788
		return poke_user_compat(child, addr, data);
L
Linus Torvalds 已提交
789 790 791

	case PTRACE_PEEKUSR_AREA:
	case PTRACE_POKEUSR_AREA:
792
		if (copy_from_user(&parea, (void __force __user *) addr,
L
Linus Torvalds 已提交
793 794 795 796 797 798 799
							sizeof(parea)))
			return -EFAULT;
		addr = parea.kernel_addr;
		data = parea.process_addr;
		copied = 0;
		while (copied < parea.len) {
			if (request == PTRACE_PEEKUSR_AREA)
800
				ret = peek_user_compat(child, addr, data);
L
Linus Torvalds 已提交
801
			else {
802 803 804
				__u32 utmp;
				if (get_user(utmp,
					     (__u32 __force __user *) data))
L
Linus Torvalds 已提交
805
					return -EFAULT;
806
				ret = poke_user_compat(child, addr, utmp);
L
Linus Torvalds 已提交
807 808 809 810 811 812 813 814
			}
			if (ret)
				return ret;
			addr += sizeof(unsigned int);
			data += sizeof(unsigned int);
			copied += sizeof(unsigned int);
		}
		return 0;
815 816 817 818
	case PTRACE_GET_LAST_BREAK:
		put_user(task_thread_info(child)->last_break,
			 (unsigned int __user *) data);
		return 0;
L
Linus Torvalds 已提交
819
	}
R
Roland McGrath 已提交
820
	return compat_ptrace_request(child, request, addr, data);
L
Linus Torvalds 已提交
821 822 823
}
#endif

M
Martin Schwidefsky 已提交
824
asmlinkage long do_syscall_trace_enter(struct pt_regs *regs)
L
Linus Torvalds 已提交
825
{
826
	long ret = 0;
L
Linus Torvalds 已提交
827

828
	/* Do the secure computing check first. */
829
	if (secure_computing()) {
830 831 832 833
		/* seccomp failures shouldn't expose any additional code. */
		ret = -1;
		goto out;
	}
834

B
Bodo Stroesser 已提交
835
	/*
M
Martin Schwidefsky 已提交
836 837
	 * The sysc_tracesys code in entry.S stored the system
	 * call number to gprs[2].
B
Bodo Stroesser 已提交
838
	 */
M
Martin Schwidefsky 已提交
839 840 841 842 843 844 845 846
	if (test_thread_flag(TIF_SYSCALL_TRACE) &&
	    (tracehook_report_syscall_entry(regs) ||
	     regs->gprs[2] >= NR_syscalls)) {
		/*
		 * Tracing decided this syscall should not happen or the
		 * debugger stored an invalid system call number. Skip
		 * the system call and the system call restart handling.
		 */
847
		clear_pt_regs_flag(regs, PIF_SYSCALL);
M
Martin Schwidefsky 已提交
848
		ret = -1;
L
Linus Torvalds 已提交
849
	}
M
Martin Schwidefsky 已提交
850

851
	if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT)))
852
		trace_sys_enter(regs, regs->gprs[2]);
853

854
	audit_syscall_entry(regs->gprs[2], regs->orig_gpr2,
855 856
			    regs->gprs[3], regs->gprs[4],
			    regs->gprs[5]);
857
out:
858
	return ret ?: regs->gprs[2];
M
Martin Schwidefsky 已提交
859 860 861 862
}

asmlinkage void do_syscall_trace_exit(struct pt_regs *regs)
{
863
	audit_syscall_exit(regs);
M
Martin Schwidefsky 已提交
864

865
	if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT)))
866
		trace_sys_exit(regs, regs->gprs[2]);
867

M
Martin Schwidefsky 已提交
868 869
	if (test_thread_flag(TIF_SYSCALL_TRACE))
		tracehook_report_syscall_exit(regs, 0);
L
Linus Torvalds 已提交
870
}
871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942

/*
 * user_regset definitions.
 */

static int s390_regs_get(struct task_struct *target,
			 const struct user_regset *regset,
			 unsigned int pos, unsigned int count,
			 void *kbuf, void __user *ubuf)
{
	if (target == current)
		save_access_regs(target->thread.acrs);

	if (kbuf) {
		unsigned long *k = kbuf;
		while (count > 0) {
			*k++ = __peek_user(target, pos);
			count -= sizeof(*k);
			pos += sizeof(*k);
		}
	} else {
		unsigned long __user *u = ubuf;
		while (count > 0) {
			if (__put_user(__peek_user(target, pos), u++))
				return -EFAULT;
			count -= sizeof(*u);
			pos += sizeof(*u);
		}
	}
	return 0;
}

static int s390_regs_set(struct task_struct *target,
			 const struct user_regset *regset,
			 unsigned int pos, unsigned int count,
			 const void *kbuf, const void __user *ubuf)
{
	int rc = 0;

	if (target == current)
		save_access_regs(target->thread.acrs);

	if (kbuf) {
		const unsigned long *k = kbuf;
		while (count > 0 && !rc) {
			rc = __poke_user(target, pos, *k++);
			count -= sizeof(*k);
			pos += sizeof(*k);
		}
	} else {
		const unsigned long  __user *u = ubuf;
		while (count > 0 && !rc) {
			unsigned long word;
			rc = __get_user(word, u++);
			if (rc)
				break;
			rc = __poke_user(target, pos, word);
			count -= sizeof(*u);
			pos += sizeof(*u);
		}
	}

	if (rc == 0 && target == current)
		restore_access_regs(target->thread.acrs);

	return rc;
}

static int s390_fpregs_get(struct task_struct *target,
			   const struct user_regset *regset, unsigned int pos,
			   unsigned int count, void *kbuf, void __user *ubuf)
{
943 944 945
	_s390_fp_regs fp_regs;

	if (target == current)
946
		save_fpu_regs();
947 948 949

	fp_regs.fpc = target->thread.fpu.fpc;
	fpregs_store(&fp_regs, &target->thread.fpu);
950 951

	return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
952
				   &fp_regs, 0, -1);
953 954 955 956 957 958 959 960
}

static int s390_fpregs_set(struct task_struct *target,
			   const struct user_regset *regset, unsigned int pos,
			   unsigned int count, const void *kbuf,
			   const void __user *ubuf)
{
	int rc = 0;
961
	freg_t fprs[__NUM_FPRS];
962

963
	if (target == current)
964
		save_fpu_regs();
965 966 967

	/* If setting FPC, must validate it first. */
	if (count > 0 && pos < offsetof(s390_fp_regs, fprs)) {
968
		u32 ufpc[2] = { target->thread.fpu.fpc, 0 };
969
		rc = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &ufpc,
970 971 972
					0, offsetof(s390_fp_regs, fprs));
		if (rc)
			return rc;
973
		if (ufpc[1] != 0 || test_fp_ctl(ufpc[0]))
974
			return -EINVAL;
975
		target->thread.fpu.fpc = ufpc[0];
976 977 978 979
	}

	if (rc == 0 && count > 0)
		rc = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
980 981 982
					fprs, offsetof(s390_fp_regs, fprs), -1);
	if (rc)
		return rc;
983

984
	if (MACHINE_HAS_VX)
985 986 987 988
		convert_fp_to_vx(target->thread.fpu.vxrs, fprs);
	else
		memcpy(target->thread.fpu.fprs, &fprs, sizeof(fprs));

989 990 991
	return rc;
}

992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
static int s390_last_break_get(struct task_struct *target,
			       const struct user_regset *regset,
			       unsigned int pos, unsigned int count,
			       void *kbuf, void __user *ubuf)
{
	if (count > 0) {
		if (kbuf) {
			unsigned long *k = kbuf;
			*k = task_thread_info(target)->last_break;
		} else {
			unsigned long  __user *u = ubuf;
			if (__put_user(task_thread_info(target)->last_break, u))
				return -EFAULT;
		}
	}
	return 0;
}

1010 1011 1012 1013 1014 1015 1016 1017
static int s390_last_break_set(struct task_struct *target,
			       const struct user_regset *regset,
			       unsigned int pos, unsigned int count,
			       const void *kbuf, const void __user *ubuf)
{
	return 0;
}

1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
static int s390_tdb_get(struct task_struct *target,
			const struct user_regset *regset,
			unsigned int pos, unsigned int count,
			void *kbuf, void __user *ubuf)
{
	struct pt_regs *regs = task_pt_regs(target);
	unsigned char *data;

	if (!(regs->int_code & 0x200))
		return -ENODATA;
	data = target->thread.trap_tdb;
	return user_regset_copyout(&pos, &count, &kbuf, &ubuf, data, 0, 256);
}

static int s390_tdb_set(struct task_struct *target,
			const struct user_regset *regset,
			unsigned int pos, unsigned int count,
			const void *kbuf, const void __user *ubuf)
{
	return 0;
}

1040 1041 1042 1043 1044 1045 1046 1047
static int s390_vxrs_low_get(struct task_struct *target,
			     const struct user_regset *regset,
			     unsigned int pos, unsigned int count,
			     void *kbuf, void __user *ubuf)
{
	__u64 vxrs[__NUM_VXRS_LOW];
	int i;

1048 1049
	if (!MACHINE_HAS_VX)
		return -ENODEV;
1050 1051 1052 1053
	if (target == current)
		save_fpu_regs();
	for (i = 0; i < __NUM_VXRS_LOW; i++)
		vxrs[i] = *((__u64 *)(target->thread.fpu.vxrs + i) + 1);
1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
	return user_regset_copyout(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1);
}

static int s390_vxrs_low_set(struct task_struct *target,
			     const struct user_regset *regset,
			     unsigned int pos, unsigned int count,
			     const void *kbuf, const void __user *ubuf)
{
	__u64 vxrs[__NUM_VXRS_LOW];
	int i, rc;

1065 1066
	if (!MACHINE_HAS_VX)
		return -ENODEV;
1067
	if (target == current)
1068
		save_fpu_regs();
1069 1070

	rc = user_regset_copyin(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1);
1071
	if (rc == 0)
1072
		for (i = 0; i < __NUM_VXRS_LOW; i++)
1073
			*((__u64 *)(target->thread.fpu.vxrs + i) + 1) = vxrs[i];
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084

	return rc;
}

static int s390_vxrs_high_get(struct task_struct *target,
			      const struct user_regset *regset,
			      unsigned int pos, unsigned int count,
			      void *kbuf, void __user *ubuf)
{
	__vector128 vxrs[__NUM_VXRS_HIGH];

1085 1086
	if (!MACHINE_HAS_VX)
		return -ENODEV;
1087 1088 1089 1090
	if (target == current)
		save_fpu_regs();
	memcpy(vxrs, target->thread.fpu.vxrs + __NUM_VXRS_LOW, sizeof(vxrs));

1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
	return user_regset_copyout(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1);
}

static int s390_vxrs_high_set(struct task_struct *target,
			      const struct user_regset *regset,
			      unsigned int pos, unsigned int count,
			      const void *kbuf, const void __user *ubuf)
{
	int rc;

1101 1102
	if (!MACHINE_HAS_VX)
		return -ENODEV;
1103
	if (target == current)
1104
		save_fpu_regs();
1105 1106

	rc = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
1107
				target->thread.fpu.vxrs + __NUM_VXRS_LOW, 0, -1);
1108 1109 1110
	return rc;
}

1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
static int s390_system_call_get(struct task_struct *target,
				const struct user_regset *regset,
				unsigned int pos, unsigned int count,
				void *kbuf, void __user *ubuf)
{
	unsigned int *data = &task_thread_info(target)->system_call;
	return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
				   data, 0, sizeof(unsigned int));
}

static int s390_system_call_set(struct task_struct *target,
				const struct user_regset *regset,
				unsigned int pos, unsigned int count,
				const void *kbuf, const void __user *ubuf)
{
	unsigned int *data = &task_thread_info(target)->system_call;
	return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
				  data, 0, sizeof(unsigned int));
}

1131
static const struct user_regset s390_regsets[] = {
1132
	{
1133 1134 1135 1136 1137 1138 1139
		.core_note_type = NT_PRSTATUS,
		.n = sizeof(s390_regs) / sizeof(long),
		.size = sizeof(long),
		.align = sizeof(long),
		.get = s390_regs_get,
		.set = s390_regs_set,
	},
1140
	{
1141 1142 1143 1144 1145 1146 1147
		.core_note_type = NT_PRFPREG,
		.n = sizeof(s390_fp_regs) / sizeof(long),
		.size = sizeof(long),
		.align = sizeof(long),
		.get = s390_fpregs_get,
		.set = s390_fpregs_set,
	},
1148 1149 1150 1151 1152 1153 1154 1155 1156
	{
		.core_note_type = NT_S390_SYSTEM_CALL,
		.n = 1,
		.size = sizeof(unsigned int),
		.align = sizeof(unsigned int),
		.get = s390_system_call_get,
		.set = s390_system_call_set,
	},
	{
1157 1158 1159 1160 1161
		.core_note_type = NT_S390_LAST_BREAK,
		.n = 1,
		.size = sizeof(long),
		.align = sizeof(long),
		.get = s390_last_break_get,
1162
		.set = s390_last_break_set,
1163
	},
1164
	{
1165 1166 1167 1168 1169 1170 1171
		.core_note_type = NT_S390_TDB,
		.n = 1,
		.size = 256,
		.align = 1,
		.get = s390_tdb_get,
		.set = s390_tdb_set,
	},
1172 1173 1174 1175 1176 1177 1178
	{
		.core_note_type = NT_S390_VXRS_LOW,
		.n = __NUM_VXRS_LOW,
		.size = sizeof(__u64),
		.align = sizeof(__u64),
		.get = s390_vxrs_low_get,
		.set = s390_vxrs_low_set,
1179
	},
1180 1181 1182 1183 1184 1185 1186
	{
		.core_note_type = NT_S390_VXRS_HIGH,
		.n = __NUM_VXRS_HIGH,
		.size = sizeof(__vector128),
		.align = sizeof(__vector128),
		.get = s390_vxrs_high_get,
		.set = s390_vxrs_high_set,
1187
	},
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
};

static const struct user_regset_view user_s390_view = {
	.name = UTS_MACHINE,
	.e_machine = EM_S390,
	.regsets = s390_regsets,
	.n = ARRAY_SIZE(s390_regsets)
};

#ifdef CONFIG_COMPAT
static int s390_compat_regs_get(struct task_struct *target,
				const struct user_regset *regset,
				unsigned int pos, unsigned int count,
				void *kbuf, void __user *ubuf)
{
	if (target == current)
		save_access_regs(target->thread.acrs);

	if (kbuf) {
		compat_ulong_t *k = kbuf;
		while (count > 0) {
			*k++ = __peek_user_compat(target, pos);
			count -= sizeof(*k);
			pos += sizeof(*k);
		}
	} else {
		compat_ulong_t __user *u = ubuf;
		while (count > 0) {
			if (__put_user(__peek_user_compat(target, pos), u++))
				return -EFAULT;
			count -= sizeof(*u);
			pos += sizeof(*u);
		}
	}
	return 0;
}

static int s390_compat_regs_set(struct task_struct *target,
				const struct user_regset *regset,
				unsigned int pos, unsigned int count,
				const void *kbuf, const void __user *ubuf)
{
	int rc = 0;

	if (target == current)
		save_access_regs(target->thread.acrs);

	if (kbuf) {
		const compat_ulong_t *k = kbuf;
		while (count > 0 && !rc) {
			rc = __poke_user_compat(target, pos, *k++);
			count -= sizeof(*k);
			pos += sizeof(*k);
		}
	} else {
		const compat_ulong_t  __user *u = ubuf;
		while (count > 0 && !rc) {
			compat_ulong_t word;
			rc = __get_user(word, u++);
			if (rc)
				break;
			rc = __poke_user_compat(target, pos, word);
			count -= sizeof(*u);
			pos += sizeof(*u);
		}
	}

	if (rc == 0 && target == current)
		restore_access_regs(target->thread.acrs);

	return rc;
}

1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321
static int s390_compat_regs_high_get(struct task_struct *target,
				     const struct user_regset *regset,
				     unsigned int pos, unsigned int count,
				     void *kbuf, void __user *ubuf)
{
	compat_ulong_t *gprs_high;

	gprs_high = (compat_ulong_t *)
		&task_pt_regs(target)->gprs[pos / sizeof(compat_ulong_t)];
	if (kbuf) {
		compat_ulong_t *k = kbuf;
		while (count > 0) {
			*k++ = *gprs_high;
			gprs_high += 2;
			count -= sizeof(*k);
		}
	} else {
		compat_ulong_t __user *u = ubuf;
		while (count > 0) {
			if (__put_user(*gprs_high, u++))
				return -EFAULT;
			gprs_high += 2;
			count -= sizeof(*u);
		}
	}
	return 0;
}

static int s390_compat_regs_high_set(struct task_struct *target,
				     const struct user_regset *regset,
				     unsigned int pos, unsigned int count,
				     const void *kbuf, const void __user *ubuf)
{
	compat_ulong_t *gprs_high;
	int rc = 0;

	gprs_high = (compat_ulong_t *)
		&task_pt_regs(target)->gprs[pos / sizeof(compat_ulong_t)];
	if (kbuf) {
		const compat_ulong_t *k = kbuf;
		while (count > 0) {
			*gprs_high = *k++;
			*gprs_high += 2;
			count -= sizeof(*k);
		}
	} else {
		const compat_ulong_t  __user *u = ubuf;
		while (count > 0 && !rc) {
			unsigned long word;
			rc = __get_user(word, u++);
			if (rc)
				break;
			*gprs_high = word;
			*gprs_high += 2;
			count -= sizeof(*u);
		}
	}

	return rc;
}

1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
static int s390_compat_last_break_get(struct task_struct *target,
				      const struct user_regset *regset,
				      unsigned int pos, unsigned int count,
				      void *kbuf, void __user *ubuf)
{
	compat_ulong_t last_break;

	if (count > 0) {
		last_break = task_thread_info(target)->last_break;
		if (kbuf) {
			unsigned long *k = kbuf;
			*k = last_break;
		} else {
			unsigned long  __user *u = ubuf;
			if (__put_user(last_break, u))
				return -EFAULT;
		}
	}
	return 0;
}

1343 1344 1345 1346 1347 1348 1349 1350
static int s390_compat_last_break_set(struct task_struct *target,
				      const struct user_regset *regset,
				      unsigned int pos, unsigned int count,
				      const void *kbuf, const void __user *ubuf)
{
	return 0;
}

1351
static const struct user_regset s390_compat_regsets[] = {
1352
	{
1353 1354 1355 1356 1357 1358 1359
		.core_note_type = NT_PRSTATUS,
		.n = sizeof(s390_compat_regs) / sizeof(compat_long_t),
		.size = sizeof(compat_long_t),
		.align = sizeof(compat_long_t),
		.get = s390_compat_regs_get,
		.set = s390_compat_regs_set,
	},
1360
	{
1361 1362 1363 1364 1365 1366 1367
		.core_note_type = NT_PRFPREG,
		.n = sizeof(s390_fp_regs) / sizeof(compat_long_t),
		.size = sizeof(compat_long_t),
		.align = sizeof(compat_long_t),
		.get = s390_fpregs_get,
		.set = s390_fpregs_set,
	},
1368 1369 1370 1371 1372 1373 1374 1375 1376
	{
		.core_note_type = NT_S390_SYSTEM_CALL,
		.n = 1,
		.size = sizeof(compat_uint_t),
		.align = sizeof(compat_uint_t),
		.get = s390_system_call_get,
		.set = s390_system_call_set,
	},
	{
1377 1378 1379 1380 1381
		.core_note_type = NT_S390_LAST_BREAK,
		.n = 1,
		.size = sizeof(long),
		.align = sizeof(long),
		.get = s390_compat_last_break_get,
1382
		.set = s390_compat_last_break_set,
1383
	},
1384
	{
1385 1386 1387 1388 1389 1390 1391
		.core_note_type = NT_S390_TDB,
		.n = 1,
		.size = 256,
		.align = 1,
		.get = s390_tdb_get,
		.set = s390_tdb_set,
	},
1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
	{
		.core_note_type = NT_S390_VXRS_LOW,
		.n = __NUM_VXRS_LOW,
		.size = sizeof(__u64),
		.align = sizeof(__u64),
		.get = s390_vxrs_low_get,
		.set = s390_vxrs_low_set,
	},
	{
		.core_note_type = NT_S390_VXRS_HIGH,
		.n = __NUM_VXRS_HIGH,
		.size = sizeof(__vector128),
		.align = sizeof(__vector128),
		.get = s390_vxrs_high_get,
		.set = s390_vxrs_high_set,
1407
	},
1408
	{
1409
		.core_note_type = NT_S390_HIGH_GPRS,
1410 1411 1412 1413 1414 1415
		.n = sizeof(s390_compat_regs_high) / sizeof(compat_long_t),
		.size = sizeof(compat_long_t),
		.align = sizeof(compat_long_t),
		.get = s390_compat_regs_high_get,
		.set = s390_compat_regs_high_set,
	},
1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
};

static const struct user_regset_view user_s390_compat_view = {
	.name = "s390",
	.e_machine = EM_S390,
	.regsets = s390_compat_regsets,
	.n = ARRAY_SIZE(s390_compat_regsets)
};
#endif

const struct user_regset_view *task_user_regset_view(struct task_struct *task)
{
#ifdef CONFIG_COMPAT
	if (test_tsk_thread_flag(task, TIF_31BIT))
		return &user_s390_compat_view;
#endif
	return &user_s390_view;
}
1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452

static const char *gpr_names[NUM_GPRS] = {
	"r0", "r1",  "r2",  "r3",  "r4",  "r5",  "r6",  "r7",
	"r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
};

unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset)
{
	if (offset >= NUM_GPRS)
		return 0;
	return regs->gprs[offset];
}

int regs_query_register_offset(const char *name)
{
	unsigned long offset;

	if (!name || *name != 'r')
		return -EINVAL;
1453
	if (kstrtoul(name + 1, 10, &offset))
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491
		return -EINVAL;
	if (offset >= NUM_GPRS)
		return -EINVAL;
	return offset;
}

const char *regs_query_register_name(unsigned int offset)
{
	if (offset >= NUM_GPRS)
		return NULL;
	return gpr_names[offset];
}

static int regs_within_kernel_stack(struct pt_regs *regs, unsigned long addr)
{
	unsigned long ksp = kernel_stack_pointer(regs);

	return (addr & ~(THREAD_SIZE - 1)) == (ksp & ~(THREAD_SIZE - 1));
}

/**
 * regs_get_kernel_stack_nth() - get Nth entry of the stack
 * @regs:pt_regs which contains kernel stack pointer.
 * @n:stack entry number.
 *
 * regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which
 * is specifined by @regs. If the @n th entry is NOT in the kernel stack,
 * this returns 0.
 */
unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n)
{
	unsigned long addr;

	addr = kernel_stack_pointer(regs) + n * sizeof(long);
	if (!regs_within_kernel_stack(regs, addr))
		return 0;
	return *(unsigned long *)addr;
}