1 // SPDX-License-Identifier: GPL-2.0
2 // bpf-lirc.c - handles bpf
4 // Copyright (C) 2018 Sean Young <sean@mess.org>
7 #include <linux/filter.h>
8 #include <linux/bpf_lirc.h>
9 #include "rc-core-priv.h"
11 #define lirc_rcu_dereference(p) \
12 rcu_dereference_protected(p, lockdep_is_held(&ir_raw_handler_lock))
15 * BPF interface for raw IR
17 const struct bpf_prog_ops lirc_mode2_prog_ops
= {
20 BPF_CALL_1(bpf_rc_repeat
, u32
*, sample
)
22 struct ir_raw_event_ctrl
*ctrl
;
24 ctrl
= container_of(sample
, struct ir_raw_event_ctrl
, bpf_sample
);
31 static const struct bpf_func_proto rc_repeat_proto
= {
32 .func
= bpf_rc_repeat
,
33 .gpl_only
= true, /* rc_repeat is EXPORT_SYMBOL_GPL */
34 .ret_type
= RET_INTEGER
,
35 .arg1_type
= ARG_PTR_TO_CTX
,
38 BPF_CALL_4(bpf_rc_keydown
, u32
*, sample
, u32
, protocol
, u64
, scancode
,
41 struct ir_raw_event_ctrl
*ctrl
;
43 ctrl
= container_of(sample
, struct ir_raw_event_ctrl
, bpf_sample
);
45 rc_keydown(ctrl
->dev
, protocol
, scancode
, toggle
!= 0);
50 static const struct bpf_func_proto rc_keydown_proto
= {
51 .func
= bpf_rc_keydown
,
52 .gpl_only
= true, /* rc_keydown is EXPORT_SYMBOL_GPL */
53 .ret_type
= RET_INTEGER
,
54 .arg1_type
= ARG_PTR_TO_CTX
,
55 .arg2_type
= ARG_ANYTHING
,
56 .arg3_type
= ARG_ANYTHING
,
57 .arg4_type
= ARG_ANYTHING
,
60 BPF_CALL_3(bpf_rc_pointer_rel
, u32
*, sample
, s32
, rel_x
, s32
, rel_y
)
62 struct ir_raw_event_ctrl
*ctrl
;
64 ctrl
= container_of(sample
, struct ir_raw_event_ctrl
, bpf_sample
);
66 input_report_rel(ctrl
->dev
->input_dev
, REL_X
, rel_x
);
67 input_report_rel(ctrl
->dev
->input_dev
, REL_Y
, rel_y
);
68 input_sync(ctrl
->dev
->input_dev
);
73 static const struct bpf_func_proto rc_pointer_rel_proto
= {
74 .func
= bpf_rc_pointer_rel
,
76 .ret_type
= RET_INTEGER
,
77 .arg1_type
= ARG_PTR_TO_CTX
,
78 .arg2_type
= ARG_ANYTHING
,
79 .arg3_type
= ARG_ANYTHING
,
82 static const struct bpf_func_proto
*
83 lirc_mode2_func_proto(enum bpf_func_id func_id
, const struct bpf_prog
*prog
)
86 case BPF_FUNC_rc_repeat
:
87 return &rc_repeat_proto
;
88 case BPF_FUNC_rc_keydown
:
89 return &rc_keydown_proto
;
90 case BPF_FUNC_rc_pointer_rel
:
91 return &rc_pointer_rel_proto
;
92 case BPF_FUNC_map_lookup_elem
:
93 return &bpf_map_lookup_elem_proto
;
94 case BPF_FUNC_map_update_elem
:
95 return &bpf_map_update_elem_proto
;
96 case BPF_FUNC_map_delete_elem
:
97 return &bpf_map_delete_elem_proto
;
98 case BPF_FUNC_map_push_elem
:
99 return &bpf_map_push_elem_proto
;
100 case BPF_FUNC_map_pop_elem
:
101 return &bpf_map_pop_elem_proto
;
102 case BPF_FUNC_map_peek_elem
:
103 return &bpf_map_peek_elem_proto
;
104 case BPF_FUNC_ktime_get_ns
:
105 return &bpf_ktime_get_ns_proto
;
106 case BPF_FUNC_tail_call
:
107 return &bpf_tail_call_proto
;
108 case BPF_FUNC_get_prandom_u32
:
109 return &bpf_get_prandom_u32_proto
;
110 case BPF_FUNC_trace_printk
:
111 if (capable(CAP_SYS_ADMIN
))
112 return bpf_get_trace_printk_proto();
119 static bool lirc_mode2_is_valid_access(int off
, int size
,
120 enum bpf_access_type type
,
121 const struct bpf_prog
*prog
,
122 struct bpf_insn_access_aux
*info
)
124 /* We have one field of u32 */
125 return type
== BPF_READ
&& off
== 0 && size
== sizeof(u32
);
128 const struct bpf_verifier_ops lirc_mode2_verifier_ops
= {
129 .get_func_proto
= lirc_mode2_func_proto
,
130 .is_valid_access
= lirc_mode2_is_valid_access
133 #define BPF_MAX_PROGS 64
135 static int lirc_bpf_attach(struct rc_dev
*rcdev
, struct bpf_prog
*prog
)
137 struct bpf_prog_array
*old_array
;
138 struct bpf_prog_array
*new_array
;
139 struct ir_raw_event_ctrl
*raw
;
142 if (rcdev
->driver_type
!= RC_DRIVER_IR_RAW
)
145 ret
= mutex_lock_interruptible(&ir_raw_handler_lock
);
155 old_array
= lirc_rcu_dereference(raw
->progs
);
156 if (old_array
&& bpf_prog_array_length(old_array
) >= BPF_MAX_PROGS
) {
161 ret
= bpf_prog_array_copy(old_array
, NULL
, prog
, &new_array
);
165 rcu_assign_pointer(raw
->progs
, new_array
);
166 bpf_prog_array_free(old_array
);
169 mutex_unlock(&ir_raw_handler_lock
);
173 static int lirc_bpf_detach(struct rc_dev
*rcdev
, struct bpf_prog
*prog
)
175 struct bpf_prog_array
*old_array
;
176 struct bpf_prog_array
*new_array
;
177 struct ir_raw_event_ctrl
*raw
;
180 if (rcdev
->driver_type
!= RC_DRIVER_IR_RAW
)
183 ret
= mutex_lock_interruptible(&ir_raw_handler_lock
);
193 old_array
= lirc_rcu_dereference(raw
->progs
);
194 ret
= bpf_prog_array_copy(old_array
, prog
, NULL
, &new_array
);
196 * Do not use bpf_prog_array_delete_safe() as we would end up
197 * with a dummy entry in the array, and the we would free the
198 * dummy in lirc_bpf_free()
203 rcu_assign_pointer(raw
->progs
, new_array
);
204 bpf_prog_array_free(old_array
);
207 mutex_unlock(&ir_raw_handler_lock
);
211 void lirc_bpf_run(struct rc_dev
*rcdev
, u32 sample
)
213 struct ir_raw_event_ctrl
*raw
= rcdev
->raw
;
215 raw
->bpf_sample
= sample
;
218 BPF_PROG_RUN_ARRAY(raw
->progs
, &raw
->bpf_sample
, BPF_PROG_RUN
);
222 * This should be called once the rc thread has been stopped, so there can be
223 * no concurrent bpf execution.
225 * Should be called with the ir_raw_handler_lock held.
227 void lirc_bpf_free(struct rc_dev
*rcdev
)
229 struct bpf_prog_array_item
*item
;
230 struct bpf_prog_array
*array
;
232 array
= lirc_rcu_dereference(rcdev
->raw
->progs
);
236 for (item
= array
->items
; item
->prog
; item
++)
237 bpf_prog_put(item
->prog
);
239 bpf_prog_array_free(array
);
242 int lirc_prog_attach(const union bpf_attr
*attr
, struct bpf_prog
*prog
)
244 struct rc_dev
*rcdev
;
247 if (attr
->attach_flags
)
250 rcdev
= rc_dev_get_from_fd(attr
->target_fd
);
252 return PTR_ERR(rcdev
);
254 ret
= lirc_bpf_attach(rcdev
, prog
);
256 put_device(&rcdev
->dev
);
261 int lirc_prog_detach(const union bpf_attr
*attr
)
263 struct bpf_prog
*prog
;
264 struct rc_dev
*rcdev
;
267 if (attr
->attach_flags
)
270 prog
= bpf_prog_get_type(attr
->attach_bpf_fd
,
271 BPF_PROG_TYPE_LIRC_MODE2
);
273 return PTR_ERR(prog
);
275 rcdev
= rc_dev_get_from_fd(attr
->target_fd
);
278 return PTR_ERR(rcdev
);
281 ret
= lirc_bpf_detach(rcdev
, prog
);
284 put_device(&rcdev
->dev
);
289 int lirc_prog_query(const union bpf_attr
*attr
, union bpf_attr __user
*uattr
)
291 __u32 __user
*prog_ids
= u64_to_user_ptr(attr
->query
.prog_ids
);
292 struct bpf_prog_array
*progs
;
293 struct rc_dev
*rcdev
;
297 if (attr
->query
.query_flags
)
300 rcdev
= rc_dev_get_from_fd(attr
->query
.target_fd
);
302 return PTR_ERR(rcdev
);
304 if (rcdev
->driver_type
!= RC_DRIVER_IR_RAW
) {
309 ret
= mutex_lock_interruptible(&ir_raw_handler_lock
);
313 progs
= lirc_rcu_dereference(rcdev
->raw
->progs
);
314 cnt
= progs
? bpf_prog_array_length(progs
) : 0;
316 if (copy_to_user(&uattr
->query
.prog_cnt
, &cnt
, sizeof(cnt
))) {
321 if (copy_to_user(&uattr
->query
.attach_flags
, &flags
, sizeof(flags
))) {
326 if (attr
->query
.prog_cnt
!= 0 && prog_ids
&& cnt
)
327 ret
= bpf_prog_array_copy_to_user(progs
, prog_ids
, cnt
);
330 mutex_unlock(&ir_raw_handler_lock
);
332 put_device(&rcdev
->dev
);