*
  * u64 bpf_get_func_ip(void *ctx)
  *     Description
- *             Get address of the traced function (for tracing programs).
+ *             Get address of the traced function (for tracing and kprobe programs).
  *     Return
  *             Address of the traced function.
  */
 
        .arg1_type      = ARG_PTR_TO_CTX,
 };
 
+BPF_CALL_1(bpf_get_func_ip_kprobe, struct pt_regs *, regs)
+{
+       struct kprobe *kp = kprobe_running();
+
+       return kp ? (u64) kp->addr : 0;
+}
+
+static const struct bpf_func_proto bpf_get_func_ip_proto_kprobe = {
+       .func           = bpf_get_func_ip_kprobe,
+       .gpl_only       = true,
+       .ret_type       = RET_INTEGER,
+       .arg1_type      = ARG_PTR_TO_CTX,
+};
+
 const struct bpf_func_proto *
 bpf_tracing_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
 {
        case BPF_FUNC_override_return:
                return &bpf_override_return_proto;
 #endif
+       case BPF_FUNC_get_func_ip:
+               return &bpf_get_func_ip_proto_kprobe;
        default:
                return bpf_tracing_func_proto(func_id, prog);
        }
 
  *
  * u64 bpf_get_func_ip(void *ctx)
  *     Description
- *             Get address of the traced function (for tracing programs).
+ *             Get address of the traced function (for tracing and kprobe programs).
  *     Return
  *             Address of the traced function.
  */