Sponsored Content
Top Forums Programming retrieving network interface list Post 302401656 by xyzt on Sunday 7th of March 2010 07:34:36 AM
Old 03-07-2010
retrieving network interface list

Hello
I have a problem with retreiving network interface list using IOCTLs. I have 4 interfaces:
Code:
$ ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
    link/ether 00:1d:ba:39:f2:8d brd ff:ff:ff:ff:ff:ff
3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
    link/ether 00:21:5c:0d:ad:15 brd ff:ff:ff:ff:ff:ff
    inet 192.168.2.5/24 brd 192.168.2.255 scope global wlan0
    inet6 fe80::221:5cff:fe0d:ad15/64 scope link
       valid_lft forever preferred_lft forever
4: pan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
    link/ether ae:97:70:65:ed:95 brd ff:ff:ff:ff:ff:ff

But in my program just the lo interface is found. Why can't I get all interfaces?
Here's the code:
Code:
struct interface {
	char			ifname[MAXINTFNAME_LEN];
	uint8_t			addr[MACADDR_LEN];
	int			if_index;
	struct sockaddr_in	if_broadaddr;
};

int get_interface_info(struct interface* interf)
{
	struct ifreq ifr;
	struct ifreq *ifr_arr;
	struct ifconf ifc;
	int found = 0;

	char buf[1024] = {'\0'};
	int s = 0, ret = 0, i = 0;


	if (!interf || interf->ifname==NULL)
		return -1;

	memset(&ifr, 0, sizeof ifr);
	memset(&ifc, 0, sizeof ifc);

	s = socket(AF_INET, SOCK_DGRAM, 0);
	if (s==-1) {
		return -1;
	}

	ifc.ifc_len = sizeof(buf);
        ifc.ifc_buf = buf;
	ioctl(s, SIOCGIFCONF, &ifc);

	ifr_arr = ifc.ifc_req;
	for (i = ifc.ifc_len / sizeof(struct ifreq); --i >= 0; ifr_arr++) {
		if (!strcmp(ifr_arr->ifr_name, interf->ifname)) {
			strcpy(ifr.ifr_name, interf->ifname);
			if (0 == (ret=ioctl(s, SIOCGIFFLAGS, &ifr))) {
				if (0 == (ret=ioctl(s, SIOCGIFHWADDR, &ifr))) {
					memcpy(interf->addr, ifr.ifr_hwaddr.sa_data, MACADDR_LEN);
					if (0 ==(ret=ioctl(s, SIOCGIFINDEX, &ifr))) {
						interf->if_index = ifr.ifr_ifindex;
					}
					if (0 == (ret=ioctl(s, SIOCGIFBRDADDR, &ifr))) {
						memset(&(interf->if_broadaddr), 0x0, sizeof(interf->if_broadaddr));
						memcpy(&(interf->if_broadaddr), (struct sockaddr_in*)(&(ifr.ifr_ifru.ifru_broadaddr)), sizeof(ifr.ifr_ifru.ifru_broadaddr));
					}
				}
			}
			found = 1;
			break;
		}
	}
	close(s);
	if (!found)
		return -2;
	return ret;
}

My system is Linux 2.6.31
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Network Interface

Hi ! Does anyone know how can i get information about my network interface ... if it works in half or full duplex mode !! Thx in adivance ! Witt (4 Replies)
Discussion started by: witt
4 Replies

2. UNIX for Dummies Questions & Answers

network interface questions

I can't remember or figure out how to do this. What is the command(s) in Solaris 8 sparc to show the values operating a NIC, specifically the negotiated transfer rate (10/100) and mode (full/half duplex)? Also, how can I force 100 Mb full (the network is just a crossover cable, and the other box is... (3 Replies)
Discussion started by: 98_1LE
3 Replies

3. Solaris

Network Interface Issue

Hi all, Here im facing problem with NIC Interface with my X86 Version of Solaris Express, even after loading module for that Interface. So please check this below mentioned log for your use and get back to me ASAP. - - - -- --... (0 Replies)
Discussion started by: baraghun
0 Replies

4. AIX

AIX platform: network interface list

Hi, I am trying to list all the interface present in the given system. Here is sample program. i.e. cat 1.c #include <sys/types.h> #include <sys/socket.h> #include <sys/ioctl.h> #include <sys/dlpi.h> #include <net/if.h> /*#include <sys/sockio.h>*/ #include <unistd.h> #include... (3 Replies)
Discussion started by: jgobbur
3 Replies

5. Solaris

configure zones to have different network interface and network

i need to configure a zone to use different interface (bge2) than global and have connected to completely different network switch & to use its own defaultrouter and hosts file .. is it possible ..if so ..how ? Thanks (9 Replies)
Discussion started by: skamal4u
9 Replies

6. UNIX and Linux Applications

Access to network interface (Mac-network)

