aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/arm64/fp/sve-ptrace.c
blob: 612d3899614ac6be12c02696c204fe3a4252b96a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2015-2020 ARM Limited.
 * Original author: Dave Martin <Dave.Martin@arm.com>
 */
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/auxv.h>
#include <sys/ptrace.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <sys/wait.h>
#include <asm/sigcontext.h>
#include <asm/ptrace.h>

#include "../../kselftest.h"

/* <linux/elf.h> and <sys/auxv.h> don't like each other, so: */
#ifndef NT_ARM_SVE
#define NT_ARM_SVE 0x405
#endif

/* Number of registers filled in by sve_store_patterns */
#define NR_VREGS 5

void sve_store_patterns(__uint128_t v[NR_VREGS]);

static void dump(const void *buf, size_t size)
{
	size_t i;
	const unsigned char *p = buf;

	for (i = 0; i < size; ++i)
		printf(" %.2x", *p++);
}

static int check_vregs(const __uint128_t vregs[NR_VREGS])
{
	int i;
	int ok = 1;

	for (i = 0; i < NR_VREGS; ++i) {
		printf("# v[%d]:", i);
		dump(&vregs[i], sizeof vregs[i]);
		putchar('\n');

		if (vregs[i] != vregs[0])
			ok = 0;
	}

	return ok;
}

static int do_child(void)
{
	if (ptrace(PTRACE_TRACEME, -1, NULL, NULL))
		ksft_exit_fail_msg("PTRACE_TRACEME", strerror(errno));

	if (raise(SIGSTOP))
		ksft_exit_fail_msg("raise(SIGSTOP)", strerror(errno));

	return EXIT_SUCCESS;
}

static struct user_sve_header *get_sve(pid_t pid, void **buf, size_t *size)
{
	struct user_sve_header *sve;
	void *p;
	size_t sz = sizeof *sve;
	struct iovec iov;

	while (1) {
		if (*size < sz) {
			p = realloc(*buf, sz);
			if (!p) {
				errno = ENOMEM;
				goto error;
			}

			*buf = p;
			*size = sz;
		}

		iov.iov_base = *buf;
		iov.iov_len = sz;
		if (ptrace(PTRACE_GETREGSET, pid, NT_ARM_SVE, &iov))
			goto error;

		sve = *buf;
		if (sve->size <= sz)
			break;

		sz = sve->size;
	}

	return sve;

error:
	return NULL;
}

static int set_sve(pid_t pid, const struct user_sve_header *sve)
{
	struct iovec iov;

	iov.iov_base = (void *)sve;
	iov.iov_len = sve->size;
	return ptrace(PTRACE_SETREGSET, pid, NT_ARM_SVE, &iov);
}

static void dump_sve_regs(const struct user_sve_header *sve, unsigned int num,
			  unsigned int vlmax)
{
	unsigned int vq;
	unsigned int i;

	if ((sve->flags & SVE_PT_REGS_MASK) != SVE_PT_REGS_SVE)
		ksft_exit_fail_msg("Dumping non-SVE register\n");

	if (vlmax > sve->vl)
		vlmax = sve->vl;

	vq = sve_vq_from_vl(sve->vl);
	for (i = 0; i < num; ++i) {
		printf("# z%u:", i);
		dump((const char *)sve + SVE_PT_SVE_ZREG_OFFSET(vq, i),
		     vlmax);
		printf("%s\n", vlmax == sve->vl ? "" : " ...");
	}
}

