VirtualBox

source: vbox/trunk/src/VBox/Main/include/netif.h@ 43394

Last change on this file since 43394 was 36057, checked in by vboxsync, 14 years ago

Main/NetIf: Fixed host-only interface creation failure on Windows (#3873)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.1 KB
Line 
1/** @file
2 * Main - Network Interfaces.
3 */
4
5/*
6 * Copyright (C) 2008-2009 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17#ifndef ___netif_h
18#define ___netif_h
19
20#include <iprt/cdefs.h>
21#include <iprt/types.h>
22#include <iprt/net.h>
23/** @todo r=bird: The inlined code below that drags in asm.h here. I doubt
24 * speed is very important here, so move it into a .cpp file, please. */
25#include <iprt/asm.h>
26
27#ifndef RT_OS_WINDOWS
28# include <arpa/inet.h>
29# include <stdio.h>
30#endif /* !RT_OS_WINDOWS */
31
32#define VBOXNET_IPV4ADDR_DEFAULT 0x0138A8C0 /* 192.168.56.1 */
33#define VBOXNET_IPV4MASK_DEFAULT "255.255.255.0"
34
35#define VBOXNET_MAX_SHORT_NAME 50
36
37#if 1
38/**
39 * Encapsulation type.
40 */
41typedef enum NETIFTYPE
42{
43 NETIF_T_UNKNOWN,
44 NETIF_T_ETHERNET,
45 NETIF_T_PPP,
46 NETIF_T_SLIP
47} NETIFTYPE;
48
49/**
50 * Current state of the interface.
51 */
52typedef enum NETIFSTATUS
53{
54 NETIF_S_UNKNOWN,
55 NETIF_S_UP,
56 NETIF_S_DOWN
57} NETIFSTATUS;
58
59/**
60 * Host Network Interface Information.
61 */
62typedef struct NETIFINFO
63{
64 NETIFINFO *pNext;
65 RTNETADDRIPV4 IPAddress;
66 RTNETADDRIPV4 IPNetMask;
67 RTNETADDRIPV6 IPv6Address;
68 RTNETADDRIPV6 IPv6NetMask;
69 BOOL bDhcpEnabled;
70 BOOL bIsDefault;
71 RTMAC MACAddress;
72 NETIFTYPE enmMediumType;
73 NETIFSTATUS enmStatus;
74 RTUUID Uuid;
75 char szShortName[VBOXNET_MAX_SHORT_NAME];
76 char szName[1];
77} NETIFINFO;
78
79/** Pointer to a network interface info. */
80typedef NETIFINFO *PNETIFINFO;
81/** Pointer to a const network interface info. */
82typedef NETIFINFO const *PCNETIFINFO;
83#endif
84
85int NetIfList(std::list <ComObjPtr<HostNetworkInterface> > &list);
86int NetIfEnableStaticIpConfig(VirtualBox *pVbox, HostNetworkInterface * pIf, ULONG aOldIp, ULONG aNewIp, ULONG aMask);
87int NetIfEnableStaticIpConfigV6(VirtualBox *pVbox, HostNetworkInterface * pIf, IN_BSTR aOldIPV6Address, IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength);
88int NetIfEnableDynamicIpConfig(VirtualBox *pVbox, HostNetworkInterface * pIf);
89int NetIfCreateHostOnlyNetworkInterface (VirtualBox *pVbox, IHostNetworkInterface **aHostNetworkInterface, IProgress **aProgress, const char *pcszName = NULL);
90int NetIfRemoveHostOnlyNetworkInterface (VirtualBox *pVbox, IN_GUID aId, IProgress **aProgress);
91int NetIfGetConfig(HostNetworkInterface * pIf, NETIFINFO *);
92int NetIfGetConfigByName(PNETIFINFO pInfo);
93int NetIfDhcpRediscover(VirtualBox *pVbox, HostNetworkInterface * pIf);
94
95DECLINLINE(Bstr) composeIPv6Address(PRTNETADDRIPV6 aAddrPtr)
96{
97 char szTmp[8*5] = "";
98
99 if (aAddrPtr->s.Lo || aAddrPtr->s.Hi)
100 RTStrPrintf(szTmp, sizeof(szTmp),
101 "%02x%02x:%02x%02x:%02x%02x:%02x%02x:"
102 "%02x%02x:%02x%02x:%02x%02x:%02x%02x",
103 aAddrPtr->au8[0], aAddrPtr->au8[1],
104 aAddrPtr->au8[2], aAddrPtr->au8[3],
105 aAddrPtr->au8[4], aAddrPtr->au8[5],
106 aAddrPtr->au8[6], aAddrPtr->au8[7],
107 aAddrPtr->au8[8], aAddrPtr->au8[9],
108 aAddrPtr->au8[10], aAddrPtr->au8[11],
109 aAddrPtr->au8[12], aAddrPtr->au8[13],
110 aAddrPtr->au8[14], aAddrPtr->au8[15]);
111 return Bstr(szTmp);
112}
113
114DECLINLINE(ULONG) composeIPv6PrefixLenghFromAddress(PRTNETADDRIPV6 aAddrPtr)
115{
116 int res = ASMBitFirstClear(aAddrPtr, sizeof(RTNETADDRIPV6)*8);
117 return res != -1 ? res : 128;
118}
119
120DECLINLINE(int) prefixLength2IPv6Address(ULONG cPrefix, PRTNETADDRIPV6 aAddrPtr)
121{
122 if(cPrefix > 128)
123 return VERR_INVALID_PARAMETER;
124 if(!aAddrPtr)
125 return VERR_INVALID_PARAMETER;
126
127 memset(aAddrPtr, 0, sizeof(RTNETADDRIPV6));
128
129 ASMBitSetRange(aAddrPtr, 0, cPrefix);
130
131 return VINF_SUCCESS;
132}
133
134DECLINLINE(Bstr) composeHardwareAddress(PRTMAC aMacPtr)
135{
136 char szTmp[6*3];
137
138 RTStrPrintf(szTmp, sizeof(szTmp),
139 "%02x:%02x:%02x:%02x:%02x:%02x",
140 aMacPtr->au8[0], aMacPtr->au8[1],
141 aMacPtr->au8[2], aMacPtr->au8[3],
142 aMacPtr->au8[4], aMacPtr->au8[5]);
143 return Bstr(szTmp);
144}
145
146DECLINLINE(Bstr) getDefaultIPv4Address(Bstr bstrIfName)
147{
148 /* Get the index from the name */
149 Utf8Str strTmp = bstrIfName;
150 const char *pszIfName = strTmp.c_str();
151 int iInstance = 0, iPos = strcspn(pszIfName, "0123456789");
152 if (pszIfName[iPos])
153 iInstance = RTStrToUInt32(pszIfName + iPos);
154
155 in_addr tmp;
156#if defined(RT_OS_WINDOWS)
157 tmp.S_un.S_addr = VBOXNET_IPV4ADDR_DEFAULT + (iInstance << 16);
158#else
159 tmp.s_addr = VBOXNET_IPV4ADDR_DEFAULT + (iInstance << 16);
160#endif
161 char *addr = inet_ntoa(tmp);
162 return Bstr(addr);
163}
164
165#endif /* !___netif_h */
166/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

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