|
@@ -78,6 +78,18 @@ static const struct bpf_func_proto bpf_probe_read_proto = {
|
|
|
.arg3_type = ARG_ANYTHING,
|
|
|
};
|
|
|
|
|
|
+static u64 bpf_ktime_get_ns(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
|
|
|
+{
|
|
|
+ /* NMI safe access to clock monotonic */
|
|
|
+ return ktime_get_mono_fast_ns();
|
|
|
+}
|
|
|
+
|
|
|
+static const struct bpf_func_proto bpf_ktime_get_ns_proto = {
|
|
|
+ .func = bpf_ktime_get_ns,
|
|
|
+ .gpl_only = true,
|
|
|
+ .ret_type = RET_INTEGER,
|
|
|
+};
|
|
|
+
|
|
|
static const struct bpf_func_proto *kprobe_prog_func_proto(enum bpf_func_id func_id)
|
|
|
{
|
|
|
switch (func_id) {
|
|
@@ -89,6 +101,8 @@ static const struct bpf_func_proto *kprobe_prog_func_proto(enum bpf_func_id func
|
|
|
return &bpf_map_delete_elem_proto;
|
|
|
case BPF_FUNC_probe_read:
|
|
|
return &bpf_probe_read_proto;
|
|
|
+ case BPF_FUNC_ktime_get_ns:
|
|
|
+ return &bpf_ktime_get_ns_proto;
|
|
|
default:
|
|
|
return NULL;
|
|
|
}
|