xref: /openbmc/linux/net/core/rtnetlink.c (revision e3703b3de1f049b38733ba520e5038f23063068e)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * INET		An implementation of the TCP/IP protocol suite for the LINUX
31da177e4SLinus Torvalds  *		operating system.  INET is implemented using the  BSD Socket
41da177e4SLinus Torvalds  *		interface as the means of communication with the user level.
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  *		Routing netlink socket interface: protocol independent part.
71da177e4SLinus Torvalds  *
81da177e4SLinus Torvalds  * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
91da177e4SLinus Torvalds  *
101da177e4SLinus Torvalds  *		This program is free software; you can redistribute it and/or
111da177e4SLinus Torvalds  *		modify it under the terms of the GNU General Public License
121da177e4SLinus Torvalds  *		as published by the Free Software Foundation; either version
131da177e4SLinus Torvalds  *		2 of the License, or (at your option) any later version.
141da177e4SLinus Torvalds  *
151da177e4SLinus Torvalds  *	Fixes:
161da177e4SLinus Torvalds  *	Vitaly E. Lavrov		RTA_OK arithmetics was wrong.
171da177e4SLinus Torvalds  */
181da177e4SLinus Torvalds 
191da177e4SLinus Torvalds #include <linux/errno.h>
201da177e4SLinus Torvalds #include <linux/module.h>
211da177e4SLinus Torvalds #include <linux/types.h>
221da177e4SLinus Torvalds #include <linux/socket.h>
231da177e4SLinus Torvalds #include <linux/kernel.h>
241da177e4SLinus Torvalds #include <linux/sched.h>
251da177e4SLinus Torvalds #include <linux/timer.h>
261da177e4SLinus Torvalds #include <linux/string.h>
271da177e4SLinus Torvalds #include <linux/sockios.h>
281da177e4SLinus Torvalds #include <linux/net.h>
291da177e4SLinus Torvalds #include <linux/fcntl.h>
301da177e4SLinus Torvalds #include <linux/mm.h>
311da177e4SLinus Torvalds #include <linux/slab.h>
321da177e4SLinus Torvalds #include <linux/interrupt.h>
331da177e4SLinus Torvalds #include <linux/capability.h>
341da177e4SLinus Torvalds #include <linux/skbuff.h>
351da177e4SLinus Torvalds #include <linux/init.h>
361da177e4SLinus Torvalds #include <linux/security.h>
376756ae4bSStephen Hemminger #include <linux/mutex.h>
381823730fSThomas Graf #include <linux/if_addr.h>
391da177e4SLinus Torvalds 
401da177e4SLinus Torvalds #include <asm/uaccess.h>
411da177e4SLinus Torvalds #include <asm/system.h>
421da177e4SLinus Torvalds #include <asm/string.h>
431da177e4SLinus Torvalds 
441da177e4SLinus Torvalds #include <linux/inet.h>
451da177e4SLinus Torvalds #include <linux/netdevice.h>
461da177e4SLinus Torvalds #include <net/ip.h>
471da177e4SLinus Torvalds #include <net/protocol.h>
481da177e4SLinus Torvalds #include <net/arp.h>
491da177e4SLinus Torvalds #include <net/route.h>
501da177e4SLinus Torvalds #include <net/udp.h>
511da177e4SLinus Torvalds #include <net/sock.h>
521da177e4SLinus Torvalds #include <net/pkt_sched.h>
5314c0b97dSThomas Graf #include <net/fib_rules.h>
549ac4a169SThomas Graf #include <net/netlink.h>
55711e2c33SJean Tourrilhes #ifdef CONFIG_NET_WIRELESS_RTNETLINK
56711e2c33SJean Tourrilhes #include <linux/wireless.h>
57711e2c33SJean Tourrilhes #include <net/iw_handler.h>
58711e2c33SJean Tourrilhes #endif	/* CONFIG_NET_WIRELESS_RTNETLINK */
591da177e4SLinus Torvalds 
606756ae4bSStephen Hemminger static DEFINE_MUTEX(rtnl_mutex);
6156fc85acSThomas Graf static struct sock *rtnl;
621da177e4SLinus Torvalds 
631da177e4SLinus Torvalds void rtnl_lock(void)
641da177e4SLinus Torvalds {
656756ae4bSStephen Hemminger 	mutex_lock(&rtnl_mutex);
661da177e4SLinus Torvalds }
671da177e4SLinus Torvalds 
686756ae4bSStephen Hemminger void __rtnl_unlock(void)
691da177e4SLinus Torvalds {
706756ae4bSStephen Hemminger 	mutex_unlock(&rtnl_mutex);
711da177e4SLinus Torvalds }
721da177e4SLinus Torvalds 
731da177e4SLinus Torvalds void rtnl_unlock(void)
741da177e4SLinus Torvalds {
756756ae4bSStephen Hemminger 	mutex_unlock(&rtnl_mutex);
766756ae4bSStephen Hemminger 	if (rtnl && rtnl->sk_receive_queue.qlen)
776756ae4bSStephen Hemminger 		rtnl->sk_data_ready(rtnl, 0);
781da177e4SLinus Torvalds 	netdev_run_todo();
791da177e4SLinus Torvalds }
801da177e4SLinus Torvalds 
816756ae4bSStephen Hemminger int rtnl_trylock(void)
826756ae4bSStephen Hemminger {
836756ae4bSStephen Hemminger 	return mutex_trylock(&rtnl_mutex);
846756ae4bSStephen Hemminger }
856756ae4bSStephen Hemminger 
861da177e4SLinus Torvalds int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len)
871da177e4SLinus Torvalds {
881da177e4SLinus Torvalds 	memset(tb, 0, sizeof(struct rtattr*)*maxattr);
891da177e4SLinus Torvalds 
901da177e4SLinus Torvalds 	while (RTA_OK(rta, len)) {
911da177e4SLinus Torvalds 		unsigned flavor = rta->rta_type;
921da177e4SLinus Torvalds 		if (flavor && flavor <= maxattr)
931da177e4SLinus Torvalds 			tb[flavor-1] = rta;
941da177e4SLinus Torvalds 		rta = RTA_NEXT(rta, len);
951da177e4SLinus Torvalds 	}
961da177e4SLinus Torvalds 	return 0;
971da177e4SLinus Torvalds }
981da177e4SLinus Torvalds 
991da177e4SLinus Torvalds struct rtnetlink_link * rtnetlink_links[NPROTO];
1001da177e4SLinus Torvalds 
101db46edc6SThomas Graf static const int rtm_min[RTM_NR_FAMILIES] =
1021da177e4SLinus Torvalds {
103f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWLINK)]      = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
104f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWADDR)]      = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
105f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWROUTE)]     = NLMSG_LENGTH(sizeof(struct rtmsg)),
10614c0b97dSThomas Graf 	[RTM_FAM(RTM_NEWRULE)]      = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
107f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWQDISC)]     = NLMSG_LENGTH(sizeof(struct tcmsg)),
108f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWTCLASS)]    = NLMSG_LENGTH(sizeof(struct tcmsg)),
109f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWTFILTER)]   = NLMSG_LENGTH(sizeof(struct tcmsg)),
110f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWACTION)]    = NLMSG_LENGTH(sizeof(struct tcamsg)),
111f90a0a74SThomas Graf 	[RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
112f90a0a74SThomas Graf 	[RTM_FAM(RTM_GETANYCAST)]   = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
1131da177e4SLinus Torvalds };
1141da177e4SLinus Torvalds 
115db46edc6SThomas Graf static const int rta_max[RTM_NR_FAMILIES] =
1161da177e4SLinus Torvalds {
117f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWLINK)]      = IFLA_MAX,
118f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWADDR)]      = IFA_MAX,
119f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWROUTE)]     = RTA_MAX,
12014c0b97dSThomas Graf 	[RTM_FAM(RTM_NEWRULE)]      = FRA_MAX,
121f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWQDISC)]     = TCA_MAX,
122f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWTCLASS)]    = TCA_MAX,
123f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWTFILTER)]   = TCA_MAX,
124f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWACTION)]    = TCAA_MAX,
1251da177e4SLinus Torvalds };
1261da177e4SLinus Torvalds 
1271da177e4SLinus Torvalds void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
1281da177e4SLinus Torvalds {
1291da177e4SLinus Torvalds 	struct rtattr *rta;
1301da177e4SLinus Torvalds 	int size = RTA_LENGTH(attrlen);
1311da177e4SLinus Torvalds 
1321da177e4SLinus Torvalds 	rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
1331da177e4SLinus Torvalds 	rta->rta_type = attrtype;
1341da177e4SLinus Torvalds 	rta->rta_len = size;
1351da177e4SLinus Torvalds 	memcpy(RTA_DATA(rta), data, attrlen);
136b3563c4fSPatrick McHardy 	memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
1371da177e4SLinus Torvalds }
1381da177e4SLinus Torvalds 
1391da177e4SLinus Torvalds size_t rtattr_strlcpy(char *dest, const struct rtattr *rta, size_t size)
1401da177e4SLinus Torvalds {
1411da177e4SLinus Torvalds 	size_t ret = RTA_PAYLOAD(rta);
1421da177e4SLinus Torvalds 	char *src = RTA_DATA(rta);
1431da177e4SLinus Torvalds 
1441da177e4SLinus Torvalds 	if (ret > 0 && src[ret - 1] == '\0')
1451da177e4SLinus Torvalds 		ret--;
1461da177e4SLinus Torvalds 	if (size > 0) {
1471da177e4SLinus Torvalds 		size_t len = (ret >= size) ? size - 1 : ret;
1481da177e4SLinus Torvalds 		memset(dest, 0, size);
1491da177e4SLinus Torvalds 		memcpy(dest, src, len);
1501da177e4SLinus Torvalds 	}
1511da177e4SLinus Torvalds 	return ret;
1521da177e4SLinus Torvalds }
1531da177e4SLinus Torvalds 
1541da177e4SLinus Torvalds int rtnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
1551da177e4SLinus Torvalds {
1561da177e4SLinus Torvalds 	int err = 0;
1571da177e4SLinus Torvalds 
158ac6d439dSPatrick McHardy 	NETLINK_CB(skb).dst_group = group;
1591da177e4SLinus Torvalds 	if (echo)
1601da177e4SLinus Torvalds 		atomic_inc(&skb->users);
1611da177e4SLinus Torvalds 	netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
1621da177e4SLinus Torvalds 	if (echo)
1631da177e4SLinus Torvalds 		err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
1641da177e4SLinus Torvalds 	return err;
1651da177e4SLinus Torvalds }
1661da177e4SLinus Torvalds 
1672942e900SThomas Graf int rtnl_unicast(struct sk_buff *skb, u32 pid)
1682942e900SThomas Graf {
1692942e900SThomas Graf 	return nlmsg_unicast(rtnl, skb, pid);
1702942e900SThomas Graf }
1712942e900SThomas Graf 
17297676b6bSThomas Graf int rtnl_notify(struct sk_buff *skb, u32 pid, u32 group,
17397676b6bSThomas Graf 		struct nlmsghdr *nlh, gfp_t flags)
17497676b6bSThomas Graf {
17597676b6bSThomas Graf 	int report = 0;
17697676b6bSThomas Graf 
17797676b6bSThomas Graf 	if (nlh)
17897676b6bSThomas Graf 		report = nlmsg_report(nlh);
17997676b6bSThomas Graf 
18097676b6bSThomas Graf 	return nlmsg_notify(rtnl, skb, pid, group, report, flags);
18197676b6bSThomas Graf }
18297676b6bSThomas Graf 
18397676b6bSThomas Graf void rtnl_set_sk_err(u32 group, int error)
18497676b6bSThomas Graf {
18597676b6bSThomas Graf 	netlink_set_err(rtnl, 0, group, error);
18697676b6bSThomas Graf }
18797676b6bSThomas Graf 
1881da177e4SLinus Torvalds int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
1891da177e4SLinus Torvalds {
1902d7202bfSThomas Graf 	struct nlattr *mx;
1912d7202bfSThomas Graf 	int i, valid = 0;
1921da177e4SLinus Torvalds 
1932d7202bfSThomas Graf 	mx = nla_nest_start(skb, RTA_METRICS);
1942d7202bfSThomas Graf 	if (mx == NULL)
1952d7202bfSThomas Graf 		return -ENOBUFS;
1962d7202bfSThomas Graf 
1971da177e4SLinus Torvalds 	for (i = 0; i < RTAX_MAX; i++) {
1982d7202bfSThomas Graf 		if (metrics[i]) {
1992d7202bfSThomas Graf 			valid++;
2002d7202bfSThomas Graf 			NLA_PUT_U32(skb, i+1, metrics[i]);
2011da177e4SLinus Torvalds 		}
2022d7202bfSThomas Graf 	}
2031da177e4SLinus Torvalds 
204a57d27fcSDavid S. Miller 	if (!valid) {
205a57d27fcSDavid S. Miller 		nla_nest_cancel(skb, mx);
206a57d27fcSDavid S. Miller 		return 0;
207a57d27fcSDavid S. Miller 	}
2082d7202bfSThomas Graf 
2092d7202bfSThomas Graf 	return nla_nest_end(skb, mx);
2102d7202bfSThomas Graf 
2112d7202bfSThomas Graf nla_put_failure:
2122d7202bfSThomas Graf 	return nla_nest_cancel(skb, mx);
2131da177e4SLinus Torvalds }
2141da177e4SLinus Torvalds 
215*e3703b3dSThomas Graf int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
216*e3703b3dSThomas Graf 		       u32 ts, u32 tsage, long expires, u32 error)
217*e3703b3dSThomas Graf {
218*e3703b3dSThomas Graf 	struct rta_cacheinfo ci = {
219*e3703b3dSThomas Graf 		.rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
220*e3703b3dSThomas Graf 		.rta_used = dst->__use,
221*e3703b3dSThomas Graf 		.rta_clntref = atomic_read(&(dst->__refcnt)),
222*e3703b3dSThomas Graf 		.rta_error = error,
223*e3703b3dSThomas Graf 		.rta_id =  id,
224*e3703b3dSThomas Graf 		.rta_ts = ts,
225*e3703b3dSThomas Graf 		.rta_tsage = tsage,
226*e3703b3dSThomas Graf 	};
227*e3703b3dSThomas Graf 
228*e3703b3dSThomas Graf 	if (expires)
229*e3703b3dSThomas Graf 		ci.rta_expires = jiffies_to_clock_t(expires);
230*e3703b3dSThomas Graf 
231*e3703b3dSThomas Graf 	return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
232*e3703b3dSThomas Graf }
233*e3703b3dSThomas Graf 
234*e3703b3dSThomas Graf EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
2351da177e4SLinus Torvalds 
236b00055aaSStefan Rompf static void set_operstate(struct net_device *dev, unsigned char transition)
237b00055aaSStefan Rompf {
238b00055aaSStefan Rompf 	unsigned char operstate = dev->operstate;
239b00055aaSStefan Rompf 
240b00055aaSStefan Rompf 	switch(transition) {
241b00055aaSStefan Rompf 	case IF_OPER_UP:
242b00055aaSStefan Rompf 		if ((operstate == IF_OPER_DORMANT ||
243b00055aaSStefan Rompf 		     operstate == IF_OPER_UNKNOWN) &&
244b00055aaSStefan Rompf 		    !netif_dormant(dev))
245b00055aaSStefan Rompf 			operstate = IF_OPER_UP;
246b00055aaSStefan Rompf 		break;
247b00055aaSStefan Rompf 
248b00055aaSStefan Rompf 	case IF_OPER_DORMANT:
249b00055aaSStefan Rompf 		if (operstate == IF_OPER_UP ||
250b00055aaSStefan Rompf 		    operstate == IF_OPER_UNKNOWN)
251b00055aaSStefan Rompf 			operstate = IF_OPER_DORMANT;
252b00055aaSStefan Rompf 		break;
253b00055aaSStefan Rompf 	};
254b00055aaSStefan Rompf 
255b00055aaSStefan Rompf 	if (dev->operstate != operstate) {
256b00055aaSStefan Rompf 		write_lock_bh(&dev_base_lock);
257b00055aaSStefan Rompf 		dev->operstate = operstate;
258b00055aaSStefan Rompf 		write_unlock_bh(&dev_base_lock);
259b00055aaSStefan Rompf 		netdev_state_change(dev);
260b00055aaSStefan Rompf 	}
261b00055aaSStefan Rompf }
262b00055aaSStefan Rompf 
263b60c5115SThomas Graf static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
264b60c5115SThomas Graf 				 struct net_device_stats *b)
2651da177e4SLinus Torvalds {
266b60c5115SThomas Graf 	a->rx_packets = b->rx_packets;
267b60c5115SThomas Graf 	a->tx_packets = b->tx_packets;
268b60c5115SThomas Graf 	a->rx_bytes = b->rx_bytes;
269b60c5115SThomas Graf 	a->tx_bytes = b->tx_bytes;
270b60c5115SThomas Graf 	a->rx_errors = b->rx_errors;
271b60c5115SThomas Graf 	a->tx_errors = b->tx_errors;
272b60c5115SThomas Graf 	a->rx_dropped = b->rx_dropped;
273b60c5115SThomas Graf 	a->tx_dropped = b->tx_dropped;
274b60c5115SThomas Graf 
275b60c5115SThomas Graf 	a->multicast = b->multicast;
276b60c5115SThomas Graf 	a->collisions = b->collisions;
277b60c5115SThomas Graf 
278b60c5115SThomas Graf 	a->rx_length_errors = b->rx_length_errors;
279b60c5115SThomas Graf 	a->rx_over_errors = b->rx_over_errors;
280b60c5115SThomas Graf 	a->rx_crc_errors = b->rx_crc_errors;
281b60c5115SThomas Graf 	a->rx_frame_errors = b->rx_frame_errors;
282b60c5115SThomas Graf 	a->rx_fifo_errors = b->rx_fifo_errors;
283b60c5115SThomas Graf 	a->rx_missed_errors = b->rx_missed_errors;
284b60c5115SThomas Graf 
285b60c5115SThomas Graf 	a->tx_aborted_errors = b->tx_aborted_errors;
286b60c5115SThomas Graf 	a->tx_carrier_errors = b->tx_carrier_errors;
287b60c5115SThomas Graf 	a->tx_fifo_errors = b->tx_fifo_errors;
288b60c5115SThomas Graf 	a->tx_heartbeat_errors = b->tx_heartbeat_errors;
289b60c5115SThomas Graf 	a->tx_window_errors = b->tx_window_errors;
290b60c5115SThomas Graf 
291b60c5115SThomas Graf 	a->rx_compressed = b->rx_compressed;
292b60c5115SThomas Graf 	a->tx_compressed = b->tx_compressed;
293b60c5115SThomas Graf };
294b60c5115SThomas Graf 
295339bf98fSThomas Graf static inline size_t if_nlmsg_size(int iwbuflen)
296339bf98fSThomas Graf {
297339bf98fSThomas Graf 	return NLMSG_ALIGN(sizeof(struct ifinfomsg))
298339bf98fSThomas Graf 	       + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
299339bf98fSThomas Graf 	       + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
300339bf98fSThomas Graf 	       + nla_total_size(sizeof(struct rtnl_link_ifmap))
301339bf98fSThomas Graf 	       + nla_total_size(sizeof(struct rtnl_link_stats))
302339bf98fSThomas Graf 	       + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
303339bf98fSThomas Graf 	       + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
304339bf98fSThomas Graf 	       + nla_total_size(4) /* IFLA_TXQLEN */
305339bf98fSThomas Graf 	       + nla_total_size(4) /* IFLA_WEIGHT */
306339bf98fSThomas Graf 	       + nla_total_size(4) /* IFLA_MTU */
307339bf98fSThomas Graf 	       + nla_total_size(4) /* IFLA_LINK */
308339bf98fSThomas Graf 	       + nla_total_size(4) /* IFLA_MASTER */
309339bf98fSThomas Graf 	       + nla_total_size(1) /* IFLA_OPERSTATE */
310339bf98fSThomas Graf 	       + nla_total_size(1) /* IFLA_LINKMODE */
311339bf98fSThomas Graf 	       + nla_total_size(iwbuflen);
312339bf98fSThomas Graf }
313339bf98fSThomas Graf 
314b60c5115SThomas Graf static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
315b60c5115SThomas Graf 			    void *iwbuf, int iwbuflen, int type, u32 pid,
316b60c5115SThomas Graf 			    u32 seq, u32 change, unsigned int flags)
317b60c5115SThomas Graf {
318b60c5115SThomas Graf 	struct ifinfomsg *ifm;
3191da177e4SLinus Torvalds 	struct nlmsghdr *nlh;
3201da177e4SLinus Torvalds 
321b60c5115SThomas Graf 	nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
322b60c5115SThomas Graf 	if (nlh == NULL)
323b60c5115SThomas Graf 		return -ENOBUFS;
3241da177e4SLinus Torvalds 
325b60c5115SThomas Graf 	ifm = nlmsg_data(nlh);
326b60c5115SThomas Graf 	ifm->ifi_family = AF_UNSPEC;
327b60c5115SThomas Graf 	ifm->__ifi_pad = 0;
328b60c5115SThomas Graf 	ifm->ifi_type = dev->type;
329b60c5115SThomas Graf 	ifm->ifi_index = dev->ifindex;
330b60c5115SThomas Graf 	ifm->ifi_flags = dev_get_flags(dev);
331b60c5115SThomas Graf 	ifm->ifi_change = change;
3321da177e4SLinus Torvalds 
333b60c5115SThomas Graf 	NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
334b60c5115SThomas Graf 	NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
335b60c5115SThomas Graf 	NLA_PUT_U32(skb, IFLA_WEIGHT, dev->weight);
336b60c5115SThomas Graf 	NLA_PUT_U8(skb, IFLA_OPERSTATE,
337b60c5115SThomas Graf 		   netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
338b60c5115SThomas Graf 	NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
339b60c5115SThomas Graf 	NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
3401da177e4SLinus Torvalds 
341b60c5115SThomas Graf 	if (dev->ifindex != dev->iflink)
342b60c5115SThomas Graf 		NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
3431da177e4SLinus Torvalds 
344b60c5115SThomas Graf 	if (dev->master)
345b60c5115SThomas Graf 		NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
346b60c5115SThomas Graf 
347b60c5115SThomas Graf 	if (dev->qdisc_sleeping)
348b60c5115SThomas Graf 		NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc_sleeping->ops->id);
349b00055aaSStefan Rompf 
350b00055aaSStefan Rompf 	if (1) {
3511da177e4SLinus Torvalds 		struct rtnl_link_ifmap map = {
3521da177e4SLinus Torvalds 			.mem_start   = dev->mem_start,
3531da177e4SLinus Torvalds 			.mem_end     = dev->mem_end,
3541da177e4SLinus Torvalds 			.base_addr   = dev->base_addr,
3551da177e4SLinus Torvalds 			.irq         = dev->irq,
3561da177e4SLinus Torvalds 			.dma         = dev->dma,
3571da177e4SLinus Torvalds 			.port        = dev->if_port,
3581da177e4SLinus Torvalds 		};
359b60c5115SThomas Graf 		NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
3601da177e4SLinus Torvalds 	}
3611da177e4SLinus Torvalds 
3621da177e4SLinus Torvalds 	if (dev->addr_len) {
363b60c5115SThomas Graf 		NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
364b60c5115SThomas Graf 		NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
3651da177e4SLinus Torvalds 	}
3661da177e4SLinus Torvalds 
3671da177e4SLinus Torvalds 	if (dev->get_stats) {
368b60c5115SThomas Graf 		struct net_device_stats *stats = dev->get_stats(dev);
3691da177e4SLinus Torvalds 		if (stats) {
370b60c5115SThomas Graf 			struct nlattr *attr;
3711da177e4SLinus Torvalds 
372b60c5115SThomas Graf 			attr = nla_reserve(skb, IFLA_STATS,
373b60c5115SThomas Graf 					   sizeof(struct rtnl_link_stats));
374b60c5115SThomas Graf 			if (attr == NULL)
375b60c5115SThomas Graf 				goto nla_put_failure;
376b60c5115SThomas Graf 
377b60c5115SThomas Graf 			copy_rtnl_link_stats(nla_data(attr), stats);
3781da177e4SLinus Torvalds 		}
3791da177e4SLinus Torvalds 	}
3801da177e4SLinus Torvalds 
381b60c5115SThomas Graf 	if (iwbuf)
382b60c5115SThomas Graf 		NLA_PUT(skb, IFLA_WIRELESS, iwbuflen, iwbuf);
383b60c5115SThomas Graf 
384b60c5115SThomas Graf 	return nlmsg_end(skb, nlh);
385b60c5115SThomas Graf 
386b60c5115SThomas Graf nla_put_failure:
387b60c5115SThomas Graf 	return nlmsg_cancel(skb, nlh);
3881da177e4SLinus Torvalds }
3891da177e4SLinus Torvalds 
390b60c5115SThomas Graf static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
3911da177e4SLinus Torvalds {
3921da177e4SLinus Torvalds 	int idx;
3931da177e4SLinus Torvalds 	int s_idx = cb->args[0];
3941da177e4SLinus Torvalds 	struct net_device *dev;
3951da177e4SLinus Torvalds 
3961da177e4SLinus Torvalds 	read_lock(&dev_base_lock);
3971da177e4SLinus Torvalds 	for (dev=dev_base, idx=0; dev; dev = dev->next, idx++) {
3981da177e4SLinus Torvalds 		if (idx < s_idx)
3991da177e4SLinus Torvalds 			continue;
400b60c5115SThomas Graf 		if (rtnl_fill_ifinfo(skb, dev, NULL, 0, RTM_NEWLINK,
401b6544c0bSJamal Hadi Salim 				     NETLINK_CB(cb->skb).pid,
402b60c5115SThomas Graf 				     cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0)
4031da177e4SLinus Torvalds 			break;
4041da177e4SLinus Torvalds 	}
4051da177e4SLinus Torvalds 	read_unlock(&dev_base_lock);
4061da177e4SLinus Torvalds 	cb->args[0] = idx;
4071da177e4SLinus Torvalds 
4081da177e4SLinus Torvalds 	return skb->len;
4091da177e4SLinus Torvalds }
4101da177e4SLinus Torvalds 
411da5e0494SThomas Graf static struct nla_policy ifla_policy[IFLA_MAX+1] __read_mostly = {
4125176f91eSThomas Graf 	[IFLA_IFNAME]		= { .type = NLA_STRING, .len = IFNAMSIZ-1 },
4135176f91eSThomas Graf 	[IFLA_MAP]		= { .len = sizeof(struct rtnl_link_ifmap) },
414da5e0494SThomas Graf 	[IFLA_MTU]		= { .type = NLA_U32 },
415da5e0494SThomas Graf 	[IFLA_TXQLEN]		= { .type = NLA_U32 },
416da5e0494SThomas Graf 	[IFLA_WEIGHT]		= { .type = NLA_U32 },
417da5e0494SThomas Graf 	[IFLA_OPERSTATE]	= { .type = NLA_U8 },
418da5e0494SThomas Graf 	[IFLA_LINKMODE]		= { .type = NLA_U8 },
419da5e0494SThomas Graf };
4201da177e4SLinus Torvalds 
421da5e0494SThomas Graf static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
422da5e0494SThomas Graf {
423da5e0494SThomas Graf 	struct ifinfomsg *ifm;
424da5e0494SThomas Graf 	struct net_device *dev;
425da5e0494SThomas Graf 	int err, send_addr_notify = 0, modified = 0;
426da5e0494SThomas Graf 	struct nlattr *tb[IFLA_MAX+1];
4271da177e4SLinus Torvalds 	char ifname[IFNAMSIZ];
4281da177e4SLinus Torvalds 
429da5e0494SThomas Graf 	err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
430da5e0494SThomas Graf 	if (err < 0)
431da5e0494SThomas Graf 		goto errout;
4321da177e4SLinus Torvalds 
4335176f91eSThomas Graf 	if (tb[IFLA_IFNAME])
4345176f91eSThomas Graf 		nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
43578e5b891SPatrick McHardy 	else
43678e5b891SPatrick McHardy 		ifname[0] = '\0';
4371da177e4SLinus Torvalds 
4381da177e4SLinus Torvalds 	err = -EINVAL;
439da5e0494SThomas Graf 	ifm = nlmsg_data(nlh);
440da5e0494SThomas Graf 	if (ifm->ifi_index >= 0)
441da5e0494SThomas Graf 		dev = dev_get_by_index(ifm->ifi_index);
442da5e0494SThomas Graf 	else if (tb[IFLA_IFNAME])
443da5e0494SThomas Graf 		dev = dev_get_by_name(ifname);
444da5e0494SThomas Graf 	else
445da5e0494SThomas Graf 		goto errout;
4461da177e4SLinus Torvalds 
447da5e0494SThomas Graf 	if (dev == NULL) {
448da5e0494SThomas Graf 		err = -ENODEV;
449da5e0494SThomas Graf 		goto errout;
450da5e0494SThomas Graf 	}
4511da177e4SLinus Torvalds 
452da5e0494SThomas Graf 	if (tb[IFLA_ADDRESS] &&
453da5e0494SThomas Graf 	    nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
454da5e0494SThomas Graf 		goto errout_dev;
455da5e0494SThomas Graf 
456da5e0494SThomas Graf 	if (tb[IFLA_BROADCAST] &&
457da5e0494SThomas Graf 	    nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
458da5e0494SThomas Graf 		goto errout_dev;
459da5e0494SThomas Graf 
460da5e0494SThomas Graf 	if (tb[IFLA_MAP]) {
4611da177e4SLinus Torvalds 		struct rtnl_link_ifmap *u_map;
4621da177e4SLinus Torvalds 		struct ifmap k_map;
4631da177e4SLinus Torvalds 
4641da177e4SLinus Torvalds 		if (!dev->set_config) {
4651da177e4SLinus Torvalds 			err = -EOPNOTSUPP;
466da5e0494SThomas Graf 			goto errout_dev;
4671da177e4SLinus Torvalds 		}
4681da177e4SLinus Torvalds 
4691da177e4SLinus Torvalds 		if (!netif_device_present(dev)) {
4701da177e4SLinus Torvalds 			err = -ENODEV;
471da5e0494SThomas Graf 			goto errout_dev;
4721da177e4SLinus Torvalds 		}
4731da177e4SLinus Torvalds 
474da5e0494SThomas Graf 		u_map = nla_data(tb[IFLA_MAP]);
4751da177e4SLinus Torvalds 		k_map.mem_start = (unsigned long) u_map->mem_start;
4761da177e4SLinus Torvalds 		k_map.mem_end = (unsigned long) u_map->mem_end;
4771da177e4SLinus Torvalds 		k_map.base_addr = (unsigned short) u_map->base_addr;
4781da177e4SLinus Torvalds 		k_map.irq = (unsigned char) u_map->irq;
4791da177e4SLinus Torvalds 		k_map.dma = (unsigned char) u_map->dma;
4801da177e4SLinus Torvalds 		k_map.port = (unsigned char) u_map->port;
4811da177e4SLinus Torvalds 
4821da177e4SLinus Torvalds 		err = dev->set_config(dev, &k_map);
483da5e0494SThomas Graf 		if (err < 0)
484da5e0494SThomas Graf 			goto errout_dev;
4851da177e4SLinus Torvalds 
486da5e0494SThomas Graf 		modified = 1;
4871da177e4SLinus Torvalds 	}
4881da177e4SLinus Torvalds 
489da5e0494SThomas Graf 	if (tb[IFLA_ADDRESS]) {
49070f8e78eSDavid S. Miller 		struct sockaddr *sa;
49170f8e78eSDavid S. Miller 		int len;
49270f8e78eSDavid S. Miller 
4931da177e4SLinus Torvalds 		if (!dev->set_mac_address) {
4941da177e4SLinus Torvalds 			err = -EOPNOTSUPP;
495da5e0494SThomas Graf 			goto errout_dev;
4961da177e4SLinus Torvalds 		}
497da5e0494SThomas Graf 
4981da177e4SLinus Torvalds 		if (!netif_device_present(dev)) {
4991da177e4SLinus Torvalds 			err = -ENODEV;
500da5e0494SThomas Graf 			goto errout_dev;
5011da177e4SLinus Torvalds 		}
5021da177e4SLinus Torvalds 
50370f8e78eSDavid S. Miller 		len = sizeof(sa_family_t) + dev->addr_len;
50470f8e78eSDavid S. Miller 		sa = kmalloc(len, GFP_KERNEL);
50570f8e78eSDavid S. Miller 		if (!sa) {
50670f8e78eSDavid S. Miller 			err = -ENOMEM;
507da5e0494SThomas Graf 			goto errout_dev;
50870f8e78eSDavid S. Miller 		}
50970f8e78eSDavid S. Miller 		sa->sa_family = dev->type;
510da5e0494SThomas Graf 		memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
51170f8e78eSDavid S. Miller 		       dev->addr_len);
51270f8e78eSDavid S. Miller 		err = dev->set_mac_address(dev, sa);
51370f8e78eSDavid S. Miller 		kfree(sa);
5141da177e4SLinus Torvalds 		if (err)
515da5e0494SThomas Graf 			goto errout_dev;
5161da177e4SLinus Torvalds 		send_addr_notify = 1;
517da5e0494SThomas Graf 		modified = 1;
5181da177e4SLinus Torvalds 	}
5191da177e4SLinus Torvalds 
520da5e0494SThomas Graf 	if (tb[IFLA_MTU]) {
521da5e0494SThomas Graf 		err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
522da5e0494SThomas Graf 		if (err < 0)
523da5e0494SThomas Graf 			goto errout_dev;
524da5e0494SThomas Graf 		modified = 1;
5251da177e4SLinus Torvalds 	}
5261da177e4SLinus Torvalds 
527da5e0494SThomas Graf 	/*
528da5e0494SThomas Graf 	 * Interface selected by interface index but interface
529da5e0494SThomas Graf 	 * name provided implies that a name change has been
530da5e0494SThomas Graf 	 * requested.
531da5e0494SThomas Graf 	 */
532da5e0494SThomas Graf 	if (ifm->ifi_index >= 0 && ifname[0]) {
5331da177e4SLinus Torvalds 		err = dev_change_name(dev, ifname);
534da5e0494SThomas Graf 		if (err < 0)
535da5e0494SThomas Graf 			goto errout_dev;
536da5e0494SThomas Graf 		modified = 1;
5371da177e4SLinus Torvalds 	}
5381da177e4SLinus Torvalds 
539711e2c33SJean Tourrilhes #ifdef CONFIG_NET_WIRELESS_RTNETLINK
540da5e0494SThomas Graf 	if (tb[IFLA_WIRELESS]) {
541711e2c33SJean Tourrilhes 		/* Call Wireless Extensions.
542711e2c33SJean Tourrilhes 		 * Various stuff checked in there... */
543da5e0494SThomas Graf 		err = wireless_rtnetlink_set(dev, nla_data(tb[IFLA_WIRELESS]),
544da5e0494SThomas Graf 					     nla_len(tb[IFLA_WIRELESS]));
545da5e0494SThomas Graf 		if (err < 0)
546da5e0494SThomas Graf 			goto errout_dev;
547711e2c33SJean Tourrilhes 	}
548711e2c33SJean Tourrilhes #endif	/* CONFIG_NET_WIRELESS_RTNETLINK */
549711e2c33SJean Tourrilhes 
550da5e0494SThomas Graf 	if (tb[IFLA_BROADCAST]) {
551da5e0494SThomas Graf 		nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
552da5e0494SThomas Graf 		send_addr_notify = 1;
553da5e0494SThomas Graf 	}
554da5e0494SThomas Graf 
555da5e0494SThomas Graf 
556da5e0494SThomas Graf 	if (ifm->ifi_flags)
557da5e0494SThomas Graf 		dev_change_flags(dev, ifm->ifi_flags);
558da5e0494SThomas Graf 
559da5e0494SThomas Graf 	if (tb[IFLA_TXQLEN])
560da5e0494SThomas Graf 		dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
561da5e0494SThomas Graf 
562da5e0494SThomas Graf 	if (tb[IFLA_WEIGHT])
563da5e0494SThomas Graf 		dev->weight = nla_get_u32(tb[IFLA_WEIGHT]);
564da5e0494SThomas Graf 
565da5e0494SThomas Graf 	if (tb[IFLA_OPERSTATE])
566da5e0494SThomas Graf 		set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
567da5e0494SThomas Graf 
568da5e0494SThomas Graf 	if (tb[IFLA_LINKMODE]) {
569da5e0494SThomas Graf 		write_lock_bh(&dev_base_lock);
570da5e0494SThomas Graf 		dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
571da5e0494SThomas Graf 		write_unlock_bh(&dev_base_lock);
572da5e0494SThomas Graf 	}
573da5e0494SThomas Graf 
5741da177e4SLinus Torvalds 	err = 0;
5751da177e4SLinus Torvalds 
576da5e0494SThomas Graf errout_dev:
577da5e0494SThomas Graf 	if (err < 0 && modified && net_ratelimit())
578da5e0494SThomas Graf 		printk(KERN_WARNING "A link change request failed with "
579da5e0494SThomas Graf 		       "some changes comitted already. Interface %s may "
580da5e0494SThomas Graf 		       "have been left with an inconsistent configuration, "
581da5e0494SThomas Graf 		       "please check.\n", dev->name);
582da5e0494SThomas Graf 
5831da177e4SLinus Torvalds 	if (send_addr_notify)
5841da177e4SLinus Torvalds 		call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
5851da177e4SLinus Torvalds 
5861da177e4SLinus Torvalds 	dev_put(dev);
587da5e0494SThomas Graf errout:
5881da177e4SLinus Torvalds 	return err;
5891da177e4SLinus Torvalds }
5901da177e4SLinus Torvalds 
591b60c5115SThomas Graf static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
592711e2c33SJean Tourrilhes {
593b60c5115SThomas Graf 	struct ifinfomsg *ifm;
594b60c5115SThomas Graf 	struct nlattr *tb[IFLA_MAX+1];
595b60c5115SThomas Graf 	struct net_device *dev = NULL;
596b60c5115SThomas Graf 	struct sk_buff *nskb;
597b60c5115SThomas Graf 	char *iw_buf = NULL, *iw = NULL;
598711e2c33SJean Tourrilhes 	int iw_buf_len = 0;
599339bf98fSThomas Graf 	int err;
600711e2c33SJean Tourrilhes 
601b60c5115SThomas Graf 	err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
602b60c5115SThomas Graf 	if (err < 0)
6039918f230SEric Sesterhenn 		return err;
604b60c5115SThomas Graf 
605b60c5115SThomas Graf 	ifm = nlmsg_data(nlh);
606b60c5115SThomas Graf 	if (ifm->ifi_index >= 0) {
607711e2c33SJean Tourrilhes 		dev = dev_get_by_index(ifm->ifi_index);
608b60c5115SThomas Graf 		if (dev == NULL)
609711e2c33SJean Tourrilhes 			return -ENODEV;
610b60c5115SThomas Graf 	} else
611b60c5115SThomas Graf 		return -EINVAL;
612b60c5115SThomas Graf 
613711e2c33SJean Tourrilhes 
614711e2c33SJean Tourrilhes #ifdef CONFIG_NET_WIRELESS_RTNETLINK
615b60c5115SThomas Graf 	if (tb[IFLA_WIRELESS]) {
616711e2c33SJean Tourrilhes 		/* Call Wireless Extensions. We need to know the size before
617711e2c33SJean Tourrilhes 		 * we can alloc. Various stuff checked in there... */
618b60c5115SThomas Graf 		err = wireless_rtnetlink_get(dev, nla_data(tb[IFLA_WIRELESS]),
619b60c5115SThomas Graf 					     nla_len(tb[IFLA_WIRELESS]),
620b60c5115SThomas Graf 					     &iw_buf, &iw_buf_len);
621b60c5115SThomas Graf 		if (err < 0)
622b60c5115SThomas Graf 			goto errout;
623b60c5115SThomas Graf 
624b60c5115SThomas Graf 		iw += IW_EV_POINT_OFF;
625711e2c33SJean Tourrilhes 	}
626711e2c33SJean Tourrilhes #endif	/* CONFIG_NET_WIRELESS_RTNETLINK */
627711e2c33SJean Tourrilhes 
628339bf98fSThomas Graf 	nskb = nlmsg_new(if_nlmsg_size(iw_buf_len), GFP_KERNEL);
629b60c5115SThomas Graf 	if (nskb == NULL) {
630b60c5115SThomas Graf 		err = -ENOBUFS;
631b60c5115SThomas Graf 		goto errout;
632b60c5115SThomas Graf 	}
633711e2c33SJean Tourrilhes 
634b60c5115SThomas Graf 	err = rtnl_fill_ifinfo(nskb, dev, iw, iw_buf_len, RTM_NEWLINK,
635b60c5115SThomas Graf 			       NETLINK_CB(skb).pid, nlh->nlmsg_seq, 0, 0);
636339bf98fSThomas Graf 	/* failure impilies BUG in if_nlmsg_size or wireless_rtnetlink_get */
637339bf98fSThomas Graf 	BUG_ON(err < 0);
638711e2c33SJean Tourrilhes 
639b974179aSPatrick McHardy 	err = rtnl_unicast(nskb, NETLINK_CB(skb).pid);
640b60c5115SThomas Graf errout:
641711e2c33SJean Tourrilhes 	kfree(iw_buf);
642711e2c33SJean Tourrilhes 	dev_put(dev);
643b60c5115SThomas Graf 
644711e2c33SJean Tourrilhes 	return err;
645711e2c33SJean Tourrilhes }
646711e2c33SJean Tourrilhes 
647b60c5115SThomas Graf static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
6481da177e4SLinus Torvalds {
6491da177e4SLinus Torvalds 	int idx;
6501da177e4SLinus Torvalds 	int s_idx = cb->family;
6511da177e4SLinus Torvalds 
6521da177e4SLinus Torvalds 	if (s_idx == 0)
6531da177e4SLinus Torvalds 		s_idx = 1;
6541da177e4SLinus Torvalds 	for (idx=1; idx<NPROTO; idx++) {
6551da177e4SLinus Torvalds 		int type = cb->nlh->nlmsg_type-RTM_BASE;
6561da177e4SLinus Torvalds 		if (idx < s_idx || idx == PF_PACKET)
6571da177e4SLinus Torvalds 			continue;
6581da177e4SLinus Torvalds 		if (rtnetlink_links[idx] == NULL ||
6591da177e4SLinus Torvalds 		    rtnetlink_links[idx][type].dumpit == NULL)
6601da177e4SLinus Torvalds 			continue;
6611da177e4SLinus Torvalds 		if (idx > s_idx)
6621da177e4SLinus Torvalds 			memset(&cb->args[0], 0, sizeof(cb->args));
6631da177e4SLinus Torvalds 		if (rtnetlink_links[idx][type].dumpit(skb, cb))
6641da177e4SLinus Torvalds 			break;
6651da177e4SLinus Torvalds 	}
6661da177e4SLinus Torvalds 	cb->family = idx;
6671da177e4SLinus Torvalds 
6681da177e4SLinus Torvalds 	return skb->len;
6691da177e4SLinus Torvalds }
6701da177e4SLinus Torvalds 
6711da177e4SLinus Torvalds void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
6721da177e4SLinus Torvalds {
6731da177e4SLinus Torvalds 	struct sk_buff *skb;
6740ec6d3f4SThomas Graf 	int err = -ENOBUFS;
6751da177e4SLinus Torvalds 
676339bf98fSThomas Graf 	skb = nlmsg_new(if_nlmsg_size(0), GFP_KERNEL);
6770ec6d3f4SThomas Graf 	if (skb == NULL)
6780ec6d3f4SThomas Graf 		goto errout;
6791da177e4SLinus Torvalds 
6800ec6d3f4SThomas Graf 	err = rtnl_fill_ifinfo(skb, dev, NULL, 0, type, 0, 0, change, 0);
681339bf98fSThomas Graf 	/* failure implies BUG in if_nlmsg_size() */
682339bf98fSThomas Graf 	BUG_ON(err < 0);
6830ec6d3f4SThomas Graf 
6840ec6d3f4SThomas Graf 	err = rtnl_notify(skb, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
6850ec6d3f4SThomas Graf errout:
6860ec6d3f4SThomas Graf 	if (err < 0)
6870ec6d3f4SThomas Graf 		rtnl_set_sk_err(RTNLGRP_LINK, err);
6881da177e4SLinus Torvalds }
6891da177e4SLinus Torvalds 
6901da177e4SLinus Torvalds /* Protected by RTNL sempahore.  */
6911da177e4SLinus Torvalds static struct rtattr **rta_buf;
6921da177e4SLinus Torvalds static int rtattr_max;
6931da177e4SLinus Torvalds 
6941da177e4SLinus Torvalds /* Process one rtnetlink message. */
6951da177e4SLinus Torvalds 
6961da177e4SLinus Torvalds static __inline__ int
6971da177e4SLinus Torvalds rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *errp)
6981da177e4SLinus Torvalds {
6991da177e4SLinus Torvalds 	struct rtnetlink_link *link;
7001da177e4SLinus Torvalds 	struct rtnetlink_link *link_tab;
7011da177e4SLinus Torvalds 	int sz_idx, kind;
7021da177e4SLinus Torvalds 	int min_len;
7031da177e4SLinus Torvalds 	int family;
7041da177e4SLinus Torvalds 	int type;
7051da177e4SLinus Torvalds 	int err;
7061da177e4SLinus Torvalds 
7071da177e4SLinus Torvalds 	/* Only requests are handled by kernel now */
7081da177e4SLinus Torvalds 	if (!(nlh->nlmsg_flags&NLM_F_REQUEST))
7091da177e4SLinus Torvalds 		return 0;
7101da177e4SLinus Torvalds 
7111da177e4SLinus Torvalds 	type = nlh->nlmsg_type;
7121da177e4SLinus Torvalds 
7131da177e4SLinus Torvalds 	/* A control message: ignore them */
7141da177e4SLinus Torvalds 	if (type < RTM_BASE)
7151da177e4SLinus Torvalds 		return 0;
7161da177e4SLinus Torvalds 
7171da177e4SLinus Torvalds 	/* Unknown message: reply with EINVAL */
7181da177e4SLinus Torvalds 	if (type > RTM_MAX)
7191da177e4SLinus Torvalds 		goto err_inval;
7201da177e4SLinus Torvalds 
7211da177e4SLinus Torvalds 	type -= RTM_BASE;
7221da177e4SLinus Torvalds 
7231da177e4SLinus Torvalds 	/* All the messages must have at least 1 byte length */
7241da177e4SLinus Torvalds 	if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
7251da177e4SLinus Torvalds 		return 0;
7261da177e4SLinus Torvalds 
7271da177e4SLinus Torvalds 	family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
7281da177e4SLinus Torvalds 	if (family >= NPROTO) {
7291da177e4SLinus Torvalds 		*errp = -EAFNOSUPPORT;
7301da177e4SLinus Torvalds 		return -1;
7311da177e4SLinus Torvalds 	}
7321da177e4SLinus Torvalds 
7331da177e4SLinus Torvalds 	link_tab = rtnetlink_links[family];
7341da177e4SLinus Torvalds 	if (link_tab == NULL)
7351da177e4SLinus Torvalds 		link_tab = rtnetlink_links[PF_UNSPEC];
7361da177e4SLinus Torvalds 	link = &link_tab[type];
7371da177e4SLinus Torvalds 
7381da177e4SLinus Torvalds 	sz_idx = type>>2;
7391da177e4SLinus Torvalds 	kind = type&3;
7401da177e4SLinus Torvalds 
741c7bdb545SDarrel Goeddel 	if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN)) {
7421da177e4SLinus Torvalds 		*errp = -EPERM;
7431da177e4SLinus Torvalds 		return -1;
7441da177e4SLinus Torvalds 	}
7451da177e4SLinus Torvalds 
7461da177e4SLinus Torvalds 	if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
7471da177e4SLinus Torvalds 		if (link->dumpit == NULL)
7481da177e4SLinus Torvalds 			link = &(rtnetlink_links[PF_UNSPEC][type]);
7491da177e4SLinus Torvalds 
7501da177e4SLinus Torvalds 		if (link->dumpit == NULL)
7511da177e4SLinus Torvalds 			goto err_inval;
7521da177e4SLinus Torvalds 
7531da177e4SLinus Torvalds 		if ((*errp = netlink_dump_start(rtnl, skb, nlh,
754a8f74b22SThomas Graf 						link->dumpit, NULL)) != 0) {
7551da177e4SLinus Torvalds 			return -1;
7561da177e4SLinus Torvalds 		}
7579ac4a169SThomas Graf 
7589ac4a169SThomas Graf 		netlink_queue_skip(nlh, skb);
7591da177e4SLinus Torvalds 		return -1;
7601da177e4SLinus Torvalds 	}
7611da177e4SLinus Torvalds 
7621da177e4SLinus Torvalds 	memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
7631da177e4SLinus Torvalds 
7641da177e4SLinus Torvalds 	min_len = rtm_min[sz_idx];
7651da177e4SLinus Torvalds 	if (nlh->nlmsg_len < min_len)
7661da177e4SLinus Torvalds 		goto err_inval;
7671da177e4SLinus Torvalds 
7681da177e4SLinus Torvalds 	if (nlh->nlmsg_len > min_len) {
7691da177e4SLinus Torvalds 		int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
7701da177e4SLinus Torvalds 		struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
7711da177e4SLinus Torvalds 
7721da177e4SLinus Torvalds 		while (RTA_OK(attr, attrlen)) {
7731da177e4SLinus Torvalds 			unsigned flavor = attr->rta_type;
7741da177e4SLinus Torvalds 			if (flavor) {
7751da177e4SLinus Torvalds 				if (flavor > rta_max[sz_idx])
7761da177e4SLinus Torvalds 					goto err_inval;
7771da177e4SLinus Torvalds 				rta_buf[flavor-1] = attr;
7781da177e4SLinus Torvalds 			}
7791da177e4SLinus Torvalds 			attr = RTA_NEXT(attr, attrlen);
7801da177e4SLinus Torvalds 		}
7811da177e4SLinus Torvalds 	}
7821da177e4SLinus Torvalds 
7831da177e4SLinus Torvalds 	if (link->doit == NULL)
7841da177e4SLinus Torvalds 		link = &(rtnetlink_links[PF_UNSPEC][type]);
7851da177e4SLinus Torvalds 	if (link->doit == NULL)
7861da177e4SLinus Torvalds 		goto err_inval;
7871da177e4SLinus Torvalds 	err = link->doit(skb, nlh, (void *)&rta_buf[0]);
7881da177e4SLinus Torvalds 
7891da177e4SLinus Torvalds 	*errp = err;
7901da177e4SLinus Torvalds 	return err;
7911da177e4SLinus Torvalds 
7921da177e4SLinus Torvalds err_inval:
7931da177e4SLinus Torvalds 	*errp = -EINVAL;
7941da177e4SLinus Torvalds 	return -1;
7951da177e4SLinus Torvalds }
7961da177e4SLinus Torvalds 
7971da177e4SLinus Torvalds static void rtnetlink_rcv(struct sock *sk, int len)
7981da177e4SLinus Torvalds {
7999ac4a169SThomas Graf 	unsigned int qlen = 0;
8002a0a6ebeSHerbert Xu 
8011da177e4SLinus Torvalds 	do {
8026756ae4bSStephen Hemminger 		mutex_lock(&rtnl_mutex);
8039ac4a169SThomas Graf 		netlink_run_queue(sk, &qlen, &rtnetlink_rcv_msg);
8046756ae4bSStephen Hemminger 		mutex_unlock(&rtnl_mutex);
8051da177e4SLinus Torvalds 
8061da177e4SLinus Torvalds 		netdev_run_todo();
8072a0a6ebeSHerbert Xu 	} while (qlen);
8081da177e4SLinus Torvalds }
8091da177e4SLinus Torvalds 
810db46edc6SThomas Graf static struct rtnetlink_link link_rtnetlink_table[RTM_NR_MSGTYPES] =
8111da177e4SLinus Torvalds {
812b60c5115SThomas Graf 	[RTM_GETLINK     - RTM_BASE] = { .doit   = rtnl_getlink,
813b60c5115SThomas Graf 					 .dumpit = rtnl_dump_ifinfo	 },
814da5e0494SThomas Graf 	[RTM_SETLINK     - RTM_BASE] = { .doit   = rtnl_setlink		 },
815b60c5115SThomas Graf 	[RTM_GETADDR     - RTM_BASE] = { .dumpit = rtnl_dump_all	 },
816b60c5115SThomas Graf 	[RTM_GETROUTE    - RTM_BASE] = { .dumpit = rtnl_dump_all	 },
8171da177e4SLinus Torvalds 	[RTM_NEWNEIGH    - RTM_BASE] = { .doit   = neigh_add		 },
8181da177e4SLinus Torvalds 	[RTM_DELNEIGH    - RTM_BASE] = { .doit   = neigh_delete		 },
819240eed95SThomas Graf 	[RTM_GETNEIGH    - RTM_BASE] = { .dumpit = neigh_dump_info	 },
82014c0b97dSThomas Graf #ifdef CONFIG_FIB_RULES
82114c0b97dSThomas Graf 	[RTM_NEWRULE     - RTM_BASE] = { .doit   = fib_nl_newrule	 },
82214c0b97dSThomas Graf 	[RTM_DELRULE     - RTM_BASE] = { .doit   = fib_nl_delrule	 },
82314c0b97dSThomas Graf #endif
824b60c5115SThomas Graf 	[RTM_GETRULE     - RTM_BASE] = { .dumpit = rtnl_dump_all	 },
825c7fb64dbSThomas Graf 	[RTM_GETNEIGHTBL - RTM_BASE] = { .dumpit = neightbl_dump_info	 },
826c7fb64dbSThomas Graf 	[RTM_SETNEIGHTBL - RTM_BASE] = { .doit   = neightbl_set		 },
8271da177e4SLinus Torvalds };
8281da177e4SLinus Torvalds 
8291da177e4SLinus Torvalds static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
8301da177e4SLinus Torvalds {
8311da177e4SLinus Torvalds 	struct net_device *dev = ptr;
8321da177e4SLinus Torvalds 	switch (event) {
8331da177e4SLinus Torvalds 	case NETDEV_UNREGISTER:
8341da177e4SLinus Torvalds 		rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
8351da177e4SLinus Torvalds 		break;
8361da177e4SLinus Torvalds 	case NETDEV_REGISTER:
8371da177e4SLinus Torvalds 		rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
8381da177e4SLinus Torvalds 		break;
8391da177e4SLinus Torvalds 	case NETDEV_UP:
8401da177e4SLinus Torvalds 	case NETDEV_DOWN:
8411da177e4SLinus Torvalds 		rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
8421da177e4SLinus Torvalds 		break;
8431da177e4SLinus Torvalds 	case NETDEV_CHANGE:
8441da177e4SLinus Torvalds 	case NETDEV_GOING_DOWN:
8451da177e4SLinus Torvalds 		break;
8461da177e4SLinus Torvalds 	default:
8471da177e4SLinus Torvalds 		rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
8481da177e4SLinus Torvalds 		break;
8491da177e4SLinus Torvalds 	}
8501da177e4SLinus Torvalds 	return NOTIFY_DONE;
8511da177e4SLinus Torvalds }
8521da177e4SLinus Torvalds 
8531da177e4SLinus Torvalds static struct notifier_block rtnetlink_dev_notifier = {
8541da177e4SLinus Torvalds 	.notifier_call	= rtnetlink_event,
8551da177e4SLinus Torvalds };
8561da177e4SLinus Torvalds 
8571da177e4SLinus Torvalds void __init rtnetlink_init(void)
8581da177e4SLinus Torvalds {
8591da177e4SLinus Torvalds 	int i;
8601da177e4SLinus Torvalds 
8611da177e4SLinus Torvalds 	rtattr_max = 0;
8621da177e4SLinus Torvalds 	for (i = 0; i < ARRAY_SIZE(rta_max); i++)
8631da177e4SLinus Torvalds 		if (rta_max[i] > rtattr_max)
8641da177e4SLinus Torvalds 			rtattr_max = rta_max[i];
8651da177e4SLinus Torvalds 	rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
8661da177e4SLinus Torvalds 	if (!rta_buf)
8671da177e4SLinus Torvalds 		panic("rtnetlink_init: cannot allocate rta_buf\n");
8681da177e4SLinus Torvalds 
86906628607SPatrick McHardy 	rtnl = netlink_kernel_create(NETLINK_ROUTE, RTNLGRP_MAX, rtnetlink_rcv,
87006628607SPatrick McHardy 	                             THIS_MODULE);
8711da177e4SLinus Torvalds 	if (rtnl == NULL)
8721da177e4SLinus Torvalds 		panic("rtnetlink_init: cannot initialize rtnetlink\n");
8731da177e4SLinus Torvalds 	netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
8741da177e4SLinus Torvalds 	register_netdevice_notifier(&rtnetlink_dev_notifier);
8751da177e4SLinus Torvalds 	rtnetlink_links[PF_UNSPEC] = link_rtnetlink_table;
8761da177e4SLinus Torvalds 	rtnetlink_links[PF_PACKET] = link_rtnetlink_table;
8771da177e4SLinus Torvalds }
8781da177e4SLinus Torvalds 
8791da177e4SLinus Torvalds EXPORT_SYMBOL(__rta_fill);
8801da177e4SLinus Torvalds EXPORT_SYMBOL(rtattr_strlcpy);
8811da177e4SLinus Torvalds EXPORT_SYMBOL(rtattr_parse);
8821da177e4SLinus Torvalds EXPORT_SYMBOL(rtnetlink_links);
8831da177e4SLinus Torvalds EXPORT_SYMBOL(rtnetlink_put_metrics);
8841da177e4SLinus Torvalds EXPORT_SYMBOL(rtnl_lock);
8856756ae4bSStephen Hemminger EXPORT_SYMBOL(rtnl_trylock);
8861da177e4SLinus Torvalds EXPORT_SYMBOL(rtnl_unlock);
8872942e900SThomas Graf EXPORT_SYMBOL(rtnl_unicast);
88897676b6bSThomas Graf EXPORT_SYMBOL(rtnl_notify);
88997676b6bSThomas Graf EXPORT_SYMBOL(rtnl_set_sk_err);
890