Skip to content

Commit 96ae522

Browse files
sargundavem330
authored andcommitted
bpf: Add bpf_probe_write_user BPF helper to be called in tracers
This allows user memory to be written to during the course of a kprobe. It shouldn't be used to implement any kind of security mechanism because of TOC-TOU attacks, but rather to debug, divert, and manipulate execution of semi-cooperative processes. Although it uses probe_kernel_write, we limit the address space the probe can write into by checking the space with access_ok. We do this as opposed to calling copy_to_user directly, in order to avoid sleeping. In addition we ensure the threads's current fs / segment is USER_DS and the thread isn't exiting nor a kernel thread. Given this feature is meant for experiments, and it has a risk of crashing the system, and running programs, we print a warning on when a proglet that attempts to use this helper is installed, along with the pid and process name. Signed-off-by: Sargun Dhillon <[email protected]> Cc: Alexei Starovoitov <[email protected]> Cc: Daniel Borkmann <[email protected]> Acked-by: Alexei Starovoitov <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 9b022a6 commit 96ae522

File tree

3 files changed

+57
-0
lines changed

3 files changed

+57
-0
lines changed

include/uapi/linux/bpf.h

+10
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,16 @@ enum bpf_func_id {
365365
*/
366366
BPF_FUNC_get_current_task,
367367

368+
/**
369+
* bpf_probe_write_user(void *dst, void *src, int len)
370+
* safely attempt to write to a location
371+
* @dst: destination address in userspace
372+
* @src: source address on stack
373+
* @len: number of bytes to copy
374+
* Return: 0 on success or negative error
375+
*/
376+
BPF_FUNC_probe_write_user,
377+
368378
__BPF_FUNC_MAX_ID,
369379
};
370380

kernel/trace/bpf_trace.c

+45
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,49 @@ static const struct bpf_func_proto bpf_probe_read_proto = {
8181
.arg3_type = ARG_ANYTHING,
8282
};
8383

84+
static u64 bpf_probe_write_user(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
85+
{
86+
void *unsafe_ptr = (void *) (long) r1;
87+
void *src = (void *) (long) r2;
88+
int size = (int) r3;
89+
90+
/*
91+
* Ensure we're in user context which is safe for the helper to
92+
* run. This helper has no business in a kthread.
93+
*
94+
* access_ok() should prevent writing to non-user memory, but in
95+
* some situations (nommu, temporary switch, etc) access_ok() does
96+
* not provide enough validation, hence the check on KERNEL_DS.
97+
*/
98+
99+
if (unlikely(in_interrupt() ||
100+
current->flags & (PF_KTHREAD | PF_EXITING)))
101+
return -EPERM;
102+
if (unlikely(segment_eq(get_fs(), KERNEL_DS)))
103+
return -EPERM;
104+
if (!access_ok(VERIFY_WRITE, unsafe_ptr, size))
105+
return -EPERM;
106+
107+
return probe_kernel_write(unsafe_ptr, src, size);
108+
}
109+
110+
static const struct bpf_func_proto bpf_probe_write_user_proto = {
111+
.func = bpf_probe_write_user,
112+
.gpl_only = true,
113+
.ret_type = RET_INTEGER,
114+
.arg1_type = ARG_ANYTHING,
115+
.arg2_type = ARG_PTR_TO_STACK,
116+
.arg3_type = ARG_CONST_STACK_SIZE,
117+
};
118+
119+
static const struct bpf_func_proto *bpf_get_probe_write_proto(void)
120+
{
121+
pr_warn_ratelimited("%s[%d] is installing a program with bpf_probe_write_user helper that may corrupt user memory!",
122+
current->comm, task_pid_nr(current));
123+
124+
return &bpf_probe_write_user_proto;
125+
}
126+
84127
/*
85128
* limited trace_printk()
86129
* only %d %u %x %ld %lu %lx %lld %llu %llx %p %s conversion specifiers allowed
@@ -362,6 +405,8 @@ static const struct bpf_func_proto *tracing_func_proto(enum bpf_func_id func_id)
362405
return &bpf_get_smp_processor_id_proto;
363406
case BPF_FUNC_perf_event_read:
364407
return &bpf_perf_event_read_proto;
408+
case BPF_FUNC_probe_write_user:
409+
return bpf_get_probe_write_proto();
365410
default:
366411
return NULL;
367412
}

samples/bpf/bpf_helpers.h

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ static int (*bpf_perf_event_output)(void *ctx, void *map, int index, void *data,
4141
(void *) BPF_FUNC_perf_event_output;
4242
static int (*bpf_get_stackid)(void *ctx, void *map, int flags) =
4343
(void *) BPF_FUNC_get_stackid;
44+
static int (*bpf_probe_write_user)(void *dst, void *src, int size) =
45+
(void *) BPF_FUNC_probe_write_user;
4446

4547
/* llvm builtin functions that eBPF C program may use to
4648
* emit BPF_LD_ABS and BPF_LD_IND instructions

0 commit comments

Comments
 (0)