Hi, I'm a italian student. For my thesis I develop a gateway with protocol 6lowpan. For that I must access to network interface to develope my personal stack based on standard 802.15.4. Can you help me? I need an explanation for that. (0 Replies)
Discussion started by: berny88
0 Replies

7. IP Networking

Network interface-

Hello, Please what's the difference between: AND Thank you so much (3 Replies)
Discussion started by: chercheur857
3 Replies

8. IP Networking

network interface -

Hello, Please, how can i create a network interface with a routable IP address on linux (ubuntu) ? AND How can i desactivate an interface? Thank you so much for help. (1 Reply)
Discussion started by: chercheur857
1 Replies

9. Solaris

No network cable But Network interface is UP and Running

I've one Netra 240 After changing main board and system configuration card reader, Network is not accessible any more, Network interfaces are always UP and Running even when there is no cable connected to Network interfaces. I tried to restart and plumb/unplumb with no luck. ifconfig -a... (7 Replies)
Discussion started by: samer.odeh
7 Replies

10. UNIX for Dummies Questions & Answers

Adding a network interface to a bonded interface

I have a RHEL 5 system with a bonded interface configure using only one network port (eth0). So I have config file for ifcfg-bond0 and ifcfg-eth. I'd like to configure eth5 to be the second SLAVE in the bond. My question is, after I modify ifcfg-eth5, can I add eth5 to the bond0 interface without... (1 Reply)
Discussion started by: westmoreland
1 Replies
NETDEVICE(7)						     Linux Programmer's Manual						      NETDEVICE(7)

