Skip to content

Commit

Permalink
Implement the ip provider
Browse files Browse the repository at this point in the history
Signed-off-by: Kris Van Hees <kris.van.hees@oracle.com>
  • Loading branch information
kvanhees committed Jul 27, 2023
1 parent 7c61743 commit a20c54b
Show file tree
Hide file tree
Showing 6 changed files with 180 additions and 3 deletions.
4 changes: 3 additions & 1 deletion libdtrace/Build
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ libdtrace-build_SOURCES = dt_aggregate.c \
dt_prov_cpc.c \
dt_prov_dtrace.c \
dt_prov_fbt.c \
dt_prov_ip.c \
dt_prov_lockstat.c \
dt_prov_proc.c \
dt_prov_profile.c \
Expand Down Expand Up @@ -96,8 +97,9 @@ dt_proc.c_CFLAGS := -Wno-pedantic
dt_prov_cpc.c_CFLAGS := -Wno-pedantic
dt_prov_dtrace.c_CFLAGS := -Wno-pedantic
dt_prov_fbt.c_CFLAGS := -Wno-pedantic
dt_prov_proc.c_CFLAGS := -Wno-pedantic
dt_prov_ip.c_CFLAGS := -Wno-pedantic
dt_prov_lockstat.c_CFLAGS := -Wno-pedantic
dt_prov_proc.c_CFLAGS := -Wno-pedantic
dt_prov_profile.c_CFLAGS := -Wno-pedantic
dt_prov_rawtp.c_CFLAGS := -Wno-pedantic
dt_prov_sched.c_CFLAGS := -Wno-pedantic
Expand Down
1 change: 1 addition & 0 deletions libdtrace/dt_open.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ static const dt_provimpl_t *dt_providers[] = {
&dt_dtrace, /* list dt_dtrace first */
&dt_cpc,
&dt_fbt,
&dt_ip,
&dt_lockstat,
&dt_proc,
&dt_profile,
Expand Down
173 changes: 173 additions & 0 deletions libdtrace/dt_prov_ip.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
/*
* Oracle Linux DTrace.
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*
* The 'ip' SDT provider for DTrace-specific probes.
*/
#include <assert.h>
#include <errno.h>

#include "dt_dctx.h"
#include "dt_cg.h"
#include "dt_provider_sdt.h"
#include "dt_probe.h"

static const char prvname[] = "ip";
static const char modname[] = "vmlinux";

static probe_dep_t probes[] = {
{ "receive",
DTRACE_PROBESPEC_NAME, "fbt::ip_rcv_core:return" },
{ "send",
DTRACE_PROBESPEC_NAME, "fbt::__ip_local_out:entry" },
{ NULL, }
};

static probe_arg_t probe_args[] = {
{ "receive", 0, { 0, 0, "struct sk_buff *", "pktinfo_t *" } },
{ "receive", 1, { 1, 0, "struct sock *", "csinfo_t *" } },
{ "receive", 2, { 2, 0, "void_ip_t *", "ipinfo_t *" } },
{ "receive", 3, { 3, 0, "struct net_device *", "ifinfo_t *" } },
{ "receive", 4, { 4, 0, "struct iphdr *", "ipv4info_t *" } },
{ "receive", 5, { 5, 0, "struct ipv6hdr *", "ipv6info_t *"} },
{ "send", 0, { 0, 0, "struct sk_buff *", "pktinfo_t *" } },
{ "send", 1, { 1, 0, "struct sock *", "csinfo_t *" } },
{ "send", 2, { 2, 0, "void_ip_t *", "ipinfo_t *" } },
{ "send", 3, { 3, 0, "struct net_device *", "ifinfo_t *" } },
{ "send", 4, { 4, 0, "struct iphdr *", "ipv4info_t *" } },
{ "send", 5, { 5, 0, "struct ipv6hdr *", "ipv6info_t *"} },
{ NULL, }
};

static const dtrace_pattr_t pattr = {
{ DTRACE_STABILITY_EVOLVING, DTRACE_STABILITY_EVOLVING, DTRACE_CLASS_ISA },
{ DTRACE_STABILITY_PRIVATE, DTRACE_STABILITY_PRIVATE, DTRACE_CLASS_UNKNOWN },
{ DTRACE_STABILITY_PRIVATE, DTRACE_STABILITY_PRIVATE, DTRACE_CLASS_UNKNOWN },
{ DTRACE_STABILITY_EVOLVING, DTRACE_STABILITY_EVOLVING, DTRACE_CLASS_ISA },
{ DTRACE_STABILITY_EVOLVING, DTRACE_STABILITY_EVOLVING, DTRACE_CLASS_ISA },
};

/*
* Provide all the "ip" SDT probes.
*/
static int populate(dtrace_hdl_t *dtp)
{
return dt_sdt_populate(dtp, prvname, modname, &dt_ip, &pattr,
probe_args, probes);
}

/*
* Retrieve the value of a member in struct sk_buff *skb.
*
* Entry:
* %r6 = struct sk_buff *skb
*
* Return:
* %r0 = skb->member
* %r6 = struct sk_buff *skb
*/
static int get_skb_member(dt_pcb_t *pcb, const char *member) {
dtrace_hdl_t *dtp = pcb->pcb_hdl;
dt_irlist_t *dlp = &pcb->pcb_ir;
dtrace_typeinfo_t skbt;
ctf_membinfo_t ctm;
size_t size;
uint_t ldop;

if (dtrace_lookup_by_type(dtp, DTRACE_OBJ_KMODS, "struct sk_buff",
&skbt) == -1 ||
ctf_member_info(skbt.dtt_ctfp, skbt.dtt_type, member,
&ctm) == CTF_ERR)
return -1;

ldop = dt_cg_ldsize(NULL, skbt.dtt_ctfp, ctm.ctm_type, &size);

assert(size > 0 && size <= 8 && (size & (size - 1)) == 0);

emit(dlp, BPF_MOV_REG(BPF_REG_0, BPF_REG_6));
emit(dlp, BPF_MOV_REG(BPF_REG_1, BPF_REG_FP));
emit(dlp, BPF_ALU64_IMM(BPF_ADD, BPF_REG_1, DT_TRAMP_SP_BASE));
emit(dlp, BPF_MOV_IMM(BPF_REG_2, size));
emit(dlp, BPF_MOV_REG(BPF_REG_3, BPF_REG_6));
emit(dlp, BPF_ALU64_IMM(BPF_ADD, BPF_REG_3, ctm.ctm_offset / NBBY));
emit(dlp, BPF_CALL_HELPER(dtp->dt_bpfhelper[BPF_FUNC_probe_read_kernel]));
emit(dlp, BPF_LOAD(ldop, BPF_REG_0, BPF_REG_FP, DT_TRAMP_SP_BASE));

return 0;
}

/*
* Generate a BPF trampoline for a SDT probe.
*
* The trampoline function is called when a SDT probe triggers, and it must
* satisfy the following prototype:
*
* int dt_ip(void *data)
*
* The trampoline will populate a dt_dctx_t struct and then call the function
* that implements the compiled D clause. It returns the value that it gets
* back from that function.
*/
static int trampoline(dt_pcb_t *pcb, uint_t exitlbl)
{
dt_irlist_t *dlp = &pcb->pcb_ir;
dt_probe_t *prp = pcb->pcb_probe;
uint_t skbreg;

/*
* Determine that holds a pointer to the skb passed from the underlying
* probe.
*/
if (strcmp(prp->desc->prb, "receive") == 0)
skbreg = 1;
else if (strcmp(prp->desc->prb, "send") == 0)
skbreg = 2;

/*
* We construct the ip:::(receive,send) probe arguments as
* follows:
* args[0] = skb
* args[1] = skb->sk
* args[2] = ip_hdr(skb)
* args[3] = skb->dev
* args[4] = ip_hdr(skb)
* args[5] = NULL
*/
emit(dlp, BPF_LOAD(BPF_DW, BPF_REG_6, BPF_REG_7, DMST_ARG(skbreg)));
emit(dlp, BPF_BRANCH_IMM(BPF_JEQ, BPF_REG_6, 0, exitlbl));

emit(dlp, BPF_STORE(BPF_DW, BPF_REG_7, DMST_ARG(0), BPF_REG_6));

get_skb_member(pcb, "sk");
emit(dlp, BPF_STORE(BPF_DW, BPF_REG_7, DMST_ARG(1), BPF_REG_0));

/*
* ip_hdr(skb) =
* skb_network_header(skb) = (include/linux/ip.h)
* skb->head + skb->network_header (include/linux/skbuff.h)
*/
get_skb_member(pcb, "head");
emit(dlp, BPF_STORE(BPF_DW, BPF_REG_7, DMST_ARG(2), BPF_REG_0));
emit(dlp, BPF_STORE(BPF_DW, BPF_REG_7, DMST_ARG(4), BPF_REG_0));
get_skb_member(pcb, "network_header");
emit(dlp, BPF_XADD_REG(BPF_DW, BPF_REG_7, DMST_ARG(2), BPF_REG_0));
emit(dlp, BPF_XADD_REG(BPF_DW, BPF_REG_7, DMST_ARG(4), BPF_REG_0));

get_skb_member(pcb, "dev");
emit(dlp, BPF_STORE(BPF_DW, BPF_REG_7, DMST_ARG(3), BPF_REG_0));

emit(dlp, BPF_STORE_IMM(BPF_DW, BPF_REG_7, DMST_ARG(5), 0));

return 0;
}

dt_provimpl_t dt_ip = {
.name = prvname,
.prog_type = BPF_PROG_TYPE_UNSPEC,
.populate = &populate,
.enable = &dt_sdt_enable,
.trampoline = &trampoline,
.probe_info = &dt_sdt_probe_info,
};
1 change: 1 addition & 0 deletions libdtrace/dt_provider.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ typedef struct dt_provimpl {
extern dt_provimpl_t dt_dtrace;
extern dt_provimpl_t dt_cpc;
extern dt_provimpl_t dt_fbt;
extern dt_provimpl_t dt_ip;
extern dt_provimpl_t dt_lockstat;
extern dt_provimpl_t dt_proc;
extern dt_provimpl_t dt_profile;
Expand Down
2 changes: 2 additions & 0 deletions libdtrace/ip.d
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ inline int TCP_MIN_HEADER_LENGTH = 20;
* to the net namespace (nd_net in struct net_device).
*/
typedef uint64_t netstackid_t;
typedef __be32 ipaddr_t;
typedef struct in6_addr in6_addr_t;

/*
* pktinfo is where packet ID info can be made available for deeper
Expand Down
2 changes: 0 additions & 2 deletions test/unittest/funcs/tst.inet_ntoa.d
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

#pragma D option quiet

typedef vmlinux`__be32 ipaddr_t; /* FIXME: how should this really be handled? */

ipaddr_t *ip4a;
ipaddr_t *ip4b;
ipaddr_t *ip4c;
Expand Down

0 comments on commit a20c54b

Please sign in to comment.