1 | /** @file
|
---|
2 | * Main - Network Interfaces.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2008-2012 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 | */
|
---|
41 | typedef 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 | */
|
---|
52 | typedef 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 | */
|
---|
62 | typedef 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 | uint32_t uSpeedMbits;
|
---|
75 | RTUUID Uuid;
|
---|
76 | char szShortName[VBOXNET_MAX_SHORT_NAME];
|
---|
77 | char szName[1];
|
---|
78 | } NETIFINFO;
|
---|
79 |
|
---|
80 | /** Pointer to a network interface info. */
|
---|
81 | typedef NETIFINFO *PNETIFINFO;
|
---|
82 | /** Pointer to a const network interface info. */
|
---|
83 | typedef NETIFINFO const *PCNETIFINFO;
|
---|
84 | #endif
|
---|
85 |
|
---|
86 | int NetIfList(std::list <ComObjPtr<HostNetworkInterface> > &list);
|
---|
87 | int NetIfEnableStaticIpConfig(VirtualBox *pVBox, HostNetworkInterface * pIf, ULONG aOldIp, ULONG aNewIp, ULONG aMask);
|
---|
88 | int NetIfEnableStaticIpConfigV6(VirtualBox *pVBox, HostNetworkInterface * pIf, IN_BSTR aOldIPV6Address, IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength);
|
---|
89 | int NetIfEnableDynamicIpConfig(VirtualBox *pVBox, HostNetworkInterface * pIf);
|
---|
90 | int NetIfCreateHostOnlyNetworkInterface (VirtualBox *pVBox, IHostNetworkInterface **aHostNetworkInterface, IProgress **aProgress, const char *pcszName = NULL);
|
---|
91 | int NetIfRemoveHostOnlyNetworkInterface (VirtualBox *pVBox, IN_GUID aId, IProgress **aProgress);
|
---|
92 | int NetIfGetConfig(HostNetworkInterface * pIf, NETIFINFO *);
|
---|
93 | int NetIfGetConfigByName(PNETIFINFO pInfo);
|
---|
94 | int NetIfGetState(const char *pcszIfName, NETIFSTATUS *penmState);
|
---|
95 | int NetIfGetLinkSpeed(const char *pcszIfName, uint32_t *puMbits);
|
---|
96 | int NetIfDhcpRediscover(VirtualBox *pVBox, HostNetworkInterface * pIf);
|
---|
97 | int NetIfAdpCtlOut(const char * pcszName, const char * pcszCmd, char *pszBuffer, size_t cBufSize);
|
---|
98 |
|
---|
99 | DECLINLINE(Bstr) composeIPv6Address(PRTNETADDRIPV6 aAddrPtr)
|
---|
100 | {
|
---|
101 | char szTmp[8*5] = "";
|
---|
102 |
|
---|
103 | if (aAddrPtr->s.Lo || aAddrPtr->s.Hi)
|
---|
104 | RTStrPrintf(szTmp, sizeof(szTmp),
|
---|
105 | "%02x%02x:%02x%02x:%02x%02x:%02x%02x:"
|
---|
106 | "%02x%02x:%02x%02x:%02x%02x:%02x%02x",
|
---|
107 | aAddrPtr->au8[0], aAddrPtr->au8[1],
|
---|
108 | aAddrPtr->au8[2], aAddrPtr->au8[3],
|
---|
109 | aAddrPtr->au8[4], aAddrPtr->au8[5],
|
---|
110 | aAddrPtr->au8[6], aAddrPtr->au8[7],
|
---|
111 | aAddrPtr->au8[8], aAddrPtr->au8[9],
|
---|
112 | aAddrPtr->au8[10], aAddrPtr->au8[11],
|
---|
113 | aAddrPtr->au8[12], aAddrPtr->au8[13],
|
---|
114 | aAddrPtr->au8[14], aAddrPtr->au8[15]);
|
---|
115 | return Bstr(szTmp);
|
---|
116 | }
|
---|
117 |
|
---|
118 | DECLINLINE(ULONG) composeIPv6PrefixLenghFromAddress(PRTNETADDRIPV6 aAddrPtr)
|
---|
119 | {
|
---|
120 | int res = ASMBitFirstClear(aAddrPtr, sizeof(RTNETADDRIPV6)*8);
|
---|
121 | return res != -1 ? res : 128;
|
---|
122 | }
|
---|
123 |
|
---|
124 | DECLINLINE(int) prefixLength2IPv6Address(ULONG cPrefix, PRTNETADDRIPV6 aAddrPtr)
|
---|
125 | {
|
---|
126 | if (cPrefix > 128)
|
---|
127 | return VERR_INVALID_PARAMETER;
|
---|
128 | if (!aAddrPtr)
|
---|
129 | return VERR_INVALID_PARAMETER;
|
---|
130 |
|
---|
131 | RT_ZERO(*aAddrPtr);
|
---|
132 |
|
---|
133 | ASMBitSetRange(aAddrPtr, 0, cPrefix);
|
---|
134 |
|
---|
135 | return VINF_SUCCESS;
|
---|
136 | }
|
---|
137 |
|
---|
138 | DECLINLINE(Bstr) composeHardwareAddress(PRTMAC aMacPtr)
|
---|
139 | {
|
---|
140 | char szTmp[6*3];
|
---|
141 |
|
---|
142 | RTStrPrintf(szTmp, sizeof(szTmp),
|
---|
143 | "%02x:%02x:%02x:%02x:%02x:%02x",
|
---|
144 | aMacPtr->au8[0], aMacPtr->au8[1],
|
---|
145 | aMacPtr->au8[2], aMacPtr->au8[3],
|
---|
146 | aMacPtr->au8[4], aMacPtr->au8[5]);
|
---|
147 | return Bstr(szTmp);
|
---|
148 | }
|
---|
149 |
|
---|
150 | DECLINLINE(Bstr) getDefaultIPv4Address(Bstr bstrIfName)
|
---|
151 | {
|
---|
152 | /* Get the index from the name */
|
---|
153 | Utf8Str strTmp = bstrIfName;
|
---|
154 | const char *pszIfName = strTmp.c_str();
|
---|
155 | int iInstance = 0;
|
---|
156 | size_t iPos = strcspn(pszIfName, "0123456789");
|
---|
157 | if (pszIfName[iPos])
|
---|
158 | iInstance = RTStrToUInt32(pszIfName + iPos);
|
---|
159 |
|
---|
160 | in_addr tmp;
|
---|
161 | #if defined(RT_OS_WINDOWS)
|
---|
162 | tmp.S_un.S_addr = VBOXNET_IPV4ADDR_DEFAULT + (iInstance << 16);
|
---|
163 | #else
|
---|
164 | tmp.s_addr = VBOXNET_IPV4ADDR_DEFAULT + (iInstance << 16);
|
---|
165 | #endif
|
---|
166 | char *addr = inet_ntoa(tmp);
|
---|
167 | return Bstr(addr);
|
---|
168 | }
|
---|
169 |
|
---|
170 | #endif /* !___netif_h */
|
---|
171 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|