Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
4c7b63a
Documentation
LICENSES
arch
block
certs
crypto
drivers
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
accounting
arch
bpf
build
cgroup
crypto
debugging
firewire
firmware
gpio
hv
iio
include
io_uring
kvm
laptop
leds
lib
memory-model
nfsd
objtool
pci
pcmcia
perf
power
scripts
spi
testing
fault-injection
ktest
nvdimm
radix-tree
scatterlist
selftests
android
bpf
breakpoints
.gitignore
Makefile
breakpoint_test.c
breakpoint_test_arm64.c
step_after_suspend_test.c
capabilities
cgroup
cpu-hotplug
cpufreq
drivers
efivarfs
exec
filesystems
firmware
ftrace
futex
gpio
ia64
intel_pstate
ipc
ir
kcmp
kexec
kmod
kselftest
kvm
lib
livepatch
locking
media_tests
membarrier
memfd
memory-hotplug
mount
mqueue
net
netfilter
networking
nsfs
ntb
pidfd
powerpc
prctl
proc
pstore
ptp
ptrace
rcutorture
rseq
rtc
safesetid
seccomp
sigaltstack
size
sparc64
splice
static_keys
sync
sysctl
tc-testing
timers
tmpfs
tpm2
uevent
user
vDSO
vm
watchdog
x86
zram
.gitignore
Makefile
gen_kselftest_tar.sh
kselftest.h
kselftest_harness.h
kselftest_install.sh
kselftest_module.h
kselftest_module.sh
lib.mk
vsock
thermal
time
usb
virtio
vm
wmi
Makefile
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
tools
/
testing
/
selftests
/
breakpoints
/
breakpoint_test.c
Blame
Blame
Latest commit
History
History
410 lines (345 loc) · 7.63 KB
Breadcrumbs
linux
/
tools
/
testing
/
selftests
/
breakpoints
/
breakpoint_test.c
Top
File metadata and controls
Code
Blame
410 lines (345 loc) · 7.63 KB
Raw
/* * Copyright (C) 2011 Red Hat, Inc., Frederic Weisbecker <fweisbec@redhat.com> * * Licensed under the terms of the GNU GPL License version 2 * * Selftests for breakpoints (and more generally the do_debug() path) in x86. */ #include <sys/ptrace.h> #include <unistd.h> #include <stddef.h> #include <sys/user.h> #include <stdio.h> #include <stdlib.h> #include <signal.h> #include <sys/types.h> #include <sys/wait.h> #include <errno.h> #include <string.h> #include "../kselftest.h" #define COUNT_ISN_BPS 4 #define COUNT_WPS 4 /* Breakpoint access modes */ enum { BP_X = 1, BP_RW = 2, BP_W = 4, }; static pid_t child_pid; /* * Ensures the child and parent are always "talking" about * the same test sequence. (ie: that we haven't forgotten * to call check_trapped() somewhere). */ static int nr_tests; static void set_breakpoint_addr(void *addr, int n) { int ret; ret = ptrace(PTRACE_POKEUSER, child_pid, offsetof(struct user, u_debugreg[n]), addr); if (ret) ksft_exit_fail_msg("Can't set breakpoint addr: %s\n", strerror(errno)); } static void toggle_breakpoint(int n, int type, int len, int local, int global, int set) { int ret; int xtype, xlen; unsigned long vdr7, dr7; switch (type) { case BP_X: xtype = 0; break; case BP_W: xtype = 1; break; case BP_RW: xtype = 3; break; } switch (len) { case 1: xlen = 0; break; case 2: xlen = 4; break; case 4: xlen = 0xc; break; case 8: xlen = 8; break; } dr7 = ptrace(PTRACE_PEEKUSER, child_pid, offsetof(struct user, u_debugreg[7]), 0); vdr7 = (xlen | xtype) << 16; vdr7 <<= 4 * n; if (local) { vdr7 |= 1 << (2 * n); vdr7 |= 1 << 8; } if (global) { vdr7 |= 2 << (2 * n); vdr7 |= 1 << 9; } if (set) dr7 |= vdr7; else dr7 &= ~vdr7; ret = ptrace(PTRACE_POKEUSER, child_pid, offsetof(struct user, u_debugreg[7]), dr7); if (ret) { ksft_print_msg("Can't set dr7: %s\n", strerror(errno)); exit(-1); } } /* Dummy variables to test read/write accesses */ static unsigned long long dummy_var[4]; /* Dummy functions to test execution accesses */ static void dummy_func(void) { } static void dummy_func1(void) { } static void dummy_func2(void) { } static void dummy_func3(void) { } static void (*dummy_funcs[])(void) = { dummy_func, dummy_func1, dummy_func2, dummy_func3, }; static int trapped; static void check_trapped(void) { /* * If we haven't trapped, wake up the parent * so that it notices the failure. */ if (!trapped) kill(getpid(), SIGUSR1); trapped = 0; nr_tests++; } static void write_var(int len) { char *pcval; short *psval; int *pival; long long *plval; int i; for (i = 0; i < 4; i++) { switch (len) { case 1: pcval = (char *)&dummy_var[i]; *pcval = 0xff; break; case 2: psval = (short *)&dummy_var[i]; *psval = 0xffff; break; case 4: pival = (int *)&dummy_var[i]; *pival = 0xffffffff; break; case 8: plval = (long long *)&dummy_var[i]; *plval = 0xffffffffffffffffLL; break; } check_trapped(); } } static void read_var(int len) { char cval; short sval; int ival; long long lval; int i; for (i = 0; i < 4; i++) { switch (len) { case 1: cval = *(char *)&dummy_var[i]; break; case 2: sval = *(short *)&dummy_var[i]; break; case 4: ival = *(int *)&dummy_var[i]; break; case 8: lval = *(long long *)&dummy_var[i]; break; } check_trapped(); } } /* * Do the r/w/x accesses to trigger the breakpoints. And run * the usual traps. */ static void trigger_tests(void) { int len, local, global, i; char val; int ret; ret = ptrace(PTRACE_TRACEME, 0, NULL, 0); if (ret) { ksft_print_msg("Can't be traced? %s\n", strerror(errno)); return; } /* Wake up father so that it sets up the first test */ kill(getpid(), SIGUSR1); /* Test instruction breakpoints */ for (local = 0; local < 2; local++) { for (global = 0; global < 2; global++) { if (!local && !global) continue; for (i = 0; i < COUNT_ISN_BPS; i++) { dummy_funcs[i](); check_trapped(); } } } /* Test write watchpoints */ for (len = 1; len <= sizeof(long); len <<= 1) { for (local = 0; local < 2; local++) { for (global = 0; global < 2; global++) { if (!local && !global) continue; write_var(len); } } } /* Test read/write watchpoints (on read accesses) */ for (len = 1; len <= sizeof(long); len <<= 1) { for (local = 0; local < 2; local++) { for (global = 0; global < 2; global++) { if (!local && !global) continue; read_var(len); } } } /* Icebp trap */ asm(".byte 0xf1\n"); check_trapped(); /* Int 3 trap */ asm("int $3\n"); check_trapped(); kill(getpid(), SIGUSR1); } static void check_success(const char *msg) { int child_nr_tests; int status; int ret; /* Wait for the child to SIGTRAP */ wait(&status); ret = 0; if (WSTOPSIG(status) == SIGTRAP) { child_nr_tests = ptrace(PTRACE_PEEKDATA, child_pid, &nr_tests, 0); if (child_nr_tests == nr_tests) ret = 1; if (ptrace(PTRACE_POKEDATA, child_pid, &trapped, 1)) ksft_exit_fail_msg("Can't poke: %s\n", strerror(errno)); } nr_tests++; if (ret) ksft_test_result_pass(msg); else ksft_test_result_fail(msg); } static void launch_instruction_breakpoints(char *buf, int local, int global) { int i; for (i = 0; i < COUNT_ISN_BPS; i++) { set_breakpoint_addr(dummy_funcs[i], i); toggle_breakpoint(i, BP_X, 1, local, global, 1); ptrace(PTRACE_CONT, child_pid, NULL, 0); sprintf(buf, "Test breakpoint %d with local: %d global: %d\n", i, local, global); check_success(buf); toggle_breakpoint(i, BP_X, 1, local, global, 0); } } static void launch_watchpoints(char *buf, int mode, int len, int local, int global) { const char *mode_str; int i; if (mode == BP_W) mode_str = "write"; else mode_str = "read"; for (i = 0; i < COUNT_WPS; i++) { set_breakpoint_addr(&dummy_var[i], i); toggle_breakpoint(i, mode, len, local, global, 1); ptrace(PTRACE_CONT, child_pid, NULL, 0); sprintf(buf, "Test %s watchpoint %d with len: %d local: %d global: %d\n", mode_str, i, len, local, global); check_success(buf); toggle_breakpoint(i, mode, len, local, global, 0); } } /* Set the breakpoints and check the child successfully trigger them */ static void launch_tests(void) { char buf[1024]; unsigned int tests = 0; int len, local, global, i; tests += 3 * COUNT_ISN_BPS; tests += sizeof(long) / 2 * 3 * COUNT_WPS; tests += sizeof(long) / 2 * 3 * COUNT_WPS; tests += 2; ksft_set_plan(tests); /* Instruction breakpoints */ for (local = 0; local < 2; local++) { for (global = 0; global < 2; global++) { if (!local && !global) continue; launch_instruction_breakpoints(buf, local, global); } } /* Write watchpoint */ for (len = 1; len <= sizeof(long); len <<= 1) { for (local = 0; local < 2; local++) { for (global = 0; global < 2; global++) { if (!local && !global) continue; launch_watchpoints(buf, BP_W, len, local, global); } } } /* Read-Write watchpoint */ for (len = 1; len <= sizeof(long); len <<= 1) { for (local = 0; local < 2; local++) { for (global = 0; global < 2; global++) { if (!local && !global) continue; launch_watchpoints(buf, BP_RW, len, local, global); } } } /* Icebp traps */ ptrace(PTRACE_CONT, child_pid, NULL, 0); check_success("Test icebp\n"); /* Int 3 traps */ ptrace(PTRACE_CONT, child_pid, NULL, 0); check_success("Test int 3 trap\n"); ptrace(PTRACE_CONT, child_pid, NULL, 0); } int main(int argc, char **argv) { pid_t pid; int ret; ksft_print_header(); pid = fork(); if (!pid) { trigger_tests(); exit(0); } child_pid = pid; wait(NULL); launch_tests(); wait(NULL); ksft_exit_pass(); }
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
You can’t perform that action at this time.