VirtualBox

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

Last change on this file since 28800 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.8 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#include <iprt/asm.h>
24
25#ifndef RT_OS_WINDOWS
26#include <arpa/inet.h>
27#include <stdio.h>
28#endif /* RT_OS_WINDOWS */
29
30#define VBOXNET_IPV4ADDR_DEFAULT 0x0138A8C0 /* 192.168.56.1 */
31#define VBOXNET_IPV4MASK_DEFAULT "255.255.255.0"
32
33#define VBOXNET_MAX_SHORT_NAME 50
34
35#if 1
36/**
37 * Encapsulation type.
38 */
39typedef enum NETIFTYPE
40{
41 NETIF_T_UNKNOWN,
42 NETIF_T_ETHERNET,
43 NETIF_T_PPP,
44 NETIF_T_SLIP
45} NETIFTYPE;
46
47/**
48 * Current state of the interface.
49 */
50typedef enum NETIFSTATUS
51{
52 NETIF_S_UNKNOWN,
53 NETIF_S_UP,
54 NETIF_S_DOWN
55} NETIFSTATUS;
56
57/**
58 * Host Network Interface Information.
59 */
60typedef struct NETIFINFO
61{
62 NETIFINFO *pNext;
63 RTNETADDRIPV4 IPAddress;
64 RTNETADDRIPV4 IPNetMask;
65 RTNETADDRIPV6 IPv6Address;
66 RTNETADDRIPV6 IPv6NetMask;
67 BOOL bDhcpEnabled;
68 RTMAC MACAddress;
69 NETIFTYPE enmMediumType;
70 NETIFSTATUS enmStatus;
71 RTUUID Uuid;
72 char szShortName[VBOXNET_MAX_SHORT_NAME];
73 char szName[1];
74} NETIFINFO;
75
76/** Pointer to a network interface info. */
77typedef NETIFINFO *PNETIFINFO;
78/** Pointer to a const network interface info. */
79typedef NETIFINFO const *PCNETIFINFO;
80#endif
81
82int NetIfList(std::list <ComObjPtr<HostNetworkInterface> > &list);
83int NetIfEnableStaticIpConfig(VirtualBox *pVbox, HostNetworkInterface * pIf, ULONG aOldIp, ULONG aNewIp, ULONG aMask);
84int NetIfEnableStaticIpConfigV6(VirtualBox *pVbox, HostNetworkInterface * pIf, IN_BSTR aOldIPV6Address, IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength);
85int NetIfEnableDynamicIpConfig(VirtualBox *pVbox, HostNetworkInterface * pIf);
86int NetIfCreateHostOnlyNetworkInterface (VirtualBox *pVbox, IHostNetworkInterface **aHostNetworkInterface, IProgress **aProgress);
87int NetIfRemoveHostOnlyNetworkInterface (VirtualBox *pVbox, IN_GUID aId, IProgress **aProgress);
88int NetIfGetConfig(HostNetworkInterface * pIf, NETIFINFO *);
89int NetIfGetConfigByName(PNETIFINFO pInfo);
90int NetIfDhcpRediscover(VirtualBox *pVbox, HostNetworkInterface * pIf);
91
92DECLINLINE(Bstr) composeIPv6Address(PRTNETADDRIPV6 aAddrPtr)
93{
94 char szTmp[8*5] = "";
95
96 if (aAddrPtr->s.Lo || aAddrPtr->s.Hi)
97 RTStrPrintf(szTmp, sizeof(szTmp),
98 "%02x%02x:%02x%02x:%02x%02x:%02x%02x:"
99 "%02x%02x:%02x%02x:%02x%02x:%02x%02x",
100 aAddrPtr->au8[0], aAddrPtr->au8[1],
101 aAddrPtr->au8[2], aAddrPtr->au8[3],
102 aAddrPtr->au8[4], aAddrPtr->au8[5],
103 aAddrPtr->au8[6], aAddrPtr->au8[7],
104 aAddrPtr->au8[8], aAddrPtr->au8[9],
105 aAddrPtr->au8[10], aAddrPtr->au8[11],
106 aAddrPtr->au8[12], aAddrPtr->au8[13],
107 aAddrPtr->au8[14], aAddrPtr->au8[15]);
108 return Bstr(szTmp);
109}
110
111DECLINLINE(ULONG) composeIPv6PrefixLenghFromAddress(PRTNETADDRIPV6 aAddrPtr)
112{
113 int res = ASMBitFirstClear(aAddrPtr, sizeof(RTNETADDRIPV6)*8);
114 return res != -1 ? res : 128;
115}
116
117DECLINLINE(int) prefixLength2IPv6Address(ULONG cPrefix, PRTNETADDRIPV6 aAddrPtr)
118{
119 if(cPrefix > 128)
120 return VERR_INVALID_PARAMETER;
121 if(!aAddrPtr)
122 return VERR_INVALID_PARAMETER;
123
124 memset(aAddrPtr, 0, sizeof(RTNETADDRIPV6));
125
126 ASMBitSetRange(aAddrPtr, 0, cPrefix);
127
128 return VINF_SUCCESS;
129}
130
131DECLINLINE(Bstr) composeHardwareAddress(PRTMAC aMacPtr)
132{
133 char szTmp[6*3];
134
135 RTStrPrintf(szTmp, sizeof(szTmp),
136 "%02x:%02x:%02x:%02x:%02x:%02x",
137 aMacPtr->au8[0], aMacPtr->au8[1],
138 aMacPtr->au8[2], aMacPtr->au8[3],
139 aMacPtr->au8[4], aMacPtr->au8[5]);
140 return Bstr(szTmp);
141}
142
143DECLINLINE(Bstr) getDefaultIPv4Address(Bstr bstrIfName)
144{
145 /* Get the index from the name */
146 int iInstance;
147 if (sscanf(Utf8Str(bstrIfName).raw(), "vboxnet%d", &iInstance) != 1)
148 return Bstr("0.0.0.0");
149
150 in_addr tmp;
151#if defined(RT_OS_WINDOWS)
152 tmp.S_un.S_addr = VBOXNET_IPV4ADDR_DEFAULT + (iInstance << 16);
153#else
154 tmp.s_addr = VBOXNET_IPV4ADDR_DEFAULT + (iInstance << 16);
155#endif
156 char *addr = inet_ntoa(tmp);
157 return Bstr(addr);
158}
159
160#endif /* ___netif_h */
161/* 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