VirtualBox

source: vbox/trunk/src/VBox/NetworkServices/NetLib/VBoxNetUDP.cpp@ 23092

Last change on this file since 23092 was 18463, checked in by vboxsync, 16 years ago

VBoxNetUDP.cpp: size_t warnings.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.6 KB
Line 
1/* $Id: VBoxNetUDP.cpp 18463 2009-03-28 05:14:31Z 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
32
33/**
34 * Checks if the head of the receive ring is a UDP packet matching the given
35 * criteria.
36 *
37 * @returns Pointer to the data if it matches.
38 * @param pBuf The IntNet buffers.
39 * @param uDstPort The destination port to match.
40 * @param pDstMac The destination address to match if
41 * VBOXNETUDP_MATCH_UNICAST is specied.
42 * @param fFlags Flags indicating what to match and some debug stuff.
43 * See VBOXNETUDP_MATCH_*.
44 * @param pHdrs Where to return the pointers to the headers.
45 * Optional.
46 * @param pcb Where to return the size of the data on success.
47 */
48void *VBoxNetUDPMatch(PCINTNETBUF pBuf, unsigned uDstPort, PCRTMAC pDstMac, uint32_t fFlags, PVBOXNETUDPHDRS pHdrs, size_t *pcb)
49{
50 /*
51 * Clear return values so we can return easier on mismatch.
52 */
53 *pcb = 0;
54 if (pHdrs)
55 {
56 pHdrs->pEth = NULL;
57 pHdrs->pIpv4 = NULL;
58 pHdrs->pUdp = NULL;
59 }
60
61 /*
62 * Valid IntNet Ethernet frame?
63 */
64 PCINTNETHDR pHdr = (PINTNETHDR)((uintptr_t)pBuf + pBuf->Recv.offRead);
65 if (pHdr->u16Type != INTNETHDR_TYPE_FRAME)
66 return NULL;
67
68 size_t cbFrame = pHdr->cbFrame;
69 const void *pvFrame = INTNETHdrGetFramePtr(pHdr, pBuf);
70 PCRTNETETHERHDR pEthHdr = (PCRTNETETHERHDR)pvFrame;
71 if (pHdrs)
72 pHdrs->pEth = pEthHdr;
73
74#ifdef IN_RING3
75 /* Dump if to stderr/log if that's wanted. */
76 if (fFlags & VBOXNETUDP_MATCH_PRINT_STDERR)
77 {
78 RTStrmPrintf(g_pStdErr, "frame: cb=%04x dst=%.6Rhxs src=%.6Rhxs type=%04x%s\n",
79 cbFrame, &pEthHdr->DstMac, &pEthHdr->SrcMac, RT_BE2H_U16(pEthHdr->EtherType),
80 !memcmp(&pEthHdr->DstMac, pDstMac, sizeof(*pDstMac)) ? " Mine!" : "");
81 }
82#endif
83
84 /*
85 * Ethernet matching.
86 */
87
88 /* Ethernet min frame size. */
89 if (cbFrame < 64)
90 return NULL;
91
92 /* Match Ethertype: IPV4? */
93 /** @todo VLAN tagging? */
94 if (pEthHdr->EtherType != RT_H2BE_U16_C(RTNET_ETHERTYPE_IPV4))
95 return NULL;
96
97 /* Match destination address (ethernet) */
98 if ( ( !(fFlags & VBOXNETUDP_MATCH_UNICAST)
99 || memcmp(&pEthHdr->DstMac, pDstMac, sizeof(pEthHdr->DstMac)))
100 && ( !(fFlags & VBOXNETUDP_MATCH_BROADCAST)
101 || pEthHdr->DstMac.au16[0] != 0xffff
102 || pEthHdr->DstMac.au16[1] != 0xffff
103 || pEthHdr->DstMac.au16[2] != 0xffff))
104 return NULL;
105
106 /*
107 * IP validation and matching.
108 */
109 PCRTNETIPV4 pIpHdr = (PCRTNETIPV4)(pEthHdr + 1);
110 if (pHdrs)
111 pHdrs->pIpv4 = pIpHdr;
112
113 /* Protocol: UDP */
114 if (pIpHdr->ip_p != RTNETIPV4_PROT_UDP)
115 return NULL;
116
117 /* Valid IPv4 header? */
118 size_t const offIpHdr = (uintptr_t)pIpHdr - (uintptr_t)pEthHdr;
119 if (!RTNetIPv4IsHdrValid(pIpHdr, cbFrame - offIpHdr, cbFrame - offIpHdr))
120 return NULL;
121
122 /*
123 * UDP matching and validation.
124 */
125 PCRTNETUDP pUdpHdr = (PCRTNETUDP)((uint32_t *)pIpHdr + pIpHdr->ip_hl);
126 if (pHdrs)
127 pHdrs->pUdp = pUdpHdr;
128
129 /* Destination port */
130 if (RT_BE2H_U16(pUdpHdr->uh_dport) != uDstPort)
131 return NULL;
132
133 /* Validate the UDP header according to flags. */
134 size_t offUdpHdr = (uintptr_t)pUdpHdr - (uintptr_t)pEthHdr;
135 if (fFlags & (VBOXNETUDP_MATCH_CHECKSUM | VBOXNETUDP_MATCH_REQUIRE_CHECKSUM))
136 {
137 if (!RTNetIPv4IsUDPValid(pIpHdr, pUdpHdr, pUdpHdr + 1, cbFrame - offUdpHdr))
138 return NULL;
139 if ( (fFlags & VBOXNETUDP_MATCH_REQUIRE_CHECKSUM)
140 && !pUdpHdr->uh_sum)
141 return NULL;
142 }
143 else
144 {
145 if (!RTNetIPv4IsUDPSizeValid(pIpHdr, pUdpHdr, cbFrame - offUdpHdr))
146 return NULL;
147 }
148
149 /*
150 * We've got a match!
151 */
152 *pcb = pUdpHdr->uh_ulen - sizeof(*pUdpHdr);
153 return (void *)(pUdpHdr + 1);
154}
155
156
157/** Internal worker for VBoxNetUDPUnicast and VBoxNetUDPBroadcast. */
158static int vboxnetudpSend(PSUPDRVSESSION pSession, INTNETIFHANDLE hIf, PINTNETBUF pBuf,
159 RTNETADDRIPV4 SrcIPv4Addr, PCRTMAC pSrcMacAddr, unsigned uSrcPort,
160 RTNETADDRIPV4 DstIPv4Addr, PCRTMAC pDstMacAddr, unsigned uDstPort,
161 void const *pvData, size_t cbData)
162{
163 INTNETSEG aSegs[4];
164
165 /* the Ethernet header */
166 RTNETETHERHDR EtherHdr;
167 EtherHdr.DstMac = *pDstMacAddr;
168 EtherHdr.SrcMac = *pSrcMacAddr;
169 EtherHdr.EtherType = RT_H2BE_U16_C(RTNET_ETHERTYPE_IPV4);
170
171 aSegs[0].pv = &EtherHdr;
172 aSegs[0].cb = sizeof(EtherHdr);
173 aSegs[0].Phys = NIL_RTHCPHYS;
174
175 /* the IP header */
176 RTNETIPV4 IpHdr;
177 unsigned cbIdHdr = RT_UOFFSETOF(RTNETIPV4, ip_options);
178 IpHdr.ip_v = 4;
179 IpHdr.ip_hl = cbIdHdr >> 2;
180 IpHdr.ip_tos = 0;
181 IpHdr.ip_len = RT_H2BE_U16((uint16_t)(cbData + sizeof(RTNETUDP) + cbIdHdr));
182 IpHdr.ip_id = (uint16_t)RTRandU32();
183 IpHdr.ip_off = 0;
184 IpHdr.ip_ttl = 255;
185 IpHdr.ip_p = RTNETIPV4_PROT_UDP;
186 IpHdr.ip_sum = 0;
187 IpHdr.ip_src = SrcIPv4Addr;
188 IpHdr.ip_dst = DstIPv4Addr;
189 IpHdr.ip_sum = RTNetIPv4HdrChecksum(&IpHdr);
190
191 aSegs[1].pv = &IpHdr;
192 aSegs[1].cb = cbIdHdr;
193 aSegs[1].Phys = NIL_RTHCPHYS;
194
195
196 /* the UDP bit */
197 RTNETUDP UdpHdr;
198 UdpHdr.uh_sport = RT_H2BE_U16(uSrcPort);
199 UdpHdr.uh_dport = RT_H2BE_U16(uDstPort);
200 UdpHdr.uh_ulen = RT_H2BE_U16((uint16_t)(cbData + sizeof(RTNETUDP)));
201#if 0
202 UdpHdr.uh_sum = 0; /* pretend checksumming is disabled */
203#else
204 UdpHdr.uh_sum = RTNetIPv4UDPChecksum(&IpHdr, &UdpHdr, pvData);
205#endif
206
207 aSegs[2].pv = &UdpHdr;
208 aSegs[2].cb = sizeof(UdpHdr);
209 aSegs[2].Phys = NIL_RTHCPHYS;
210
211 /* the payload */
212 aSegs[3].pv = (void *)pvData;
213 aSegs[3].cb = (uint32_t)cbData;
214 aSegs[3].Phys = NIL_RTHCPHYS;
215
216
217 /* send it */
218 return VBoxNetIntIfSend(pSession, hIf, pBuf, RT_ELEMENTS(aSegs), &aSegs[0], true /* fFlush */);
219}
220
221
222/**
223 * Sends an unicast UDP packet.
224 *
225 * @returns VBox status code.
226 * @param pSession The support driver session handle.
227 * @param hIf The interface handle.
228 * @param pBuf The interface buffer.
229 * @param SrcIPv4Addr The source IPv4 address.
230 * @param pSrcMacAddr The source MAC address.
231 * @param uSrcPort The source port number.
232 * @param DstIPv4Addr The destination IPv4 address. Can be broadcast.
233 * @param pDstMacAddr The destination MAC address.
234 * @param uDstPort The destination port number.
235 * @param pvData The data payload.
236 * @param cbData The size of the data payload.
237 */
238int VBoxNetUDPUnicast(PSUPDRVSESSION pSession, INTNETIFHANDLE hIf, PINTNETBUF pBuf,
239 RTNETADDRIPV4 SrcIPv4Addr, PCRTMAC pSrcMacAddr, unsigned uSrcPort,
240 RTNETADDRIPV4 DstIPv4Addr, PCRTMAC pDstMacAddr, unsigned uDstPort,
241 void const *pvData, size_t cbData)
242{
243 return vboxnetudpSend(pSession, hIf, pBuf,
244 SrcIPv4Addr, pSrcMacAddr, uSrcPort,
245 DstIPv4Addr, pDstMacAddr, uDstPort,
246 pvData, cbData);
247}
248
249
250/**
251 * Sends a broadcast 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 uDstPort The destination port number.
261 * @param pvData The data payload.
262 * @param cbData The size of the data payload.
263 */
264int VBoxNetUDPBroadcast(PSUPDRVSESSION pSession, INTNETIFHANDLE hIf, PINTNETBUF pBuf,
265 RTNETADDRIPV4 SrcIPv4Addr, PCRTMAC pSrcMacAddr, unsigned uSrcPort,
266 unsigned uDstPort,
267 void const *pvData, size_t cbData)
268{
269 RTNETADDRIPV4 IPv4AddrBrdCast;
270 IPv4AddrBrdCast.u = UINT32_C(0xffffffff);
271 RTMAC MacBrdCast;
272 MacBrdCast.au16[0] = MacBrdCast.au16[1] = MacBrdCast.au16[2] = UINT16_C(0xffff);
273
274 return vboxnetudpSend(pSession, hIf, pBuf,
275 SrcIPv4Addr, pSrcMacAddr, uSrcPort,
276 IPv4AddrBrdCast, &MacBrdCast, uDstPort,
277 pvData, cbData);
278}
279
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette