1.\" Copyright (c) 2015 Mark Johnston <markj@FreeBSD.org> 2.\" All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23.\" SUCH DAMAGE. 24.\" 25.\" $FreeBSD$ 26.\" 27.Dd August 1, 2018 28.Dt DTRACE_UDP 4 29.Os 30.Sh NAME 31.Nm dtrace_udp 32.Nd a DTrace provider for tracing events related to the UDP protocol 33.Sh SYNOPSIS 34.Fn udp:::receive "pktinfo_t *" "csinfo_t *" "ipinfo_t *" "udpsinfo_t *" \ 35 "udpinfo_t *" 36.Fn udp:::send "pktinfo_t *" "csinfo_t *" "ipinfo_t *" "udpsinfo_t *" \ 37 "udpinfo_t *" 38.Sh DESCRIPTION 39The DTrace 40.Nm udp 41provider allows users to trace events in the 42.Xr udp 4 43protocol implementation. 44The 45.Fn udp:::send 46probe fires whenever the kernel prepares to transmit a UDP packet, and the 47.Fn udp:::receive 48probe fires whenever the kernel receives a UDP packet, unless 49the UDP header is incomplete, 50the destination port is 0, 51the length field is invalid, 52or the checksum is wrong. 53The arguments to these probes can be used to obtain detailed information about 54the IP and UDP headers of the corresponding packet. 55.Sh ARGUMENTS 56The 57.Vt pktinfo_t 58argument is currently unimplemented and is included for compatibility with other 59implementations of this provider. 60Its fields are: 61.Bl -tag -width "uintptr_t pkt_addr" -offset indent 62.It Vt uintptr_t pkt_addr 63Always set to 0. 64.El 65.Pp 66The 67.Vt csinfo_t 68argument is currently unimplemented and is included for compatibility with other 69implementations of this provider. 70Its fields are: 71.Bl -tag -width "uintptr_t cs_addr" -offset indent 72.It Vt uintptr_t cs_addr 73Always set to 0. 74.It Vt uint64_t cs_cid 75A pointer to the 76.Vt struct inpcb 77for this packet, or 78.Dv NULL . 79.It Vt pid_t cs_pid 80Always set to 0. 81.El 82.Pp 83The 84.Vt ipinfo_t 85argument contains IP fields common to both IPv4 and IPv6 packets. 86Its fields are: 87.Bl -tag -width "uint32_t ip_plength" -offset indent 88.It Vt uint8_t ip_ver 89IP version of the packet, 4 for IPv4 packets and 6 for IPv6 packets. 90.It Vt uint32_t ip_plength 91IP payload size. 92This does not include the size of the IP header or IPv6 option headers. 93.It Vt string ip_saddr 94IP source address. 95.It Vt string ip_daddr 96IP destination address. 97.El 98.Pp 99The 100.Vt udpsinfo_t 101argument contains the state of the UDP connection associated with the packet. 102Its fields are: 103.Bl -tag -width "uintptr_t udps_addr" -offset indent 104.It Vt uintptr_t udps_addr 105Pointer to the 106.Vt struct inpcb 107containing the IP state for the associated socket. 108.It Vt uint16_t udps_lport 109Local UDP port. 110.It Vt uint16_t udps_rport 111Remote UDP port. 112.It Vt string udps_laddr 113Local IPv4 or IPv6 address. 114.It Vt string udps_raddr 115Remote IPv4 or IPv6 address. 116.El 117.Pp 118The 119.Vt udpinfo_t 120argument is the raw UDP header of the packet, with all fields in host order. 121Its fields are: 122.Bl -tag -width "struct udphdr *udp_hdr" -offset indent 123.It Vt uint16_t udp_sport 124Source UDP port. 125.It Vt uint16_t udp_dport 126Destination UDP port. 127.It Vt uint16_t udp_length 128Length of the UDP header and payload, in bytes. 129.It Vt uint16_t udp_checksum 130A checksum of the UDP header and payload, or 0 if no checksum was calculated. 131.It Vt struct udphdr *udp_hdr 132A pointer to the raw UDP header. 133.El 134.Sh FILES 135.Bl -tag -width "/usr/lib/dtrace/udp.d" -compact 136.It Pa /usr/lib/dtrace/udp.d 137DTrace type and translator definitions for the 138.Nm udp 139provider. 140.El 141.Sh EXAMPLES 142The following script counts transmitted packets by destination port. 143.Bd -literal -offset indent 144udp:::send 145{ 146 @num[args[4]->udp_dport] = count(); 147} 148.Ed 149.Pp 150This script will print some details of each UDP packet as it is sent or received 151by the kernel: 152.Bd -literal -offset indent 153#pragma D option quiet 154#pragma D option switchrate=10Hz 155 156dtrace:::BEGIN 157{ 158 printf(" %10s %36s %-36s %6s\\n", "DELTA(us)", "SOURCE", 159 "DEST", "BYTES"); 160 last = timestamp; 161} 162 163udp:::send 164{ 165 this->elapsed = (timestamp - last) / 1000; 166 self->dest = strjoin(strjoin(args[2]->ip_daddr, ":"), 167 lltostr(args[4]->udp_dport)); 168 printf(" %10d %30s:%-5d -> %-36s %6d\\n", this->elapsed, 169 args[2]->ip_saddr, args[4]->udp_sport, 170 self->dest, args[4]->udp_length); 171 last = timestamp; 172} 173 174udp:::receive 175{ 176 this->elapsed = (timestamp - last) / 1000; 177 self->dest = strjoin(strjoin(args[2]->ip_saddr, ":"), 178 lltostr(args[4]->udp_sport)); 179 printf(" %10d %30s:%-5d <- %-36s %6d\\n", this->elapsed, 180 args[2]->ip_daddr, args[4]->udp_dport, 181 self->dest, args[4]->udp_length); 182 last = timestamp; 183} 184.Ed 185.Sh COMPATIBILITY 186This provider is compatible with the 187.Nm udp 188provider in Solaris. 189.Sh SEE ALSO 190.Xr dtrace 1 , 191.Xr dtrace_ip 4 , 192.Xr dtrace_sctp 4 , 193.Xr dtrace_tcp 4 , 194.Xr dtrace_udplite 4 , 195.Xr udp 4 , 196.Xr SDT 9 197.Sh HISTORY 198The 199.Nm udp 200provider first appeared in 201.Fx 20210.0. 203.Sh AUTHORS 204This manual page was written by 205.An Mark Johnston Aq Mt markj@FreeBSD.org . 206