hsr_netlink.c 11.5 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2
/* Copyright 2011-2014 Autronica Fire and Security AS
3 4
 *
 * Author(s):
5
 *	2011-2014 Arvid Brodin, arvid.brodin@alten.se
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * Routines for handling Netlink messages for HSR.
 */

#include "hsr_netlink.h"
#include <linux/kernel.h>
#include <net/rtnetlink.h>
#include <net/genetlink.h>
#include "hsr_main.h"
#include "hsr_device.h"
#include "hsr_framereg.h"

static const struct nla_policy hsr_policy[IFLA_HSR_MAX + 1] = {
	[IFLA_HSR_SLAVE1]		= { .type = NLA_U32 },
	[IFLA_HSR_SLAVE2]		= { .type = NLA_U32 },
	[IFLA_HSR_MULTICAST_SPEC]	= { .type = NLA_U8 },
P
Peter Heise 已提交
22
	[IFLA_HSR_VERSION]	= { .type = NLA_U8 },
P
Peter Heise 已提交
23
	[IFLA_HSR_SUPERVISION_ADDR]	= { .len = ETH_ALEN },
24
	[IFLA_HSR_SEQ_NR]		= { .type = NLA_U16 },
25 26 27 28 29 30
};

/* Here, it seems a netdevice has already been allocated for us, and the
 * hsr_dev_setup routine has been executed. Nice!
 */
static int hsr_newlink(struct net *src_net, struct net_device *dev,
31 32
		       struct nlattr *tb[], struct nlattr *data[],
		       struct netlink_ext_ack *extack)
33 34
{
	struct net_device *link[2];
P
Peter Heise 已提交
35
	unsigned char multicast_spec, hsr_version;
36

37
	if (!data) {
38
		NL_SET_ERR_MSG_MOD(extack, "No slave devices specified");
39 40
		return -EINVAL;
	}
41
	if (!data[IFLA_HSR_SLAVE1]) {
42
		NL_SET_ERR_MSG_MOD(extack, "Slave1 device not specified");
43 44
		return -EINVAL;
	}
45 46
	link[0] = __dev_get_by_index(src_net,
				     nla_get_u32(data[IFLA_HSR_SLAVE1]));
47 48 49 50
	if (!link[0]) {
		NL_SET_ERR_MSG_MOD(extack, "Slave1 does not exist");
		return -EINVAL;
	}
51
	if (!data[IFLA_HSR_SLAVE2]) {
52
		NL_SET_ERR_MSG_MOD(extack, "Slave2 device not specified");
53 54
		return -EINVAL;
	}
55 56
	link[1] = __dev_get_by_index(src_net,
				     nla_get_u32(data[IFLA_HSR_SLAVE2]));
57 58 59 60
	if (!link[1]) {
		NL_SET_ERR_MSG_MOD(extack, "Slave2 does not exist");
		return -EINVAL;
	}
61

62 63
	if (link[0] == link[1]) {
		NL_SET_ERR_MSG_MOD(extack, "Slave1 and Slave2 are same");
64
		return -EINVAL;
65
	}
66 67 68 69 70 71

	if (!data[IFLA_HSR_MULTICAST_SPEC])
		multicast_spec = 0;
	else
		multicast_spec = nla_get_u8(data[IFLA_HSR_MULTICAST_SPEC]);

P
Peter Heise 已提交
72 73 74 75 76
	if (!data[IFLA_HSR_VERSION])
		hsr_version = 0;
	else
		hsr_version = nla_get_u8(data[IFLA_HSR_VERSION]);

77
	return hsr_dev_finalize(dev, link, multicast_spec, hsr_version, extack);
78 79
}

