1 | /* $Id: udp.h 28800 2010-04-27 08:22:32Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * NAT - UDP protocol (declarations/defines).
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 |
|
---|
19 | /*
|
---|
20 | * This code is based on:
|
---|
21 | *
|
---|
22 | * Copyright (c) 1982, 1986, 1993
|
---|
23 | * The Regents of the University of California. All rights reserved.
|
---|
24 | *
|
---|
25 | * Redistribution and use in source and binary forms, with or without
|
---|
26 | * modification, are permitted provided that the following conditions
|
---|
27 | * are met:
|
---|
28 | * 1. Redistributions of source code must retain the above copyright
|
---|
29 | * notice, this list of conditions and the following disclaimer.
|
---|
30 | * 2. Redistributions in binary form must reproduce the above copyright
|
---|
31 | * notice, this list of conditions and the following disclaimer in the
|
---|
32 | * documentation and/or other materials provided with the distribution.
|
---|
33 | * 3. All advertising materials mentioning features or use of this software
|
---|
34 | * must display the following acknowledgement:
|
---|
35 | * This product includes software developed by the University of
|
---|
36 | * California, Berkeley and its contributors.
|
---|
37 | * 4. Neither the name of the University nor the names of its contributors
|
---|
38 | * may be used to endorse or promote products derived from this software
|
---|
39 | * without specific prior written permission.
|
---|
40 | *
|
---|
41 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
---|
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
---|
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
---|
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
---|
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
---|
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
---|
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
---|
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
---|
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
---|
51 | * SUCH DAMAGE.
|
---|
52 | *
|
---|
53 | * @(#)udp.h 8.1 (Berkeley) 6/10/93
|
---|
54 | * udp.h,v 1.3 1994/08/21 05:27:41 paul Exp
|
---|
55 | */
|
---|
56 |
|
---|
57 | #ifndef _UDP_H_
|
---|
58 | #define _UDP_H_
|
---|
59 |
|
---|
60 | #define UDP_TTL 0x60
|
---|
61 | #define UDP_UDPDATALEN 16192
|
---|
62 |
|
---|
63 | extern struct socket *udp_last_so;
|
---|
64 |
|
---|
65 | /*
|
---|
66 | * Udp protocol header.
|
---|
67 | * Per RFC 768, September, 1981.
|
---|
68 | */
|
---|
69 | struct udphdr
|
---|
70 | {
|
---|
71 | uint16_t uh_sport; /* source port */
|
---|
72 | uint16_t uh_dport; /* destination port */
|
---|
73 | int16_t uh_ulen; /* udp length */
|
---|
74 | uint16_t uh_sum; /* udp checksum */
|
---|
75 | };
|
---|
76 | AssertCompileSize(struct udphdr, 8);
|
---|
77 |
|
---|
78 | /*
|
---|
79 | * UDP kernel structures and variables.
|
---|
80 | */
|
---|
81 | struct udpiphdr
|
---|
82 | {
|
---|
83 | struct ipovly ui_i; /* overlaid ip structure */
|
---|
84 | struct udphdr ui_u; /* udp header */
|
---|
85 | };
|
---|
86 | AssertCompileSize(struct udpiphdr, 28);
|
---|
87 | #define ui_next ui_i.ih_next
|
---|
88 | #define ui_prev ui_i.ih_prev
|
---|
89 | #define ui_x1 ui_i.ih_x1
|
---|
90 | #define ui_pr ui_i.ih_pr
|
---|
91 | #define ui_len ui_i.ih_len
|
---|
92 | #define ui_src ui_i.ih_src
|
---|
93 | #define ui_dst ui_i.ih_dst
|
---|
94 | #define ui_sport ui_u.uh_sport
|
---|
95 | #define ui_dport ui_u.uh_dport
|
---|
96 | #define ui_ulen ui_u.uh_ulen
|
---|
97 | #define ui_sum ui_u.uh_sum
|
---|
98 |
|
---|
99 | struct udpstat_t
|
---|
100 | {
|
---|
101 | /* input statistics: */
|
---|
102 | u_long udps_ipackets; /* total input packets */
|
---|
103 | u_long udps_hdrops; /* packet shorter than header */
|
---|
104 | u_long udps_badsum; /* checksum error */
|
---|
105 | u_long udps_badlen; /* data length larger than packet */
|
---|
106 | u_long udps_noport; /* no socket on port */
|
---|
107 | u_long udps_noportbcast; /* of above, arrived as broadcast */
|
---|
108 | u_long udps_fullsock; /* not delivered, input socket full */
|
---|
109 | u_long udpps_pcbcachemiss; /* input packets missing pcb cache */
|
---|
110 | /* output statistics: */
|
---|
111 | u_long udps_opackets; /* total output packets */
|
---|
112 | };
|
---|
113 |
|
---|
114 | /*
|
---|
115 | * Names for UDP sysctl objects
|
---|
116 | */
|
---|
117 | #define UDPCTL_CHECKSUM 1 /* checksum UDP packets */
|
---|
118 | #define UDPCTL_MAXID 2
|
---|
119 |
|
---|
120 | extern struct udpstat udpstat;
|
---|
121 | extern struct socket udb;
|
---|
122 | struct mbuf;
|
---|
123 |
|
---|
124 | void udp_init (PNATState);
|
---|
125 | void udp_input (PNATState, register struct mbuf *, int);
|
---|
126 | int udp_output (PNATState, struct socket *, struct mbuf *, struct sockaddr_in *);
|
---|
127 | int udp_attach (PNATState, struct socket *, int service_port);
|
---|
128 | void udp_detach (PNATState, struct socket *);
|
---|
129 | u_int8_t udp_tos (struct socket *);
|
---|
130 | void udp_emu (PNATState, struct socket *, struct mbuf *);
|
---|
131 | struct socket * udp_listen (PNATState, u_int32_t, u_int, u_int32_t, u_int, int);
|
---|
132 | int udp_output2(PNATState pData, struct socket *so, struct mbuf *m,
|
---|
133 | struct sockaddr_in *saddr, struct sockaddr_in *daddr,
|
---|
134 | int iptos);
|
---|
135 |
|
---|
136 | #endif
|
---|