static int do_parent(pid_t child)
{
	int ret = EXIT_FAILURE;
	pid_t pid;
	int status;
	siginfo_t si;
	void *svebuf = NULL, *newsvebuf;
	size_t svebufsz = 0, newsvebufsz;
	struct user_sve_header *sve, *new_sve;
	struct user_fpsimd_state *fpsimd;
	unsigned int i, j;
	unsigned char *p;
	unsigned int vq;

	/* Attach to the child */
	while (1) {
		int sig;

		pid = wait(&status);
		if (pid == -1) {
			perror("wait");
			goto error;
		}

		/*
		 * This should never happen but it's hard to flag in
		 * the framework.
		 */
		if (pid != child)
			continue;

		if (WIFEXITED(status) || WIFSIGNALED(status))
			ksft_exit_fail_msg("Child died unexpectedly\n");

		ksft_test_result(WIFSTOPPED(status), "WIFSTOPPED(%d)\n",
				 status);
		if (!WIFSTOPPED(status))
			goto error;

		sig = WSTOPSIG(status);

		if (ptrace(PTRACE_GETSIGINFO, pid, NULL, &si)) {
			if (errno == ESRCH)
				goto disappeared;

			if (errno == EINVAL) {
				sig = 0; /* bust group-stop */
				goto cont;
			}

			ksft_test_result_fail("PTRACE_GETSIGINFO: %s\n",
					      strerror(errno));
			goto error;
		}

		if (sig == SIGSTOP && si.si_code == SI_TKILL &&
		    si.si_pid == pid)
			break;

	cont:
		if (ptrace(PTRACE_CONT, pid, NULL, sig)) {
			if (errno == ESRCH)
				goto disappeared;

			ksft_test_result_fail("PTRACE_CONT: %s\n",
					      strerror(errno));
			goto error;
		}
	}

	sve = get_sve(pid, &svebuf, &svebufsz);
	if (!sve) {
		int e = errno;

		ksft_test_result_fail("get_sve: %s\n", strerror(errno));
		if (e == ESRCH)
			goto disappeared;

		goto error;
	} else {
		ksft_test_result_pass("get_sve\n");
	}

	ksft_test_result((sve->flags & SVE_PT_REGS_MASK) == SVE_PT_REGS_FPSIMD,
			 "FPSIMD registers\n");
	if ((sve->flags & SVE_PT_REGS_MASK) != SVE_PT_REGS_FPSIMD)
		goto error;

	fpsimd = (struct user_fpsimd_state *)((char *)sve +
					      SVE_PT_FPSIMD_OFFSET);
	for (i = 0; i < 32; ++i) {
		p = (unsigned char *)&fpsimd->vregs[i];

		for (j = 0; j < sizeof fpsimd->vregs[i]; ++j)
			p[j] = j;
	}

	if (set_sve(pid, sve)) {
		int e = errno;

		ksft_test_result_fail("set_sve(FPSIMD): %s\n",
				      strerror(errno));
		if (e == ESRCH)
			goto disappeared;

		goto error;
	}

	vq = sve_vq_from_vl(sve->vl);

	newsvebufsz = SVE_PT_SVE_ZREG_OFFSET(vq, 1);
	new_sve = newsvebuf = malloc(newsvebufsz);
	if (!new_sve) {
		errno = ENOMEM;
		perror(NULL);
		goto error;
	}

	*new_sve = *sve;
	new_sve->flags &= ~SVE_PT_REGS_MASK;
	new_sve->flags |= SVE_PT_REGS_SVE;
	memset((char *)new_sve + SVE_PT_SVE_ZREG_OFFSET(vq, 0),
	       0, SVE_PT_SVE_ZREG_SIZE(vq));
	new_sve->size = SVE_PT_SVE_ZREG_OFFSET(vq, 1);
	if (set_sve(pid, new_sve)) {
		int e = errno;

		ksft_test_result_fail("set_sve(ZREG): %s\n", strerror(errno));
		if (e == ESRCH)
			goto disappeared;

		goto error;
	}

	new_sve = get_sve(pid, &newsvebuf, &newsvebufsz);
	if (!new_sve) {
		int e = errno;

		ksft_test_result_fail("get_sve(ZREG): %s\n", strerror(errno));
		if (e == ESRCH)
			goto disappeared;

		goto error;
	}

	ksft_test_result((new_sve->flags & SVE_PT_REGS_MASK) == SVE_PT_REGS_SVE,
			 "SVE registers\n");
	if ((new_sve->flags & SVE_PT_REGS_MASK) != SVE_PT_REGS_SVE)
		goto error;

	dump_sve_regs(new_sve, 3, sizeof fpsimd->vregs[0]);

	p = (unsigned char *)new_sve + SVE_PT_SVE_ZREG_OFFSET(vq, 1);
	for (i = 0; i < sizeof fpsimd->vregs[0]; ++i) {
		unsigned char expected = i;

		if (__BYTE_ORDER == __BIG_ENDIAN)
			expected = sizeof fpsimd->vregs[0] - 1 - expected;

		ksft_test_result(p[i] == expected, "p[%d] == expected\n", i);
		if (p[i] != expected)
			goto error;
	}

	ret = EXIT_SUCCESS;

error:
	kill(child, SIGKILL);

disappeared:
	return ret;
}

int main(void)
{
	int ret = EXIT_SUCCESS;
	__uint128_t v[NR_VREGS];
	pid_t child;

	ksft_print_header();
	ksft_set_plan(20);

	if (!(getauxval(AT_HWCAP) & HWCAP_SVE))
		ksft_exit_skip("SVE not available\n");

	sve_store_patterns(v);

	if (!check_vregs(v))
		ksft_exit_fail_msg("Initial check_vregs() failed\n");

	child = fork();
	if (!child)
		return do_child();

	if (do_parent(child))
		ret = EXIT_FAILURE;

	ksft_print_cnts();

	return ret;
}