master
  1/*-
  2 * SPDX-License-Identifier: BSD-2-Clause
  3 *
  4 * Copyright (c) 2013 Mark Johnston <markj@FreeBSD.org>
  5 *
  6 * Redistribution and use in source and binary forms, with or without
  7 * modification, are permitted provided that the following conditions are met:
  8 * 1. Redistributions of source code must retain the above copyright
  9 *    notice, this list of conditions and the following disclaimer.
 10 * 2. Redistributions in binary form must reproduce the above copyright
 11 *    notice, this list of conditions and the following disclaimer in the
 12 *    documentation and/or other materials provided with the
 13 *    distribution.
 14 *
 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 18 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 25 * SUCH DAMAGE.
 26 */
 27
 28#ifndef _SYS_IN_KDTRACE_H_
 29#define	_SYS_IN_KDTRACE_H_
 30
 31#define	IP_PROBE(probe, arg0, arg1, arg2, arg3, arg4, arg5)		\
 32	SDT_PROBE6(ip, , , probe, arg0, arg1, arg2, arg3, arg4, arg5)
 33#define	UDP_PROBE(probe, arg0, arg1, arg2, arg3, arg4)			\
 34	SDT_PROBE5(udp, , , probe, arg0, arg1, arg2, arg3, arg4)
 35#define	UDPLITE_PROBE(probe, arg0, arg1, arg2, arg3, arg4)		\
 36	SDT_PROBE5(udplite, , , probe, arg0, arg1, arg2, arg3, arg4)
 37#define	TCP_PROBE1(probe, arg0)						\
 38	SDT_PROBE1(tcp, , , probe, arg0)
 39#define	TCP_PROBE2(probe, arg0, arg1)					\
 40	SDT_PROBE2(tcp, , , probe, arg0, arg1)
 41#define	TCP_PROBE3(probe, arg0, arg1, arg2)				\
 42	SDT_PROBE3(tcp, , , probe, arg0, arg1, arg2)
 43#define	TCP_PROBE4(probe, arg0, arg1, arg2, arg3)			\
 44	SDT_PROBE4(tcp, , , probe, arg0, arg1, arg2, arg3)
 45#define	TCP_PROBE5(probe, arg0, arg1, arg2, arg3, arg4)			\
 46	SDT_PROBE5(tcp, , , probe, arg0, arg1, arg2, arg3, arg4)
 47#define	TCP_PROBE6(probe, arg0, arg1, arg2, arg3, arg4, arg5)		\
 48	SDT_PROBE6(tcp, , , probe, arg0, arg1, arg2, arg3, arg4, arg5)
 49
 50SDT_PROVIDER_DECLARE(ip);
 51SDT_PROVIDER_DECLARE(tcp);
 52SDT_PROVIDER_DECLARE(udp);
 53SDT_PROVIDER_DECLARE(udplite);
 54
 55SDT_PROBE_DECLARE(ip, , , receive);
 56SDT_PROBE_DECLARE(ip, , , send);
 57
 58SDT_PROBE_DECLARE(tcp, , , accept__established);
 59SDT_PROBE_DECLARE(tcp, , , accept__refused);
 60SDT_PROBE_DECLARE(tcp, , , connect__established);
 61SDT_PROBE_DECLARE(tcp, , , connect__refused);
 62SDT_PROBE_DECLARE(tcp, , , connect__request);
 63SDT_PROBE_DECLARE(tcp, , , receive);
 64SDT_PROBE_DECLARE(tcp, , , send);
 65SDT_PROBE_DECLARE(tcp, , , siftr);
 66SDT_PROBE_DECLARE(tcp, , , state__change);
 67SDT_PROBE_DECLARE(tcp, , , debug__input);
 68SDT_PROBE_DECLARE(tcp, , , debug__output);
 69SDT_PROBE_DECLARE(tcp, , , debug__user);
 70SDT_PROBE_DECLARE(tcp, , , debug__drop);
 71SDT_PROBE_DECLARE(tcp, , , receive__autoresize);
 72
 73SDT_PROBE_DECLARE(udp, , , receive);
 74SDT_PROBE_DECLARE(udp, , , send);
 75
 76SDT_PROBE_DECLARE(udplite, , , receive);
 77SDT_PROBE_DECLARE(udplite, , , send);
 78
 79/*
 80 * These constants originate from the 4.4BSD sys/protosw.h.  They lost
 81 * their initial purpose in 2c37256e5a59, when single pr_usrreq method
 82 * was split into multiple methods.  However, they were used by TCPDEBUG,
 83 * a feature barely used, but it kept them in the tree for many years.
 84 * In 5d06879adb95 DTrace probes started to use them.  Note that they
 85 * are not documented in dtrace_tcp(4), so they are likely to be
 86 * eventually renamed to something better and extended/trimmed.
 87 */
 88#define	PRU_ATTACH		0	/* attach protocol to up */
 89#define	PRU_DETACH		1	/* detach protocol from up */
 90#define	PRU_BIND		2	/* bind socket to address */
 91#define	PRU_LISTEN		3	/* listen for connection */
 92#define	PRU_CONNECT		4	/* establish connection to peer */
 93#define	PRU_ACCEPT		5	/* accept connection from peer */
 94#define	PRU_DISCONNECT		6	/* disconnect from peer */
 95#define	PRU_SHUTDOWN		7	/* won't send any more data */
 96#define	PRU_RCVD		8	/* have taken data; more room now */
 97#define	PRU_SEND		9	/* send this data */
 98#define	PRU_ABORT		10	/* abort (fast DISCONNECT, DETATCH) */
 99#define	PRU_CONTROL		11	/* control operations on protocol */
100#define	PRU_SENSE		12	/* return status into m */
101#define	PRU_RCVOOB		13	/* retrieve out of band data */
102#define	PRU_SENDOOB		14	/* send out of band data */
103#define	PRU_SOCKADDR		15	/* fetch socket's address */
104#define	PRU_PEERADDR		16	/* fetch peer's address */
105#define	PRU_CONNECT2		17	/* connect two sockets */
106/* begin for protocols internal use */
107#define	PRU_FASTTIMO		18	/* 200ms timeout */
108#define	PRU_SLOWTIMO		19	/* 500ms timeout */
109#define	PRU_PROTORCV		20	/* receive from below */
110#define	PRU_PROTOSEND		21	/* send to below */
111/* end for protocol's internal use */
112#define PRU_SEND_EOF		22	/* send and close */
113#define	PRU_SOSETLABEL		23	/* MAC label change */
114#define	PRU_CLOSE		24	/* socket close */
115#define	PRU_FLUSH		25	/* flush the socket */
116#define	PRU_NREQ		25
117
118#ifdef PRUREQUESTS
119const char *prurequests[] = {
120	"ATTACH",	"DETACH",	"BIND",		"LISTEN",
121	"CONNECT",	"ACCEPT",	"DISCONNECT",	"SHUTDOWN",
122	"RCVD",		"SEND",		"ABORT",	"CONTROL",
123	"SENSE",	"RCVOOB",	"SENDOOB",	"SOCKADDR",
124	"PEERADDR",	"CONNECT2",	"FASTTIMO",	"SLOWTIMO",
125	"PROTORCV",	"PROTOSEND",	"SEND_EOF",	"SOSETLABEL",
126	"CLOSE",	"FLUSH",
127};
128#endif
129
130#endif