NAME
netdevice - low-level access to Linux network devices SYNOPSIS
#include <sys/ioctl.h> #include <net/if.h> DESCRIPTION
This man page describes the sockets interface which is used to configure network devices. Linux supports some standard ioctls to configure network devices. They can be used on any socket's file descriptor regardless of the fam- ily or type. Most of them pass an ifreq structure: struct ifreq { char ifr_name[IFNAMSIZ]; /* Interface name */ union { struct sockaddr ifr_addr; struct sockaddr ifr_dstaddr; struct sockaddr ifr_broadaddr; struct sockaddr ifr_netmask; struct sockaddr ifr_hwaddr; short ifr_flags; int ifr_ifindex; int ifr_metric; int ifr_mtu; struct ifmap ifr_map; char ifr_slave[IFNAMSIZ]; char ifr_newname[IFNAMSIZ]; char *ifr_data; }; }; Normally, the user specifies which device to affect by setting ifr_name to the name of the interface. All other members of the structure may share memory. Ioctls If an ioctl is marked as privileged, then using it requires an effective user ID of 0 or the CAP_NET_ADMIN capability. If this is not the case, EPERM will be returned. SIOCGIFNAME Given the ifr_ifindex, return the name of the interface in ifr_name. This is the only ioctl which returns its result in ifr_name. SIOCGIFINDEX Retrieve the interface index of the interface into ifr_ifindex. SIOCGIFFLAGS, SIOCSIFFLAGS Get or set the active flag word of the device. ifr_flags contains a bit mask of the following values: Device flags IFF_UP Interface is running. IFF_BROADCAST Valid broadcast address set. IFF_DEBUG Internal debugging flag. IFF_LOOPBACK Interface is a loopback interface. IFF_POINTOPOINT Interface is a point-to-point link. IFF_RUNNING Resources allocated. IFF_NOARP No arp protocol, L2 destination address not set. IFF_PROMISC Interface is in promiscuous mode. IFF_NOTRAILERS Avoid use of trailers. IFF_ALLMULTI Receive all multicast packets. IFF_MASTER Master of a load balancing bundle. IFF_SLAVE Slave of a load balancing bundle. IFF_MULTICAST Supports multicast IFF_PORTSEL Is able to select media type via ifmap. IFF_AUTOMEDIA Auto media selection active. IFF_DYNAMIC The addresses are lost when the interface goes down. IFF_LOWER_UP Driver signals L1 up (since Linux 2.6.17) IFF_DORMANT Driver signals dormant (since Linux 2.6.17) IFF_ECHO Echo sent packets (since Linux 2.6.25) Setting the active flag word is a privileged operation, but any process may read it. SIOCGIFPFLAGS, SIOCSIFPFLAGS Get or set extended (private) flags for the device. ifr_flags contains a bit mask of the following values: Private flags IFF_802_1Q_VLAN Interface is 802.1Q VLAN device. IFF_EBRIDGE Interface is Ethernet bridging device. IFF_SLAVE_INACTIVE Interface is inactive bonding slave. IFF_MASTER_8023AD Interface is 802.3ad bonding master. IFF_MASTER_ALB Interface is balanced-alb bonding master. IFF_BONDING Interface is a bonding master or slave. IFF_SLAVE_NEEDARP Interface needs ARPs for validation. IFF_ISATAP Interface is RFC4214 ISATAP interface. Setting the extended (private) interface flags is a privileged operation. SIOCGIFADDR, SIOCSIFADDR Get or set the address of the device using ifr_addr. Setting the interface address is a privileged operation. For compatibility, only AF_INET addresses are accepted or returned. SIOCGIFDSTADDR, SIOCSIFDSTADDR Get or set the destination address of a point-to-point device using ifr_dstaddr. For compatibility, only AF_INET addresses are accepted or returned. Setting the destination address is a privileged operation. SIOCGIFBRDADDR, SIOCSIFBRDADDR Get or set the broadcast address for a device using ifr_brdaddr. For compatibility, only AF_INET addresses are accepted or returned. Setting the broadcast address is a privileged operation. SIOCGIFNETMASK, SIOCSIFNETMASK Get or set the network mask for a device using ifr_netmask. For compatibility, only AF_INET addresses are accepted or returned. Setting the network mask is a privileged operation. SIOCGIFMETRIC, SIOCSIFMETRIC Get or set the metric of the device using ifr_metric. This is currently not implemented; it sets ifr_metric to 0 if you attempt to read it and returns EOPNOTSUPP if you attempt to set it. SIOCGIFMTU, SIOCSIFMTU Get or set the MTU (Maximum Transfer Unit) of a device using ifr_mtu. Setting the MTU is a privileged operation. Setting the MTU to too small values may cause kernel crashes. SIOCGIFHWADDR, SIOCSIFHWADDR Get or set the hardware address of a device using ifr_hwaddr. The hardware address is specified in a struct sockaddr. sa_family contains the ARPHRD_* device type, sa_data the L2 hardware address starting from byte 0. Setting the hardware address is a privi- leged operation. SIOCSIFHWBROADCAST Set the hardware broadcast address of a device from ifr_hwaddr. This is a privileged operation. SIOCGIFMAP, SIOCSIFMAP Get or set the interface's hardware parameters using ifr_map. Setting the parameters is a privileged operation. struct ifmap { unsigned long mem_start; unsigned long mem_end; unsigned short base_addr; unsigned char irq; unsigned char dma; unsigned char port; }; The interpretation of the ifmap structure depends on the device driver and the architecture. SIOCADDMULTI, SIOCDELMULTI Add an address to or delete an address from the device's link layer multicast filters using ifr_hwaddr. These are privileged opera- tions. See also packet(7) for an alternative. SIOCGIFTXQLEN, SIOCSIFTXQLEN Get or set the transmit queue length of a device using ifr_qlen. Setting the transmit queue length is a privileged operation. SIOCSIFNAME Changes the name of the interface specified in ifr_name to ifr_newname. This is a privileged operation. It is allowed only when the interface is not up. SIOCGIFCONF Return a list of interface (transport layer) addresses. This currently means only addresses of the AF_INET (IPv4) family for com- patibility. Unlike the others, this ioctl passes an ifconf structure: struct ifconf { int ifc_len; /* size of buffer */ union { char *ifc_buf; /* buffer address */ struct ifreq *ifc_req; /* array of structures */ }; }; If ifc_req is NULL, SIOCGIFCONF returns the necessary buffer size in bytes for receiving all available addresses in ifc_len. Other- wise, ifc_req contains a pointer to an array of ifreq structures to be filled with all currently active L3 interface addresses. ifc_len contains the size of the array in bytes. Within each ifreq structure, ifr_name will receive the interface name, and ifr_addr the address. The actual number of bytes transferred is returned in ifc_len. If the size specified by ifc_len is insufficient to store all the addresses, the kernel will skip the exceeding ones and return suc- cess. There is no reliable way of detecting this condition once it has occurred. It is therefore recommended to either determine the necessary buffer size beforehand by calling SIOCGIFCONF with ifc_req set to NULL, or to retry the call with a bigger buffer whenever ifc_len upon return differs by less than sizeof(struct ifreq) from its original value. If an error occurs accessing the ifconf or ifreq structures, EFAULT will be returned. Most protocols support their own ioctls to configure protocol-specific interface options. See the protocol man pages for a description. For configuring IP addresses, see ip(7). In addition, some devices support private ioctls. These are not described here. NOTES
Strictly speaking, SIOCGIFCONF and the other ioctls that accept or return only AF_INET socket addresses, are IP-specific and belong in ip(7). The names of interfaces with no addresses or that don't have the IFF_RUNNING flag set can be found via /proc/net/dev. Local IPv6 IP addresses can be found via /proc/net or via rtnetlink(7). BUGS
glibc 2.1 is missing the ifr_newname macro in <net/if.h>. Add the following to your program as a workaround: #ifndef ifr_newname #define ifr_newname ifr_ifru.ifru_slave #endif SEE ALSO
proc(5), capabilities(7), ip(7), rtnetlink(7) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. Linux 2017-09-15 NETDEVICE(7)
All times are GMT -4. The time now is 02:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy