timeout/untimeout ==> callout_*
[dragonfly.git] / sys / netinet / udp_var.h
1 /*
2  * Copyright (c) 2003, 2004 Jeffrey M. Hsu.  All rights reserved.
3  * Copyright (c) 2003, 2004 The DragonFly Project.  All rights reserved.
4  * 
5  * This code is derived from software contributed to The DragonFly Project
6  * by Jeffrey M. Hsu.
7  * 
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of The DragonFly Project nor the names of its
17  *    contributors may be used to endorse or promote products derived
18  *    from this software without specific, prior written permission.
19  * 
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 /*
35  * Copyright (c) 2003, 2004 Jeffrey M. Hsu.  All rights reserved.
36  *
37  * License terms: all terms for the DragonFly license above plus the following:
38  *
39  * 4. All advertising materials mentioning features or use of this software
40  *    must display the following acknowledgement:
41  *
42  *      This product includes software developed by Jeffrey M. Hsu
43  *      for the DragonFly Project.
44  *
45  *    This requirement may be waived with permission from Jeffrey Hsu.
46  *    This requirement will sunset and may be removed on July 8 2005,
47  *    after which the standard DragonFly license (as shown above) will
48  *    apply.
49  */
50
51 /*
52  * Copyright (c) 1982, 1986, 1989, 1993
53  *      The Regents of the University of California.  All rights reserved.
54  *
55  * Redistribution and use in source and binary forms, with or without
56  * modification, are permitted provided that the following conditions
57  * are met:
58  * 1. Redistributions of source code must retain the above copyright
59  *    notice, this list of conditions and the following disclaimer.
60  * 2. Redistributions in binary form must reproduce the above copyright
61  *    notice, this list of conditions and the following disclaimer in the
62  *    documentation and/or other materials provided with the distribution.
63  * 3. All advertising materials mentioning features or use of this software
64  *    must display the following acknowledgement:
65  *      This product includes software developed by the University of
66  *      California, Berkeley and its contributors.
67  * 4. Neither the name of the University nor the names of its contributors
68  *    may be used to endorse or promote products derived from this software
69  *    without specific prior written permission.
70  *
71  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
72  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
73  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
74  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
75  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
76  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
77  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
78  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
79  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
80  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
81  * SUCH DAMAGE.
82  *
83  *      @(#)udp_var.h   8.1 (Berkeley) 6/10/93
84  * $FreeBSD: src/sys/netinet/udp_var.h,v 1.22.2.1 2001/02/18 07:12:25 luigi Exp $
85  * $DragonFly: src/sys/netinet/udp_var.h,v 1.12 2004/07/08 22:07:35 hsu Exp $
86  */
87
88 #ifndef _NETINET_UDP_VAR_H_
89 #define _NETINET_UDP_VAR_H_
90
91 /*
92  * UDP kernel structures and variables.
93  */
94 struct  udpiphdr {
95         struct  ipovly ui_i;            /* overlaid ip structure */
96         struct  udphdr ui_u;            /* udp header */
97 };
98 #define ui_x1           ui_i.ih_x1
99 #define ui_pr           ui_i.ih_pr
100 #define ui_len          ui_i.ih_len
101 #define ui_src          ui_i.ih_src
102 #define ui_dst          ui_i.ih_dst
103 #define ui_sport        ui_u.uh_sport
104 #define ui_dport        ui_u.uh_dport
105 #define ui_ulen         ui_u.uh_ulen
106 #define ui_sum          ui_u.uh_sum
107
108 struct  udpstat {
109                                 /* input statistics: */
110         u_long  udps_ipackets;          /* total input packets */
111         u_long  udps_hdrops;            /* packet shorter than header */
112         u_long  udps_badsum;            /* checksum error */
113         u_long  udps_nosum;             /* no checksum */
114         u_long  udps_badlen;            /* data length larger than packet */
115         u_long  udps_noport;            /* no socket on port */
116         u_long  udps_noportbcast;       /* of above, arrived as broadcast */
117         u_long  udps_fullsock;          /* not delivered, input socket full */
118         u_long  udpps_pcbcachemiss;     /* input packets missing pcb cache */
119         u_long  udpps_pcbhashmiss;      /* input packets not for hashed pcb */
120                                 /* output statistics: */
121         u_long  udps_opackets;          /* total output packets */
122         u_long  udps_fastout;           /* output packets on fast path */
123         /* of no socket on port, arrived as multicast */
124         u_long  udps_noportmcast;
125 };
126
127 /*
128  * Names for UDP sysctl objects
129  */
130 #define UDPCTL_CHECKSUM         1       /* checksum UDP packets */
131 #define UDPCTL_STATS            2       /* statistics (read-only) */
132 #define UDPCTL_MAXDGRAM         3       /* max datagram size */
133 #define UDPCTL_RECVSPACE        4       /* default receive buffer space */
134 #define UDPCTL_PCBLIST          5       /* list of PCBs for UDP sockets */
135 #define UDPCTL_MAXID            6
136
137 #define UDPCTL_NAMES { \
138         { 0, 0 }, \
139         { "checksum", CTLTYPE_INT }, \
140         { "stats", CTLTYPE_STRUCT }, \
141         { "maxdgram", CTLTYPE_INT }, \
142         { "recvspace", CTLTYPE_INT }, \
143         { "pcblist", CTLTYPE_STRUCT }, \
144 }
145
146 #ifdef _KERNEL
147 #ifdef SYSCTL_DECL
148 SYSCTL_DECL(_net_inet_udp);
149 #endif
150
151 extern struct   pr_usrreqs udp_usrreqs;
152 extern struct   inpcbinfo udbinfo;
153 extern u_long   udp_sendspace;
154 extern u_long   udp_recvspace;
155 extern struct   udpstat udpstat;
156 extern int      log_in_vain;
157
158 int                     udp_addrcpu (in_addr_t faddr, in_port_t fport,
159                                      in_addr_t laddr, in_port_t lport);
160 void                    udp_ctlinput (int, struct sockaddr *, void *);
161 void                    udp_init (void);
162 void                    udp_thread_init (void);
163 void                    udp_input (struct mbuf *, ...);
164 void                    udp_notify (struct inpcb *inp, int errno);
165 int                     udp_shutdown (struct socket *so);
166 struct lwkt_port        *udp_soport (struct socket *, struct sockaddr *, int);
167
168 #endif
169
170 #endif