VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/DrvNAT.cpp@ 96407

Last change on this file since 96407 was 96407, checked in by vboxsync, 22 months ago

scm copyright and license note update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 66.9 KB
Line 
1/* $Id: DrvNAT.cpp 96407 2022-08-22 17:43:14Z vboxsync $ */
2/** @file
3 * DrvNAT - NAT network transport driver.
4 */
5
6/*
7 * Copyright (C) 2006-2022 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28
29/*********************************************************************************************************************************
30* Header Files *
31*********************************************************************************************************************************/
32#define LOG_GROUP LOG_GROUP_DRV_NAT
33#define __STDC_LIMIT_MACROS
34#define __STDC_CONSTANT_MACROS
35#include "slirp/libslirp.h"
36extern "C" {
37#include "slirp/slirp_dns.h"
38}
39#include "slirp/ctl.h"
40
41#include <VBox/vmm/dbgf.h>
42#include <VBox/vmm/pdmdrv.h>
43#include <VBox/vmm/pdmnetifs.h>
44#include <VBox/vmm/pdmnetinline.h>
45
46#include <iprt/assert.h>
47#include <iprt/critsect.h>
48#include <iprt/cidr.h>
49#include <iprt/file.h>
50#include <iprt/mem.h>
51#include <iprt/pipe.h>
52#include <iprt/string.h>
53#include <iprt/stream.h>
54#include <iprt/uuid.h>
55
56#include "VBoxDD.h"
57
58#ifndef RT_OS_WINDOWS
59# include <unistd.h>
60# include <fcntl.h>
61# include <poll.h>
62# include <errno.h>
63#endif
64#ifdef RT_OS_FREEBSD
65# include <netinet/in.h>
66#endif
67#include <iprt/semaphore.h>
68#include <iprt/req.h>
69#ifdef RT_OS_DARWIN
70# include <SystemConfiguration/SystemConfiguration.h>
71# include <CoreFoundation/CoreFoundation.h>
72#endif
73
74#define COUNTERS_INIT
75#include "counters.h"
76
77
78/*********************************************************************************************************************************
79* Defined Constants And Macros *
80*********************************************************************************************************************************/
81
82#define DRVNAT_MAXFRAMESIZE (16 * 1024)
83
84/**
85 * @todo: This is a bad hack to prevent freezing the guest during high network
86 * activity. Windows host only. This needs to be fixed properly.
87 */
88#define VBOX_NAT_DELAY_HACK
89
90#define GET_EXTRADATA(pdrvins, node, name, rc, type, type_name, var) \
91do { \
92 (rc) = (pdrvins)->pHlpR3->pfnCFGMQuery ## type((node), name, &(var)); \
93 if (RT_FAILURE((rc)) && (rc) != VERR_CFGM_VALUE_NOT_FOUND) \
94 return PDMDrvHlpVMSetError((pdrvins), (rc), RT_SRC_POS, N_("NAT#%d: configuration query for \"" name "\" " #type_name " failed"), \
95 (pdrvins)->iInstance); \
96} while (0)
97
98#define GET_ED_STRICT(pdrvins, node, name, rc, type, type_name, var) \
99do { \
100 (rc) = (pdrvins)->pHlpR3->pfnCFGMQuery ## type((node), name, &(var)); \
101 if (RT_FAILURE((rc))) \
102 return PDMDrvHlpVMSetError((pdrvins), (rc), RT_SRC_POS, N_("NAT#%d: configuration query for \"" name "\" " #type_name " failed"), \
103 (pdrvins)->iInstance); \
104} while (0)
105
106#define GET_EXTRADATA_N(pdrvins, node, name, rc, type, type_name, var, var_size) \
107do { \
108 (rc) = (pdrvins)->pHlpR3->pfnCFGMQuery ## type((node), name, &(var), var_size); \
109 if (RT_FAILURE((rc)) && (rc) != VERR_CFGM_VALUE_NOT_FOUND) \
110 return PDMDrvHlpVMSetError((pdrvins), (rc), RT_SRC_POS, N_("NAT#%d: configuration query for \"" name "\" " #type_name " failed"), \
111 (pdrvins)->iInstance); \
112} while (0)
113
114#define GET_BOOL(rc, pdrvins, node, name, var) \
115 GET_EXTRADATA(pdrvins, node, name, (rc), Bool, bolean, (var))
116#define GET_STRING(rc, pdrvins, node, name, var, var_size) \
117 GET_EXTRADATA_N(pdrvins, node, name, (rc), String, string, (var), (var_size))
118#define GET_STRING_ALLOC(rc, pdrvins, node, name, var) \
119 GET_EXTRADATA(pdrvins, node, name, (rc), StringAlloc, string, (var))
120#define GET_S32(rc, pdrvins, node, name, var) \
121 GET_EXTRADATA(pdrvins, node, name, (rc), S32, int, (var))
122#define GET_S32_STRICT(rc, pdrvins, node, name, var) \
123 GET_ED_STRICT(pdrvins, node, name, (rc), S32, int, (var))
124
125
126
127#define DO_GET_IP(rc, node, instance, status, x) \
128do { \
129 char sz##x[32]; \
130 GET_STRING((rc), (node), (instance), #x, sz ## x[0], sizeof(sz ## x)); \
131 if (rc != VERR_CFGM_VALUE_NOT_FOUND) \
132 (status) = inet_aton(sz ## x, &x); \
133} while (0)
134
135#define GETIP_DEF(rc, node, instance, x, def) \
136do \
137{ \
138 int status = 0; \
139 DO_GET_IP((rc), (node), (instance), status, x); \
140 if (status == 0 || rc == VERR_CFGM_VALUE_NOT_FOUND) \
141 x.s_addr = def; \
142} while (0)
143
144
145/*********************************************************************************************************************************
146* Structures and Typedefs *
147*********************************************************************************************************************************/
148/**
149 * NAT network transport driver instance data.
150 *
151 * @implements PDMINETWORKUP
152 */
153typedef struct DRVNAT
154{
155 /** The network interface. */
156 PDMINETWORKUP INetworkUp;
157 /** The network NAT Engine configureation. */
158 PDMINETWORKNATCONFIG INetworkNATCfg;
159 /** The port we're attached to. */
160 PPDMINETWORKDOWN pIAboveNet;
161 /** The network config of the port we're attached to. */
162 PPDMINETWORKCONFIG pIAboveConfig;
163 /** Pointer to the driver instance. */
164 PPDMDRVINS pDrvIns;
165 /** Link state */
166 PDMNETWORKLINKSTATE enmLinkState;
167 /** NAT state for this instance. */
168 PNATState pNATState;
169 /** TFTP directory prefix. */
170 char *pszTFTPPrefix;
171 /** Boot file name to provide in the DHCP server response. */
172 char *pszBootFile;
173 /** tftp server name to provide in the DHCP server response. */
174 char *pszNextServer;
175 /** Polling thread. */
176 PPDMTHREAD pSlirpThread;
177 /** Queue for NAT-thread-external events. */
178 RTREQQUEUE hSlirpReqQueue;
179 /** The guest IP for port-forwarding. */
180 uint32_t GuestIP;
181 /** Link state set when the VM is suspended. */
182 PDMNETWORKLINKSTATE enmLinkStateWant;
183
184#ifndef RT_OS_WINDOWS
185 /** The write end of the control pipe. */
186 RTPIPE hPipeWrite;
187 /** The read end of the control pipe. */
188 RTPIPE hPipeRead;
189# if HC_ARCH_BITS == 32
190 uint32_t u32Padding;
191# endif
192#else
193 /** for external notification */
194 HANDLE hWakeupEvent;
195#endif
196
197#define DRV_PROFILE_COUNTER(name, dsc) STAMPROFILE Stat ## name
198#define DRV_COUNTING_COUNTER(name, dsc) STAMCOUNTER Stat ## name
199#include "counters.h"
200 /** thread delivering packets for receiving by the guest */
201 PPDMTHREAD pRecvThread;
202 /** thread delivering urg packets for receiving by the guest */
203 PPDMTHREAD pUrgRecvThread;
204 /** event to wakeup the guest receive thread */
205 RTSEMEVENT EventRecv;
206 /** event to wakeup the guest urgent receive thread */
207 RTSEMEVENT EventUrgRecv;
208 /** Receive Req queue (deliver packets to the guest) */
209 RTREQQUEUE hRecvReqQueue;
210 /** Receive Urgent Req queue (deliver packets to the guest). */
211 RTREQQUEUE hUrgRecvReqQueue;
212
213 /** makes access to device func RecvAvail and Recv atomical. */
214 RTCRITSECT DevAccessLock;
215 /** Number of in-flight urgent packets. */
216 volatile uint32_t cUrgPkts;
217 /** Number of in-flight regular packets. */
218 volatile uint32_t cPkts;
219
220 /** Transmit lock taken by BeginXmit and released by EndXmit. */
221 RTCRITSECT XmitLock;
222
223 /** Request queue for the async host resolver. */
224 RTREQQUEUE hHostResQueue;
225 /** Async host resolver thread. */
226 PPDMTHREAD pHostResThread;
227
228#ifdef RT_OS_DARWIN
229 /* Handle of the DNS watcher runloop source. */
230 CFRunLoopSourceRef hRunLoopSrcDnsWatcher;
231#endif
232} DRVNAT;
233AssertCompileMemberAlignment(DRVNAT, StatNATRecvWakeups, 8);
234/** Pointer to the NAT driver instance data. */
235typedef DRVNAT *PDRVNAT;
236
237
238/*********************************************************************************************************************************
239* Internal Functions *
240*********************************************************************************************************************************/
241static void drvNATNotifyNATThread(PDRVNAT pThis, const char *pszWho);
242DECLINLINE(void) drvNATUpdateDNS(PDRVNAT pThis, bool fFlapLink);
243static DECLCALLBACK(int) drvNATReinitializeHostNameResolving(PDRVNAT pThis);
244
245
246/**
247 * @callback_method_impl{FNPDMTHREADDRV}
248 */
249static DECLCALLBACK(int) drvNATRecv(PPDMDRVINS pDrvIns, PPDMTHREAD pThread)
250{
251 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
252
253 if (pThread->enmState == PDMTHREADSTATE_INITIALIZING)
254 return VINF_SUCCESS;
255
256 while (pThread->enmState == PDMTHREADSTATE_RUNNING)
257 {
258 RTReqQueueProcess(pThis->hRecvReqQueue, 0);
259 if (ASMAtomicReadU32(&pThis->cPkts) == 0)
260 RTSemEventWait(pThis->EventRecv, RT_INDEFINITE_WAIT);
261 }
262 return VINF_SUCCESS;
263}
264
265
266/**
267 * @callback_method_impl{FNPDMTHREADWAKEUPDRV}
268 */
269static DECLCALLBACK(int) drvNATRecvWakeup(PPDMDRVINS pDrvIns, PPDMTHREAD pThread)
270{
271 RT_NOREF(pThread);
272 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
273 int rc;
274 rc = RTSemEventSignal(pThis->EventRecv);
275
276 STAM_COUNTER_INC(&pThis->StatNATRecvWakeups);
277 return VINF_SUCCESS;
278}
279
280
281/**
282 * @callback_method_impl{FNPDMTHREADDRV}
283 */
284static DECLCALLBACK(int) drvNATUrgRecv(PPDMDRVINS pDrvIns, PPDMTHREAD pThread)
285{
286 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
287
288 if (pThread->enmState == PDMTHREADSTATE_INITIALIZING)
289 return VINF_SUCCESS;
290
291 while (pThread->enmState == PDMTHREADSTATE_RUNNING)
292 {
293 RTReqQueueProcess(pThis->hUrgRecvReqQueue, 0);
294 if (ASMAtomicReadU32(&pThis->cUrgPkts) == 0)
295 {
296 int rc = RTSemEventWait(pThis->EventUrgRecv, RT_INDEFINITE_WAIT);
297 AssertRC(rc);
298 }
299 }
300 return VINF_SUCCESS;
301}
302
303
304/**
305 * @callback_method_impl{FNPDMTHREADWAKEUPDRV}
306 */
307static DECLCALLBACK(int) drvNATUrgRecvWakeup(PPDMDRVINS pDrvIns, PPDMTHREAD pThread)
308{
309 RT_NOREF(pThread);
310 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
311 int rc = RTSemEventSignal(pThis->EventUrgRecv);
312 AssertRC(rc);
313
314 return VINF_SUCCESS;
315}
316
317
318static DECLCALLBACK(void) drvNATUrgRecvWorker(PDRVNAT pThis, uint8_t *pu8Buf, int cb, struct mbuf *m)
319{
320 int rc = RTCritSectEnter(&pThis->DevAccessLock);
321 AssertRC(rc);
322 rc = pThis->pIAboveNet->pfnWaitReceiveAvail(pThis->pIAboveNet, RT_INDEFINITE_WAIT);
323 if (RT_SUCCESS(rc))
324 {
325 rc = pThis->pIAboveNet->pfnReceive(pThis->pIAboveNet, pu8Buf, cb);
326 AssertRC(rc);
327 }
328 else if ( rc != VERR_TIMEOUT
329 && rc != VERR_INTERRUPTED)
330 {
331 AssertRC(rc);
332 }
333
334 rc = RTCritSectLeave(&pThis->DevAccessLock);
335 AssertRC(rc);
336
337 slirp_ext_m_free(pThis->pNATState, m, pu8Buf);
338 if (ASMAtomicDecU32(&pThis->cUrgPkts) == 0)
339 {
340 drvNATRecvWakeup(pThis->pDrvIns, pThis->pRecvThread);
341 drvNATNotifyNATThread(pThis, "drvNATUrgRecvWorker");
342 }
343}
344
345
346static DECLCALLBACK(void) drvNATRecvWorker(PDRVNAT pThis, uint8_t *pu8Buf, int cb, struct mbuf *m)
347{
348 int rc;
349 STAM_PROFILE_START(&pThis->StatNATRecv, a);
350
351
352 while (ASMAtomicReadU32(&pThis->cUrgPkts) != 0)
353 {
354 rc = RTSemEventWait(pThis->EventRecv, RT_INDEFINITE_WAIT);
355 if ( RT_FAILURE(rc)
356 && ( rc == VERR_TIMEOUT
357 || rc == VERR_INTERRUPTED))
358 goto done_unlocked;
359 }
360
361 rc = RTCritSectEnter(&pThis->DevAccessLock);
362 AssertRC(rc);
363
364 STAM_PROFILE_START(&pThis->StatNATRecvWait, b);
365 rc = pThis->pIAboveNet->pfnWaitReceiveAvail(pThis->pIAboveNet, RT_INDEFINITE_WAIT);
366 STAM_PROFILE_STOP(&pThis->StatNATRecvWait, b);
367
368 if (RT_SUCCESS(rc))
369 {
370 rc = pThis->pIAboveNet->pfnReceive(pThis->pIAboveNet, pu8Buf, cb);
371 AssertRC(rc);
372 }
373 else if ( rc != VERR_TIMEOUT
374 && rc != VERR_INTERRUPTED)
375 {
376 AssertRC(rc);
377 }
378
379 rc = RTCritSectLeave(&pThis->DevAccessLock);
380 AssertRC(rc);
381
382done_unlocked:
383 slirp_ext_m_free(pThis->pNATState, m, pu8Buf);
384 ASMAtomicDecU32(&pThis->cPkts);
385
386 drvNATNotifyNATThread(pThis, "drvNATRecvWorker");
387
388 STAM_PROFILE_STOP(&pThis->StatNATRecv, a);
389}
390
391/**
392 * Frees a S/G buffer allocated by drvNATNetworkUp_AllocBuf.
393 *
394 * @param pThis Pointer to the NAT instance.
395 * @param pSgBuf The S/G buffer to free.
396 */
397static void drvNATFreeSgBuf(PDRVNAT pThis, PPDMSCATTERGATHER pSgBuf)
398{
399 Assert((pSgBuf->fFlags & PDMSCATTERGATHER_FLAGS_MAGIC_MASK) == PDMSCATTERGATHER_FLAGS_MAGIC);
400 pSgBuf->fFlags = 0;
401 if (pSgBuf->pvAllocator)
402 {
403 Assert(!pSgBuf->pvUser);
404 slirp_ext_m_free(pThis->pNATState, (struct mbuf *)pSgBuf->pvAllocator, NULL);
405 pSgBuf->pvAllocator = NULL;
406 }
407 else if (pSgBuf->pvUser)
408 {
409 RTMemFree(pSgBuf->aSegs[0].pvSeg);
410 pSgBuf->aSegs[0].pvSeg = NULL;
411 RTMemFree(pSgBuf->pvUser);
412 pSgBuf->pvUser = NULL;
413 }
414 RTMemFree(pSgBuf);
415}
416
417/**
418 * Worker function for drvNATSend().
419 *
420 * @param pThis Pointer to the NAT instance.
421 * @param pSgBuf The scatter/gather buffer.
422 * @thread NAT
423 */
424static DECLCALLBACK(void) drvNATSendWorker(PDRVNAT pThis, PPDMSCATTERGATHER pSgBuf)
425{
426#if 0 /* Assertion happens often to me after resuming a VM -- no time to investigate this now. */
427 Assert(pThis->enmLinkState == PDMNETWORKLINKSTATE_UP);
428#endif
429 if (pThis->enmLinkState == PDMNETWORKLINKSTATE_UP)
430 {
431 struct mbuf *m = (struct mbuf *)pSgBuf->pvAllocator;
432 if (m)
433 {
434 /*
435 * A normal frame.
436 */
437 pSgBuf->pvAllocator = NULL;
438 slirp_input(pThis->pNATState, m, pSgBuf->cbUsed);
439 }
440 else
441 {
442 /*
443 * GSO frame, need to segment it.
444 */
445 /** @todo Make the NAT engine grok large frames? Could be more efficient... */
446#if 0 /* this is for testing PDMNetGsoCarveSegmentQD. */
447 uint8_t abHdrScratch[256];
448#endif
449 uint8_t const *pbFrame = (uint8_t const *)pSgBuf->aSegs[0].pvSeg;
450 PCPDMNETWORKGSO pGso = (PCPDMNETWORKGSO)pSgBuf->pvUser;
451 /* Do not attempt to segment frames with invalid GSO parameters. */
452 if (PDMNetGsoIsValid(pGso, sizeof(*pGso), pSgBuf->cbUsed))
453 {
454 uint32_t const cSegs = PDMNetGsoCalcSegmentCount(pGso, pSgBuf->cbUsed); Assert(cSegs > 1);
455 for (uint32_t iSeg = 0; iSeg < cSegs; iSeg++)
456 {
457 size_t cbSeg;
458 void *pvSeg;
459 m = slirp_ext_m_get(pThis->pNATState, pGso->cbHdrsTotal + pGso->cbMaxSeg, &pvSeg, &cbSeg);
460 if (!m)
461 break;
462
463#if 1
464 uint32_t cbPayload, cbHdrs;
465 uint32_t offPayload = PDMNetGsoCarveSegment(pGso, pbFrame, pSgBuf->cbUsed,
466 iSeg, cSegs, (uint8_t *)pvSeg, &cbHdrs, &cbPayload);
467 memcpy((uint8_t *)pvSeg + cbHdrs, pbFrame + offPayload, cbPayload);
468
469 slirp_input(pThis->pNATState, m, cbPayload + cbHdrs);
470#else
471 uint32_t cbSegFrame;
472 void *pvSegFrame = PDMNetGsoCarveSegmentQD(pGso, (uint8_t *)pbFrame, pSgBuf->cbUsed, abHdrScratch,
473 iSeg, cSegs, &cbSegFrame);
474 memcpy((uint8_t *)pvSeg, pvSegFrame, cbSegFrame);
475
476 slirp_input(pThis->pNATState, m, cbSegFrame);
477#endif
478 }
479 }
480 }
481 }
482 drvNATFreeSgBuf(pThis, pSgBuf);
483
484 /** @todo Implement the VERR_TRY_AGAIN drvNATNetworkUp_AllocBuf semantics. */
485}
486
487/**
488 * @interface_method_impl{PDMINETWORKUP,pfnBeginXmit}
489 */
490static DECLCALLBACK(int) drvNATNetworkUp_BeginXmit(PPDMINETWORKUP pInterface, bool fOnWorkerThread)
491{
492 RT_NOREF(fOnWorkerThread);
493 PDRVNAT pThis = RT_FROM_MEMBER(pInterface, DRVNAT, INetworkUp);
494 int rc = RTCritSectTryEnter(&pThis->XmitLock);
495 if (RT_FAILURE(rc))
496 {
497 /** @todo Kick the worker thread when we have one... */
498 rc = VERR_TRY_AGAIN;
499 }
500 return rc;
501}
502
503/**
504 * @interface_method_impl{PDMINETWORKUP,pfnAllocBuf}
505 */
506static DECLCALLBACK(int) drvNATNetworkUp_AllocBuf(PPDMINETWORKUP pInterface, size_t cbMin,
507 PCPDMNETWORKGSO pGso, PPPDMSCATTERGATHER ppSgBuf)
508{
509 PDRVNAT pThis = RT_FROM_MEMBER(pInterface, DRVNAT, INetworkUp);
510 Assert(RTCritSectIsOwner(&pThis->XmitLock));
511
512 /*
513 * Drop the incoming frame if the NAT thread isn't running.
514 */
515 if (pThis->pSlirpThread->enmState != PDMTHREADSTATE_RUNNING)
516 {
517 Log(("drvNATNetowrkUp_AllocBuf: returns VERR_NET_NO_NETWORK\n"));
518 return VERR_NET_NO_NETWORK;
519 }
520
521 /*
522 * Allocate a scatter/gather buffer and an mbuf.
523 */
524 PPDMSCATTERGATHER pSgBuf = (PPDMSCATTERGATHER)RTMemAlloc(sizeof(*pSgBuf));
525 if (!pSgBuf)
526 return VERR_NO_MEMORY;
527 if (!pGso)
528 {
529 /*
530 * Drop the frame if it is too big.
531 */
532 if (cbMin >= DRVNAT_MAXFRAMESIZE)
533 {
534 Log(("drvNATNetowrkUp_AllocBuf: drops over-sized frame (%u bytes), returns VERR_INVALID_PARAMETER\n",
535 cbMin));
536 RTMemFree(pSgBuf);
537 return VERR_INVALID_PARAMETER;
538 }
539
540 pSgBuf->pvUser = NULL;
541 pSgBuf->pvAllocator = slirp_ext_m_get(pThis->pNATState, cbMin,
542 &pSgBuf->aSegs[0].pvSeg, &pSgBuf->aSegs[0].cbSeg);
543 if (!pSgBuf->pvAllocator)
544 {
545 RTMemFree(pSgBuf);
546 return VERR_TRY_AGAIN;
547 }
548 }
549 else
550 {
551 /*
552 * Drop the frame if its segment is too big.
553 */
554 if (pGso->cbHdrsTotal + pGso->cbMaxSeg >= DRVNAT_MAXFRAMESIZE)
555 {
556 Log(("drvNATNetowrkUp_AllocBuf: drops over-sized frame (%u bytes), returns VERR_INVALID_PARAMETER\n",
557 pGso->cbHdrsTotal + pGso->cbMaxSeg));
558 RTMemFree(pSgBuf);
559 return VERR_INVALID_PARAMETER;
560 }
561
562 pSgBuf->pvUser = RTMemDup(pGso, sizeof(*pGso));
563 pSgBuf->pvAllocator = NULL;
564 pSgBuf->aSegs[0].cbSeg = RT_ALIGN_Z(cbMin, 16);
565 pSgBuf->aSegs[0].pvSeg = RTMemAlloc(pSgBuf->aSegs[0].cbSeg);
566 if (!pSgBuf->pvUser || !pSgBuf->aSegs[0].pvSeg)
567 {
568 RTMemFree(pSgBuf->aSegs[0].pvSeg);
569 RTMemFree(pSgBuf->pvUser);
570 RTMemFree(pSgBuf);
571 return VERR_TRY_AGAIN;
572 }
573 }
574
575 /*
576 * Initialize the S/G buffer and return.
577 */
578 pSgBuf->fFlags = PDMSCATTERGATHER_FLAGS_MAGIC | PDMSCATTERGATHER_FLAGS_OWNER_1;
579 pSgBuf->cbUsed = 0;
580 pSgBuf->cbAvailable = pSgBuf->aSegs[0].cbSeg;
581 pSgBuf->cSegs = 1;
582
583#if 0 /* poison */
584 memset(pSgBuf->aSegs[0].pvSeg, 'F', pSgBuf->aSegs[0].cbSeg);
585#endif
586 *ppSgBuf = pSgBuf;
587 return VINF_SUCCESS;
588}
589
590/**
591 * @interface_method_impl{PDMINETWORKUP,pfnFreeBuf}
592 */
593static DECLCALLBACK(int) drvNATNetworkUp_FreeBuf(PPDMINETWORKUP pInterface, PPDMSCATTERGATHER pSgBuf)
594{
595 PDRVNAT pThis = RT_FROM_MEMBER(pInterface, DRVNAT, INetworkUp);
596 Assert(RTCritSectIsOwner(&pThis->XmitLock));
597 drvNATFreeSgBuf(pThis, pSgBuf);
598 return VINF_SUCCESS;
599}
600
601/**
602 * @interface_method_impl{PDMINETWORKUP,pfnSendBuf}
603 */
604static DECLCALLBACK(int) drvNATNetworkUp_SendBuf(PPDMINETWORKUP pInterface, PPDMSCATTERGATHER pSgBuf, bool fOnWorkerThread)
605{
606 RT_NOREF(fOnWorkerThread);
607 PDRVNAT pThis = RT_FROM_MEMBER(pInterface, DRVNAT, INetworkUp);
608 Assert((pSgBuf->fFlags & PDMSCATTERGATHER_FLAGS_OWNER_MASK) == PDMSCATTERGATHER_FLAGS_OWNER_1);
609 Assert(RTCritSectIsOwner(&pThis->XmitLock));
610
611 int rc;
612 if (pThis->pSlirpThread->enmState == PDMTHREADSTATE_RUNNING)
613 {
614 rc = RTReqQueueCallEx(pThis->hSlirpReqQueue, NULL /*ppReq*/, 0 /*cMillies*/,
615 RTREQFLAGS_VOID | RTREQFLAGS_NO_WAIT,
616 (PFNRT)drvNATSendWorker, 2, pThis, pSgBuf);
617 if (RT_SUCCESS(rc))
618 {
619 drvNATNotifyNATThread(pThis, "drvNATNetworkUp_SendBuf");
620 return VINF_SUCCESS;
621 }
622
623 rc = VERR_NET_NO_BUFFER_SPACE;
624 }
625 else
626 rc = VERR_NET_DOWN;
627 drvNATFreeSgBuf(pThis, pSgBuf);
628 return rc;
629}
630
631/**
632 * @interface_method_impl{PDMINETWORKUP,pfnEndXmit}
633 */
634static DECLCALLBACK(void) drvNATNetworkUp_EndXmit(PPDMINETWORKUP pInterface)
635{
636 PDRVNAT pThis = RT_FROM_MEMBER(pInterface, DRVNAT, INetworkUp);
637 RTCritSectLeave(&pThis->XmitLock);
638}
639
640/**
641 * Get the NAT thread out of poll/WSAWaitForMultipleEvents
642 */
643static void drvNATNotifyNATThread(PDRVNAT pThis, const char *pszWho)
644{
645 RT_NOREF(pszWho);
646 int rc;
647#ifndef RT_OS_WINDOWS
648 /* kick poll() */
649 size_t cbIgnored;
650 rc = RTPipeWrite(pThis->hPipeWrite, "", 1, &cbIgnored);
651#else
652 /* kick WSAWaitForMultipleEvents */
653 rc = WSASetEvent(pThis->hWakeupEvent);
654#endif
655 AssertRC(rc);
656}
657
658/**
659 * @interface_method_impl{PDMINETWORKUP,pfnSetPromiscuousMode}
660 */
661static DECLCALLBACK(void) drvNATNetworkUp_SetPromiscuousMode(PPDMINETWORKUP pInterface, bool fPromiscuous)
662{
663 RT_NOREF(pInterface, fPromiscuous);
664 LogFlow(("drvNATNetworkUp_SetPromiscuousMode: fPromiscuous=%d\n", fPromiscuous));
665 /* nothing to do */
666}
667
668/**
669 * Worker function for drvNATNetworkUp_NotifyLinkChanged().
670 * @thread "NAT" thread.
671 */
672static DECLCALLBACK(void) drvNATNotifyLinkChangedWorker(PDRVNAT pThis, PDMNETWORKLINKSTATE enmLinkState)
673{
674 pThis->enmLinkState = pThis->enmLinkStateWant = enmLinkState;
675 switch (enmLinkState)
676 {
677 case PDMNETWORKLINKSTATE_UP:
678 LogRel(("NAT: Link up\n"));
679 slirp_link_up(pThis->pNATState);
680 break;
681
682 case PDMNETWORKLINKSTATE_DOWN:
683 case PDMNETWORKLINKSTATE_DOWN_RESUME:
684 LogRel(("NAT: Link down\n"));
685 slirp_link_down(pThis->pNATState);
686 break;
687
688 default:
689 AssertMsgFailed(("drvNATNetworkUp_NotifyLinkChanged: unexpected link state %d\n", enmLinkState));
690 }
691}
692
693/**
694 * Notification on link status changes.
695 *
696 * @param pInterface Pointer to the interface structure containing the called function pointer.
697 * @param enmLinkState The new link state.
698 * @thread EMT
699 */
700static DECLCALLBACK(void) drvNATNetworkUp_NotifyLinkChanged(PPDMINETWORKUP pInterface, PDMNETWORKLINKSTATE enmLinkState)
701{
702 PDRVNAT pThis = RT_FROM_MEMBER(pInterface, DRVNAT, INetworkUp);
703
704 LogFlow(("drvNATNetworkUp_NotifyLinkChanged: enmLinkState=%d\n", enmLinkState));
705
706 /* Don't queue new requests if the NAT thread is not running (e.g. paused,
707 * stopping), otherwise we would deadlock. Memorize the change. */
708 if (pThis->pSlirpThread->enmState != PDMTHREADSTATE_RUNNING)
709 {
710 pThis->enmLinkStateWant = enmLinkState;
711 return;
712 }
713
714 PRTREQ pReq;
715 int rc = RTReqQueueCallEx(pThis->hSlirpReqQueue, &pReq, 0 /*cMillies*/, RTREQFLAGS_VOID,
716 (PFNRT)drvNATNotifyLinkChangedWorker, 2, pThis, enmLinkState);
717 if (rc == VERR_TIMEOUT)
718 {
719 drvNATNotifyNATThread(pThis, "drvNATNetworkUp_NotifyLinkChanged");
720 rc = RTReqWait(pReq, RT_INDEFINITE_WAIT);
721 AssertRC(rc);
722 }
723 else
724 AssertRC(rc);
725 RTReqRelease(pReq);
726}
727
728static DECLCALLBACK(void) drvNATNotifyApplyPortForwardCommand(PDRVNAT pThis, bool fRemove,
729 bool fUdp, const char *pHostIp,
730 uint16_t u16HostPort, const char *pGuestIp, uint16_t u16GuestPort)
731{
732 struct in_addr guestIp, hostIp;
733
734 if ( pHostIp == NULL
735 || inet_aton(pHostIp, &hostIp) == 0)
736 hostIp.s_addr = INADDR_ANY;
737
738 if ( pGuestIp == NULL
739 || inet_aton(pGuestIp, &guestIp) == 0)
740 guestIp.s_addr = pThis->GuestIP;
741
742 if (fRemove)
743 slirp_remove_redirect(pThis->pNATState, fUdp, hostIp, u16HostPort, guestIp, u16GuestPort);
744 else
745 slirp_add_redirect(pThis->pNATState, fUdp, hostIp, u16HostPort, guestIp, u16GuestPort);
746}
747
748static DECLCALLBACK(int) drvNATNetworkNatConfigRedirect(PPDMINETWORKNATCONFIG pInterface, bool fRemove,
749 bool fUdp, const char *pHostIp, uint16_t u16HostPort,
750 const char *pGuestIp, uint16_t u16GuestPort)
751{
752 LogFlowFunc(("fRemove=%d, fUdp=%d, pHostIp=%s, u16HostPort=%u, pGuestIp=%s, u16GuestPort=%u\n",
753 RT_BOOL(fRemove), RT_BOOL(fUdp), pHostIp, u16HostPort, pGuestIp, u16GuestPort));
754 PDRVNAT pThis = RT_FROM_MEMBER(pInterface, DRVNAT, INetworkNATCfg);
755 /* Execute the command directly if the VM is not running. */
756 int rc;
757 if (pThis->pSlirpThread->enmState != PDMTHREADSTATE_RUNNING)
758 {
759 drvNATNotifyApplyPortForwardCommand(pThis, fRemove, fUdp, pHostIp,
760 u16HostPort, pGuestIp,u16GuestPort);
761 rc = VINF_SUCCESS;
762 }
763 else
764 {
765 PRTREQ pReq;
766 rc = RTReqQueueCallEx(pThis->hSlirpReqQueue, &pReq, 0 /*cMillies*/, RTREQFLAGS_VOID,
767 (PFNRT)drvNATNotifyApplyPortForwardCommand, 7, pThis, fRemove,
768 fUdp, pHostIp, u16HostPort, pGuestIp, u16GuestPort);
769 if (rc == VERR_TIMEOUT)
770 {
771 drvNATNotifyNATThread(pThis, "drvNATNetworkNatConfigRedirect");
772 rc = RTReqWait(pReq, RT_INDEFINITE_WAIT);
773 AssertRC(rc);
774 }
775 else
776 AssertRC(rc);
777
778 RTReqRelease(pReq);
779 }
780 return rc;
781}
782
783/**
784 * NAT thread handling the slirp stuff.
785 *
786 * The slirp implementation is single-threaded so we execute this enginre in a
787 * dedicated thread. We take care that this thread does not become the
788 * bottleneck: If the guest wants to send, a request is enqueued into the
789 * hSlirpReqQueue and handled asynchronously by this thread. If this thread
790 * wants to deliver packets to the guest, it enqueues a request into
791 * hRecvReqQueue which is later handled by the Recv thread.
792 */
793static DECLCALLBACK(int) drvNATAsyncIoThread(PPDMDRVINS pDrvIns, PPDMTHREAD pThread)
794{
795 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
796 int nFDs = -1;
797#ifdef RT_OS_WINDOWS
798 HANDLE *phEvents = slirp_get_events(pThis->pNATState);
799 unsigned int cBreak = 0;
800#else /* RT_OS_WINDOWS */
801 unsigned int cPollNegRet = 0;
802#endif /* !RT_OS_WINDOWS */
803
804 LogFlow(("drvNATAsyncIoThread: pThis=%p\n", pThis));
805
806 if (pThread->enmState == PDMTHREADSTATE_INITIALIZING)
807 return VINF_SUCCESS;
808
809 if (pThis->enmLinkStateWant != pThis->enmLinkState)
810 drvNATNotifyLinkChangedWorker(pThis, pThis->enmLinkStateWant);
811
812 /*
813 * Polling loop.
814 */
815 while (pThread->enmState == PDMTHREADSTATE_RUNNING)
816 {
817 /*
818 * To prevent concurrent execution of sending/receiving threads
819 */
820#ifndef RT_OS_WINDOWS
821 nFDs = slirp_get_nsock(pThis->pNATState);
822 /* allocation for all sockets + Management pipe */
823 struct pollfd *polls = (struct pollfd *)RTMemAlloc((1 + nFDs) * sizeof(struct pollfd) + sizeof(uint32_t));
824 if (polls == NULL)
825 return VERR_NO_MEMORY;
826
827 /* don't pass the management pipe */
828 slirp_select_fill(pThis->pNATState, &nFDs, &polls[1]);
829
830 polls[0].fd = RTPipeToNative(pThis->hPipeRead);
831 /* POLLRDBAND usually doesn't used on Linux but seems used on Solaris */
832 polls[0].events = POLLRDNORM | POLLPRI | POLLRDBAND;
833 polls[0].revents = 0;
834
835 int cChangedFDs = poll(polls, nFDs + 1, slirp_get_timeout_ms(pThis->pNATState));
836 if (cChangedFDs < 0)
837 {
838 if (errno == EINTR)
839 {
840 Log2(("NAT: signal was caught while sleep on poll\n"));
841 /* No error, just process all outstanding requests but don't wait */
842 cChangedFDs = 0;
843 }
844 else if (cPollNegRet++ > 128)
845 {
846 LogRel(("NAT: Poll returns (%s) suppressed %d\n", strerror(errno), cPollNegRet));
847 cPollNegRet = 0;
848 }
849 }
850
851 if (cChangedFDs >= 0)
852 {
853 slirp_select_poll(pThis->pNATState, &polls[1], nFDs);
854 if (polls[0].revents & (POLLRDNORM|POLLPRI|POLLRDBAND))
855 {
856 /* drain the pipe
857 *
858 * Note! drvNATSend decoupled so we don't know how many times
859 * device's thread sends before we've entered multiplex,
860 * so to avoid false alarm drain pipe here to the very end
861 *
862 * @todo: Probably we should counter drvNATSend to count how
863 * deep pipe has been filed before drain.
864 *
865 */
866 /** @todo XXX: Make it reading exactly we need to drain the
867 * pipe.*/
868 char ch;
869 size_t cbRead;
870 RTPipeRead(pThis->hPipeRead, &ch, 1, &cbRead);
871 }
872 }
873 /* process _all_ outstanding requests but don't wait */
874 RTReqQueueProcess(pThis->hSlirpReqQueue, 0);
875 RTMemFree(polls);
876
877#else /* RT_OS_WINDOWS */
878 nFDs = -1;
879 slirp_select_fill(pThis->pNATState, &nFDs);
880 DWORD dwEvent = WSAWaitForMultipleEvents(nFDs, phEvents, FALSE,
881 slirp_get_timeout_ms(pThis->pNATState),
882 /* :fAlertable */ TRUE);
883 AssertCompile(WSA_WAIT_EVENT_0 == 0);
884 if ( (/*dwEvent < WSA_WAIT_EVENT_0 ||*/ dwEvent > WSA_WAIT_EVENT_0 + nFDs - 1)
885 && dwEvent != WSA_WAIT_TIMEOUT && dwEvent != WSA_WAIT_IO_COMPLETION)
886 {
887 int error = WSAGetLastError();
888 LogRel(("NAT: WSAWaitForMultipleEvents returned %d (error %d)\n", dwEvent, error));
889 RTAssertPanic();
890 }
891
892 if (dwEvent == WSA_WAIT_TIMEOUT)
893 {
894 /* only check for slow/fast timers */
895 slirp_select_poll(pThis->pNATState, /* fTimeout=*/true);
896 continue;
897 }
898 /* poll the sockets in any case */
899 Log2(("%s: poll\n", __FUNCTION__));
900 slirp_select_poll(pThis->pNATState, /* fTimeout=*/false);
901 /* process _all_ outstanding requests but don't wait */
902 RTReqQueueProcess(pThis->hSlirpReqQueue, 0);
903# ifdef VBOX_NAT_DELAY_HACK
904 if (cBreak++ > 128)
905 {
906 cBreak = 0;
907 RTThreadSleep(2);
908 }
909# endif
910#endif /* RT_OS_WINDOWS */
911 }
912
913 return VINF_SUCCESS;
914}
915
916
917/**
918 * Unblock the send thread so it can respond to a state change.
919 *
920 * @returns VBox status code.
921 * @param pDevIns The pcnet device instance.
922 * @param pThread The send thread.
923 */
924static DECLCALLBACK(int) drvNATAsyncIoWakeup(PPDMDRVINS pDrvIns, PPDMTHREAD pThread)
925{
926 RT_NOREF(pThread);
927 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
928
929 drvNATNotifyNATThread(pThis, "drvNATAsyncIoWakeup");
930 return VINF_SUCCESS;
931}
932
933
934static DECLCALLBACK(int) drvNATHostResThread(PPDMDRVINS pDrvIns, PPDMTHREAD pThread)
935{
936 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
937
938 if (pThread->enmState == PDMTHREADSTATE_INITIALIZING)
939 return VINF_SUCCESS;
940
941 while (pThread->enmState == PDMTHREADSTATE_RUNNING)
942 {
943 RTReqQueueProcess(pThis->hHostResQueue, RT_INDEFINITE_WAIT);
944 }
945
946 return VINF_SUCCESS;
947}
948
949
950static DECLCALLBACK(int) drvNATReqQueueInterrupt()
951{
952 /*
953 * RTReqQueueProcess loops until request returns a warning or info
954 * status code (other than VINF_SUCCESS).
955 */
956 return VINF_INTERRUPTED;
957}
958
959
960static DECLCALLBACK(int) drvNATHostResWakeup(PPDMDRVINS pDrvIns, PPDMTHREAD pThread)
961{
962 RT_NOREF(pThread);
963 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
964 Assert(pThis != NULL);
965
966 int rc;
967 rc = RTReqQueueCallEx(pThis->hHostResQueue, NULL /*ppReq*/, 0 /*cMillies*/,
968 RTREQFLAGS_IPRT_STATUS | RTREQFLAGS_NO_WAIT,
969 (PFNRT)drvNATReqQueueInterrupt, 0);
970 return rc;
971}
972
973
974/**
975 * Function called by slirp to check if it's possible to feed incoming data to the network port.
976 * @returns 1 if possible.
977 * @returns 0 if not possible.
978 */
979int slirp_can_output(void *pvUser)
980{
981 RT_NOREF(pvUser);
982 return 1;
983}
984
985void slirp_push_recv_thread(void *pvUser)
986{
987 PDRVNAT pThis = (PDRVNAT)pvUser;
988 Assert(pThis);
989 drvNATUrgRecvWakeup(pThis->pDrvIns, pThis->pUrgRecvThread);
990}
991
992void slirp_urg_output(void *pvUser, struct mbuf *m, const uint8_t *pu8Buf, int cb)
993{
994 PDRVNAT pThis = (PDRVNAT)pvUser;
995 Assert(pThis);
996
997 /* don't queue new requests when the NAT thread is about to stop */
998 if (pThis->pSlirpThread->enmState != PDMTHREADSTATE_RUNNING)
999 return;
1000
1001 ASMAtomicIncU32(&pThis->cUrgPkts);
1002 int rc = RTReqQueueCallEx(pThis->hUrgRecvReqQueue, NULL /*ppReq*/, 0 /*cMillies*/, RTREQFLAGS_VOID | RTREQFLAGS_NO_WAIT,
1003 (PFNRT)drvNATUrgRecvWorker, 4, pThis, pu8Buf, cb, m);
1004 AssertRC(rc);
1005 drvNATUrgRecvWakeup(pThis->pDrvIns, pThis->pUrgRecvThread);
1006}
1007
1008/**
1009 * Function called by slirp to wake up device after VERR_TRY_AGAIN
1010 */
1011void slirp_output_pending(void *pvUser)
1012{
1013 PDRVNAT pThis = (PDRVNAT)pvUser;
1014 Assert(pThis);
1015 LogFlowFuncEnter();
1016 pThis->pIAboveNet->pfnXmitPending(pThis->pIAboveNet);
1017 LogFlowFuncLeave();
1018}
1019
1020/**
1021 * Function called by slirp to feed incoming data to the NIC.
1022 */
1023void slirp_output(void *pvUser, struct mbuf *m, const uint8_t *pu8Buf, int cb)
1024{
1025 PDRVNAT pThis = (PDRVNAT)pvUser;
1026 Assert(pThis);
1027
1028 LogFlow(("slirp_output BEGIN %p %d\n", pu8Buf, cb));
1029 Log6(("slirp_output: pu8Buf=%p cb=%#x (pThis=%p)\n%.*Rhxd\n", pu8Buf, cb, pThis, cb, pu8Buf));
1030
1031 /* don't queue new requests when the NAT thread is about to stop */
1032 if (pThis->pSlirpThread->enmState != PDMTHREADSTATE_RUNNING)
1033 return;
1034
1035 ASMAtomicIncU32(&pThis->cPkts);
1036 int rc = RTReqQueueCallEx(pThis->hRecvReqQueue, NULL /*ppReq*/, 0 /*cMillies*/, RTREQFLAGS_VOID | RTREQFLAGS_NO_WAIT,
1037 (PFNRT)drvNATRecvWorker, 4, pThis, pu8Buf, cb, m);
1038 AssertRC(rc);
1039 drvNATRecvWakeup(pThis->pDrvIns, pThis->pRecvThread);
1040 STAM_COUNTER_INC(&pThis->StatQueuePktSent);
1041 LogFlowFuncLeave();
1042}
1043
1044
1045/*
1046 * Call a function on the slirp thread.
1047 */
1048int slirp_call(void *pvUser, PRTREQ *ppReq, RTMSINTERVAL cMillies,
1049 unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, ...)
1050{
1051 PDRVNAT pThis = (PDRVNAT)pvUser;
1052 Assert(pThis);
1053
1054 int rc;
1055
1056 va_list va;
1057 va_start(va, cArgs);
1058
1059 rc = RTReqQueueCallV(pThis->hSlirpReqQueue, ppReq, cMillies, fFlags, pfnFunction, cArgs, va);
1060
1061 va_end(va);
1062
1063 if (RT_SUCCESS(rc))
1064 drvNATNotifyNATThread(pThis, "slirp_vcall");
1065
1066 return rc;
1067}
1068
1069
1070/*
1071 * Call a function on the host resolver thread.
1072 */
1073int slirp_call_hostres(void *pvUser, PRTREQ *ppReq, RTMSINTERVAL cMillies,
1074 unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, ...)
1075{
1076 PDRVNAT pThis = (PDRVNAT)pvUser;
1077 Assert(pThis);
1078
1079 int rc;
1080
1081 AssertReturn((pThis->hHostResQueue != NIL_RTREQQUEUE), VERR_INVALID_STATE);
1082 AssertReturn((pThis->pHostResThread != NULL), VERR_INVALID_STATE);
1083
1084 va_list va;
1085 va_start(va, cArgs);
1086
1087 rc = RTReqQueueCallV(pThis->hHostResQueue, ppReq, cMillies, fFlags,
1088 pfnFunction, cArgs, va);
1089
1090 va_end(va);
1091 return rc;
1092}
1093
1094
1095#if HAVE_NOTIFICATION_FOR_DNS_UPDATE && !defined(RT_OS_DARWIN)
1096/**
1097 * @interface_method_impl{PDMINETWORKNATCONFIG,pfnNotifyDnsChanged}
1098 *
1099 * We are notified that host's resolver configuration has changed. In
1100 * the current setup we don't get any details and just reread that
1101 * information ourselves.
1102 */
1103static DECLCALLBACK(void) drvNATNotifyDnsChanged(PPDMINETWORKNATCONFIG pInterface)
1104{
1105 PDRVNAT pThis = RT_FROM_MEMBER(pInterface, DRVNAT, INetworkNATCfg);
1106 drvNATUpdateDNS(pThis, /* fFlapLink */ true);
1107}
1108#endif
1109
1110#ifdef RT_OS_DARWIN
1111/**
1112 * Callback for the SystemConfiguration framework to notify us whenever the DNS
1113 * server changes.
1114 *
1115 * @returns nothing.
1116 * @param hDynStor The DynamicStore handle.
1117 * @param hChangedKey Array of changed keys we watch for.
1118 * @param pvUser Opaque user data (NAT driver instance).
1119 */
1120static DECLCALLBACK(void) drvNatDnsChanged(SCDynamicStoreRef hDynStor, CFArrayRef hChangedKeys, void *pvUser)
1121{
1122 PDRVNAT pThis = (PDRVNAT)pvUser;
1123
1124 Log2(("NAT: System configuration has changed\n"));
1125
1126 /* Check if any of parameters we are interested in were actually changed. If the size
1127 * of hChangedKeys is 0, it means that SCDynamicStore has been restarted. */
1128 if (hChangedKeys && CFArrayGetCount(hChangedKeys) > 0)
1129 {
1130 /* Look to the updated parameters in particular. */
1131 CFStringRef pDNSKey = CFSTR("State:/Network/Global/DNS");
1132
1133 if (CFArrayContainsValue(hChangedKeys, CFRangeMake(0, CFArrayGetCount(hChangedKeys)), pDNSKey))
1134 {
1135 LogRel(("NAT: DNS servers changed, triggering reconnect\n"));
1136#if 0
1137 CFDictionaryRef hDnsDict = (CFDictionaryRef)SCDynamicStoreCopyValue(hDynStor, pDNSKey);
1138 if (hDnsDict)
1139 {
1140 CFArrayRef hArrAddresses = (CFArrayRef)CFDictionaryGetValue(hDnsDict, kSCPropNetDNSServerAddresses);
1141 if (hArrAddresses && CFArrayGetCount(hArrAddresses) > 0)
1142 {
1143 /* Dump DNS servers list. */
1144 for (int i = 0; i < CFArrayGetCount(hArrAddresses); i++)
1145 {
1146 CFStringRef pDNSAddrStr = (CFStringRef)CFArrayGetValueAtIndex(hArrAddresses, i);
1147 const char *pszDNSAddr = pDNSAddrStr ? CFStringGetCStringPtr(pDNSAddrStr, CFStringGetSystemEncoding()) : NULL;
1148 LogRel(("NAT: New DNS server#%d: %s\n", i, pszDNSAddr ? pszDNSAddr : "None"));
1149 }
1150 }
1151 else
1152 LogRel(("NAT: DNS server list is empty (1)\n"));
1153
1154 CFRelease(hDnsDict);
1155 }
1156 else
1157 LogRel(("NAT: DNS server list is empty (2)\n"));
1158#else
1159 RT_NOREF(hDynStor);
1160#endif
1161 drvNATUpdateDNS(pThis, /* fFlapLink */ true);
1162 }
1163 else
1164 Log2(("NAT: No DNS changes detected\n"));
1165 }
1166 else
1167 Log2(("NAT: SCDynamicStore has been restarted\n"));
1168}
1169#endif
1170
1171/**
1172 * @interface_method_impl{PDMIBASE,pfnQueryInterface}
1173 */
1174static DECLCALLBACK(void *) drvNATQueryInterface(PPDMIBASE pInterface, const char *pszIID)
1175{
1176 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
1177 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
1178
1179 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDrvIns->IBase);
1180 PDMIBASE_RETURN_INTERFACE(pszIID, PDMINETWORKUP, &pThis->INetworkUp);
1181 PDMIBASE_RETURN_INTERFACE(pszIID, PDMINETWORKNATCONFIG, &pThis->INetworkNATCfg);
1182 return NULL;
1183}
1184
1185
1186/**
1187 * Get the MAC address into the slirp stack.
1188 *
1189 * Called by drvNATLoadDone and drvNATPowerOn.
1190 */
1191static void drvNATSetMac(PDRVNAT pThis)
1192{
1193#if 0 /* XXX: do we still need this for anything? */
1194 if (pThis->pIAboveConfig)
1195 {
1196 RTMAC Mac;
1197 pThis->pIAboveConfig->pfnGetMac(pThis->pIAboveConfig, &Mac);
1198 }
1199#else
1200 RT_NOREF(pThis);
1201#endif
1202}
1203
1204
1205/**
1206 * After loading we have to pass the MAC address of the ethernet device to the slirp stack.
1207 * Otherwise the guest is not reachable until it performs a DHCP request or an ARP request
1208 * (usually done during guest boot).
1209 */
1210static DECLCALLBACK(int) drvNATLoadDone(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM)
1211{
1212 RT_NOREF(pSSM);
1213 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
1214 drvNATSetMac(pThis);
1215 return VINF_SUCCESS;
1216}
1217
1218
1219/**
1220 * Some guests might not use DHCP to retrieve an IP but use a static IP.
1221 */
1222static DECLCALLBACK(void) drvNATPowerOn(PPDMDRVINS pDrvIns)
1223{
1224 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
1225 drvNATSetMac(pThis);
1226}
1227
1228
1229/**
1230 * @interface_method_impl{PDMDRVREG,pfnResume}
1231 */
1232static DECLCALLBACK(void) drvNATResume(PPDMDRVINS pDrvIns)
1233{
1234 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
1235 VMRESUMEREASON enmReason = PDMDrvHlpVMGetResumeReason(pDrvIns);
1236
1237 switch (enmReason)
1238 {
1239 case VMRESUMEREASON_HOST_RESUME:
1240 bool fFlapLink;
1241#if HAVE_NOTIFICATION_FOR_DNS_UPDATE
1242 /* let event handler do it if necessary */
1243 fFlapLink = false;
1244#else
1245 /* XXX: when in doubt, use brute force */
1246 fFlapLink = true;
1247#endif
1248 drvNATUpdateDNS(pThis, fFlapLink);
1249 return;
1250 default: /* Ignore every other resume reason. */
1251 /* do nothing */
1252 return;
1253 }
1254}
1255
1256
1257static DECLCALLBACK(int) drvNATReinitializeHostNameResolving(PDRVNAT pThis)
1258{
1259 slirpReleaseDnsSettings(pThis->pNATState);
1260 slirpInitializeDnsSettings(pThis->pNATState);
1261 return VINF_SUCCESS;
1262}
1263
1264/**
1265 * This function at this stage could be called from two places, but both from non-NAT thread,
1266 * - drvNATResume (EMT?)
1267 * - drvNatDnsChanged (darwin, GUI or main) "listener"
1268 * When Main's interface IHost will support host network configuration change event on every host,
1269 * we won't call it from drvNATResume, but from listener of Main event in the similar way it done
1270 * for port-forwarding, and it wan't be on GUI/main thread, but on EMT thread only.
1271 *
1272 * Thread here is important, because we need to change DNS server list and domain name (+ perhaps,
1273 * search string) at runtime (VBOX_NAT_ENFORCE_INTERNAL_DNS_UPDATE), we can do it safely on NAT thread,
1274 * so with changing other variables (place where we handle update) the main mechanism of update
1275 * _won't_ be changed, the only thing will change is drop of fFlapLink parameter.
1276 */
1277DECLINLINE(void) drvNATUpdateDNS(PDRVNAT pThis, bool fFlapLink)
1278{
1279 int strategy = slirp_host_network_configuration_change_strategy_selector(pThis->pNATState);
1280 switch (strategy)
1281 {
1282 case VBOX_NAT_DNS_DNSPROXY:
1283 {
1284 /**
1285 * XXX: Here or in _strategy_selector we should deal with network change
1286 * in "network change" scenario domain name change we have to update guest lease
1287 * forcibly.
1288 * Note at that built-in dhcp also updates DNS information on NAT thread.
1289 */
1290 /**
1291 * It's unsafe to to do it directly on non-NAT thread
1292 * so we schedule the worker and kick the NAT thread.
1293 */
1294 int rc = RTReqQueueCallEx(pThis->hSlirpReqQueue, NULL /*ppReq*/, 0 /*cMillies*/,
1295 RTREQFLAGS_VOID | RTREQFLAGS_NO_WAIT,
1296 (PFNRT)drvNATReinitializeHostNameResolving, 1, pThis);
1297 if (RT_SUCCESS(rc))
1298 drvNATNotifyNATThread(pThis, "drvNATUpdateDNS");
1299
1300 return;
1301 }
1302
1303 case VBOX_NAT_DNS_EXTERNAL:
1304 /*
1305 * Host resumed from a suspend and the network might have changed.
1306 * Disconnect the guest from the network temporarily to let it pick up the changes.
1307 */
1308 if (fFlapLink)
1309 pThis->pIAboveConfig->pfnSetLinkState(pThis->pIAboveConfig,
1310 PDMNETWORKLINKSTATE_DOWN_RESUME);
1311 return;
1312
1313 case VBOX_NAT_DNS_HOSTRESOLVER:
1314 default:
1315 return;
1316 }
1317}
1318
1319
1320/**
1321 * Info handler.
1322 */
1323static DECLCALLBACK(void) drvNATInfo(PPDMDRVINS pDrvIns, PCDBGFINFOHLP pHlp, const char *pszArgs)
1324{
1325 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
1326 slirp_info(pThis->pNATState, pHlp, pszArgs);
1327}
1328
1329#ifdef VBOX_WITH_DNSMAPPING_IN_HOSTRESOLVER
1330static int drvNATConstructDNSMappings(unsigned iInstance, PDRVNAT pThis, PCFGMNODE pMappingsCfg)
1331{
1332 PPDMDRVINS pDrvIns = pThis->pDrvIns;
1333 PCPDMDRVHLPR3 pHlp = pDrvIns->pHlpR3;
1334
1335 RT_NOREF(iInstance);
1336 int rc = VINF_SUCCESS;
1337 LogFlowFunc(("ENTER: iInstance:%d\n", iInstance));
1338 for (PCFGMNODE pNode = pHlp->pfnCFGMGetFirstChild(pMappingsCfg); pNode; pNode = pHlp->pfnCFGMGetNextChild(pNode))
1339 {
1340 if (!pHlp->pfnCFGMAreValuesValid(pNode, "HostName\0HostNamePattern\0HostIP\0"))
1341 return PDMDRV_SET_ERROR(pThis->pDrvIns, VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES,
1342 N_("Unknown configuration in dns mapping"));
1343 char szHostNameOrPattern[255];
1344 bool fPattern = false;
1345 RT_ZERO(szHostNameOrPattern);
1346 GET_STRING(rc, pDrvIns, pNode, "HostName", szHostNameOrPattern[0], sizeof(szHostNameOrPattern));
1347 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
1348 {
1349 GET_STRING(rc, pDrvIns, pNode, "HostNamePattern", szHostNameOrPattern[0], sizeof(szHostNameOrPattern));
1350 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
1351 {
1352 char szNodeName[225];
1353 RT_ZERO(szNodeName);
1354 pHlp->pfnCFGMGetName(pNode, szNodeName, sizeof(szNodeName));
1355 LogRel(("NAT: Neither 'HostName' nor 'HostNamePattern' is specified for mapping %s\n", szNodeName));
1356 continue;
1357 }
1358 fPattern = true;
1359 }
1360 struct in_addr HostIP;
1361 RT_ZERO(HostIP);
1362 GETIP_DEF(rc, pDrvIns, pNode, HostIP, INADDR_ANY);
1363 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
1364 {
1365 LogRel(("NAT: DNS mapping %s is ignored (address not pointed)\n", szHostNameOrPattern));
1366 continue;
1367 }
1368 slirp_add_host_resolver_mapping(pThis->pNATState, szHostNameOrPattern, fPattern, HostIP.s_addr);
1369 }
1370 LogFlowFunc(("LEAVE: %Rrc\n", rc));
1371 return rc;
1372}
1373#endif /* !VBOX_WITH_DNSMAPPING_IN_HOSTRESOLVER */
1374
1375
1376/**
1377 * Sets up the redirectors.
1378 *
1379 * @returns VBox status code.
1380 * @param pCfg The configuration handle.
1381 */
1382static int drvNATConstructRedir(unsigned iInstance, PDRVNAT pThis, PCFGMNODE pCfg, PRTNETADDRIPV4 pNetwork)
1383{
1384 PPDMDRVINS pDrvIns = pThis->pDrvIns;
1385 PCPDMDRVHLPR3 pHlp = pDrvIns->pHlpR3;
1386
1387 RT_NOREF(pNetwork); /** @todo figure why pNetwork isn't used */
1388
1389 PCFGMNODE pPFTree = pHlp->pfnCFGMGetChild(pCfg, "PortForwarding");
1390 if (pPFTree == NULL)
1391 return VINF_SUCCESS;
1392
1393 /*
1394 * Enumerate redirections.
1395 */
1396 for (PCFGMNODE pNode = pHlp->pfnCFGMGetFirstChild(pPFTree); pNode; pNode = pHlp->pfnCFGMGetNextChild(pNode))
1397 {
1398 /*
1399 * Validate the port forwarding config.
1400 */
1401 if (!pHlp->pfnCFGMAreValuesValid(pNode, "Name\0Protocol\0UDP\0HostPort\0GuestPort\0GuestIP\0BindIP\0"))
1402 return PDMDRV_SET_ERROR(pDrvIns, VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES,
1403 N_("Unknown configuration in port forwarding"));
1404
1405 /* protocol type */
1406 bool fUDP;
1407 char szProtocol[32];
1408 int rc;
1409 GET_STRING(rc, pDrvIns, pNode, "Protocol", szProtocol[0], sizeof(szProtocol));
1410 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
1411 {
1412 fUDP = false;
1413 GET_BOOL(rc, pDrvIns, pNode, "UDP", fUDP);
1414 }
1415 else if (RT_SUCCESS(rc))
1416 {
1417 if (!RTStrICmp(szProtocol, "TCP"))
1418 fUDP = false;
1419 else if (!RTStrICmp(szProtocol, "UDP"))
1420 fUDP = true;
1421 else
1422 return PDMDrvHlpVMSetError(pDrvIns, VERR_INVALID_PARAMETER, RT_SRC_POS,
1423 N_("NAT#%d: Invalid configuration value for \"Protocol\": \"%s\""),
1424 iInstance, szProtocol);
1425 }
1426 else
1427 return PDMDrvHlpVMSetError(pDrvIns, rc, RT_SRC_POS,
1428 N_("NAT#%d: configuration query for \"Protocol\" failed"),
1429 iInstance);
1430 /* host port */
1431 int32_t iHostPort;
1432 GET_S32_STRICT(rc, pDrvIns, pNode, "HostPort", iHostPort);
1433
1434 /* guest port */
1435 int32_t iGuestPort;
1436 GET_S32_STRICT(rc, pDrvIns, pNode, "GuestPort", iGuestPort);
1437
1438 /* host address ("BindIP" name is rather unfortunate given "HostPort" to go with it) */
1439 struct in_addr BindIP;
1440 RT_ZERO(BindIP);
1441 GETIP_DEF(rc, pDrvIns, pNode, BindIP, INADDR_ANY);
1442
1443 /* guest address */
1444 struct in_addr GuestIP;
1445 RT_ZERO(GuestIP);
1446 GETIP_DEF(rc, pDrvIns, pNode, GuestIP, INADDR_ANY);
1447
1448 /*
1449 * Call slirp about it.
1450 */
1451 if (slirp_add_redirect(pThis->pNATState, fUDP, BindIP, iHostPort, GuestIP, iGuestPort) < 0)
1452 return PDMDrvHlpVMSetError(pThis->pDrvIns, VERR_NAT_REDIR_SETUP, RT_SRC_POS,
1453 N_("NAT#%d: configuration error: failed to set up "
1454 "redirection of %d to %d. Probably a conflict with "
1455 "existing services or other rules"), iInstance, iHostPort,
1456 iGuestPort);
1457 } /* for each redir rule */
1458
1459 return VINF_SUCCESS;
1460}
1461
1462
1463/**
1464 * Destruct a driver instance.
1465 *
1466 * Most VM resources are freed by the VM. This callback is provided so that any non-VM
1467 * resources can be freed correctly.
1468 *
1469 * @param pDrvIns The driver instance data.
1470 */
1471static DECLCALLBACK(void) drvNATDestruct(PPDMDRVINS pDrvIns)
1472{
1473 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
1474 LogFlow(("drvNATDestruct:\n"));
1475 PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns);
1476
1477 if (pThis->pNATState)
1478 {
1479 slirp_term(pThis->pNATState);
1480 slirp_deregister_statistics(pThis->pNATState, pDrvIns);
1481#ifdef VBOX_WITH_STATISTICS
1482# define DRV_PROFILE_COUNTER(name, dsc) DEREGISTER_COUNTER(name, pThis)
1483# define DRV_COUNTING_COUNTER(name, dsc) DEREGISTER_COUNTER(name, pThis)
1484# include "counters.h"
1485#endif
1486 pThis->pNATState = NULL;
1487 }
1488
1489 RTReqQueueDestroy(pThis->hHostResQueue);
1490 pThis->hHostResQueue = NIL_RTREQQUEUE;
1491
1492 RTReqQueueDestroy(pThis->hSlirpReqQueue);
1493 pThis->hSlirpReqQueue = NIL_RTREQQUEUE;
1494
1495 RTReqQueueDestroy(pThis->hUrgRecvReqQueue);
1496 pThis->hUrgRecvReqQueue = NIL_RTREQQUEUE;
1497
1498 RTReqQueueDestroy(pThis->hRecvReqQueue);
1499 pThis->hRecvReqQueue = NIL_RTREQQUEUE;
1500
1501 RTSemEventDestroy(pThis->EventRecv);
1502 pThis->EventRecv = NIL_RTSEMEVENT;
1503
1504 RTSemEventDestroy(pThis->EventUrgRecv);
1505 pThis->EventUrgRecv = NIL_RTSEMEVENT;
1506
1507 if (RTCritSectIsInitialized(&pThis->DevAccessLock))
1508 RTCritSectDelete(&pThis->DevAccessLock);
1509
1510 if (RTCritSectIsInitialized(&pThis->XmitLock))
1511 RTCritSectDelete(&pThis->XmitLock);
1512
1513#ifndef RT_OS_WINDOWS
1514 RTPipeClose(pThis->hPipeRead);
1515 RTPipeClose(pThis->hPipeWrite);
1516#endif
1517
1518#ifdef RT_OS_DARWIN
1519 /* Cleanup the DNS watcher. */
1520 if (pThis->hRunLoopSrcDnsWatcher != NULL)
1521 {
1522 CFRunLoopRef hRunLoopMain = CFRunLoopGetMain();
1523 CFRetain(hRunLoopMain);
1524 CFRunLoopRemoveSource(hRunLoopMain, pThis->hRunLoopSrcDnsWatcher, kCFRunLoopCommonModes);
1525 CFRelease(hRunLoopMain);
1526 CFRelease(pThis->hRunLoopSrcDnsWatcher);
1527 pThis->hRunLoopSrcDnsWatcher = NULL;
1528 }
1529#endif
1530}
1531
1532
1533/**
1534 * Construct a NAT network transport driver instance.
1535 *
1536 * @copydoc FNPDMDRVCONSTRUCT
1537 */
1538static DECLCALLBACK(int) drvNATConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags)
1539{
1540 RT_NOREF(fFlags);
1541 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
1542 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);
1543 PCPDMDRVHLPR3 pHlp = pDrvIns->pHlpR3;
1544
1545 LogFlow(("drvNATConstruct:\n"));
1546
1547 /*
1548 * Init the static parts.
1549 */
1550 pThis->pDrvIns = pDrvIns;
1551 pThis->pNATState = NULL;
1552 pThis->pszTFTPPrefix = NULL;
1553 pThis->pszBootFile = NULL;
1554 pThis->pszNextServer = NULL;
1555 pThis->hSlirpReqQueue = NIL_RTREQQUEUE;
1556 pThis->hUrgRecvReqQueue = NIL_RTREQQUEUE;
1557 pThis->hHostResQueue = NIL_RTREQQUEUE;
1558 pThis->EventRecv = NIL_RTSEMEVENT;
1559 pThis->EventUrgRecv = NIL_RTSEMEVENT;
1560#ifdef RT_OS_DARWIN
1561 pThis->hRunLoopSrcDnsWatcher = NULL;
1562#endif
1563
1564 /* IBase */
1565 pDrvIns->IBase.pfnQueryInterface = drvNATQueryInterface;
1566
1567 /* INetwork */
1568 pThis->INetworkUp.pfnBeginXmit = drvNATNetworkUp_BeginXmit;
1569 pThis->INetworkUp.pfnAllocBuf = drvNATNetworkUp_AllocBuf;
1570 pThis->INetworkUp.pfnFreeBuf = drvNATNetworkUp_FreeBuf;
1571 pThis->INetworkUp.pfnSendBuf = drvNATNetworkUp_SendBuf;
1572 pThis->INetworkUp.pfnEndXmit = drvNATNetworkUp_EndXmit;
1573 pThis->INetworkUp.pfnSetPromiscuousMode = drvNATNetworkUp_SetPromiscuousMode;
1574 pThis->INetworkUp.pfnNotifyLinkChanged = drvNATNetworkUp_NotifyLinkChanged;
1575
1576 /* NAT engine configuration */
1577 pThis->INetworkNATCfg.pfnRedirectRuleCommand = drvNATNetworkNatConfigRedirect;
1578#if HAVE_NOTIFICATION_FOR_DNS_UPDATE && !defined(RT_OS_DARWIN)
1579 /*
1580 * On OS X we stick to the old OS X specific notifications for
1581 * now. Elsewhere use IHostNameResolutionConfigurationChangeEvent
1582 * by enbaling HAVE_NOTIFICATION_FOR_DNS_UPDATE in libslirp.h.
1583 * This code is still in a bit of flux and is implemented and
1584 * enabled in steps to simplify more conservative backporting.
1585 */
1586 pThis->INetworkNATCfg.pfnNotifyDnsChanged = drvNATNotifyDnsChanged;
1587#else
1588 pThis->INetworkNATCfg.pfnNotifyDnsChanged = NULL;
1589#endif
1590
1591 /*
1592 * Validate the config.
1593 */
1594 PDMDRV_VALIDATE_CONFIG_RETURN(pDrvIns,
1595 "PassDomain"
1596 "|TFTPPrefix"
1597 "|BootFile"
1598 "|Network"
1599 "|NextServer"
1600 "|DNSProxy"
1601 "|BindIP"
1602 "|UseHostResolver"
1603 "|SlirpMTU"
1604 "|AliasMode"
1605 "|SockRcv"
1606 "|SockSnd"
1607 "|TcpRcv"
1608 "|TcpSnd"
1609 "|ICMPCacheLimit"
1610 "|SoMaxConnection"
1611 "|LocalhostReachable"
1612//#ifdef VBOX_WITH_DNSMAPPING_IN_HOSTRESOLVER
1613 "|HostResolverMappings"
1614//#endif
1615 , "PortForwarding");
1616
1617 /*
1618 * Get the configuration settings.
1619 */
1620 int rc;
1621 bool fPassDomain = true;
1622 GET_BOOL(rc, pDrvIns, pCfg, "PassDomain", fPassDomain);
1623
1624 GET_STRING_ALLOC(rc, pDrvIns, pCfg, "TFTPPrefix", pThis->pszTFTPPrefix);
1625 GET_STRING_ALLOC(rc, pDrvIns, pCfg, "BootFile", pThis->pszBootFile);
1626 GET_STRING_ALLOC(rc, pDrvIns, pCfg, "NextServer", pThis->pszNextServer);
1627
1628 int fDNSProxy = 0;
1629 GET_S32(rc, pDrvIns, pCfg, "DNSProxy", fDNSProxy);
1630 int fUseHostResolver = 0;
1631 GET_S32(rc, pDrvIns, pCfg, "UseHostResolver", fUseHostResolver);
1632 int MTU = 1500;
1633 GET_S32(rc, pDrvIns, pCfg, "SlirpMTU", MTU);
1634 int i32AliasMode = 0;
1635 int i32MainAliasMode = 0;
1636 GET_S32(rc, pDrvIns, pCfg, "AliasMode", i32MainAliasMode);
1637 int iIcmpCacheLimit = 100;
1638 GET_S32(rc, pDrvIns, pCfg, "ICMPCacheLimit", iIcmpCacheLimit);
1639 bool fLocalhostReachable = false;
1640 GET_BOOL(rc, pDrvIns, pCfg, "LocalhostReachable", fLocalhostReachable);
1641
1642 i32AliasMode |= (i32MainAliasMode & 0x1 ? 0x1 : 0);
1643 i32AliasMode |= (i32MainAliasMode & 0x2 ? 0x40 : 0);
1644 i32AliasMode |= (i32MainAliasMode & 0x4 ? 0x4 : 0);
1645 int i32SoMaxConn = 10;
1646 GET_S32(rc, pDrvIns, pCfg, "SoMaxConnection", i32SoMaxConn);
1647 /*
1648 * Query the network port interface.
1649 */
1650 pThis->pIAboveNet = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMINETWORKDOWN);
1651 if (!pThis->pIAboveNet)
1652 return PDMDRV_SET_ERROR(pDrvIns, VERR_PDM_MISSING_INTERFACE_ABOVE,
1653 N_("Configuration error: the above device/driver didn't "
1654 "export the network port interface"));
1655 pThis->pIAboveConfig = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMINETWORKCONFIG);
1656 if (!pThis->pIAboveConfig)
1657 return PDMDRV_SET_ERROR(pDrvIns, VERR_PDM_MISSING_INTERFACE_ABOVE,
1658 N_("Configuration error: the above device/driver didn't "
1659 "export the network config interface"));
1660
1661 /* Generate a network address for this network card. */
1662 char szNetwork[32]; /* xxx.xxx.xxx.xxx/yy */
1663 GET_STRING(rc, pDrvIns, pCfg, "Network", szNetwork[0], sizeof(szNetwork));
1664 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
1665 return PDMDrvHlpVMSetError(pDrvIns, rc, RT_SRC_POS, N_("NAT%d: Configuration error: missing network"),
1666 pDrvIns->iInstance);
1667
1668 RTNETADDRIPV4 Network, Netmask;
1669
1670 rc = RTCidrStrToIPv4(szNetwork, &Network, &Netmask);
1671 if (RT_FAILURE(rc))
1672 return PDMDrvHlpVMSetError(pDrvIns, rc, RT_SRC_POS,
1673 N_("NAT#%d: Configuration error: network '%s' describes not a valid IPv4 network"),
1674 pDrvIns->iInstance, szNetwork);
1675
1676 /*
1677 * Initialize slirp.
1678 */
1679 rc = slirp_init(&pThis->pNATState, RT_H2N_U32(Network.u), Netmask.u,
1680 fPassDomain, !!fUseHostResolver, i32AliasMode,
1681 iIcmpCacheLimit, fLocalhostReachable, pThis);
1682 if (RT_SUCCESS(rc))
1683 {
1684 slirp_set_dhcp_TFTP_prefix(pThis->pNATState, pThis->pszTFTPPrefix);
1685 slirp_set_dhcp_TFTP_bootfile(pThis->pNATState, pThis->pszBootFile);
1686 slirp_set_dhcp_next_server(pThis->pNATState, pThis->pszNextServer);
1687 slirp_set_dhcp_dns_proxy(pThis->pNATState, !!fDNSProxy);
1688 slirp_set_mtu(pThis->pNATState, MTU);
1689 slirp_set_somaxconn(pThis->pNATState, i32SoMaxConn);
1690
1691 char *pszBindIP = NULL;
1692 GET_STRING_ALLOC(rc, pDrvIns, pCfg, "BindIP", pszBindIP);
1693 slirp_set_binding_address(pThis->pNATState, pszBindIP);
1694 if (pszBindIP != NULL)
1695 PDMDrvHlpMMHeapFree(pDrvIns, pszBindIP);
1696
1697#define SLIRP_SET_TUNING_VALUE(name, setter) \
1698 do \
1699 { \
1700 int len = 0; \
1701 rc = pHlp->pfnCFGMQueryS32(pCfg, name, &len); \
1702 if (RT_SUCCESS(rc)) \
1703 setter(pThis->pNATState, len); \
1704 } while(0)
1705
1706 SLIRP_SET_TUNING_VALUE("SockRcv", slirp_set_rcvbuf);
1707 SLIRP_SET_TUNING_VALUE("SockSnd", slirp_set_sndbuf);
1708 SLIRP_SET_TUNING_VALUE("TcpRcv", slirp_set_tcp_rcvspace);
1709 SLIRP_SET_TUNING_VALUE("TcpSnd", slirp_set_tcp_sndspace);
1710
1711 slirp_register_statistics(pThis->pNATState, pDrvIns);
1712#ifdef VBOX_WITH_STATISTICS
1713# define DRV_PROFILE_COUNTER(name, dsc) REGISTER_COUNTER(name, pThis, STAMTYPE_PROFILE, STAMUNIT_TICKS_PER_CALL, dsc)
1714# define DRV_COUNTING_COUNTER(name, dsc) REGISTER_COUNTER(name, pThis, STAMTYPE_COUNTER, STAMUNIT_COUNT, dsc)
1715# include "counters.h"
1716#endif
1717
1718#ifdef VBOX_WITH_DNSMAPPING_IN_HOSTRESOLVER
1719 PCFGMNODE pMappingsCfg = pHlp->pfnCFGMGetChild(pCfg, "HostResolverMappings");
1720
1721 if (pMappingsCfg)
1722 {
1723 rc = drvNATConstructDNSMappings(pDrvIns->iInstance, pThis, pMappingsCfg);
1724 AssertRC(rc);
1725 }
1726#endif
1727 rc = drvNATConstructRedir(pDrvIns->iInstance, pThis, pCfg, &Network);
1728 if (RT_SUCCESS(rc))
1729 {
1730 /*
1731 * Register a load done notification to get the MAC address into the slirp
1732 * engine after we loaded a guest state.
1733 */
1734 rc = PDMDrvHlpSSMRegisterLoadDone(pDrvIns, drvNATLoadDone);
1735 AssertLogRelRCReturn(rc, rc);
1736
1737 rc = RTReqQueueCreate(&pThis->hSlirpReqQueue);
1738 AssertLogRelRCReturn(rc, rc);
1739
1740 rc = RTReqQueueCreate(&pThis->hRecvReqQueue);
1741 AssertLogRelRCReturn(rc, rc);
1742
1743 rc = RTReqQueueCreate(&pThis->hUrgRecvReqQueue);
1744 AssertLogRelRCReturn(rc, rc);
1745
1746 rc = PDMDrvHlpThreadCreate(pDrvIns, &pThis->pRecvThread, pThis, drvNATRecv,
1747 drvNATRecvWakeup, 128 * _1K, RTTHREADTYPE_IO, "NATRX");
1748 AssertRCReturn(rc, rc);
1749
1750 rc = RTSemEventCreate(&pThis->EventRecv);
1751 AssertRCReturn(rc, rc);
1752
1753 rc = RTSemEventCreate(&pThis->EventUrgRecv);
1754 AssertRCReturn(rc, rc);
1755
1756 rc = PDMDrvHlpThreadCreate(pDrvIns, &pThis->pUrgRecvThread, pThis, drvNATUrgRecv,
1757 drvNATUrgRecvWakeup, 128 * _1K, RTTHREADTYPE_IO, "NATURGRX");
1758 AssertRCReturn(rc, rc);
1759
1760 rc = RTReqQueueCreate(&pThis->hHostResQueue);
1761 AssertRCReturn(rc, rc);
1762
1763 rc = PDMDrvHlpThreadCreate(pThis->pDrvIns, &pThis->pHostResThread,
1764 pThis, drvNATHostResThread, drvNATHostResWakeup,
1765 64 * _1K, RTTHREADTYPE_IO, "HOSTRES");
1766 AssertRCReturn(rc, rc);
1767
1768 rc = RTCritSectInit(&pThis->DevAccessLock);
1769 AssertRCReturn(rc, rc);
1770
1771 rc = RTCritSectInit(&pThis->XmitLock);
1772 AssertRCReturn(rc, rc);
1773
1774 char szTmp[128];
1775 RTStrPrintf(szTmp, sizeof(szTmp), "nat%d", pDrvIns->iInstance);
1776 PDMDrvHlpDBGFInfoRegister(pDrvIns, szTmp, "NAT info.", drvNATInfo);
1777
1778#ifndef RT_OS_WINDOWS
1779 /*
1780 * Create the control pipe.
1781 */
1782 rc = RTPipeCreate(&pThis->hPipeRead, &pThis->hPipeWrite, 0 /*fFlags*/);
1783 AssertRCReturn(rc, rc);
1784#else
1785 pThis->hWakeupEvent = CreateEvent(NULL, FALSE, FALSE, NULL); /* auto-reset event */
1786 slirp_register_external_event(pThis->pNATState, pThis->hWakeupEvent,
1787 VBOX_WAKEUP_EVENT_INDEX);
1788#endif
1789
1790 rc = PDMDrvHlpThreadCreate(pDrvIns, &pThis->pSlirpThread, pThis, drvNATAsyncIoThread,
1791 drvNATAsyncIoWakeup, 128 * _1K, RTTHREADTYPE_IO, "NAT");
1792 AssertRCReturn(rc, rc);
1793
1794 pThis->enmLinkState = pThis->enmLinkStateWant = PDMNETWORKLINKSTATE_UP;
1795
1796#ifdef RT_OS_DARWIN
1797 /* Set up a watcher which notifies us everytime the DNS server changes. */
1798 int rc2 = VINF_SUCCESS;
1799 SCDynamicStoreContext SCDynStorCtx;
1800
1801 SCDynStorCtx.version = 0;
1802 SCDynStorCtx.info = pThis;
1803 SCDynStorCtx.retain = NULL;
1804 SCDynStorCtx.release = NULL;
1805 SCDynStorCtx.copyDescription = NULL;
1806
1807 SCDynamicStoreRef hDynStor = SCDynamicStoreCreate(NULL, CFSTR("org.virtualbox.drvnat"), drvNatDnsChanged, &SCDynStorCtx);
1808 if (hDynStor)
1809 {
1810 CFRunLoopSourceRef hRunLoopSrc = SCDynamicStoreCreateRunLoopSource(NULL, hDynStor, 0);
1811 if (hRunLoopSrc)
1812 {
1813 CFStringRef aWatchKeys[] =
1814 {
1815 CFSTR("State:/Network/Global/DNS")
1816 };
1817 CFArrayRef hArray = CFArrayCreate(NULL, (const void **)aWatchKeys, 1, &kCFTypeArrayCallBacks);
1818
1819 if (hArray)
1820 {
1821 if (SCDynamicStoreSetNotificationKeys(hDynStor, hArray, NULL))
1822 {
1823 CFRunLoopRef hRunLoopMain = CFRunLoopGetMain();
1824 CFRetain(hRunLoopMain);
1825 CFRunLoopAddSource(hRunLoopMain, hRunLoopSrc, kCFRunLoopCommonModes);
1826 CFRelease(hRunLoopMain);
1827 pThis->hRunLoopSrcDnsWatcher = hRunLoopSrc;
1828 }
1829 else
1830 rc2 = VERR_NO_MEMORY;
1831
1832 CFRelease(hArray);
1833 }
1834 else
1835 rc2 = VERR_NO_MEMORY;
1836
1837 if (RT_FAILURE(rc2)) /* Keep the runloop source referenced for destruction. */
1838 CFRelease(hRunLoopSrc);
1839 }
1840 CFRelease(hDynStor);
1841 }
1842 else
1843 rc2 = VERR_NO_MEMORY;
1844
1845 if (RT_FAILURE(rc2))
1846 LogRel(("NAT#%d: Failed to install DNS change notifier. The guest might loose DNS access when switching networks on the host\n",
1847 pDrvIns->iInstance));
1848#endif
1849 return rc;
1850 }
1851
1852 /* failure path */
1853 slirp_term(pThis->pNATState);
1854 pThis->pNATState = NULL;
1855 }
1856 else
1857 {
1858 PDMDRV_SET_ERROR(pDrvIns, rc, N_("Unknown error during NAT networking setup: "));
1859 AssertMsgFailed(("Add error message for rc=%d (%Rrc)\n", rc, rc));
1860 }
1861
1862 return rc;
1863}
1864
1865
1866/**
1867 * NAT network transport driver registration record.
1868 */
1869const PDMDRVREG g_DrvNAT =
1870{
1871 /* u32Version */
1872 PDM_DRVREG_VERSION,
1873 /* szName */
1874 "NAT",
1875 /* szRCMod */
1876 "",
1877 /* szR0Mod */
1878 "",
1879 /* pszDescription */
1880 "NAT Network Transport Driver",
1881 /* fFlags */
1882 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
1883 /* fClass. */
1884 PDM_DRVREG_CLASS_NETWORK,
1885 /* cMaxInstances */
1886 ~0U,
1887 /* cbInstance */
1888 sizeof(DRVNAT),
1889 /* pfnConstruct */
1890 drvNATConstruct,
1891 /* pfnDestruct */
1892 drvNATDestruct,
1893 /* pfnRelocate */
1894 NULL,
1895 /* pfnIOCtl */
1896 NULL,
1897 /* pfnPowerOn */
1898 drvNATPowerOn,
1899 /* pfnReset */
1900 NULL,
1901 /* pfnSuspend */
1902 NULL,
1903 /* pfnResume */
1904 drvNATResume,
1905 /* pfnAttach */
1906 NULL,
1907 /* pfnDetach */
1908 NULL,
1909 /* pfnPowerOff */
1910 NULL,
1911 /* pfnSoftReset */
1912 NULL,
1913 /* u32EndVersion */
1914 PDM_DRVREG_VERSION
1915};
1916
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use