Blame view

fs/afs/netdevices.c 1.45 KB
dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
1
2
3
4
5
6
7
8
9
10
  /* AFS network device helpers
   *
   * Copyright (c) 2007 Patrick McHardy <kaber@trash.net>
   */
  
  #include <linux/string.h>
  #include <linux/rtnetlink.h>
  #include <linux/inetdevice.h>
  #include <linux/netdevice.h>
  #include <linux/if_arp.h>
881d966b4   Eric W. Biederman   [NET]: Make the d...
11
  #include <net/net_namespace.h>
dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
12
  #include "internal.h"
ec9c94854   David Howells   [AFS]: Adjust the...
13
14
15
16
17
  /*
   * get a MAC address from a random ethernet interface that has a real one
   * - the buffer will normally be 6 bytes in size
   */
  int afs_get_MAC_address(u8 *mac, size_t maclen)
dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
18
19
20
  {
  	struct net_device *dev;
  	int ret = -ENODEV;
11ff5f6af   Stoyan Gaydarov   afs: BUG to BUG_O...
21
  	BUG_ON(maclen != ETH_ALEN);
ec9c94854   David Howells   [AFS]: Adjust the...
22

dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
23
  	rtnl_lock();
881d966b4   Eric W. Biederman   [NET]: Make the d...
24
  	dev = __dev_getfirstbyhwtype(&init_net, ARPHRD_ETHER);
dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
25
  	if (dev) {
ec9c94854   David Howells   [AFS]: Adjust the...
26
  		memcpy(mac, dev->dev_addr, maclen);
dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
27
28
29
30
31
  		ret = 0;
  	}
  	rtnl_unlock();
  	return ret;
  }
ec9c94854   David Howells   [AFS]: Adjust the...
32
33
34
35
36
  /*
   * get a list of this system's interface IPv4 addresses, netmasks and MTUs
   * - maxbufs must be at least 1
   * - returns the number of interface records in the buffer
   */
dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
37
38
39
40
41
42
  int afs_get_ipv4_interfaces(struct afs_interface *bufs, size_t maxbufs,
  			    bool wantloopback)
  {
  	struct net_device *dev;
  	struct in_device *idev;
  	int n = 0;
ec9c94854   David Howells   [AFS]: Adjust the...
43
  	ASSERT(maxbufs > 0);
dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
44
  	rtnl_lock();
881d966b4   Eric W. Biederman   [NET]: Make the d...
45
  	for_each_netdev(&init_net, dev) {
dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
46
47
48
49
50
51
  		if (dev->type == ARPHRD_LOOPBACK && !wantloopback)
  			continue;
  		idev = __in_dev_get_rtnl(dev);
  		if (!idev)
  			continue;
  		for_primary_ifa(idev) {
dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
52
53
54
55
  			bufs[n].address.s_addr = ifa->ifa_address;
  			bufs[n].netmask.s_addr = ifa->ifa_mask;
  			bufs[n].mtu = dev->mtu;
  			n++;
ec9c94854   David Howells   [AFS]: Adjust the...
56
57
58
  			if (n >= maxbufs)
  				goto out;
  		} endfor_ifa(idev);
dc1f6bff6   Patrick McHardy   [AFS]: Replace rt...
59
60
61
62
63
  	}
  out:
  	rtnl_unlock();
  	return n;
  }