1 /* Copyright 2011-2014 Autronica Fire and Security AS
3 * This program is free software; you can redistribute it and/or modify it
4 * under the terms of the GNU General Public License as published by the Free
5 * Software Foundation; either version 2 of the License, or (at your option)
9 * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
11 * Routines for handling Netlink messages for HSR.
14 #include "hsr_netlink.h"
15 #include <linux/kernel.h>
16 #include <net/rtnetlink.h>
17 #include <net/genetlink.h>
19 #include "hsr_device.h"
20 #include "hsr_framereg.h"
22 static const struct nla_policy hsr_policy[IFLA_HSR_MAX + 1] = {
23 [IFLA_HSR_SLAVE1] = { .type = NLA_U32 },
24 [IFLA_HSR_SLAVE2] = { .type = NLA_U32 },
25 [IFLA_HSR_MULTICAST_SPEC] = { .type = NLA_U8 },
26 [IFLA_HSR_VERSION] = { .type = NLA_U8 },
27 [IFLA_HSR_SUPERVISION_ADDR] = { .len = ETH_ALEN },
28 [IFLA_HSR_SEQ_NR] = { .type = NLA_U16 },
32 /* Here, it seems a netdevice has already been allocated for us, and the
33 * hsr_dev_setup routine has been executed. Nice!
35 static int hsr_newlink(struct net *src_net, struct net_device *dev,
36 struct nlattr *tb[], struct nlattr *data[])
38 struct net_device *link[2];
39 unsigned char multicast_spec, hsr_version;
42 netdev_info(dev, "HSR: No slave devices specified\n");
45 if (!data[IFLA_HSR_SLAVE1]) {
46 netdev_info(dev, "HSR: Slave1 device not specified\n");
49 link[0] = __dev_get_by_index(src_net, nla_get_u32(data[IFLA_HSR_SLAVE1]));
50 if (!data[IFLA_HSR_SLAVE2]) {
51 netdev_info(dev, "HSR: Slave2 device not specified\n");
54 link[1] = __dev_get_by_index(src_net, nla_get_u32(data[IFLA_HSR_SLAVE2]));
56 if (!link[0] || !link[1])
58 if (link[0] == link[1])
61 if (!data[IFLA_HSR_MULTICAST_SPEC])
64 multicast_spec = nla_get_u8(data[IFLA_HSR_MULTICAST_SPEC]);
66 if (!data[IFLA_HSR_VERSION])
69 hsr_version = nla_get_u8(data[IFLA_HSR_VERSION]);
71 return hsr_dev_finalize(dev, link, multicast_spec, hsr_version);
74 static int hsr_fill_info(struct sk_buff *skb, const struct net_device *dev)
77 struct hsr_port *port;
80 hsr = netdev_priv(dev);
85 port = hsr_port_get_hsr(hsr, HSR_PT_SLAVE_A);
87 res = nla_put_u32(skb, IFLA_HSR_SLAVE1, port->dev->ifindex);
93 port = hsr_port_get_hsr(hsr, HSR_PT_SLAVE_B);
95 res = nla_put_u32(skb, IFLA_HSR_SLAVE2, port->dev->ifindex);
100 if (nla_put(skb, IFLA_HSR_SUPERVISION_ADDR, ETH_ALEN,
101 hsr->sup_multicast_addr) ||
102 nla_put_u16(skb, IFLA_HSR_SEQ_NR, hsr->sequence_nr))
103 goto nla_put_failure;
111 static struct rtnl_link_ops hsr_link_ops __read_mostly = {
113 .maxtype = IFLA_HSR_MAX,
114 .policy = hsr_policy,
115 .priv_size = sizeof(struct hsr_priv),
116 .setup = hsr_dev_setup,
117 .newlink = hsr_newlink,
118 .fill_info = hsr_fill_info,
123 /* attribute policy */
124 static const struct nla_policy hsr_genl_policy[HSR_A_MAX + 1] = {
125 [HSR_A_NODE_ADDR] = { .len = ETH_ALEN },
126 [HSR_A_NODE_ADDR_B] = { .len = ETH_ALEN },
127 [HSR_A_IFINDEX] = { .type = NLA_U32 },
128 [HSR_A_IF1_AGE] = { .type = NLA_U32 },
129 [HSR_A_IF2_AGE] = { .type = NLA_U32 },
130 [HSR_A_IF1_SEQ] = { .type = NLA_U16 },
131 [HSR_A_IF2_SEQ] = { .type = NLA_U16 },
134 static struct genl_family hsr_genl_family = {
135 .id = GENL_ID_GENERATE,
139 .maxattr = HSR_A_MAX,
142 static const struct genl_multicast_group hsr_mcgrps[] = {
143 { .name = "hsr-network", },
148 /* This is called if for some node with MAC address addr, we only get frames
149 * over one of the slave interfaces. This would indicate an open network ring
150 * (i.e. a link has failed somewhere).
152 void hsr_nl_ringerror(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN],
153 struct hsr_port *port)
157 struct hsr_port *master;
160 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_ATOMIC);
164 msg_head = genlmsg_put(skb, 0, 0, &hsr_genl_family, 0, HSR_C_RING_ERROR);
166 goto nla_put_failure;
168 res = nla_put(skb, HSR_A_NODE_ADDR, ETH_ALEN, addr);
170 goto nla_put_failure;
172 res = nla_put_u32(skb, HSR_A_IFINDEX, port->dev->ifindex);
174 goto nla_put_failure;
176 genlmsg_end(skb, msg_head);
177 genlmsg_multicast(&hsr_genl_family, skb, 0, 0, GFP_ATOMIC);
186 master = hsr_port_get_hsr(hsr, HSR_PT_MASTER);
187 netdev_warn(master->dev, "Could not send HSR ring error message\n");
191 /* This is called when we haven't heard from the node with MAC address addr for
192 * some time (just before the node is removed from the node table/list).
194 void hsr_nl_nodedown(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN])
198 struct hsr_port *master;
201 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_ATOMIC);
205 msg_head = genlmsg_put(skb, 0, 0, &hsr_genl_family, 0, HSR_C_NODE_DOWN);
207 goto nla_put_failure;
210 res = nla_put(skb, HSR_A_NODE_ADDR, ETH_ALEN, addr);
212 goto nla_put_failure;
214 genlmsg_end(skb, msg_head);
215 genlmsg_multicast(&hsr_genl_family, skb, 0, 0, GFP_ATOMIC);
224 master = hsr_port_get_hsr(hsr, HSR_PT_MASTER);
225 netdev_warn(master->dev, "Could not send HSR node down\n");
230 /* HSR_C_GET_NODE_STATUS lets userspace query the internal HSR node table
231 * about the status of a specific node in the network, defined by its MAC
234 * Input: hsr ifindex, node mac address
235 * Output: hsr ifindex, node mac address (copied from request),
236 * age of latest frame from node over slave 1, slave 2 [ms]
238 static int hsr_get_node_status(struct sk_buff *skb_in, struct genl_info *info)
242 struct net_device *hsr_dev;
245 struct sk_buff *skb_out;
247 struct hsr_priv *hsr;
248 struct hsr_port *port;
249 unsigned char hsr_node_addr_b[ETH_ALEN];
250 int hsr_node_if1_age;
251 u16 hsr_node_if1_seq;
252 int hsr_node_if2_age;
253 u16 hsr_node_if2_seq;
260 na = info->attrs[HSR_A_IFINDEX];
263 na = info->attrs[HSR_A_NODE_ADDR];
267 hsr_dev = __dev_get_by_index(genl_info_net(info),
268 nla_get_u32(info->attrs[HSR_A_IFINDEX]));
271 if (!is_hsr_master(hsr_dev))
277 skb_out = genlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
283 msg_head = genlmsg_put(skb_out, NETLINK_CB(skb_in).portid,
284 info->snd_seq, &hsr_genl_family, 0,
285 HSR_C_SET_NODE_STATUS);
288 goto nla_put_failure;
291 res = nla_put_u32(skb_out, HSR_A_IFINDEX, hsr_dev->ifindex);
293 goto nla_put_failure;
295 hsr = netdev_priv(hsr_dev);
296 res = hsr_get_node_data(hsr,
297 (unsigned char *) nla_data(info->attrs[HSR_A_NODE_ADDR]),
305 goto nla_put_failure;
307 res = nla_put(skb_out, HSR_A_NODE_ADDR, ETH_ALEN,
308 nla_data(info->attrs[HSR_A_NODE_ADDR]));
310 goto nla_put_failure;
312 if (addr_b_ifindex > -1) {
313 res = nla_put(skb_out, HSR_A_NODE_ADDR_B, ETH_ALEN,
316 goto nla_put_failure;
318 res = nla_put_u32(skb_out, HSR_A_ADDR_B_IFINDEX, addr_b_ifindex);
320 goto nla_put_failure;
323 res = nla_put_u32(skb_out, HSR_A_IF1_AGE, hsr_node_if1_age);
325 goto nla_put_failure;
326 res = nla_put_u16(skb_out, HSR_A_IF1_SEQ, hsr_node_if1_seq);
328 goto nla_put_failure;
330 port = hsr_port_get_hsr(hsr, HSR_PT_SLAVE_A);
332 res = nla_put_u32(skb_out, HSR_A_IF1_IFINDEX,
336 goto nla_put_failure;
338 res = nla_put_u32(skb_out, HSR_A_IF2_AGE, hsr_node_if2_age);
340 goto nla_put_failure;
341 res = nla_put_u16(skb_out, HSR_A_IF2_SEQ, hsr_node_if2_seq);
343 goto nla_put_failure;
345 port = hsr_port_get_hsr(hsr, HSR_PT_SLAVE_B);
347 res = nla_put_u32(skb_out, HSR_A_IF2_IFINDEX,
351 goto nla_put_failure;
353 genlmsg_end(skb_out, msg_head);
354 genlmsg_unicast(genl_info_net(info), skb_out, info->snd_portid);
359 netlink_ack(skb_in, nlmsg_hdr(skb_in), -EINVAL);
370 /* Get a list of MacAddressA of all nodes known to this node (including self).
372 static int hsr_get_node_list(struct sk_buff *skb_in, struct genl_info *info)
376 struct net_device *hsr_dev;
379 struct sk_buff *skb_out;
381 struct hsr_priv *hsr;
383 unsigned char addr[ETH_ALEN];
389 na = info->attrs[HSR_A_IFINDEX];
393 hsr_dev = __dev_get_by_index(genl_info_net(info),
394 nla_get_u32(info->attrs[HSR_A_IFINDEX]));
397 if (!is_hsr_master(hsr_dev))
403 skb_out = genlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
409 msg_head = genlmsg_put(skb_out, NETLINK_CB(skb_in).portid,
410 info->snd_seq, &hsr_genl_family, 0,
411 HSR_C_SET_NODE_LIST);
414 goto nla_put_failure;
417 res = nla_put_u32(skb_out, HSR_A_IFINDEX, hsr_dev->ifindex);
419 goto nla_put_failure;
421 hsr = netdev_priv(hsr_dev);
424 pos = hsr_get_next_node(hsr, NULL, addr);
426 res = nla_put(skb_out, HSR_A_NODE_ADDR, ETH_ALEN, addr);
429 goto nla_put_failure;
431 pos = hsr_get_next_node(hsr, pos, addr);
435 genlmsg_end(skb_out, msg_head);
436 genlmsg_unicast(genl_info_net(info), skb_out, info->snd_portid);
441 netlink_ack(skb_in, nlmsg_hdr(skb_in), -EINVAL);
453 static const struct genl_ops hsr_ops[] = {
455 .cmd = HSR_C_GET_NODE_STATUS,
457 .policy = hsr_genl_policy,
458 .doit = hsr_get_node_status,
462 .cmd = HSR_C_GET_NODE_LIST,
464 .policy = hsr_genl_policy,
465 .doit = hsr_get_node_list,
470 int __init hsr_netlink_init(void)
474 rc = rtnl_link_register(&hsr_link_ops);
476 goto fail_rtnl_link_register;
478 rc = genl_register_family_with_ops_groups(&hsr_genl_family, hsr_ops,
481 goto fail_genl_register_family;
485 fail_genl_register_family:
486 rtnl_link_unregister(&hsr_link_ops);
487 fail_rtnl_link_register:
492 void __exit hsr_netlink_exit(void)
494 genl_unregister_family(&hsr_genl_family);
495 rtnl_link_unregister(&hsr_link_ops);
498 MODULE_ALIAS_RTNL_LINK("hsr");