VirtualBox

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

Last change on this file since 43507 was 43507, checked in by vboxsync, 12 years ago

Main/Metrics: Alternative way to get link speed for old kernels (#6345)

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