VirtualBox

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

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

Main: a couple of whitespace fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 KB
Line 
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 */
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 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. */
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 NetIfGetState(const char *pcszIfName, NETIFSTATUS *penmState);
95int NetIfGetLinkSpeed(const char *pcszIfName, uint32_t *puMbits);
96int NetIfDhcpRediscover(VirtualBox *pVbox, HostNetworkInterface * pIf);
97int NetIfAdpCtlOut(const char * pcszName, const char * pcszCmd, char *pszBuffer, size_t cBufSize);
98
99DECLINLINE(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
118DECLINLINE(ULONG) composeIPv6PrefixLenghFromAddress(PRTNETADDRIPV6 aAddrPtr)
119{
120 int res = ASMBitFirstClear(aAddrPtr, sizeof(RTNETADDRIPV6)*8);
121 return res != -1 ? res : 128;
122}
123
124DECLINLINE(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 memset(aAddrPtr, 0, sizeof(RTNETADDRIPV6));
132
133 ASMBitSetRange(aAddrPtr, 0, cPrefix);
134
135 return VINF_SUCCESS;
136}
137
138DECLINLINE(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
150DECLINLINE(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: */
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