blob: 49f189423063d6c760a35f5e2e63bf188cf2bd48 [file] [log] [blame]
Patrick McHardydc1f6bf2007-05-03 03:28:49 -07001/* AFS network device helpers
2 *
3 * Copyright (c) 2007 Patrick McHardy <kaber@trash.net>
4 */
5
6#include <linux/string.h>
7#include <linux/rtnetlink.h>
8#include <linux/inetdevice.h>
9#include <linux/netdevice.h>
10#include <linux/if_arp.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070011#include <net/net_namespace.h>
Patrick McHardydc1f6bf2007-05-03 03:28:49 -070012#include "internal.h"
13
David Howellsec9c9482007-05-03 03:29:41 -070014/*
15 * get a MAC address from a random ethernet interface that has a real one
16 * - the buffer will normally be 6 bytes in size
17 */
18int afs_get_MAC_address(u8 *mac, size_t maclen)
Patrick McHardydc1f6bf2007-05-03 03:28:49 -070019{
20 struct net_device *dev;
21 int ret = -ENODEV;
22
David Howellsec9c9482007-05-03 03:29:41 -070023 if (maclen != ETH_ALEN)
24 BUG();
25
Patrick McHardydc1f6bf2007-05-03 03:28:49 -070026 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -070027 dev = __dev_getfirstbyhwtype(&init_net, ARPHRD_ETHER);
Patrick McHardydc1f6bf2007-05-03 03:28:49 -070028 if (dev) {
David Howellsec9c9482007-05-03 03:29:41 -070029 memcpy(mac, dev->dev_addr, maclen);
Patrick McHardydc1f6bf2007-05-03 03:28:49 -070030 ret = 0;
31 }
32 rtnl_unlock();
33 return ret;
34}
35
David Howellsec9c9482007-05-03 03:29:41 -070036/*
37 * get a list of this system's interface IPv4 addresses, netmasks and MTUs
38 * - maxbufs must be at least 1
39 * - returns the number of interface records in the buffer
40 */
Patrick McHardydc1f6bf2007-05-03 03:28:49 -070041int afs_get_ipv4_interfaces(struct afs_interface *bufs, size_t maxbufs,
42 bool wantloopback)
43{
44 struct net_device *dev;
45 struct in_device *idev;
46 int n = 0;
47
David Howellsec9c9482007-05-03 03:29:41 -070048 ASSERT(maxbufs > 0);
49
Patrick McHardydc1f6bf2007-05-03 03:28:49 -070050 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -070051 for_each_netdev(&init_net, dev) {
Patrick McHardydc1f6bf2007-05-03 03:28:49 -070052 if (dev->type == ARPHRD_LOOPBACK && !wantloopback)
53 continue;
54 idev = __in_dev_get_rtnl(dev);
55 if (!idev)
56 continue;
57 for_primary_ifa(idev) {
Patrick McHardydc1f6bf2007-05-03 03:28:49 -070058 bufs[n].address.s_addr = ifa->ifa_address;
59 bufs[n].netmask.s_addr = ifa->ifa_mask;
60 bufs[n].mtu = dev->mtu;
61 n++;
David Howellsec9c9482007-05-03 03:29:41 -070062 if (n >= maxbufs)
63 goto out;
64 } endfor_ifa(idev);
Patrick McHardydc1f6bf2007-05-03 03:28:49 -070065 }
66out:
67 rtnl_unlock();
68 return n;
69}