VirtualBox

source: vbox/trunk/src/VBox/Main/linux/NetIf-linux.cpp@ 30760

Last change on this file since 30760 was 28800, checked in by vboxsync, 14 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: 7.5 KB
Line 
1/* $Id: NetIf-linux.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
2/** @file
3 * Main - NetIfList, Linux implementation.
4 */
5
6/*
7 * Copyright (C) 2008 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19
20/*******************************************************************************
21* Header Files *
22*******************************************************************************/
23#define LOG_GROUP LOG_GROUP_MAIN
24
25#include <iprt/err.h>
26#include <list>
27#include <sys/ioctl.h>
28#include <net/if.h>
29#include <net/if_arp.h>
30#include <net/route.h>
31#include <netinet/in.h>
32#include <stdio.h>
33#include <unistd.h>
34#include <iprt/asm.h>
35
36#include "HostNetworkInterfaceImpl.h"
37#include "netif.h"
38#include "Logging.h"
39
40static int getDefaultIfaceName(char *pszName)
41{
42 FILE *fp = fopen("/proc/net/route", "r");
43 char szBuf[1024];
44 char szIfName[17];
45 char szAddr[129];
46 char szGateway[129];
47 char szMask[129];
48 int iTmp;
49 int iFlags;
50
51 if (fp)
52 {
53 while (fgets(szBuf, sizeof(szBuf)-1, fp))
54 {
55 int n = sscanf(szBuf, "%16s %128s %128s %X %d %d %d %128s %d %d %d\n",
56 szIfName, szAddr, szGateway, &iFlags, &iTmp, &iTmp, &iTmp,
57 szMask, &iTmp, &iTmp, &iTmp);
58 if (n < 10 || !(iFlags & RTF_UP))
59 continue;
60
61 if (strcmp(szAddr, "00000000") == 0 && strcmp(szMask, "00000000") == 0)
62 {
63 fclose(fp);
64 strncpy(pszName, szIfName, 16);
65 pszName[16] = 0;
66 return VINF_SUCCESS;
67 }
68 }
69 }
70 return VERR_INTERNAL_ERROR;
71}
72
73static int getInterfaceInfo(int iSocket, const char *pszName, PNETIFINFO pInfo)
74{
75 // Zeroing out pInfo is a bad idea as it should contain both short and long names at
76 // this point. So make sure the strucure is cleared by the caller if necessary!
77 // memset(pInfo, 0, sizeof(*pInfo));
78 struct ifreq Req;
79 memset(&Req, 0, sizeof(Req));
80 strncpy(Req.ifr_name, pszName, sizeof(Req.ifr_name) - 1);
81 if (ioctl(iSocket, SIOCGIFHWADDR, &Req) >= 0)
82 {
83 switch (Req.ifr_hwaddr.sa_family)
84 {
85 case ARPHRD_ETHER:
86 pInfo->enmMediumType = NETIF_T_ETHERNET;
87 break;
88 default:
89 pInfo->enmMediumType = NETIF_T_UNKNOWN;
90 break;
91 }
92 /* Generate UUID from name and MAC address. */
93 RTUUID uuid;
94 RTUuidClear(&uuid);
95 memcpy(&uuid, Req.ifr_name, RT_MIN(sizeof(Req.ifr_name), sizeof(uuid)));
96 uuid.Gen.u8ClockSeqHiAndReserved = (uuid.Gen.u8ClockSeqHiAndReserved & 0x3f) | 0x80;
97 uuid.Gen.u16TimeHiAndVersion = (uuid.Gen.u16TimeHiAndVersion & 0x0fff) | 0x4000;
98 memcpy(uuid.Gen.au8Node, &Req.ifr_hwaddr.sa_data, sizeof(uuid.Gen.au8Node));
99 pInfo->Uuid = uuid;
100
101 memcpy(&pInfo->MACAddress, Req.ifr_hwaddr.sa_data, sizeof(pInfo->MACAddress));
102
103 if (ioctl(iSocket, SIOCGIFADDR, &Req) >= 0)
104 memcpy(pInfo->IPAddress.au8,
105 &((struct sockaddr_in *)&Req.ifr_addr)->sin_addr.s_addr,
106 sizeof(pInfo->IPAddress.au8));
107
108 if (ioctl(iSocket, SIOCGIFNETMASK, &Req) >= 0)
109 memcpy(pInfo->IPNetMask.au8,
110 &((struct sockaddr_in *)&Req.ifr_addr)->sin_addr.s_addr,
111 sizeof(pInfo->IPNetMask.au8));
112
113 if (ioctl(iSocket, SIOCGIFFLAGS, &Req) >= 0)
114 pInfo->enmStatus = Req.ifr_flags & IFF_UP ? NETIF_S_UP : NETIF_S_DOWN;
115
116 FILE *fp = fopen("/proc/net/if_inet6", "r");
117 if (fp)
118 {
119 RTNETADDRIPV6 IPv6Address;
120 unsigned uIndex, uLength, uScope, uTmp;
121 char szName[30];
122 for (;;)
123 {
124 memset(szName, 0, sizeof(szName));
125 int n = fscanf(fp,
126 "%08x%08x%08x%08x"
127 " %02x %02x %02x %02x %20s\n",
128 &IPv6Address.au32[0], &IPv6Address.au32[1],
129 &IPv6Address.au32[2], &IPv6Address.au32[3],
130 &uIndex, &uLength, &uScope, &uTmp, szName);
131 if (n == EOF)
132 break;
133 if (n != 9 || uLength > 128)
134 {
135 Log(("getInterfaceInfo: Error while reading /proc/net/if_inet6, n=%d uLength=%u\n",
136 n, uLength));
137 break;
138 }
139 if (!strcmp(Req.ifr_name, szName))
140 {
141 pInfo->IPv6Address.au32[0] = htonl(IPv6Address.au32[0]);
142 pInfo->IPv6Address.au32[1] = htonl(IPv6Address.au32[1]);
143 pInfo->IPv6Address.au32[2] = htonl(IPv6Address.au32[2]);
144 pInfo->IPv6Address.au32[3] = htonl(IPv6Address.au32[3]);
145 ASMBitSetRange(&pInfo->IPv6NetMask, 0, uLength);
146 }
147 }
148 fclose(fp);
149 }
150 }
151 return VINF_SUCCESS;
152}
153
154int NetIfList(std::list <ComObjPtr<HostNetworkInterface> > &list)
155{
156 char szDefaultIface[256];
157 int rc = getDefaultIfaceName(szDefaultIface);
158 if (RT_FAILURE(rc))
159 {
160 Log(("NetIfList: Failed to find default interface.\n"));
161 szDefaultIface[0] = 0;
162 }
163 int sock = socket(AF_INET, SOCK_DGRAM, 0);
164 if (sock >= 0)
165 {
166 FILE *fp = fopen("/proc/net/dev", "r");
167 if (fp)
168 {
169 char buf[256];
170 while (fgets(buf, sizeof(buf), fp))
171 {
172 char *pszEndOfName = strchr(buf, ':');
173 if (!pszEndOfName)
174 continue;
175 *pszEndOfName = 0;
176 int iFirstNonWS = strspn(buf, " ");
177 char *pszName = buf+iFirstNonWS;
178 NETIFINFO Info;
179 RT_ZERO(Info);
180 rc = getInterfaceInfo(sock, pszName, &Info);
181 if (RT_FAILURE(rc))
182 break;
183 if (Info.enmMediumType == NETIF_T_ETHERNET)
184 {
185 ComObjPtr<HostNetworkInterface> IfObj;
186 IfObj.createObject();
187
188 HostNetworkInterfaceType_T enmType;
189 if (strncmp("vboxnet", pszName, 7))
190 enmType = HostNetworkInterfaceType_Bridged;
191 else
192 enmType = HostNetworkInterfaceType_HostOnly;
193
194 if (SUCCEEDED(IfObj->init(Bstr(pszName), enmType, &Info)))
195 {
196 if (strcmp(pszName, szDefaultIface) == 0)
197 list.push_front(IfObj);
198 else
199 list.push_back(IfObj);
200 }
201 }
202
203 }
204 fclose(fp);
205 }
206 close(sock);
207 }
208 else
209 rc = VERR_INTERNAL_ERROR;
210
211 return rc;
212}
213
214int NetIfGetConfigByName(PNETIFINFO pInfo)
215{
216 int rc = VINF_SUCCESS;
217 int sock = socket(AF_INET, SOCK_DGRAM, 0);
218 if (sock < 0)
219 return VERR_NOT_IMPLEMENTED;
220 rc = getInterfaceInfo(sock, pInfo->szShortName, pInfo);
221 close(sock);
222 return rc;
223}
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