VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/SrvIntNetR0.cpp@ 90778

Last change on this file since 90778 was 88867, checked in by vboxsync, 3 years ago

DrvIntNetR0: Corrected limit the optimized case in intnetR0SgReadPart and corrected the assertion there.

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

© 2023 Oracle
ContactPrivacy policyTerms of Use