80 81
static int hsr_fill_info(struct sk_buff *skb, const struct net_device *dev)
{
82
	struct hsr_priv *hsr = netdev_priv(dev);
83
	struct hsr_port *port;
84

85
	port = hsr_port_get_hsr(hsr, HSR_PT_SLAVE_A);
86 87 88 89
	if (port) {
		if (nla_put_u32(skb, IFLA_HSR_SLAVE1, port->dev->ifindex))
			goto nla_put_failure;
	}
90

91
	port = hsr_port_get_hsr(hsr, HSR_PT_SLAVE_B);
92 93 94 95
	if (port) {
		if (nla_put_u32(skb, IFLA_HSR_SLAVE2, port->dev->ifindex))
			goto nla_put_failure;
	}
96 97

	if (nla_put(skb, IFLA_HSR_SUPERVISION_ADDR, ETH_ALEN,
98 99
		    hsr->sup_multicast_addr) ||
	    nla_put_u16(skb, IFLA_HSR_SEQ_NR, hsr->sequence_nr))
100 101 102 103 104 105 106 107
		goto nla_put_failure;

	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

108 109 110 111 112 113 114
static struct rtnl_link_ops hsr_link_ops __read_mostly = {
	.kind		= "hsr",
	.maxtype	= IFLA_HSR_MAX,
	.policy		= hsr_policy,
	.priv_size	= sizeof(struct hsr_priv),
	.setup		= hsr_dev_setup,
	.newlink	= hsr_newlink,
115
	.fill_info	= hsr_fill_info,
116 117 118 119
};

/* attribute policy */
static const struct nla_policy hsr_genl_policy[HSR_A_MAX + 1] = {
P
Peter Heise 已提交
120 121
	[HSR_A_NODE_ADDR] = { .len = ETH_ALEN },
	[HSR_A_NODE_ADDR_B] = { .len = ETH_ALEN },
122 123 124 125 126 127 128
	[HSR_A_IFINDEX] = { .type = NLA_U32 },
	[HSR_A_IF1_AGE] = { .type = NLA_U32 },
	[HSR_A_IF2_AGE] = { .type = NLA_U32 },
	[HSR_A_IF1_SEQ] = { .type = NLA_U16 },
	[HSR_A_IF2_SEQ] = { .type = NLA_U16 },
};

129
static struct genl_family hsr_genl_family;
130

131 132
static const struct genl_multicast_group hsr_mcgrps[] = {
	{ .name = "hsr-network", },
133 134 135 136 137 138
};

/* This is called if for some node with MAC address addr, we only get frames
 * over one of the slave interfaces. This would indicate an open network ring
 * (i.e. a link has failed somewhere).
 */
139
void hsr_nl_ringerror(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN],
140
		      struct hsr_port *port)
141 142 143
{
	struct sk_buff *skb;
	void *msg_head;
144
	struct hsr_port *master;
145 146 147 148 149 150
	int res;

	skb = genlmsg_new(NLMSG_GOODSIZE, GFP_ATOMIC);
	if (!skb)
		goto fail;

151 152
	msg_head = genlmsg_put(skb, 0, 0, &hsr_genl_family, 0,
			       HSR_C_RING_ERROR);
153 154 155 156 157 158 159
	if (!msg_head)
		goto nla_put_failure;

	res = nla_put(skb, HSR_A_NODE_ADDR, ETH_ALEN, addr);
	if (res < 0)
		goto nla_put_failure;

160
	res = nla_put_u32(skb, HSR_A_IFINDEX, port->dev->ifindex);
161 162 163 164
	if (res < 0)
		goto nla_put_failure;

	genlmsg_end(skb, msg_head);
165
	genlmsg_multicast(&hsr_genl_family, skb, 0, 0, GFP_ATOMIC);
166 167 168 169 170 171 172

	return;

nla_put_failure:
	kfree_skb(skb);

fail:
173 174 175 176
	rcu_read_lock();
	master = hsr_port_get_hsr(hsr, HSR_PT_MASTER);
	netdev_warn(master->dev, "Could not send HSR ring error message\n");
	rcu_read_unlock();
177 178 179 180 181
}

/* This is called when we haven't heard from the node with MAC address addr for
 * some time (just before the node is removed from the node table/list).
 */
182
void hsr_nl_nodedown(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN])
183 184 185
{
	struct sk_buff *skb;
	void *msg_head;
186
	struct hsr_port *master;
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
	int res;

	skb = genlmsg_new(NLMSG_GOODSIZE, GFP_ATOMIC);
	if (!skb)
		goto fail;

	msg_head = genlmsg_put(skb, 0, 0, &hsr_genl_family, 0, HSR_C_NODE_DOWN);
	if (!msg_head)
		goto nla_put_failure;

	res = nla_put(skb, HSR_A_NODE_ADDR, ETH_ALEN, addr);
	if (res < 0)
		goto nla_put_failure;

	genlmsg_end(skb, msg_head);
202
	genlmsg_multicast(&hsr_genl_family, skb, 0, 0, GFP_ATOMIC);
203 204 205 206 207 208 209

	return;

nla_put_failure:
	kfree_skb(skb);

fail:
210 211 212 213
	rcu_read_lock();
	master = hsr_port_get_hsr(hsr, HSR_PT_MASTER);
	netdev_warn(master->dev, "Could not send HSR node down\n");
	rcu_read_unlock();
214 215 216 217 218 219 220 221 222 223 224 225 226 227
}

/* HSR_C_GET_NODE_STATUS lets userspace query the internal HSR node table
 * about the status of a specific node in the network, defined by its MAC
 * address.
 *
 * Input: hsr ifindex, node mac address
 * Output: hsr ifindex, node mac address (copied from request),
 *	   age of latest frame from node over slave 1, slave 2 [ms]
 */
