1 | /* $Id: VBoxNetUDP.cpp 28156 2010-04-10 01:14:10Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxNetUDP - IntNet UDP Client Routines.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | * additional information or have any questions.
|
---|
20 | */
|
---|
21 |
|
---|
22 | /*******************************************************************************
|
---|
23 | * Header Files *
|
---|
24 | *******************************************************************************/
|
---|
25 | #define LOG_GROUP LOG_GROUP_DEFAULT
|
---|
26 | #include "VBoxNetLib.h"
|
---|
27 | #include <iprt/stream.h>
|
---|
28 | #include <iprt/string.h>
|
---|
29 | #include <iprt/rand.h>
|
---|
30 | #include <VBox/log.h>
|
---|
31 | #include <VBox/pdmnetinline.h>
|
---|
32 | #include <VBox/intnetinline.h>
|
---|
33 |
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * Checks if the head of the receive ring is a UDP packet matching the given
|
---|
37 | * criteria.
|
---|
38 | *
|
---|
39 | * @returns Pointer to the data if it matches.
|
---|
40 | * @param pBuf The IntNet buffers.
|
---|
41 | * @param uDstPort The destination port to match.
|
---|
42 | * @param pDstMac The destination address to match if
|
---|
43 | * VBOXNETUDP_MATCH_UNICAST is specied.
|
---|
44 | * @param fFlags Flags indicating what to match and some debug stuff.
|
---|
45 | * See VBOXNETUDP_MATCH_*.
|
---|
46 | * @param pHdrs Where to return the pointers to the headers.
|
---|
47 | * Optional.
|
---|
48 | * @param pcb Where to return the size of the data on success.
|
---|
49 | */
|
---|
50 | void *VBoxNetUDPMatch(PINTNETBUF pBuf, unsigned uDstPort, PCRTMAC pDstMac, uint32_t fFlags, PVBOXNETUDPHDRS pHdrs, size_t *pcb)
|
---|
51 | {
|
---|
52 | /*
|
---|
53 | * Clear return values so we can return easier on mismatch.
|
---|
54 | */
|
---|
55 | *pcb = 0;
|
---|
56 | if (pHdrs)
|
---|
57 | {
|
---|
58 | pHdrs->pEth = NULL;
|
---|
59 | pHdrs->pIpv4 = NULL;
|
---|
60 | pHdrs->pUdp = NULL;
|
---|
61 | }
|
---|
62 |
|
---|
63 | /*
|
---|
64 | * Valid IntNet Ethernet frame?
|
---|
65 | */
|
---|
66 | PCINTNETHDR pHdr = INTNETRingGetNextFrameToRead(&pBuf->Recv);
|
---|
67 | if ( !pHdr
|
---|
68 | || ( pHdr->u16Type != INTNETHDR_TYPE_FRAME
|
---|
69 | && pHdr->u16Type != INTNETHDR_TYPE_GSO))
|
---|
70 | return NULL;
|
---|
71 |
|
---|
72 | size_t cbFrame = pHdr->cbFrame;
|
---|
73 | const void *pvFrame = INTNETHdrGetFramePtr(pHdr, pBuf);
|
---|
74 | PCPDMNETWORKGSO pGso = NULL;
|
---|
75 | if (pHdr->u16Type == INTNETHDR_TYPE_GSO)
|
---|
76 | {
|
---|
77 | pGso = (PCPDMNETWORKGSO)pvFrame;
|
---|
78 | if (!PDMNetGsoIsValid(pGso, cbFrame, cbFrame - sizeof(*pGso)))
|
---|
79 | return NULL;
|
---|
80 | /** @todo IPv6 UDP support, goes for this entire function really. Not really
|
---|
81 | * important yet since this is currently only used by the DHCP server. */
|
---|
82 | if (pGso->u8Type != PDMNETWORKGSOTYPE_IPV4_UDP)
|
---|
83 | return NULL;
|
---|
84 | pvFrame = pGso + 1;
|
---|
85 | cbFrame -= sizeof(*pGso);
|
---|
86 | }
|
---|
87 |
|
---|
88 | PCRTNETETHERHDR pEthHdr = (PCRTNETETHERHDR)pvFrame;
|
---|
89 | if (pHdrs)
|
---|
90 | pHdrs->pEth = pEthHdr;
|
---|
91 |
|
---|
92 | #ifdef IN_RING3
|
---|
93 | /* Dump if to stderr/log if that's wanted. */
|
---|
94 | if (fFlags & VBOXNETUDP_MATCH_PRINT_STDERR)
|
---|
95 | {
|
---|
96 | RTStrmPrintf(g_pStdErr, "frame: cb=%04x dst=%.6Rhxs src=%.6Rhxs type=%04x%s\n",
|
---|
97 | cbFrame, &pEthHdr->DstMac, &pEthHdr->SrcMac, RT_BE2H_U16(pEthHdr->EtherType),
|
---|
98 | !memcmp(&pEthHdr->DstMac, pDstMac, sizeof(*pDstMac)) ? " Mine!" : "");
|
---|
99 | }
|
---|
100 | #endif
|
---|
101 |
|
---|
102 | /*
|
---|
103 | * Ethernet matching.
|
---|
104 | */
|
---|
105 |
|
---|
106 | /* Ethernet min frame size. */
|
---|
107 | if (cbFrame < 64)
|
---|
108 | return NULL;
|
---|
109 |
|
---|
110 | /* Match Ethertype: IPV4? */
|
---|
111 | /** @todo VLAN tagging? */
|
---|
112 | if (pEthHdr->EtherType != RT_H2BE_U16_C(RTNET_ETHERTYPE_IPV4))
|
---|
113 | return NULL;
|
---|
114 |
|
---|
115 | /* Match destination address (ethernet) */
|
---|
116 | if ( ( !(fFlags & VBOXNETUDP_MATCH_UNICAST)
|
---|
117 | || memcmp(&pEthHdr->DstMac, pDstMac, sizeof(pEthHdr->DstMac)))
|
---|
118 | && ( !(fFlags & VBOXNETUDP_MATCH_BROADCAST)
|
---|
119 | || pEthHdr->DstMac.au16[0] != 0xffff
|
---|
120 | || pEthHdr->DstMac.au16[1] != 0xffff
|
---|
121 | || pEthHdr->DstMac.au16[2] != 0xffff))
|
---|
122 | return NULL;
|
---|
123 |
|
---|
124 | /*
|
---|
125 | * If we're working on a GSO frame, we need to make sure the length fields
|
---|
126 | * are set correctly (they are usually set to 0).
|
---|
127 | */
|
---|
128 | if (pGso)
|
---|
129 | PDMNetGsoPrepForDirectUse(pGso, (void *)pvFrame, cbFrame, false /*fPayloadChecksum*/);
|
---|
130 |
|
---|
131 | /*
|
---|
132 | * IP validation and matching.
|
---|
133 | */
|
---|
134 | PCRTNETIPV4 pIpHdr = (PCRTNETIPV4)(pEthHdr + 1);
|
---|
135 | if (pHdrs)
|
---|
136 | pHdrs->pIpv4 = pIpHdr;
|
---|
137 |
|
---|
138 | /* Protocol: UDP */
|
---|
139 | if (pIpHdr->ip_p != RTNETIPV4_PROT_UDP)
|
---|
140 | return NULL;
|
---|
141 |
|
---|
142 | /* Valid IPv4 header? */
|
---|
143 | size_t const offIpHdr = (uintptr_t)pIpHdr - (uintptr_t)pEthHdr;
|
---|
144 | if (!RTNetIPv4IsHdrValid(pIpHdr, cbFrame - offIpHdr, cbFrame - offIpHdr, !pGso /*fChecksum*/))
|
---|
145 | return NULL;
|
---|
146 |
|
---|
147 | /*
|
---|
148 | * UDP matching and validation.
|
---|
149 | */
|
---|
150 | PCRTNETUDP pUdpHdr = (PCRTNETUDP)((uint32_t *)pIpHdr + pIpHdr->ip_hl);
|
---|
151 | if (pHdrs)
|
---|
152 | pHdrs->pUdp = pUdpHdr;
|
---|
153 |
|
---|
154 | /* Destination port */
|
---|
155 | if (RT_BE2H_U16(pUdpHdr->uh_dport) != uDstPort)
|
---|
156 | return NULL;
|
---|
157 |
|
---|
158 | if (!pGso)
|
---|
159 | {
|
---|
160 | /* Validate the UDP header according to flags. */
|
---|
161 | size_t offUdpHdr = (uintptr_t)pUdpHdr - (uintptr_t)pEthHdr;
|
---|
162 | if (fFlags & (VBOXNETUDP_MATCH_CHECKSUM | VBOXNETUDP_MATCH_REQUIRE_CHECKSUM))
|
---|
163 | {
|
---|
164 | if (!RTNetIPv4IsUDPValid(pIpHdr, pUdpHdr, pUdpHdr + 1, cbFrame - offUdpHdr, true /*fChecksum*/))
|
---|
165 | return NULL;
|
---|
166 | if ( (fFlags & VBOXNETUDP_MATCH_REQUIRE_CHECKSUM)
|
---|
167 | && !pUdpHdr->uh_sum)
|
---|
168 | return NULL;
|
---|
169 | }
|
---|
170 | else
|
---|
171 | {
|
---|
172 | if (!RTNetIPv4IsUDPSizeValid(pIpHdr, pUdpHdr, cbFrame - offUdpHdr))
|
---|
173 | return NULL;
|
---|
174 | }
|
---|
175 | }
|
---|
176 |
|
---|
177 | /*
|
---|
178 | * We've got a match!
|
---|
179 | */
|
---|
180 | *pcb = pUdpHdr->uh_ulen - sizeof(*pUdpHdr);
|
---|
181 | return (void *)(pUdpHdr + 1);
|
---|
182 | }
|
---|
183 |
|
---|
184 |
|
---|
185 | /** Internal worker for VBoxNetUDPUnicast and VBoxNetUDPBroadcast. */
|
---|
186 | static int vboxnetudpSend(PSUPDRVSESSION pSession, INTNETIFHANDLE hIf, PINTNETBUF pBuf,
|
---|
187 | RTNETADDRIPV4 SrcIPv4Addr, PCRTMAC pSrcMacAddr, unsigned uSrcPort,
|
---|
188 | RTNETADDRIPV4 DstIPv4Addr, PCRTMAC pDstMacAddr, unsigned uDstPort,
|
---|
189 | void const *pvData, size_t cbData)
|
---|
190 | {
|
---|
191 | INTNETSEG aSegs[4];
|
---|
192 |
|
---|
193 | /* the Ethernet header */
|
---|
194 | RTNETETHERHDR EtherHdr;
|
---|
195 | EtherHdr.DstMac = *pDstMacAddr;
|
---|
196 | EtherHdr.SrcMac = *pSrcMacAddr;
|
---|
197 | EtherHdr.EtherType = RT_H2BE_U16_C(RTNET_ETHERTYPE_IPV4);
|
---|
198 |
|
---|
199 | aSegs[0].pv = &EtherHdr;
|
---|
200 | aSegs[0].cb = sizeof(EtherHdr);
|
---|
201 | aSegs[0].Phys = NIL_RTHCPHYS;
|
---|
202 |
|
---|
203 | /* the IP header */
|
---|
204 | RTNETIPV4 IpHdr;
|
---|
205 | unsigned cbIdHdr = RT_UOFFSETOF(RTNETIPV4, ip_options);
|
---|
206 | IpHdr.ip_v = 4;
|
---|
207 | IpHdr.ip_hl = cbIdHdr >> 2;
|
---|
208 | IpHdr.ip_tos = 0;
|
---|
209 | IpHdr.ip_len = RT_H2BE_U16((uint16_t)(cbData + sizeof(RTNETUDP) + cbIdHdr));
|
---|
210 | IpHdr.ip_id = (uint16_t)RTRandU32();
|
---|
211 | IpHdr.ip_off = 0;
|
---|
212 | IpHdr.ip_ttl = 255;
|
---|
213 | IpHdr.ip_p = RTNETIPV4_PROT_UDP;
|
---|
214 | IpHdr.ip_sum = 0;
|
---|
215 | IpHdr.ip_src = SrcIPv4Addr;
|
---|
216 | IpHdr.ip_dst = DstIPv4Addr;
|
---|
217 | IpHdr.ip_sum = RTNetIPv4HdrChecksum(&IpHdr);
|
---|
218 |
|
---|
219 | aSegs[1].pv = &IpHdr;
|
---|
220 | aSegs[1].cb = cbIdHdr;
|
---|
221 | aSegs[1].Phys = NIL_RTHCPHYS;
|
---|
222 |
|
---|
223 |
|
---|
224 | /* the UDP bit */
|
---|
225 | RTNETUDP UdpHdr;
|
---|
226 | UdpHdr.uh_sport = RT_H2BE_U16(uSrcPort);
|
---|
227 | UdpHdr.uh_dport = RT_H2BE_U16(uDstPort);
|
---|
228 | UdpHdr.uh_ulen = RT_H2BE_U16((uint16_t)(cbData + sizeof(RTNETUDP)));
|
---|
229 | #if 0
|
---|
230 | UdpHdr.uh_sum = 0; /* pretend checksumming is disabled */
|
---|
231 | #else
|
---|
232 | UdpHdr.uh_sum = RTNetIPv4UDPChecksum(&IpHdr, &UdpHdr, pvData);
|
---|
233 | #endif
|
---|
234 |
|
---|
235 | aSegs[2].pv = &UdpHdr;
|
---|
236 | aSegs[2].cb = sizeof(UdpHdr);
|
---|
237 | aSegs[2].Phys = NIL_RTHCPHYS;
|
---|
238 |
|
---|
239 | /* the payload */
|
---|
240 | aSegs[3].pv = (void *)pvData;
|
---|
241 | aSegs[3].cb = (uint32_t)cbData;
|
---|
242 | aSegs[3].Phys = NIL_RTHCPHYS;
|
---|
243 |
|
---|
244 |
|
---|
245 | /* send it */
|
---|
246 | return VBoxNetIntIfSend(pSession, hIf, pBuf, RT_ELEMENTS(aSegs), &aSegs[0], true /* fFlush */);
|
---|
247 | }
|
---|
248 |
|
---|
249 |
|
---|
250 | /**
|
---|
251 | * Sends an unicast UDP packet.
|
---|
252 | *
|
---|
253 | * @returns VBox status code.
|
---|
254 | * @param pSession The support driver session handle.
|
---|
255 | * @param hIf The interface handle.
|
---|
256 | * @param pBuf The interface buffer.
|
---|
257 | * @param SrcIPv4Addr The source IPv4 address.
|
---|
258 | * @param pSrcMacAddr The source MAC address.
|
---|
259 | * @param uSrcPort The source port number.
|
---|
260 | * @param DstIPv4Addr The destination IPv4 address. Can be broadcast.
|
---|
261 | * @param pDstMacAddr The destination MAC address.
|
---|
262 | * @param uDstPort The destination port number.
|
---|
263 | * @param pvData The data payload.
|
---|
264 | * @param cbData The size of the data payload.
|
---|
265 | */
|
---|
266 | int VBoxNetUDPUnicast(PSUPDRVSESSION pSession, INTNETIFHANDLE hIf, PINTNETBUF pBuf,
|
---|
267 | RTNETADDRIPV4 SrcIPv4Addr, PCRTMAC pSrcMacAddr, unsigned uSrcPort,
|
---|
268 | RTNETADDRIPV4 DstIPv4Addr, PCRTMAC pDstMacAddr, unsigned uDstPort,
|
---|
269 | void const *pvData, size_t cbData)
|
---|
270 | {
|
---|
271 | return vboxnetudpSend(pSession, hIf, pBuf,
|
---|
272 | SrcIPv4Addr, pSrcMacAddr, uSrcPort,
|
---|
273 | DstIPv4Addr, pDstMacAddr, uDstPort,
|
---|
274 | pvData, cbData);
|
---|
275 | }
|
---|
276 |
|
---|
277 |
|
---|
278 | /**
|
---|
279 | * Sends a broadcast UDP packet.
|
---|
280 | *
|
---|
281 | * @returns VBox status code.
|
---|
282 | * @param pSession The support driver session handle.
|
---|
283 | * @param hIf The interface handle.
|
---|
284 | * @param pBuf The interface buffer.
|
---|
285 | * @param SrcIPv4Addr The source IPv4 address.
|
---|
286 | * @param pSrcMacAddr The source MAC address.
|
---|
287 | * @param uSrcPort The source port number.
|
---|
288 | * @param uDstPort The destination port number.
|
---|
289 | * @param pvData The data payload.
|
---|
290 | * @param cbData The size of the data payload.
|
---|
291 | */
|
---|
292 | int VBoxNetUDPBroadcast(PSUPDRVSESSION pSession, INTNETIFHANDLE hIf, PINTNETBUF pBuf,
|
---|
293 | RTNETADDRIPV4 SrcIPv4Addr, PCRTMAC pSrcMacAddr, unsigned uSrcPort,
|
---|
294 | unsigned uDstPort,
|
---|
295 | void const *pvData, size_t cbData)
|
---|
296 | {
|
---|
297 | RTNETADDRIPV4 IPv4AddrBrdCast;
|
---|
298 | IPv4AddrBrdCast.u = UINT32_C(0xffffffff);
|
---|
299 | RTMAC MacBrdCast;
|
---|
300 | MacBrdCast.au16[0] = MacBrdCast.au16[1] = MacBrdCast.au16[2] = UINT16_C(0xffff);
|
---|
301 |
|
---|
302 | return vboxnetudpSend(pSession, hIf, pBuf,
|
---|
303 | SrcIPv4Addr, pSrcMacAddr, uSrcPort,
|
---|
304 | IPv4AddrBrdCast, &MacBrdCast, uDstPort,
|
---|
305 | pvData, cbData);
|
---|
306 | }
|
---|
307 |
|
---|