1 | /* $Id: SrvIntNetR0.cpp 49480 2013-11-14 15:13:54Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Internal networking - The ring 0 service.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2013 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 | * Header Files *
|
---|
21 | *******************************************************************************/
|
---|
22 | #define LOG_GROUP LOG_GROUP_SRV_INTNET
|
---|
23 | #include <VBox/intnet.h>
|
---|
24 | #include <VBox/intnetinline.h>
|
---|
25 | #include <VBox/vmm/pdmnetinline.h>
|
---|
26 | #include <VBox/sup.h>
|
---|
27 | #include <VBox/vmm/pdm.h>
|
---|
28 | #include <VBox/log.h>
|
---|
29 |
|
---|
30 | #include <iprt/asm.h>
|
---|
31 | #include <iprt/assert.h>
|
---|
32 | #include <iprt/handletable.h>
|
---|
33 | #include <iprt/mp.h>
|
---|
34 | #include <iprt/mem.h>
|
---|
35 | #include <iprt/net.h>
|
---|
36 | #include <iprt/semaphore.h>
|
---|
37 | #include <iprt/spinlock.h>
|
---|
38 | #include <iprt/string.h>
|
---|
39 | #include <iprt/thread.h>
|
---|
40 | #include <iprt/time.h>
|
---|
41 |
|
---|
42 |
|
---|
43 | /*******************************************************************************
|
---|
44 | * Defined Constants And Macros *
|
---|
45 | *******************************************************************************/
|
---|
46 | /** @def INTNET_WITH_DHCP_SNOOPING
|
---|
47 | * Enabled DHCP snooping when in shared-mac-on-the-wire mode. */
|
---|
48 | #define INTNET_WITH_DHCP_SNOOPING
|
---|
49 |
|
---|
50 | /** The maximum number of interface in a network. */
|
---|
51 | #define INTNET_MAX_IFS (1023 + 1 + 16)
|
---|
52 |
|
---|
53 | /** The number of entries to grow the destination tables with. */
|
---|
54 | #if 0
|
---|
55 | # define INTNET_GROW_DSTTAB_SIZE 16
|
---|
56 | #else
|
---|
57 | # define INTNET_GROW_DSTTAB_SIZE 1
|
---|
58 | #endif
|
---|
59 |
|
---|
60 | /** The wakeup bit in the INTNETIF::cBusy and INTNETRUNKIF::cBusy counters. */
|
---|
61 | #define INTNET_BUSY_WAKEUP_MASK RT_BIT_32(30)
|
---|
62 |
|
---|
63 |
|
---|
64 | /*******************************************************************************
|
---|
65 | * Structures and Typedefs *
|
---|
66 | *******************************************************************************/
|
---|
67 | /**
|
---|
68 | * MAC address lookup table entry.
|
---|
69 | */
|
---|
70 | typedef struct INTNETMACTABENTRY
|
---|
71 | {
|
---|
72 | /** The MAC address of this entry. */
|
---|
73 | RTMAC MacAddr;
|
---|
74 | /** Is it is effectively promiscuous mode. */
|
---|
75 | bool fPromiscuousEff;
|
---|
76 | /** Is it promiscuous and should it see unrelated trunk traffic. */
|
---|
77 | bool fPromiscuousSeeTrunk;
|
---|
78 | /** Is it active.
|
---|
79 | * We ignore the entry if this is clear and may end up sending packets addressed
|
---|
80 | * to this interface onto the trunk. The reasoning for this is that this could
|
---|
81 | * be the interface of a VM that just has been teleported to a different host. */
|
---|
82 | bool fActive;
|
---|
83 | /** Pointer to the network interface. */
|
---|
84 | struct INTNETIF *pIf;
|
---|
85 | } INTNETMACTABENTRY;
|
---|
86 | /** Pointer to a MAC address lookup table entry. */
|
---|
87 | typedef INTNETMACTABENTRY *PINTNETMACTABENTRY;
|
---|
88 |
|
---|
89 | /**
|
---|
90 | * MAC address lookup table.
|
---|
91 | *
|
---|
92 | * @todo Having this in a separate structure didn't work out as well as it
|
---|
93 | * should. Consider merging it into INTNETNETWORK.
|
---|
94 | */
|
---|
95 | typedef struct INTNETMACTAB
|
---|
96 | {
|
---|
97 | /** The current number of entries. */
|
---|
98 | uint32_t cEntries;
|
---|
99 | /** The number of entries we've allocated space for. */
|
---|
100 | uint32_t cEntriesAllocated;
|
---|
101 | /** Table entries. */
|
---|
102 | PINTNETMACTABENTRY paEntries;
|
---|
103 |
|
---|
104 | /** The number of interface entries currently in promicuous mode. */
|
---|
105 | uint32_t cPromiscuousEntries;
|
---|
106 | /** The number of interface entries currently in promicuous mode that
|
---|
107 | * shall not see unrelated trunk traffic. */
|
---|
108 | uint32_t cPromiscuousNoTrunkEntries;
|
---|
109 |
|
---|
110 | /** The host MAC address (reported). */
|
---|
111 | RTMAC HostMac;
|
---|
112 | /** The effective host promiscuous setting (reported). */
|
---|
113 | bool fHostPromiscuousEff;
|
---|
114 | /** The real host promiscuous setting (reported). */
|
---|
115 | bool fHostPromiscuousReal;
|
---|
116 | /** Whether the host is active. */
|
---|
117 | bool fHostActive;
|
---|
118 |
|
---|
119 | /** Whether the wire is promiscuous (config). */
|
---|
120 | bool fWirePromiscuousEff;
|
---|
121 | /** Whether the wire is promiscuous (config).
|
---|
122 | * (Shadows INTNET_OPEN_FLAGS_TRUNK_WIRE_PROMISC_MODE in
|
---|
123 | * INTNETNETWORK::fFlags.) */
|
---|
124 | bool fWirePromiscuousReal;
|
---|
125 | /** Whether the wire is active. */
|
---|
126 | bool fWireActive;
|
---|
127 |
|
---|
128 | /** Pointer to the trunk interface. */
|
---|
129 | struct INTNETTRUNKIF *pTrunk;
|
---|
130 | } INTNETMACTAB;
|
---|
131 | /** Pointer to a MAC address . */
|
---|
132 | typedef INTNETMACTAB *PINTNETMACTAB;
|
---|
133 |
|
---|
134 | /**
|
---|
135 | * Destination table.
|
---|
136 | */
|
---|
137 | typedef struct INTNETDSTTAB
|
---|
138 | {
|
---|
139 | /** The trunk destinations. */
|
---|
140 | uint32_t fTrunkDst;
|
---|
141 | /** Pointer to the trunk interface (referenced) if fTrunkDst is non-zero. */
|
---|
142 | struct INTNETTRUNKIF *pTrunk;
|
---|
143 | /** The number of destination interfaces. */
|
---|
144 | uint32_t cIfs;
|
---|
145 | /** The interfaces (referenced). Variable sized array. */
|
---|
146 | struct
|
---|
147 | {
|
---|
148 | /** The destination interface. */
|
---|
149 | struct INTNETIF *pIf;
|
---|
150 | /** Whether to replace the destination MAC address.
|
---|
151 | * This is used when sharing MAC address with the host on the wire(less). */
|
---|
152 | bool fReplaceDstMac;
|
---|
153 | } aIfs[1];
|
---|
154 | } INTNETDSTTAB;
|
---|
155 | /** Pointer to a destination table. */
|
---|
156 | typedef INTNETDSTTAB *PINTNETDSTTAB;
|
---|
157 | /** Pointer to a const destination table. */
|
---|
158 | typedef INTNETDSTTAB const *PCINTNETDSTTAB;
|
---|
159 |
|
---|
160 |
|
---|
161 | /** Network layer address type. */
|
---|
162 | typedef enum INTNETADDRTYPE
|
---|
163 | {
|
---|
164 | /** The invalid 0 entry. */
|
---|
165 | kIntNetAddrType_Invalid = 0,
|
---|
166 | /** IP version 4. */
|
---|
167 | kIntNetAddrType_IPv4,
|
---|
168 | /** IP version 6. */
|
---|
169 | kIntNetAddrType_IPv6,
|
---|
170 | /** IPX. */
|
---|
171 | kIntNetAddrType_IPX,
|
---|
172 | /** The end of the valid values. */
|
---|
173 | kIntNetAddrType_End,
|
---|
174 | /** The usual 32-bit hack. */
|
---|
175 | kIntNetAddrType_32BitHack = 0x7fffffff
|
---|
176 | } INTNETADDRTYPE;
|
---|
177 | /** Pointer to a network layer address type. */
|
---|
178 | typedef INTNETADDRTYPE *PINTNETADDRTYPE;
|
---|
179 |
|
---|
180 |
|
---|
181 | /**
|
---|
182 | * Address and type.
|
---|
183 | */
|
---|
184 | typedef struct INTNETADDR
|
---|
185 | {
|
---|
186 | /** The address type. */
|
---|
187 | INTNETADDRTYPE enmType;
|
---|
188 | /** The address. */
|
---|
189 | RTNETADDRU Addr;
|
---|
190 | } INTNETADDR;
|
---|
191 | /** Pointer to an address. */
|
---|
192 | typedef INTNETADDR *PINTNETADDR;
|
---|
193 | /** Pointer to a const address. */
|
---|
194 | typedef INTNETADDR const *PCINTNETADDR;
|
---|
195 |
|
---|
196 |
|
---|
197 | /**
|
---|
198 | * Address cache for a specific network layer.
|
---|
199 | */
|
---|
200 | typedef struct INTNETADDRCACHE
|
---|
201 | {
|
---|
202 | /** Pointer to the table of addresses. */
|
---|
203 | uint8_t *pbEntries;
|
---|
204 | /** The number of valid address entries. */
|
---|
205 | uint8_t cEntries;
|
---|
206 | /** The number of allocated address entries. */
|
---|
207 | uint8_t cEntriesAlloc;
|
---|
208 | /** The address size. */
|
---|
209 | uint8_t cbAddress;
|
---|
210 | /** The size of an entry. */
|
---|
211 | uint8_t cbEntry;
|
---|
212 | } INTNETADDRCACHE;
|
---|
213 | /** Pointer to an address cache. */
|
---|
214 | typedef INTNETADDRCACHE *PINTNETADDRCACHE;
|
---|
215 | /** Pointer to a const address cache. */
|
---|
216 | typedef INTNETADDRCACHE const *PCINTNETADDRCACHE;
|
---|
217 |
|
---|
218 |
|
---|
219 | /**
|
---|
220 | * A network interface.
|
---|
221 | *
|
---|
222 | * Unless explicitly stated, all members are protect by the network semaphore.
|
---|
223 | */
|
---|
224 | typedef struct INTNETIF
|
---|
225 | {
|
---|
226 | /** The MAC address.
|
---|
227 | * This is shadowed by INTNETMACTABENTRY::MacAddr. */
|
---|
228 | RTMAC MacAddr;
|
---|
229 | /** Set if the INTNET::MacAddr member has been explicitly set. */
|
---|
230 | bool fMacSet;
|
---|
231 | /** Tracks the desired promiscuous setting of the interface. */
|
---|
232 | bool fPromiscuousReal;
|
---|
233 | /** Whether the interface is active or not.
|
---|
234 | * This is shadowed by INTNETMACTABENTRY::fActive. */
|
---|
235 | bool fActive;
|
---|
236 | /** Whether someone is currently in the destructor or has indicated that
|
---|
237 | * the end is nigh by means of IntNetR0IfAbortWait. */
|
---|
238 | bool volatile fDestroying;
|
---|
239 | /** The flags specified when opening this interface. */
|
---|
240 | uint32_t fOpenFlags;
|
---|
241 | /** Number of yields done to try make the interface read pending data.
|
---|
242 | * We will stop yielding when this reaches a threshold assuming that the VM is
|
---|
243 | * paused or that it simply isn't worth all the delay. It is cleared when a
|
---|
244 | * successful send has been done. */
|
---|
245 | uint32_t cYields;
|
---|
246 | /** Pointer to the current exchange buffer (ring-0). */
|
---|
247 | PINTNETBUF pIntBuf;
|
---|
248 | /** Pointer to ring-3 mapping of the current exchange buffer. */
|
---|
249 | R3PTRTYPE(PINTNETBUF) pIntBufR3;
|
---|
250 | /** Pointer to the default exchange buffer for the interface. */
|
---|
251 | PINTNETBUF pIntBufDefault;
|
---|
252 | /** Pointer to ring-3 mapping of the default exchange buffer. */
|
---|
253 | R3PTRTYPE(PINTNETBUF) pIntBufDefaultR3;
|
---|
254 | /** Event semaphore which a receiver/consumer thread will sleep on while
|
---|
255 | * waiting for data to arrive. */
|
---|
256 | RTSEMEVENT volatile hRecvEvent;
|
---|
257 | /** Number of threads sleeping on the event semaphore. */
|
---|
258 | uint32_t cSleepers;
|
---|
259 | /** The interface handle.
|
---|
260 | * When this is INTNET_HANDLE_INVALID a sleeper which is waking up
|
---|
261 | * should return with the appropriate error condition. */
|
---|
262 | INTNETIFHANDLE volatile hIf;
|
---|
263 | /** Pointer to the network this interface is connected to.
|
---|
264 | * This is protected by the INTNET::hMtxCreateOpenDestroy. */
|
---|
265 | struct INTNETNETWORK *pNetwork;
|
---|
266 | /** The session this interface is associated with. */
|
---|
267 | PSUPDRVSESSION pSession;
|
---|
268 | /** The SUPR0 object id. */
|
---|
269 | void *pvObj;
|
---|
270 | /** The network layer address cache. (Indexed by type, 0 entry isn't used.)
|
---|
271 | * This is protected by the address spinlock of the network. */
|
---|
272 | INTNETADDRCACHE aAddrCache[kIntNetAddrType_End];
|
---|
273 | /** Spinlock protecting the input (producer) side of the receive ring. */
|
---|
274 | RTSPINLOCK hRecvInSpinlock;
|
---|
275 | /** Busy count for tracking destination table references and active sends.
|
---|
276 | * Usually incremented while owning the switch table spinlock. The 30th bit
|
---|
277 | * is used to indicate wakeup. */
|
---|
278 | uint32_t volatile cBusy;
|
---|
279 | /** The preallocated destination table.
|
---|
280 | * This is NULL when it's in use as a precaution against unserialized
|
---|
281 | * transmitting. This is grown when new interfaces are added to the network. */
|
---|
282 | PINTNETDSTTAB volatile pDstTab;
|
---|
283 | /** Pointer to the trunk's per interface data. Can be NULL. */
|
---|
284 | void *pvIfData;
|
---|
285 | /** Header buffer for when we're carving GSO frames. */
|
---|
286 | uint8_t abGsoHdrs[256];
|
---|
287 | } INTNETIF;
|
---|
288 | /** Pointer to an internal network interface. */
|
---|
289 | typedef INTNETIF *PINTNETIF;
|
---|
290 |
|
---|
291 |
|
---|
292 | /**
|
---|
293 | * A trunk interface.
|
---|
294 | */
|
---|
295 | typedef struct INTNETTRUNKIF
|
---|
296 | {
|
---|
297 | /** The port interface we present to the component. */
|
---|
298 | INTNETTRUNKSWPORT SwitchPort;
|
---|
299 | /** The port interface we get from the component. */
|
---|
300 | PINTNETTRUNKIFPORT pIfPort;
|
---|
301 | /** Pointer to the network we're connect to.
|
---|
302 | * This may be NULL if we're orphaned? */
|
---|
303 | struct INTNETNETWORK *pNetwork;
|
---|
304 | /** The current MAC address for the interface. (reported)
|
---|
305 | * Updated while owning the switch table spinlock. */
|
---|
306 | RTMAC MacAddr;
|
---|
307 | /** Whether to supply physical addresses with the outbound SGs. (reported) */
|
---|
308 | bool fPhysSG;
|
---|
309 | /** Explicit alignment. */
|
---|
310 | bool fUnused;
|
---|
311 | /** Busy count for tracking destination table references and active sends.
|
---|
312 | * Usually incremented while owning the switch table spinlock. The 30th bit
|
---|
313 | * is used to indicate wakeup. */
|
---|
314 | uint32_t volatile cBusy;
|
---|
315 | /** Mask of destinations that pfnXmit cope with disabled preemption for. */
|
---|
316 | uint32_t fNoPreemptDsts;
|
---|
317 | /** The GSO capabilities of the wire destination. (reported) */
|
---|
318 | uint32_t fWireGsoCapabilites;
|
---|
319 | /** The GSO capabilities of the host destination. (reported)
|
---|
320 | * This is as bit map where each bit represents the GSO type with the same
|
---|
321 | * number. */
|
---|
322 | uint32_t fHostGsoCapabilites;
|
---|
323 | /** The destination table spinlock, interrupt safe.
|
---|
324 | * Protects apTaskDstTabs and apIntDstTabs. */
|
---|
325 | RTSPINLOCK hDstTabSpinlock;
|
---|
326 | /** The number of entries in apIntDstTabs. */
|
---|
327 | uint32_t cIntDstTabs;
|
---|
328 | /** The task time destination tables.
|
---|
329 | * @remarks intnetR0NetworkEnsureTabSpace and others ASSUMES this immediately
|
---|
330 | * precedes apIntDstTabs so that these two tables can be used as one
|
---|
331 | * contiguous one. */
|
---|
332 | PINTNETDSTTAB apTaskDstTabs[2];
|
---|
333 | /** The interrupt / disabled-preemption time destination tables.
|
---|
334 | * This is a variable sized array. */
|
---|
335 | PINTNETDSTTAB apIntDstTabs[1];
|
---|
336 | } INTNETTRUNKIF;
|
---|
337 | /** Pointer to a trunk interface. */
|
---|
338 | typedef INTNETTRUNKIF *PINTNETTRUNKIF;
|
---|
339 |
|
---|
340 | /** Converts a pointer to INTNETTRUNKIF::SwitchPort to a PINTNETTRUNKIF. */
|
---|
341 | #define INTNET_SWITCHPORT_2_TRUNKIF(pSwitchPort) ((PINTNETTRUNKIF)(pSwitchPort))
|
---|
342 |
|
---|
343 |
|
---|
344 | /**
|
---|
345 | * Internal representation of a network.
|
---|
346 | */
|
---|
347 | typedef struct INTNETNETWORK
|
---|
348 | {
|
---|
349 | /** The Next network in the chain.
|
---|
350 | * This is protected by the INTNET::hMtxCreateOpenDestroy. */
|
---|
351 | struct INTNETNETWORK *pNext;
|
---|
352 |
|
---|
353 | /** The spinlock protecting MacTab and INTNETTRUNKIF::aAddrCache.
|
---|
354 | * Interrupt safe. */
|
---|
355 | RTSPINLOCK hAddrSpinlock;
|
---|
356 | /** MAC address table.
|
---|
357 | * This doubles as interface collection. */
|
---|
358 | INTNETMACTAB MacTab;
|
---|
359 |
|
---|
360 | /** Wait for an interface to stop being busy so it can be removed or have its
|
---|
361 | * destination table replaced. We have to wait upon this while owning the
|
---|
362 | * network mutex. Will only ever have one waiter because of the big mutex. */
|
---|
363 | RTSEMEVENT hEvtBusyIf;
|
---|
364 | /** Pointer to the instance data. */
|
---|
365 | struct INTNET *pIntNet;
|
---|
366 | /** The SUPR0 object id. */
|
---|
367 | void *pvObj;
|
---|
368 | /** Pointer to the temporary buffer that is used when snooping fragmented packets.
|
---|
369 | * This is allocated after this structure if we're sharing the MAC address with
|
---|
370 | * the host. The buffer is INTNETNETWORK_TMP_SIZE big and aligned on a 64-byte boundary. */
|
---|
371 | uint8_t *pbTmp;
|
---|
372 | /** Network creation flags (INTNET_OPEN_FLAGS_*). */
|
---|
373 | uint32_t fFlags;
|
---|
374 | /** Any restrictive policies required as a minimum by some interface.
|
---|
375 | * (INTNET_OPEN_FLAGS_REQUIRE_AS_RESTRICTIVE_POLICIES) */
|
---|
376 | uint32_t fMinFlags;
|
---|
377 | /** The number of active interfaces (excluding the trunk). */
|
---|
378 | uint32_t cActiveIFs;
|
---|
379 | /** The length of the network name. */
|
---|
380 | uint8_t cchName;
|
---|
381 | /** The network name. */
|
---|
382 | char szName[INTNET_MAX_NETWORK_NAME];
|
---|
383 | /** The trunk type. */
|
---|
384 | INTNETTRUNKTYPE enmTrunkType;
|
---|
385 | /** The trunk name. */
|
---|
386 | char szTrunk[INTNET_MAX_TRUNK_NAME];
|
---|
387 | } INTNETNETWORK;
|
---|
388 | /** Pointer to an internal network. */
|
---|
389 | typedef INTNETNETWORK *PINTNETNETWORK;
|
---|
390 | /** Pointer to a const internal network. */
|
---|
391 | typedef const INTNETNETWORK *PCINTNETNETWORK;
|
---|
392 |
|
---|
393 | /** The size of the buffer INTNETNETWORK::pbTmp points at. */
|
---|
394 | #define INTNETNETWORK_TMP_SIZE 2048
|
---|
395 |
|
---|
396 |
|
---|
397 | /**
|
---|
398 | * Internal networking instance.
|
---|
399 | */
|
---|
400 | typedef struct INTNET
|
---|
401 | {
|
---|
402 | /** Magic number (INTNET_MAGIC). */
|
---|
403 | uint32_t volatile u32Magic;
|
---|
404 | /** Mutex protecting the creation, opening and destruction of both networks and
|
---|
405 | * interfaces. (This means all operations affecting the pNetworks list.) */
|
---|
406 | RTSEMMUTEX hMtxCreateOpenDestroy;
|
---|
407 | /** List of networks. Protected by INTNET::Spinlock. */
|
---|
408 | PINTNETNETWORK volatile pNetworks;
|
---|
409 | /** Handle table for the interfaces. */
|
---|
410 | RTHANDLETABLE hHtIfs;
|
---|
411 | } INTNET;
|
---|
412 | /** Pointer to an internal network ring-0 instance. */
|
---|
413 | typedef struct INTNET *PINTNET;
|
---|
414 |
|
---|
415 | /** Magic number for the internal network instance data (Hayao Miyazaki). */
|
---|
416 | #define INTNET_MAGIC UINT32_C(0x19410105)
|
---|
417 |
|
---|
418 |
|
---|
419 | /*******************************************************************************
|
---|
420 | * Global Variables *
|
---|
421 | *******************************************************************************/
|
---|
422 | /** Pointer to the internal network instance data. */
|
---|
423 | static PINTNET volatile g_pIntNet = NULL;
|
---|
424 |
|
---|
425 | static const struct INTNETOPENNETWORKFLAGS
|
---|
426 | {
|
---|
427 | uint32_t fRestrictive; /**< The restrictive flag (deny/disabled). */
|
---|
428 | uint32_t fRelaxed; /**< The relaxed flag (allow/enabled). */
|
---|
429 | uint32_t fFixed; /**< The config-fixed flag. */
|
---|
430 | uint32_t fPair; /**< The pair of restrictive and relaxed flags. */
|
---|
431 | }
|
---|
432 | /** Open network policy flags relating to the network. */
|
---|
433 | g_afIntNetOpenNetworkNetFlags[] =
|
---|
434 | {
|
---|
435 | { INTNET_OPEN_FLAGS_ACCESS_RESTRICTED, INTNET_OPEN_FLAGS_ACCESS_PUBLIC, INTNET_OPEN_FLAGS_ACCESS_FIXED, INTNET_OPEN_FLAGS_ACCESS_RESTRICTED | INTNET_OPEN_FLAGS_ACCESS_PUBLIC },
|
---|
436 | { INTNET_OPEN_FLAGS_PROMISC_DENY_CLIENTS, INTNET_OPEN_FLAGS_PROMISC_ALLOW_CLIENTS, INTNET_OPEN_FLAGS_PROMISC_FIXED, INTNET_OPEN_FLAGS_PROMISC_DENY_CLIENTS | INTNET_OPEN_FLAGS_PROMISC_ALLOW_CLIENTS },
|
---|
437 | { INTNET_OPEN_FLAGS_PROMISC_DENY_TRUNK_HOST, INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_HOST, INTNET_OPEN_FLAGS_PROMISC_FIXED, INTNET_OPEN_FLAGS_PROMISC_DENY_TRUNK_HOST | INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_HOST },
|
---|
438 | { INTNET_OPEN_FLAGS_PROMISC_DENY_TRUNK_WIRE, INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_WIRE, INTNET_OPEN_FLAGS_PROMISC_FIXED, INTNET_OPEN_FLAGS_PROMISC_DENY_TRUNK_WIRE | INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_WIRE },
|
---|
439 | { INTNET_OPEN_FLAGS_TRUNK_HOST_DISABLED, INTNET_OPEN_FLAGS_TRUNK_HOST_ENABLED, INTNET_OPEN_FLAGS_TRUNK_FIXED, INTNET_OPEN_FLAGS_TRUNK_HOST_DISABLED | INTNET_OPEN_FLAGS_TRUNK_HOST_ENABLED },
|
---|
440 | { INTNET_OPEN_FLAGS_TRUNK_HOST_CHASTE_MODE, INTNET_OPEN_FLAGS_TRUNK_HOST_PROMISC_MODE, INTNET_OPEN_FLAGS_TRUNK_FIXED, INTNET_OPEN_FLAGS_TRUNK_HOST_CHASTE_MODE | INTNET_OPEN_FLAGS_TRUNK_HOST_PROMISC_MODE },
|
---|
441 | { INTNET_OPEN_FLAGS_TRUNK_WIRE_DISABLED, INTNET_OPEN_FLAGS_TRUNK_WIRE_ENABLED, INTNET_OPEN_FLAGS_TRUNK_FIXED, INTNET_OPEN_FLAGS_TRUNK_WIRE_DISABLED | INTNET_OPEN_FLAGS_TRUNK_WIRE_ENABLED },
|
---|
442 | { INTNET_OPEN_FLAGS_TRUNK_WIRE_CHASTE_MODE, INTNET_OPEN_FLAGS_TRUNK_WIRE_PROMISC_MODE, INTNET_OPEN_FLAGS_TRUNK_FIXED, INTNET_OPEN_FLAGS_TRUNK_WIRE_CHASTE_MODE | INTNET_OPEN_FLAGS_TRUNK_WIRE_PROMISC_MODE },
|
---|
443 | },
|
---|
444 | /** Open network policy flags relating to the new interface. */
|
---|
445 | g_afIntNetOpenNetworkIfFlags[] =
|
---|
446 | {
|
---|
447 | { INTNET_OPEN_FLAGS_IF_PROMISC_DENY, INTNET_OPEN_FLAGS_IF_PROMISC_ALLOW, INTNET_OPEN_FLAGS_IF_FIXED, INTNET_OPEN_FLAGS_IF_PROMISC_DENY | INTNET_OPEN_FLAGS_IF_PROMISC_ALLOW },
|
---|
448 | { INTNET_OPEN_FLAGS_IF_PROMISC_NO_TRUNK, INTNET_OPEN_FLAGS_IF_PROMISC_SEE_TRUNK, INTNET_OPEN_FLAGS_IF_FIXED, INTNET_OPEN_FLAGS_IF_PROMISC_NO_TRUNK | INTNET_OPEN_FLAGS_IF_PROMISC_SEE_TRUNK },
|
---|
449 | };
|
---|
450 |
|
---|
451 |
|
---|
452 |
|
---|
453 | /**
|
---|
454 | * Worker for intnetR0SgWritePart that deals with the case where the
|
---|
455 | * request doesn't fit into the first segment.
|
---|
456 | *
|
---|
457 | * @returns true, unless the request or SG invalid.
|
---|
458 | * @param pSG The SG list to write to.
|
---|
459 | * @param off Where to start writing (offset into the SG).
|
---|
460 | * @param cb How much to write.
|
---|
461 | * @param pvBuf The buffer to containing the bits to write.
|
---|
462 | */
|
---|
463 | static bool intnetR0SgWritePartSlow(PCINTNETSG pSG, uint32_t off, uint32_t cb, void const *pvBuf)
|
---|
464 | {
|
---|
465 | if (RT_UNLIKELY(off + cb > pSG->cbTotal))
|
---|
466 | return false;
|
---|
467 |
|
---|
468 | /*
|
---|
469 | * Skip ahead to the segment where off starts.
|
---|
470 | */
|
---|
471 | unsigned const cSegs = pSG->cSegsUsed; Assert(cSegs == pSG->cSegsUsed);
|
---|
472 | unsigned iSeg = 0;
|
---|
473 | while (off > pSG->aSegs[iSeg].cb)
|
---|
474 | {
|
---|
475 | off -= pSG->aSegs[iSeg++].cb;
|
---|
476 | AssertReturn(iSeg < cSegs, false);
|
---|
477 | }
|
---|
478 |
|
---|
479 | /*
|
---|
480 | * Copy the data, hoping that it's all from one segment...
|
---|
481 | */
|
---|
482 | uint32_t cbCanCopy = pSG->aSegs[iSeg].cb - off;
|
---|
483 | if (cbCanCopy >= cb)
|
---|
484 | memcpy((uint8_t *)pSG->aSegs[iSeg].pv + off, pvBuf, cb);
|
---|
485 | else
|
---|
486 | {
|
---|
487 | /* copy the portion in the current segment. */
|
---|
488 | memcpy((uint8_t *)pSG->aSegs[iSeg].pv + off, pvBuf, cbCanCopy);
|
---|
489 | cb -= cbCanCopy;
|
---|
490 |
|
---|
491 | /* copy the portions in the other segments. */
|
---|
492 | do
|
---|
493 | {
|
---|
494 | pvBuf = (uint8_t const *)pvBuf + cbCanCopy;
|
---|
495 | iSeg++;
|
---|
496 | AssertReturn(iSeg < cSegs, false);
|
---|
497 |
|
---|
498 | cbCanCopy = RT_MIN(cb, pSG->aSegs[iSeg].cb);
|
---|
499 | memcpy(pSG->aSegs[iSeg].pv, pvBuf, cbCanCopy);
|
---|
500 |
|
---|
501 | cb -= cbCanCopy;
|
---|
502 | } while (cb > 0);
|
---|
503 | }
|
---|
504 |
|
---|
505 | return true;
|
---|
506 | }
|
---|
507 |
|
---|
508 |
|
---|
509 | /**
|
---|
510 | * Writes to a part of an SG.
|
---|
511 | *
|
---|
512 | * @returns true on success, false on failure (out of bounds).
|
---|
513 | * @param pSG The SG list to write to.
|
---|
514 | * @param off Where to start writing (offset into the SG).
|
---|
515 | * @param cb How much to write.
|
---|
516 | * @param pvBuf The buffer to containing the bits to write.
|
---|
517 | */
|
---|
518 | DECLINLINE(bool) intnetR0SgWritePart(PCINTNETSG pSG, uint32_t off, uint32_t cb, void const *pvBuf)
|
---|
519 | {
|
---|
520 | Assert(off + cb > off);
|
---|
521 |
|
---|
522 | /* The optimized case. */
|
---|
523 | if (RT_LIKELY( pSG->cSegsUsed == 1
|
---|
524 | || pSG->aSegs[0].cb >= off + cb))
|
---|
525 | {
|
---|
526 | Assert(pSG->cbTotal == pSG->aSegs[0].cb);
|
---|
527 | memcpy((uint8_t *)pSG->aSegs[0].pv + off, pvBuf, cb);
|
---|
528 | return true;
|
---|
529 | }
|
---|
530 | return intnetR0SgWritePartSlow(pSG, off, cb, pvBuf);
|
---|
531 | }
|
---|
532 |
|
---|
533 |
|
---|
534 | /**
|
---|
535 | * Reads a byte from a SG list.
|
---|
536 | *
|
---|
537 | * @returns The byte on success. 0xff on failure.
|
---|
538 | * @param pSG The SG list to read.
|
---|
539 | * @param off The offset (into the SG) off the byte.
|
---|
540 | */
|
---|
541 | DECLINLINE(uint8_t) intnetR0SgReadByte(PCINTNETSG pSG, uint32_t off)
|
---|
542 | {
|
---|
543 | if (RT_LIKELY(pSG->aSegs[0].cb > off))
|
---|
544 | return ((uint8_t const *)pSG->aSegs[0].pv)[off];
|
---|
545 |
|
---|
546 | off -= pSG->aSegs[0].cb;
|
---|
547 | unsigned const cSegs = pSG->cSegsUsed; Assert(cSegs == pSG->cSegsUsed);
|
---|
548 | for (unsigned iSeg = 1; iSeg < cSegs; iSeg++)
|
---|
549 | {
|
---|
550 | if (pSG->aSegs[iSeg].cb > off)
|
---|
551 | return ((uint8_t const *)pSG->aSegs[iSeg].pv)[off];
|
---|
552 | off -= pSG->aSegs[iSeg].cb;
|
---|
553 | }
|
---|
554 | return false;
|
---|
555 | }
|
---|
556 |
|
---|
557 |
|
---|
558 | /**
|
---|
559 | * Worker for intnetR0SgReadPart that deals with the case where the
|
---|
560 | * requested data isn't in the first segment.
|
---|
561 | *
|
---|
562 | * @returns true, unless the SG is invalid.
|
---|
563 | * @param pSG The SG list to read.
|
---|
564 | * @param off Where to start reading (offset into the SG).
|
---|
565 | * @param cb How much to read.
|
---|
566 | * @param pvBuf The buffer to read into.
|
---|
567 | */
|
---|
568 | static bool intnetR0SgReadPartSlow(PCINTNETSG pSG, uint32_t off, uint32_t cb, void *pvBuf)
|
---|
569 | {
|
---|
570 | if (RT_UNLIKELY(off + cb > pSG->cbTotal))
|
---|
571 | return false;
|
---|
572 |
|
---|
573 | /*
|
---|
574 | * Skip ahead to the segment where off starts.
|
---|
575 | */
|
---|
576 | unsigned const cSegs = pSG->cSegsUsed; Assert(cSegs == pSG->cSegsUsed);
|
---|
577 | unsigned iSeg = 0;
|
---|
578 | while (off > pSG->aSegs[iSeg].cb)
|
---|
579 | {
|
---|
580 | off -= pSG->aSegs[iSeg++].cb;
|
---|
581 | AssertReturn(iSeg < cSegs, false);
|
---|
582 | }
|
---|
583 |
|
---|
584 | /*
|
---|
585 | * Copy the data, hoping that it's all from one segment...
|
---|
586 | */
|
---|
587 | uint32_t cbCanCopy = pSG->aSegs[iSeg].cb - off;
|
---|
588 | if (cbCanCopy >= cb)
|
---|
589 | memcpy(pvBuf, (uint8_t const *)pSG->aSegs[iSeg].pv + off, cb);
|
---|
590 | else
|
---|
591 | {
|
---|
592 | /* copy the portion in the current segment. */
|
---|
593 | memcpy(pvBuf, (uint8_t const *)pSG->aSegs[iSeg].pv + off, cbCanCopy);
|
---|
594 | cb -= cbCanCopy;
|
---|
595 |
|
---|
596 | /* copy the portions in the other segments. */
|
---|
597 | do
|
---|
598 | {
|
---|
599 | pvBuf = (uint8_t *)pvBuf + cbCanCopy;
|
---|
600 | iSeg++;
|
---|
601 | AssertReturn(iSeg < cSegs, false);
|
---|
602 |
|
---|
603 | cbCanCopy = RT_MIN(cb, pSG->aSegs[iSeg].cb);
|
---|
604 | memcpy(pvBuf, (uint8_t const *)pSG->aSegs[iSeg].pv, cbCanCopy);
|
---|
605 |
|
---|
606 | cb -= cbCanCopy;
|
---|
607 | } while (cb > 0);
|
---|
608 | }
|
---|
609 |
|
---|
610 | return true;
|
---|
611 | }
|
---|
612 |
|
---|
613 |
|
---|
614 | /**
|
---|
615 | * Reads a part of an SG into a buffer.
|
---|
616 | *
|
---|
617 | * @returns true on success, false on failure (out of bounds).
|
---|
618 | * @param pSG The SG list to read.
|
---|
619 | * @param off Where to start reading (offset into the SG).
|
---|
620 | * @param cb How much to read.
|
---|
621 | * @param pvBuf The buffer to read into.
|
---|
622 | */
|
---|
623 | DECLINLINE(bool) intnetR0SgReadPart(PCINTNETSG pSG, uint32_t off, uint32_t cb, void *pvBuf)
|
---|
624 | {
|
---|
625 | Assert(off + cb > off);
|
---|
626 |
|
---|
627 | /* The optimized case. */
|
---|
628 | if (RT_LIKELY( pSG->cSegsUsed == 1
|
---|
629 | || pSG->aSegs[0].cb >= off + cb))
|
---|
630 | {
|
---|
631 | Assert(pSG->cbTotal == pSG->aSegs[0].cb);
|
---|
632 | memcpy(pvBuf, (uint8_t const *)pSG->aSegs[0].pv + off, cb);
|
---|
633 | return true;
|
---|
634 | }
|
---|
635 | return intnetR0SgReadPartSlow(pSG, off, cb, pvBuf);
|
---|
636 | }
|
---|
637 |
|
---|
638 |
|
---|
639 | /**
|
---|
640 | * Wait for a busy counter to reach zero.
|
---|
641 | *
|
---|
642 | * @param pNetwork The network.
|
---|
643 | * @param pcBusy The busy counter.
|
---|
644 | */
|
---|
645 | static void intnetR0BusyWait(PINTNETNETWORK pNetwork, uint32_t volatile *pcBusy)
|
---|
646 | {
|
---|
647 | if (ASMAtomicReadU32(pcBusy) == 0)
|
---|
648 | return;
|
---|
649 |
|
---|
650 | /*
|
---|
651 | * We have to be a bit cautious here so we don't destroy the network or the
|
---|
652 | * semaphore before intnetR0BusyDec has signalled us.
|
---|
653 | */
|
---|
654 |
|
---|
655 | /* Reset the semaphore and flip the wakeup bit. */
|
---|
656 | RTSemEventWait(pNetwork->hEvtBusyIf, 0); /* clear it */
|
---|
657 | uint32_t cCurBusy = ASMAtomicReadU32(pcBusy);
|
---|
658 | do
|
---|
659 | {
|
---|
660 | if (cCurBusy == 0)
|
---|
661 | return;
|
---|
662 | AssertMsg(!(cCurBusy & INTNET_BUSY_WAKEUP_MASK), ("%#x\n", cCurBusy));
|
---|
663 | AssertMsg((cCurBusy & ~INTNET_BUSY_WAKEUP_MASK) < INTNET_MAX_IFS * 3, ("%#x\n", cCurBusy));
|
---|
664 | } while (!ASMAtomicCmpXchgExU32(pcBusy, cCurBusy | INTNET_BUSY_WAKEUP_MASK, cCurBusy, &cCurBusy));
|
---|
665 |
|
---|
666 | /* Wait for the count to reach zero. */
|
---|
667 | do
|
---|
668 | {
|
---|
669 | int rc2 = RTSemEventWait(pNetwork->hEvtBusyIf, 30000); NOREF(rc2);
|
---|
670 | //AssertMsg(RT_SUCCESS(rc2), ("rc=%Rrc *pcBusy=%#x (%#x)\n", rc2, ASMAtomicReadU32(pcBusy), cCurBusy ));
|
---|
671 | cCurBusy = ASMAtomicReadU32(pcBusy);
|
---|
672 | AssertMsg((cCurBusy & INTNET_BUSY_WAKEUP_MASK), ("%#x\n", cCurBusy));
|
---|
673 | AssertMsg((cCurBusy & ~INTNET_BUSY_WAKEUP_MASK) < INTNET_MAX_IFS * 3, ("%#x\n", cCurBusy));
|
---|
674 | } while ( cCurBusy != INTNET_BUSY_WAKEUP_MASK
|
---|
675 | || !ASMAtomicCmpXchgU32(pcBusy, 0, INTNET_BUSY_WAKEUP_MASK));
|
---|
676 | }
|
---|
677 |
|
---|
678 |
|
---|
679 | /**
|
---|
680 | * Decrements the busy counter and maybe wakes up any threads waiting for it to
|
---|
681 | * reach zero.
|
---|
682 | *
|
---|
683 | * @param pNetwork The network.
|
---|
684 | * @param pcBusy The busy counter.
|
---|
685 | */
|
---|
686 | DECLINLINE(void) intnetR0BusyDec(PINTNETNETWORK pNetwork, uint32_t volatile *pcBusy)
|
---|
687 | {
|
---|
688 | uint32_t cNewBusy = ASMAtomicDecU32(pcBusy);
|
---|
689 | if (RT_UNLIKELY( cNewBusy == INTNET_BUSY_WAKEUP_MASK
|
---|
690 | && pNetwork))
|
---|
691 | RTSemEventSignal(pNetwork->hEvtBusyIf);
|
---|
692 | AssertMsg((cNewBusy & ~INTNET_BUSY_WAKEUP_MASK) < INTNET_MAX_IFS * 3, ("%#x\n", cNewBusy));
|
---|
693 | }
|
---|
694 |
|
---|
695 |
|
---|
696 | /**
|
---|
697 | * Increments the busy count of the specified interface.
|
---|
698 | *
|
---|
699 | * The caller must own the MAC address table spinlock.
|
---|
700 | *
|
---|
701 | * @param pIf The interface.
|
---|
702 | */
|
---|
703 | DECLINLINE(void) intnetR0BusyDecIf(PINTNETIF pIf)
|
---|
704 | {
|
---|
705 | intnetR0BusyDec(pIf->pNetwork, &pIf->cBusy);
|
---|
706 | }
|
---|
707 |
|
---|
708 |
|
---|
709 | /**
|
---|
710 | * Increments the busy count of the specified interface.
|
---|
711 | *
|
---|
712 | * The caller must own the MAC address table spinlock or an explicity reference.
|
---|
713 | *
|
---|
714 | * @param pTrunk The trunk.
|
---|
715 | */
|
---|
716 | DECLINLINE(void) intnetR0BusyDecTrunk(PINTNETTRUNKIF pTrunk)
|
---|
717 | {
|
---|
718 | intnetR0BusyDec(pTrunk->pNetwork, &pTrunk->cBusy);
|
---|
719 | }
|
---|
720 |
|
---|
721 |
|
---|
722 | /**
|
---|
723 | * Increments the busy count of the specified interface.
|
---|
724 | *
|
---|
725 | * The caller must own the MAC address table spinlock or an explicity reference.
|
---|
726 | *
|
---|
727 | * @param pIf The interface.
|
---|
728 | */
|
---|
729 | DECLINLINE(void) intnetR0BusyIncIf(PINTNETIF pIf)
|
---|
730 | {
|
---|
731 | uint32_t cNewBusy = ASMAtomicIncU32(&pIf->cBusy);
|
---|
732 | AssertMsg((cNewBusy & ~INTNET_BUSY_WAKEUP_MASK) < INTNET_MAX_IFS * 3, ("%#x\n", cNewBusy));
|
---|
733 | NOREF(cNewBusy);
|
---|
734 | }
|
---|
735 |
|
---|
736 |
|
---|
737 | /**
|
---|
738 | * Increments the busy count of the specified interface.
|
---|
739 | *
|
---|
740 | * The caller must own the MAC address table spinlock or an explicity reference.
|
---|
741 | *
|
---|
742 | * @param pTrunk The trunk.
|
---|
743 | */
|
---|
744 | DECLINLINE(void) intnetR0BusyIncTrunk(PINTNETTRUNKIF pTrunk)
|
---|
745 | {
|
---|
746 | uint32_t cNewBusy = ASMAtomicIncU32(&pTrunk->cBusy);
|
---|
747 | AssertMsg((cNewBusy & ~INTNET_BUSY_WAKEUP_MASK) < INTNET_MAX_IFS * 3, ("%#x\n", cNewBusy));
|
---|
748 | NOREF(cNewBusy);
|
---|
749 | }
|
---|
750 |
|
---|
751 |
|
---|
752 | /**
|
---|
753 | * Retain an interface.
|
---|
754 | *
|
---|
755 | * @returns VBox status code, can assume success in most situations.
|
---|
756 | * @param pIf The interface instance.
|
---|
757 | * @param pSession The current session.
|
---|
758 | */
|
---|
759 | DECLINLINE(int) intnetR0IfRetain(PINTNETIF pIf, PSUPDRVSESSION pSession)
|
---|
760 | {
|
---|
761 | int rc = SUPR0ObjAddRefEx(pIf->pvObj, pSession, true /* fNoBlocking */);
|
---|
762 | AssertRCReturn(rc, rc);
|
---|
763 | return VINF_SUCCESS;
|
---|
764 | }
|
---|
765 |
|
---|
766 |
|
---|
767 | /**
|
---|
768 | * Release an interface previously retained by intnetR0IfRetain or
|
---|
769 | * by handle lookup/freeing.
|
---|
770 | *
|
---|
771 | * @returns true if destroyed, false if not.
|
---|
772 | * @param pIf The interface instance.
|
---|
773 | * @param pSession The current session.
|
---|
774 | */
|
---|
775 | DECLINLINE(bool) intnetR0IfRelease(PINTNETIF pIf, PSUPDRVSESSION pSession)
|
---|
776 | {
|
---|
777 | int rc = SUPR0ObjRelease(pIf->pvObj, pSession);
|
---|
778 | AssertRC(rc);
|
---|
779 | return rc == VINF_OBJECT_DESTROYED;
|
---|
780 | }
|
---|
781 |
|
---|
782 |
|
---|
783 | /**
|
---|
784 | * RTHandleCreateEx callback that retains an object in the
|
---|
785 | * handle table before returning it.
|
---|
786 | *
|
---|
787 | * (Avoids racing the freeing of the handle.)
|
---|
788 | *
|
---|
789 | * @returns VBox status code.
|
---|
790 | * @param hHandleTable The handle table (ignored).
|
---|
791 | * @param pvObj The object (INTNETIF).
|
---|
792 | * @param pvCtx The context (SUPDRVSESSION).
|
---|
793 | * @param pvUser The user context (ignored).
|
---|
794 | */
|
---|
795 | static DECLCALLBACK(int) intnetR0IfRetainHandle(RTHANDLETABLE hHandleTable, void *pvObj, void *pvCtx, void *pvUser)
|
---|
796 | {
|
---|
797 | NOREF(pvUser);
|
---|
798 | NOREF(hHandleTable);
|
---|
799 | PINTNETIF pIf = (PINTNETIF)pvObj;
|
---|
800 | if (pIf->hIf != INTNET_HANDLE_INVALID) /* Don't try retain it if called from intnetR0IfDestruct. */
|
---|
801 | return intnetR0IfRetain(pIf, (PSUPDRVSESSION)pvCtx);
|
---|
802 | return VINF_SUCCESS;
|
---|
803 | }
|
---|
804 |
|
---|
805 |
|
---|
806 |
|
---|
807 | /**
|
---|
808 | * Checks if the interface has a usable MAC address or not.
|
---|
809 | *
|
---|
810 | * @returns true if MacAddr is usable, false if not.
|
---|
811 | * @param pIf The interface.
|
---|
812 | */
|
---|
813 | DECL_FORCE_INLINE(bool) intnetR0IfHasMacAddr(PINTNETIF pIf)
|
---|
814 | {
|
---|
815 | return pIf->fMacSet || !(pIf->MacAddr.au8[0] & 1);
|
---|
816 | }
|
---|
817 |
|
---|
818 |
|
---|
819 | /**
|
---|
820 | * Locates the MAC address table entry for the given interface.
|
---|
821 | *
|
---|
822 | * The caller holds the MAC address table spinlock, obviously.
|
---|
823 | *
|
---|
824 | * @returns Pointer to the entry on if found, NULL if not.
|
---|
825 | * @param pNetwork The network.
|
---|
826 | * @param pIf The interface.
|
---|
827 | */
|
---|
828 | DECLINLINE(PINTNETMACTABENTRY) intnetR0NetworkFindMacAddrEntry(PINTNETNETWORK pNetwork, PINTNETIF pIf)
|
---|
829 | {
|
---|
830 | uint32_t iIf = pNetwork->MacTab.cEntries;
|
---|
831 | while (iIf-- > 0)
|
---|
832 | {
|
---|
833 | if (pNetwork->MacTab.paEntries[iIf].pIf == pIf)
|
---|
834 | return &pNetwork->MacTab.paEntries[iIf];
|
---|
835 | }
|
---|
836 | return NULL;
|
---|
837 | }
|
---|
838 |
|
---|
839 |
|
---|
840 | /**
|
---|
841 | * Checks if the IPv6 address is a good interface address.
|
---|
842 | * @returns true/false.
|
---|
843 | * @param addr The address, network endian.
|
---|
844 | */
|
---|
845 | DECLINLINE(bool) intnetR0IPv6AddrIsGood(RTNETADDRIPV6 addr)
|
---|
846 | {
|
---|
847 | return !( ( addr.QWords.qw0 == 0 && addr.QWords.qw1 == 0) /* :: */
|
---|
848 | || ( (addr.Words.w0 & RT_H2BE_U16(0xff00)) == RT_H2BE_U16(0xff00)) /* multicast */
|
---|
849 | || ( addr.Words.w0 == 0 && addr.Words.w1 == 0
|
---|
850 | && addr.Words.w2 == 0 && addr.Words.w3 == 0
|
---|
851 | && addr.Words.w4 == 0 && addr.Words.w5 == 0
|
---|
852 | && addr.Words.w6 == 0 && addr.Words.w7 == RT_H2BE_U16(0x0001))); /* ::1 */
|
---|
853 | }
|
---|
854 |
|
---|
855 |
|
---|
856 | /**
|
---|
857 | * Checks if the IPv4 address is a broadcast address.
|
---|
858 | * @returns true/false.
|
---|
859 | * @param Addr The address, network endian.
|
---|
860 | */
|
---|
861 | DECLINLINE(bool) intnetR0IPv4AddrIsBroadcast(RTNETADDRIPV4 Addr)
|
---|
862 | {
|
---|
863 | /* Just check for 255.255.255.255 atm. */
|
---|
864 | return Addr.u == UINT32_MAX;
|
---|
865 | }
|
---|
866 |
|
---|
867 |
|
---|
868 | /**
|
---|
869 | * Checks if the IPv4 address is a good interface address.
|
---|
870 | * @returns true/false.
|
---|
871 | * @param Addr The address, network endian.
|
---|
872 | */
|
---|
873 | DECLINLINE(bool) intnetR0IPv4AddrIsGood(RTNETADDRIPV4 Addr)
|
---|
874 | {
|
---|
875 | /* Usual suspects. */
|
---|
876 | if ( Addr.u == UINT32_MAX /* 255.255.255.255 - broadcast. */
|
---|
877 | || Addr.au8[0] == 0) /* Current network, can be used as source address. */
|
---|
878 | return false;
|
---|
879 |
|
---|
880 | /* Unusual suspects. */
|
---|
881 | if (RT_UNLIKELY( Addr.au8[0] == 127 /* Loopback */
|
---|
882 | || (Addr.au8[0] & 0xf0) == 224 /* Multicast */
|
---|
883 | ))
|
---|
884 | return false;
|
---|
885 | return true;
|
---|
886 | }
|
---|
887 |
|
---|
888 |
|
---|
889 | /**
|
---|
890 | * Gets the address size of a network layer type.
|
---|
891 | *
|
---|
892 | * @returns size in bytes.
|
---|
893 | * @param enmType The type.
|
---|
894 | */
|
---|
895 | DECLINLINE(uint8_t) intnetR0AddrSize(INTNETADDRTYPE enmType)
|
---|
896 | {
|
---|
897 | switch (enmType)
|
---|
898 | {
|
---|
899 | case kIntNetAddrType_IPv4: return 4;
|
---|
900 | case kIntNetAddrType_IPv6: return 16;
|
---|
901 | case kIntNetAddrType_IPX: return 4 + 6;
|
---|
902 | default: AssertFailedReturn(0);
|
---|
903 | }
|
---|
904 | }
|
---|
905 |
|
---|
906 |
|
---|
907 | /**
|
---|
908 | * Compares two address to see if they are equal, assuming naturally align structures.
|
---|
909 | *
|
---|
910 | * @returns true if equal, false if not.
|
---|
911 | * @param pAddr1 The first address.
|
---|
912 | * @param pAddr2 The second address.
|
---|
913 | * @param cbAddr The address size.
|
---|
914 | */
|
---|
915 | DECLINLINE(bool) intnetR0AddrUIsEqualEx(PCRTNETADDRU pAddr1, PCRTNETADDRU pAddr2, uint8_t const cbAddr)
|
---|
916 | {
|
---|
917 | switch (cbAddr)
|
---|
918 | {
|
---|
919 | case 4: /* IPv4 */
|
---|
920 | return pAddr1->au32[0] == pAddr2->au32[0];
|
---|
921 | case 16: /* IPv6 */
|
---|
922 | return pAddr1->au64[0] == pAddr2->au64[0]
|
---|
923 | && pAddr1->au64[1] == pAddr2->au64[1];
|
---|
924 | case 10: /* IPX */
|
---|
925 | return pAddr1->au64[0] == pAddr2->au64[0]
|
---|
926 | && pAddr1->au16[4] == pAddr2->au16[4];
|
---|
927 | default:
|
---|
928 | AssertFailedReturn(false);
|
---|
929 | }
|
---|
930 | }
|
---|
931 |
|
---|
932 |
|
---|
933 | /**
|
---|
934 | * Worker for intnetR0IfAddrCacheLookup that performs the lookup
|
---|
935 | * in the remaining cache entries after the caller has check the
|
---|
936 | * most likely ones.
|
---|
937 | *
|
---|
938 | * @returns -1 if not found, the index of the cache entry if found.
|
---|
939 | * @param pCache The cache.
|
---|
940 | * @param pAddr The address.
|
---|
941 | * @param cbAddr The address size (optimization).
|
---|
942 | */
|
---|
943 | static int intnetR0IfAddrCacheLookupSlow(PCINTNETADDRCACHE pCache, PCRTNETADDRU pAddr, uint8_t const cbAddr)
|
---|
944 | {
|
---|
945 | unsigned i = pCache->cEntries - 2;
|
---|
946 | uint8_t const *pbEntry = pCache->pbEntries + pCache->cbEntry * i;
|
---|
947 | while (i >= 1)
|
---|
948 | {
|
---|
949 | if (intnetR0AddrUIsEqualEx((PCRTNETADDRU)pbEntry, pAddr, cbAddr))
|
---|
950 | return i;
|
---|
951 | pbEntry -= pCache->cbEntry;
|
---|
952 | i--;
|
---|
953 | }
|
---|
954 |
|
---|
955 | return -1;
|
---|
956 | }
|
---|
957 |
|
---|
958 | /**
|
---|
959 | * Lookup an address in a cache without any expectations.
|
---|
960 | *
|
---|
961 | * @returns -1 if not found, the index of the cache entry if found.
|
---|
962 | * @param pCache The cache.
|
---|
963 | * @param pAddr The address.
|
---|
964 | * @param cbAddr The address size (optimization).
|
---|
965 | */
|
---|
966 | DECLINLINE(int) intnetR0IfAddrCacheLookup(PCINTNETADDRCACHE pCache, PCRTNETADDRU pAddr, uint8_t const cbAddr)
|
---|
967 | {
|
---|
968 | Assert(pCache->cbAddress == cbAddr);
|
---|
969 |
|
---|
970 | /*
|
---|
971 | * The optimized case is when there is one cache entry and
|
---|
972 | * it doesn't match.
|
---|
973 | */
|
---|
974 | unsigned i = pCache->cEntries;
|
---|
975 | if ( i > 0
|
---|
976 | && intnetR0AddrUIsEqualEx((PCRTNETADDRU)pCache->pbEntries, pAddr, cbAddr))
|
---|
977 | return 0;
|
---|
978 | if (i <= 1)
|
---|
979 | return -1;
|
---|
980 |
|
---|
981 | /*
|
---|
982 | * Check the last entry.
|
---|
983 | */
|
---|
984 | i--;
|
---|
985 | if (intnetR0AddrUIsEqualEx((PCRTNETADDRU)(pCache->pbEntries + pCache->cbEntry * i), pAddr, cbAddr))
|
---|
986 | return i;
|
---|
987 | if (i <= 1)
|
---|
988 | return -1;
|
---|
989 |
|
---|
990 | return intnetR0IfAddrCacheLookupSlow(pCache, pAddr, cbAddr);
|
---|
991 | }
|
---|
992 |
|
---|
993 |
|
---|
994 | /** Same as intnetR0IfAddrCacheLookup except we expect the address to be present already. */
|
---|
995 | DECLINLINE(int) intnetR0IfAddrCacheLookupLikely(PCINTNETADDRCACHE pCache, PCRTNETADDRU pAddr, uint8_t const cbAddr)
|
---|
996 | {
|
---|
997 | /** @todo implement this. */
|
---|
998 | return intnetR0IfAddrCacheLookup(pCache, pAddr, cbAddr);
|
---|
999 | }
|
---|
1000 |
|
---|
1001 |
|
---|
1002 | /**
|
---|
1003 | * Worker for intnetR0IfAddrCacheLookupUnlikely that performs
|
---|
1004 | * the lookup in the remaining cache entries after the caller
|
---|
1005 | * has check the most likely ones.
|
---|
1006 | *
|
---|
1007 | * The routine is expecting not to find the address.
|
---|
1008 | *
|
---|
1009 | * @returns -1 if not found, the index of the cache entry if found.
|
---|
1010 | * @param pCache The cache.
|
---|
1011 | * @param pAddr The address.
|
---|
1012 | * @param cbAddr The address size (optimization).
|
---|
1013 | */
|
---|
1014 | static int intnetR0IfAddrCacheInCacheUnlikelySlow(PCINTNETADDRCACHE pCache, PCRTNETADDRU pAddr, uint8_t const cbAddr)
|
---|
1015 | {
|
---|
1016 | /*
|
---|
1017 | * Perform a full table lookup.
|
---|
1018 | */
|
---|
1019 | unsigned i = pCache->cEntries - 2;
|
---|
1020 | uint8_t const *pbEntry = pCache->pbEntries + pCache->cbEntry * i;
|
---|
1021 | while (i >= 1)
|
---|
1022 | {
|
---|
1023 | if (RT_UNLIKELY(intnetR0AddrUIsEqualEx((PCRTNETADDRU)pbEntry, pAddr, cbAddr)))
|
---|
1024 | return i;
|
---|
1025 | pbEntry -= pCache->cbEntry;
|
---|
1026 | i--;
|
---|
1027 | }
|
---|
1028 |
|
---|
1029 | return -1;
|
---|
1030 | }
|
---|
1031 |
|
---|
1032 |
|
---|
1033 | /**
|
---|
1034 | * Lookup an address in a cache expecting not to find it.
|
---|
1035 | *
|
---|
1036 | * @returns -1 if not found, the index of the cache entry if found.
|
---|
1037 | * @param pCache The cache.
|
---|
1038 | * @param pAddr The address.
|
---|
1039 | * @param cbAddr The address size (optimization).
|
---|
1040 | */
|
---|
1041 | DECLINLINE(int) intnetR0IfAddrCacheLookupUnlikely(PCINTNETADDRCACHE pCache, PCRTNETADDRU pAddr, uint8_t const cbAddr)
|
---|
1042 | {
|
---|
1043 | Assert(pCache->cbAddress == cbAddr);
|
---|
1044 |
|
---|
1045 | /*
|
---|
1046 | * The optimized case is when there is one cache entry and
|
---|
1047 | * it doesn't match.
|
---|
1048 | */
|
---|
1049 | unsigned i = pCache->cEntries;
|
---|
1050 | if (RT_UNLIKELY( i > 0
|
---|
1051 | && intnetR0AddrUIsEqualEx((PCRTNETADDRU)pCache->pbEntries, pAddr, cbAddr)))
|
---|
1052 | return 0;
|
---|
1053 | if (RT_LIKELY(i <= 1))
|
---|
1054 | return -1;
|
---|
1055 |
|
---|
1056 | /*
|
---|
1057 | * Then check the last entry and return if there are just two cache entries.
|
---|
1058 | */
|
---|
1059 | i--;
|
---|
1060 | if (RT_UNLIKELY(intnetR0AddrUIsEqualEx((PCRTNETADDRU)(pCache->pbEntries + pCache->cbEntry * i), pAddr, cbAddr)))
|
---|
1061 | return i;
|
---|
1062 | if (i <= 1)
|
---|
1063 | return -1;
|
---|
1064 |
|
---|
1065 | return intnetR0IfAddrCacheInCacheUnlikelySlow(pCache, pAddr, cbAddr);
|
---|
1066 | }
|
---|
1067 |
|
---|
1068 |
|
---|
1069 | /**
|
---|
1070 | * Deletes a specific cache entry.
|
---|
1071 | *
|
---|
1072 | * Worker for intnetR0NetworkAddrCacheDelete and intnetR0NetworkAddrCacheDeleteMinusIf.
|
---|
1073 | *
|
---|
1074 | * @param pIf The interface (for logging).
|
---|
1075 | * @param pCache The cache.
|
---|
1076 | * @param iEntry The entry to delete.
|
---|
1077 | * @param pszMsg Log message.
|
---|
1078 | */
|
---|
1079 | static void intnetR0IfAddrCacheDeleteIt(PINTNETIF pIf, PINTNETADDRCACHE pCache, int iEntry, const char *pszMsg)
|
---|
1080 | {
|
---|
1081 | AssertReturnVoid(iEntry < pCache->cEntries);
|
---|
1082 | AssertReturnVoid(iEntry >= 0);
|
---|
1083 | #ifdef LOG_ENABLED
|
---|
1084 | INTNETADDRTYPE enmAddrType = (INTNETADDRTYPE)(uintptr_t)(pCache - &pIf->aAddrCache[0]);
|
---|
1085 | PCRTNETADDRU pAddr = (PCRTNETADDRU)(pCache->pbEntries + iEntry * pCache->cbEntry);
|
---|
1086 | switch (enmAddrType)
|
---|
1087 | {
|
---|
1088 | case kIntNetAddrType_IPv4:
|
---|
1089 | Log(("intnetR0IfAddrCacheDeleteIt: hIf=%#x MAC=%.6Rhxs IPv4 deleted #%d %RTnaipv4 %s\n",
|
---|
1090 | pIf->hIf, &pIf->MacAddr, iEntry, pAddr->IPv4, pszMsg));
|
---|
1091 | break;
|
---|
1092 | case kIntNetAddrType_IPv6:
|
---|
1093 | Log(("intnetR0IfAddrCacheDeleteIt: hIf=%#x MAC=%.6Rhxs IPv6 deleted #%d %RTnaipv6 %s\n",
|
---|
1094 | pIf->hIf, &pIf->MacAddr, iEntry, pAddr->IPv6, pszMsg));
|
---|
1095 | break;
|
---|
1096 | default:
|
---|
1097 | Log(("intnetR0IfAddrCacheDeleteIt: hIf=%RX32 MAC=%.6Rhxs type=%d #%d %.*Rhxs %s\n",
|
---|
1098 | pIf->hIf, &pIf->MacAddr, enmAddrType, iEntry, pCache->cbAddress, pAddr, pszMsg));
|
---|
1099 | break;
|
---|
1100 | }
|
---|
1101 | #endif
|
---|
1102 |
|
---|
1103 | pCache->cEntries--;
|
---|
1104 | if (iEntry < pCache->cEntries)
|
---|
1105 | memmove(pCache->pbEntries + iEntry * pCache->cbEntry,
|
---|
1106 | pCache->pbEntries + (iEntry + 1) * pCache->cbEntry,
|
---|
1107 | (pCache->cEntries - iEntry) * pCache->cbEntry);
|
---|
1108 | }
|
---|
1109 |
|
---|
1110 |
|
---|
1111 | /**
|
---|
1112 | * Deletes an address from the cache, assuming it isn't actually in the cache.
|
---|
1113 | *
|
---|
1114 | * May or may not own the spinlock when calling this.
|
---|
1115 | *
|
---|
1116 | * @param pIf The interface (for logging).
|
---|
1117 | * @param pCache The cache.
|
---|
1118 | * @param pAddr The address.
|
---|
1119 | * @param cbAddr The address size (optimization).
|
---|
1120 | */
|
---|
1121 | DECLINLINE(void) intnetR0IfAddrCacheDelete(PINTNETIF pIf, PINTNETADDRCACHE pCache, PCRTNETADDRU pAddr, uint8_t const cbAddr, const char *pszMsg)
|
---|
1122 | {
|
---|
1123 | int i = intnetR0IfAddrCacheLookup(pCache, pAddr, cbAddr);
|
---|
1124 | if (RT_UNLIKELY(i >= 0))
|
---|
1125 | intnetR0IfAddrCacheDeleteIt(pIf, pCache, i, pszMsg);
|
---|
1126 | }
|
---|
1127 |
|
---|
1128 |
|
---|
1129 | /**
|
---|
1130 | * Deletes the address from all the interface caches.
|
---|
1131 | *
|
---|
1132 | * This is used to remove stale entries that has been reassigned to
|
---|
1133 | * other machines on the network.
|
---|
1134 | *
|
---|
1135 | * @param pNetwork The network.
|
---|
1136 | * @param pAddr The address.
|
---|
1137 | * @param enmType The address type.
|
---|
1138 | * @param cbAddr The address size (optimization).
|
---|
1139 | * @param pszMsg Log message.
|
---|
1140 | */
|
---|
1141 | DECLINLINE(void) intnetR0NetworkAddrCacheDelete(PINTNETNETWORK pNetwork, PCRTNETADDRU pAddr, INTNETADDRTYPE const enmType,
|
---|
1142 | uint8_t const cbAddr, const char *pszMsg)
|
---|
1143 | {
|
---|
1144 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1145 |
|
---|
1146 | uint32_t iIf = pNetwork->MacTab.cEntries;
|
---|
1147 | while (iIf--)
|
---|
1148 | {
|
---|
1149 | PINTNETIF pIf = pNetwork->MacTab.paEntries[iIf].pIf;
|
---|
1150 | int i = intnetR0IfAddrCacheLookup(&pIf->aAddrCache[enmType], pAddr, cbAddr);
|
---|
1151 | if (RT_UNLIKELY(i >= 0))
|
---|
1152 | intnetR0IfAddrCacheDeleteIt(pIf, &pIf->aAddrCache[enmType], i, pszMsg);
|
---|
1153 | }
|
---|
1154 |
|
---|
1155 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1156 | }
|
---|
1157 |
|
---|
1158 |
|
---|
1159 | /**
|
---|
1160 | * Deletes the address from all the interface caches except the specified one.
|
---|
1161 | *
|
---|
1162 | * This is used to remove stale entries that has been reassigned to
|
---|
1163 | * other machines on the network.
|
---|
1164 | *
|
---|
1165 | * @param pNetwork The network.
|
---|
1166 | * @param pAddr The address.
|
---|
1167 | * @param enmType The address type.
|
---|
1168 | * @param cbAddr The address size (optimization).
|
---|
1169 | * @param pszMsg Log message.
|
---|
1170 | */
|
---|
1171 | DECLINLINE(void) intnetR0NetworkAddrCacheDeleteMinusIf(PINTNETNETWORK pNetwork, PINTNETIF pIfSender, PCRTNETADDRU pAddr,
|
---|
1172 | INTNETADDRTYPE const enmType, uint8_t const cbAddr, const char *pszMsg)
|
---|
1173 | {
|
---|
1174 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1175 |
|
---|
1176 | uint32_t iIf = pNetwork->MacTab.cEntries;
|
---|
1177 | while (iIf--)
|
---|
1178 | {
|
---|
1179 | PINTNETIF pIf = pNetwork->MacTab.paEntries[iIf].pIf;
|
---|
1180 | if (pIf != pIfSender)
|
---|
1181 | {
|
---|
1182 | int i = intnetR0IfAddrCacheLookup(&pIf->aAddrCache[enmType], pAddr, cbAddr);
|
---|
1183 | if (RT_UNLIKELY(i >= 0))
|
---|
1184 | intnetR0IfAddrCacheDeleteIt(pIf, &pIf->aAddrCache[enmType], i, pszMsg);
|
---|
1185 | }
|
---|
1186 | }
|
---|
1187 |
|
---|
1188 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1189 | }
|
---|
1190 |
|
---|
1191 |
|
---|
1192 | /**
|
---|
1193 | * Lookup an address on the network, returning the (first) interface having it
|
---|
1194 | * in its address cache.
|
---|
1195 | *
|
---|
1196 | * @returns Pointer to the interface on success, NULL if not found. The caller
|
---|
1197 | * must release the interface by calling intnetR0BusyDecIf.
|
---|
1198 | * @param pNetwork The network.
|
---|
1199 | * @param pAddr The address to lookup.
|
---|
1200 | * @param enmType The address type.
|
---|
1201 | * @param cbAddr The size of the address.
|
---|
1202 | */
|
---|
1203 | DECLINLINE(PINTNETIF) intnetR0NetworkAddrCacheLookupIf(PINTNETNETWORK pNetwork, PCRTNETADDRU pAddr, INTNETADDRTYPE const enmType, uint8_t const cbAddr)
|
---|
1204 | {
|
---|
1205 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1206 |
|
---|
1207 | uint32_t iIf = pNetwork->MacTab.cEntries;
|
---|
1208 | while (iIf--)
|
---|
1209 | {
|
---|
1210 | PINTNETIF pIf = pNetwork->MacTab.paEntries[iIf].pIf;
|
---|
1211 | int i = intnetR0IfAddrCacheLookup(&pIf->aAddrCache[enmType], pAddr, cbAddr);
|
---|
1212 | if (i >= 0)
|
---|
1213 | {
|
---|
1214 | intnetR0BusyIncIf(pIf);
|
---|
1215 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1216 | return pIf;
|
---|
1217 | }
|
---|
1218 | }
|
---|
1219 |
|
---|
1220 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1221 | return NULL;
|
---|
1222 | }
|
---|
1223 |
|
---|
1224 |
|
---|
1225 | /**
|
---|
1226 | * Adds an address to the cache, the caller is responsible for making sure it's
|
---|
1227 | * not already in the cache.
|
---|
1228 | *
|
---|
1229 | * The caller must not
|
---|
1230 | *
|
---|
1231 | * @param pIf The interface (for logging).
|
---|
1232 | * @param pCache The address cache.
|
---|
1233 | * @param pAddr The address.
|
---|
1234 | * @param pszMsg log message.
|
---|
1235 | */
|
---|
1236 | static void intnetR0IfAddrCacheAddIt(PINTNETIF pIf, PINTNETADDRCACHE pCache, PCRTNETADDRU pAddr, const char *pszMsg)
|
---|
1237 | {
|
---|
1238 | PINTNETNETWORK pNetwork = pIf->pNetwork;
|
---|
1239 | AssertReturnVoid(pNetwork);
|
---|
1240 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1241 |
|
---|
1242 | if (RT_UNLIKELY(!pCache->cEntriesAlloc))
|
---|
1243 | {
|
---|
1244 | /* This shouldn't happen*/
|
---|
1245 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1246 | return;
|
---|
1247 | }
|
---|
1248 |
|
---|
1249 | /* When the table is full, drop the older entry (FIFO). Do proper ageing? */
|
---|
1250 | if (pCache->cEntries >= pCache->cEntriesAlloc)
|
---|
1251 | {
|
---|
1252 | Log(("intnetR0IfAddrCacheAddIt: type=%d replacing %.*Rhxs\n",
|
---|
1253 | (int)(uintptr_t)(pCache - &pIf->aAddrCache[0]), pCache->cbAddress, pCache->pbEntries));
|
---|
1254 | memmove(pCache->pbEntries, pCache->pbEntries + pCache->cbEntry, pCache->cbEntry * (pCache->cEntries - 1));
|
---|
1255 | pCache->cEntries--;
|
---|
1256 | Assert(pCache->cEntries < pCache->cEntriesAlloc);
|
---|
1257 | }
|
---|
1258 |
|
---|
1259 | /*
|
---|
1260 | * Add the new entry to the end of the array.
|
---|
1261 | */
|
---|
1262 | uint8_t *pbEntry = pCache->pbEntries + pCache->cEntries * pCache->cbEntry;
|
---|
1263 | memcpy(pbEntry, pAddr, pCache->cbAddress);
|
---|
1264 | memset(pbEntry + pCache->cbAddress, '\0', pCache->cbEntry - pCache->cbAddress);
|
---|
1265 | #ifdef LOG_ENABLED
|
---|
1266 | INTNETADDRTYPE enmAddrType = (INTNETADDRTYPE)(uintptr_t)(pCache - &pIf->aAddrCache[0]);
|
---|
1267 | switch (enmAddrType)
|
---|
1268 | {
|
---|
1269 | case kIntNetAddrType_IPv4:
|
---|
1270 | Log(("intnetR0IfAddrCacheAddIt: hIf=%#x MAC=%.6Rhxs IPv4 added #%d %RTnaipv4 %s\n",
|
---|
1271 | pIf->hIf, &pIf->MacAddr, pCache->cEntries, pAddr->IPv4, pszMsg));
|
---|
1272 | break;
|
---|
1273 | case kIntNetAddrType_IPv6:
|
---|
1274 | Log(("intnetR0IfAddrCacheAddIt: hIf=%#x MAC=%.6Rhxs IPv6 added #%d %RTnaipv6 %s\n",
|
---|
1275 | pIf->hIf, &pIf->MacAddr, pCache->cEntries, pAddr->IPv6, pszMsg));
|
---|
1276 | break;
|
---|
1277 | default:
|
---|
1278 | Log(("intnetR0IfAddrCacheAddIt: hIf=%#x MAC=%.6Rhxs type=%d added #%d %.*Rhxs %s\n",
|
---|
1279 | pIf->hIf, &pIf->MacAddr, enmAddrType, pCache->cEntries, pCache->cbAddress, pAddr, pszMsg));
|
---|
1280 | break;
|
---|
1281 | }
|
---|
1282 | #endif
|
---|
1283 | pCache->cEntries++;
|
---|
1284 | Assert(pCache->cEntries <= pCache->cEntriesAlloc);
|
---|
1285 |
|
---|
1286 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1287 | }
|
---|
1288 |
|
---|
1289 |
|
---|
1290 | /**
|
---|
1291 | * A intnetR0IfAddrCacheAdd worker that performs the rest of the lookup.
|
---|
1292 | *
|
---|
1293 | * @param pIf The interface (for logging).
|
---|
1294 | * @param pCache The address cache.
|
---|
1295 | * @param pAddr The address.
|
---|
1296 | * @param cbAddr The size of the address (optimization).
|
---|
1297 | * @param pszMsg Log message.
|
---|
1298 | */
|
---|
1299 | static void intnetR0IfAddrCacheAddSlow(PINTNETIF pIf, PINTNETADDRCACHE pCache, PCRTNETADDRU pAddr, uint8_t const cbAddr, const char *pszMsg)
|
---|
1300 | {
|
---|
1301 | /*
|
---|
1302 | * Check all but the first and last entries, the caller
|
---|
1303 | * has already checked those.
|
---|
1304 | */
|
---|
1305 | int i = pCache->cEntries - 2;
|
---|
1306 | uint8_t const *pbEntry = pCache->pbEntries + pCache->cbEntry;
|
---|
1307 | while (i >= 1)
|
---|
1308 | {
|
---|
1309 | if (RT_LIKELY(intnetR0AddrUIsEqualEx((PCRTNETADDRU)pbEntry, pAddr, cbAddr)))
|
---|
1310 | return;
|
---|
1311 | pbEntry += pCache->cbEntry;
|
---|
1312 | i--;
|
---|
1313 | }
|
---|
1314 |
|
---|
1315 | /*
|
---|
1316 | * Not found, add it.
|
---|
1317 | */
|
---|
1318 | intnetR0IfAddrCacheAddIt(pIf, pCache, pAddr, pszMsg);
|
---|
1319 | }
|
---|
1320 |
|
---|
1321 |
|
---|
1322 | /**
|
---|
1323 | * Adds an address to the cache if it's not already there.
|
---|
1324 | *
|
---|
1325 | * Must not own any spinlocks when calling this function.
|
---|
1326 | *
|
---|
1327 | * @param pIf The interface (for logging).
|
---|
1328 | * @param pCache The address cache.
|
---|
1329 | * @param pAddr The address.
|
---|
1330 | * @param cbAddr The size of the address (optimization).
|
---|
1331 | * @param pszMsg Log message.
|
---|
1332 | */
|
---|
1333 | DECLINLINE(void) intnetR0IfAddrCacheAdd(PINTNETIF pIf, PINTNETADDRCACHE pCache, PCRTNETADDRU pAddr,
|
---|
1334 | uint8_t const cbAddr, const char *pszMsg)
|
---|
1335 | {
|
---|
1336 | Assert(pCache->cbAddress == cbAddr);
|
---|
1337 |
|
---|
1338 | /*
|
---|
1339 | * The optimized case is when the address the first or last cache entry.
|
---|
1340 | */
|
---|
1341 | unsigned i = pCache->cEntries;
|
---|
1342 | if (RT_LIKELY( i > 0
|
---|
1343 | && ( intnetR0AddrUIsEqualEx((PCRTNETADDRU)pCache->pbEntries, pAddr, cbAddr)
|
---|
1344 | || (i > 1
|
---|
1345 | && intnetR0AddrUIsEqualEx((PCRTNETADDRU)(pCache->pbEntries + pCache->cbEntry * i), pAddr, cbAddr))) ))
|
---|
1346 | return;
|
---|
1347 | intnetR0IfAddrCacheAddSlow(pIf, pCache, pAddr, cbAddr, pszMsg);
|
---|
1348 | }
|
---|
1349 |
|
---|
1350 |
|
---|
1351 | /**
|
---|
1352 | * Destroys the specified address cache.
|
---|
1353 | * @param pCache The address cache.
|
---|
1354 | */
|
---|
1355 | static void intnetR0IfAddrCacheDestroy(PINTNETADDRCACHE pCache)
|
---|
1356 | {
|
---|
1357 | void *pvFree = pCache->pbEntries;
|
---|
1358 | pCache->pbEntries = NULL;
|
---|
1359 | pCache->cEntries = 0;
|
---|
1360 | pCache->cEntriesAlloc = 0;
|
---|
1361 | RTMemFree(pvFree);
|
---|
1362 | }
|
---|
1363 |
|
---|
1364 |
|
---|
1365 | /**
|
---|
1366 | * Initialize the address cache for the specified address type.
|
---|
1367 | *
|
---|
1368 | * The cache storage is preallocated and fixed size so that we can handle
|
---|
1369 | * inserts from problematic contexts.
|
---|
1370 | *
|
---|
1371 | * @returns VINF_SUCCESS or VERR_NO_MEMORY.
|
---|
1372 | * @param pCache The cache to initialize.
|
---|
1373 | * @param enmAddrType The address type.
|
---|
1374 | * @param fEnabled Whether the address cache is enabled or not.
|
---|
1375 | */
|
---|
1376 | static int intnetR0IfAddrCacheInit(PINTNETADDRCACHE pCache, INTNETADDRTYPE enmAddrType, bool fEnabled)
|
---|
1377 | {
|
---|
1378 | pCache->cEntries = 0;
|
---|
1379 | pCache->cbAddress = intnetR0AddrSize(enmAddrType);
|
---|
1380 | pCache->cbEntry = RT_ALIGN(pCache->cbAddress, 4);
|
---|
1381 | if (fEnabled)
|
---|
1382 | {
|
---|
1383 | pCache->cEntriesAlloc = 32;
|
---|
1384 | pCache->pbEntries = (uint8_t *)RTMemAllocZ(pCache->cEntriesAlloc * pCache->cbEntry);
|
---|
1385 | if (!pCache->pbEntries)
|
---|
1386 | return VERR_NO_MEMORY;
|
---|
1387 | }
|
---|
1388 | else
|
---|
1389 | {
|
---|
1390 | pCache->cEntriesAlloc = 0;
|
---|
1391 | pCache->pbEntries = NULL;
|
---|
1392 | }
|
---|
1393 | return VINF_SUCCESS;
|
---|
1394 | }
|
---|
1395 |
|
---|
1396 |
|
---|
1397 | /**
|
---|
1398 | * Is it a multicast or broadcast MAC address?
|
---|
1399 | *
|
---|
1400 | * @returns true if multicast, false if not.
|
---|
1401 | * @param pMacAddr The address to inspect.
|
---|
1402 | */
|
---|
1403 | DECL_FORCE_INLINE(bool) intnetR0IsMacAddrMulticast(PCRTMAC pMacAddr)
|
---|
1404 | {
|
---|
1405 | return !!(pMacAddr->au8[0] & 0x01);
|
---|
1406 | }
|
---|
1407 |
|
---|
1408 |
|
---|
1409 | /**
|
---|
1410 | * Is it a dummy MAC address?
|
---|
1411 | *
|
---|
1412 | * We use dummy MAC addresses for interfaces which we don't know the MAC
|
---|
1413 | * address of because they haven't sent anything (learning) or explicitly set
|
---|
1414 | * it.
|
---|
1415 | *
|
---|
1416 | * @returns true if dummy, false if not.
|
---|
1417 | * @param pMacAddr The address to inspect.
|
---|
1418 | */
|
---|
1419 | DECL_FORCE_INLINE(bool) intnetR0IsMacAddrDummy(PCRTMAC pMacAddr)
|
---|
1420 | {
|
---|
1421 | /* The dummy address are broadcast addresses, don't bother check it all. */
|
---|
1422 | return pMacAddr->au16[0] == 0xffff;
|
---|
1423 | }
|
---|
1424 |
|
---|
1425 |
|
---|
1426 | /**
|
---|
1427 | * Compares two MAC addresses.
|
---|
1428 | *
|
---|
1429 | * @returns true if equal, false if not.
|
---|
1430 | * @param pDstAddr1 Address 1.
|
---|
1431 | * @param pDstAddr2 Address 2.
|
---|
1432 | */
|
---|
1433 | DECL_FORCE_INLINE(bool) intnetR0AreMacAddrsEqual(PCRTMAC pDstAddr1, PCRTMAC pDstAddr2)
|
---|
1434 | {
|
---|
1435 | return pDstAddr1->au16[2] == pDstAddr2->au16[2]
|
---|
1436 | && pDstAddr1->au16[1] == pDstAddr2->au16[1]
|
---|
1437 | && pDstAddr1->au16[0] == pDstAddr2->au16[0];
|
---|
1438 | }
|
---|
1439 |
|
---|
1440 |
|
---|
1441 | /**
|
---|
1442 | * Switch a unicast frame based on the network layer address (OSI level 3) and
|
---|
1443 | * return a destination table.
|
---|
1444 | *
|
---|
1445 | * @returns INTNETSWDECISION_DROP, INTNETSWDECISION_TRUNK,
|
---|
1446 | * INTNETSWDECISION_INTNET or INTNETSWDECISION_BROADCAST (misnomer).
|
---|
1447 | * @param pNetwork The network to switch on.
|
---|
1448 | * @param pDstMacAddr The destination MAC address.
|
---|
1449 | * @param enmL3AddrType The level-3 destination address type.
|
---|
1450 | * @param pL3Addr The level-3 destination address.
|
---|
1451 | * @param cbL3Addr The size of the level-3 destination address.
|
---|
1452 | * @param fSrc The frame source (INTNETTRUNKDIR_WIRE).
|
---|
1453 | * @param pDstTab The destination output table.
|
---|
1454 | */
|
---|
1455 | static INTNETSWDECISION intnetR0NetworkSwitchLevel3(PINTNETNETWORK pNetwork, PCRTMAC pDstMacAddr,
|
---|
1456 | INTNETADDRTYPE enmL3AddrType, PCRTNETADDRU pL3Addr, uint8_t cbL3Addr,
|
---|
1457 | uint32_t fSrc, PINTNETDSTTAB pDstTab)
|
---|
1458 | {
|
---|
1459 | Assert(fSrc == INTNETTRUNKDIR_WIRE);
|
---|
1460 |
|
---|
1461 | /*
|
---|
1462 | * Grab the spinlock first and do the switching.
|
---|
1463 | */
|
---|
1464 | PINTNETMACTAB pTab = &pNetwork->MacTab;
|
---|
1465 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1466 |
|
---|
1467 | pDstTab->fTrunkDst = 0;
|
---|
1468 | pDstTab->pTrunk = 0;
|
---|
1469 | pDstTab->cIfs = 0;
|
---|
1470 |
|
---|
1471 | /* Find exactly matching or promiscuous interfaces. */
|
---|
1472 | uint32_t cExactHits = 0;
|
---|
1473 | uint32_t iIfMac = pTab->cEntries;
|
---|
1474 | while (iIfMac-- > 0)
|
---|
1475 | {
|
---|
1476 | if (pTab->paEntries[iIfMac].fActive)
|
---|
1477 | {
|
---|
1478 | PINTNETIF pIf = pTab->paEntries[iIfMac].pIf; AssertPtr(pIf); Assert(pIf->pNetwork == pNetwork);
|
---|
1479 | bool fExact = intnetR0IfAddrCacheLookup(&pIf->aAddrCache[enmL3AddrType], pL3Addr, cbL3Addr) >= 0;
|
---|
1480 | if (fExact || pTab->paEntries[iIfMac].fPromiscuousSeeTrunk)
|
---|
1481 | {
|
---|
1482 | cExactHits += fExact;
|
---|
1483 |
|
---|
1484 | uint32_t iIfDst = pDstTab->cIfs++;
|
---|
1485 | pDstTab->aIfs[iIfDst].pIf = pIf;
|
---|
1486 | pDstTab->aIfs[iIfDst].fReplaceDstMac = fExact;
|
---|
1487 | intnetR0BusyIncIf(pIf);
|
---|
1488 |
|
---|
1489 | if (fExact)
|
---|
1490 | pDstMacAddr = &pIf->MacAddr; /* Avoids duplicates being sent to the host. */
|
---|
1491 | }
|
---|
1492 | }
|
---|
1493 | }
|
---|
1494 |
|
---|
1495 | /* Network only promicuous mode ifs should see related trunk traffic. */
|
---|
1496 | if ( cExactHits
|
---|
1497 | && fSrc
|
---|
1498 | && pNetwork->MacTab.cPromiscuousNoTrunkEntries)
|
---|
1499 | {
|
---|
1500 | iIfMac = pTab->cEntries;
|
---|
1501 | while (iIfMac-- > 0)
|
---|
1502 | {
|
---|
1503 | if ( pTab->paEntries[iIfMac].fActive
|
---|
1504 | && pTab->paEntries[iIfMac].fPromiscuousEff
|
---|
1505 | && !pTab->paEntries[iIfMac].fPromiscuousSeeTrunk)
|
---|
1506 | {
|
---|
1507 | PINTNETIF pIf = pTab->paEntries[iIfMac].pIf; AssertPtr(pIf); Assert(pIf->pNetwork == pNetwork);
|
---|
1508 | if (intnetR0IfAddrCacheLookup(&pIf->aAddrCache[enmL3AddrType], pL3Addr, cbL3Addr) < 0)
|
---|
1509 | {
|
---|
1510 | uint32_t iIfDst = pDstTab->cIfs++;
|
---|
1511 | pDstTab->aIfs[iIfDst].pIf = pIf;
|
---|
1512 | pDstTab->aIfs[iIfDst].fReplaceDstMac = false;
|
---|
1513 | intnetR0BusyIncIf(pIf);
|
---|
1514 | }
|
---|
1515 | }
|
---|
1516 | }
|
---|
1517 | }
|
---|
1518 |
|
---|
1519 | /* Does it match the host, or is the host promiscuous? */
|
---|
1520 | if (pTab->fHostActive)
|
---|
1521 | {
|
---|
1522 | bool fExact = intnetR0AreMacAddrsEqual(&pTab->HostMac, pDstMacAddr);
|
---|
1523 | if ( fExact
|
---|
1524 | || intnetR0IsMacAddrDummy(&pTab->HostMac)
|
---|
1525 | || pTab->fHostPromiscuousEff)
|
---|
1526 | {
|
---|
1527 | cExactHits += fExact;
|
---|
1528 | pDstTab->fTrunkDst |= INTNETTRUNKDIR_HOST;
|
---|
1529 | }
|
---|
1530 | }
|
---|
1531 |
|
---|
1532 | /* Hit the wire if there are no exact matches or if it's in promiscuous mode. */
|
---|
1533 | if (pTab->fWireActive && (!cExactHits || pTab->fWirePromiscuousEff))
|
---|
1534 | pDstTab->fTrunkDst |= INTNETTRUNKDIR_WIRE;
|
---|
1535 | pDstTab->fTrunkDst &= ~fSrc;
|
---|
1536 | if (pDstTab->fTrunkDst)
|
---|
1537 | {
|
---|
1538 | PINTNETTRUNKIF pTrunk = pTab->pTrunk;
|
---|
1539 | pDstTab->pTrunk = pTrunk;
|
---|
1540 | intnetR0BusyIncTrunk(pTrunk);
|
---|
1541 | }
|
---|
1542 |
|
---|
1543 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1544 | return pDstTab->cIfs
|
---|
1545 | ? (!pDstTab->fTrunkDst ? INTNETSWDECISION_INTNET : INTNETSWDECISION_BROADCAST)
|
---|
1546 | : (!pDstTab->fTrunkDst ? INTNETSWDECISION_DROP : INTNETSWDECISION_TRUNK);
|
---|
1547 | }
|
---|
1548 |
|
---|
1549 |
|
---|
1550 | /**
|
---|
1551 | * Pre-switch a unicast MAC address.
|
---|
1552 | *
|
---|
1553 | * @returns INTNETSWDECISION_DROP, INTNETSWDECISION_TRUNK,
|
---|
1554 | * INTNETSWDECISION_INTNET or INTNETSWDECISION_BROADCAST (misnomer).
|
---|
1555 | * @param pNetwork The network to switch on.
|
---|
1556 | * @param fSrc The frame source.
|
---|
1557 | * @param pSrcAddr The source address of the frame.
|
---|
1558 | * @param pDstAddr The destination address of the frame.
|
---|
1559 | */
|
---|
1560 | static INTNETSWDECISION intnetR0NetworkPreSwitchUnicast(PINTNETNETWORK pNetwork, uint32_t fSrc, PCRTMAC pSrcAddr,
|
---|
1561 | PCRTMAC pDstAddr)
|
---|
1562 | {
|
---|
1563 | Assert(!intnetR0IsMacAddrMulticast(pDstAddr));
|
---|
1564 | Assert(fSrc);
|
---|
1565 |
|
---|
1566 | /*
|
---|
1567 | * Grab the spinlock first and do the switching.
|
---|
1568 | */
|
---|
1569 | INTNETSWDECISION enmSwDecision = INTNETSWDECISION_BROADCAST;
|
---|
1570 | PINTNETMACTAB pTab = &pNetwork->MacTab;
|
---|
1571 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1572 |
|
---|
1573 | /* Iterate the internal network interfaces and look for matching source and
|
---|
1574 | destination addresses. */
|
---|
1575 | uint32_t iIfMac = pTab->cEntries;
|
---|
1576 | while (iIfMac-- > 0)
|
---|
1577 | {
|
---|
1578 | if (pTab->paEntries[iIfMac].fActive)
|
---|
1579 | {
|
---|
1580 | /* Unknown interface address? */
|
---|
1581 | if (intnetR0IsMacAddrDummy(&pTab->paEntries[iIfMac].MacAddr))
|
---|
1582 | break;
|
---|
1583 |
|
---|
1584 | /* Promiscuous mode? */
|
---|
1585 | if (pTab->paEntries[iIfMac].fPromiscuousSeeTrunk)
|
---|
1586 | break;
|
---|
1587 |
|
---|
1588 | /* Paranoia - this shouldn't happen, right? */
|
---|
1589 | if ( pSrcAddr
|
---|
1590 | && intnetR0AreMacAddrsEqual(&pTab->paEntries[iIfMac].MacAddr, pSrcAddr))
|
---|
1591 | break;
|
---|
1592 |
|
---|
1593 | /* Exact match? */
|
---|
1594 | if (intnetR0AreMacAddrsEqual(&pTab->paEntries[iIfMac].MacAddr, pDstAddr))
|
---|
1595 | {
|
---|
1596 | enmSwDecision = pTab->fHostPromiscuousEff && fSrc == INTNETTRUNKDIR_WIRE
|
---|
1597 | ? INTNETSWDECISION_BROADCAST
|
---|
1598 | : INTNETSWDECISION_INTNET;
|
---|
1599 | break;
|
---|
1600 | }
|
---|
1601 | }
|
---|
1602 | }
|
---|
1603 |
|
---|
1604 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1605 | return enmSwDecision;
|
---|
1606 | }
|
---|
1607 |
|
---|
1608 |
|
---|
1609 | /**
|
---|
1610 | * Switch a unicast MAC address and return a destination table.
|
---|
1611 | *
|
---|
1612 | * @returns INTNETSWDECISION_DROP, INTNETSWDECISION_TRUNK,
|
---|
1613 | * INTNETSWDECISION_INTNET or INTNETSWDECISION_BROADCAST (misnomer).
|
---|
1614 | * @param pNetwork The network to switch on.
|
---|
1615 | * @param fSrc The frame source.
|
---|
1616 | * @param pIfSender The sender interface, NULL if trunk. Used to
|
---|
1617 | * prevent sending an echo to the sender.
|
---|
1618 | * @param pDstAddr The destination address of the frame.
|
---|
1619 | * @param pDstTab The destination output table.
|
---|
1620 | */
|
---|
1621 | static INTNETSWDECISION intnetR0NetworkSwitchUnicast(PINTNETNETWORK pNetwork, uint32_t fSrc, PINTNETIF pIfSender,
|
---|
1622 | PCRTMAC pDstAddr, PINTNETDSTTAB pDstTab)
|
---|
1623 | {
|
---|
1624 | AssertPtr(pDstTab);
|
---|
1625 | Assert(!intnetR0IsMacAddrMulticast(pDstAddr));
|
---|
1626 |
|
---|
1627 | /*
|
---|
1628 | * Grab the spinlock first and do the switching.
|
---|
1629 | */
|
---|
1630 | PINTNETMACTAB pTab = &pNetwork->MacTab;
|
---|
1631 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1632 |
|
---|
1633 | pDstTab->fTrunkDst = 0;
|
---|
1634 | pDstTab->pTrunk = 0;
|
---|
1635 | pDstTab->cIfs = 0;
|
---|
1636 |
|
---|
1637 | /* Find exactly matching or promiscuous interfaces. */
|
---|
1638 | uint32_t cExactHits = 0;
|
---|
1639 | uint32_t iIfMac = pTab->cEntries;
|
---|
1640 | while (iIfMac-- > 0)
|
---|
1641 | {
|
---|
1642 | if (pTab->paEntries[iIfMac].fActive)
|
---|
1643 | {
|
---|
1644 | bool fExact = intnetR0AreMacAddrsEqual(&pTab->paEntries[iIfMac].MacAddr, pDstAddr);
|
---|
1645 | if ( fExact
|
---|
1646 | || intnetR0IsMacAddrDummy(&pTab->paEntries[iIfMac].MacAddr)
|
---|
1647 | || ( pTab->paEntries[iIfMac].fPromiscuousSeeTrunk
|
---|
1648 | || (!fSrc && pTab->paEntries[iIfMac].fPromiscuousEff) )
|
---|
1649 | )
|
---|
1650 | {
|
---|
1651 | cExactHits += fExact;
|
---|
1652 |
|
---|
1653 | PINTNETIF pIf = pTab->paEntries[iIfMac].pIf; AssertPtr(pIf); Assert(pIf->pNetwork == pNetwork);
|
---|
1654 | if (RT_LIKELY(pIf != pIfSender)) /* paranoia */
|
---|
1655 | {
|
---|
1656 | uint32_t iIfDst = pDstTab->cIfs++;
|
---|
1657 | pDstTab->aIfs[iIfDst].pIf = pIf;
|
---|
1658 | pDstTab->aIfs[iIfDst].fReplaceDstMac = false;
|
---|
1659 | intnetR0BusyIncIf(pIf);
|
---|
1660 | }
|
---|
1661 | }
|
---|
1662 | }
|
---|
1663 | }
|
---|
1664 |
|
---|
1665 | /* Network only promicuous mode ifs should see related trunk traffic. */
|
---|
1666 | if ( cExactHits
|
---|
1667 | && fSrc
|
---|
1668 | && pNetwork->MacTab.cPromiscuousNoTrunkEntries)
|
---|
1669 | {
|
---|
1670 | iIfMac = pTab->cEntries;
|
---|
1671 | while (iIfMac-- > 0)
|
---|
1672 | {
|
---|
1673 | if ( pTab->paEntries[iIfMac].fPromiscuousEff
|
---|
1674 | && !pTab->paEntries[iIfMac].fPromiscuousSeeTrunk
|
---|
1675 | && pTab->paEntries[iIfMac].fActive
|
---|
1676 | && !intnetR0AreMacAddrsEqual(&pTab->paEntries[iIfMac].MacAddr, pDstAddr)
|
---|
1677 | && !intnetR0IsMacAddrDummy(&pTab->paEntries[iIfMac].MacAddr) )
|
---|
1678 | {
|
---|
1679 | PINTNETIF pIf = pTab->paEntries[iIfMac].pIf; AssertPtr(pIf); Assert(pIf->pNetwork == pNetwork);
|
---|
1680 | uint32_t iIfDst = pDstTab->cIfs++;
|
---|
1681 | pDstTab->aIfs[iIfDst].pIf = pIf;
|
---|
1682 | pDstTab->aIfs[iIfDst].fReplaceDstMac = false;
|
---|
1683 | intnetR0BusyIncIf(pIf);
|
---|
1684 | }
|
---|
1685 | }
|
---|
1686 | }
|
---|
1687 |
|
---|
1688 | /* Does it match the host, or is the host promiscuous? */
|
---|
1689 | if ( fSrc != INTNETTRUNKDIR_HOST
|
---|
1690 | && pTab->fHostActive)
|
---|
1691 | {
|
---|
1692 | bool fExact = intnetR0AreMacAddrsEqual(&pTab->HostMac, pDstAddr);
|
---|
1693 | if ( fExact
|
---|
1694 | || intnetR0IsMacAddrDummy(&pTab->HostMac)
|
---|
1695 | || pTab->fHostPromiscuousEff)
|
---|
1696 | {
|
---|
1697 | cExactHits += fExact;
|
---|
1698 | pDstTab->fTrunkDst |= INTNETTRUNKDIR_HOST;
|
---|
1699 | }
|
---|
1700 | }
|
---|
1701 |
|
---|
1702 | /* Hit the wire if there are no exact matches or if it's in promiscuous mode. */
|
---|
1703 | if ( fSrc != INTNETTRUNKDIR_WIRE
|
---|
1704 | && pTab->fWireActive
|
---|
1705 | && (!cExactHits || pTab->fWirePromiscuousEff)
|
---|
1706 | )
|
---|
1707 | pDstTab->fTrunkDst |= INTNETTRUNKDIR_WIRE;
|
---|
1708 |
|
---|
1709 | /* Grab the trunk if we're sending to it. */
|
---|
1710 | if (pDstTab->fTrunkDst)
|
---|
1711 | {
|
---|
1712 | PINTNETTRUNKIF pTrunk = pTab->pTrunk;
|
---|
1713 | pDstTab->pTrunk = pTrunk;
|
---|
1714 | intnetR0BusyIncTrunk(pTrunk);
|
---|
1715 | }
|
---|
1716 |
|
---|
1717 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1718 | return pDstTab->cIfs
|
---|
1719 | ? (!pDstTab->fTrunkDst ? INTNETSWDECISION_INTNET : INTNETSWDECISION_BROADCAST)
|
---|
1720 | : (!pDstTab->fTrunkDst ? INTNETSWDECISION_DROP : INTNETSWDECISION_TRUNK);
|
---|
1721 | }
|
---|
1722 |
|
---|
1723 |
|
---|
1724 | /**
|
---|
1725 | * Create a destination table for a broadcast frame.
|
---|
1726 | *
|
---|
1727 | * @returns INTNETSWDECISION_BROADCAST.
|
---|
1728 | * @param pNetwork The network to switch on.
|
---|
1729 | * @param fSrc The frame source.
|
---|
1730 | * @param pIfSender The sender interface, NULL if trunk. Used to
|
---|
1731 | * prevent sending an echo to the sender.
|
---|
1732 | * @param pDstTab The destination output table.
|
---|
1733 | */
|
---|
1734 | static INTNETSWDECISION intnetR0NetworkSwitchBroadcast(PINTNETNETWORK pNetwork, uint32_t fSrc, PINTNETIF pIfSender,
|
---|
1735 | PINTNETDSTTAB pDstTab)
|
---|
1736 | {
|
---|
1737 | AssertPtr(pDstTab);
|
---|
1738 |
|
---|
1739 | /*
|
---|
1740 | * Grab the spinlock first and record all active interfaces.
|
---|
1741 | */
|
---|
1742 | PINTNETMACTAB pTab = &pNetwork->MacTab;
|
---|
1743 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1744 |
|
---|
1745 | pDstTab->fTrunkDst = 0;
|
---|
1746 | pDstTab->pTrunk = 0;
|
---|
1747 | pDstTab->cIfs = 0;
|
---|
1748 |
|
---|
1749 | /* Regular interfaces. */
|
---|
1750 | uint32_t iIfMac = pTab->cEntries;
|
---|
1751 | while (iIfMac-- > 0)
|
---|
1752 | {
|
---|
1753 | if (pTab->paEntries[iIfMac].fActive)
|
---|
1754 | {
|
---|
1755 | PINTNETIF pIf = pTab->paEntries[iIfMac].pIf; AssertPtr(pIf); Assert(pIf->pNetwork == pNetwork);
|
---|
1756 | if (pIf != pIfSender)
|
---|
1757 | {
|
---|
1758 | uint32_t iIfDst = pDstTab->cIfs++;
|
---|
1759 | pDstTab->aIfs[iIfDst].pIf = pIf;
|
---|
1760 | pDstTab->aIfs[iIfDst].fReplaceDstMac = false;
|
---|
1761 | intnetR0BusyIncIf(pIf);
|
---|
1762 | }
|
---|
1763 | }
|
---|
1764 | }
|
---|
1765 |
|
---|
1766 | /* The trunk interface. */
|
---|
1767 | if (pTab->fHostActive)
|
---|
1768 | pDstTab->fTrunkDst |= INTNETTRUNKDIR_HOST;
|
---|
1769 | if (pTab->fWireActive)
|
---|
1770 | pDstTab->fTrunkDst |= INTNETTRUNKDIR_WIRE;
|
---|
1771 | pDstTab->fTrunkDst &= ~fSrc;
|
---|
1772 | if (pDstTab->fTrunkDst)
|
---|
1773 | {
|
---|
1774 | PINTNETTRUNKIF pTrunk = pTab->pTrunk;
|
---|
1775 | pDstTab->pTrunk = pTrunk;
|
---|
1776 | intnetR0BusyIncTrunk(pTrunk);
|
---|
1777 | }
|
---|
1778 |
|
---|
1779 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1780 | return INTNETSWDECISION_BROADCAST;
|
---|
1781 | }
|
---|
1782 |
|
---|
1783 |
|
---|
1784 | /**
|
---|
1785 | * Create a destination table with the trunk and any promiscuous interfaces.
|
---|
1786 | *
|
---|
1787 | * This is only used in a fallback case of the level-3 switching, so we can
|
---|
1788 | * assume the wire as source and skip the sender interface filtering.
|
---|
1789 | *
|
---|
1790 | * @returns INTNETSWDECISION_DROP, INTNETSWDECISION_TRUNK,
|
---|
1791 | * INTNETSWDECISION_INTNET or INTNETSWDECISION_BROADCAST (misnomer).
|
---|
1792 | * @param pNetwork The network to switch on.
|
---|
1793 | * @param fSrc The frame source.
|
---|
1794 | * @param pDstTab The destination output table.
|
---|
1795 | */
|
---|
1796 | static INTNETSWDECISION intnetR0NetworkSwitchTrunkAndPromisc(PINTNETNETWORK pNetwork, uint32_t fSrc, PINTNETDSTTAB pDstTab)
|
---|
1797 | {
|
---|
1798 | Assert(fSrc == INTNETTRUNKDIR_WIRE);
|
---|
1799 |
|
---|
1800 | /*
|
---|
1801 | * Grab the spinlock first and do the switching.
|
---|
1802 | */
|
---|
1803 | PINTNETMACTAB pTab = &pNetwork->MacTab;
|
---|
1804 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1805 |
|
---|
1806 | pDstTab->fTrunkDst = 0;
|
---|
1807 | pDstTab->pTrunk = 0;
|
---|
1808 | pDstTab->cIfs = 0;
|
---|
1809 |
|
---|
1810 | /* Find promiscuous interfaces. */
|
---|
1811 | uint32_t iIfMac = pTab->cEntries;
|
---|
1812 | while (iIfMac-- > 0)
|
---|
1813 | {
|
---|
1814 | if ( pTab->paEntries[iIfMac].fActive
|
---|
1815 | && ( pTab->paEntries[iIfMac].fPromiscuousSeeTrunk
|
---|
1816 | || (!fSrc && pTab->paEntries[iIfMac].fPromiscuousEff) )
|
---|
1817 | )
|
---|
1818 | {
|
---|
1819 | PINTNETIF pIf = pTab->paEntries[iIfMac].pIf; AssertPtr(pIf); Assert(pIf->pNetwork == pNetwork);
|
---|
1820 | uint32_t iIfDst = pDstTab->cIfs++;
|
---|
1821 | pDstTab->aIfs[iIfDst].pIf = pIf;
|
---|
1822 | pDstTab->aIfs[iIfDst].fReplaceDstMac = false;
|
---|
1823 | intnetR0BusyIncIf(pIf);
|
---|
1824 | }
|
---|
1825 | }
|
---|
1826 |
|
---|
1827 | /* The trunk interface. */
|
---|
1828 | if (pTab->fHostActive)
|
---|
1829 | pDstTab->fTrunkDst |= INTNETTRUNKDIR_HOST;
|
---|
1830 | if (pTab->fWireActive)
|
---|
1831 | pDstTab->fTrunkDst |= INTNETTRUNKDIR_WIRE;
|
---|
1832 | pDstTab->fTrunkDst &= ~fSrc;
|
---|
1833 | if (pDstTab->fTrunkDst)
|
---|
1834 | {
|
---|
1835 | PINTNETTRUNKIF pTrunk = pTab->pTrunk;
|
---|
1836 | pDstTab->pTrunk = pTrunk;
|
---|
1837 | intnetR0BusyIncTrunk(pTrunk);
|
---|
1838 | }
|
---|
1839 |
|
---|
1840 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1841 | return !pDstTab->cIfs
|
---|
1842 | ? (!pDstTab->fTrunkDst ? INTNETSWDECISION_DROP : INTNETSWDECISION_TRUNK)
|
---|
1843 | : (!pDstTab->fTrunkDst ? INTNETSWDECISION_INTNET : INTNETSWDECISION_BROADCAST);
|
---|
1844 | }
|
---|
1845 |
|
---|
1846 |
|
---|
1847 | /**
|
---|
1848 | * Create a destination table for a trunk frame.
|
---|
1849 | *
|
---|
1850 | * @returns INTNETSWDECISION_BROADCAST.
|
---|
1851 | * @param pNetwork The network to switch on.
|
---|
1852 | * @param fSrc The frame source.
|
---|
1853 | * @param pDstTab The destination output table.
|
---|
1854 | */
|
---|
1855 | static INTNETSWDECISION intnetR0NetworkSwitchTrunk(PINTNETNETWORK pNetwork, uint32_t fSrc, PINTNETDSTTAB pDstTab)
|
---|
1856 | {
|
---|
1857 | AssertPtr(pDstTab);
|
---|
1858 |
|
---|
1859 | /*
|
---|
1860 | * Grab the spinlock first and record all active interfaces.
|
---|
1861 | */
|
---|
1862 | PINTNETMACTAB pTab= &pNetwork->MacTab;
|
---|
1863 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1864 |
|
---|
1865 | pDstTab->fTrunkDst = 0;
|
---|
1866 | pDstTab->pTrunk = 0;
|
---|
1867 | pDstTab->cIfs = 0;
|
---|
1868 |
|
---|
1869 | /* The trunk interface. */
|
---|
1870 | if (pTab->fHostActive)
|
---|
1871 | pDstTab->fTrunkDst |= INTNETTRUNKDIR_HOST;
|
---|
1872 | if (pTab->fWireActive)
|
---|
1873 | pDstTab->fTrunkDst |= INTNETTRUNKDIR_WIRE;
|
---|
1874 | pDstTab->fTrunkDst &= ~fSrc;
|
---|
1875 | if (pDstTab->fTrunkDst)
|
---|
1876 | {
|
---|
1877 | PINTNETTRUNKIF pTrunk = pTab->pTrunk;
|
---|
1878 | pDstTab->pTrunk = pTrunk;
|
---|
1879 | intnetR0BusyIncTrunk(pTrunk);
|
---|
1880 | }
|
---|
1881 |
|
---|
1882 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
1883 | return pDstTab->fTrunkDst ? INTNETSWDECISION_TRUNK : INTNETSWDECISION_DROP;
|
---|
1884 | }
|
---|
1885 |
|
---|
1886 |
|
---|
1887 | /**
|
---|
1888 | * Wrapper around RTMemAlloc for allocating a destination table.
|
---|
1889 | *
|
---|
1890 | * @returns VINF_SUCCESS or VERR_NO_MEMORY.
|
---|
1891 | * @param cEntries The size given as an entry count.
|
---|
1892 | * @param ppDstTab Where to store the pointer (always).
|
---|
1893 | */
|
---|
1894 | DECLINLINE(int) intnetR0AllocDstTab(uint32_t cEntries, PINTNETDSTTAB *ppDstTab)
|
---|
1895 | {
|
---|
1896 | PINTNETDSTTAB pDstTab;
|
---|
1897 | *ppDstTab = pDstTab = (PINTNETDSTTAB)RTMemAlloc(RT_OFFSETOF(INTNETDSTTAB, aIfs[cEntries]));
|
---|
1898 | if (RT_UNLIKELY(!pDstTab))
|
---|
1899 | return VERR_NO_MEMORY;
|
---|
1900 | return VINF_SUCCESS;
|
---|
1901 | }
|
---|
1902 |
|
---|
1903 |
|
---|
1904 | /**
|
---|
1905 | * Ensures that there is space for another interface in the MAC address lookup
|
---|
1906 | * table as well as all the destination tables.
|
---|
1907 | *
|
---|
1908 | * The caller must own the create/open/destroy mutex.
|
---|
1909 | *
|
---|
1910 | * @returns VINF_SUCCESS, VERR_NO_MEMORY or VERR_OUT_OF_RANGE.
|
---|
1911 | * @param pNetwork The network to operate on.
|
---|
1912 | */
|
---|
1913 | static int intnetR0NetworkEnsureTabSpace(PINTNETNETWORK pNetwork)
|
---|
1914 | {
|
---|
1915 | /*
|
---|
1916 | * The cEntries and cEntriesAllocated members are only updated while
|
---|
1917 | * owning the big mutex, so we only need the spinlock when doing the
|
---|
1918 | * actual table replacing.
|
---|
1919 | */
|
---|
1920 | PINTNETMACTAB pTab = &pNetwork->MacTab;
|
---|
1921 | int rc = VINF_SUCCESS;
|
---|
1922 | AssertReturn(pTab->cEntries <= pTab->cEntriesAllocated, VERR_INTERNAL_ERROR_2);
|
---|
1923 | if (pTab->cEntries + 1 > pTab->cEntriesAllocated)
|
---|
1924 | {
|
---|
1925 | uint32_t const cAllocated = pTab->cEntriesAllocated + INTNET_GROW_DSTTAB_SIZE;
|
---|
1926 | if (cAllocated <= INTNET_MAX_IFS)
|
---|
1927 | {
|
---|
1928 | /*
|
---|
1929 | * Resize the destination tables first, this can be kind of tedious.
|
---|
1930 | */
|
---|
1931 | for (uint32_t i = 0; i < pTab->cEntries; i++)
|
---|
1932 | {
|
---|
1933 | PINTNETIF pIf = pTab->paEntries[i].pIf; AssertPtr(pIf);
|
---|
1934 | PINTNETDSTTAB pNew;
|
---|
1935 | rc = intnetR0AllocDstTab(cAllocated, &pNew);
|
---|
1936 | if (RT_FAILURE(rc))
|
---|
1937 | break;
|
---|
1938 |
|
---|
1939 | for (;;)
|
---|
1940 | {
|
---|
1941 | PINTNETDSTTAB pOld = pIf->pDstTab;
|
---|
1942 | if ( pOld
|
---|
1943 | && ASMAtomicCmpXchgPtr(&pIf->pDstTab, pNew, pOld))
|
---|
1944 | {
|
---|
1945 | RTMemFree(pOld);
|
---|
1946 | break;
|
---|
1947 | }
|
---|
1948 | intnetR0BusyWait(pNetwork, &pIf->cBusy);
|
---|
1949 | }
|
---|
1950 | }
|
---|
1951 |
|
---|
1952 | /*
|
---|
1953 | * The trunk.
|
---|
1954 | */
|
---|
1955 | if ( RT_SUCCESS(rc)
|
---|
1956 | && pNetwork->MacTab.pTrunk)
|
---|
1957 | {
|
---|
1958 | AssertCompileAdjacentMembers(INTNETTRUNKIF, apTaskDstTabs, apIntDstTabs);
|
---|
1959 | PINTNETTRUNKIF pTrunk = pNetwork->MacTab.pTrunk;
|
---|
1960 | PINTNETDSTTAB * const ppEndDstTab = &pTrunk->apIntDstTabs[pTrunk->cIntDstTabs];
|
---|
1961 | for (PINTNETDSTTAB *ppDstTab = &pTrunk->apTaskDstTabs[0];
|
---|
1962 | ppDstTab != ppEndDstTab && RT_SUCCESS(rc);
|
---|
1963 | ppDstTab++)
|
---|
1964 | {
|
---|
1965 | PINTNETDSTTAB pNew;
|
---|
1966 | rc = intnetR0AllocDstTab(cAllocated, &pNew);
|
---|
1967 | if (RT_FAILURE(rc))
|
---|
1968 | break;
|
---|
1969 |
|
---|
1970 | for (;;)
|
---|
1971 | {
|
---|
1972 | RTSpinlockAcquire(pTrunk->hDstTabSpinlock);
|
---|
1973 | void *pvOld = *ppDstTab;
|
---|
1974 | if (pvOld)
|
---|
1975 | *ppDstTab = pNew;
|
---|
1976 | RTSpinlockReleaseNoInts(pTrunk->hDstTabSpinlock);
|
---|
1977 | if (pvOld)
|
---|
1978 | {
|
---|
1979 | RTMemFree(pvOld);
|
---|
1980 | break;
|
---|
1981 | }
|
---|
1982 | intnetR0BusyWait(pNetwork, &pTrunk->cBusy);
|
---|
1983 | }
|
---|
1984 | }
|
---|
1985 | }
|
---|
1986 |
|
---|
1987 | /*
|
---|
1988 | * The MAC Address table itself.
|
---|
1989 | */
|
---|
1990 | if (RT_SUCCESS(rc))
|
---|
1991 | {
|
---|
1992 | PINTNETMACTABENTRY paNew = (PINTNETMACTABENTRY)RTMemAlloc(sizeof(INTNETMACTABENTRY) * cAllocated);
|
---|
1993 | if (paNew)
|
---|
1994 | {
|
---|
1995 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
1996 |
|
---|
1997 | PINTNETMACTABENTRY paOld = pTab->paEntries;
|
---|
1998 | uint32_t i = pTab->cEntries;
|
---|
1999 | while (i-- > 0)
|
---|
2000 | {
|
---|
2001 | paNew[i] = paOld[i];
|
---|
2002 |
|
---|
2003 | paOld[i].fActive = false;
|
---|
2004 | paOld[i].pIf = NULL;
|
---|
2005 | }
|
---|
2006 |
|
---|
2007 | pTab->paEntries = paNew;
|
---|
2008 | pTab->cEntriesAllocated = cAllocated;
|
---|
2009 |
|
---|
2010 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
2011 |
|
---|
2012 | RTMemFree(paOld);
|
---|
2013 | }
|
---|
2014 | else
|
---|
2015 | rc = VERR_NO_MEMORY;
|
---|
2016 | }
|
---|
2017 | }
|
---|
2018 | else
|
---|
2019 | rc = VERR_OUT_OF_RANGE;
|
---|
2020 | }
|
---|
2021 | return rc;
|
---|
2022 | }
|
---|
2023 |
|
---|
2024 |
|
---|
2025 |
|
---|
2026 |
|
---|
2027 | #ifdef INTNET_WITH_DHCP_SNOOPING
|
---|
2028 |
|
---|
2029 | /**
|
---|
2030 | * Snoops IP assignments and releases from the DHCPv4 traffic.
|
---|
2031 | *
|
---|
2032 | * The caller is responsible for making sure this traffic between the
|
---|
2033 | * BOOTPS and BOOTPC ports and validate the IP header. The UDP packet
|
---|
2034 | * need not be validated beyond the ports.
|
---|
2035 | *
|
---|
2036 | * @param pNetwork The network this frame was seen on.
|
---|
2037 | * @param pIpHdr Pointer to a valid IP header. This is for pseudo
|
---|
2038 | * header validation, so only the minimum header size
|
---|
2039 | * needs to be available and valid here.
|
---|
2040 | * @param pUdpHdr Pointer to the UDP header in the frame.
|
---|
2041 | * @param cbUdpPkt What's left of the frame when starting at the UDP header.
|
---|
2042 | * @param fGso Set if this is a GSO frame, clear if regular.
|
---|
2043 | */
|
---|
2044 | static void intnetR0NetworkSnoopDhcp(PINTNETNETWORK pNetwork, PCRTNETIPV4 pIpHdr, PCRTNETUDP pUdpHdr, uint32_t cbUdpPkt)
|
---|
2045 | {
|
---|
2046 | /*
|
---|
2047 | * Check if the DHCP message is valid and get the type.
|
---|
2048 | */
|
---|
2049 | if (!RTNetIPv4IsUDPValid(pIpHdr, pUdpHdr, pUdpHdr + 1, cbUdpPkt, true /*fCheckSum*/))
|
---|
2050 | {
|
---|
2051 | Log6(("Bad UDP packet\n"));
|
---|
2052 | return;
|
---|
2053 | }
|
---|
2054 | PCRTNETBOOTP pDhcp = (PCRTNETBOOTP)(pUdpHdr + 1);
|
---|
2055 | uint8_t MsgType;
|
---|
2056 | if (!RTNetIPv4IsDHCPValid(pUdpHdr, pDhcp, cbUdpPkt - sizeof(*pUdpHdr), &MsgType))
|
---|
2057 | {
|
---|
2058 | Log6(("Bad DHCP packet\n"));
|
---|
2059 | return;
|
---|
2060 | }
|
---|
2061 |
|
---|
2062 | #ifdef LOG_ENABLED
|
---|
2063 | /*
|
---|
2064 | * Log it.
|
---|
2065 | */
|
---|
2066 | const char *pszType = "unknown";
|
---|
2067 | switch (MsgType)
|
---|
2068 | {
|
---|
2069 | case RTNET_DHCP_MT_DISCOVER: pszType = "discover"; break;
|
---|
2070 | case RTNET_DHCP_MT_OFFER: pszType = "offer"; break;
|
---|
2071 | case RTNET_DHCP_MT_REQUEST: pszType = "request"; break;
|
---|
2072 | case RTNET_DHCP_MT_DECLINE: pszType = "decline"; break;
|
---|
2073 | case RTNET_DHCP_MT_ACK: pszType = "ack"; break;
|
---|
2074 | case RTNET_DHCP_MT_NAC: pszType = "nac"; break;
|
---|
2075 | case RTNET_DHCP_MT_RELEASE: pszType = "release"; break;
|
---|
2076 | case RTNET_DHCP_MT_INFORM: pszType = "inform"; break;
|
---|
2077 | }
|
---|
2078 | Log6(("DHCP msg: %d (%s) client %.6Rhxs ciaddr=%d.%d.%d.%d yiaddr=%d.%d.%d.%d\n", MsgType, pszType, &pDhcp->bp_chaddr,
|
---|
2079 | pDhcp->bp_ciaddr.au8[0], pDhcp->bp_ciaddr.au8[1], pDhcp->bp_ciaddr.au8[2], pDhcp->bp_ciaddr.au8[3],
|
---|
2080 | pDhcp->bp_yiaddr.au8[0], pDhcp->bp_yiaddr.au8[1], pDhcp->bp_yiaddr.au8[2], pDhcp->bp_yiaddr.au8[3]));
|
---|
2081 | #endif /* LOG_EANBLED */
|
---|
2082 |
|
---|
2083 | /*
|
---|
2084 | * Act upon the message.
|
---|
2085 | */
|
---|
2086 | switch (MsgType)
|
---|
2087 | {
|
---|
2088 | #if 0
|
---|
2089 | case RTNET_DHCP_MT_REQUEST:
|
---|
2090 | /** @todo Check for valid non-broadcast requests w/ IP for any of the MACs we
|
---|
2091 | * know, and add the IP to the cache. */
|
---|
2092 | break;
|
---|
2093 | #endif
|
---|
2094 |
|
---|
2095 |
|
---|
2096 | /*
|
---|
2097 | * Lookup the interface by its MAC address and insert the IPv4 address into the cache.
|
---|
2098 | * Delete the old client address first, just in case it changed in a renewal.
|
---|
2099 | */
|
---|
2100 | case RTNET_DHCP_MT_ACK:
|
---|
2101 | if (intnetR0IPv4AddrIsGood(pDhcp->bp_yiaddr))
|
---|
2102 | {
|
---|
2103 | PINTNETIF pMatchingIf = NULL;
|
---|
2104 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
2105 |
|
---|
2106 | uint32_t iIf = pNetwork->MacTab.cEntries;
|
---|
2107 | while (iIf-- > 0)
|
---|
2108 | {
|
---|
2109 | PINTNETIF pCur = pNetwork->MacTab.paEntries[iIf].pIf;
|
---|
2110 | if ( intnetR0IfHasMacAddr(pCur)
|
---|
2111 | && !memcmp(&pCur->MacAddr, &pDhcp->bp_chaddr, sizeof(RTMAC)))
|
---|
2112 | {
|
---|
2113 | intnetR0IfAddrCacheDelete(pCur, &pCur->aAddrCache[kIntNetAddrType_IPv4],
|
---|
2114 | (PCRTNETADDRU)&pDhcp->bp_ciaddr, sizeof(RTNETADDRIPV4), "DHCP_MT_ACK");
|
---|
2115 | if (!pMatchingIf)
|
---|
2116 | {
|
---|
2117 | pMatchingIf = pCur;
|
---|
2118 | intnetR0BusyIncIf(pMatchingIf);
|
---|
2119 | }
|
---|
2120 | }
|
---|
2121 | }
|
---|
2122 |
|
---|
2123 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
2124 |
|
---|
2125 | if (pMatchingIf)
|
---|
2126 | {
|
---|
2127 | intnetR0IfAddrCacheAdd(pMatchingIf, &pMatchingIf->aAddrCache[kIntNetAddrType_IPv4],
|
---|
2128 | (PCRTNETADDRU)&pDhcp->bp_yiaddr, sizeof(RTNETADDRIPV4), "DHCP_MT_ACK");
|
---|
2129 | intnetR0BusyDecIf(pMatchingIf);
|
---|
2130 | }
|
---|
2131 | }
|
---|
2132 | return;
|
---|
2133 |
|
---|
2134 |
|
---|
2135 | /*
|
---|
2136 | * Lookup the interface by its MAC address and remove the IPv4 address(es) from the cache.
|
---|
2137 | */
|
---|
2138 | case RTNET_DHCP_MT_RELEASE:
|
---|
2139 | {
|
---|
2140 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
2141 |
|
---|
2142 | uint32_t iIf = pNetwork->MacTab.cEntries;
|
---|
2143 | while (iIf-- > 0)
|
---|
2144 | {
|
---|
2145 | PINTNETIF pCur = pNetwork->MacTab.paEntries[iIf].pIf;
|
---|
2146 | if ( intnetR0IfHasMacAddr(pCur)
|
---|
2147 | && !memcmp(&pCur->MacAddr, &pDhcp->bp_chaddr, sizeof(RTMAC)))
|
---|
2148 | {
|
---|
2149 | intnetR0IfAddrCacheDelete(pCur, &pCur->aAddrCache[kIntNetAddrType_IPv4],
|
---|
2150 | (PCRTNETADDRU)&pDhcp->bp_ciaddr, sizeof(RTNETADDRIPV4), "DHCP_MT_RELEASE");
|
---|
2151 | intnetR0IfAddrCacheDelete(pCur, &pCur->aAddrCache[kIntNetAddrType_IPv4],
|
---|
2152 | (PCRTNETADDRU)&pDhcp->bp_yiaddr, sizeof(RTNETADDRIPV4), "DHCP_MT_RELEASE");
|
---|
2153 | }
|
---|
2154 | }
|
---|
2155 |
|
---|
2156 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
2157 | break;
|
---|
2158 | }
|
---|
2159 | }
|
---|
2160 |
|
---|
2161 | }
|
---|
2162 |
|
---|
2163 |
|
---|
2164 | /**
|
---|
2165 | * Worker for intnetR0TrunkIfSnoopAddr that takes care of what
|
---|
2166 | * is likely to be a DHCP message.
|
---|
2167 | *
|
---|
2168 | * The caller has already check that the UDP source and destination ports
|
---|
2169 | * are BOOTPS or BOOTPC.
|
---|
2170 | *
|
---|
2171 | * @param pNetwork The network this frame was seen on.
|
---|
2172 | * @param pSG The gather list for the frame.
|
---|
2173 | */
|
---|
2174 | static void intnetR0TrunkIfSnoopDhcp(PINTNETNETWORK pNetwork, PCINTNETSG pSG)
|
---|
2175 | {
|
---|
2176 | /*
|
---|
2177 | * Get a pointer to a linear copy of the full packet, using the
|
---|
2178 | * temporary buffer if necessary.
|
---|
2179 | */
|
---|
2180 | PCRTNETIPV4 pIpHdr = (PCRTNETIPV4)((PCRTNETETHERHDR)pSG->aSegs[0].pv + 1);
|
---|
2181 | uint32_t cbPacket = pSG->cbTotal - sizeof(RTNETETHERHDR);
|
---|
2182 | if (pSG->cSegsUsed > 1)
|
---|
2183 | {
|
---|
2184 | cbPacket = RT_MIN(cbPacket, INTNETNETWORK_TMP_SIZE);
|
---|
2185 | Log6(("intnetR0TrunkIfSnoopDhcp: Copying IPv4/UDP/DHCP pkt %u\n", cbPacket));
|
---|
2186 | if (!intnetR0SgReadPart(pSG, sizeof(RTNETETHERHDR), cbPacket, pNetwork->pbTmp))
|
---|
2187 | return;
|
---|
2188 | //pSG->fFlags |= INTNETSG_FLAGS_PKT_CP_IN_TMP;
|
---|
2189 | pIpHdr = (PCRTNETIPV4)pNetwork->pbTmp;
|
---|
2190 | }
|
---|
2191 |
|
---|
2192 | /*
|
---|
2193 | * Validate the IP header and find the UDP packet.
|
---|
2194 | */
|
---|
2195 | if (!RTNetIPv4IsHdrValid(pIpHdr, cbPacket, pSG->cbTotal - sizeof(RTNETETHERHDR), true /*fChecksum*/))
|
---|
2196 | {
|
---|
2197 | Log(("intnetR0TrunkIfSnoopDhcp: bad ip header\n"));
|
---|
2198 | return;
|
---|
2199 | }
|
---|
2200 | uint32_t cbIpHdr = pIpHdr->ip_hl * 4;
|
---|
2201 |
|
---|
2202 | /*
|
---|
2203 | * Hand it over to the common DHCP snooper.
|
---|
2204 | */
|
---|
2205 | intnetR0NetworkSnoopDhcp(pNetwork, pIpHdr, (PCRTNETUDP)((uintptr_t)pIpHdr + cbIpHdr), cbPacket - cbIpHdr);
|
---|
2206 | }
|
---|
2207 |
|
---|
2208 | #endif /* INTNET_WITH_DHCP_SNOOPING */
|
---|
2209 |
|
---|
2210 |
|
---|
2211 | /**
|
---|
2212 | * Snoops up source addresses from ARP requests and purge these from the address
|
---|
2213 | * caches.
|
---|
2214 | *
|
---|
2215 | * The purpose of this purging is to get rid of stale addresses.
|
---|
2216 | *
|
---|
2217 | * @param pNetwork The network this frame was seen on.
|
---|
2218 | * @param pSG The gather list for the frame.
|
---|
2219 | */
|
---|
2220 | static void intnetR0TrunkIfSnoopArp(PINTNETNETWORK pNetwork, PCINTNETSG pSG)
|
---|
2221 | {
|
---|
2222 | /*
|
---|
2223 | * Check the minimum size first.
|
---|
2224 | */
|
---|
2225 | if (RT_UNLIKELY(pSG->cbTotal < sizeof(RTNETETHERHDR) + sizeof(RTNETARPIPV4)))
|
---|
2226 | return;
|
---|
2227 |
|
---|
2228 | /*
|
---|
2229 | * Copy to temporary buffer if necessary.
|
---|
2230 | */
|
---|
2231 | uint32_t cbPacket = RT_MIN(pSG->cbTotal, sizeof(RTNETARPIPV4));
|
---|
2232 | PCRTNETARPIPV4 pArpIPv4 = (PCRTNETARPIPV4)((uintptr_t)pSG->aSegs[0].pv + sizeof(RTNETETHERHDR));
|
---|
2233 | if ( pSG->cSegsUsed != 1
|
---|
2234 | && pSG->aSegs[0].cb < cbPacket)
|
---|
2235 | {
|
---|
2236 | if ( (pSG->fFlags & (INTNETSG_FLAGS_ARP_IPV4 | INTNETSG_FLAGS_PKT_CP_IN_TMP))
|
---|
2237 | != (INTNETSG_FLAGS_ARP_IPV4 | INTNETSG_FLAGS_PKT_CP_IN_TMP)
|
---|
2238 | && !intnetR0SgReadPart(pSG, sizeof(RTNETETHERHDR), cbPacket, pNetwork->pbTmp))
|
---|
2239 | return;
|
---|
2240 | pArpIPv4 = (PCRTNETARPIPV4)pNetwork->pbTmp;
|
---|
2241 | }
|
---|
2242 |
|
---|
2243 | /*
|
---|
2244 | * Ignore packets which doesn't interest us or we perceive as malformed.
|
---|
2245 | */
|
---|
2246 | if (RT_UNLIKELY( pArpIPv4->Hdr.ar_hlen != sizeof(RTMAC)
|
---|
2247 | || pArpIPv4->Hdr.ar_plen != sizeof(RTNETADDRIPV4)
|
---|
2248 | || pArpIPv4->Hdr.ar_htype != RT_H2BE_U16(RTNET_ARP_ETHER)
|
---|
2249 | || pArpIPv4->Hdr.ar_ptype != RT_H2BE_U16(RTNET_ETHERTYPE_IPV4)))
|
---|
2250 | return;
|
---|
2251 | uint16_t ar_oper = RT_H2BE_U16(pArpIPv4->Hdr.ar_oper);
|
---|
2252 | if (RT_UNLIKELY( ar_oper != RTNET_ARPOP_REQUEST
|
---|
2253 | && ar_oper != RTNET_ARPOP_REPLY))
|
---|
2254 | {
|
---|
2255 | Log6(("ts-ar: op=%#x\n", ar_oper));
|
---|
2256 | return;
|
---|
2257 | }
|
---|
2258 |
|
---|
2259 | /*
|
---|
2260 | * Delete the source address if it's OK.
|
---|
2261 | */
|
---|
2262 | if ( !intnetR0IsMacAddrMulticast(&pArpIPv4->ar_sha)
|
---|
2263 | && ( pArpIPv4->ar_sha.au16[0]
|
---|
2264 | || pArpIPv4->ar_sha.au16[1]
|
---|
2265 | || pArpIPv4->ar_sha.au16[2])
|
---|
2266 | && intnetR0IPv4AddrIsGood(pArpIPv4->ar_spa))
|
---|
2267 | {
|
---|
2268 | Log6(("ts-ar: %d.%d.%d.%d / %.6Rhxs\n", pArpIPv4->ar_spa.au8[0], pArpIPv4->ar_spa.au8[1],
|
---|
2269 | pArpIPv4->ar_spa.au8[2], pArpIPv4->ar_spa.au8[3], &pArpIPv4->ar_sha));
|
---|
2270 | intnetR0NetworkAddrCacheDelete(pNetwork, (PCRTNETADDRU)&pArpIPv4->ar_spa,
|
---|
2271 | kIntNetAddrType_IPv4, sizeof(pArpIPv4->ar_spa), "tif/arp");
|
---|
2272 | }
|
---|
2273 | }
|
---|
2274 |
|
---|
2275 |
|
---|
2276 | #ifdef INTNET_WITH_DHCP_SNOOPING
|
---|
2277 | /**
|
---|
2278 | * Snoop up addresses from ARP and DHCP traffic from frames coming
|
---|
2279 | * over the trunk connection.
|
---|
2280 | *
|
---|
2281 | * The caller is responsible for do some basic filtering before calling
|
---|
2282 | * this function.
|
---|
2283 | * For IPv4 this means checking against the minimum DHCPv4 frame size.
|
---|
2284 | *
|
---|
2285 | * @param pNetwork The network.
|
---|
2286 | * @param pSG The SG list for the frame.
|
---|
2287 | * @param EtherType The Ethertype of the frame.
|
---|
2288 | */
|
---|
2289 | static void intnetR0TrunkIfSnoopAddr(PINTNETNETWORK pNetwork, PCINTNETSG pSG, uint16_t EtherType)
|
---|
2290 | {
|
---|
2291 | switch (EtherType)
|
---|
2292 | {
|
---|
2293 | case RTNET_ETHERTYPE_IPV4:
|
---|
2294 | {
|
---|
2295 | uint32_t cbIpHdr;
|
---|
2296 | uint8_t b;
|
---|
2297 |
|
---|
2298 | Assert(pSG->cbTotal >= sizeof(RTNETETHERHDR) + RTNETIPV4_MIN_LEN + RTNETUDP_MIN_LEN + RTNETBOOTP_DHCP_MIN_LEN);
|
---|
2299 | if (pSG->aSegs[0].cb >= sizeof(RTNETETHERHDR) + RTNETIPV4_MIN_LEN)
|
---|
2300 | {
|
---|
2301 | /* check if the protocol is UDP */
|
---|
2302 | PCRTNETIPV4 pIpHdr = (PCRTNETIPV4)((uint8_t const *)pSG->aSegs[0].pv + sizeof(RTNETETHERHDR));
|
---|
2303 | if (pIpHdr->ip_p != RTNETIPV4_PROT_UDP)
|
---|
2304 | return;
|
---|
2305 |
|
---|
2306 | /* get the TCP header length */
|
---|
2307 | cbIpHdr = pIpHdr->ip_hl * 4;
|
---|
2308 | }
|
---|
2309 | else
|
---|
2310 | {
|
---|
2311 | /* check if the protocol is UDP */
|
---|
2312 | if ( intnetR0SgReadByte(pSG, sizeof(RTNETETHERHDR) + RT_OFFSETOF(RTNETIPV4, ip_p))
|
---|
2313 | != RTNETIPV4_PROT_UDP)
|
---|
2314 | return;
|
---|
2315 |
|
---|
2316 | /* get the TCP header length */
|
---|
2317 | b = intnetR0SgReadByte(pSG, sizeof(RTNETETHERHDR) + 0); /* (IPv4 first byte, a bitfield) */
|
---|
2318 | cbIpHdr = (b & 0x0f) * 4;
|
---|
2319 | }
|
---|
2320 | if (cbIpHdr < RTNETIPV4_MIN_LEN)
|
---|
2321 | return;
|
---|
2322 |
|
---|
2323 | /* compare the ports. */
|
---|
2324 | if (pSG->aSegs[0].cb >= sizeof(RTNETETHERHDR) + cbIpHdr + RTNETUDP_MIN_LEN)
|
---|
2325 | {
|
---|
2326 | PCRTNETUDP pUdpHdr = (PCRTNETUDP)((uint8_t const *)pSG->aSegs[0].pv + sizeof(RTNETETHERHDR) + cbIpHdr);
|
---|
2327 | if ( ( RT_BE2H_U16(pUdpHdr->uh_sport) != RTNETIPV4_PORT_BOOTPS
|
---|
2328 | && RT_BE2H_U16(pUdpHdr->uh_dport) != RTNETIPV4_PORT_BOOTPS)
|
---|
2329 | || ( RT_BE2H_U16(pUdpHdr->uh_dport) != RTNETIPV4_PORT_BOOTPC
|
---|
2330 | && RT_BE2H_U16(pUdpHdr->uh_sport) != RTNETIPV4_PORT_BOOTPC))
|
---|
2331 | return;
|
---|
2332 | }
|
---|
2333 | else
|
---|
2334 | {
|
---|
2335 | /* get the lower byte of the UDP source port number. */
|
---|
2336 | b = intnetR0SgReadByte(pSG, sizeof(RTNETETHERHDR) + cbIpHdr + RT_OFFSETOF(RTNETUDP, uh_sport) + 1);
|
---|
2337 | if ( b != RTNETIPV4_PORT_BOOTPS
|
---|
2338 | && b != RTNETIPV4_PORT_BOOTPC)
|
---|
2339 | return;
|
---|
2340 | uint8_t SrcPort = b;
|
---|
2341 | b = intnetR0SgReadByte(pSG, sizeof(RTNETETHERHDR) + cbIpHdr + RT_OFFSETOF(RTNETUDP, uh_sport));
|
---|
2342 | if (b)
|
---|
2343 | return;
|
---|
2344 |
|
---|
2345 | /* get the lower byte of the UDP destination port number. */
|
---|
2346 | b = intnetR0SgReadByte(pSG, sizeof(RTNETETHERHDR) + cbIpHdr + RT_OFFSETOF(RTNETUDP, uh_dport) + 1);
|
---|
2347 | if ( b != RTNETIPV4_PORT_BOOTPS
|
---|
2348 | && b != RTNETIPV4_PORT_BOOTPC)
|
---|
2349 | return;
|
---|
2350 | if (b == SrcPort)
|
---|
2351 | return;
|
---|
2352 | b = intnetR0SgReadByte(pSG, sizeof(RTNETETHERHDR) + cbIpHdr + RT_OFFSETOF(RTNETUDP, uh_dport));
|
---|
2353 | if (b)
|
---|
2354 | return;
|
---|
2355 | }
|
---|
2356 | intnetR0TrunkIfSnoopDhcp(pNetwork, pSG);
|
---|
2357 | break;
|
---|
2358 | }
|
---|
2359 |
|
---|
2360 | case RTNET_ETHERTYPE_ARP:
|
---|
2361 | intnetR0TrunkIfSnoopArp(pNetwork, pSG);
|
---|
2362 | break;
|
---|
2363 | }
|
---|
2364 | }
|
---|
2365 | #endif /* INTNET_WITH_DHCP_SNOOPING */
|
---|
2366 |
|
---|
2367 | /**
|
---|
2368 | * Deals with an IPv6 packet.
|
---|
2369 | *
|
---|
2370 | * This will fish out the source IP address and add it to the cache.
|
---|
2371 | * Then it will look for DHCPRELEASE requests (?) and anything else
|
---|
2372 | * that we might find useful later.
|
---|
2373 | *
|
---|
2374 | * @param pIf The interface that's sending the frame.
|
---|
2375 | * @param pIpHdr Pointer to the IPv4 header in the frame.
|
---|
2376 | * @param cbPacket The size of the packet, or more correctly the
|
---|
2377 | * size of the frame without the ethernet header.
|
---|
2378 | * @param fGso Set if this is a GSO frame, clear if regular.
|
---|
2379 | */
|
---|
2380 | static void intnetR0IfSnoopIPv6SourceAddr(PINTNETIF pIf, PCRTNETIPV6 pIpHdr, uint32_t cbPacket, bool fGso)
|
---|
2381 | {
|
---|
2382 | NOREF(fGso);
|
---|
2383 |
|
---|
2384 | /*
|
---|
2385 | * Check the header size first to prevent access invalid data.
|
---|
2386 | */
|
---|
2387 | if (cbPacket < RTNETIPV6_MIN_LEN)
|
---|
2388 | return;
|
---|
2389 |
|
---|
2390 | /*
|
---|
2391 | * If the source address is good (not multicast) and
|
---|
2392 | * not already in the address cache of the sender, add it.
|
---|
2393 | */
|
---|
2394 | RTNETADDRU Addr;
|
---|
2395 | Addr.IPv6 = pIpHdr->ip6_src;
|
---|
2396 |
|
---|
2397 | if ( intnetR0IPv6AddrIsGood(Addr.IPv6) && (pIpHdr->ip6_hlim == 0xff)
|
---|
2398 | && intnetR0IfAddrCacheLookupLikely(&pIf->aAddrCache[kIntNetAddrType_IPv6], &Addr, sizeof(Addr.IPv6)) < 0)
|
---|
2399 | {
|
---|
2400 | intnetR0IfAddrCacheAddIt(pIf, &pIf->aAddrCache[kIntNetAddrType_IPv6], &Addr, "if/ipv6");
|
---|
2401 | }
|
---|
2402 | }
|
---|
2403 |
|
---|
2404 |
|
---|
2405 | /**
|
---|
2406 | * Deals with an IPv4 packet.
|
---|
2407 | *
|
---|
2408 | * This will fish out the source IP address and add it to the cache.
|
---|
2409 | * Then it will look for DHCPRELEASE requests (?) and anything else
|
---|
2410 | * that we might find useful later.
|
---|
2411 | *
|
---|
2412 | * @param pIf The interface that's sending the frame.
|
---|
2413 | * @param pIpHdr Pointer to the IPv4 header in the frame.
|
---|
2414 | * @param cbPacket The size of the packet, or more correctly the
|
---|
2415 | * size of the frame without the ethernet header.
|
---|
2416 | * @param fGso Set if this is a GSO frame, clear if regular.
|
---|
2417 | */
|
---|
2418 | static void intnetR0IfSnoopIPv4SourceAddr(PINTNETIF pIf, PCRTNETIPV4 pIpHdr, uint32_t cbPacket, bool fGso)
|
---|
2419 | {
|
---|
2420 | /*
|
---|
2421 | * Check the header size first to prevent access invalid data.
|
---|
2422 | */
|
---|
2423 | if (cbPacket < RTNETIPV4_MIN_LEN)
|
---|
2424 | return;
|
---|
2425 | uint32_t cbHdr = (uint32_t)pIpHdr->ip_hl * 4;
|
---|
2426 | if ( cbHdr < RTNETIPV4_MIN_LEN
|
---|
2427 | || cbPacket < cbHdr)
|
---|
2428 | return;
|
---|
2429 |
|
---|
2430 | /*
|
---|
2431 | * If the source address is good (not broadcast or my network) and
|
---|
2432 | * not already in the address cache of the sender, add it. Validate
|
---|
2433 | * the IP header before adding it.
|
---|
2434 | */
|
---|
2435 | bool fValidatedIpHdr = false;
|
---|
2436 | RTNETADDRU Addr;
|
---|
2437 | Addr.IPv4 = pIpHdr->ip_src;
|
---|
2438 | if ( intnetR0IPv4AddrIsGood(Addr.IPv4)
|
---|
2439 | && intnetR0IfAddrCacheLookupLikely(&pIf->aAddrCache[kIntNetAddrType_IPv4], &Addr, sizeof(Addr.IPv4)) < 0)
|
---|
2440 | {
|
---|
2441 | if (!RTNetIPv4IsHdrValid(pIpHdr, cbPacket, cbPacket, !fGso /*fChecksum*/))
|
---|
2442 | {
|
---|
2443 | Log(("intnetR0IfSnoopIPv4SourceAddr: bad ip header\n"));
|
---|
2444 | return;
|
---|
2445 | }
|
---|
2446 | intnetR0IfAddrCacheAddIt(pIf, &pIf->aAddrCache[kIntNetAddrType_IPv4], &Addr, "if/ipv4");
|
---|
2447 | fValidatedIpHdr = true;
|
---|
2448 | }
|
---|
2449 |
|
---|
2450 | #ifdef INTNET_WITH_DHCP_SNOOPING
|
---|
2451 | /*
|
---|
2452 | * Check for potential DHCP packets.
|
---|
2453 | */
|
---|
2454 | if ( pIpHdr->ip_p == RTNETIPV4_PROT_UDP /* DHCP is UDP. */
|
---|
2455 | && cbPacket >= cbHdr + RTNETUDP_MIN_LEN + RTNETBOOTP_DHCP_MIN_LEN /* Min DHCP packet len. */
|
---|
2456 | && !fGso) /* GSO is not applicable to DHCP traffic. */
|
---|
2457 | {
|
---|
2458 | PCRTNETUDP pUdpHdr = (PCRTNETUDP)((uint8_t const *)pIpHdr + cbHdr);
|
---|
2459 | if ( ( RT_BE2H_U16(pUdpHdr->uh_dport) == RTNETIPV4_PORT_BOOTPS
|
---|
2460 | || RT_BE2H_U16(pUdpHdr->uh_sport) == RTNETIPV4_PORT_BOOTPS)
|
---|
2461 | && ( RT_BE2H_U16(pUdpHdr->uh_sport) == RTNETIPV4_PORT_BOOTPC
|
---|
2462 | || RT_BE2H_U16(pUdpHdr->uh_dport) == RTNETIPV4_PORT_BOOTPC))
|
---|
2463 | {
|
---|
2464 | if ( fValidatedIpHdr
|
---|
2465 | || RTNetIPv4IsHdrValid(pIpHdr, cbPacket, cbPacket, !fGso /*fChecksum*/))
|
---|
2466 | intnetR0NetworkSnoopDhcp(pIf->pNetwork, pIpHdr, pUdpHdr, cbPacket - cbHdr);
|
---|
2467 | else
|
---|
2468 | Log(("intnetR0IfSnoopIPv4SourceAddr: bad ip header (dhcp)\n"));
|
---|
2469 | }
|
---|
2470 | }
|
---|
2471 | #endif /* INTNET_WITH_DHCP_SNOOPING */
|
---|
2472 | }
|
---|
2473 |
|
---|
2474 |
|
---|
2475 | /**
|
---|
2476 | * Snoop up source addresses from an ARP request or reply.
|
---|
2477 | *
|
---|
2478 | * @param pIf The interface that's sending the frame.
|
---|
2479 | * @param pHdr The ARP header.
|
---|
2480 | * @param cbPacket The size of the packet (might be larger than the ARP
|
---|
2481 | * request 'cause of min ethernet frame size).
|
---|
2482 | * @param pfSgFlags Pointer to the SG flags. This is used to tag the packet so we
|
---|
2483 | * don't have to repeat the frame parsing in intnetR0TrunkIfSend.
|
---|
2484 | */
|
---|
2485 | static void intnetR0IfSnoopArpAddr(PINTNETIF pIf, PCRTNETARPIPV4 pArpIPv4, uint32_t cbPacket, uint16_t *pfSgFlags)
|
---|
2486 | {
|
---|
2487 | /*
|
---|
2488 | * Ignore packets which doesn't interest us or we perceive as malformed.
|
---|
2489 | */
|
---|
2490 | if (RT_UNLIKELY(cbPacket < sizeof(RTNETARPIPV4)))
|
---|
2491 | return;
|
---|
2492 | if (RT_UNLIKELY( pArpIPv4->Hdr.ar_hlen != sizeof(RTMAC)
|
---|
2493 | || pArpIPv4->Hdr.ar_plen != sizeof(RTNETADDRIPV4)
|
---|
2494 | || pArpIPv4->Hdr.ar_htype != RT_H2BE_U16(RTNET_ARP_ETHER)
|
---|
2495 | || pArpIPv4->Hdr.ar_ptype != RT_H2BE_U16(RTNET_ETHERTYPE_IPV4)))
|
---|
2496 | return;
|
---|
2497 | uint16_t ar_oper = RT_H2BE_U16(pArpIPv4->Hdr.ar_oper);
|
---|
2498 | if (RT_UNLIKELY( ar_oper != RTNET_ARPOP_REQUEST
|
---|
2499 | && ar_oper != RTNET_ARPOP_REPLY))
|
---|
2500 | {
|
---|
2501 | Log6(("ar_oper=%#x\n", ar_oper));
|
---|
2502 | return;
|
---|
2503 | }
|
---|
2504 |
|
---|
2505 | /*
|
---|
2506 | * Tag the SG as ARP IPv4 for later editing, then check for addresses
|
---|
2507 | * which can be removed or added to the address cache of the sender.
|
---|
2508 | */
|
---|
2509 | *pfSgFlags |= INTNETSG_FLAGS_ARP_IPV4;
|
---|
2510 |
|
---|
2511 | if ( ar_oper == RTNET_ARPOP_REPLY
|
---|
2512 | && !intnetR0IsMacAddrMulticast(&pArpIPv4->ar_tha)
|
---|
2513 | && ( pArpIPv4->ar_tha.au16[0]
|
---|
2514 | || pArpIPv4->ar_tha.au16[1]
|
---|
2515 | || pArpIPv4->ar_tha.au16[2])
|
---|
2516 | && intnetR0IPv4AddrIsGood(pArpIPv4->ar_tpa))
|
---|
2517 | intnetR0IfAddrCacheDelete(pIf, &pIf->aAddrCache[kIntNetAddrType_IPv4],
|
---|
2518 | (PCRTNETADDRU)&pArpIPv4->ar_tpa, sizeof(RTNETADDRIPV4), "if/arp");
|
---|
2519 |
|
---|
2520 | if ( !memcmp(&pArpIPv4->ar_sha, &pIf->MacAddr, sizeof(RTMAC))
|
---|
2521 | && intnetR0IPv4AddrIsGood(pArpIPv4->ar_spa))
|
---|
2522 | intnetR0IfAddrCacheAdd(pIf, &pIf->aAddrCache[kIntNetAddrType_IPv4],
|
---|
2523 | (PCRTNETADDRU)&pArpIPv4->ar_spa, sizeof(RTNETADDRIPV4), "if/arp");
|
---|
2524 | }
|
---|
2525 |
|
---|
2526 |
|
---|
2527 |
|
---|
2528 | /**
|
---|
2529 | * Checks packets send by a normal interface for new network
|
---|
2530 | * layer addresses.
|
---|
2531 | *
|
---|
2532 | * @param pIf The interface that's sending the frame.
|
---|
2533 | * @param pbFrame The frame.
|
---|
2534 | * @param cbFrame The size of the frame.
|
---|
2535 | * @param fGso Set if this is a GSO frame, clear if regular.
|
---|
2536 | * @param pfSgFlags Pointer to the SG flags. This is used to tag the packet so we
|
---|
2537 | * don't have to repeat the frame parsing in intnetR0TrunkIfSend.
|
---|
2538 | */
|
---|
2539 | static void intnetR0IfSnoopAddr(PINTNETIF pIf, uint8_t const *pbFrame, uint32_t cbFrame, bool fGso, uint16_t *pfSgFlags)
|
---|
2540 | {
|
---|
2541 | /*
|
---|
2542 | * Fish out the ethertype and look for stuff we can handle.
|
---|
2543 | */
|
---|
2544 | if (cbFrame <= sizeof(RTNETETHERHDR))
|
---|
2545 | return;
|
---|
2546 | cbFrame -= sizeof(RTNETETHERHDR);
|
---|
2547 |
|
---|
2548 | uint16_t EtherType = RT_H2BE_U16(((PCRTNETETHERHDR)pbFrame)->EtherType);
|
---|
2549 | switch (EtherType)
|
---|
2550 | {
|
---|
2551 | case RTNET_ETHERTYPE_IPV4:
|
---|
2552 | intnetR0IfSnoopIPv4SourceAddr(pIf, (PCRTNETIPV4)((PCRTNETETHERHDR)pbFrame + 1), cbFrame, fGso);
|
---|
2553 | break;
|
---|
2554 |
|
---|
2555 | case RTNET_ETHERTYPE_IPV6:
|
---|
2556 | intnetR0IfSnoopIPv6SourceAddr(pIf, (PCRTNETIPV6)((PCRTNETETHERHDR)pbFrame + 1), cbFrame, fGso);
|
---|
2557 | break;
|
---|
2558 |
|
---|
2559 | #if 0 /** @todo IntNet: implement IPX for wireless MAC sharing? */
|
---|
2560 | case RTNET_ETHERTYPE_IPX_1:
|
---|
2561 | case RTNET_ETHERTYPE_IPX_2:
|
---|
2562 | case RTNET_ETHERTYPE_IPX_3:
|
---|
2563 | intnetR0IfSnoopIpxSourceAddr(pIf, (PCINTNETIPX)((PCRTNETETHERHDR)pbFrame + 1), cbFrame, pfSgFlags);
|
---|
2564 | break;
|
---|
2565 | #endif
|
---|
2566 | case RTNET_ETHERTYPE_ARP:
|
---|
2567 | intnetR0IfSnoopArpAddr(pIf, (PCRTNETARPIPV4)((PCRTNETETHERHDR)pbFrame + 1), cbFrame, pfSgFlags);
|
---|
2568 | break;
|
---|
2569 | }
|
---|
2570 | }
|
---|
2571 |
|
---|
2572 |
|
---|
2573 | /**
|
---|
2574 | * Writes a frame packet to the ring buffer.
|
---|
2575 | *
|
---|
2576 | * @returns VBox status code.
|
---|
2577 | * @param pBuf The buffer.
|
---|
2578 | * @param pRingBuf The ring buffer to read from.
|
---|
2579 | * @param pSG The gather list.
|
---|
2580 | * @param pNewDstMac Set the destination MAC address to the address if specified.
|
---|
2581 | */
|
---|
2582 | static int intnetR0RingWriteFrame(PINTNETRINGBUF pRingBuf, PCINTNETSG pSG, PCRTMAC pNewDstMac)
|
---|
2583 | {
|
---|
2584 | PINTNETHDR pHdr = NULL; /* shut up gcc*/
|
---|
2585 | void *pvDst = NULL; /* ditto */
|
---|
2586 | int rc;
|
---|
2587 | if (pSG->GsoCtx.u8Type == PDMNETWORKGSOTYPE_INVALID)
|
---|
2588 | rc = IntNetRingAllocateFrame(pRingBuf, pSG->cbTotal, &pHdr, &pvDst);
|
---|
2589 | else
|
---|
2590 | rc = IntNetRingAllocateGsoFrame(pRingBuf, pSG->cbTotal, &pSG->GsoCtx, &pHdr, &pvDst);
|
---|
2591 | if (RT_SUCCESS(rc))
|
---|
2592 | {
|
---|
2593 | IntNetSgRead(pSG, pvDst);
|
---|
2594 | if (pNewDstMac)
|
---|
2595 | ((PRTNETETHERHDR)pvDst)->DstMac = *pNewDstMac;
|
---|
2596 |
|
---|
2597 | IntNetRingCommitFrame(pRingBuf, pHdr);
|
---|
2598 | return VINF_SUCCESS;
|
---|
2599 | }
|
---|
2600 | return rc;
|
---|
2601 | }
|
---|
2602 |
|
---|
2603 |
|
---|
2604 | /**
|
---|
2605 | * Sends a frame to a specific interface.
|
---|
2606 | *
|
---|
2607 | * @param pIf The interface.
|
---|
2608 | * @param pIfSender The interface sending the frame. This is NULL if it's the trunk.
|
---|
2609 | * @param pSG The gather buffer which data is being sent to the interface.
|
---|
2610 | * @param pNewDstMac Set the destination MAC address to the address if specified.
|
---|
2611 | */
|
---|
2612 | static void intnetR0IfSend(PINTNETIF pIf, PINTNETIF pIfSender, PINTNETSG pSG, PCRTMAC pNewDstMac)
|
---|
2613 | {
|
---|
2614 | /*
|
---|
2615 | * Grab the receive/producer lock and copy over the frame.
|
---|
2616 | */
|
---|
2617 | RTSpinlockAcquire(pIf->hRecvInSpinlock);
|
---|
2618 | int rc = intnetR0RingWriteFrame(&pIf->pIntBuf->Recv, pSG, pNewDstMac);
|
---|
2619 | RTSpinlockReleaseNoInts(pIf->hRecvInSpinlock);
|
---|
2620 | if (RT_SUCCESS(rc))
|
---|
2621 | {
|
---|
2622 | pIf->cYields = 0;
|
---|
2623 | RTSemEventSignal(pIf->hRecvEvent);
|
---|
2624 | return;
|
---|
2625 | }
|
---|
2626 |
|
---|
2627 | Log(("intnetR0IfSend: overflow cb=%d hIf=%RX32\n", pSG->cbTotal, pIf->hIf));
|
---|
2628 |
|
---|
2629 | /*
|
---|
2630 | * Scheduling hack, for unicore machines primarily.
|
---|
2631 | */
|
---|
2632 | if ( pIf->fActive
|
---|
2633 | && pIf->cYields < 4 /* just twice */
|
---|
2634 | && pIfSender /* but not if it's from the trunk */
|
---|
2635 | && RTThreadPreemptIsEnabled(NIL_RTTHREAD)
|
---|
2636 | )
|
---|
2637 | {
|
---|
2638 | unsigned cYields = 2;
|
---|
2639 | while (--cYields > 0)
|
---|
2640 | {
|
---|
2641 | RTSemEventSignal(pIf->hRecvEvent);
|
---|
2642 | RTThreadYield();
|
---|
2643 |
|
---|
2644 | RTSpinlockAcquire(pIf->hRecvInSpinlock);
|
---|
2645 | rc = intnetR0RingWriteFrame(&pIf->pIntBuf->Recv, pSG, pNewDstMac);
|
---|
2646 | RTSpinlockReleaseNoInts(pIf->hRecvInSpinlock);
|
---|
2647 | if (RT_SUCCESS(rc))
|
---|
2648 | {
|
---|
2649 | STAM_REL_COUNTER_INC(&pIf->pIntBuf->cStatYieldsOk);
|
---|
2650 | RTSemEventSignal(pIf->hRecvEvent);
|
---|
2651 | return;
|
---|
2652 | }
|
---|
2653 | pIf->cYields++;
|
---|
2654 | }
|
---|
2655 | STAM_REL_COUNTER_INC(&pIf->pIntBuf->cStatYieldsNok);
|
---|
2656 | }
|
---|
2657 |
|
---|
2658 | /* ok, the frame is lost. */
|
---|
2659 | STAM_REL_COUNTER_INC(&pIf->pIntBuf->cStatLost);
|
---|
2660 | RTSemEventSignal(pIf->hRecvEvent);
|
---|
2661 | }
|
---|
2662 |
|
---|
2663 |
|
---|
2664 | /**
|
---|
2665 | * Fallback path that does the GSO segmenting before passing the frame on to the
|
---|
2666 | * trunk interface.
|
---|
2667 | *
|
---|
2668 | * The caller holds the trunk lock.
|
---|
2669 | *
|
---|
2670 | * @param pThis The trunk.
|
---|
2671 | * @param pIfSender The IF sending the frame.
|
---|
2672 | * @param pSG Pointer to the gather list.
|
---|
2673 | * @param fDst The destination flags.
|
---|
2674 | */
|
---|
2675 | static int intnetR0TrunkIfSendGsoFallback(PINTNETTRUNKIF pThis, PINTNETIF pIfSender, PINTNETSG pSG, uint32_t fDst)
|
---|
2676 | {
|
---|
2677 | /*
|
---|
2678 | * Since we're only using this for GSO frame coming from the internal
|
---|
2679 | * network interfaces and never the trunk, we can assume there is only
|
---|
2680 | * one segment. This simplifies the code quite a bit.
|
---|
2681 | */
|
---|
2682 | Assert(PDMNetGsoIsValid(&pSG->GsoCtx, sizeof(pSG->GsoCtx), pSG->cbTotal));
|
---|
2683 | AssertReturn(pSG->cSegsUsed == 1, VERR_INTERNAL_ERROR_4);
|
---|
2684 |
|
---|
2685 | union
|
---|
2686 | {
|
---|
2687 | uint8_t abBuf[sizeof(INTNETSG) + sizeof(INTNETSEG)];
|
---|
2688 | INTNETSG SG;
|
---|
2689 | } u;
|
---|
2690 |
|
---|
2691 | /** @todo We have to adjust MSS so it does not exceed the value configured for
|
---|
2692 | * the host's interface.
|
---|
2693 | */
|
---|
2694 |
|
---|
2695 | /*
|
---|
2696 | * Carve out the frame segments with the header and frame in different
|
---|
2697 | * scatter / gather segments.
|
---|
2698 | */
|
---|
2699 | uint32_t const cSegs = PDMNetGsoCalcSegmentCount(&pSG->GsoCtx, pSG->cbTotal);
|
---|
2700 | for (uint32_t iSeg = 0; iSeg < cSegs; iSeg++)
|
---|
2701 | {
|
---|
2702 | uint32_t cbSegPayload, cbSegHdrs;
|
---|
2703 | uint32_t offSegPayload = PDMNetGsoCarveSegment(&pSG->GsoCtx, (uint8_t *)pSG->aSegs[0].pv, pSG->cbTotal, iSeg, cSegs,
|
---|
2704 | pIfSender->abGsoHdrs, &cbSegHdrs, &cbSegPayload);
|
---|
2705 |
|
---|
2706 | IntNetSgInitTempSegs(&u.SG, cbSegHdrs + cbSegPayload, 2, 2);
|
---|
2707 | u.SG.aSegs[0].Phys = NIL_RTHCPHYS;
|
---|
2708 | u.SG.aSegs[0].pv = pIfSender->abGsoHdrs;
|
---|
2709 | u.SG.aSegs[0].cb = cbSegHdrs;
|
---|
2710 | u.SG.aSegs[1].Phys = NIL_RTHCPHYS;
|
---|
2711 | u.SG.aSegs[1].pv = (uint8_t *)pSG->aSegs[0].pv + offSegPayload;
|
---|
2712 | u.SG.aSegs[1].cb = (uint32_t)cbSegPayload;
|
---|
2713 |
|
---|
2714 | int rc = pThis->pIfPort->pfnXmit(pThis->pIfPort, pIfSender->pvIfData, &u.SG, fDst);
|
---|
2715 | if (RT_FAILURE(rc))
|
---|
2716 | return rc;
|
---|
2717 | }
|
---|
2718 | return VINF_SUCCESS;
|
---|
2719 | }
|
---|
2720 |
|
---|
2721 |
|
---|
2722 | /**
|
---|
2723 | * Checks if any of the given trunk destinations can handle this kind of GSO SG.
|
---|
2724 | *
|
---|
2725 | * @returns true if it can, false if it cannot.
|
---|
2726 | * @param pThis The trunk.
|
---|
2727 | * @param pSG The scatter / gather buffer.
|
---|
2728 | * @param fDst The destination mask.
|
---|
2729 | */
|
---|
2730 | DECLINLINE(bool) intnetR0TrunkIfCanHandleGsoFrame(PINTNETTRUNKIF pThis, PINTNETSG pSG, uint32_t fDst)
|
---|
2731 | {
|
---|
2732 | uint8_t u8Type = pSG->GsoCtx.u8Type;
|
---|
2733 | AssertReturn(u8Type < 32, false); /* paranoia */
|
---|
2734 | uint32_t fMask = RT_BIT_32(u8Type);
|
---|
2735 |
|
---|
2736 | if (fDst == INTNETTRUNKDIR_HOST)
|
---|
2737 | return !!(pThis->fHostGsoCapabilites & fMask);
|
---|
2738 | if (fDst == INTNETTRUNKDIR_WIRE)
|
---|
2739 | return !!(pThis->fWireGsoCapabilites & fMask);
|
---|
2740 | Assert(fDst == (INTNETTRUNKDIR_WIRE | INTNETTRUNKDIR_HOST));
|
---|
2741 | return !!(pThis->fHostGsoCapabilites & pThis->fWireGsoCapabilites & fMask);
|
---|
2742 | }
|
---|
2743 |
|
---|
2744 |
|
---|
2745 | /**
|
---|
2746 | * Calculates the checksum of a full ipv6 frame.
|
---|
2747 | *
|
---|
2748 | * @returns 16-bit hecksum value.
|
---|
2749 | * @param pIpHdr The IPv6 header (network endian (big)).
|
---|
2750 | * @param bProtocol The protocol number. This can be the same as the
|
---|
2751 | * ip6_nxt field, but doesn't need to be.
|
---|
2752 | * @param cbPkt The packet size (host endian of course). This can
|
---|
2753 | * be the same as the ip6_plen field, but as with @a
|
---|
2754 | * bProtocol it won't be when extension headers are
|
---|
2755 | * present. For UDP this will be uh_ulen converted to
|
---|
2756 | * host endian.
|
---|
2757 | */
|
---|
2758 | static uint16_t computeIPv6FullChecksum(PCRTNETIPV6 pIpHdr)
|
---|
2759 | {
|
---|
2760 | uint16_t const *data;
|
---|
2761 | int len = RT_BE2H_U16(pIpHdr->ip6_plen);
|
---|
2762 | uint32_t sum = RTNetIPv6PseudoChecksum(pIpHdr);
|
---|
2763 |
|
---|
2764 | /* add the payload */
|
---|
2765 | data = (uint16_t *) (pIpHdr + 1);
|
---|
2766 | while(len > 1)
|
---|
2767 | {
|
---|
2768 | sum += *(data);
|
---|
2769 | data++;
|
---|
2770 | len -= 2;
|
---|
2771 | }
|
---|
2772 |
|
---|
2773 | if(len > 0)
|
---|
2774 | sum += *((uint8_t *) data);
|
---|
2775 |
|
---|
2776 | while(sum >> 16)
|
---|
2777 | sum = (sum & 0xffff) + (sum >> 16);
|
---|
2778 |
|
---|
2779 | return (uint16_t) ~sum;
|
---|
2780 | }
|
---|
2781 |
|
---|
2782 | /**
|
---|
2783 | * Sends a frame down the trunk.
|
---|
2784 | *
|
---|
2785 | * @param pThis The trunk.
|
---|
2786 | * @param pNetwork The network the frame is being sent to.
|
---|
2787 | * @param pIfSender The IF sending the frame. Used for MAC address
|
---|
2788 | * checks in shared MAC mode.
|
---|
2789 | * @param fDst The destination flags.
|
---|
2790 | * @param pSG Pointer to the gather list.
|
---|
2791 | */
|
---|
2792 | static void intnetR0TrunkIfSend(PINTNETTRUNKIF pThis, PINTNETNETWORK pNetwork, PINTNETIF pIfSender,
|
---|
2793 | uint32_t fDst, PINTNETSG pSG)
|
---|
2794 | {
|
---|
2795 | /*
|
---|
2796 | * Quick sanity check.
|
---|
2797 | */
|
---|
2798 | AssertPtr(pThis);
|
---|
2799 | AssertPtr(pNetwork);
|
---|
2800 | AssertPtr(pIfSender);
|
---|
2801 | AssertPtr(pSG);
|
---|
2802 | Assert(fDst);
|
---|
2803 | AssertReturnVoid(pThis->pIfPort);
|
---|
2804 |
|
---|
2805 | /*
|
---|
2806 | * Edit the frame if we're sharing the MAC address with the host on the wire.
|
---|
2807 | *
|
---|
2808 | * If the frame is headed for both the host and the wire, we'll have to send
|
---|
2809 | * it to the host before making any modifications, and force the OS specific
|
---|
2810 | * backend to copy it. We do this by marking it as TEMP (which is always the
|
---|
2811 | * case right now).
|
---|
2812 | */
|
---|
2813 | if ( (pNetwork->fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE)
|
---|
2814 | && (fDst & INTNETTRUNKDIR_WIRE))
|
---|
2815 | {
|
---|
2816 | /*
|
---|
2817 | * Dispatch it to the host before making changes.
|
---|
2818 | */
|
---|
2819 | if (fDst & INTNETTRUNKDIR_HOST)
|
---|
2820 | {
|
---|
2821 | Assert(pSG->fFlags & INTNETSG_FLAGS_TEMP); /* make sure copy is forced */
|
---|
2822 | intnetR0TrunkIfSend(pThis, pNetwork, pIfSender, INTNETTRUNKDIR_HOST, pSG);
|
---|
2823 | fDst &= ~INTNETTRUNKDIR_HOST;
|
---|
2824 | }
|
---|
2825 |
|
---|
2826 | /*
|
---|
2827 | * Edit the source address so that it it's the same as the host.
|
---|
2828 | */
|
---|
2829 | /* ASSUME frame from IntNetR0IfSend! */
|
---|
2830 | AssertReturnVoid(pSG->cSegsUsed == 1);
|
---|
2831 | AssertReturnVoid(pSG->cbTotal >= sizeof(RTNETETHERHDR));
|
---|
2832 | AssertReturnVoid(pIfSender);
|
---|
2833 | PRTNETETHERHDR pEthHdr = (PRTNETETHERHDR)pSG->aSegs[0].pv;
|
---|
2834 |
|
---|
2835 | pEthHdr->SrcMac = pThis->MacAddr;
|
---|
2836 |
|
---|
2837 | /*
|
---|
2838 | * Deal with tags from the snooping phase.
|
---|
2839 | */
|
---|
2840 | if (pSG->fFlags & INTNETSG_FLAGS_ARP_IPV4)
|
---|
2841 | {
|
---|
2842 | /*
|
---|
2843 | * APR IPv4: replace hardware (MAC) addresses because these end up
|
---|
2844 | * in ARP caches. So, if we don't the other machines will
|
---|
2845 | * send the packets to the MAC address of the guest
|
---|
2846 | * instead of the one of the host, which won't work on
|
---|
2847 | * wireless of course...
|
---|
2848 | */
|
---|
2849 | PRTNETARPIPV4 pArp = (PRTNETARPIPV4)(pEthHdr + 1);
|
---|
2850 | if (!memcmp(&pArp->ar_sha, &pIfSender->MacAddr, sizeof(RTMAC)))
|
---|
2851 | {
|
---|
2852 | Log6(("tw: ar_sha %.6Rhxs -> %.6Rhxs\n", &pArp->ar_sha, &pThis->MacAddr));
|
---|
2853 | pArp->ar_sha = pThis->MacAddr;
|
---|
2854 | }
|
---|
2855 | if (!memcmp(&pArp->ar_tha, &pIfSender->MacAddr, sizeof(RTMAC))) /* just in case... */
|
---|
2856 | {
|
---|
2857 | Log6(("tw: ar_tha %.6Rhxs -> %.6Rhxs\n", &pArp->ar_tha, &pThis->MacAddr));
|
---|
2858 | pArp->ar_tha = pThis->MacAddr;
|
---|
2859 | }
|
---|
2860 | }
|
---|
2861 | else if (pEthHdr->EtherType == RT_H2BE_U16(RTNET_ETHERTYPE_IPV6))
|
---|
2862 | {
|
---|
2863 | /*
|
---|
2864 | * IPV6 ICMP Neighbor Discovery : replace
|
---|
2865 | * 1) the advertised source mac address in outgoing neighbor sollicitations
|
---|
2866 | * with the HW MAC address of the trunk interface,
|
---|
2867 | * 2) the advertised target mac address in outgoing neighbor advertisements
|
---|
2868 | * with the HW mac address of the trunk interface.
|
---|
2869 | *
|
---|
2870 | * Note that this only applies to traffic going out on the trunk. Incoming
|
---|
2871 | * NS/NA will never advertise any VM mac address, so we do not need to touch
|
---|
2872 | * them. Other VMs on this bridge as well as the host will see and use the VM's
|
---|
2873 | * actual mac addresses.
|
---|
2874 | *
|
---|
2875 | */
|
---|
2876 |
|
---|
2877 | PRTNETIPV6 pIPv6 = (PRTNETIPV6)(pEthHdr + 1);
|
---|
2878 | PRTNETNDP pNd = (PRTNETNDP)(pIPv6 + 1);
|
---|
2879 | PRTNETNDP_SLLA_OPT pLLAOpt = (PRTNETNDP_SLLA_OPT)(pNd + 1);
|
---|
2880 |
|
---|
2881 | /* make sure we have enough bytes to work with */
|
---|
2882 | if(pSG->cbTotal >= (RTNETIPV6_MIN_LEN + RTNETIPV6_ICMPV6_ND_WITH_LLA_OPT_MIN_LEN) &&
|
---|
2883 | /* ensure the packet came from our LAN (not gone through any router) */
|
---|
2884 | pIPv6->ip6_hlim == 0xff &&
|
---|
2885 | /* protocol has to be icmpv6 */
|
---|
2886 | pIPv6->ip6_nxt == RTNETIPV6_PROT_ICMPV6 &&
|
---|
2887 | /* we either have a sollicitation with source link layer addr. opt, or */
|
---|
2888 | ((pNd->icmp6_type == RTNETIPV6_ICMP_NS_TYPE &&
|
---|
2889 | pNd->icmp6_code == RTNETIPV6_ICMPV6_CODE_0 &&
|
---|
2890 | pLLAOpt->type == RTNETIPV6_ICMP_ND_SLLA_OPT) ||
|
---|
2891 | /* an advertisement with target link layer addr. option */
|
---|
2892 | ((pNd->icmp6_type == RTNETIPV6_ICMP_NA_TYPE &&
|
---|
2893 | pNd->icmp6_code == RTNETIPV6_ICMPV6_CODE_0 &&
|
---|
2894 | pLLAOpt->type == RTNETIPV6_ICMP_ND_TLLA_OPT)) ) &&
|
---|
2895 | pLLAOpt->len == RTNETIPV6_ICMP_ND_LLA_LEN)
|
---|
2896 | {
|
---|
2897 | /* swap the advertised VM MAC address with the trunk's */
|
---|
2898 | pLLAOpt->slla = pThis->MacAddr;
|
---|
2899 |
|
---|
2900 | /* recompute the checksum since we changed the packet */
|
---|
2901 | pNd->icmp6_cksum = 0;
|
---|
2902 | pNd->icmp6_cksum = computeIPv6FullChecksum(pIPv6);
|
---|
2903 | }
|
---|
2904 |
|
---|
2905 | }
|
---|
2906 | }
|
---|
2907 |
|
---|
2908 | /*
|
---|
2909 | * Send the frame, handling the GSO fallback .
|
---|
2910 | * .
|
---|
2911 | * Note! The trunk implementation will re-check that the trunk is active .
|
---|
2912 | * before sending, so we don't have to duplicate that effort here.
|
---|
2913 | */
|
---|
2914 | STAM_REL_PROFILE_START(&pIfSender->pIntBuf->StatSend2, a);
|
---|
2915 | int rc;
|
---|
2916 | if ( pSG->GsoCtx.u8Type == PDMNETWORKGSOTYPE_INVALID
|
---|
2917 | || intnetR0TrunkIfCanHandleGsoFrame(pThis, pSG, fDst) )
|
---|
2918 | rc = pThis->pIfPort->pfnXmit(pThis->pIfPort, pIfSender->pvIfData, pSG, fDst);
|
---|
2919 | else
|
---|
2920 | rc = intnetR0TrunkIfSendGsoFallback(pThis, pIfSender, pSG, fDst);
|
---|
2921 | STAM_REL_PROFILE_STOP(&pIfSender->pIntBuf->StatSend2, a);
|
---|
2922 |
|
---|
2923 | /** @todo failure statistics? */
|
---|
2924 | Log2(("intnetR0TrunkIfSend: %Rrc fDst=%d\n", rc, fDst)); NOREF(rc);
|
---|
2925 | }
|
---|
2926 |
|
---|
2927 |
|
---|
2928 | /**
|
---|
2929 | * Work around the issue with WiFi routers that replace IPv6 multicast
|
---|
2930 | * Ethernet addresses with unicast ones. We check IPv6 destination address
|
---|
2931 | * to determine if the packet originally had a multicast address, and if so
|
---|
2932 | * we restore the original address and treat the modified packet as being a
|
---|
2933 | * broadcast.
|
---|
2934 | *
|
---|
2935 | * @param pNetwork The network the frame is being sent to.
|
---|
2936 | * @param pSG Pointer to the gather list for the frame.
|
---|
2937 | * @param pEthHdr Pointer to the ethernet header.
|
---|
2938 | */
|
---|
2939 | static bool intnetR0NetworkDetectAndFixNdBroadcast(PINTNETNETWORK pNetwork, PINTNETSG pSG, PRTNETETHERHDR pEthHdr)
|
---|
2940 | {
|
---|
2941 | NOREF(pNetwork);
|
---|
2942 |
|
---|
2943 | if (RT_BE2H_U16(pEthHdr->EtherType) != RTNET_ETHERTYPE_IPV6)
|
---|
2944 | return false;
|
---|
2945 | /*
|
---|
2946 | * Check the minimum size and get a linear copy of the thing to work on,
|
---|
2947 | * using the temporary buffer if necessary.
|
---|
2948 | */
|
---|
2949 | if (RT_UNLIKELY(pSG->cbTotal < sizeof(RTNETETHERHDR) + sizeof(RTNETIPV6) +
|
---|
2950 | sizeof(RTNETNDP)))
|
---|
2951 | return false;
|
---|
2952 | uint8_t bTmp[sizeof(RTNETIPV6) + sizeof(RTNETNDP)];
|
---|
2953 | PRTNETIPV6 pIPv6 = (PRTNETIPV6)((uint8_t *)pSG->aSegs[0].pv + sizeof(RTNETETHERHDR));
|
---|
2954 | if ( pSG->cSegsUsed != 1
|
---|
2955 | && pSG->aSegs[0].cb < sizeof(RTNETETHERHDR) + sizeof(RTNETIPV6) +
|
---|
2956 | sizeof(RTNETNDP))
|
---|
2957 | {
|
---|
2958 | Log6(("fw: Copying IPv6 pkt %u\n", sizeof(RTNETIPV6)));
|
---|
2959 | if (!intnetR0SgReadPart(pSG, sizeof(RTNETETHERHDR), sizeof(RTNETIPV6)
|
---|
2960 | + sizeof(RTNETNDP), bTmp))
|
---|
2961 | return false;
|
---|
2962 | pIPv6 = (PRTNETIPV6)bTmp;
|
---|
2963 | }
|
---|
2964 |
|
---|
2965 | /* Check IPv6 destination address if it is a multicast address. */
|
---|
2966 | static uint8_t auSolicitedNodeMulticastPrefix[] =
|
---|
2967 | {
|
---|
2968 | 0xFF, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
---|
2969 | 0x00, 0x00, 0x00, 0x01, 0xff
|
---|
2970 | };
|
---|
2971 | if (memcmp(pIPv6->ip6_dst.au8, auSolicitedNodeMulticastPrefix,
|
---|
2972 | sizeof(auSolicitedNodeMulticastPrefix)) == 0)
|
---|
2973 | {
|
---|
2974 | /*
|
---|
2975 | * The original must have been composed of 0x3333 followed by the last
|
---|
2976 | * four bytes of the solicited-node multicast address.
|
---|
2977 | */
|
---|
2978 | if (pSG->aSegs[0].cb < sizeof(RTNETETHERHDR))
|
---|
2979 | {
|
---|
2980 | RTMAC DstMac;
|
---|
2981 | DstMac.au16[0] = 0x3333;
|
---|
2982 | DstMac.au16[1] = pIPv6->ip6_dst.au16[6];
|
---|
2983 | DstMac.au16[2] = pIPv6->ip6_dst.au16[7];
|
---|
2984 | return intnetR0SgWritePart(pSG, RT_OFFSETOF(RTNETETHERHDR, DstMac), sizeof(RTMAC), &DstMac);
|
---|
2985 | }
|
---|
2986 | pEthHdr = (PRTNETETHERHDR)pSG->aSegs[0].pv;
|
---|
2987 | pEthHdr->DstMac.au16[0] = 0x3333;
|
---|
2988 | pEthHdr->DstMac.au16[1] = pIPv6->ip6_dst.au16[6];
|
---|
2989 | pEthHdr->DstMac.au16[2] = pIPv6->ip6_dst.au16[7];
|
---|
2990 | return true;
|
---|
2991 | }
|
---|
2992 |
|
---|
2993 | return false;
|
---|
2994 | }
|
---|
2995 |
|
---|
2996 |
|
---|
2997 | /**
|
---|
2998 | * Snoops a multicast ICMPv6 ND DAD from the wire via the trunk connection.
|
---|
2999 | *
|
---|
3000 | * @param pNetwork The network the frame is being sent to.
|
---|
3001 | * @param pSG Pointer to the gather list for the frame.
|
---|
3002 | * @param pEthHdr Pointer to the ethernet header.
|
---|
3003 | */
|
---|
3004 | static void intnetR0NetworkSnoopNAFromWire(PINTNETNETWORK pNetwork, PINTNETSG pSG, PRTNETETHERHDR pEthHdr)
|
---|
3005 | {
|
---|
3006 | NOREF(pEthHdr);
|
---|
3007 |
|
---|
3008 | /*
|
---|
3009 | * Check the minimum size and get a linear copy of the thing to work on,
|
---|
3010 | * using the temporary buffer if necessary.
|
---|
3011 | */
|
---|
3012 | if (RT_UNLIKELY(pSG->cbTotal < sizeof(RTNETETHERHDR) + sizeof(RTNETIPV6) +
|
---|
3013 | sizeof(RTNETNDP)))
|
---|
3014 | return;
|
---|
3015 | PRTNETIPV6 pIPv6 = (PRTNETIPV6)((uint8_t *)pSG->aSegs[0].pv + sizeof(RTNETETHERHDR));
|
---|
3016 | if ( pSG->cSegsUsed != 1
|
---|
3017 | && pSG->aSegs[0].cb < sizeof(RTNETETHERHDR) + sizeof(RTNETIPV6) +
|
---|
3018 | sizeof(RTNETNDP))
|
---|
3019 | {
|
---|
3020 | Log6(("fw: Copying IPv6 pkt %u\n", sizeof(RTNETIPV6)));
|
---|
3021 | if (!intnetR0SgReadPart(pSG, sizeof(RTNETETHERHDR), sizeof(RTNETIPV6)
|
---|
3022 | + sizeof(RTNETNDP), pNetwork->pbTmp))
|
---|
3023 | return;
|
---|
3024 | pSG->fFlags |= INTNETSG_FLAGS_PKT_CP_IN_TMP;
|
---|
3025 | pIPv6 = (PRTNETIPV6)pNetwork->pbTmp;
|
---|
3026 | }
|
---|
3027 |
|
---|
3028 | PCRTNETNDP pNd = (PCRTNETNDP) (pIPv6 + 1);
|
---|
3029 |
|
---|
3030 | /*
|
---|
3031 | * a multicast NS with :: as source address means a DAD packet.
|
---|
3032 | * if it comes from the wire and we have the DAD'd address in our cache,
|
---|
3033 | * flush the entry as the address is being acquired by someone else on
|
---|
3034 | * the network.
|
---|
3035 | */
|
---|
3036 | if ( pIPv6->ip6_hlim == 0xff
|
---|
3037 | && pIPv6->ip6_nxt == RTNETIPV6_PROT_ICMPV6
|
---|
3038 | && pNd->icmp6_type == RTNETIPV6_ICMP_NS_TYPE
|
---|
3039 | && pNd->icmp6_code == RTNETIPV6_ICMPV6_CODE_0
|
---|
3040 | && pIPv6->ip6_src.QWords.qw0 == 0
|
---|
3041 | && pIPv6->ip6_src.QWords.qw1 == 0)
|
---|
3042 | {
|
---|
3043 |
|
---|
3044 | intnetR0NetworkAddrCacheDelete(pNetwork, (PCRTNETADDRU) &pNd->target_address,
|
---|
3045 | kIntNetAddrType_IPv6, sizeof(RTNETADDRIPV6), "tif/ip6");
|
---|
3046 | }
|
---|
3047 | }
|
---|
3048 | /**
|
---|
3049 | * Edits an ARP packet arriving from the wire via the trunk connection.
|
---|
3050 | *
|
---|
3051 | * @param pNetwork The network the frame is being sent to.
|
---|
3052 | * @param pSG Pointer to the gather list for the frame.
|
---|
3053 | * The flags and data content may be updated.
|
---|
3054 | * @param pEthHdr Pointer to the ethernet header. This may also be
|
---|
3055 | * updated if it's a unicast...
|
---|
3056 | */
|
---|
3057 | static void intnetR0NetworkEditArpFromWire(PINTNETNETWORK pNetwork, PINTNETSG pSG, PRTNETETHERHDR pEthHdr)
|
---|
3058 | {
|
---|
3059 | /*
|
---|
3060 | * Check the minimum size and get a linear copy of the thing to work on,
|
---|
3061 | * using the temporary buffer if necessary.
|
---|
3062 | */
|
---|
3063 | if (RT_UNLIKELY(pSG->cbTotal < sizeof(RTNETETHERHDR) + sizeof(RTNETARPIPV4)))
|
---|
3064 | return;
|
---|
3065 | PRTNETARPIPV4 pArpIPv4 = (PRTNETARPIPV4)((uint8_t *)pSG->aSegs[0].pv + sizeof(RTNETETHERHDR));
|
---|
3066 | if ( pSG->cSegsUsed != 1
|
---|
3067 | && pSG->aSegs[0].cb < sizeof(RTNETETHERHDR) + sizeof(RTNETARPIPV4))
|
---|
3068 | {
|
---|
3069 | Log6(("fw: Copying ARP pkt %u\n", sizeof(RTNETARPIPV4)));
|
---|
3070 | if (!intnetR0SgReadPart(pSG, sizeof(RTNETETHERHDR), sizeof(RTNETARPIPV4), pNetwork->pbTmp))
|
---|
3071 | return;
|
---|
3072 | pSG->fFlags |= INTNETSG_FLAGS_PKT_CP_IN_TMP;
|
---|
3073 | pArpIPv4 = (PRTNETARPIPV4)pNetwork->pbTmp;
|
---|
3074 | }
|
---|
3075 |
|
---|
3076 | /*
|
---|
3077 | * Ignore packets which doesn't interest us or we perceive as malformed.
|
---|
3078 | */
|
---|
3079 | if (RT_UNLIKELY( pArpIPv4->Hdr.ar_hlen != sizeof(RTMAC)
|
---|
3080 | || pArpIPv4->Hdr.ar_plen != sizeof(RTNETADDRIPV4)
|
---|
3081 | || pArpIPv4->Hdr.ar_htype != RT_H2BE_U16(RTNET_ARP_ETHER)
|
---|
3082 | || pArpIPv4->Hdr.ar_ptype != RT_H2BE_U16(RTNET_ETHERTYPE_IPV4)))
|
---|
3083 | return;
|
---|
3084 | uint16_t ar_oper = RT_H2BE_U16(pArpIPv4->Hdr.ar_oper);
|
---|
3085 | if (RT_UNLIKELY( ar_oper != RTNET_ARPOP_REQUEST
|
---|
3086 | && ar_oper != RTNET_ARPOP_REPLY))
|
---|
3087 | {
|
---|
3088 | Log6(("ar_oper=%#x\n", ar_oper));
|
---|
3089 | return;
|
---|
3090 | }
|
---|
3091 |
|
---|
3092 | /* Tag it as ARP IPv4. */
|
---|
3093 | pSG->fFlags |= INTNETSG_FLAGS_ARP_IPV4;
|
---|
3094 |
|
---|
3095 | /*
|
---|
3096 | * The thing we're interested in here is a reply to a query made by a guest
|
---|
3097 | * since we modified the MAC in the initial request the guest made.
|
---|
3098 | */
|
---|
3099 | if ( ar_oper == RTNET_ARPOP_REPLY
|
---|
3100 | && !memcmp(&pArpIPv4->ar_tha, &pNetwork->MacTab.pTrunk->MacAddr, sizeof(RTMAC)))
|
---|
3101 | {
|
---|
3102 | PINTNETIF pIf = intnetR0NetworkAddrCacheLookupIf(pNetwork, (PCRTNETADDRU)&pArpIPv4->ar_tpa,
|
---|
3103 | kIntNetAddrType_IPv4, sizeof(pArpIPv4->ar_tpa));
|
---|
3104 | if (pIf)
|
---|
3105 | {
|
---|
3106 | Log6(("fw: ar_tha %.6Rhxs -> %.6Rhxs\n", &pArpIPv4->ar_tha, &pIf->MacAddr));
|
---|
3107 | pArpIPv4->ar_tha = pIf->MacAddr;
|
---|
3108 | if (!memcmp(&pEthHdr->DstMac, &pNetwork->MacTab.pTrunk->MacAddr, sizeof(RTMAC)))
|
---|
3109 | {
|
---|
3110 | Log6(("fw: DstMac %.6Rhxs -> %.6Rhxs\n", &pEthHdr->DstMac, &pIf->MacAddr));
|
---|
3111 | pEthHdr->DstMac = pIf->MacAddr;
|
---|
3112 | if ((void *)pEthHdr != pSG->aSegs[0].pv)
|
---|
3113 | intnetR0SgWritePart(pSG, RT_OFFSETOF(RTNETETHERHDR, DstMac), sizeof(RTMAC), &pIf->MacAddr);
|
---|
3114 | }
|
---|
3115 | intnetR0BusyDecIf(pIf);
|
---|
3116 |
|
---|
3117 | /* Write back the packet if we've been making changes to a buffered copy. */
|
---|
3118 | if (pSG->fFlags & INTNETSG_FLAGS_PKT_CP_IN_TMP)
|
---|
3119 | intnetR0SgWritePart(pSG, sizeof(RTNETETHERHDR), sizeof(PRTNETARPIPV4), pArpIPv4);
|
---|
3120 | }
|
---|
3121 | }
|
---|
3122 | }
|
---|
3123 |
|
---|
3124 |
|
---|
3125 | /**
|
---|
3126 | * Detects and edits an DHCP packet arriving from the internal net.
|
---|
3127 | *
|
---|
3128 | * @param pNetwork The network the frame is being sent to.
|
---|
3129 | * @param pSG Pointer to the gather list for the frame.
|
---|
3130 | * The flags and data content may be updated.
|
---|
3131 | * @param pEthHdr Pointer to the ethernet header. This may also be
|
---|
3132 | * updated if it's a unicast...
|
---|
3133 | */
|
---|
3134 | static void intnetR0NetworkEditDhcpFromIntNet(PINTNETNETWORK pNetwork, PINTNETSG pSG, PRTNETETHERHDR pEthHdr)
|
---|
3135 | {
|
---|
3136 | NOREF(pEthHdr);
|
---|
3137 |
|
---|
3138 | /*
|
---|
3139 | * Check the minimum size and get a linear copy of the thing to work on,
|
---|
3140 | * using the temporary buffer if necessary.
|
---|
3141 | */
|
---|
3142 | if (RT_UNLIKELY(pSG->cbTotal < sizeof(RTNETETHERHDR) + RTNETIPV4_MIN_LEN + RTNETUDP_MIN_LEN + RTNETBOOTP_DHCP_MIN_LEN))
|
---|
3143 | return;
|
---|
3144 | /*
|
---|
3145 | * Get a pointer to a linear copy of the full packet, using the
|
---|
3146 | * temporary buffer if necessary.
|
---|
3147 | */
|
---|
3148 | PCRTNETIPV4 pIpHdr = (PCRTNETIPV4)((PCRTNETETHERHDR)pSG->aSegs[0].pv + 1);
|
---|
3149 | uint32_t cbPacket = pSG->cbTotal - sizeof(RTNETETHERHDR);
|
---|
3150 | if (pSG->cSegsUsed > 1)
|
---|
3151 | {
|
---|
3152 | cbPacket = RT_MIN(cbPacket, INTNETNETWORK_TMP_SIZE);
|
---|
3153 | Log6(("intnetR0NetworkEditDhcpFromIntNet: Copying IPv4/UDP/DHCP pkt %u\n", cbPacket));
|
---|
3154 | if (!intnetR0SgReadPart(pSG, sizeof(RTNETETHERHDR), cbPacket, pNetwork->pbTmp))
|
---|
3155 | return;
|
---|
3156 | //pSG->fFlags |= INTNETSG_FLAGS_PKT_CP_IN_TMP;
|
---|
3157 | pIpHdr = (PCRTNETIPV4)pNetwork->pbTmp;
|
---|
3158 | }
|
---|
3159 |
|
---|
3160 | /*
|
---|
3161 | * Validate the IP header and find the UDP packet.
|
---|
3162 | */
|
---|
3163 | if (!RTNetIPv4IsHdrValid(pIpHdr, cbPacket, pSG->cbTotal - sizeof(RTNETETHERHDR), true /*fCheckSum*/))
|
---|
3164 | {
|
---|
3165 | Log6(("intnetR0NetworkEditDhcpFromIntNet: bad ip header\n"));
|
---|
3166 | return;
|
---|
3167 | }
|
---|
3168 | size_t cbIpHdr = pIpHdr->ip_hl * 4;
|
---|
3169 | if ( pIpHdr->ip_p != RTNETIPV4_PROT_UDP /* DHCP is UDP. */
|
---|
3170 | || cbPacket < cbIpHdr + RTNETUDP_MIN_LEN + RTNETBOOTP_DHCP_MIN_LEN) /* Min DHCP packet len */
|
---|
3171 | return;
|
---|
3172 |
|
---|
3173 | size_t cbUdpPkt = cbPacket - cbIpHdr;
|
---|
3174 | PCRTNETUDP pUdpHdr = (PCRTNETUDP)((uintptr_t)pIpHdr + cbIpHdr);
|
---|
3175 | /* We are only interested in DHCP packets coming from client to server. */
|
---|
3176 | if ( RT_BE2H_U16(pUdpHdr->uh_dport) != RTNETIPV4_PORT_BOOTPS
|
---|
3177 | || RT_BE2H_U16(pUdpHdr->uh_sport) != RTNETIPV4_PORT_BOOTPC)
|
---|
3178 | return;
|
---|
3179 |
|
---|
3180 | /*
|
---|
3181 | * Check if the DHCP message is valid and get the type.
|
---|
3182 | */
|
---|
3183 | if (!RTNetIPv4IsUDPValid(pIpHdr, pUdpHdr, pUdpHdr + 1, cbUdpPkt, true /*fCheckSum*/))
|
---|
3184 | {
|
---|
3185 | Log6(("intnetR0NetworkEditDhcpFromIntNet: Bad UDP packet\n"));
|
---|
3186 | return;
|
---|
3187 | }
|
---|
3188 | PCRTNETBOOTP pDhcp = (PCRTNETBOOTP)(pUdpHdr + 1);
|
---|
3189 | uint8_t bMsgType;
|
---|
3190 | if (!RTNetIPv4IsDHCPValid(pUdpHdr, pDhcp, cbUdpPkt - sizeof(*pUdpHdr), &bMsgType))
|
---|
3191 | {
|
---|
3192 | Log6(("intnetR0NetworkEditDhcpFromIntNet: Bad DHCP packet\n"));
|
---|
3193 | return;
|
---|
3194 | }
|
---|
3195 |
|
---|
3196 | switch (bMsgType)
|
---|
3197 | {
|
---|
3198 | case RTNET_DHCP_MT_DISCOVER:
|
---|
3199 | case RTNET_DHCP_MT_REQUEST:
|
---|
3200 | /*
|
---|
3201 | * Must set the broadcast flag or we won't catch the respons.
|
---|
3202 | */
|
---|
3203 | if (!(pDhcp->bp_flags & RT_H2BE_U16_C(RTNET_DHCP_FLAG_BROADCAST)))
|
---|
3204 | {
|
---|
3205 | Log6(("intnetR0NetworkEditDhcpFromIntNet: Setting broadcast flag in DHCP %#x, previously %x\n",
|
---|
3206 | bMsgType, pDhcp->bp_flags));
|
---|
3207 |
|
---|
3208 | /* Patch flags */
|
---|
3209 | uint16_t uFlags = pDhcp->bp_flags | RT_H2BE_U16_C(RTNET_DHCP_FLAG_BROADCAST);
|
---|
3210 | intnetR0SgWritePart(pSG, (uintptr_t)&pDhcp->bp_flags - (uintptr_t)pIpHdr + sizeof(RTNETETHERHDR), sizeof(uFlags), &uFlags);
|
---|
3211 |
|
---|
3212 | /* Patch UDP checksum */
|
---|
3213 | uint32_t uChecksum = (uint32_t)~pUdpHdr->uh_sum + RT_H2BE_U16_C(RTNET_DHCP_FLAG_BROADCAST);
|
---|
3214 | while (uChecksum >> 16)
|
---|
3215 | uChecksum = (uChecksum >> 16) + (uChecksum & 0xFFFF);
|
---|
3216 | uChecksum = ~uChecksum;
|
---|
3217 | intnetR0SgWritePart(pSG, (uintptr_t)&pUdpHdr->uh_sum - (uintptr_t)pIpHdr + sizeof(RTNETETHERHDR), sizeof(pUdpHdr->uh_sum), &uChecksum);
|
---|
3218 | }
|
---|
3219 |
|
---|
3220 | #ifdef RT_OS_DARWIN
|
---|
3221 | /*
|
---|
3222 | * Work around little endian checksum issue in mac os x 10.7.0 GM.
|
---|
3223 | */
|
---|
3224 | if ( pIpHdr->ip_tos
|
---|
3225 | && (pNetwork->fFlags & INTNET_OPEN_FLAGS_WORKAROUND_1))
|
---|
3226 | {
|
---|
3227 | /* Patch it. */
|
---|
3228 | uint8_t uTos = pIpHdr->ip_tos;
|
---|
3229 | uint8_t uZero = 0;
|
---|
3230 | intnetR0SgWritePart(pSG, sizeof(RTNETETHERHDR) + 1, sizeof(uZero), &uZero);
|
---|
3231 |
|
---|
3232 | /* Patch the IP header checksum. */
|
---|
3233 | uint32_t uChecksum = (uint32_t)~pIpHdr->ip_sum - (uTos << 8);
|
---|
3234 | while (uChecksum >> 16)
|
---|
3235 | uChecksum = (uChecksum >> 16) + (uChecksum & 0xFFFF);
|
---|
3236 | uChecksum = ~uChecksum;
|
---|
3237 |
|
---|
3238 | Log(("intnetR0NetworkEditDhcpFromIntNet: cleared ip_tos (was %#04x); ip_sum=%#06x -> %#06x\n",
|
---|
3239 | uTos, RT_BE2H_U16(pIpHdr->ip_sum), RT_BE2H_U16(uChecksum) ));
|
---|
3240 | intnetR0SgWritePart(pSG, sizeof(RTNETETHERHDR) + RT_OFFSETOF(RTNETIPV4, ip_sum),
|
---|
3241 | sizeof(pIpHdr->ip_sum), &uChecksum);
|
---|
3242 | }
|
---|
3243 | #endif
|
---|
3244 | break;
|
---|
3245 | }
|
---|
3246 | }
|
---|
3247 |
|
---|
3248 |
|
---|
3249 | /**
|
---|
3250 | * Checks if the callers context is okay for sending to the specified
|
---|
3251 | * destinations.
|
---|
3252 | *
|
---|
3253 | * @returns true if it's okay, false if it isn't.
|
---|
3254 | * @param pNetwork The network.
|
---|
3255 | * @param pIfSender The interface sending or NULL if it's the trunk.
|
---|
3256 | * @param pDstTab The destination table.
|
---|
3257 | */
|
---|
3258 | DECLINLINE(bool) intnetR0NetworkIsContextOk(PINTNETNETWORK pNetwork, PINTNETIF pIfSender, PCINTNETDSTTAB pDstTab)
|
---|
3259 | {
|
---|
3260 | NOREF(pNetwork);
|
---|
3261 |
|
---|
3262 | /* Sending to the trunk is the problematic path. If the trunk is the
|
---|
3263 | sender we won't be sending to it, so no problem..
|
---|
3264 | Note! fTrunkDst may be set event if if the trunk is the sender. */
|
---|
3265 | if (!pIfSender)
|
---|
3266 | return true;
|
---|
3267 |
|
---|
3268 | uint32_t const fTrunkDst = pDstTab->fTrunkDst;
|
---|
3269 | if (!fTrunkDst)
|
---|
3270 | return true;
|
---|
3271 |
|
---|
3272 | /* ASSUMES: that the trunk won't change its report while we're checking. */
|
---|
3273 | PINTNETTRUNKIF pTrunk = pDstTab->pTrunk;
|
---|
3274 | if ((fTrunkDst & pTrunk->fNoPreemptDsts) == fTrunkDst)
|
---|
3275 | return true;
|
---|
3276 |
|
---|
3277 | /* ASSUMES: That a preemption test detects HM contexts. (Will work on
|
---|
3278 | non-preemptive systems as well.) */
|
---|
3279 | if (RTThreadPreemptIsEnabled(NIL_RTTHREAD))
|
---|
3280 | return true;
|
---|
3281 | return false;
|
---|
3282 | }
|
---|
3283 |
|
---|
3284 |
|
---|
3285 | /**
|
---|
3286 | * Checks if the callers context is okay for doing a broadcast given the
|
---|
3287 | * specified source.
|
---|
3288 | *
|
---|
3289 | * @returns true if it's okay, false if it isn't.
|
---|
3290 | * @param pNetwork The network.
|
---|
3291 | * @param fSrc The source of the packet. (0 (intnet),
|
---|
3292 | * INTNETTRUNKDIR_HOST or INTNETTRUNKDIR_WIRE).
|
---|
3293 | */
|
---|
3294 | DECLINLINE(bool) intnetR0NetworkIsContextOkForBroadcast(PINTNETNETWORK pNetwork, uint32_t fSrc)
|
---|
3295 | {
|
---|
3296 | /* Sending to the trunk is the problematic path. If the trunk is the
|
---|
3297 | sender we won't be sending to it, so no problem. */
|
---|
3298 | if (fSrc)
|
---|
3299 | return true;
|
---|
3300 |
|
---|
3301 | /* ASSUMES: That a preemption test detects HM contexts. (Will work on
|
---|
3302 | non-preemptive systems as well.) */
|
---|
3303 | if (RTThreadPreemptIsEnabled(NIL_RTTHREAD))
|
---|
3304 | return true;
|
---|
3305 |
|
---|
3306 | /* PARANOIA: Grab the spinlock to make sure the trunk structure cannot be
|
---|
3307 | freed while we're touching it. */
|
---|
3308 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
3309 | PINTNETTRUNKIF pTrunk = pNetwork->MacTab.pTrunk;
|
---|
3310 |
|
---|
3311 | bool fRc = !pTrunk
|
---|
3312 | || pTrunk->fNoPreemptDsts == (INTNETTRUNKDIR_HOST | INTNETTRUNKDIR_WIRE)
|
---|
3313 | || ( (!pNetwork->MacTab.fHostActive || (pTrunk->fNoPreemptDsts & INTNETTRUNKDIR_HOST) )
|
---|
3314 | && (!pNetwork->MacTab.fWireActive || (pTrunk->fNoPreemptDsts & INTNETTRUNKDIR_WIRE) ) );
|
---|
3315 |
|
---|
3316 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
3317 |
|
---|
3318 | return fRc;
|
---|
3319 | }
|
---|
3320 |
|
---|
3321 |
|
---|
3322 | /**
|
---|
3323 | * Check context, edit, snoop and switch a broadcast frame when sharing MAC
|
---|
3324 | * address on the wire.
|
---|
3325 | *
|
---|
3326 | * The caller must hold at least one interface on the network busy to prevent it
|
---|
3327 | * from destructing beath us.
|
---|
3328 | *
|
---|
3329 | * @param pNetwork The network the frame is being sent to.
|
---|
3330 | * @param fSrc The source of the packet. (0 (intnet),
|
---|
3331 | * INTNETTRUNKDIR_HOST or INTNETTRUNKDIR_WIRE).
|
---|
3332 | * @param pIfSender The sender interface, NULL if trunk. Used to
|
---|
3333 | * prevent sending an echo to the sender.
|
---|
3334 | * @param pSG Pointer to the gather list.
|
---|
3335 | * @param pEthHdr Pointer to the ethernet header.
|
---|
3336 | * @param pDstTab The destination output table.
|
---|
3337 | */
|
---|
3338 | static INTNETSWDECISION intnetR0NetworkSharedMacFixAndSwitchBroadcast(PINTNETNETWORK pNetwork,
|
---|
3339 | uint32_t fSrc, PINTNETIF pIfSender,
|
---|
3340 | PINTNETSG pSG, PRTNETETHERHDR pEthHdr,
|
---|
3341 | PINTNETDSTTAB pDstTab)
|
---|
3342 | {
|
---|
3343 | /*
|
---|
3344 | * Before doing any work here, we need to figure out if we can handle it
|
---|
3345 | * in the current context. The restrictions are solely on the trunk.
|
---|
3346 | *
|
---|
3347 | * Note! Since at least one interface is busy, there won't be any changes
|
---|
3348 | * to the parameters here (unless the trunk changes its capability
|
---|
3349 | * report, which it shouldn't).
|
---|
3350 | */
|
---|
3351 | if (!intnetR0NetworkIsContextOkForBroadcast(pNetwork, fSrc))
|
---|
3352 | return INTNETSWDECISION_BAD_CONTEXT;
|
---|
3353 |
|
---|
3354 | /*
|
---|
3355 | * Check for ICMPv6 Neighbor Advertisements coming from the trunk.
|
---|
3356 | * If we see an advertisement for an IP in our cache, we can safely remove
|
---|
3357 | * it as the IP has probably moved.
|
---|
3358 | */
|
---|
3359 | if ( (fSrc & INTNETTRUNKDIR_WIRE)
|
---|
3360 | && RT_BE2H_U16(pEthHdr->EtherType) == RTNET_ETHERTYPE_IPV6
|
---|
3361 | && pSG->GsoCtx.u8Type == PDMNETWORKGSOTYPE_INVALID)
|
---|
3362 | intnetR0NetworkSnoopNAFromWire(pNetwork, pSG, pEthHdr);
|
---|
3363 |
|
---|
3364 |
|
---|
3365 | /*
|
---|
3366 | * Check for ARP packets from the wire since we'll have to make
|
---|
3367 | * modification to them if we're sharing the MAC address with the host.
|
---|
3368 | */
|
---|
3369 | if ( (fSrc & INTNETTRUNKDIR_WIRE)
|
---|
3370 | && RT_BE2H_U16(pEthHdr->EtherType) == RTNET_ETHERTYPE_ARP
|
---|
3371 | && pSG->GsoCtx.u8Type == PDMNETWORKGSOTYPE_INVALID)
|
---|
3372 | intnetR0NetworkEditArpFromWire(pNetwork, pSG, pEthHdr);
|
---|
3373 |
|
---|
3374 | /*
|
---|
3375 | * Check for DHCP packets from the internal net since we'll have to set
|
---|
3376 | * broadcast flag in DHCP requests if we're sharing the MAC address with
|
---|
3377 | * the host. GSO is not applicable to DHCP traffic.
|
---|
3378 | */
|
---|
3379 | if ( !fSrc
|
---|
3380 | && RT_BE2H_U16(pEthHdr->EtherType) == RTNET_ETHERTYPE_IPV4
|
---|
3381 | && pSG->GsoCtx.u8Type == PDMNETWORKGSOTYPE_INVALID)
|
---|
3382 | intnetR0NetworkEditDhcpFromIntNet(pNetwork, pSG, pEthHdr);
|
---|
3383 |
|
---|
3384 | /*
|
---|
3385 | * Snoop address info from packet originating from the trunk connection.
|
---|
3386 | */
|
---|
3387 | if (fSrc)
|
---|
3388 | {
|
---|
3389 | #ifdef INTNET_WITH_DHCP_SNOOPING
|
---|
3390 | uint16_t EtherType = RT_BE2H_U16(pEthHdr->EtherType);
|
---|
3391 | if ( ( EtherType == RTNET_ETHERTYPE_IPV4 /* for DHCP */
|
---|
3392 | && pSG->cbTotal >= sizeof(RTNETETHERHDR) + RTNETIPV4_MIN_LEN + RTNETUDP_MIN_LEN + RTNETBOOTP_DHCP_MIN_LEN
|
---|
3393 | && pSG->GsoCtx.u8Type == PDMNETWORKGSOTYPE_INVALID )
|
---|
3394 | || (pSG->fFlags & INTNETSG_FLAGS_ARP_IPV4) )
|
---|
3395 | intnetR0TrunkIfSnoopAddr(pNetwork, pSG, EtherType);
|
---|
3396 | #else
|
---|
3397 | if (pSG->fFlags & INTNETSG_FLAGS_ARP_IPV4)
|
---|
3398 | intnetR0TrunkIfSnoopArp(pNetwork, pSG);
|
---|
3399 | #endif
|
---|
3400 | }
|
---|
3401 |
|
---|
3402 | /*
|
---|
3403 | * Create the broadcast destination table.
|
---|
3404 | */
|
---|
3405 | return intnetR0NetworkSwitchBroadcast(pNetwork, fSrc, pIfSender, pDstTab);
|
---|
3406 | }
|
---|
3407 |
|
---|
3408 |
|
---|
3409 | /**
|
---|
3410 | * Check context, snoop and switch a unicast frame using the network layer
|
---|
3411 | * address of the link layer one (when sharing MAC address on the wire).
|
---|
3412 | *
|
---|
3413 | * This function is only used for frames coming from the wire (trunk).
|
---|
3414 | *
|
---|
3415 | * @returns true if it's addressed to someone on the network, otherwise false.
|
---|
3416 | * @param pNetwork The network the frame is being sent to.
|
---|
3417 | * @param pSG Pointer to the gather list.
|
---|
3418 | * @param pEthHdr Pointer to the ethernet header.
|
---|
3419 | * @param pDstTab The destination output table.
|
---|
3420 | */
|
---|
3421 | static INTNETSWDECISION intnetR0NetworkSharedMacFixAndSwitchUnicast(PINTNETNETWORK pNetwork, PINTNETSG pSG,
|
---|
3422 | PRTNETETHERHDR pEthHdr, PINTNETDSTTAB pDstTab)
|
---|
3423 | {
|
---|
3424 | /*
|
---|
3425 | * Extract the network address from the packet.
|
---|
3426 | */
|
---|
3427 | RTNETADDRU Addr;
|
---|
3428 | INTNETADDRTYPE enmAddrType;
|
---|
3429 | uint8_t cbAddr;
|
---|
3430 | switch (RT_BE2H_U16(pEthHdr->EtherType))
|
---|
3431 | {
|
---|
3432 | case RTNET_ETHERTYPE_IPV4:
|
---|
3433 | if (RT_UNLIKELY(!intnetR0SgReadPart(pSG, sizeof(RTNETETHERHDR) + RT_OFFSETOF(RTNETIPV4, ip_dst), sizeof(Addr.IPv4), &Addr)))
|
---|
3434 | {
|
---|
3435 | Log(("intnetshareduni: failed to read ip_dst! cbTotal=%#x\n", pSG->cbTotal));
|
---|
3436 | return intnetR0NetworkSwitchTrunk(pNetwork, INTNETTRUNKDIR_WIRE, pDstTab);
|
---|
3437 | }
|
---|
3438 | enmAddrType = kIntNetAddrType_IPv4;
|
---|
3439 | cbAddr = sizeof(Addr.IPv4);
|
---|
3440 | Log6(("intnetshareduni: IPv4 %d.%d.%d.%d\n", Addr.au8[0], Addr.au8[1], Addr.au8[2], Addr.au8[3]));
|
---|
3441 | break;
|
---|
3442 |
|
---|
3443 | case RTNET_ETHERTYPE_IPV6:
|
---|
3444 | if (RT_UNLIKELY(!intnetR0SgReadPart(pSG, sizeof(RTNETETHERHDR) + RT_OFFSETOF(RTNETIPV6, ip6_dst), sizeof(Addr.IPv6), &Addr)))
|
---|
3445 | {
|
---|
3446 | Log(("intnetshareduni: failed to read ip6_dst! cbTotal=%#x\n", pSG->cbTotal));
|
---|
3447 | return intnetR0NetworkSwitchTrunk(pNetwork, INTNETTRUNKDIR_WIRE, pDstTab);
|
---|
3448 | }
|
---|
3449 | enmAddrType = kIntNetAddrType_IPv6;
|
---|
3450 | cbAddr = sizeof(Addr.IPv6);
|
---|
3451 | break;
|
---|
3452 | #if 0 /** @todo IntNet: implement IPX for wireless MAC sharing? */
|
---|
3453 | case RTNET_ETHERTYPE_IPX_1:
|
---|
3454 | case RTNET_ETHERTYPE_IPX_2:
|
---|
3455 | case RTNET_ETHERTYPE_IPX_3:
|
---|
3456 | if (RT_UNLIKELY(!intnetR0SgReadPart(pSG, sizeof(RTNETETHERHDR) + RT_OFFSETOF(RTNETIPX, ipx_dstnet), sizeof(Addr.IPX), &Addr)))
|
---|
3457 | {
|
---|
3458 | Log(("intnetshareduni: failed to read ipx_dstnet! cbTotal=%#x\n", pSG->cbTotal));
|
---|
3459 | return intnetR0NetworkSwitchTrunk(pNetwork, INTNETTRUNKDIR_WIRE, pDstTab);
|
---|
3460 | }
|
---|
3461 | enmAddrType = kIntNetAddrType_IPX;
|
---|
3462 | cbAddr = sizeof(Addr.IPX);
|
---|
3463 | break;
|
---|
3464 | #endif
|
---|
3465 |
|
---|
3466 | /*
|
---|
3467 | * Treat ARP as broadcast (it shouldn't end up here normally,
|
---|
3468 | * so it goes last in the switch).
|
---|
3469 | */
|
---|
3470 | case RTNET_ETHERTYPE_ARP:
|
---|
3471 | Log6(("intnetshareduni: ARP\n"));
|
---|
3472 | /** @todo revisit this broadcasting of unicast ARP frames! */
|
---|
3473 | return intnetR0NetworkSharedMacFixAndSwitchBroadcast(pNetwork, INTNETTRUNKDIR_WIRE, NULL, pSG, pEthHdr, pDstTab);
|
---|
3474 |
|
---|
3475 | /*
|
---|
3476 | * Unknown packets are sent to the trunk and any promiscuous interfaces.
|
---|
3477 | */
|
---|
3478 | default:
|
---|
3479 | {
|
---|
3480 | Log6(("intnetshareduni: unknown ethertype=%#x\n", RT_BE2H_U16(pEthHdr->EtherType)));
|
---|
3481 | return intnetR0NetworkSwitchTrunkAndPromisc(pNetwork, INTNETTRUNKDIR_WIRE, pDstTab);
|
---|
3482 | }
|
---|
3483 | }
|
---|
3484 |
|
---|
3485 | /*
|
---|
3486 | * Do level-3 switching.
|
---|
3487 | */
|
---|
3488 | INTNETSWDECISION enmSwDecision = intnetR0NetworkSwitchLevel3(pNetwork, &pEthHdr->DstMac,
|
---|
3489 | enmAddrType, &Addr, cbAddr,
|
---|
3490 | INTNETTRUNKDIR_WIRE, pDstTab);
|
---|
3491 |
|
---|
3492 | #ifdef INTNET_WITH_DHCP_SNOOPING
|
---|
3493 | /*
|
---|
3494 | * Perform DHCP snooping. GSO is not applicable to DHCP traffic
|
---|
3495 | */
|
---|
3496 | if ( enmAddrType == kIntNetAddrType_IPv4
|
---|
3497 | && pSG->cbTotal >= sizeof(RTNETETHERHDR) + RTNETIPV4_MIN_LEN + RTNETUDP_MIN_LEN + RTNETBOOTP_DHCP_MIN_LEN
|
---|
3498 | && pSG->GsoCtx.u8Type == PDMNETWORKGSOTYPE_INVALID)
|
---|
3499 | intnetR0TrunkIfSnoopAddr(pNetwork, pSG, RT_BE2H_U16(pEthHdr->EtherType));
|
---|
3500 | #endif /* INTNET_WITH_DHCP_SNOOPING */
|
---|
3501 |
|
---|
3502 | return enmSwDecision;
|
---|
3503 | }
|
---|
3504 |
|
---|
3505 |
|
---|
3506 | /**
|
---|
3507 | * Release all the interfaces in the destination table when we realize that
|
---|
3508 | * we're in a context where we cannot get the job done.
|
---|
3509 | *
|
---|
3510 | * @param pNetwork The network.
|
---|
3511 | * @param pDstTab The destination table.
|
---|
3512 | */
|
---|
3513 | static void intnetR0NetworkReleaseDstTab(PINTNETNETWORK pNetwork, PINTNETDSTTAB pDstTab)
|
---|
3514 | {
|
---|
3515 | /* The trunk interface. */
|
---|
3516 | if (pDstTab->fTrunkDst)
|
---|
3517 | {
|
---|
3518 | PINTNETTRUNKIF pTrunk = pDstTab->pTrunk;
|
---|
3519 | intnetR0BusyDec(pNetwork, &pTrunk->cBusy);
|
---|
3520 | pDstTab->pTrunk = NULL;
|
---|
3521 | pDstTab->fTrunkDst = 0;
|
---|
3522 | }
|
---|
3523 |
|
---|
3524 | /* Regular interfaces. */
|
---|
3525 | uint32_t iIf = pDstTab->cIfs;
|
---|
3526 | while (iIf-- > 0)
|
---|
3527 | {
|
---|
3528 | PINTNETIF pIf = pDstTab->aIfs[iIf].pIf;
|
---|
3529 | intnetR0BusyDecIf(pIf);
|
---|
3530 | pDstTab->aIfs[iIf].pIf = NULL;
|
---|
3531 | }
|
---|
3532 | pDstTab->cIfs = 0;
|
---|
3533 | }
|
---|
3534 |
|
---|
3535 |
|
---|
3536 | /**
|
---|
3537 | * Deliver the frame to the interfaces specified in the destination table.
|
---|
3538 | *
|
---|
3539 | * @param pNetwork The network.
|
---|
3540 | * @param pDstTab The destination table.
|
---|
3541 | * @param pSG The frame to send.
|
---|
3542 | * @param pIfSender The sender interface. NULL if it originated via
|
---|
3543 | * the trunk.
|
---|
3544 | */
|
---|
3545 | static void intnetR0NetworkDeliver(PINTNETNETWORK pNetwork, PINTNETDSTTAB pDstTab, PINTNETSG pSG, PINTNETIF pIfSender)
|
---|
3546 | {
|
---|
3547 | /*
|
---|
3548 | * Do the interfaces first before sending it to the wire and risk having to
|
---|
3549 | * modify it.
|
---|
3550 | */
|
---|
3551 | uint32_t iIf = pDstTab->cIfs;
|
---|
3552 | while (iIf-- > 0)
|
---|
3553 | {
|
---|
3554 | PINTNETIF pIf = pDstTab->aIfs[iIf].pIf;
|
---|
3555 | intnetR0IfSend(pIf, pIfSender, pSG,
|
---|
3556 | pDstTab->aIfs[iIf].fReplaceDstMac ? &pIf->MacAddr: NULL);
|
---|
3557 | intnetR0BusyDecIf(pIf);
|
---|
3558 | pDstTab->aIfs[iIf].pIf = NULL;
|
---|
3559 | }
|
---|
3560 | pDstTab->cIfs = 0;
|
---|
3561 |
|
---|
3562 | /*
|
---|
3563 | * Send to the trunk.
|
---|
3564 | *
|
---|
3565 | * Note! The switching functions will include the trunk even when the frame
|
---|
3566 | * source is the trunk. This is because we need it to figure out
|
---|
3567 | * whether the other half of the trunk should see the frame or not
|
---|
3568 | * and let the caller know.
|
---|
3569 | *
|
---|
3570 | * So, we'll ignore trunk sends here if the frame origin is
|
---|
3571 | * INTNETTRUNKSWPORT::pfnRecv.
|
---|
3572 | */
|
---|
3573 | if (pDstTab->fTrunkDst)
|
---|
3574 | {
|
---|
3575 | PINTNETTRUNKIF pTrunk = pDstTab->pTrunk;
|
---|
3576 | if (pIfSender)
|
---|
3577 | intnetR0TrunkIfSend(pTrunk, pNetwork, pIfSender, pDstTab->fTrunkDst, pSG);
|
---|
3578 | intnetR0BusyDec(pNetwork, &pTrunk->cBusy);
|
---|
3579 | pDstTab->pTrunk = NULL;
|
---|
3580 | pDstTab->fTrunkDst = 0;
|
---|
3581 | }
|
---|
3582 | }
|
---|
3583 |
|
---|
3584 |
|
---|
3585 | /**
|
---|
3586 | * Sends a frame.
|
---|
3587 | *
|
---|
3588 | * This function will distribute the frame to the interfaces it is addressed to.
|
---|
3589 | * It will also update the MAC address of the sender.
|
---|
3590 | *
|
---|
3591 | * The caller must own the network mutex.
|
---|
3592 | *
|
---|
3593 | * @returns The switching decision.
|
---|
3594 | * @param pNetwork The network the frame is being sent to.
|
---|
3595 | * @param pIfSender The interface sending the frame. This is NULL if it's the trunk.
|
---|
3596 | * @param fSrc The source flags. This 0 if it's not from the trunk.
|
---|
3597 | * @param pSG Pointer to the gather list.
|
---|
3598 | * @param pDstTab The destination table to use.
|
---|
3599 | */
|
---|
3600 | static INTNETSWDECISION intnetR0NetworkSend(PINTNETNETWORK pNetwork, PINTNETIF pIfSender, uint32_t fSrc,
|
---|
3601 | PINTNETSG pSG, PINTNETDSTTAB pDstTab)
|
---|
3602 | {
|
---|
3603 | /*
|
---|
3604 | * Assert reality.
|
---|
3605 | */
|
---|
3606 | AssertPtr(pNetwork);
|
---|
3607 | AssertPtrNull(pIfSender);
|
---|
3608 | Assert(pIfSender ? fSrc == 0 : fSrc != 0);
|
---|
3609 | Assert(!pIfSender || pNetwork == pIfSender->pNetwork);
|
---|
3610 | AssertPtr(pSG);
|
---|
3611 | Assert(pSG->cSegsUsed >= 1);
|
---|
3612 | Assert(pSG->cSegsUsed <= pSG->cSegsAlloc);
|
---|
3613 | if (pSG->cbTotal < sizeof(RTNETETHERHDR))
|
---|
3614 | return INTNETSWDECISION_INVALID;
|
---|
3615 |
|
---|
3616 | /*
|
---|
3617 | * Get the ethernet header (might theoretically involve multiple segments).
|
---|
3618 | */
|
---|
3619 | RTNETETHERHDR EthHdr;
|
---|
3620 | if (pSG->aSegs[0].cb >= sizeof(EthHdr))
|
---|
3621 | EthHdr = *(PCRTNETETHERHDR)pSG->aSegs[0].pv;
|
---|
3622 | else if (!intnetR0SgReadPart(pSG, 0, sizeof(EthHdr), &EthHdr))
|
---|
3623 | return INTNETSWDECISION_INVALID;
|
---|
3624 | if ( (EthHdr.DstMac.au8[0] == 0x08 && EthHdr.DstMac.au8[1] == 0x00 && EthHdr.DstMac.au8[2] == 0x27)
|
---|
3625 | || (EthHdr.SrcMac.au8[0] == 0x08 && EthHdr.SrcMac.au8[1] == 0x00 && EthHdr.SrcMac.au8[2] == 0x27)
|
---|
3626 | || (EthHdr.DstMac.au8[0] == 0x00 && EthHdr.DstMac.au8[1] == 0x16 && EthHdr.DstMac.au8[2] == 0xcb)
|
---|
3627 | || (EthHdr.SrcMac.au8[0] == 0x00 && EthHdr.SrcMac.au8[1] == 0x16 && EthHdr.SrcMac.au8[2] == 0xcb)
|
---|
3628 | || EthHdr.DstMac.au8[0] == 0xff
|
---|
3629 | || EthHdr.SrcMac.au8[0] == 0xff)
|
---|
3630 | Log2(("D=%.6Rhxs S=%.6Rhxs T=%04x f=%x z=%x\n",
|
---|
3631 | &EthHdr.DstMac, &EthHdr.SrcMac, RT_BE2H_U16(EthHdr.EtherType), fSrc, pSG->cbTotal));
|
---|
3632 |
|
---|
3633 | /*
|
---|
3634 | * Learn the MAC address of the sender. No re-learning as the interface
|
---|
3635 | * user will normally tell us the right MAC address.
|
---|
3636 | *
|
---|
3637 | * Note! We don't notify the trunk about these mainly because of the
|
---|
3638 | * problematic contexts we might be called in.
|
---|
3639 | */
|
---|
3640 | if (RT_UNLIKELY( pIfSender
|
---|
3641 | && !pIfSender->fMacSet
|
---|
3642 | && memcmp(&EthHdr.SrcMac, &pIfSender->MacAddr, sizeof(pIfSender->MacAddr))
|
---|
3643 | && !intnetR0IsMacAddrMulticast(&EthHdr.SrcMac)
|
---|
3644 | ))
|
---|
3645 | {
|
---|
3646 | Log2(("IF MAC: %.6Rhxs -> %.6Rhxs\n", &pIfSender->MacAddr, &EthHdr.SrcMac));
|
---|
3647 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
3648 |
|
---|
3649 | PINTNETMACTABENTRY pIfEntry = intnetR0NetworkFindMacAddrEntry(pNetwork, pIfSender);
|
---|
3650 | if (pIfEntry)
|
---|
3651 | pIfEntry->MacAddr = EthHdr.SrcMac;
|
---|
3652 | pIfSender->MacAddr = EthHdr.SrcMac;
|
---|
3653 |
|
---|
3654 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
3655 | }
|
---|
3656 |
|
---|
3657 | /*
|
---|
3658 | * Deal with MAC address sharing as that may required editing of the
|
---|
3659 | * packets before we dispatch them anywhere.
|
---|
3660 | */
|
---|
3661 | INTNETSWDECISION enmSwDecision;
|
---|
3662 | if (pNetwork->fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE)
|
---|
3663 | {
|
---|
3664 | if (intnetR0IsMacAddrMulticast(&EthHdr.DstMac))
|
---|
3665 | enmSwDecision = intnetR0NetworkSharedMacFixAndSwitchBroadcast(pNetwork, fSrc, pIfSender, pSG, &EthHdr, pDstTab);
|
---|
3666 | else if (fSrc & INTNETTRUNKDIR_WIRE)
|
---|
3667 | {
|
---|
3668 | if (intnetR0NetworkDetectAndFixNdBroadcast(pNetwork, pSG, &EthHdr))
|
---|
3669 | enmSwDecision = intnetR0NetworkSharedMacFixAndSwitchBroadcast(pNetwork, fSrc, pIfSender, pSG, &EthHdr, pDstTab);
|
---|
3670 | else
|
---|
3671 | enmSwDecision = intnetR0NetworkSharedMacFixAndSwitchUnicast(pNetwork, pSG, &EthHdr, pDstTab);
|
---|
3672 | }
|
---|
3673 | else
|
---|
3674 | enmSwDecision = intnetR0NetworkSwitchUnicast(pNetwork, fSrc, pIfSender, &EthHdr.DstMac, pDstTab);
|
---|
3675 | }
|
---|
3676 | else if (intnetR0IsMacAddrMulticast(&EthHdr.DstMac))
|
---|
3677 | enmSwDecision = intnetR0NetworkSwitchBroadcast(pNetwork, fSrc, pIfSender, pDstTab);
|
---|
3678 | else
|
---|
3679 | enmSwDecision = intnetR0NetworkSwitchUnicast(pNetwork, fSrc, pIfSender, &EthHdr.DstMac, pDstTab);
|
---|
3680 |
|
---|
3681 | /*
|
---|
3682 | * Deliver to the destinations if we can.
|
---|
3683 | */
|
---|
3684 | if (enmSwDecision != INTNETSWDECISION_BAD_CONTEXT)
|
---|
3685 | {
|
---|
3686 | if (intnetR0NetworkIsContextOk(pNetwork, pIfSender, pDstTab))
|
---|
3687 | intnetR0NetworkDeliver(pNetwork, pDstTab, pSG, pIfSender);
|
---|
3688 | else
|
---|
3689 | {
|
---|
3690 | intnetR0NetworkReleaseDstTab(pNetwork, pDstTab);
|
---|
3691 | enmSwDecision = INTNETSWDECISION_BAD_CONTEXT;
|
---|
3692 | }
|
---|
3693 | }
|
---|
3694 |
|
---|
3695 | return enmSwDecision;
|
---|
3696 | }
|
---|
3697 |
|
---|
3698 |
|
---|
3699 | /**
|
---|
3700 | * Sends one or more frames.
|
---|
3701 | *
|
---|
3702 | * The function will first the frame which is passed as the optional arguments
|
---|
3703 | * pvFrame and cbFrame. These are optional since it also possible to chain
|
---|
3704 | * together one or more frames in the send buffer which the function will
|
---|
3705 | * process after considering it's arguments.
|
---|
3706 | *
|
---|
3707 | * The caller is responsible for making sure that there are no concurrent calls
|
---|
3708 | * to this method (with the same handle).
|
---|
3709 | *
|
---|
3710 | * @returns VBox status code.
|
---|
3711 | * @param hIf The interface handle.
|
---|
3712 | * @param pSession The caller's session.
|
---|
3713 | */
|
---|
3714 | INTNETR0DECL(int) IntNetR0IfSend(INTNETIFHANDLE hIf, PSUPDRVSESSION pSession)
|
---|
3715 | {
|
---|
3716 | Log5(("IntNetR0IfSend: hIf=%RX32\n", hIf));
|
---|
3717 |
|
---|
3718 | /*
|
---|
3719 | * Validate input and translate the handle.
|
---|
3720 | */
|
---|
3721 | PINTNET pIntNet = g_pIntNet;
|
---|
3722 | AssertPtrReturn(pIntNet, VERR_INVALID_PARAMETER);
|
---|
3723 | AssertReturn(pIntNet->u32Magic, VERR_INVALID_MAGIC);
|
---|
3724 |
|
---|
3725 | PINTNETIF pIf = (PINTNETIF)RTHandleTableLookupWithCtx(pIntNet->hHtIfs, hIf, pSession);
|
---|
3726 | if (!pIf)
|
---|
3727 | return VERR_INVALID_HANDLE;
|
---|
3728 | STAM_REL_PROFILE_START(&pIf->pIntBuf->StatSend1, a);
|
---|
3729 |
|
---|
3730 | /*
|
---|
3731 | * Make sure we've got a network.
|
---|
3732 | */
|
---|
3733 | int rc = VINF_SUCCESS;
|
---|
3734 | intnetR0BusyIncIf(pIf);
|
---|
3735 | PINTNETNETWORK pNetwork = pIf->pNetwork;
|
---|
3736 | if (RT_LIKELY(pNetwork))
|
---|
3737 | {
|
---|
3738 | /*
|
---|
3739 | * Grab the destination table.
|
---|
3740 | */
|
---|
3741 | PINTNETDSTTAB pDstTab = ASMAtomicXchgPtrT(&pIf->pDstTab, NULL, PINTNETDSTTAB);
|
---|
3742 | if (RT_LIKELY(pDstTab))
|
---|
3743 | {
|
---|
3744 | /*
|
---|
3745 | * Process the send buffer.
|
---|
3746 | */
|
---|
3747 | INTNETSWDECISION enmSwDecision = INTNETSWDECISION_BROADCAST;
|
---|
3748 | INTNETSG Sg; /** @todo this will have to be changed if we're going to use async sending
|
---|
3749 | * with buffer sharing for some OS or service. Darwin copies everything so
|
---|
3750 | * I won't bother allocating and managing SGs right now. Sorry. */
|
---|
3751 | PINTNETHDR pHdr;
|
---|
3752 | while ((pHdr = IntNetRingGetNextFrameToRead(&pIf->pIntBuf->Send)) != NULL)
|
---|
3753 | {
|
---|
3754 | uint8_t const u8Type = pHdr->u8Type;
|
---|
3755 | if (u8Type == INTNETHDR_TYPE_FRAME)
|
---|
3756 | {
|
---|
3757 | /* Send regular frame. */
|
---|
3758 | void *pvCurFrame = IntNetHdrGetFramePtr(pHdr, pIf->pIntBuf);
|
---|
3759 | IntNetSgInitTemp(&Sg, pvCurFrame, pHdr->cbFrame);
|
---|
3760 | if (pNetwork->fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE)
|
---|
3761 | intnetR0IfSnoopAddr(pIf, (uint8_t *)pvCurFrame, pHdr->cbFrame, false /*fGso*/, (uint16_t *)&Sg.fFlags);
|
---|
3762 | enmSwDecision = intnetR0NetworkSend(pNetwork, pIf, 0 /*fSrc*/, &Sg, pDstTab);
|
---|
3763 | }
|
---|
3764 | else if (u8Type == INTNETHDR_TYPE_GSO)
|
---|
3765 | {
|
---|
3766 | /* Send GSO frame if sane. */
|
---|
3767 | PPDMNETWORKGSO pGso = IntNetHdrGetGsoContext(pHdr, pIf->pIntBuf);
|
---|
3768 | uint32_t cbFrame = pHdr->cbFrame - sizeof(*pGso);
|
---|
3769 | if (RT_LIKELY(PDMNetGsoIsValid(pGso, pHdr->cbFrame, cbFrame)))
|
---|
3770 | {
|
---|
3771 | void *pvCurFrame = pGso + 1;
|
---|
3772 | IntNetSgInitTempGso(&Sg, pvCurFrame, cbFrame, pGso);
|
---|
3773 | if (pNetwork->fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE)
|
---|
3774 | intnetR0IfSnoopAddr(pIf, (uint8_t *)pvCurFrame, cbFrame, true /*fGso*/, (uint16_t *)&Sg.fFlags);
|
---|
3775 | enmSwDecision = intnetR0NetworkSend(pNetwork, pIf, 0 /*fSrc*/, &Sg, pDstTab);
|
---|
3776 | }
|
---|
3777 | else
|
---|
3778 | {
|
---|
3779 | STAM_REL_COUNTER_INC(&pIf->pIntBuf->cStatBadFrames); /* ignore */
|
---|
3780 | enmSwDecision = INTNETSWDECISION_DROP;
|
---|
3781 | }
|
---|
3782 | }
|
---|
3783 | /* Unless it's a padding frame, we're getting babble from the producer. */
|
---|
3784 | else
|
---|
3785 | {
|
---|
3786 | if (u8Type != INTNETHDR_TYPE_PADDING)
|
---|
3787 | STAM_REL_COUNTER_INC(&pIf->pIntBuf->cStatBadFrames); /* ignore */
|
---|
3788 | enmSwDecision = INTNETSWDECISION_DROP;
|
---|
3789 | }
|
---|
3790 | if (enmSwDecision == INTNETSWDECISION_BAD_CONTEXT)
|
---|
3791 | {
|
---|
3792 | rc = VERR_TRY_AGAIN;
|
---|
3793 | break;
|
---|
3794 | }
|
---|
3795 |
|
---|
3796 | /* Skip to the next frame. */
|
---|
3797 | IntNetRingSkipFrame(&pIf->pIntBuf->Send);
|
---|
3798 | }
|
---|
3799 |
|
---|
3800 | /*
|
---|
3801 | * Put back the destination table.
|
---|
3802 | */
|
---|
3803 | Assert(!pIf->pDstTab);
|
---|
3804 | ASMAtomicWritePtr(&pIf->pDstTab, pDstTab);
|
---|
3805 | }
|
---|
3806 | else
|
---|
3807 | rc = VERR_INTERNAL_ERROR_4;
|
---|
3808 | }
|
---|
3809 | else
|
---|
3810 | rc = VERR_INTERNAL_ERROR_3;
|
---|
3811 |
|
---|
3812 | /*
|
---|
3813 | * Release the interface.
|
---|
3814 | */
|
---|
3815 | intnetR0BusyDecIf(pIf);
|
---|
3816 | STAM_REL_PROFILE_STOP(&pIf->pIntBuf->StatSend1, a);
|
---|
3817 | intnetR0IfRelease(pIf, pSession);
|
---|
3818 | return rc;
|
---|
3819 | }
|
---|
3820 |
|
---|
3821 |
|
---|
3822 | /**
|
---|
3823 | * VMMR0 request wrapper for IntNetR0IfSend.
|
---|
3824 | *
|
---|
3825 | * @returns see IntNetR0IfSend.
|
---|
3826 | * @param pSession The caller's session.
|
---|
3827 | * @param pReq The request packet.
|
---|
3828 | */
|
---|
3829 | INTNETR0DECL(int) IntNetR0IfSendReq(PSUPDRVSESSION pSession, PINTNETIFSENDREQ pReq)
|
---|
3830 | {
|
---|
3831 | if (RT_UNLIKELY(pReq->Hdr.cbReq != sizeof(*pReq)))
|
---|
3832 | return VERR_INVALID_PARAMETER;
|
---|
3833 | return IntNetR0IfSend(pReq->hIf, pSession);
|
---|
3834 | }
|
---|
3835 |
|
---|
3836 |
|
---|
3837 | /**
|
---|
3838 | * Maps the default buffer into ring 3.
|
---|
3839 | *
|
---|
3840 | * @returns VBox status code.
|
---|
3841 | * @param hIf The interface handle.
|
---|
3842 | * @param pSession The caller's session.
|
---|
3843 | * @param ppRing3Buf Where to store the address of the ring-3 mapping
|
---|
3844 | * (optional).
|
---|
3845 | * @param ppRing0Buf Where to store the address of the ring-0 mapping
|
---|
3846 | * (optional).
|
---|
3847 | */
|
---|
3848 | INTNETR0DECL(int) IntNetR0IfGetBufferPtrs(INTNETIFHANDLE hIf, PSUPDRVSESSION pSession,
|
---|
3849 | R3PTRTYPE(PINTNETBUF) *ppRing3Buf, R0PTRTYPE(PINTNETBUF) *ppRing0Buf)
|
---|
3850 | {
|
---|
3851 | LogFlow(("IntNetR0IfGetBufferPtrs: hIf=%RX32 ppRing3Buf=%p ppRing0Buf=%p\n", hIf, ppRing3Buf, ppRing0Buf));
|
---|
3852 |
|
---|
3853 | /*
|
---|
3854 | * Validate input.
|
---|
3855 | */
|
---|
3856 | PINTNET pIntNet = g_pIntNet;
|
---|
3857 | AssertPtrReturn(pIntNet, VERR_INVALID_PARAMETER);
|
---|
3858 | AssertReturn(pIntNet->u32Magic, VERR_INVALID_MAGIC);
|
---|
3859 |
|
---|
3860 | AssertPtrNullReturn(ppRing3Buf, VERR_INVALID_PARAMETER);
|
---|
3861 | AssertPtrNullReturn(ppRing0Buf, VERR_INVALID_PARAMETER);
|
---|
3862 | if (ppRing3Buf)
|
---|
3863 | *ppRing3Buf = 0;
|
---|
3864 | if (ppRing0Buf)
|
---|
3865 | *ppRing0Buf = 0;
|
---|
3866 |
|
---|
3867 | PINTNETIF pIf = (PINTNETIF)RTHandleTableLookupWithCtx(pIntNet->hHtIfs, hIf, pSession);
|
---|
3868 | if (!pIf)
|
---|
3869 | return VERR_INVALID_HANDLE;
|
---|
3870 |
|
---|
3871 | /*
|
---|
3872 | * ASSUMES that only the process that created an interface can use it.
|
---|
3873 | * ASSUMES that we created the ring-3 mapping when selecting or
|
---|
3874 | * allocating the buffer.
|
---|
3875 | */
|
---|
3876 | int rc = RTSemMutexRequest(pIntNet->hMtxCreateOpenDestroy, RT_INDEFINITE_WAIT);
|
---|
3877 | if (RT_SUCCESS(rc))
|
---|
3878 | {
|
---|
3879 | if (ppRing3Buf)
|
---|
3880 | *ppRing3Buf = pIf->pIntBufR3;
|
---|
3881 | if (ppRing0Buf)
|
---|
3882 | *ppRing0Buf = (R0PTRTYPE(PINTNETBUF))pIf->pIntBuf; /* tstIntNetR0 mess */
|
---|
3883 |
|
---|
3884 | rc = RTSemMutexRelease(pIntNet->hMtxCreateOpenDestroy);
|
---|
3885 | }
|
---|
3886 |
|
---|
3887 | intnetR0IfRelease(pIf, pSession);
|
---|
3888 | LogFlow(("IntNetR0IfGetBufferPtrs: returns %Rrc *ppRing3Buf=%p *ppRing0Buf=%p\n",
|
---|
3889 | rc, ppRing3Buf ? *ppRing3Buf : NIL_RTR3PTR, ppRing0Buf ? *ppRing0Buf : NIL_RTR0PTR));
|
---|
3890 | return rc;
|
---|
3891 | }
|
---|
3892 |
|
---|
3893 |
|
---|
3894 | /**
|
---|
3895 | * VMMR0 request wrapper for IntNetR0IfGetBufferPtrs.
|
---|
3896 | *
|
---|
3897 | * @returns see IntNetR0IfGetRing3Buffer.
|
---|
3898 | * @param pSession The caller's session.
|
---|
3899 | * @param pReq The request packet.
|
---|
3900 | */
|
---|
3901 | INTNETR0DECL(int) IntNetR0IfGetBufferPtrsReq(PSUPDRVSESSION pSession, PINTNETIFGETBUFFERPTRSREQ pReq)
|
---|
3902 | {
|
---|
3903 | if (RT_UNLIKELY(pReq->Hdr.cbReq != sizeof(*pReq)))
|
---|
3904 | return VERR_INVALID_PARAMETER;
|
---|
3905 | return IntNetR0IfGetBufferPtrs(pReq->hIf, pSession, &pReq->pRing3Buf, &pReq->pRing0Buf);
|
---|
3906 | }
|
---|
3907 |
|
---|
3908 |
|
---|
3909 | #if 0
|
---|
3910 | /**
|
---|
3911 | * Gets the physical addresses of the default interface buffer.
|
---|
3912 | *
|
---|
3913 | * @returns VBox status code.
|
---|
3914 | * @param hIF The interface handle.
|
---|
3915 | * @param paPages Where to store the addresses. (The reserved fields will be set to zero.)
|
---|
3916 | * @param cPages
|
---|
3917 | */
|
---|
3918 | INTNETR0DECL(int) IntNetR0IfGetPhysBuffer(INTNETIFHANDLE hIf, PSUPPAGE paPages, unsigned cPages)
|
---|
3919 | {
|
---|
3920 | /*
|
---|
3921 | * Validate input.
|
---|
3922 | */
|
---|
3923 | PINTNET pIntNet = g_pIntNet;
|
---|
3924 | AssertPtrReturn(pIntNet, VERR_INVALID_PARAMETER);
|
---|
3925 | AssertReturn(pIntNet->u32Magic, VERR_INVALID_MAGIC);
|
---|
3926 |
|
---|
3927 | AssertPtrReturn(paPages, VERR_INVALID_PARAMETER);
|
---|
3928 | AssertPtrReturn((uint8_t *)&paPages[cPages] - 1, VERR_INVALID_PARAMETER);
|
---|
3929 | PINTNETIF pIf = (PINTNETIF)RTHandleTableLookupWithCtx(pIntNet->hHtIfs, hIf, pSession);
|
---|
3930 | if (!pIf)
|
---|
3931 | return VERR_INVALID_HANDLE;
|
---|
3932 |
|
---|
3933 | /*
|
---|
3934 | * Grab the lock and get the data.
|
---|
3935 | * ASSUMES that the handle isn't closed while we're here.
|
---|
3936 | */
|
---|
3937 | int rc = RTSemFastMutexRequest(pIf->pNetwork->FastMutex);
|
---|
3938 | if (RT_SUCCESS(rc))
|
---|
3939 | {
|
---|
3940 | /** @todo make a SUPR0 api for obtaining the array. SUPR0/IPRT is keeping track of everything, there
|
---|
3941 | * is no need for any extra bookkeeping here.. */
|
---|
3942 |
|
---|
3943 | rc = RTSemFastMutexRelease(pIf->pNetwork->FastMutex);
|
---|
3944 | }
|
---|
3945 | intnetR0IfRelease(pIf, pSession);
|
---|
3946 | return VERR_NOT_IMPLEMENTED;
|
---|
3947 | }
|
---|
3948 | #endif
|
---|
3949 |
|
---|
3950 |
|
---|
3951 | /**
|
---|
3952 | * Sets the promiscuous mode property of an interface.
|
---|
3953 | *
|
---|
3954 | * @returns VBox status code.
|
---|
3955 | * @param hIf The interface handle.
|
---|
3956 | * @param pSession The caller's session.
|
---|
3957 | * @param fPromiscuous Set if the interface should be in promiscuous mode, clear if not.
|
---|
3958 | */
|
---|
3959 | INTNETR0DECL(int) IntNetR0IfSetPromiscuousMode(INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, bool fPromiscuous)
|
---|
3960 | {
|
---|
3961 | LogFlow(("IntNetR0IfSetPromiscuousMode: hIf=%RX32 fPromiscuous=%d\n", hIf, fPromiscuous));
|
---|
3962 |
|
---|
3963 | /*
|
---|
3964 | * Validate & translate input.
|
---|
3965 | */
|
---|
3966 | PINTNET pIntNet = g_pIntNet;
|
---|
3967 | AssertPtrReturn(pIntNet, VERR_INVALID_PARAMETER);
|
---|
3968 | AssertReturn(pIntNet->u32Magic, VERR_INVALID_MAGIC);
|
---|
3969 |
|
---|
3970 | PINTNETIF pIf = (PINTNETIF)RTHandleTableLookupWithCtx(pIntNet->hHtIfs, hIf, pSession);
|
---|
3971 | if (!pIf)
|
---|
3972 | {
|
---|
3973 | Log(("IntNetR0IfSetPromiscuousMode: returns VERR_INVALID_HANDLE\n"));
|
---|
3974 | return VERR_INVALID_HANDLE;
|
---|
3975 | }
|
---|
3976 |
|
---|
3977 | /*
|
---|
3978 | * Get the network, take the address spinlock, and make the change.
|
---|
3979 | * Paranoia^2: Mark ourselves busy to prevent anything from being destroyed.
|
---|
3980 | */
|
---|
3981 | int rc = VINF_SUCCESS;
|
---|
3982 | intnetR0BusyIncIf(pIf);
|
---|
3983 | PINTNETNETWORK pNetwork = pIf->pNetwork;
|
---|
3984 | if (pNetwork)
|
---|
3985 | {
|
---|
3986 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
3987 |
|
---|
3988 | if (pIf->fPromiscuousReal != fPromiscuous)
|
---|
3989 | {
|
---|
3990 | const bool fPromiscuousEff = fPromiscuous
|
---|
3991 | && (pIf->fOpenFlags & INTNET_OPEN_FLAGS_IF_PROMISC_ALLOW)
|
---|
3992 | && (pNetwork->fFlags & INTNET_OPEN_FLAGS_PROMISC_ALLOW_CLIENTS);
|
---|
3993 | Log(("IntNetR0IfSetPromiscuousMode: hIf=%RX32: Changed from %d -> %d (%d)\n",
|
---|
3994 | hIf, !fPromiscuous, !!fPromiscuous, fPromiscuousEff));
|
---|
3995 |
|
---|
3996 | pIf->fPromiscuousReal = fPromiscuous;
|
---|
3997 |
|
---|
3998 | PINTNETMACTABENTRY pEntry = intnetR0NetworkFindMacAddrEntry(pNetwork, pIf); Assert(pEntry);
|
---|
3999 | if (RT_LIKELY(pEntry))
|
---|
4000 | {
|
---|
4001 | if (pEntry->fPromiscuousEff)
|
---|
4002 | {
|
---|
4003 | pNetwork->MacTab.cPromiscuousEntries--;
|
---|
4004 | if (!pEntry->fPromiscuousSeeTrunk)
|
---|
4005 | pNetwork->MacTab.cPromiscuousNoTrunkEntries--;
|
---|
4006 | Assert(pNetwork->MacTab.cPromiscuousEntries < pNetwork->MacTab.cEntries);
|
---|
4007 | Assert(pNetwork->MacTab.cPromiscuousNoTrunkEntries < pNetwork->MacTab.cEntries);
|
---|
4008 | }
|
---|
4009 |
|
---|
4010 | pEntry->fPromiscuousEff = fPromiscuousEff;
|
---|
4011 | pEntry->fPromiscuousSeeTrunk = fPromiscuousEff
|
---|
4012 | && (pIf->fOpenFlags & INTNET_OPEN_FLAGS_IF_PROMISC_SEE_TRUNK);
|
---|
4013 |
|
---|
4014 | if (pEntry->fPromiscuousEff)
|
---|
4015 | {
|
---|
4016 | pNetwork->MacTab.cPromiscuousEntries++;
|
---|
4017 | if (!pEntry->fPromiscuousSeeTrunk)
|
---|
4018 | pNetwork->MacTab.cPromiscuousNoTrunkEntries++;
|
---|
4019 | }
|
---|
4020 | Assert(pNetwork->MacTab.cPromiscuousEntries <= pNetwork->MacTab.cEntries);
|
---|
4021 | Assert(pNetwork->MacTab.cPromiscuousNoTrunkEntries <= pNetwork->MacTab.cEntries);
|
---|
4022 | }
|
---|
4023 | }
|
---|
4024 |
|
---|
4025 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
4026 | }
|
---|
4027 | else
|
---|
4028 | rc = VERR_WRONG_ORDER;
|
---|
4029 |
|
---|
4030 | intnetR0BusyDecIf(pIf);
|
---|
4031 | intnetR0IfRelease(pIf, pSession);
|
---|
4032 | return rc;
|
---|
4033 | }
|
---|
4034 |
|
---|
4035 |
|
---|
4036 | /**
|
---|
4037 | * VMMR0 request wrapper for IntNetR0IfSetPromiscuousMode.
|
---|
4038 | *
|
---|
4039 | * @returns see IntNetR0IfSetPromiscuousMode.
|
---|
4040 | * @param pSession The caller's session.
|
---|
4041 | * @param pReq The request packet.
|
---|
4042 | */
|
---|
4043 | INTNETR0DECL(int) IntNetR0IfSetPromiscuousModeReq(PSUPDRVSESSION pSession, PINTNETIFSETPROMISCUOUSMODEREQ pReq)
|
---|
4044 | {
|
---|
4045 | if (RT_UNLIKELY(pReq->Hdr.cbReq != sizeof(*pReq)))
|
---|
4046 | return VERR_INVALID_PARAMETER;
|
---|
4047 | return IntNetR0IfSetPromiscuousMode(pReq->hIf, pSession, pReq->fPromiscuous);
|
---|
4048 | }
|
---|
4049 |
|
---|
4050 |
|
---|
4051 | /**
|
---|
4052 | * Sets the MAC address of an interface.
|
---|
4053 | *
|
---|
4054 | * @returns VBox status code.
|
---|
4055 | * @param hIf The interface handle.
|
---|
4056 | * @param pSession The caller's session.
|
---|
4057 | * @param pMAC The new MAC address.
|
---|
4058 | */
|
---|
4059 | INTNETR0DECL(int) IntNetR0IfSetMacAddress(INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, PCRTMAC pMac)
|
---|
4060 | {
|
---|
4061 | LogFlow(("IntNetR0IfSetMacAddress: hIf=%RX32 pMac=%p:{%.6Rhxs}\n", hIf, pMac, pMac));
|
---|
4062 |
|
---|
4063 | /*
|
---|
4064 | * Validate & translate input.
|
---|
4065 | */
|
---|
4066 | PINTNET pIntNet = g_pIntNet;
|
---|
4067 | AssertPtrReturn(pIntNet, VERR_INVALID_PARAMETER);
|
---|
4068 | AssertReturn(pIntNet->u32Magic, VERR_INVALID_MAGIC);
|
---|
4069 |
|
---|
4070 | AssertPtrReturn(pMac, VERR_INVALID_PARAMETER);
|
---|
4071 | PINTNETIF pIf = (PINTNETIF)RTHandleTableLookupWithCtx(pIntNet->hHtIfs, hIf, pSession);
|
---|
4072 | if (!pIf)
|
---|
4073 | {
|
---|
4074 | Log(("IntNetR0IfSetMacAddress: returns VERR_INVALID_HANDLE\n"));
|
---|
4075 | return VERR_INVALID_HANDLE;
|
---|
4076 | }
|
---|
4077 |
|
---|
4078 | /*
|
---|
4079 | * Get the network, take the address spinlock, and make the change.
|
---|
4080 | * Paranoia^2: Mark ourselves busy to prevent anything from being destroyed.
|
---|
4081 | */
|
---|
4082 | int rc = VINF_SUCCESS;
|
---|
4083 | intnetR0BusyIncIf(pIf);
|
---|
4084 | PINTNETNETWORK pNetwork = pIf->pNetwork;
|
---|
4085 | if (pNetwork)
|
---|
4086 | {
|
---|
4087 | PINTNETTRUNKIF pTrunk = NULL;
|
---|
4088 |
|
---|
4089 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
4090 |
|
---|
4091 | if (memcmp(&pIf->MacAddr, pMac, sizeof(pIf->MacAddr)))
|
---|
4092 | {
|
---|
4093 | Log(("IntNetR0IfSetMacAddress: hIf=%RX32: Changed from %.6Rhxs -> %.6Rhxs\n",
|
---|
4094 | hIf, &pIf->MacAddr, pMac));
|
---|
4095 |
|
---|
4096 | /* Update the two copies. */
|
---|
4097 | PINTNETMACTABENTRY pEntry = intnetR0NetworkFindMacAddrEntry(pNetwork, pIf); Assert(pEntry);
|
---|
4098 | if (RT_LIKELY(pEntry))
|
---|
4099 | pEntry->MacAddr = *pMac;
|
---|
4100 | pIf->MacAddr = *pMac;
|
---|
4101 | pIf->fMacSet = true;
|
---|
4102 |
|
---|
4103 | /* Grab a busy reference to the trunk so we release the lock before notifying it. */
|
---|
4104 | pTrunk = pNetwork->MacTab.pTrunk;
|
---|
4105 | if (pTrunk)
|
---|
4106 | intnetR0BusyIncTrunk(pTrunk);
|
---|
4107 | }
|
---|
4108 |
|
---|
4109 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
4110 |
|
---|
4111 | if (pTrunk)
|
---|
4112 | {
|
---|
4113 | Log(("IntNetR0IfSetMacAddress: pfnNotifyMacAddress hIf=%RX32\n", hIf));
|
---|
4114 | PINTNETTRUNKIFPORT pIfPort = pTrunk->pIfPort;
|
---|
4115 | if (pIfPort)
|
---|
4116 | pIfPort->pfnNotifyMacAddress(pIfPort, pIf->pvIfData, pMac);
|
---|
4117 | intnetR0BusyDecTrunk(pTrunk);
|
---|
4118 | }
|
---|
4119 | }
|
---|
4120 | else
|
---|
4121 | rc = VERR_WRONG_ORDER;
|
---|
4122 |
|
---|
4123 | intnetR0BusyDecIf(pIf);
|
---|
4124 | intnetR0IfRelease(pIf, pSession);
|
---|
4125 | return rc;
|
---|
4126 | }
|
---|
4127 |
|
---|
4128 |
|
---|
4129 | /**
|
---|
4130 | * VMMR0 request wrapper for IntNetR0IfSetMacAddress.
|
---|
4131 | *
|
---|
4132 | * @returns see IntNetR0IfSetMacAddress.
|
---|
4133 | * @param pSession The caller's session.
|
---|
4134 | * @param pReq The request packet.
|
---|
4135 | */
|
---|
4136 | INTNETR0DECL(int) IntNetR0IfSetMacAddressReq(PSUPDRVSESSION pSession, PINTNETIFSETMACADDRESSREQ pReq)
|
---|
4137 | {
|
---|
4138 | if (RT_UNLIKELY(pReq->Hdr.cbReq != sizeof(*pReq)))
|
---|
4139 | return VERR_INVALID_PARAMETER;
|
---|
4140 | return IntNetR0IfSetMacAddress(pReq->hIf, pSession, &pReq->Mac);
|
---|
4141 | }
|
---|
4142 |
|
---|
4143 |
|
---|
4144 | /**
|
---|
4145 | * Worker for intnetR0IfSetActive and intnetR0IfDestruct.
|
---|
4146 | *
|
---|
4147 | * This function will update the active interface count on the network and
|
---|
4148 | * activate or deactivate the trunk connection if necessary.
|
---|
4149 | *
|
---|
4150 | * The call must own the giant lock (we cannot take it here).
|
---|
4151 | *
|
---|
4152 | * @returns VBox status code.
|
---|
4153 | * @param pNetwork The network.
|
---|
4154 | * @param fIf The interface.
|
---|
4155 | * @param fActive What to do.
|
---|
4156 | */
|
---|
4157 | static int intnetR0NetworkSetIfActive(PINTNETNETWORK pNetwork, PINTNETIF pIf, bool fActive)
|
---|
4158 | {
|
---|
4159 | /* quick sanity check */
|
---|
4160 | AssertPtr(pNetwork);
|
---|
4161 | AssertPtr(pIf);
|
---|
4162 |
|
---|
4163 | /*
|
---|
4164 | * The address spinlock of the network protects the variables, while the
|
---|
4165 | * big lock protects the calling of pfnSetState. Grab both lock at once
|
---|
4166 | * to save us the extra hassle.
|
---|
4167 | */
|
---|
4168 | PINTNETTRUNKIF pTrunk = NULL;
|
---|
4169 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
4170 |
|
---|
4171 | /*
|
---|
4172 | * Do the update.
|
---|
4173 | */
|
---|
4174 | if (pIf->fActive != fActive)
|
---|
4175 | {
|
---|
4176 | PINTNETMACTABENTRY pEntry = intnetR0NetworkFindMacAddrEntry(pNetwork, pIf); Assert(pEntry);
|
---|
4177 | if (RT_LIKELY(pEntry))
|
---|
4178 | {
|
---|
4179 | pEntry->fActive = fActive;
|
---|
4180 | pIf->fActive = fActive;
|
---|
4181 |
|
---|
4182 | if (fActive)
|
---|
4183 | {
|
---|
4184 | pNetwork->cActiveIFs++;
|
---|
4185 | if (pNetwork->cActiveIFs == 1)
|
---|
4186 | {
|
---|
4187 | pTrunk = pNetwork->MacTab.pTrunk;
|
---|
4188 | if (pTrunk)
|
---|
4189 | {
|
---|
4190 | pNetwork->MacTab.fHostActive = RT_BOOL(pNetwork->fFlags & INTNET_OPEN_FLAGS_TRUNK_HOST_ENABLED);
|
---|
4191 | pNetwork->MacTab.fWireActive = RT_BOOL(pNetwork->fFlags & INTNET_OPEN_FLAGS_TRUNK_WIRE_ENABLED);
|
---|
4192 | }
|
---|
4193 | }
|
---|
4194 | }
|
---|
4195 | else
|
---|
4196 | {
|
---|
4197 | pNetwork->cActiveIFs--;
|
---|
4198 | if (pNetwork->cActiveIFs == 0)
|
---|
4199 | {
|
---|
4200 | pTrunk = pNetwork->MacTab.pTrunk;
|
---|
4201 | pNetwork->MacTab.fHostActive = false;
|
---|
4202 | pNetwork->MacTab.fWireActive = false;
|
---|
4203 | }
|
---|
4204 | }
|
---|
4205 | }
|
---|
4206 | }
|
---|
4207 |
|
---|
4208 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
4209 |
|
---|
4210 | /*
|
---|
4211 | * Tell the trunk if necessary.
|
---|
4212 | * The wait for !busy is for the Solaris streams trunk driver (mostly).
|
---|
4213 | */
|
---|
4214 | if (pTrunk && pTrunk->pIfPort)
|
---|
4215 | {
|
---|
4216 | if (!fActive)
|
---|
4217 | intnetR0BusyWait(pNetwork, &pTrunk->cBusy);
|
---|
4218 |
|
---|
4219 | pTrunk->pIfPort->pfnSetState(pTrunk->pIfPort, fActive ? INTNETTRUNKIFSTATE_ACTIVE : INTNETTRUNKIFSTATE_INACTIVE);
|
---|
4220 | }
|
---|
4221 |
|
---|
4222 | return VINF_SUCCESS;
|
---|
4223 | }
|
---|
4224 |
|
---|
4225 |
|
---|
4226 | /**
|
---|
4227 | * Sets the active property of an interface.
|
---|
4228 | *
|
---|
4229 | * @returns VBox status code.
|
---|
4230 | * @param hIf The interface handle.
|
---|
4231 | * @param pSession The caller's session.
|
---|
4232 | * @param fActive The new state.
|
---|
4233 | */
|
---|
4234 | INTNETR0DECL(int) IntNetR0IfSetActive(INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, bool fActive)
|
---|
4235 | {
|
---|
4236 | LogFlow(("IntNetR0IfSetActive: hIf=%RX32 fActive=%RTbool\n", hIf, fActive));
|
---|
4237 |
|
---|
4238 | /*
|
---|
4239 | * Validate & translate input.
|
---|
4240 | */
|
---|
4241 | PINTNET pIntNet = g_pIntNet;
|
---|
4242 | AssertPtrReturn(pIntNet, VERR_INVALID_PARAMETER);
|
---|
4243 | AssertReturn(pIntNet->u32Magic, VERR_INVALID_MAGIC);
|
---|
4244 |
|
---|
4245 | PINTNETIF pIf = (PINTNETIF)RTHandleTableLookupWithCtx(pIntNet->hHtIfs, hIf, pSession);
|
---|
4246 | if (!pIf)
|
---|
4247 | {
|
---|
4248 | Log(("IntNetR0IfSetActive: returns VERR_INVALID_HANDLE\n"));
|
---|
4249 | return VERR_INVALID_HANDLE;
|
---|
4250 | }
|
---|
4251 |
|
---|
4252 | /*
|
---|
4253 | * Hand it to the network since it might involve the trunk and things are
|
---|
4254 | * tricky there wrt to locking order.
|
---|
4255 | *
|
---|
4256 | * 1. We take the giant lock here. This makes sure nobody is re-enabling
|
---|
4257 | * the network while we're pausing it and vice versa. This also enables
|
---|
4258 | * us to wait for the network to become idle before telling the trunk.
|
---|
4259 | * (Important on Solaris.)
|
---|
4260 | *
|
---|
4261 | * 2. For paranoid reasons, we grab a busy reference to the calling
|
---|
4262 | * interface. This is totally unnecessary but should hurt (when done
|
---|
4263 | * after grabbing the giant lock).
|
---|
4264 | */
|
---|
4265 | int rc = RTSemMutexRequest(pIntNet->hMtxCreateOpenDestroy, RT_INDEFINITE_WAIT);
|
---|
4266 | if (RT_SUCCESS(rc))
|
---|
4267 | {
|
---|
4268 | intnetR0BusyIncIf(pIf);
|
---|
4269 |
|
---|
4270 | PINTNETNETWORK pNetwork = pIf->pNetwork;
|
---|
4271 | if (pNetwork)
|
---|
4272 | rc = intnetR0NetworkSetIfActive(pNetwork, pIf, fActive);
|
---|
4273 | else
|
---|
4274 | rc = VERR_WRONG_ORDER;
|
---|
4275 |
|
---|
4276 | intnetR0BusyDecIf(pIf);
|
---|
4277 | RTSemMutexRelease(pIntNet->hMtxCreateOpenDestroy);
|
---|
4278 | }
|
---|
4279 |
|
---|
4280 | intnetR0IfRelease(pIf, pSession);
|
---|
4281 | LogFlow(("IntNetR0IfSetActive: returns %Rrc\n", rc));
|
---|
4282 | return rc;
|
---|
4283 | }
|
---|
4284 |
|
---|
4285 |
|
---|
4286 | /**
|
---|
4287 | * VMMR0 request wrapper for IntNetR0IfSetActive.
|
---|
4288 | *
|
---|
4289 | * @returns see IntNetR0IfSetActive.
|
---|
4290 | * @param pIntNet The internal networking instance.
|
---|
4291 | * @param pSession The caller's session.
|
---|
4292 | * @param pReq The request packet.
|
---|
4293 | */
|
---|
4294 | INTNETR0DECL(int) IntNetR0IfSetActiveReq(PSUPDRVSESSION pSession, PINTNETIFSETACTIVEREQ pReq)
|
---|
4295 | {
|
---|
4296 | if (RT_UNLIKELY(pReq->Hdr.cbReq != sizeof(*pReq)))
|
---|
4297 | return VERR_INVALID_PARAMETER;
|
---|
4298 | return IntNetR0IfSetActive(pReq->hIf, pSession, pReq->fActive);
|
---|
4299 | }
|
---|
4300 |
|
---|
4301 |
|
---|
4302 | /**
|
---|
4303 | * Wait for the interface to get signaled.
|
---|
4304 | * The interface will be signaled when is put into the receive buffer.
|
---|
4305 | *
|
---|
4306 | * @returns VBox status code.
|
---|
4307 | * @param hIf The interface handle.
|
---|
4308 | * @param pSession The caller's session.
|
---|
4309 | * @param cMillies Number of milliseconds to wait. RT_INDEFINITE_WAIT should be
|
---|
4310 | * used if indefinite wait is desired.
|
---|
4311 | */
|
---|
4312 | INTNETR0DECL(int) IntNetR0IfWait(INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, uint32_t cMillies)
|
---|
4313 | {
|
---|
4314 | Log4(("IntNetR0IfWait: hIf=%RX32 cMillies=%u\n", hIf, cMillies));
|
---|
4315 |
|
---|
4316 | /*
|
---|
4317 | * Get and validate essential handles.
|
---|
4318 | */
|
---|
4319 | PINTNET pIntNet = g_pIntNet;
|
---|
4320 | AssertPtrReturn(pIntNet, VERR_INVALID_PARAMETER);
|
---|
4321 | AssertReturn(pIntNet->u32Magic, VERR_INVALID_MAGIC);
|
---|
4322 |
|
---|
4323 | PINTNETIF pIf = (PINTNETIF)RTHandleTableLookupWithCtx(pIntNet->hHtIfs, hIf, pSession);
|
---|
4324 | if (!pIf)
|
---|
4325 | {
|
---|
4326 | Log(("IntNetR0IfWait: returns VERR_INVALID_HANDLE\n"));
|
---|
4327 | return VERR_INVALID_HANDLE;
|
---|
4328 | }
|
---|
4329 |
|
---|
4330 | const INTNETIFHANDLE hIfSelf = pIf->hIf;
|
---|
4331 | const RTSEMEVENT hRecvEvent = pIf->hRecvEvent;
|
---|
4332 | const bool fDestroying = ASMAtomicReadBool(&pIf->fDestroying);
|
---|
4333 | if ( hIfSelf != hIf /* paranoia */
|
---|
4334 | || hRecvEvent == NIL_RTSEMEVENT
|
---|
4335 | || fDestroying
|
---|
4336 | )
|
---|
4337 | {
|
---|
4338 | Log(("IntNetR0IfWait: returns VERR_SEM_DESTROYED\n"));
|
---|
4339 | return VERR_SEM_DESTROYED;
|
---|
4340 | }
|
---|
4341 |
|
---|
4342 | /*
|
---|
4343 | * It is tempting to check if there is data to be read here,
|
---|
4344 | * but the problem with such an approach is that it will cause
|
---|
4345 | * one unnecessary supervisor->user->supervisor trip. There is
|
---|
4346 | * already a slight risk for such, so no need to increase it.
|
---|
4347 | */
|
---|
4348 |
|
---|
4349 | /*
|
---|
4350 | * Increment the number of waiters before starting the wait.
|
---|
4351 | * Upon wakeup we must assert reality, checking that we're not
|
---|
4352 | * already destroyed or in the process of being destroyed. This
|
---|
4353 | * code must be aligned with the waiting code in intnetR0IfDestruct.
|
---|
4354 | */
|
---|
4355 | ASMAtomicIncU32(&pIf->cSleepers);
|
---|
4356 | int rc = RTSemEventWaitNoResume(hRecvEvent, cMillies);
|
---|
4357 | if (pIf->hRecvEvent == hRecvEvent)
|
---|
4358 | {
|
---|
4359 | ASMAtomicDecU32(&pIf->cSleepers);
|
---|
4360 | if (!pIf->fDestroying)
|
---|
4361 | {
|
---|
4362 | if (intnetR0IfRelease(pIf, pSession))
|
---|
4363 | rc = VERR_SEM_DESTROYED;
|
---|
4364 | }
|
---|
4365 | else
|
---|
4366 | rc = VERR_SEM_DESTROYED;
|
---|
4367 | }
|
---|
4368 | else
|
---|
4369 | rc = VERR_SEM_DESTROYED;
|
---|
4370 | Log4(("IntNetR0IfWait: returns %Rrc\n", rc));
|
---|
4371 | return rc;
|
---|
4372 | }
|
---|
4373 |
|
---|
4374 |
|
---|
4375 | /**
|
---|
4376 | * VMMR0 request wrapper for IntNetR0IfWait.
|
---|
4377 | *
|
---|
4378 | * @returns see IntNetR0IfWait.
|
---|
4379 | * @param pSession The caller's session.
|
---|
4380 | * @param pReq The request packet.
|
---|
4381 | */
|
---|
4382 | INTNETR0DECL(int) IntNetR0IfWaitReq(PSUPDRVSESSION pSession, PINTNETIFWAITREQ pReq)
|
---|
4383 | {
|
---|
4384 | if (RT_UNLIKELY(pReq->Hdr.cbReq != sizeof(*pReq)))
|
---|
4385 | return VERR_INVALID_PARAMETER;
|
---|
4386 | return IntNetR0IfWait(pReq->hIf, pSession, pReq->cMillies);
|
---|
4387 | }
|
---|
4388 |
|
---|
4389 |
|
---|
4390 | /**
|
---|
4391 | * Wake up any threads waiting on the interface.
|
---|
4392 | *
|
---|
4393 | * @returns VBox status code.
|
---|
4394 | * @param hIf The interface handle.
|
---|
4395 | * @param pSession The caller's session.
|
---|
4396 | * @param fNoMoreWaits When set, no more waits are permitted.
|
---|
4397 | */
|
---|
4398 | INTNETR0DECL(int) IntNetR0IfAbortWait(INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, bool fNoMoreWaits)
|
---|
4399 | {
|
---|
4400 | Log4(("IntNetR0IfAbortWait: hIf=%RX32 fNoMoreWaits=%RTbool\n", hIf, fNoMoreWaits));
|
---|
4401 |
|
---|
4402 | /*
|
---|
4403 | * Get and validate essential handles.
|
---|
4404 | */
|
---|
4405 | PINTNET pIntNet = g_pIntNet;
|
---|
4406 | AssertPtrReturn(pIntNet, VERR_INVALID_PARAMETER);
|
---|
4407 | AssertReturn(pIntNet->u32Magic, VERR_INVALID_MAGIC);
|
---|
4408 |
|
---|
4409 | PINTNETIF pIf = (PINTNETIF)RTHandleTableLookupWithCtx(pIntNet->hHtIfs, hIf, pSession);
|
---|
4410 | if (!pIf)
|
---|
4411 | {
|
---|
4412 | Log(("IntNetR0IfAbortWait: returns VERR_INVALID_HANDLE\n"));
|
---|
4413 | return VERR_INVALID_HANDLE;
|
---|
4414 | }
|
---|
4415 |
|
---|
4416 | const INTNETIFHANDLE hIfSelf = pIf->hIf;
|
---|
4417 | const RTSEMEVENT hRecvEvent = pIf->hRecvEvent;
|
---|
4418 | const bool fDestroying = ASMAtomicReadBool(&pIf->fDestroying);
|
---|
4419 | if ( hIfSelf != hIf /* paranoia */
|
---|
4420 | || hRecvEvent == NIL_RTSEMEVENT
|
---|
4421 | || fDestroying
|
---|
4422 | )
|
---|
4423 | {
|
---|
4424 | Log(("IntNetR0IfAbortWait: returns VERR_SEM_DESTROYED\n"));
|
---|
4425 | return VERR_SEM_DESTROYED;
|
---|
4426 | }
|
---|
4427 |
|
---|
4428 | /*
|
---|
4429 | * Set fDestroying if requested to do so and then wake up all the sleeping
|
---|
4430 | * threads (usually just one). We leave the semaphore in the signalled
|
---|
4431 | * state so the next caller will return immediately.
|
---|
4432 | */
|
---|
4433 | if (fNoMoreWaits)
|
---|
4434 | ASMAtomicWriteBool(&pIf->fDestroying, true);
|
---|
4435 |
|
---|
4436 | uint32_t cSleepers = ASMAtomicReadU32(&pIf->cSleepers) + 1;
|
---|
4437 | while (cSleepers-- > 0)
|
---|
4438 | {
|
---|
4439 | int rc = RTSemEventSignal(pIf->hRecvEvent);
|
---|
4440 | AssertRC(rc);
|
---|
4441 | }
|
---|
4442 |
|
---|
4443 | Log4(("IntNetR0IfWait: returns %Rrc\n", VINF_SUCCESS));
|
---|
4444 | return VINF_SUCCESS;
|
---|
4445 | }
|
---|
4446 |
|
---|
4447 |
|
---|
4448 | /**
|
---|
4449 | * VMMR0 request wrapper for IntNetR0IfAbortWait.
|
---|
4450 | *
|
---|
4451 | * @returns see IntNetR0IfWait.
|
---|
4452 | * @param pSession The caller's session.
|
---|
4453 | * @param pReq The request packet.
|
---|
4454 | */
|
---|
4455 | INTNETR0DECL(int) IntNetR0IfAbortWaitReq(PSUPDRVSESSION pSession, PINTNETIFABORTWAITREQ pReq)
|
---|
4456 | {
|
---|
4457 | if (RT_UNLIKELY(pReq->Hdr.cbReq != sizeof(*pReq)))
|
---|
4458 | return VERR_INVALID_PARAMETER;
|
---|
4459 | return IntNetR0IfAbortWait(pReq->hIf, pSession, pReq->fNoMoreWaits);
|
---|
4460 | }
|
---|
4461 |
|
---|
4462 |
|
---|
4463 | /**
|
---|
4464 | * Close an interface.
|
---|
4465 | *
|
---|
4466 | * @returns VBox status code.
|
---|
4467 | * @param pIntNet The instance handle.
|
---|
4468 | * @param hIf The interface handle.
|
---|
4469 | * @param pSession The caller's session.
|
---|
4470 | */
|
---|
4471 | INTNETR0DECL(int) IntNetR0IfClose(INTNETIFHANDLE hIf, PSUPDRVSESSION pSession)
|
---|
4472 | {
|
---|
4473 | LogFlow(("IntNetR0IfClose: hIf=%RX32\n", hIf));
|
---|
4474 |
|
---|
4475 | /*
|
---|
4476 | * Validate and free the handle.
|
---|
4477 | */
|
---|
4478 | PINTNET pIntNet = g_pIntNet;
|
---|
4479 | AssertPtrReturn(pIntNet, VERR_INVALID_PARAMETER);
|
---|
4480 | AssertReturn(pIntNet->u32Magic, VERR_INVALID_MAGIC);
|
---|
4481 |
|
---|
4482 | PINTNETIF pIf = (PINTNETIF)RTHandleTableFreeWithCtx(pIntNet->hHtIfs, hIf, pSession);
|
---|
4483 | if (!pIf)
|
---|
4484 | return VERR_INVALID_HANDLE;
|
---|
4485 |
|
---|
4486 | /* Mark the handle as freed so intnetR0IfDestruct won't free it again. */
|
---|
4487 | ASMAtomicWriteU32(&pIf->hIf, INTNET_HANDLE_INVALID);
|
---|
4488 |
|
---|
4489 | /*
|
---|
4490 | * Signal the event semaphore to wake up any threads in IntNetR0IfWait
|
---|
4491 | * and give them a moment to get out and release the interface.
|
---|
4492 | */
|
---|
4493 | uint32_t i = pIf->cSleepers;
|
---|
4494 | while (i-- > 0)
|
---|
4495 | {
|
---|
4496 | RTSemEventSignal(pIf->hRecvEvent);
|
---|
4497 | RTThreadYield();
|
---|
4498 | }
|
---|
4499 | RTSemEventSignal(pIf->hRecvEvent);
|
---|
4500 |
|
---|
4501 | /*
|
---|
4502 | * Release the references to the interface object (handle + free lookup).
|
---|
4503 | */
|
---|
4504 | void *pvObj = pIf->pvObj;
|
---|
4505 | intnetR0IfRelease(pIf, pSession); /* (RTHandleTableFreeWithCtx) */
|
---|
4506 |
|
---|
4507 | int rc = SUPR0ObjRelease(pvObj, pSession);
|
---|
4508 | LogFlow(("IntNetR0IfClose: returns %Rrc\n", rc));
|
---|
4509 | return rc;
|
---|
4510 | }
|
---|
4511 |
|
---|
4512 |
|
---|
4513 | /**
|
---|
4514 | * VMMR0 request wrapper for IntNetR0IfCloseReq.
|
---|
4515 | *
|
---|
4516 | * @returns see IntNetR0IfClose.
|
---|
4517 | * @param pSession The caller's session.
|
---|
4518 | * @param pReq The request packet.
|
---|
4519 | */
|
---|
4520 | INTNETR0DECL(int) IntNetR0IfCloseReq(PSUPDRVSESSION pSession, PINTNETIFCLOSEREQ pReq)
|
---|
4521 | {
|
---|
4522 | if (RT_UNLIKELY(pReq->Hdr.cbReq != sizeof(*pReq)))
|
---|
4523 | return VERR_INVALID_PARAMETER;
|
---|
4524 | return IntNetR0IfClose(pReq->hIf, pSession);
|
---|
4525 | }
|
---|
4526 |
|
---|
4527 |
|
---|
4528 | /**
|
---|
4529 | * Interface destructor callback.
|
---|
4530 | * This is called for reference counted objectes when the count reaches 0.
|
---|
4531 | *
|
---|
4532 | * @param pvObj The object pointer.
|
---|
4533 | * @param pvUser1 Pointer to the interface.
|
---|
4534 | * @param pvUser2 Pointer to the INTNET instance data.
|
---|
4535 | */
|
---|
4536 | static DECLCALLBACK(void) intnetR0IfDestruct(void *pvObj, void *pvUser1, void *pvUser2)
|
---|
4537 | {
|
---|
4538 | PINTNETIF pIf = (PINTNETIF)pvUser1;
|
---|
4539 | PINTNET pIntNet = (PINTNET)pvUser2;
|
---|
4540 | Log(("intnetR0IfDestruct: pvObj=%p pIf=%p pIntNet=%p hIf=%RX32\n", pvObj, pIf, pIntNet, pIf->hIf));
|
---|
4541 |
|
---|
4542 | /*
|
---|
4543 | * We grab the INTNET create/open/destroy semaphore to make sure nobody is
|
---|
4544 | * adding or removing interface while we're in here. For paranoid reasons
|
---|
4545 | * we also mark the interface as destroyed here so any waiting threads can
|
---|
4546 | * take evasive action (theoretical case).
|
---|
4547 | */
|
---|
4548 | RTSemMutexRequest(pIntNet->hMtxCreateOpenDestroy, RT_INDEFINITE_WAIT);
|
---|
4549 | ASMAtomicWriteBool(&pIf->fDestroying, true);
|
---|
4550 |
|
---|
4551 | /*
|
---|
4552 | * Delete the interface handle so the object no longer can be used.
|
---|
4553 | * (Can happen if the client didn't close its session.)
|
---|
4554 | */
|
---|
4555 | INTNETIFHANDLE hIf = ASMAtomicXchgU32(&pIf->hIf, INTNET_HANDLE_INVALID);
|
---|
4556 | if (hIf != INTNET_HANDLE_INVALID)
|
---|
4557 | {
|
---|
4558 | void *pvObj2 = RTHandleTableFreeWithCtx(pIntNet->hHtIfs, hIf, pIf->pSession); NOREF(pvObj2);
|
---|
4559 | AssertMsg(pvObj2 == pIf, ("%p, %p, hIf=%RX32 pSession=%p\n", pvObj2, pIf, hIf, pIf->pSession));
|
---|
4560 | }
|
---|
4561 |
|
---|
4562 | /*
|
---|
4563 | * If we've got a network deactivate and detach ourselves from it. Because
|
---|
4564 | * of cleanup order we might have been orphaned by the network destructor.
|
---|
4565 | */
|
---|
4566 | PINTNETNETWORK pNetwork = pIf->pNetwork;
|
---|
4567 | if (pNetwork)
|
---|
4568 | {
|
---|
4569 | /* set inactive. */
|
---|
4570 | intnetR0NetworkSetIfActive(pNetwork, pIf, false /*fActive*/);
|
---|
4571 |
|
---|
4572 | /* remove ourselves from the switch table. */
|
---|
4573 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
4574 |
|
---|
4575 | uint32_t iIf = pNetwork->MacTab.cEntries;
|
---|
4576 | while (iIf-- > 0)
|
---|
4577 | if (pNetwork->MacTab.paEntries[iIf].pIf == pIf)
|
---|
4578 | {
|
---|
4579 | if (pNetwork->MacTab.paEntries[iIf].fPromiscuousEff)
|
---|
4580 | {
|
---|
4581 | pNetwork->MacTab.cPromiscuousEntries--;
|
---|
4582 | if (!pNetwork->MacTab.paEntries[iIf].fPromiscuousSeeTrunk)
|
---|
4583 | pNetwork->MacTab.cPromiscuousNoTrunkEntries--;
|
---|
4584 | }
|
---|
4585 | Assert(pNetwork->MacTab.cPromiscuousEntries < pNetwork->MacTab.cEntries);
|
---|
4586 | Assert(pNetwork->MacTab.cPromiscuousNoTrunkEntries < pNetwork->MacTab.cEntries);
|
---|
4587 |
|
---|
4588 | if (iIf + 1 < pNetwork->MacTab.cEntries)
|
---|
4589 | memmove(&pNetwork->MacTab.paEntries[iIf],
|
---|
4590 | &pNetwork->MacTab.paEntries[iIf + 1],
|
---|
4591 | (pNetwork->MacTab.cEntries - iIf - 1) * sizeof(pNetwork->MacTab.paEntries[0]));
|
---|
4592 | pNetwork->MacTab.cEntries--;
|
---|
4593 | break;
|
---|
4594 | }
|
---|
4595 |
|
---|
4596 | /* recalc the min flags. */
|
---|
4597 | if (pIf->fOpenFlags & INTNET_OPEN_FLAGS_REQUIRE_AS_RESTRICTIVE_POLICIES)
|
---|
4598 | {
|
---|
4599 | uint32_t fMinFlags = 0;
|
---|
4600 | iIf = pNetwork->MacTab.cEntries;
|
---|
4601 | while (iIf-- > 0)
|
---|
4602 | {
|
---|
4603 | PINTNETIF pIf2 = pNetwork->MacTab.paEntries[iIf].pIf;
|
---|
4604 | if ( pIf2 /* paranoia */
|
---|
4605 | && (pIf2->fOpenFlags & INTNET_OPEN_FLAGS_REQUIRE_AS_RESTRICTIVE_POLICIES))
|
---|
4606 | fMinFlags |= pIf2->fOpenFlags & INTNET_OPEN_FLAGS_STRICT_MASK;
|
---|
4607 | }
|
---|
4608 | pNetwork->fMinFlags = fMinFlags;
|
---|
4609 | }
|
---|
4610 |
|
---|
4611 | PINTNETTRUNKIF pTrunk = pNetwork->MacTab.pTrunk;
|
---|
4612 |
|
---|
4613 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
4614 |
|
---|
4615 | /* Notify the trunk about the interface being destroyed. */
|
---|
4616 | if (pTrunk && pTrunk->pIfPort)
|
---|
4617 | pTrunk->pIfPort->pfnDisconnectInterface(pTrunk->pIfPort, pIf->pvIfData);
|
---|
4618 |
|
---|
4619 | /* Wait for the interface to quiesce while we still can. */
|
---|
4620 | intnetR0BusyWait(pNetwork, &pIf->cBusy);
|
---|
4621 |
|
---|
4622 | /* Release our reference to the network. */
|
---|
4623 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
4624 | pIf->pNetwork = NULL;
|
---|
4625 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
4626 |
|
---|
4627 | SUPR0ObjRelease(pNetwork->pvObj, pIf->pSession);
|
---|
4628 | }
|
---|
4629 |
|
---|
4630 | RTSemMutexRelease(pIntNet->hMtxCreateOpenDestroy);
|
---|
4631 |
|
---|
4632 | /*
|
---|
4633 | * Wakeup anyone waiting on this interface.
|
---|
4634 | *
|
---|
4635 | * We *must* make sure they have woken up properly and realized
|
---|
4636 | * that the interface is no longer valid.
|
---|
4637 | */
|
---|
4638 | if (pIf->hRecvEvent != NIL_RTSEMEVENT)
|
---|
4639 | {
|
---|
4640 | RTSEMEVENT hRecvEvent = pIf->hRecvEvent;
|
---|
4641 | unsigned cMaxWait = 0x1000;
|
---|
4642 | while (pIf->cSleepers && cMaxWait-- > 0)
|
---|
4643 | {
|
---|
4644 | RTSemEventSignal(hRecvEvent);
|
---|
4645 | RTThreadYield();
|
---|
4646 | }
|
---|
4647 | if (pIf->cSleepers)
|
---|
4648 | {
|
---|
4649 | RTThreadSleep(1);
|
---|
4650 |
|
---|
4651 | cMaxWait = pIf->cSleepers;
|
---|
4652 | while (pIf->cSleepers && cMaxWait-- > 0)
|
---|
4653 | {
|
---|
4654 | RTSemEventSignal(hRecvEvent);
|
---|
4655 | RTThreadSleep(10);
|
---|
4656 | }
|
---|
4657 | }
|
---|
4658 |
|
---|
4659 | RTSemEventDestroy(hRecvEvent);
|
---|
4660 | pIf->hRecvEvent = NIL_RTSEMEVENT;
|
---|
4661 | }
|
---|
4662 |
|
---|
4663 | /*
|
---|
4664 | * Unmap user buffer.
|
---|
4665 | */
|
---|
4666 | if (pIf->pIntBuf != pIf->pIntBufDefault)
|
---|
4667 | {
|
---|
4668 | /** @todo user buffer */
|
---|
4669 | }
|
---|
4670 |
|
---|
4671 | /*
|
---|
4672 | * Unmap and Free the default buffer.
|
---|
4673 | */
|
---|
4674 | if (pIf->pIntBufDefault)
|
---|
4675 | {
|
---|
4676 | SUPR0MemFree(pIf->pSession, (RTHCUINTPTR)pIf->pIntBufDefault);
|
---|
4677 | pIf->pIntBufDefault = NULL;
|
---|
4678 | pIf->pIntBufDefaultR3 = 0;
|
---|
4679 | pIf->pIntBuf = NULL;
|
---|
4680 | pIf->pIntBufR3 = 0;
|
---|
4681 | }
|
---|
4682 |
|
---|
4683 | /*
|
---|
4684 | * Free remaining resources
|
---|
4685 | */
|
---|
4686 | RTSpinlockDestroy(pIf->hRecvInSpinlock);
|
---|
4687 | pIf->hRecvInSpinlock = NIL_RTSPINLOCK;
|
---|
4688 |
|
---|
4689 | RTMemFree(pIf->pDstTab);
|
---|
4690 | pIf->pDstTab = NULL;
|
---|
4691 |
|
---|
4692 | for (int i = kIntNetAddrType_Invalid + 1; i < kIntNetAddrType_End; i++)
|
---|
4693 | intnetR0IfAddrCacheDestroy(&pIf->aAddrCache[i]);
|
---|
4694 |
|
---|
4695 | pIf->pvObj = NULL;
|
---|
4696 | RTMemFree(pIf);
|
---|
4697 | }
|
---|
4698 |
|
---|
4699 |
|
---|
4700 | /**
|
---|
4701 | * Creates a new network interface.
|
---|
4702 | *
|
---|
4703 | * The call must have opened the network for the new interface and is
|
---|
4704 | * responsible for closing it on failure. On success it must leave the network
|
---|
4705 | * opened so the interface destructor can close it.
|
---|
4706 | *
|
---|
4707 | * @returns VBox status code.
|
---|
4708 | * @param pNetwork The network, referenced. The reference is consumed on
|
---|
4709 | * success.
|
---|
4710 | * @param pSession The session handle.
|
---|
4711 | * @param cbSend The size of the send buffer.
|
---|
4712 | * @param cbRecv The size of the receive buffer.
|
---|
4713 | * @param fFlags The open network flags.
|
---|
4714 | * @param phIf Where to store the interface handle.
|
---|
4715 | */
|
---|
4716 | static int intnetR0NetworkCreateIf(PINTNETNETWORK pNetwork, PSUPDRVSESSION pSession,
|
---|
4717 | unsigned cbSend, unsigned cbRecv, uint32_t fFlags,
|
---|
4718 | PINTNETIFHANDLE phIf)
|
---|
4719 | {
|
---|
4720 | LogFlow(("intnetR0NetworkCreateIf: pNetwork=%p pSession=%p cbSend=%u cbRecv=%u fFlags=%#x phIf=%p\n",
|
---|
4721 | pNetwork, pSession, cbSend, cbRecv, fFlags, phIf));
|
---|
4722 |
|
---|
4723 | /*
|
---|
4724 | * Assert input.
|
---|
4725 | */
|
---|
4726 | AssertPtr(pNetwork);
|
---|
4727 | AssertPtr(phIf);
|
---|
4728 |
|
---|
4729 | /*
|
---|
4730 | * Adjust the flags with defaults for the interface policies.
|
---|
4731 | * Note: Main restricts promiscuous mode per interface.
|
---|
4732 | */
|
---|
4733 | uint32_t const fDefFlags = INTNET_OPEN_FLAGS_IF_PROMISC_ALLOW
|
---|
4734 | | INTNET_OPEN_FLAGS_IF_PROMISC_SEE_TRUNK;
|
---|
4735 | for (uint32_t i = 0; i < RT_ELEMENTS(g_afIntNetOpenNetworkIfFlags); i++)
|
---|
4736 | if (!(fFlags & g_afIntNetOpenNetworkIfFlags[i].fPair))
|
---|
4737 | fFlags |= g_afIntNetOpenNetworkIfFlags[i].fPair & fDefFlags;
|
---|
4738 |
|
---|
4739 | /*
|
---|
4740 | * Make sure that all destination tables as well as the have space of
|
---|
4741 | */
|
---|
4742 | int rc = intnetR0NetworkEnsureTabSpace(pNetwork);
|
---|
4743 | if (RT_FAILURE(rc))
|
---|
4744 | return rc;
|
---|
4745 |
|
---|
4746 | /*
|
---|
4747 | * Allocate the interface and initialize it.
|
---|
4748 | */
|
---|
4749 | PINTNETIF pIf = (PINTNETIF)RTMemAllocZ(sizeof(*pIf));
|
---|
4750 | if (!pIf)
|
---|
4751 | return VERR_NO_MEMORY;
|
---|
4752 |
|
---|
4753 | memset(&pIf->MacAddr, 0xff, sizeof(pIf->MacAddr)); /* broadcast */
|
---|
4754 | //pIf->fMacSet = false;
|
---|
4755 | //pIf->fPromiscuousReal = false;
|
---|
4756 | //pIf->fActive = false;
|
---|
4757 | //pIf->fDestroying = false;
|
---|
4758 | pIf->fOpenFlags = fFlags;
|
---|
4759 | //pIf->cYields = 0;
|
---|
4760 | //pIf->pIntBuf = 0;
|
---|
4761 | //pIf->pIntBufR3 = NIL_RTR3PTR;
|
---|
4762 | //pIf->pIntBufDefault = 0;
|
---|
4763 | //pIf->pIntBufDefaultR3 = NIL_RTR3PTR;
|
---|
4764 | pIf->hRecvEvent = NIL_RTSEMEVENT;
|
---|
4765 | //pIf->cSleepers = 0;
|
---|
4766 | pIf->hIf = INTNET_HANDLE_INVALID;
|
---|
4767 | pIf->pNetwork = pNetwork;
|
---|
4768 | pIf->pSession = pSession;
|
---|
4769 | //pIf->pvObj = NULL;
|
---|
4770 | //pIf->aAddrCache = {0};
|
---|
4771 | pIf->hRecvInSpinlock = NIL_RTSPINLOCK;
|
---|
4772 | pIf->cBusy = 0;
|
---|
4773 | //pIf->pDstTab = NULL;
|
---|
4774 | //pIf->pvIfData = NULL;
|
---|
4775 |
|
---|
4776 | for (int i = kIntNetAddrType_Invalid + 1; i < kIntNetAddrType_End && RT_SUCCESS(rc); i++)
|
---|
4777 | rc = intnetR0IfAddrCacheInit(&pIf->aAddrCache[i], (INTNETADDRTYPE)i,
|
---|
4778 | !!(pNetwork->fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE));
|
---|
4779 | if (RT_SUCCESS(rc))
|
---|
4780 | rc = intnetR0AllocDstTab(pNetwork->MacTab.cEntriesAllocated, (PINTNETDSTTAB *)&pIf->pDstTab);
|
---|
4781 | if (RT_SUCCESS(rc))
|
---|
4782 | rc = RTSemEventCreate((PRTSEMEVENT)&pIf->hRecvEvent);
|
---|
4783 | if (RT_SUCCESS(rc))
|
---|
4784 | rc = RTSpinlockCreate(&pIf->hRecvInSpinlock, RTSPINLOCK_FLAGS_INTERRUPT_SAFE, "hRecvInSpinlock");
|
---|
4785 | if (RT_SUCCESS(rc))
|
---|
4786 | {
|
---|
4787 | /*
|
---|
4788 | * Create the default buffer.
|
---|
4789 | */
|
---|
4790 | /** @todo adjust with minimums and apply defaults here. */
|
---|
4791 | cbRecv = RT_ALIGN(RT_MAX(cbRecv, sizeof(INTNETHDR) * 4), INTNETRINGBUF_ALIGNMENT);
|
---|
4792 | cbSend = RT_ALIGN(RT_MAX(cbSend, sizeof(INTNETHDR) * 4), INTNETRINGBUF_ALIGNMENT);
|
---|
4793 | const unsigned cbBuf = RT_ALIGN(sizeof(*pIf->pIntBuf), INTNETRINGBUF_ALIGNMENT) + cbRecv + cbSend;
|
---|
4794 | rc = SUPR0MemAlloc(pIf->pSession, cbBuf, (PRTR0PTR)&pIf->pIntBufDefault, (PRTR3PTR)&pIf->pIntBufDefaultR3);
|
---|
4795 | if (RT_SUCCESS(rc))
|
---|
4796 | {
|
---|
4797 | ASMMemZero32(pIf->pIntBufDefault, cbBuf); /** @todo I thought I specified these buggers as clearing the memory... */
|
---|
4798 |
|
---|
4799 | pIf->pIntBuf = pIf->pIntBufDefault;
|
---|
4800 | pIf->pIntBufR3 = pIf->pIntBufDefaultR3;
|
---|
4801 | IntNetBufInit(pIf->pIntBuf, cbBuf, cbRecv, cbSend);
|
---|
4802 |
|
---|
4803 | /*
|
---|
4804 | * Register the interface with the session and create a handle for it.
|
---|
4805 | */
|
---|
4806 | pIf->pvObj = SUPR0ObjRegister(pSession, SUPDRVOBJTYPE_INTERNAL_NETWORK_INTERFACE,
|
---|
4807 | intnetR0IfDestruct, pIf, pNetwork->pIntNet);
|
---|
4808 | if (pIf->pvObj)
|
---|
4809 | {
|
---|
4810 | rc = RTHandleTableAllocWithCtx(pNetwork->pIntNet->hHtIfs, pIf, pSession, (uint32_t *)&pIf->hIf);
|
---|
4811 | if (RT_SUCCESS(rc))
|
---|
4812 | {
|
---|
4813 | /*
|
---|
4814 | * Finally add the interface to the network, consuming the
|
---|
4815 | * network reference of the caller.
|
---|
4816 | */
|
---|
4817 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
4818 |
|
---|
4819 | uint32_t iIf = pNetwork->MacTab.cEntries;
|
---|
4820 | Assert(iIf + 1 <= pNetwork->MacTab.cEntriesAllocated);
|
---|
4821 |
|
---|
4822 | pNetwork->MacTab.paEntries[iIf].MacAddr = pIf->MacAddr;
|
---|
4823 | pNetwork->MacTab.paEntries[iIf].fActive = false;
|
---|
4824 | pNetwork->MacTab.paEntries[iIf].fPromiscuousEff = false;
|
---|
4825 | pNetwork->MacTab.paEntries[iIf].fPromiscuousSeeTrunk = false;
|
---|
4826 | pNetwork->MacTab.paEntries[iIf].pIf = pIf;
|
---|
4827 |
|
---|
4828 | pNetwork->MacTab.cEntries = iIf + 1;
|
---|
4829 | pIf->pNetwork = pNetwork;
|
---|
4830 |
|
---|
4831 | /*
|
---|
4832 | * Grab a busy reference (paranoia) to the trunk before releasing
|
---|
4833 | * the spinlock and then notify it about the new interface.
|
---|
4834 | */
|
---|
4835 | PINTNETTRUNKIF pTrunk = pNetwork->MacTab.pTrunk;
|
---|
4836 | if (pTrunk)
|
---|
4837 | intnetR0BusyIncTrunk(pTrunk);
|
---|
4838 |
|
---|
4839 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
4840 |
|
---|
4841 | if (pTrunk)
|
---|
4842 | {
|
---|
4843 | Log(("intnetR0NetworkCreateIf: pfnConnectInterface hIf=%RX32\n", pIf->hIf));
|
---|
4844 | if (pTrunk->pIfPort)
|
---|
4845 | rc = pTrunk->pIfPort->pfnConnectInterface(pTrunk->pIfPort, pIf, &pIf->pvIfData);
|
---|
4846 | intnetR0BusyDecTrunk(pTrunk);
|
---|
4847 | }
|
---|
4848 | if (RT_SUCCESS(rc))
|
---|
4849 | {
|
---|
4850 | /*
|
---|
4851 | * We're good!
|
---|
4852 | */
|
---|
4853 | *phIf = pIf->hIf;
|
---|
4854 | Log(("intnetR0NetworkCreateIf: returns VINF_SUCCESS *phIf=%RX32 cbSend=%u cbRecv=%u cbBuf=%u\n",
|
---|
4855 | *phIf, pIf->pIntBufDefault->cbSend, pIf->pIntBufDefault->cbRecv, pIf->pIntBufDefault->cbBuf));
|
---|
4856 | return VINF_SUCCESS;
|
---|
4857 | }
|
---|
4858 | }
|
---|
4859 |
|
---|
4860 | SUPR0ObjRelease(pIf->pvObj, pSession);
|
---|
4861 | LogFlow(("intnetR0NetworkCreateIf: returns %Rrc\n", rc));
|
---|
4862 | return rc;
|
---|
4863 | }
|
---|
4864 |
|
---|
4865 | /* clean up */
|
---|
4866 | SUPR0MemFree(pIf->pSession, (RTHCUINTPTR)pIf->pIntBufDefault);
|
---|
4867 | pIf->pIntBufDefault = NULL;
|
---|
4868 | pIf->pIntBuf = NULL;
|
---|
4869 | }
|
---|
4870 | }
|
---|
4871 |
|
---|
4872 | RTSpinlockDestroy(pIf->hRecvInSpinlock);
|
---|
4873 | pIf->hRecvInSpinlock = NIL_RTSPINLOCK;
|
---|
4874 | RTSemEventDestroy(pIf->hRecvEvent);
|
---|
4875 | pIf->hRecvEvent = NIL_RTSEMEVENT;
|
---|
4876 | RTMemFree(pIf->pDstTab);
|
---|
4877 | for (int i = kIntNetAddrType_Invalid + 1; i < kIntNetAddrType_End; i++)
|
---|
4878 | intnetR0IfAddrCacheDestroy(&pIf->aAddrCache[i]);
|
---|
4879 | RTMemFree(pIf);
|
---|
4880 | LogFlow(("intnetR0NetworkCreateIf: returns %Rrc\n", rc));
|
---|
4881 | return rc;
|
---|
4882 | }
|
---|
4883 |
|
---|
4884 |
|
---|
4885 | /** @copydoc INTNETTRUNKSWPORT::pfnSetSGPhys */
|
---|
4886 | static DECLCALLBACK(bool) intnetR0TrunkIfPortSetSGPhys(PINTNETTRUNKSWPORT pSwitchPort, bool fEnable)
|
---|
4887 | {
|
---|
4888 | PINTNETTRUNKIF pThis = INTNET_SWITCHPORT_2_TRUNKIF(pSwitchPort);
|
---|
4889 | AssertMsgFailed(("Not implemented because it wasn't required on Darwin\n"));
|
---|
4890 | return ASMAtomicXchgBool(&pThis->fPhysSG, fEnable);
|
---|
4891 | }
|
---|
4892 |
|
---|
4893 |
|
---|
4894 | /** @copydoc INTNETTRUNKSWPORT::pfnReportMacAddress */
|
---|
4895 | static DECLCALLBACK(void) intnetR0TrunkIfPortReportMacAddress(PINTNETTRUNKSWPORT pSwitchPort, PCRTMAC pMacAddr)
|
---|
4896 | {
|
---|
4897 | PINTNETTRUNKIF pThis = INTNET_SWITCHPORT_2_TRUNKIF(pSwitchPort);
|
---|
4898 |
|
---|
4899 | /*
|
---|
4900 | * Get the network instance and grab the address spinlock before making
|
---|
4901 | * any changes.
|
---|
4902 | */
|
---|
4903 | intnetR0BusyIncTrunk(pThis);
|
---|
4904 | PINTNETNETWORK pNetwork = pThis->pNetwork;
|
---|
4905 | if (pNetwork)
|
---|
4906 | {
|
---|
4907 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
4908 |
|
---|
4909 | pNetwork->MacTab.HostMac = *pMacAddr;
|
---|
4910 | pThis->MacAddr = *pMacAddr;
|
---|
4911 |
|
---|
4912 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
4913 | }
|
---|
4914 | else
|
---|
4915 | pThis->MacAddr = *pMacAddr;
|
---|
4916 | intnetR0BusyDecTrunk(pThis);
|
---|
4917 | }
|
---|
4918 |
|
---|
4919 |
|
---|
4920 | /** @copydoc INTNETTRUNKSWPORT::pfnReportPromiscuousMode */
|
---|
4921 | static DECLCALLBACK(void) intnetR0TrunkIfPortReportPromiscuousMode(PINTNETTRUNKSWPORT pSwitchPort, bool fPromiscuous)
|
---|
4922 | {
|
---|
4923 | PINTNETTRUNKIF pThis = INTNET_SWITCHPORT_2_TRUNKIF(pSwitchPort);
|
---|
4924 |
|
---|
4925 | /*
|
---|
4926 | * Get the network instance and grab the address spinlock before making
|
---|
4927 | * any changes.
|
---|
4928 | */
|
---|
4929 | intnetR0BusyIncTrunk(pThis);
|
---|
4930 | PINTNETNETWORK pNetwork = pThis->pNetwork;
|
---|
4931 | if (pNetwork)
|
---|
4932 | {
|
---|
4933 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
4934 |
|
---|
4935 | pNetwork->MacTab.fHostPromiscuousReal = fPromiscuous
|
---|
4936 | || (pNetwork->fFlags & INTNET_OPEN_FLAGS_TRUNK_HOST_PROMISC_MODE);
|
---|
4937 | pNetwork->MacTab.fHostPromiscuousEff = pNetwork->MacTab.fHostPromiscuousReal
|
---|
4938 | && (pNetwork->fFlags & INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_HOST);
|
---|
4939 |
|
---|
4940 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
4941 | }
|
---|
4942 | intnetR0BusyDecTrunk(pThis);
|
---|
4943 | }
|
---|
4944 |
|
---|
4945 |
|
---|
4946 | /** @copydoc INTNETTRUNKSWPORT::pfnReportGsoCapabilities */
|
---|
4947 | static DECLCALLBACK(void) intnetR0TrunkIfPortReportGsoCapabilities(PINTNETTRUNKSWPORT pSwitchPort,
|
---|
4948 | uint32_t fGsoCapabilities, uint32_t fDst)
|
---|
4949 | {
|
---|
4950 | PINTNETTRUNKIF pThis = INTNET_SWITCHPORT_2_TRUNKIF(pSwitchPort);
|
---|
4951 |
|
---|
4952 | for (unsigned iBit = PDMNETWORKGSOTYPE_END; iBit < 32; iBit++)
|
---|
4953 | Assert(!(fGsoCapabilities & RT_BIT_32(iBit)));
|
---|
4954 | Assert(!(fDst & ~INTNETTRUNKDIR_VALID_MASK));
|
---|
4955 | Assert(fDst);
|
---|
4956 |
|
---|
4957 | if (fDst & INTNETTRUNKDIR_HOST)
|
---|
4958 | pThis->fHostGsoCapabilites = fGsoCapabilities;
|
---|
4959 |
|
---|
4960 | if (fDst & INTNETTRUNKDIR_WIRE)
|
---|
4961 | pThis->fWireGsoCapabilites = fGsoCapabilities;
|
---|
4962 | }
|
---|
4963 |
|
---|
4964 |
|
---|
4965 | /** @copydoc INTNETTRUNKSWPORT::pfnReportNoPreemptDsts */
|
---|
4966 | static DECLCALLBACK(void) intnetR0TrunkIfPortReportNoPreemptDsts(PINTNETTRUNKSWPORT pSwitchPort, uint32_t fNoPreemptDsts)
|
---|
4967 | {
|
---|
4968 | PINTNETTRUNKIF pThis = INTNET_SWITCHPORT_2_TRUNKIF(pSwitchPort);
|
---|
4969 | Assert(!(fNoPreemptDsts & ~INTNETTRUNKDIR_VALID_MASK));
|
---|
4970 |
|
---|
4971 | pThis->fNoPreemptDsts = fNoPreemptDsts;
|
---|
4972 | }
|
---|
4973 |
|
---|
4974 |
|
---|
4975 | /** @copydoc INTNETTRUNKSWPORT::pfnPreRecv */
|
---|
4976 | static DECLCALLBACK(INTNETSWDECISION) intnetR0TrunkIfPortPreRecv(PINTNETTRUNKSWPORT pSwitchPort,
|
---|
4977 | void const *pvSrc, size_t cbSrc, uint32_t fSrc)
|
---|
4978 | {
|
---|
4979 | PINTNETTRUNKIF pThis = INTNET_SWITCHPORT_2_TRUNKIF(pSwitchPort);
|
---|
4980 |
|
---|
4981 | /* assert some sanity */
|
---|
4982 | AssertPtr(pvSrc);
|
---|
4983 | AssertReturn(cbSrc >= 6, INTNETSWDECISION_BROADCAST);
|
---|
4984 | Assert(fSrc);
|
---|
4985 |
|
---|
4986 | /*
|
---|
4987 | * Mark the trunk as busy, make sure we've got a network and that there are
|
---|
4988 | * some active interfaces around.
|
---|
4989 | */
|
---|
4990 | INTNETSWDECISION enmSwDecision = INTNETSWDECISION_TRUNK;
|
---|
4991 | intnetR0BusyIncTrunk(pThis);
|
---|
4992 | PINTNETNETWORK pNetwork = pThis->pNetwork;
|
---|
4993 | if (RT_LIKELY( pNetwork
|
---|
4994 | && pNetwork->cActiveIFs > 0 ))
|
---|
4995 | {
|
---|
4996 | /*
|
---|
4997 | * Lazy bird! No pre-switching of multicast and shared-MAC-on-wire.
|
---|
4998 | */
|
---|
4999 | PCRTNETETHERHDR pEthHdr = (PCRTNETETHERHDR)pvSrc;
|
---|
5000 | if (intnetR0IsMacAddrMulticast(&pEthHdr->DstMac))
|
---|
5001 | enmSwDecision = INTNETSWDECISION_BROADCAST;
|
---|
5002 | else if (pNetwork->fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE)
|
---|
5003 | enmSwDecision = INTNETSWDECISION_BROADCAST;
|
---|
5004 | else
|
---|
5005 | enmSwDecision = intnetR0NetworkPreSwitchUnicast(pNetwork,
|
---|
5006 | fSrc,
|
---|
5007 | cbSrc >= 12 ? &pEthHdr->SrcMac : NULL,
|
---|
5008 | &pEthHdr->DstMac);
|
---|
5009 | }
|
---|
5010 |
|
---|
5011 | intnetR0BusyDecTrunk(pThis);
|
---|
5012 | return enmSwDecision;
|
---|
5013 | }
|
---|
5014 |
|
---|
5015 |
|
---|
5016 | /** @copydoc INTNETTRUNKSWPORT::pfnRecv */
|
---|
5017 | static DECLCALLBACK(bool) intnetR0TrunkIfPortRecv(PINTNETTRUNKSWPORT pSwitchPort, void *pvIf, PINTNETSG pSG, uint32_t fSrc)
|
---|
5018 | {
|
---|
5019 | PINTNETTRUNKIF pThis = INTNET_SWITCHPORT_2_TRUNKIF(pSwitchPort);
|
---|
5020 |
|
---|
5021 | /* assert some sanity */
|
---|
5022 | AssertPtr(pSG);
|
---|
5023 | Assert(fSrc);
|
---|
5024 | NOREF(pvIf); /* later */
|
---|
5025 |
|
---|
5026 | /*
|
---|
5027 | * Mark the trunk as busy, make sure we've got a network and that there are
|
---|
5028 | * some active interfaces around.
|
---|
5029 | */
|
---|
5030 | bool fRc = false /* don't drop it */;
|
---|
5031 | intnetR0BusyIncTrunk(pThis);
|
---|
5032 | PINTNETNETWORK pNetwork = pThis->pNetwork;
|
---|
5033 | if (RT_LIKELY( pNetwork
|
---|
5034 | && pNetwork->cActiveIFs > 0 ))
|
---|
5035 | {
|
---|
5036 | /*
|
---|
5037 | * Grab or allocate a destination table.
|
---|
5038 | */
|
---|
5039 | bool const fIntCtx = RTThreadPreemptIsEnabled(NIL_RTTHREAD) || RTThreadIsInInterrupt(NIL_RTTHREAD);
|
---|
5040 | unsigned iDstTab = 0;
|
---|
5041 | PINTNETDSTTAB pDstTab = NULL;
|
---|
5042 | RTSpinlockAcquire(pThis->hDstTabSpinlock);
|
---|
5043 | if (fIntCtx)
|
---|
5044 | {
|
---|
5045 | /* Interrupt or restricted context. */
|
---|
5046 | iDstTab = RTMpCpuIdToSetIndex(RTMpCpuId());
|
---|
5047 | iDstTab %= pThis->cIntDstTabs;
|
---|
5048 | pDstTab = pThis->apIntDstTabs[iDstTab];
|
---|
5049 | if (RT_LIKELY(pDstTab))
|
---|
5050 | pThis->apIntDstTabs[iDstTab] = NULL;
|
---|
5051 | else
|
---|
5052 | {
|
---|
5053 | iDstTab = pThis->cIntDstTabs;
|
---|
5054 | while (iDstTab-- > 0)
|
---|
5055 | {
|
---|
5056 | pDstTab = pThis->apIntDstTabs[iDstTab];
|
---|
5057 | if (pDstTab)
|
---|
5058 | {
|
---|
5059 | pThis->apIntDstTabs[iDstTab] = NULL;
|
---|
5060 | break;
|
---|
5061 | }
|
---|
5062 | }
|
---|
5063 | }
|
---|
5064 | RTSpinlockReleaseNoInts(pThis->hDstTabSpinlock);
|
---|
5065 | Assert(!pDstTab || iDstTab < pThis->cIntDstTabs);
|
---|
5066 | }
|
---|
5067 | else
|
---|
5068 | {
|
---|
5069 | /* Task context, fallback is to allocate a table. */
|
---|
5070 | AssertCompile(RT_ELEMENTS(pThis->apTaskDstTabs) == 2); /* for loop rollout */
|
---|
5071 | pDstTab = pThis->apIntDstTabs[iDstTab = 0];
|
---|
5072 | if (!pDstTab)
|
---|
5073 | pDstTab = pThis->apIntDstTabs[iDstTab = 1];
|
---|
5074 | if (pDstTab)
|
---|
5075 | {
|
---|
5076 | pThis->apIntDstTabs[iDstTab] = NULL;
|
---|
5077 | RTSpinlockReleaseNoInts(pThis->hDstTabSpinlock);
|
---|
5078 | Assert(iDstTab < RT_ELEMENTS(pThis->apTaskDstTabs));
|
---|
5079 | }
|
---|
5080 | else
|
---|
5081 | {
|
---|
5082 | RTSpinlockReleaseNoInts(pThis->hDstTabSpinlock);
|
---|
5083 | intnetR0AllocDstTab(pNetwork->MacTab.cEntriesAllocated, &pDstTab);
|
---|
5084 | iDstTab = 65535;
|
---|
5085 | }
|
---|
5086 | }
|
---|
5087 | if (RT_LIKELY(pDstTab))
|
---|
5088 | {
|
---|
5089 | /*
|
---|
5090 | * Finally, get down to business of sending the frame.
|
---|
5091 | */
|
---|
5092 | INTNETSWDECISION enmSwDecision = intnetR0NetworkSend(pNetwork, NULL, fSrc, pSG, pDstTab);
|
---|
5093 | AssertMsg(enmSwDecision != INTNETSWDECISION_BAD_CONTEXT, ("fSrc=%#x fTrunkDst=%#x hdr=%.14Rhxs\n", fSrc, pDstTab->fTrunkDst, pSG->aSegs[0].pv));
|
---|
5094 | if (enmSwDecision == INTNETSWDECISION_INTNET)
|
---|
5095 | fRc = true; /* drop it */
|
---|
5096 |
|
---|
5097 | /*
|
---|
5098 | * Free the destination table.
|
---|
5099 | */
|
---|
5100 | if (iDstTab == 65535)
|
---|
5101 | RTMemFree(pDstTab);
|
---|
5102 | else
|
---|
5103 | {
|
---|
5104 | RTSpinlockAcquire(pThis->hDstTabSpinlock);
|
---|
5105 | if (fIntCtx && !pThis->apIntDstTabs[iDstTab])
|
---|
5106 | pThis->apIntDstTabs[iDstTab] = pDstTab;
|
---|
5107 | else if (!fIntCtx && !pThis->apTaskDstTabs[iDstTab])
|
---|
5108 | pThis->apTaskDstTabs[iDstTab] = pDstTab;
|
---|
5109 | else
|
---|
5110 | {
|
---|
5111 | /* this shouldn't happen! */
|
---|
5112 | PINTNETDSTTAB *papDstTabs = fIntCtx ? &pThis->apIntDstTabs[0] : &pThis->apTaskDstTabs[0];
|
---|
5113 | iDstTab = fIntCtx ? pThis->cIntDstTabs : RT_ELEMENTS(pThis->apTaskDstTabs);
|
---|
5114 | while (iDstTab-- > 0)
|
---|
5115 | if (!papDstTabs[iDstTab])
|
---|
5116 | {
|
---|
5117 | papDstTabs[iDstTab] = pDstTab;
|
---|
5118 | break;
|
---|
5119 | }
|
---|
5120 | }
|
---|
5121 | RTSpinlockReleaseNoInts(pThis->hDstTabSpinlock);
|
---|
5122 | Assert(iDstTab < RT_MAX(RT_ELEMENTS(pThis->apTaskDstTabs), pThis->cIntDstTabs));
|
---|
5123 | }
|
---|
5124 | }
|
---|
5125 | }
|
---|
5126 |
|
---|
5127 | intnetR0BusyDecTrunk(pThis);
|
---|
5128 | return fRc;
|
---|
5129 | }
|
---|
5130 |
|
---|
5131 |
|
---|
5132 | /** @copydoc INTNETTRUNKSWPORT::pfnSGRetain */
|
---|
5133 | static DECLCALLBACK(void) intnetR0TrunkIfPortSGRetain(PINTNETTRUNKSWPORT pSwitchPort, PINTNETSG pSG)
|
---|
5134 | {
|
---|
5135 | PINTNETTRUNKIF pThis = INTNET_SWITCHPORT_2_TRUNKIF(pSwitchPort);
|
---|
5136 | PINTNETNETWORK pNetwork = pThis->pNetwork;
|
---|
5137 |
|
---|
5138 | /* assert some sanity */
|
---|
5139 | AssertPtrReturnVoid(pNetwork);
|
---|
5140 | AssertReturnVoid(pNetwork->hEvtBusyIf != NIL_RTSEMEVENT);
|
---|
5141 | AssertPtr(pSG);
|
---|
5142 | Assert(pSG->cUsers > 0 && pSG->cUsers < 256);
|
---|
5143 |
|
---|
5144 | /* do it. */
|
---|
5145 | ++pSG->cUsers;
|
---|
5146 | }
|
---|
5147 |
|
---|
5148 |
|
---|
5149 | /** @copydoc INTNETTRUNKSWPORT::pfnSGRelease */
|
---|
5150 | static DECLCALLBACK(void) intnetR0TrunkIfPortSGRelease(PINTNETTRUNKSWPORT pSwitchPort, PINTNETSG pSG)
|
---|
5151 | {
|
---|
5152 | PINTNETTRUNKIF pThis = INTNET_SWITCHPORT_2_TRUNKIF(pSwitchPort);
|
---|
5153 | PINTNETNETWORK pNetwork = pThis->pNetwork;
|
---|
5154 |
|
---|
5155 | /* assert some sanity */
|
---|
5156 | AssertPtrReturnVoid(pNetwork);
|
---|
5157 | AssertReturnVoid(pNetwork->hEvtBusyIf != NIL_RTSEMEVENT);
|
---|
5158 | AssertPtr(pSG);
|
---|
5159 | Assert(pSG->cUsers > 0);
|
---|
5160 |
|
---|
5161 | /*
|
---|
5162 | * Free it?
|
---|
5163 | */
|
---|
5164 | if (!--pSG->cUsers)
|
---|
5165 | {
|
---|
5166 | /** @todo later */
|
---|
5167 | }
|
---|
5168 | }
|
---|
5169 |
|
---|
5170 |
|
---|
5171 | /**
|
---|
5172 | * Shutdown the trunk interface.
|
---|
5173 | *
|
---|
5174 | * @param pThis The trunk.
|
---|
5175 | * @param pNetworks The network.
|
---|
5176 | *
|
---|
5177 | * @remarks The caller must hold the global lock.
|
---|
5178 | */
|
---|
5179 | static void intnetR0TrunkIfDestroy(PINTNETTRUNKIF pThis, PINTNETNETWORK pNetwork)
|
---|
5180 | {
|
---|
5181 | /* assert sanity */
|
---|
5182 | if (!pThis)
|
---|
5183 | return;
|
---|
5184 | AssertPtr(pThis);
|
---|
5185 | Assert(pThis->pNetwork == pNetwork);
|
---|
5186 | AssertPtrNull(pThis->pIfPort);
|
---|
5187 |
|
---|
5188 | /*
|
---|
5189 | * The interface has already been deactivated, we just to wait for
|
---|
5190 | * it to become idle before we can disconnect and release it.
|
---|
5191 | */
|
---|
5192 | PINTNETTRUNKIFPORT pIfPort = pThis->pIfPort;
|
---|
5193 | if (pIfPort)
|
---|
5194 | {
|
---|
5195 | /* unset it */
|
---|
5196 | pThis->pIfPort = NULL;
|
---|
5197 |
|
---|
5198 | /* wait in portions so we can complain ever now an then. */
|
---|
5199 | uint64_t StartTS = RTTimeSystemNanoTS();
|
---|
5200 | int rc = pIfPort->pfnWaitForIdle(pIfPort, 10*1000);
|
---|
5201 | if (RT_FAILURE(rc))
|
---|
5202 | {
|
---|
5203 | LogRel(("intnet: '%s' didn't become idle in %RU64 ns (%Rrc).\n",
|
---|
5204 | pNetwork->szName, RTTimeSystemNanoTS() - StartTS, rc));
|
---|
5205 | Assert(rc == VERR_TIMEOUT);
|
---|
5206 | while ( RT_FAILURE(rc)
|
---|
5207 | && RTTimeSystemNanoTS() - StartTS < UINT64_C(30000000000)) /* 30 sec */
|
---|
5208 | rc = pIfPort->pfnWaitForIdle(pIfPort, 10*1000);
|
---|
5209 | if (rc == VERR_TIMEOUT)
|
---|
5210 | {
|
---|
5211 | LogRel(("intnet: '%s' didn't become idle in %RU64 ns (%Rrc).\n",
|
---|
5212 | pNetwork->szName, RTTimeSystemNanoTS() - StartTS, rc));
|
---|
5213 | while ( rc == VERR_TIMEOUT
|
---|
5214 | && RTTimeSystemNanoTS() - StartTS < UINT64_C(360000000000)) /* 360 sec */
|
---|
5215 | rc = pIfPort->pfnWaitForIdle(pIfPort, 30*1000);
|
---|
5216 | if (RT_FAILURE(rc))
|
---|
5217 | {
|
---|
5218 | LogRel(("intnet: '%s' didn't become idle in %RU64 ns (%Rrc), giving up.\n",
|
---|
5219 | pNetwork->szName, RTTimeSystemNanoTS() - StartTS, rc));
|
---|
5220 | AssertRC(rc);
|
---|
5221 | }
|
---|
5222 | }
|
---|
5223 | }
|
---|
5224 |
|
---|
5225 | /* disconnect & release it. */
|
---|
5226 | pIfPort->pfnDisconnectAndRelease(pIfPort);
|
---|
5227 | }
|
---|
5228 |
|
---|
5229 | /*
|
---|
5230 | * Free up the resources.
|
---|
5231 | */
|
---|
5232 | pThis->pNetwork = NULL;
|
---|
5233 | RTSpinlockDestroy(pThis->hDstTabSpinlock);
|
---|
5234 | for (unsigned i = 0; i < RT_ELEMENTS(pThis->apTaskDstTabs); i++)
|
---|
5235 | {
|
---|
5236 | Assert(pThis->apTaskDstTabs[i]);
|
---|
5237 | RTMemFree(pThis->apTaskDstTabs[i]);
|
---|
5238 | pThis->apTaskDstTabs[i] = NULL;
|
---|
5239 | }
|
---|
5240 | for (unsigned i = 0; i < pThis->cIntDstTabs; i++)
|
---|
5241 | {
|
---|
5242 | Assert(pThis->apIntDstTabs[i]);
|
---|
5243 | RTMemFree(pThis->apIntDstTabs[i]);
|
---|
5244 | pThis->apIntDstTabs[i] = NULL;
|
---|
5245 | }
|
---|
5246 | RTMemFree(pThis);
|
---|
5247 | }
|
---|
5248 |
|
---|
5249 |
|
---|
5250 | /**
|
---|
5251 | * Creates the trunk connection (if any).
|
---|
5252 | *
|
---|
5253 | * @returns VBox status code.
|
---|
5254 | *
|
---|
5255 | * @param pNetwork The newly created network.
|
---|
5256 | * @param pSession The session handle.
|
---|
5257 | */
|
---|
5258 | static int intnetR0NetworkCreateTrunkIf(PINTNETNETWORK pNetwork, PSUPDRVSESSION pSession)
|
---|
5259 | {
|
---|
5260 | const char *pszName;
|
---|
5261 | switch (pNetwork->enmTrunkType)
|
---|
5262 | {
|
---|
5263 | /*
|
---|
5264 | * The 'None' case, simple.
|
---|
5265 | */
|
---|
5266 | case kIntNetTrunkType_None:
|
---|
5267 | case kIntNetTrunkType_WhateverNone:
|
---|
5268 | #ifdef VBOX_WITH_NAT_SERVICE
|
---|
5269 | /*
|
---|
5270 | * Well, here we don't want load anything special,
|
---|
5271 | * just communicate between processes via internal network.
|
---|
5272 | */
|
---|
5273 | case kIntNetTrunkType_SrvNat:
|
---|
5274 | #endif
|
---|
5275 | return VINF_SUCCESS;
|
---|
5276 |
|
---|
5277 | /* Can't happen, but makes GCC happy. */
|
---|
5278 | default:
|
---|
5279 | return VERR_NOT_IMPLEMENTED;
|
---|
5280 |
|
---|
5281 | /*
|
---|
5282 | * Translate enum to component factory name.
|
---|
5283 | */
|
---|
5284 | case kIntNetTrunkType_NetFlt:
|
---|
5285 | pszName = "VBoxNetFlt";
|
---|
5286 | break;
|
---|
5287 | case kIntNetTrunkType_NetAdp:
|
---|
5288 | #if defined(RT_OS_DARWIN) && !defined(VBOXNETADP_DO_NOT_USE_NETFLT)
|
---|
5289 | pszName = "VBoxNetFlt";
|
---|
5290 | #else /* VBOXNETADP_DO_NOT_USE_NETFLT */
|
---|
5291 | pszName = "VBoxNetAdp";
|
---|
5292 | #endif /* VBOXNETADP_DO_NOT_USE_NETFLT */
|
---|
5293 | break;
|
---|
5294 | #ifndef VBOX_WITH_NAT_SERVICE
|
---|
5295 | case kIntNetTrunkType_SrvNat:
|
---|
5296 | pszName = "VBoxSrvNat";
|
---|
5297 | break;
|
---|
5298 | #endif
|
---|
5299 | }
|
---|
5300 |
|
---|
5301 | /*
|
---|
5302 | * Allocate the trunk interface and associated destination tables.
|
---|
5303 | *
|
---|
5304 | * We take a very optimistic view on the parallelism of the host
|
---|
5305 | * network stack and NIC driver. So, we allocate one table for each
|
---|
5306 | * possible CPU to deal with interrupt time requests and one for task
|
---|
5307 | * time calls.
|
---|
5308 | */
|
---|
5309 | RTCPUID cCpus = RTMpGetCount(); Assert(cCpus > 0);
|
---|
5310 | PINTNETTRUNKIF pTrunk = (PINTNETTRUNKIF)RTMemAllocZ(RT_OFFSETOF(INTNETTRUNKIF, apIntDstTabs[cCpus]));
|
---|
5311 | if (!pTrunk)
|
---|
5312 | return VERR_NO_MEMORY;
|
---|
5313 |
|
---|
5314 | Assert(pNetwork->MacTab.cEntriesAllocated > 0);
|
---|
5315 | int rc = VINF_SUCCESS;
|
---|
5316 | pTrunk->cIntDstTabs = cCpus;
|
---|
5317 | for (unsigned i = 0; i < cCpus && RT_SUCCESS(rc); i++)
|
---|
5318 | rc = intnetR0AllocDstTab(pNetwork->MacTab.cEntriesAllocated, &pTrunk->apIntDstTabs[i]);
|
---|
5319 | for (unsigned i = 0; i < RT_ELEMENTS(pTrunk->apTaskDstTabs) && RT_SUCCESS(rc); i++)
|
---|
5320 | rc = intnetR0AllocDstTab(pNetwork->MacTab.cEntriesAllocated, &pTrunk->apTaskDstTabs[i]);
|
---|
5321 |
|
---|
5322 | if (RT_SUCCESS(rc))
|
---|
5323 | {
|
---|
5324 | pTrunk->SwitchPort.u32Version = INTNETTRUNKSWPORT_VERSION;
|
---|
5325 | pTrunk->SwitchPort.pfnPreRecv = intnetR0TrunkIfPortPreRecv;
|
---|
5326 | pTrunk->SwitchPort.pfnRecv = intnetR0TrunkIfPortRecv;
|
---|
5327 | pTrunk->SwitchPort.pfnSGRetain = intnetR0TrunkIfPortSGRetain;
|
---|
5328 | pTrunk->SwitchPort.pfnSGRelease = intnetR0TrunkIfPortSGRelease;
|
---|
5329 | pTrunk->SwitchPort.pfnSetSGPhys = intnetR0TrunkIfPortSetSGPhys;
|
---|
5330 | pTrunk->SwitchPort.pfnReportMacAddress = intnetR0TrunkIfPortReportMacAddress;
|
---|
5331 | pTrunk->SwitchPort.pfnReportPromiscuousMode = intnetR0TrunkIfPortReportPromiscuousMode;
|
---|
5332 | pTrunk->SwitchPort.pfnReportGsoCapabilities = intnetR0TrunkIfPortReportGsoCapabilities;
|
---|
5333 | pTrunk->SwitchPort.pfnReportNoPreemptDsts = intnetR0TrunkIfPortReportNoPreemptDsts;
|
---|
5334 | pTrunk->SwitchPort.u32VersionEnd = INTNETTRUNKSWPORT_VERSION;
|
---|
5335 | //pTrunk->pIfPort = NULL;
|
---|
5336 | pTrunk->pNetwork = pNetwork;
|
---|
5337 | pTrunk->MacAddr.au8[0] = 0xff;
|
---|
5338 | pTrunk->MacAddr.au8[1] = 0xff;
|
---|
5339 | pTrunk->MacAddr.au8[2] = 0xff;
|
---|
5340 | pTrunk->MacAddr.au8[3] = 0xff;
|
---|
5341 | pTrunk->MacAddr.au8[4] = 0xff;
|
---|
5342 | pTrunk->MacAddr.au8[5] = 0xff;
|
---|
5343 | //pTrunk->fPhysSG = false;
|
---|
5344 | //pTrunk->fUnused = false;
|
---|
5345 | //pTrunk->cBusy = 0;
|
---|
5346 | //pTrunk->fNoPreemptDsts = 0;
|
---|
5347 | //pTrunk->fWireGsoCapabilites = 0;
|
---|
5348 | //pTrunk->fHostGsoCapabilites = 0;
|
---|
5349 | //pTrunk->abGsoHdrs = {0};
|
---|
5350 | pTrunk->hDstTabSpinlock = NIL_RTSPINLOCK;
|
---|
5351 | //pTrunk->apTaskDstTabs = above;
|
---|
5352 | //pTrunk->cIntDstTabs = above;
|
---|
5353 | //pTrunk->apIntDstTabs = above;
|
---|
5354 |
|
---|
5355 | /*
|
---|
5356 | * Create the lock (we've NIL'ed the members above to simplify cleanup).
|
---|
5357 | */
|
---|
5358 | rc = RTSpinlockCreate(&pTrunk->hDstTabSpinlock, RTSPINLOCK_FLAGS_INTERRUPT_SAFE, "hDstTabSpinlock");
|
---|
5359 | if (RT_SUCCESS(rc))
|
---|
5360 | {
|
---|
5361 | /*
|
---|
5362 | * There are a couple of bits in MacTab as well pertaining to the
|
---|
5363 | * trunk. We have to set this before it's reported.
|
---|
5364 | *
|
---|
5365 | * Note! We don't need to lock the MacTab here - creation time.
|
---|
5366 | */
|
---|
5367 | pNetwork->MacTab.pTrunk = pTrunk;
|
---|
5368 | pNetwork->MacTab.HostMac = pTrunk->MacAddr;
|
---|
5369 | pNetwork->MacTab.fHostPromiscuousReal = false;
|
---|
5370 | pNetwork->MacTab.fHostPromiscuousEff = (pNetwork->fFlags & INTNET_OPEN_FLAGS_TRUNK_HOST_PROMISC_MODE)
|
---|
5371 | && (pNetwork->fFlags & INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_HOST);
|
---|
5372 | pNetwork->MacTab.fHostActive = false;
|
---|
5373 | pNetwork->MacTab.fWirePromiscuousReal = RT_BOOL(pNetwork->fFlags & INTNET_OPEN_FLAGS_TRUNK_WIRE_PROMISC_MODE);
|
---|
5374 | pNetwork->MacTab.fWirePromiscuousEff = pNetwork->MacTab.fWirePromiscuousReal
|
---|
5375 | && (pNetwork->fFlags & INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_WIRE);
|
---|
5376 | pNetwork->MacTab.fWireActive = false;
|
---|
5377 |
|
---|
5378 | #ifdef IN_RING0 /* (testcase is ring-3) */
|
---|
5379 | /*
|
---|
5380 | * Query the factory we want, then use it create and connect the trunk.
|
---|
5381 | */
|
---|
5382 | PINTNETTRUNKFACTORY pTrunkFactory = NULL;
|
---|
5383 | rc = SUPR0ComponentQueryFactory(pSession, pszName, INTNETTRUNKFACTORY_UUID_STR, (void **)&pTrunkFactory);
|
---|
5384 | if (RT_SUCCESS(rc))
|
---|
5385 | {
|
---|
5386 | rc = pTrunkFactory->pfnCreateAndConnect(pTrunkFactory,
|
---|
5387 | pNetwork->szTrunk,
|
---|
5388 | &pTrunk->SwitchPort,
|
---|
5389 | pNetwork->fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE
|
---|
5390 | ? INTNETTRUNKFACTORY_FLAG_NO_PROMISC
|
---|
5391 | : 0,
|
---|
5392 | &pTrunk->pIfPort);
|
---|
5393 | pTrunkFactory->pfnRelease(pTrunkFactory);
|
---|
5394 | if (RT_SUCCESS(rc))
|
---|
5395 | {
|
---|
5396 | Assert(pTrunk->pIfPort);
|
---|
5397 |
|
---|
5398 | Log(("intnetR0NetworkCreateTrunkIf: VINF_SUCCESS - pszName=%s szTrunk=%s%s Network=%s\n",
|
---|
5399 | pszName, pNetwork->szTrunk, pNetwork->fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE ? " shared-mac" : "", pNetwork->szName));
|
---|
5400 | return VINF_SUCCESS;
|
---|
5401 | }
|
---|
5402 | }
|
---|
5403 | #else /* IN_RING3 */
|
---|
5404 | NOREF(pSession);
|
---|
5405 | rc = VERR_NOT_SUPPORTED;
|
---|
5406 | #endif /* IN_RING3 */
|
---|
5407 |
|
---|
5408 | pNetwork->MacTab.pTrunk = NULL;
|
---|
5409 | }
|
---|
5410 |
|
---|
5411 | /* bail out and clean up. */
|
---|
5412 | RTSpinlockDestroy(pTrunk->hDstTabSpinlock);
|
---|
5413 | }
|
---|
5414 |
|
---|
5415 | for (unsigned i = 0; i < RT_ELEMENTS(pTrunk->apTaskDstTabs); i++)
|
---|
5416 | RTMemFree(pTrunk->apTaskDstTabs[i]);
|
---|
5417 | for (unsigned i = 0; i < pTrunk->cIntDstTabs; i++)
|
---|
5418 | RTMemFree(pTrunk->apIntDstTabs[i]);
|
---|
5419 | RTMemFree(pTrunk);
|
---|
5420 |
|
---|
5421 | LogFlow(("intnetR0NetworkCreateTrunkIf: %Rrc - pszName=%s szTrunk=%s Network=%s\n",
|
---|
5422 | rc, pszName, pNetwork->szTrunk, pNetwork->szName));
|
---|
5423 | return rc;
|
---|
5424 | }
|
---|
5425 |
|
---|
5426 |
|
---|
5427 |
|
---|
5428 | /**
|
---|
5429 | * Object destructor callback.
|
---|
5430 | * This is called for reference counted objectes when the count reaches 0.
|
---|
5431 | *
|
---|
5432 | * @param pvObj The object pointer.
|
---|
5433 | * @param pvUser1 Pointer to the network.
|
---|
5434 | * @param pvUser2 Pointer to the INTNET instance data.
|
---|
5435 | */
|
---|
5436 | static DECLCALLBACK(void) intnetR0NetworkDestruct(void *pvObj, void *pvUser1, void *pvUser2)
|
---|
5437 | {
|
---|
5438 | PINTNETNETWORK pNetwork = (PINTNETNETWORK)pvUser1;
|
---|
5439 | PINTNET pIntNet = (PINTNET)pvUser2;
|
---|
5440 | Log(("intnetR0NetworkDestruct: pvObj=%p pNetwork=%p pIntNet=%p %s\n", pvObj, pNetwork, pIntNet, pNetwork->szName));
|
---|
5441 | Assert(pNetwork->pIntNet == pIntNet);
|
---|
5442 |
|
---|
5443 | /* Take the big create/open/destroy sem. */
|
---|
5444 | RTSemMutexRequest(pIntNet->hMtxCreateOpenDestroy, RT_INDEFINITE_WAIT);
|
---|
5445 |
|
---|
5446 | /*
|
---|
5447 | * Tell the trunk, if present, that we're about to disconnect it and wish
|
---|
5448 | * no further calls from it.
|
---|
5449 | */
|
---|
5450 | PINTNETTRUNKIF pTrunk = pNetwork->MacTab.pTrunk;
|
---|
5451 | if (pTrunk)
|
---|
5452 | pTrunk->pIfPort->pfnSetState(pTrunk->pIfPort, INTNETTRUNKIFSTATE_DISCONNECTING);
|
---|
5453 |
|
---|
5454 | /*
|
---|
5455 | * Deactivate and orphan any remaining interfaces and wait for them to idle.
|
---|
5456 | *
|
---|
5457 | * Note! Normally there are no more interfaces at this point, however, when
|
---|
5458 | * supdrvCloseSession / supdrvCleanupSession release the objects the
|
---|
5459 | * order is undefined. So, it's quite possible that the network will
|
---|
5460 | * be dereference and destroyed before the interfaces.
|
---|
5461 | */
|
---|
5462 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
5463 |
|
---|
5464 | uint32_t iIf = pNetwork->MacTab.cEntries;
|
---|
5465 | while (iIf-- > 0)
|
---|
5466 | {
|
---|
5467 | pNetwork->MacTab.paEntries[iIf].fActive = false;
|
---|
5468 | pNetwork->MacTab.paEntries[iIf].pIf->fActive = false;
|
---|
5469 | }
|
---|
5470 |
|
---|
5471 | pNetwork->MacTab.fHostActive = false;
|
---|
5472 | pNetwork->MacTab.fWireActive = false;
|
---|
5473 |
|
---|
5474 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
5475 |
|
---|
5476 | /* Wait for all the interfaces to quiesce. (Interfaces cannot be
|
---|
5477 | removed / added since we're holding the big lock.) */
|
---|
5478 | if (pTrunk)
|
---|
5479 | intnetR0BusyWait(pNetwork, &pTrunk->cBusy);
|
---|
5480 |
|
---|
5481 | iIf = pNetwork->MacTab.cEntries;
|
---|
5482 | while (iIf-- > 0)
|
---|
5483 | intnetR0BusyWait(pNetwork, &pNetwork->MacTab.paEntries[iIf].pIf->cBusy);
|
---|
5484 |
|
---|
5485 | /* Orphan the interfaces (not trunk). Don't bother with calling
|
---|
5486 | pfnDisconnectInterface here since the networking is going away. */
|
---|
5487 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
5488 | while ((iIf = pNetwork->MacTab.cEntries) > 0)
|
---|
5489 | {
|
---|
5490 | PINTNETIF pIf = pNetwork->MacTab.paEntries[iIf - 1].pIf;
|
---|
5491 | RTSpinlockRelease(pNetwork->hAddrSpinlock);
|
---|
5492 |
|
---|
5493 | intnetR0BusyWait(pNetwork, &pIf->cBusy);
|
---|
5494 |
|
---|
5495 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
5496 | if ( iIf == pNetwork->MacTab.cEntries /* paranoia */
|
---|
5497 | && pIf->cBusy)
|
---|
5498 | {
|
---|
5499 | pIf->pNetwork = NULL;
|
---|
5500 | pNetwork->MacTab.cEntries--;
|
---|
5501 | }
|
---|
5502 | }
|
---|
5503 |
|
---|
5504 | /*
|
---|
5505 | * Zap the trunk pointer while we still own the spinlock, destroy the
|
---|
5506 | * trunk after we've left it. Note that this might take a while...
|
---|
5507 | */
|
---|
5508 | pNetwork->MacTab.pTrunk = NULL;
|
---|
5509 |
|
---|
5510 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
5511 |
|
---|
5512 | if (pTrunk)
|
---|
5513 | intnetR0TrunkIfDestroy(pTrunk, pNetwork);
|
---|
5514 |
|
---|
5515 | /*
|
---|
5516 | * Unlink the network.
|
---|
5517 | * Note that it needn't be in the list if we failed during creation.
|
---|
5518 | */
|
---|
5519 | PINTNETNETWORK pPrev = pIntNet->pNetworks;
|
---|
5520 | if (pPrev == pNetwork)
|
---|
5521 | pIntNet->pNetworks = pNetwork->pNext;
|
---|
5522 | else
|
---|
5523 | {
|
---|
5524 | for (; pPrev; pPrev = pPrev->pNext)
|
---|
5525 | if (pPrev->pNext == pNetwork)
|
---|
5526 | {
|
---|
5527 | pPrev->pNext = pNetwork->pNext;
|
---|
5528 | break;
|
---|
5529 | }
|
---|
5530 | }
|
---|
5531 | pNetwork->pNext = NULL;
|
---|
5532 | pNetwork->pvObj = NULL;
|
---|
5533 |
|
---|
5534 | /*
|
---|
5535 | * Free resources.
|
---|
5536 | */
|
---|
5537 | RTSemEventDestroy(pNetwork->hEvtBusyIf);
|
---|
5538 | pNetwork->hEvtBusyIf = NIL_RTSEMEVENT;
|
---|
5539 | RTSpinlockDestroy(pNetwork->hAddrSpinlock);
|
---|
5540 | pNetwork->hAddrSpinlock = NIL_RTSPINLOCK;
|
---|
5541 | RTMemFree(pNetwork->MacTab.paEntries);
|
---|
5542 | pNetwork->MacTab.paEntries = NULL;
|
---|
5543 | RTMemFree(pNetwork);
|
---|
5544 |
|
---|
5545 | /* Release the create/destroy sem. */
|
---|
5546 | RTSemMutexRelease(pIntNet->hMtxCreateOpenDestroy);
|
---|
5547 | }
|
---|
5548 |
|
---|
5549 |
|
---|
5550 | /**
|
---|
5551 | * Checks if the open network flags are compatible.
|
---|
5552 | *
|
---|
5553 | * @returns VBox status code.
|
---|
5554 | * @param pNetwork The network.
|
---|
5555 | * @param fFlags The open network flags.
|
---|
5556 | */
|
---|
5557 | static int intnetR0CheckOpenNetworkFlags(PINTNETNETWORK pNetwork, uint32_t fFlags)
|
---|
5558 | {
|
---|
5559 | uint32_t const fNetFlags = pNetwork->fFlags;
|
---|
5560 |
|
---|
5561 | if ( (fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE)
|
---|
5562 | ^ (fNetFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE))
|
---|
5563 | return VERR_INTNET_INCOMPATIBLE_FLAGS;
|
---|
5564 |
|
---|
5565 | if (fFlags & INTNET_OPEN_FLAGS_REQUIRE_EXACT)
|
---|
5566 | {
|
---|
5567 | for (uint32_t i = 0; i < RT_ELEMENTS(g_afIntNetOpenNetworkNetFlags); i++)
|
---|
5568 | if ( (fFlags & g_afIntNetOpenNetworkNetFlags[i].fPair)
|
---|
5569 | && (fFlags & g_afIntNetOpenNetworkNetFlags[i].fPair)
|
---|
5570 | != (fNetFlags & g_afIntNetOpenNetworkNetFlags[i].fPair) )
|
---|
5571 | return VERR_INTNET_INCOMPATIBLE_FLAGS;
|
---|
5572 | }
|
---|
5573 |
|
---|
5574 | if (fFlags & INTNET_OPEN_FLAGS_REQUIRE_AS_RESTRICTIVE_POLICIES)
|
---|
5575 | {
|
---|
5576 | for (uint32_t i = 0; i < RT_ELEMENTS(g_afIntNetOpenNetworkNetFlags); i++)
|
---|
5577 | if ( (fFlags & g_afIntNetOpenNetworkNetFlags[i].fRestrictive)
|
---|
5578 | && !(fNetFlags & g_afIntNetOpenNetworkNetFlags[i].fRestrictive)
|
---|
5579 | && (fNetFlags & g_afIntNetOpenNetworkNetFlags[i].fFixed) )
|
---|
5580 | return VERR_INTNET_INCOMPATIBLE_FLAGS;
|
---|
5581 | }
|
---|
5582 |
|
---|
5583 | return VINF_SUCCESS;
|
---|
5584 | }
|
---|
5585 |
|
---|
5586 |
|
---|
5587 | /**
|
---|
5588 | * Adapts flag changes on network opening.
|
---|
5589 | *
|
---|
5590 | * @returns VBox status code.
|
---|
5591 | * @param pNetwork The network.
|
---|
5592 | * @param fFlags The open network flags.
|
---|
5593 | */
|
---|
5594 | static int intnetR0AdaptOpenNetworkFlags(PINTNETNETWORK pNetwork, uint32_t fFlags)
|
---|
5595 | {
|
---|
5596 | /*
|
---|
5597 | * Upgrade the minimum policy flags.
|
---|
5598 | */
|
---|
5599 | uint32_t fNetMinFlags = pNetwork->fMinFlags;
|
---|
5600 | Assert(!(fNetMinFlags & INTNET_OPEN_FLAGS_RELAXED_MASK));
|
---|
5601 | if (fFlags & INTNET_OPEN_FLAGS_REQUIRE_AS_RESTRICTIVE_POLICIES)
|
---|
5602 | {
|
---|
5603 | fNetMinFlags |= fFlags & INTNET_OPEN_FLAGS_STRICT_MASK;
|
---|
5604 | if (fNetMinFlags != pNetwork->fMinFlags)
|
---|
5605 | {
|
---|
5606 | LogRel(("INTNET: %s - min flags changed %#x -> %#x\n", pNetwork->szName, pNetwork->fMinFlags, fNetMinFlags));
|
---|
5607 | pNetwork->fMinFlags = fNetMinFlags;
|
---|
5608 | }
|
---|
5609 | }
|
---|
5610 |
|
---|
5611 | /*
|
---|
5612 | * Calculate the new network flags.
|
---|
5613 | * (Depends on fNetMinFlags being recalculated first.)
|
---|
5614 | */
|
---|
5615 | uint32_t fNetFlags = pNetwork->fFlags;
|
---|
5616 |
|
---|
5617 | for (uint32_t i = 0; i < RT_ELEMENTS(g_afIntNetOpenNetworkNetFlags); i++)
|
---|
5618 | {
|
---|
5619 | Assert(fNetFlags & g_afIntNetOpenNetworkNetFlags[i].fPair);
|
---|
5620 | Assert(!(fNetMinFlags & g_afIntNetOpenNetworkNetFlags[i].fRelaxed));
|
---|
5621 |
|
---|
5622 | if (!(fFlags & g_afIntNetOpenNetworkNetFlags[i].fPair))
|
---|
5623 | continue;
|
---|
5624 | if (fNetFlags & g_afIntNetOpenNetworkNetFlags[i].fFixed)
|
---|
5625 | continue;
|
---|
5626 |
|
---|
5627 | if ( (fNetMinFlags & g_afIntNetOpenNetworkNetFlags[i].fRestrictive)
|
---|
5628 | || (fFlags & g_afIntNetOpenNetworkNetFlags[i].fRestrictive) )
|
---|
5629 | {
|
---|
5630 | fNetFlags &= ~g_afIntNetOpenNetworkNetFlags[i].fPair;
|
---|
5631 | fNetFlags |= g_afIntNetOpenNetworkNetFlags[i].fRestrictive;
|
---|
5632 | }
|
---|
5633 | else if (!(fFlags & INTNET_OPEN_FLAGS_REQUIRE_AS_RESTRICTIVE_POLICIES))
|
---|
5634 | {
|
---|
5635 | fNetFlags &= ~g_afIntNetOpenNetworkNetFlags[i].fPair;
|
---|
5636 | fNetFlags |= g_afIntNetOpenNetworkNetFlags[i].fRelaxed;
|
---|
5637 | }
|
---|
5638 | }
|
---|
5639 |
|
---|
5640 | for (uint32_t i = 0; i < RT_ELEMENTS(g_afIntNetOpenNetworkNetFlags); i++)
|
---|
5641 | {
|
---|
5642 | Assert(fNetFlags & g_afIntNetOpenNetworkNetFlags[i].fPair);
|
---|
5643 | fNetFlags |= fFlags & g_afIntNetOpenNetworkNetFlags[i].fFixed;
|
---|
5644 | }
|
---|
5645 |
|
---|
5646 | /*
|
---|
5647 | * Apply the flags if they changed.
|
---|
5648 | */
|
---|
5649 | uint32_t const fOldNetFlags = pNetwork->fFlags;
|
---|
5650 | if (fOldNetFlags != fNetFlags)
|
---|
5651 | {
|
---|
5652 | LogRel(("INTNET: %s - flags changed %#x -> %#x\n", pNetwork->szName, fOldNetFlags, fNetFlags));
|
---|
5653 |
|
---|
5654 | RTSpinlockAcquire(pNetwork->hAddrSpinlock);
|
---|
5655 |
|
---|
5656 | pNetwork->fFlags = fNetFlags;
|
---|
5657 |
|
---|
5658 | /* Recalculate some derived switcher variables. */
|
---|
5659 | bool fActiveTrunk = pNetwork->MacTab.pTrunk
|
---|
5660 | && pNetwork->cActiveIFs > 0;
|
---|
5661 | pNetwork->MacTab.fHostActive = fActiveTrunk
|
---|
5662 | && (fNetFlags & INTNET_OPEN_FLAGS_TRUNK_HOST_ENABLED);
|
---|
5663 | pNetwork->MacTab.fHostPromiscuousEff = ( pNetwork->MacTab.fHostPromiscuousReal
|
---|
5664 | || (fNetFlags & INTNET_OPEN_FLAGS_TRUNK_HOST_PROMISC_MODE))
|
---|
5665 | && (fNetFlags & INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_HOST);
|
---|
5666 |
|
---|
5667 | pNetwork->MacTab.fWireActive = fActiveTrunk
|
---|
5668 | && (fNetFlags & INTNET_OPEN_FLAGS_TRUNK_HOST_ENABLED);
|
---|
5669 | pNetwork->MacTab.fWirePromiscuousReal= RT_BOOL(fNetFlags & INTNET_OPEN_FLAGS_TRUNK_WIRE_PROMISC_MODE);
|
---|
5670 | pNetwork->MacTab.fWirePromiscuousEff = pNetwork->MacTab.fWirePromiscuousReal
|
---|
5671 | && (fNetFlags & INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_WIRE);
|
---|
5672 |
|
---|
5673 | if ((fOldNetFlags ^ fNetFlags) & INTNET_OPEN_FLAGS_PROMISC_ALLOW_CLIENTS)
|
---|
5674 | {
|
---|
5675 | pNetwork->MacTab.cPromiscuousEntries = 0;
|
---|
5676 | pNetwork->MacTab.cPromiscuousNoTrunkEntries = 0;
|
---|
5677 |
|
---|
5678 | uint32_t iIf = pNetwork->MacTab.cEntries;
|
---|
5679 | while (iIf-- > 0)
|
---|
5680 | {
|
---|
5681 | PINTNETMACTABENTRY pEntry = &pNetwork->MacTab.paEntries[iIf];
|
---|
5682 | PINTNETIF pIf2 = pEntry->pIf;
|
---|
5683 | if ( pIf2 /* paranoia */
|
---|
5684 | && pIf2->fPromiscuousReal)
|
---|
5685 | {
|
---|
5686 | bool fPromiscuousEff = (fNetFlags & INTNET_OPEN_FLAGS_PROMISC_ALLOW_CLIENTS)
|
---|
5687 | && (pIf2->fOpenFlags & INTNET_OPEN_FLAGS_IF_PROMISC_ALLOW);
|
---|
5688 | pEntry->fPromiscuousEff = fPromiscuousEff;
|
---|
5689 | pEntry->fPromiscuousSeeTrunk = fPromiscuousEff
|
---|
5690 | && (pIf2->fOpenFlags & INTNET_OPEN_FLAGS_IF_PROMISC_SEE_TRUNK);
|
---|
5691 |
|
---|
5692 | if (pEntry->fPromiscuousEff)
|
---|
5693 | {
|
---|
5694 | pNetwork->MacTab.cPromiscuousEntries++;
|
---|
5695 | if (!pEntry->fPromiscuousSeeTrunk)
|
---|
5696 | pNetwork->MacTab.cPromiscuousNoTrunkEntries++;
|
---|
5697 | }
|
---|
5698 | }
|
---|
5699 | }
|
---|
5700 | }
|
---|
5701 |
|
---|
5702 | RTSpinlockReleaseNoInts(pNetwork->hAddrSpinlock);
|
---|
5703 | }
|
---|
5704 |
|
---|
5705 | return VINF_SUCCESS;
|
---|
5706 | }
|
---|
5707 |
|
---|
5708 |
|
---|
5709 | /**
|
---|
5710 | * Opens an existing network.
|
---|
5711 | *
|
---|
5712 | * The call must own the INTNET::hMtxCreateOpenDestroy.
|
---|
5713 | *
|
---|
5714 | * @returns VBox status code.
|
---|
5715 | * @param pIntNet The instance data.
|
---|
5716 | * @param pSession The current session.
|
---|
5717 | * @param pszNetwork The network name. This has a valid length.
|
---|
5718 | * @param enmTrunkType The trunk type.
|
---|
5719 | * @param pszTrunk The trunk name. Its meaning is specific to the type.
|
---|
5720 | * @param fFlags Flags, see INTNET_OPEN_FLAGS_*.
|
---|
5721 | * @param ppNetwork Where to store the pointer to the network on success.
|
---|
5722 | */
|
---|
5723 | static int intnetR0OpenNetwork(PINTNET pIntNet, PSUPDRVSESSION pSession, const char *pszNetwork, INTNETTRUNKTYPE enmTrunkType,
|
---|
5724 | const char *pszTrunk, uint32_t fFlags, PINTNETNETWORK *ppNetwork)
|
---|
5725 | {
|
---|
5726 | LogFlow(("intnetR0OpenNetwork: pIntNet=%p pSession=%p pszNetwork=%p:{%s} enmTrunkType=%d pszTrunk=%p:{%s} fFlags=%#x ppNetwork=%p\n",
|
---|
5727 | pIntNet, pSession, pszNetwork, pszNetwork, enmTrunkType, pszTrunk, pszTrunk, fFlags, ppNetwork));
|
---|
5728 |
|
---|
5729 | /* just pro forma validation, the caller is internal. */
|
---|
5730 | AssertPtr(pIntNet);
|
---|
5731 | AssertPtr(pSession);
|
---|
5732 | AssertPtr(pszNetwork);
|
---|
5733 | Assert(enmTrunkType > kIntNetTrunkType_Invalid && enmTrunkType < kIntNetTrunkType_End);
|
---|
5734 | AssertPtr(pszTrunk);
|
---|
5735 | Assert(!(fFlags & ~INTNET_OPEN_FLAGS_MASK));
|
---|
5736 | AssertPtr(ppNetwork);
|
---|
5737 | *ppNetwork = NULL;
|
---|
5738 |
|
---|
5739 | /*
|
---|
5740 | * Search networks by name.
|
---|
5741 | */
|
---|
5742 | PINTNETNETWORK pCur;
|
---|
5743 | uint8_t cchName = (uint8_t)strlen(pszNetwork);
|
---|
5744 | Assert(cchName && cchName < sizeof(pCur->szName)); /* caller ensures this */
|
---|
5745 |
|
---|
5746 | pCur = pIntNet->pNetworks;
|
---|
5747 | while (pCur)
|
---|
5748 | {
|
---|
5749 | if ( pCur->cchName == cchName
|
---|
5750 | && !memcmp(pCur->szName, pszNetwork, cchName))
|
---|
5751 | {
|
---|
5752 | /*
|
---|
5753 | * Found the network, now check that we have the same ideas
|
---|
5754 | * about the trunk setup and security.
|
---|
5755 | */
|
---|
5756 | int rc;
|
---|
5757 | if ( enmTrunkType == kIntNetTrunkType_WhateverNone
|
---|
5758 | #ifdef VBOX_WITH_NAT_SERVICE
|
---|
5759 | || enmTrunkType == kIntNetTrunkType_SrvNat /* @todo: what does it mean */
|
---|
5760 | #endif
|
---|
5761 | || ( pCur->enmTrunkType == enmTrunkType
|
---|
5762 | && !strcmp(pCur->szTrunk, pszTrunk)))
|
---|
5763 | {
|
---|
5764 | rc = intnetR0CheckOpenNetworkFlags(pCur, fFlags);
|
---|
5765 | if (RT_SUCCESS(rc))
|
---|
5766 | {
|
---|
5767 | /*
|
---|
5768 | * Increment the reference and check that the session
|
---|
5769 | * can access this network.
|
---|
5770 | */
|
---|
5771 | rc = SUPR0ObjAddRef(pCur->pvObj, pSession);
|
---|
5772 | if (RT_SUCCESS(rc))
|
---|
5773 | {
|
---|
5774 | if (pCur->fFlags & INTNET_OPEN_FLAGS_ACCESS_RESTRICTED)
|
---|
5775 | rc = SUPR0ObjVerifyAccess(pCur->pvObj, pSession, pCur->szName);
|
---|
5776 | if (RT_SUCCESS(rc))
|
---|
5777 | *ppNetwork = pCur;
|
---|
5778 | else
|
---|
5779 | SUPR0ObjRelease(pCur->pvObj, pSession);
|
---|
5780 | }
|
---|
5781 | else if (rc == VERR_WRONG_ORDER)
|
---|
5782 | rc = VERR_NOT_FOUND; /* destruction race, pretend the other isn't there. */
|
---|
5783 | }
|
---|
5784 | }
|
---|
5785 | else
|
---|
5786 | {
|
---|
5787 | rc = VERR_INTNET_INCOMPATIBLE_TRUNK;
|
---|
5788 | LogRel(("intnetR0OpenNetwork failed. rc=%Rrc pCur->szTrunk=%s pszTrunk=%s pCur->enmTrunkType=%d enmTrunkType=%d\n",
|
---|
5789 | rc, pCur->szTrunk, pszTrunk, pCur->enmTrunkType, enmTrunkType));
|
---|
5790 | }
|
---|
5791 |
|
---|
5792 | LogFlow(("intnetR0OpenNetwork: returns %Rrc *ppNetwork=%p\n", rc, *ppNetwork));
|
---|
5793 | return rc;
|
---|
5794 | }
|
---|
5795 |
|
---|
5796 | pCur = pCur->pNext;
|
---|
5797 | }
|
---|
5798 |
|
---|
5799 | LogFlow(("intnetR0OpenNetwork: returns VERR_NOT_FOUND\n"));
|
---|
5800 | return VERR_NOT_FOUND;
|
---|
5801 | }
|
---|
5802 |
|
---|
5803 |
|
---|
5804 | /**
|
---|
5805 | * Creates a new network.
|
---|
5806 | *
|
---|
5807 | * The call must own the INTNET::hMtxCreateOpenDestroy and has already attempted
|
---|
5808 | * opening the network and found it to be non-existing.
|
---|
5809 | *
|
---|
5810 | * @returns VBox status code.
|
---|
5811 | * @param pIntNet The instance data.
|
---|
5812 | * @param pSession The session handle.
|
---|
5813 | * @param pszNetwork The name of the network. This must be at least one character long and no longer
|
---|
5814 | * than the INTNETNETWORK::szName.
|
---|
5815 | * @param enmTrunkType The trunk type.
|
---|
5816 | * @param pszTrunk The trunk name. Its meaning is specific to the type.
|
---|
5817 | * @param fFlags Flags, see INTNET_OPEN_FLAGS_*.
|
---|
5818 | * @param ppNetwork Where to store the network. In the case of failure
|
---|
5819 | * whatever is returned here should be dereferenced
|
---|
5820 | * outside the INTNET::hMtxCreateOpenDestroy.
|
---|
5821 | */
|
---|
5822 | static int intnetR0CreateNetwork(PINTNET pIntNet, PSUPDRVSESSION pSession, const char *pszNetwork, INTNETTRUNKTYPE enmTrunkType,
|
---|
5823 | const char *pszTrunk, uint32_t fFlags, PINTNETNETWORK *ppNetwork)
|
---|
5824 | {
|
---|
5825 | LogFlow(("intnetR0CreateNetwork: pIntNet=%p pSession=%p pszNetwork=%p:{%s} enmTrunkType=%d pszTrunk=%p:{%s} fFlags=%#x ppNetwork=%p\n",
|
---|
5826 | pIntNet, pSession, pszNetwork, pszNetwork, enmTrunkType, pszTrunk, pszTrunk, fFlags, ppNetwork));
|
---|
5827 |
|
---|
5828 | /* just pro forma validation, the caller is internal. */
|
---|
5829 | AssertPtr(pIntNet);
|
---|
5830 | AssertPtr(pSession);
|
---|
5831 | AssertPtr(pszNetwork);
|
---|
5832 | Assert(enmTrunkType > kIntNetTrunkType_Invalid && enmTrunkType < kIntNetTrunkType_End);
|
---|
5833 | AssertPtr(pszTrunk);
|
---|
5834 | Assert(!(fFlags & ~INTNET_OPEN_FLAGS_MASK));
|
---|
5835 | AssertPtr(ppNetwork);
|
---|
5836 |
|
---|
5837 | *ppNetwork = NULL;
|
---|
5838 |
|
---|
5839 | /*
|
---|
5840 | * Adjust the flags with defaults for the network policies.
|
---|
5841 | * Note: Main restricts promiscuous mode on the per interface level.
|
---|
5842 | */
|
---|
5843 | fFlags &= ~( INTNET_OPEN_FLAGS_IF_FIXED
|
---|
5844 | | INTNET_OPEN_FLAGS_IF_PROMISC_ALLOW
|
---|
5845 | | INTNET_OPEN_FLAGS_IF_PROMISC_DENY
|
---|
5846 | | INTNET_OPEN_FLAGS_IF_PROMISC_SEE_TRUNK
|
---|
5847 | | INTNET_OPEN_FLAGS_IF_PROMISC_NO_TRUNK
|
---|
5848 | | INTNET_OPEN_FLAGS_REQUIRE_AS_RESTRICTIVE_POLICIES
|
---|
5849 | | INTNET_OPEN_FLAGS_REQUIRE_EXACT);
|
---|
5850 | uint32_t fDefFlags = INTNET_OPEN_FLAGS_PROMISC_ALLOW_CLIENTS
|
---|
5851 | | INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_HOST
|
---|
5852 | | INTNET_OPEN_FLAGS_PROMISC_ALLOW_TRUNK_WIRE
|
---|
5853 | | INTNET_OPEN_FLAGS_TRUNK_HOST_ENABLED
|
---|
5854 | | INTNET_OPEN_FLAGS_TRUNK_HOST_CHASTE_MODE
|
---|
5855 | | INTNET_OPEN_FLAGS_TRUNK_WIRE_ENABLED
|
---|
5856 | | INTNET_OPEN_FLAGS_TRUNK_WIRE_CHASTE_MODE;
|
---|
5857 | if ( enmTrunkType == kIntNetTrunkType_WhateverNone
|
---|
5858 | #ifdef VBOX_WITH_NAT_SERVICE
|
---|
5859 | || enmTrunkType == kIntNetTrunkType_SrvNat /* simialar security */
|
---|
5860 | #endif
|
---|
5861 | || enmTrunkType == kIntNetTrunkType_None)
|
---|
5862 | fDefFlags |= INTNET_OPEN_FLAGS_ACCESS_RESTRICTED;
|
---|
5863 | else
|
---|
5864 | fDefFlags |= INTNET_OPEN_FLAGS_ACCESS_PUBLIC;
|
---|
5865 | for (uint32_t i = 0; i < RT_ELEMENTS(g_afIntNetOpenNetworkNetFlags); i++)
|
---|
5866 | if (!(fFlags & g_afIntNetOpenNetworkNetFlags[i].fPair))
|
---|
5867 | fFlags |= g_afIntNetOpenNetworkNetFlags[i].fPair & fDefFlags;
|
---|
5868 |
|
---|
5869 | /*
|
---|
5870 | * Allocate and initialize.
|
---|
5871 | */
|
---|
5872 | size_t cb = sizeof(INTNETNETWORK);
|
---|
5873 | if (fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE)
|
---|
5874 | cb += INTNETNETWORK_TMP_SIZE + 64;
|
---|
5875 | PINTNETNETWORK pNetwork = (PINTNETNETWORK)RTMemAllocZ(cb);
|
---|
5876 | if (!pNetwork)
|
---|
5877 | return VERR_NO_MEMORY;
|
---|
5878 | //pNetwork->pNext = NULL;
|
---|
5879 | //pNetwork->pIfs = NULL;
|
---|
5880 | pNetwork->hAddrSpinlock = NIL_RTSPINLOCK;
|
---|
5881 | pNetwork->MacTab.cEntries = 0;
|
---|
5882 | pNetwork->MacTab.cEntriesAllocated = INTNET_GROW_DSTTAB_SIZE;
|
---|
5883 | //pNetwork->MacTab.cPromiscuousEntries = 0;
|
---|
5884 | //pNetwork->MacTab.cPromiscuousNoTrunkEntries = 0;
|
---|
5885 | pNetwork->MacTab.paEntries = NULL;
|
---|
5886 | pNetwork->MacTab.fHostPromiscuousReal = false;
|
---|
5887 | pNetwork->MacTab.fHostPromiscuousEff = false;
|
---|
5888 | pNetwork->MacTab.fHostActive = false;
|
---|
5889 | pNetwork->MacTab.fWirePromiscuousReal = false;
|
---|
5890 | pNetwork->MacTab.fWirePromiscuousEff = false;
|
---|
5891 | pNetwork->MacTab.fWireActive = false;
|
---|
5892 | pNetwork->MacTab.pTrunk = NULL;
|
---|
5893 | pNetwork->hEvtBusyIf = NIL_RTSEMEVENT;
|
---|
5894 | pNetwork->pIntNet = pIntNet;
|
---|
5895 | //pNetwork->pvObj = NULL;
|
---|
5896 | if (fFlags & INTNET_OPEN_FLAGS_SHARED_MAC_ON_WIRE)
|
---|
5897 | pNetwork->pbTmp = RT_ALIGN_PT(pNetwork + 1, 64, uint8_t *);
|
---|
5898 | //else
|
---|
5899 | // pNetwork->pbTmp = NULL;
|
---|
5900 | pNetwork->fFlags = fFlags;
|
---|
5901 | //pNetwork->fMinFlags = 0;
|
---|
5902 | //pNetwork->cActiveIFs = 0;
|
---|
5903 | size_t cchName = strlen(pszNetwork);
|
---|
5904 | pNetwork->cchName = (uint8_t)cchName;
|
---|
5905 | Assert(cchName && cchName < sizeof(pNetwork->szName)); /* caller's responsibility. */
|
---|
5906 | memcpy(pNetwork->szName, pszNetwork, cchName); /* '\0' at courtesy of alloc. */
|
---|
5907 | pNetwork->enmTrunkType = enmTrunkType;
|
---|
5908 | Assert(strlen(pszTrunk) < sizeof(pNetwork->szTrunk)); /* caller's responsibility. */
|
---|
5909 | strcpy(pNetwork->szTrunk, pszTrunk);
|
---|
5910 |
|
---|
5911 | /*
|
---|
5912 | * Create the semaphore, spinlock and allocate the interface table.
|
---|
5913 | */
|
---|
5914 | int rc = RTSemEventCreate(&pNetwork->hEvtBusyIf);
|
---|
5915 | if (RT_SUCCESS(rc))
|
---|
5916 | rc = RTSpinlockCreate(&pNetwork->hAddrSpinlock, RTSPINLOCK_FLAGS_INTERRUPT_SAFE, "hAddrSpinlock");
|
---|
5917 | if (RT_SUCCESS(rc))
|
---|
5918 | {
|
---|
5919 | pNetwork->MacTab.paEntries = (PINTNETMACTABENTRY)RTMemAlloc(sizeof(INTNETMACTABENTRY) * pNetwork->MacTab.cEntriesAllocated);
|
---|
5920 | if (!pNetwork->MacTab.paEntries)
|
---|
5921 | rc = VERR_NO_MEMORY;
|
---|
5922 | }
|
---|
5923 | if (RT_SUCCESS(rc))
|
---|
5924 | {
|
---|
5925 | /*
|
---|
5926 | * Register the object in the current session and link it into the network list.
|
---|
5927 | */
|
---|
5928 | pNetwork->pvObj = SUPR0ObjRegister(pSession, SUPDRVOBJTYPE_INTERNAL_NETWORK, intnetR0NetworkDestruct, pNetwork, pIntNet);
|
---|
5929 | if (pNetwork->pvObj)
|
---|
5930 | {
|
---|
5931 | pNetwork->pNext = pIntNet->pNetworks;
|
---|
5932 | pIntNet->pNetworks = pNetwork;
|
---|
5933 |
|
---|
5934 | /*
|
---|
5935 | * Check if the current session is actually allowed to create and
|
---|
5936 | * open the network. It is possible to implement network name
|
---|
5937 | * based policies and these must be checked now. SUPR0ObjRegister
|
---|
5938 | * does no such checks.
|
---|
5939 | */
|
---|
5940 | rc = SUPR0ObjVerifyAccess(pNetwork->pvObj, pSession, pNetwork->szName);
|
---|
5941 | if (RT_SUCCESS(rc))
|
---|
5942 | {
|
---|
5943 | /*
|
---|
5944 | * Connect the trunk.
|
---|
5945 | */
|
---|
5946 | rc = intnetR0NetworkCreateTrunkIf(pNetwork, pSession);
|
---|
5947 | if (RT_SUCCESS(rc))
|
---|
5948 | {
|
---|
5949 | *ppNetwork = pNetwork;
|
---|
5950 | LogFlow(("intnetR0CreateNetwork: returns VINF_SUCCESS *ppNetwork=%p\n", pNetwork));
|
---|
5951 | return VINF_SUCCESS;
|
---|
5952 | }
|
---|
5953 | }
|
---|
5954 |
|
---|
5955 | SUPR0ObjRelease(pNetwork->pvObj, pSession);
|
---|
5956 | LogFlow(("intnetR0CreateNetwork: returns %Rrc\n", rc));
|
---|
5957 | return rc;
|
---|
5958 | }
|
---|
5959 |
|
---|
5960 | /* cleanup */
|
---|
5961 | rc = VERR_NO_MEMORY;
|
---|
5962 | }
|
---|
5963 |
|
---|
5964 | RTSemEventDestroy(pNetwork->hEvtBusyIf);
|
---|
5965 | pNetwork->hEvtBusyIf = NIL_RTSEMEVENT;
|
---|
5966 | RTSpinlockDestroy(pNetwork->hAddrSpinlock);
|
---|
5967 | pNetwork->hAddrSpinlock = NIL_RTSPINLOCK;
|
---|
5968 | RTMemFree(pNetwork->MacTab.paEntries);
|
---|
5969 | pNetwork->MacTab.paEntries = NULL;
|
---|
5970 | RTMemFree(pNetwork);
|
---|
5971 |
|
---|
5972 | LogFlow(("intnetR0CreateNetwork: returns %Rrc\n", rc));
|
---|
5973 | return rc;
|
---|
5974 | }
|
---|
5975 |
|
---|
5976 |
|
---|
5977 | /**
|
---|
5978 | * Opens a network interface and connects it to the specified network.
|
---|
5979 | *
|
---|
5980 | * @returns VBox status code.
|
---|
5981 | * @param pSession The session handle.
|
---|
5982 | * @param pszNetwork The network name.
|
---|
5983 | * @param enmTrunkType The trunk type.
|
---|
5984 | * @param pszTrunk The trunk name. Its meaning is specific to the type.
|
---|
5985 | * @param fFlags Flags, see INTNET_OPEN_FLAGS_*.
|
---|
5986 | * @param fRestrictAccess Whether new participants should be subjected to access check or not.
|
---|
5987 | * @param cbSend The send buffer size.
|
---|
5988 | * @param cbRecv The receive buffer size.
|
---|
5989 | * @param phIf Where to store the handle to the network interface.
|
---|
5990 | */
|
---|
5991 | INTNETR0DECL(int) IntNetR0Open(PSUPDRVSESSION pSession, const char *pszNetwork,
|
---|
5992 | INTNETTRUNKTYPE enmTrunkType, const char *pszTrunk, uint32_t fFlags,
|
---|
5993 | uint32_t cbSend, uint32_t cbRecv, PINTNETIFHANDLE phIf)
|
---|
5994 | {
|
---|
5995 | LogFlow(("IntNetR0Open: pSession=%p pszNetwork=%p:{%s} enmTrunkType=%d pszTrunk=%p:{%s} fFlags=%#x cbSend=%u cbRecv=%u phIf=%p\n",
|
---|
5996 | pSession, pszNetwork, pszNetwork, enmTrunkType, pszTrunk, pszTrunk, fFlags, cbSend, cbRecv, phIf));
|
---|
5997 |
|
---|
5998 | /*
|
---|
5999 | * Validate input.
|
---|
6000 | */
|
---|
6001 | PINTNET pIntNet = g_pIntNet;
|
---|
6002 | AssertPtrReturn(pIntNet, VERR_INVALID_PARAMETER);
|
---|
6003 | AssertReturn(pIntNet->u32Magic, VERR_INVALID_MAGIC);
|
---|
6004 |
|
---|
6005 | AssertPtrReturn(pszNetwork, VERR_INVALID_PARAMETER);
|
---|
6006 | const char *pszNetworkEnd = RTStrEnd(pszNetwork, INTNET_MAX_NETWORK_NAME);
|
---|
6007 | AssertReturn(pszNetworkEnd, VERR_INVALID_PARAMETER);
|
---|
6008 | size_t cchNetwork = pszNetworkEnd - pszNetwork;
|
---|
6009 | AssertReturn(cchNetwork, VERR_INVALID_PARAMETER);
|
---|
6010 |
|
---|
6011 | if (pszTrunk)
|
---|
6012 | {
|
---|
6013 | AssertPtrReturn(pszTrunk, VERR_INVALID_PARAMETER);
|
---|
6014 | const char *pszTrunkEnd = RTStrEnd(pszTrunk, INTNET_MAX_TRUNK_NAME);
|
---|
6015 | AssertReturn(pszTrunkEnd, VERR_INVALID_PARAMETER);
|
---|
6016 | }
|
---|
6017 | else
|
---|
6018 | pszTrunk = "";
|
---|
6019 |
|
---|
6020 | AssertMsgReturn(enmTrunkType > kIntNetTrunkType_Invalid && enmTrunkType < kIntNetTrunkType_End,
|
---|
6021 | ("%d\n", enmTrunkType), VERR_INVALID_PARAMETER);
|
---|
6022 | switch (enmTrunkType)
|
---|
6023 | {
|
---|
6024 | case kIntNetTrunkType_None:
|
---|
6025 | case kIntNetTrunkType_WhateverNone:
|
---|
6026 | #ifdef VBOX_WITH_NAT_SERVICE
|
---|
6027 | case kIntNetTrunkType_SrvNat:
|
---|
6028 | #endif
|
---|
6029 | if (*pszTrunk)
|
---|
6030 | return VERR_INVALID_PARAMETER;
|
---|
6031 | break;
|
---|
6032 |
|
---|
6033 | case kIntNetTrunkType_NetFlt:
|
---|
6034 | case kIntNetTrunkType_NetAdp:
|
---|
6035 | if (!*pszTrunk)
|
---|
6036 | return VERR_INVALID_PARAMETER;
|
---|
6037 | break;
|
---|
6038 |
|
---|
6039 | default:
|
---|
6040 | return VERR_NOT_IMPLEMENTED;
|
---|
6041 | }
|
---|
6042 |
|
---|
6043 | AssertMsgReturn(!(fFlags & ~INTNET_OPEN_FLAGS_MASK), ("%#x\n", fFlags), VERR_INVALID_PARAMETER);
|
---|
6044 | for (uint32_t i = 0; i < RT_ELEMENTS(g_afIntNetOpenNetworkNetFlags); i++)
|
---|
6045 | AssertMsgReturn((fFlags & g_afIntNetOpenNetworkNetFlags[i].fPair) != g_afIntNetOpenNetworkNetFlags[i].fPair,
|
---|
6046 | ("%#x (%#x)\n", fFlags, g_afIntNetOpenNetworkNetFlags[i].fPair), VERR_INVALID_PARAMETER);
|
---|
6047 | for (uint32_t i = 0; i < RT_ELEMENTS(g_afIntNetOpenNetworkIfFlags); i++)
|
---|
6048 | AssertMsgReturn((fFlags & g_afIntNetOpenNetworkIfFlags[i].fPair) != g_afIntNetOpenNetworkIfFlags[i].fPair,
|
---|
6049 | ("%#x (%#x)\n", fFlags, g_afIntNetOpenNetworkIfFlags[i].fPair), VERR_INVALID_PARAMETER);
|
---|
6050 | AssertPtrReturn(phIf, VERR_INVALID_PARAMETER);
|
---|
6051 |
|
---|
6052 | /*
|
---|
6053 | * Acquire the mutex to serialize open/create/close.
|
---|
6054 | */
|
---|
6055 | int rc = RTSemMutexRequest(pIntNet->hMtxCreateOpenDestroy, RT_INDEFINITE_WAIT);
|
---|
6056 | if (RT_FAILURE(rc))
|
---|
6057 | return rc;
|
---|
6058 |
|
---|
6059 | /*
|
---|
6060 | * Try open / create the network and create an interface on it for the
|
---|
6061 | * caller to use.
|
---|
6062 | */
|
---|
6063 | PINTNETNETWORK pNetwork = NULL;
|
---|
6064 | rc = intnetR0OpenNetwork(pIntNet, pSession, pszNetwork, enmTrunkType, pszTrunk, fFlags, &pNetwork);
|
---|
6065 | if (RT_SUCCESS(rc))
|
---|
6066 | {
|
---|
6067 | rc = intnetR0NetworkCreateIf(pNetwork, pSession, cbSend, cbRecv, fFlags, phIf);
|
---|
6068 | if (RT_SUCCESS(rc))
|
---|
6069 | {
|
---|
6070 | intnetR0AdaptOpenNetworkFlags(pNetwork, fFlags);
|
---|
6071 | rc = VINF_ALREADY_INITIALIZED;
|
---|
6072 | }
|
---|
6073 | else
|
---|
6074 | SUPR0ObjRelease(pNetwork->pvObj, pSession);
|
---|
6075 | }
|
---|
6076 | else if (rc == VERR_NOT_FOUND)
|
---|
6077 | {
|
---|
6078 | rc = intnetR0CreateNetwork(pIntNet, pSession, pszNetwork, enmTrunkType, pszTrunk, fFlags, &pNetwork);
|
---|
6079 | if (RT_SUCCESS(rc))
|
---|
6080 | {
|
---|
6081 | rc = intnetR0NetworkCreateIf(pNetwork, pSession, cbSend, cbRecv, fFlags, phIf);
|
---|
6082 | if (RT_FAILURE(rc))
|
---|
6083 | SUPR0ObjRelease(pNetwork->pvObj, pSession);
|
---|
6084 | }
|
---|
6085 | }
|
---|
6086 |
|
---|
6087 | RTSemMutexRelease(pIntNet->hMtxCreateOpenDestroy);
|
---|
6088 | LogFlow(("IntNetR0Open: return %Rrc *phIf=%RX32\n", rc, *phIf));
|
---|
6089 | return rc;
|
---|
6090 | }
|
---|
6091 |
|
---|
6092 |
|
---|
6093 | /**
|
---|
6094 | * VMMR0 request wrapper for IntNetR0Open.
|
---|
6095 | *
|
---|
6096 | * @returns see GMMR0MapUnmapChunk.
|
---|
6097 | * @param pSession The caller's session.
|
---|
6098 | * @param pReq The request packet.
|
---|
6099 | */
|
---|
6100 | INTNETR0DECL(int) IntNetR0OpenReq(PSUPDRVSESSION pSession, PINTNETOPENREQ pReq)
|
---|
6101 | {
|
---|
6102 | if (RT_UNLIKELY(pReq->Hdr.cbReq != sizeof(*pReq)))
|
---|
6103 | return VERR_INVALID_PARAMETER;
|
---|
6104 | return IntNetR0Open(pSession, &pReq->szNetwork[0], pReq->enmTrunkType, pReq->szTrunk,
|
---|
6105 | pReq->fFlags, pReq->cbSend, pReq->cbRecv, &pReq->hIf);
|
---|
6106 | }
|
---|
6107 |
|
---|
6108 |
|
---|
6109 | /**
|
---|
6110 | * Count the internal networks.
|
---|
6111 | *
|
---|
6112 | * This is mainly for providing the testcase with some introspection to validate
|
---|
6113 | * behavior when closing interfaces.
|
---|
6114 | *
|
---|
6115 | * @returns The number of networks.
|
---|
6116 | */
|
---|
6117 | INTNETR0DECL(uint32_t) IntNetR0GetNetworkCount(void)
|
---|
6118 | {
|
---|
6119 | /*
|
---|
6120 | * Grab the instance.
|
---|
6121 | */
|
---|
6122 | PINTNET pIntNet = g_pIntNet;
|
---|
6123 | if (!pIntNet)
|
---|
6124 | return 0;
|
---|
6125 | AssertPtrReturn(pIntNet, 0);
|
---|
6126 | AssertReturn(pIntNet->u32Magic == INTNET_MAGIC, 0);
|
---|
6127 |
|
---|
6128 | /*
|
---|
6129 | * Grab the mutex and count the networks.
|
---|
6130 | */
|
---|
6131 | int rc = RTSemMutexRequest(pIntNet->hMtxCreateOpenDestroy, RT_INDEFINITE_WAIT);
|
---|
6132 | if (RT_FAILURE(rc))
|
---|
6133 | return 0;
|
---|
6134 |
|
---|
6135 | uint32_t cNetworks = 0;
|
---|
6136 | for (PINTNETNETWORK pCur = pIntNet->pNetworks; pCur; pCur = pCur->pNext)
|
---|
6137 | cNetworks++;
|
---|
6138 |
|
---|
6139 | RTSemMutexRelease(pIntNet->hMtxCreateOpenDestroy);
|
---|
6140 |
|
---|
6141 | return cNetworks;
|
---|
6142 | }
|
---|
6143 |
|
---|
6144 |
|
---|
6145 |
|
---|
6146 | /**
|
---|
6147 | * Destroys an instance of the Ring-0 internal networking service.
|
---|
6148 | */
|
---|
6149 | INTNETR0DECL(void) IntNetR0Term(void)
|
---|
6150 | {
|
---|
6151 | LogFlow(("IntNetR0Term:\n"));
|
---|
6152 |
|
---|
6153 | /*
|
---|
6154 | * Zap the global pointer and validate it.
|
---|
6155 | */
|
---|
6156 | PINTNET pIntNet = g_pIntNet;
|
---|
6157 | g_pIntNet = NULL;
|
---|
6158 | if (!pIntNet)
|
---|
6159 | return;
|
---|
6160 | AssertPtrReturnVoid(pIntNet);
|
---|
6161 | AssertReturnVoid(pIntNet->u32Magic == INTNET_MAGIC);
|
---|
6162 |
|
---|
6163 | /*
|
---|
6164 | * There is not supposed to be any networks hanging around at this time.
|
---|
6165 | */
|
---|
6166 | AssertReturnVoid(ASMAtomicCmpXchgU32(&pIntNet->u32Magic, ~INTNET_MAGIC, INTNET_MAGIC));
|
---|
6167 | Assert(pIntNet->pNetworks == NULL);
|
---|
6168 | if (pIntNet->hMtxCreateOpenDestroy != NIL_RTSEMMUTEX)
|
---|
6169 | {
|
---|
6170 | RTSemMutexDestroy(pIntNet->hMtxCreateOpenDestroy);
|
---|
6171 | pIntNet->hMtxCreateOpenDestroy = NIL_RTSEMMUTEX;
|
---|
6172 | }
|
---|
6173 | if (pIntNet->hHtIfs != NIL_RTHANDLETABLE)
|
---|
6174 | {
|
---|
6175 | /** @todo does it make sense to have a deleter here? */
|
---|
6176 | RTHandleTableDestroy(pIntNet->hHtIfs, NULL, NULL);
|
---|
6177 | pIntNet->hHtIfs = NIL_RTHANDLETABLE;
|
---|
6178 | }
|
---|
6179 |
|
---|
6180 | RTMemFree(pIntNet);
|
---|
6181 | }
|
---|
6182 |
|
---|
6183 |
|
---|
6184 | /**
|
---|
6185 | * Initializes the internal network ring-0 service.
|
---|
6186 | *
|
---|
6187 | * @returns VBox status code.
|
---|
6188 | */
|
---|
6189 | INTNETR0DECL(int) IntNetR0Init(void)
|
---|
6190 | {
|
---|
6191 | LogFlow(("IntNetR0Init:\n"));
|
---|
6192 | int rc = VERR_NO_MEMORY;
|
---|
6193 | PINTNET pIntNet = (PINTNET)RTMemAllocZ(sizeof(*pIntNet));
|
---|
6194 | if (pIntNet)
|
---|
6195 | {
|
---|
6196 | //pIntNet->pNetworks = NULL;
|
---|
6197 |
|
---|
6198 | rc = RTSemMutexCreate(&pIntNet->hMtxCreateOpenDestroy);
|
---|
6199 | if (RT_SUCCESS(rc))
|
---|
6200 | {
|
---|
6201 | rc = RTHandleTableCreateEx(&pIntNet->hHtIfs, RTHANDLETABLE_FLAGS_LOCKED | RTHANDLETABLE_FLAGS_CONTEXT,
|
---|
6202 | UINT32_C(0x8ffe0000), 4096, intnetR0IfRetainHandle, NULL);
|
---|
6203 | if (RT_SUCCESS(rc))
|
---|
6204 | {
|
---|
6205 | pIntNet->u32Magic = INTNET_MAGIC;
|
---|
6206 | g_pIntNet = pIntNet;
|
---|
6207 | LogFlow(("IntNetR0Init: returns VINF_SUCCESS pIntNet=%p\n", pIntNet));
|
---|
6208 | return VINF_SUCCESS;
|
---|
6209 | }
|
---|
6210 |
|
---|
6211 | RTSemMutexDestroy(pIntNet->hMtxCreateOpenDestroy);
|
---|
6212 | }
|
---|
6213 | RTMemFree(pIntNet);
|
---|
6214 | }
|
---|
6215 | LogFlow(("IntNetR0Init: returns %Rrc\n", rc));
|
---|
6216 | return rc;
|
---|
6217 | }
|
---|
6218 |
|
---|