static int hsr_get_node_status(struct sk_buff *skb_in, struct genl_info *info)
{
	/* For receiving */
	struct nlattr *na;
228
	struct net_device *hsr_dev;
229 230 231 232

	/* For sending */
	struct sk_buff *skb_out;
	void *msg_head;
233
	struct hsr_priv *hsr;
234
	struct hsr_port *port;
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
	unsigned char hsr_node_addr_b[ETH_ALEN];
	int hsr_node_if1_age;
	u16 hsr_node_if1_seq;
	int hsr_node_if2_age;
	u16 hsr_node_if2_seq;
	int addr_b_ifindex;
	int res;

	if (!info)
		goto invalid;

	na = info->attrs[HSR_A_IFINDEX];
	if (!na)
		goto invalid;
	na = info->attrs[HSR_A_NODE_ADDR];
	if (!na)
		goto invalid;

	hsr_dev = __dev_get_by_index(genl_info_net(info),
254
				     nla_get_u32(info->attrs[HSR_A_IFINDEX]));
255 256 257 258 259 260 261 262 263 264 265 266 267
	if (!hsr_dev)
		goto invalid;
	if (!is_hsr_master(hsr_dev))
		goto invalid;

	/* Send reply */
	skb_out = genlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb_out) {
		res = -ENOMEM;
		goto fail;
	}

	msg_head = genlmsg_put(skb_out, NETLINK_CB(skb_in).portid,
268 269
			       info->snd_seq, &hsr_genl_family, 0,
			       HSR_C_SET_NODE_STATUS);
270 271 272 273 274 275 276 277 278
	if (!msg_head) {
		res = -ENOMEM;
		goto nla_put_failure;
	}

	res = nla_put_u32(skb_out, HSR_A_IFINDEX, hsr_dev->ifindex);
	if (res < 0)
		goto nla_put_failure;

279 280
	hsr = netdev_priv(hsr_dev);
	res = hsr_get_node_data(hsr,
281 282 283 284 285 286 287 288
				(unsigned char *)
				nla_data(info->attrs[HSR_A_NODE_ADDR]),
					 hsr_node_addr_b,
					 &addr_b_ifindex,
					 &hsr_node_if1_age,
					 &hsr_node_if1_seq,
					 &hsr_node_if2_age,
					 &hsr_node_if2_seq);
289
	if (res < 0)
290
		goto nla_put_failure;
291 292

	res = nla_put(skb_out, HSR_A_NODE_ADDR, ETH_ALEN,
293
		      nla_data(info->attrs[HSR_A_NODE_ADDR]));
294 295 296 297 298
	if (res < 0)
		goto nla_put_failure;

	if (addr_b_ifindex > -1) {
		res = nla_put(skb_out, HSR_A_NODE_ADDR_B, ETH_ALEN,
299
			      hsr_node_addr_b);
300 301 302
		if (res < 0)
			goto nla_put_failure;

303 304
		res = nla_put_u32(skb_out, HSR_A_ADDR_B_IFINDEX,
				  addr_b_ifindex);
305 306 307 308 309 310 311 312 313 314
		if (res < 0)
			goto nla_put_failure;
	}

	res = nla_put_u32(skb_out, HSR_A_IF1_AGE, hsr_node_if1_age);
	if (res < 0)
		goto nla_put_failure;
	res = nla_put_u16(skb_out, HSR_A_IF1_SEQ, hsr_node_if1_seq);
	if (res < 0)
		goto nla_put_failure;
315
	rcu_read_lock();
316 317 318 319
	port = hsr_port_get_hsr(hsr, HSR_PT_SLAVE_A);
	if (port)
		res = nla_put_u32(skb_out, HSR_A_IF1_IFINDEX,
				  port->dev->ifindex);
320
	rcu_read_unlock();
321 322 323 324 325 326 327 328 329
	if (res < 0)
		goto nla_put_failure;

	res = nla_put_u32(skb_out, HSR_A_IF2_AGE, hsr_node_if2_age);
	if (res < 0)
		goto nla_put_failure;
	res = nla_put_u16(skb_out, HSR_A_IF2_SEQ, hsr_node_if2_seq);
	if (res < 0)
		goto nla_put_failure;
330
	rcu_read_lock();
331 332 333 334
	port = hsr_port_get_hsr(hsr, HSR_PT_SLAVE_B);
	if (port)
		res = nla_put_u32(skb_out, HSR_A_IF2_IFINDEX,
				  port->dev->ifindex);
335 336 337
	rcu_read_unlock();
	if (res < 0)
		goto nla_put_failure;
338 339 340 341 342 343 344

	genlmsg_end(skb_out, msg_head);
	genlmsg_unicast(genl_info_net(info), skb_out, info->snd_portid);

	return 0;

