[PATCH v2 net-next 0/2] net: snmp: tracepoint support for snmp

From: menglong8 . dong
Date: Thu Nov 18 2021 - 07:49:52 EST


From: Menglong Dong <imagedong@xxxxxxxxxxx>

snmp is the network package statistics module in kernel, and it is
useful in network issue diagnosis, such as packet drop.

However, it is hard to get the detail information about the packet.
For example, we can know that there is something wrong with the
checksum of udp packet though 'InCsumErrors' of UDP protocol in
/proc/net/snmp, but we can't figure out the ip and port of the packet
that this error is happening on.

Add tracepoint for snmp. Therefor, users can use some tools (such as
eBPF) to get the information of the exceptional packet.

In the first patch, the frame of snmp-tracepoint is created. And in
the second patch, tracepoint for udp-snmp is introduced.

Changes since v1:
- use a single trace event for all statistics type, and special
statistics can be filter by type (procotol) and field.

Now, it will looks like this for udp statistics:
$ cat trace
$ tracer: nop
$
$ entries-in-buffer/entries-written: 4/4 #P:1
$
$ _-----=> irqs-off
$ / _----=> need-resched
$ | / _---=> hardirq/softirq
$ || / _--=> preempt-depth
$ ||| / _-=> migrate-disable
$ |||| / delay
$ TASK-PID CPU# ||||| TIMESTAMP FUNCTION
$ | | | ||||| | |
nc-171 [000] ..s1. 35.952997: snmp: skbaddr=(____ptrval____), type=9, field=2, val=1
nc-171 [000] .N... 35.957006: snmp: skbaddr=(____ptrval____), type=9, field=4, val=1
nc-171 [000] ..s1. 35.957822: snmp: skbaddr=(____ptrval____), type=9, field=2, val=1
nc-171 [000] ..... 35.957893: snmp: skbaddr=(____ptrval____), type=9, field=4, val=1

'type=9' means that the event is triggered by udp statistics and 'field=2'
means that this is triggered by 'NoPorts'. 'val=1' means that increases
of statistics (decrease can happen on tcp).


Menglong Dong (2):
net: snmp: add tracepoint support for snmp
net: snmp: add snmp tracepoint support for udp

include/net/udp.h | 25 ++++++++++++++++-----
include/trace/events/snmp.h | 44 +++++++++++++++++++++++++++++++++++++
include/uapi/linux/snmp.h | 21 ++++++++++++++++++
net/core/net-traces.c | 3 +++
net/ipv4/udp.c | 28 +++++++++++++----------
5 files changed, 104 insertions(+), 17 deletions(-)
create mode 100644 include/trace/events/snmp.h

--
2.27.0