br_netlink.c 5.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 *	Bridge netlink control interface
 *
 *	Authors:
 *	Stephen Hemminger		<shemminger@osdl.org>
 *
 *	This program is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU General Public License
 *	as published by the Free Software Foundation; either version
 *	2 of the License, or (at your option) any later version.
 */

#include <linux/kernel.h>
14
#include <linux/slab.h>
15
#include <linux/etherdevice.h>
16
#include <net/rtnetlink.h>
17
#include <net/net_namespace.h>
18
#include <net/sock.h>
19

20
#include "br_private.h"
21
#include "br_private_stp.h"
22

23 24 25 26 27 28 29 30 31 32 33 34
static inline size_t br_nlmsg_size(void)
{
	return NLMSG_ALIGN(sizeof(struct ifinfomsg))
	       + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
	       + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
	       + nla_total_size(4) /* IFLA_MASTER */
	       + nla_total_size(4) /* IFLA_MTU */
	       + nla_total_size(4) /* IFLA_LINK */
	       + nla_total_size(1) /* IFLA_OPERSTATE */
	       + nla_total_size(1); /* IFLA_PROTINFO */
}

35 36 37 38 39 40 41 42 43
/*
 * Create one netlink message for one interface
 * Contains port and master info as well as carrier and bridge state.
 */
static int br_fill_ifinfo(struct sk_buff *skb, const struct net_bridge_port *port,
			  u32 pid, u32 seq, int event, unsigned int flags)
{
	const struct net_bridge *br = port->br;
	const struct net_device *dev = port->dev;
44
	struct ifinfomsg *hdr;
45 46 47
	struct nlmsghdr *nlh;
	u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;

48 49
	br_debug(br, "br_fill_info event %d port %s master %s\n",
		     event, dev->name, br->dev->name);
50

51 52
	nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
	if (nlh == NULL)
53
		return -EMSGSIZE;
54

55 56 57 58 59 60 61
	hdr = nlmsg_data(nlh);
	hdr->ifi_family = AF_BRIDGE;
	hdr->__ifi_pad = 0;
	hdr->ifi_type = dev->type;
	hdr->ifi_index = dev->ifindex;
	hdr->ifi_flags = dev_get_flags(dev);
	hdr->ifi_change = 0;
62

D
David S. Miller 已提交
63 64 65 66 67 68 69 70 71 72 73
	if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
	    nla_put_u32(skb, IFLA_MASTER, br->dev->ifindex) ||
	    nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
	    nla_put_u8(skb, IFLA_OPERSTATE, operstate) ||
	    (dev->addr_len &&
	     nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
	    (dev->ifindex != dev->iflink &&
	     nla_put_u32(skb, IFLA_LINK, dev->iflink)) ||
	    (event == RTM_NEWLINK &&
	     nla_put_u8(skb, IFLA_PROTINFO, port->state)))
		goto nla_put_failure;
74
	return nlmsg_end(skb, nlh);
75

76
nla_put_failure:
77 78
	nlmsg_cancel(skb, nlh);
	return -EMSGSIZE;
79 80 81 82 83 84 85
}

/*
 * Notify listeners of a change in port information
 */
void br_ifinfo_notify(int event, struct net_bridge_port *port)
{
86
	struct net *net = dev_net(port->dev);
87
	struct sk_buff *skb;
88
	int err = -ENOBUFS;
89

90
	br_debug(port->br, "port %u(%s) event %d\n",
91
		 (unsigned int)port->port_no, port->dev->name, event);
92

93
	skb = nlmsg_new(br_nlmsg_size(), GFP_ATOMIC);
94 95 96 97
	if (skb == NULL)
		goto errout;

	err = br_fill_ifinfo(skb, port, 0, 0, event, 0);
98 99 100 101 102 103
	if (err < 0) {
		/* -EMSGSIZE implies BUG in br_nlmsg_size() */
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(skb);
		goto errout;
	}
104 105
	rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
	return;
106
errout:
S
Stephen Hemminger 已提交
107
	if (err < 0)
108
		rtnl_set_sk_err(net, RTNLGRP_LINK, err);
109 110 111 112 113
}

/*
 * Dump information about all ports, in response to GETLINK
 */
J
John Fastabend 已提交
114 115
int br_getlink(struct sk_buff *skb, u32 pid, u32 seq,
	       struct net_device *dev)
116
{
J
John Fastabend 已提交
117 118 119 120 121 122
	int err = 0;
	struct net_bridge_port *port = br_port_get_rcu(dev);

	/* not a bridge port */
	if (!port)
		goto out;
123

J
John Fastabend 已提交
124 125 126
	err = br_fill_ifinfo(skb, port, pid, seq, RTM_NEWLINK, NLM_F_MULTI);
out:
	return err;
127 128 129 130 131 132
}

/*
 * Change state of port (ie from forwarding to blocking etc)
 * Used by spanning tree in user space.
 */
J
John Fastabend 已提交
133
int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
134
{
135 136
	struct ifinfomsg *ifm;
	struct nlattr *protinfo;
137 138 139
	struct net_bridge_port *p;
	u8 new_state;

140
	ifm = nlmsg_data(nlh);
141

142 143
	protinfo = nlmsg_find_attr(nlh, sizeof(*ifm), IFLA_PROTINFO);
	if (!protinfo || nla_len(protinfo) < sizeof(u8))
144 145
		return -EINVAL;

146
	new_state = nla_get_u8(protinfo);
147 148 149
	if (new_state > BR_STATE_BLOCKING)
		return -EINVAL;

150
	p = br_port_get_rtnl(dev);
151 152
	if (!p)
		return -EINVAL;
153 154

	/* if kernel STP is running, don't allow changes */
155
	if (p->br->stp_enabled == BR_KERNEL_STP)
156 157
		return -EBUSY;

158 159
	if (!netif_running(dev) ||
	    (!netif_carrier_ok(dev) && new_state != BR_STATE_DISABLED))
160 161 162 163
		return -ENETDOWN;

	p->state = new_state;
	br_log_state(p);
164 165 166 167 168

	spin_lock_bh(&p->br->lock);
	br_port_state_selection(p->br);
	spin_unlock_bh(&p->br->lock);

169 170 171
	return 0;
}

172 173 174 175 176 177 178 179 180 181 182 183
static int br_validate(struct nlattr *tb[], struct nlattr *data[])
{
	if (tb[IFLA_ADDRESS]) {
		if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
			return -EINVAL;
		if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
			return -EADDRNOTAVAIL;
	}

	return 0;
}

184
struct rtnl_link_ops br_link_ops __read_mostly = {
185 186 187 188
	.kind		= "bridge",
	.priv_size	= sizeof(struct net_bridge),
	.setup		= br_dev_setup,
	.validate	= br_validate,
189
	.dellink	= br_dev_delete,
190
};
191

192
int __init br_netlink_init(void)
193
{
J
John Fastabend 已提交
194
	return rtnl_link_register(&br_link_ops);
195 196 197 198
}

void __exit br_netlink_fini(void)
{
199
	rtnl_link_unregister(&br_link_ops);
200
	rtnl_unregister_all(PF_BRIDGE);
201
}