invalid:
J
Johannes Berg 已提交
345
	netlink_ack(skb_in, nlmsg_hdr(skb_in), -EINVAL, NULL);
346 347 348 349 350 351 352 353 354 355
	return 0;

nla_put_failure:
	kfree_skb(skb_out);
	/* Fall through */

fail:
	return res;
}

A
Arvid Brodin 已提交
356
/* Get a list of MacAddressA of all nodes known to this node (including self).
357 358 359 360 361 362 363 364 365 366
 */
static int hsr_get_node_list(struct sk_buff *skb_in, struct genl_info *info)
{
	/* For receiving */
	struct nlattr *na;
	struct net_device *hsr_dev;

	/* For sending */
	struct sk_buff *skb_out;
	void *msg_head;
367
	struct hsr_priv *hsr;
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
	void *pos;
	unsigned char addr[ETH_ALEN];
	int res;

	if (!info)
		goto invalid;

	na = info->attrs[HSR_A_IFINDEX];
	if (!na)
		goto invalid;

	hsr_dev = __dev_get_by_index(genl_info_net(info),
				     nla_get_u32(info->attrs[HSR_A_IFINDEX]));
	if (!hsr_dev)
		goto invalid;
	if (!is_hsr_master(hsr_dev))
		goto invalid;

	/* Send reply */
	skb_out = genlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb_out) {
		res = -ENOMEM;
		goto fail;
	}

	msg_head = genlmsg_put(skb_out, NETLINK_CB(skb_in).portid,
394 395
			       info->snd_seq, &hsr_genl_family, 0,
			       HSR_C_SET_NODE_LIST);
396 397 398 399 400 401 402 403 404
	if (!msg_head) {
		res = -ENOMEM;
		goto nla_put_failure;
	}

	res = nla_put_u32(skb_out, HSR_A_IFINDEX, hsr_dev->ifindex);
	if (res < 0)
		goto nla_put_failure;

405
	hsr = netdev_priv(hsr_dev);
406 407

	rcu_read_lock();
408
	pos = hsr_get_next_node(hsr, NULL, addr);
409 410 411 412 413 414
	while (pos) {
		res = nla_put(skb_out, HSR_A_NODE_ADDR, ETH_ALEN, addr);
		if (res < 0) {
			rcu_read_unlock();
			goto nla_put_failure;
		}
415
		pos = hsr_get_next_node(hsr, pos, addr);
416 417 418 419 420 421 422 423 424
	}
	rcu_read_unlock();

	genlmsg_end(skb_out, msg_head);
	genlmsg_unicast(genl_info_net(info), skb_out, info->snd_portid);

	return 0;

invalid:
J
Johannes Berg 已提交
425
	netlink_ack(skb_in, nlmsg_hdr(skb_in), -EINVAL, NULL);
426 427 428 429 430 431 432 433 434 435
	return 0;

nla_put_failure:
	kfree_skb(skb_out);
	/* Fall through */

fail:
	return res;
}

436
static const struct genl_ops hsr_ops[] = {
437 438
	{
		.cmd = HSR_C_GET_NODE_STATUS,
439
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
440 441 442 443 444 445
		.flags = 0,
		.doit = hsr_get_node_status,
		.dumpit = NULL,
	},
	{
		.cmd = HSR_C_GET_NODE_LIST,
446
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
447 448 449 450
		.flags = 0,
		.doit = hsr_get_node_list,
		.dumpit = NULL,
	},
451 452
};

453
static struct genl_family hsr_genl_family __ro_after_init = {
454 455 456 457
	.hdrsize = 0,
	.name = "HSR",
	.version = 1,
	.maxattr = HSR_A_MAX,
458
	.policy = hsr_genl_policy,
459 460 461 462 463 464 465
	.module = THIS_MODULE,
	.ops = hsr_ops,
	.n_ops = ARRAY_SIZE(hsr_ops),
	.mcgrps = hsr_mcgrps,
	.n_mcgrps = ARRAY_SIZE(hsr_mcgrps),
};

466 467 468 469 470 471 472 473
int __init hsr_netlink_init(void)
{
	int rc;

	rc = rtnl_link_register(&hsr_link_ops);
	if (rc)
		goto fail_rtnl_link_register;

474
	rc = genl_register_family(&hsr_genl_family);
475 476 477
	if (rc)
		goto fail_genl_register_family;

T
Taehee Yoo 已提交
478
	hsr_debugfs_create_root();
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
	return 0;

fail_genl_register_family:
	rtnl_link_unregister(&hsr_link_ops);
fail_rtnl_link_register:

	return rc;
}

void __exit hsr_netlink_exit(void)
{
	genl_unregister_family(&hsr_genl_family);
	rtnl_link_unregister(&hsr_link_ops);
}

MODULE_ALIAS_RTNL_LINK("hsr");