[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1292540003-9465-2-git-send-email-fubar@us.ibm.com>
Date: Thu, 16 Dec 2010 14:53:22 -0800
From: Jay Vosburgh <fubar@...ibm.com>
To: netdev@...r.kernel.org
Cc: Andy Gospodarek <andy@...yhouse.net>
Subject: [PATCH v2 1/2] bonding: generic netlink infrastructure
Generic netlink infrastructure for bonding. Includes two
netlink operations: notification for slave link state change, and a
"get mode" netlink command.
---
drivers/net/bonding/Makefile | 2 +-
drivers/net/bonding/bond_main.c | 39 ++--
drivers/net/bonding/bond_netlink.c | 398 ++++++++++++++++++++++++++++++++++++
drivers/net/bonding/bond_netlink.h | 5 +
drivers/net/bonding/bonding.h | 1 +
include/linux/if_bonding.h | 23 ++
6 files changed, 445 insertions(+), 23 deletions(-)
create mode 100644 drivers/net/bonding/bond_netlink.c
create mode 100644 drivers/net/bonding/bond_netlink.h
diff --git a/drivers/net/bonding/Makefile b/drivers/net/bonding/Makefile
index 6f9c6fa..26848a2 100644
--- a/drivers/net/bonding/Makefile
+++ b/drivers/net/bonding/Makefile
@@ -4,7 +4,7 @@
obj-$(CONFIG_BONDING) += bonding.o
-bonding-objs := bond_main.o bond_3ad.o bond_alb.o bond_sysfs.o
+bonding-objs := bond_main.o bond_3ad.o bond_alb.o bond_sysfs.o bond_netlink.o
ipv6-$(subst m,y,$(CONFIG_IPV6)) += bond_ipv6.o
bonding-objs += $(ipv6-y)
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index bb33b3b..4d3a2c8 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -83,6 +83,7 @@
#include "bonding.h"
#include "bond_3ad.h"
#include "bond_alb.h"
+#include "bond_netlink.h"
/*---------------------------- Module parameters ----------------------------*/
@@ -2417,6 +2418,8 @@ static void bond_miimon_commit(struct bonding *bond)
bond_alb_handle_link_change(bond, slave,
BOND_LINK_UP);
+ bond_nl_link_change(bond, slave, BOND_LINK_UP);
+
if (!bond->curr_active_slave ||
(slave == bond->primary_slave))
goto do_failover;
@@ -2444,6 +2447,8 @@ static void bond_miimon_commit(struct bonding *bond)
bond_alb_handle_link_change(bond, slave,
BOND_LINK_DOWN);
+ bond_nl_link_change(bond, slave, BOND_LINK_DOWN);
+
if (slave == bond->curr_active_slave)
goto do_failover;
@@ -2865,6 +2870,7 @@ void bond_loadbalance_arp_mon(struct work_struct *work)
bond->dev->name,
slave->dev->name);
}
+ bond_nl_link_change(bond, slave, BOND_LINK_UP);
}
} else {
/* slave->link == BOND_LINK_UP */
@@ -2892,6 +2898,8 @@ void bond_loadbalance_arp_mon(struct work_struct *work)
if (slave == oldcurrent)
do_failover = 1;
+
+ bond_nl_link_change(bond, slave, BOND_LINK_DOWN);
}
}
@@ -3038,6 +3046,8 @@ static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
pr_info("%s: link status definitely up for interface %s.\n",
bond->dev->name, slave->dev->name);
+ bond_nl_link_change(bond, slave, BOND_LINK_UP);
+
if (!bond->curr_active_slave ||
(slave == bond->primary_slave))
goto do_failover;
@@ -3056,6 +3066,8 @@ static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
pr_info("%s: link status definitely down for interface %s, disabling it\n",
bond->dev->name, slave->dev->name);
+ bond_nl_link_change(bond, slave, BOND_LINK_DOWN);
+
if (slave == bond->curr_active_slave) {
bond->current_arp_slave = NULL;
goto do_failover;
@@ -4683,7 +4695,7 @@ static void bond_destructor(struct net_device *bond_dev)
free_netdev(bond_dev);
}
-static void bond_setup(struct net_device *bond_dev)
+void bond_setup(struct net_device *bond_dev)
{
struct bonding *bond = netdev_priv(bond_dev);
@@ -5191,24 +5203,6 @@ static int bond_init(struct net_device *bond_dev)
return 0;
}
-static int bond_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;
-}
-
-static struct rtnl_link_ops bond_link_ops __read_mostly = {
- .kind = "bond",
- .priv_size = sizeof(struct bonding),
- .setup = bond_setup,
- .validate = bond_validate,
-};
-
/* Create a new bond based on the specified name and bonding parameters.
* If name is NULL, obtain a suitable "bond%d" name for us.
* Caller must NOT hold rtnl_lock; we need to release it here before we
@@ -5216,6 +5210,7 @@ static struct rtnl_link_ops bond_link_ops __read_mostly = {
*/
int bond_create(struct net *net, const char *name)
{
+ extern struct rtnl_link_ops bond_link_ops;
struct net_device *bond_dev;
int res;
@@ -5304,7 +5299,7 @@ static int __init bonding_init(void)
if (res)
goto out;
- res = rtnl_link_register(&bond_link_ops);
+ res = bond_netlink_init();
if (res)
goto err_link;
@@ -5325,7 +5320,7 @@ static int __init bonding_init(void)
out:
return res;
err:
- rtnl_link_unregister(&bond_link_ops);
+ bond_netlink_fini();
err_link:
unregister_pernet_subsys(&bond_net_ops);
#ifdef CONFIG_NET_POLL_CONTROLLER
@@ -5343,7 +5338,7 @@ static void __exit bonding_exit(void)
bond_destroy_sysfs();
- rtnl_link_unregister(&bond_link_ops);
+ bond_netlink_fini();
unregister_pernet_subsys(&bond_net_ops);
#ifdef CONFIG_NET_POLL_CONTROLLER
diff --git a/drivers/net/bonding/bond_netlink.c b/drivers/net/bonding/bond_netlink.c
new file mode 100644
index 0000000..8f889e0
--- /dev/null
+++ b/drivers/net/bonding/bond_netlink.c
@@ -0,0 +1,398 @@
+/*
+ * Generic Netlink support for bonding
+ *
+ * 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.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * Copyright IBM Corporation, 2010
+ *
+ * Author: Jay Vosburgh <fubar@...ibm.com>
+ *
+ */
+
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/types.h>
+#include <net/ip.h>
+#include <linux/slab.h>
+#include <linux/string.h>
+#include <linux/errno.h>
+#include <linux/etherdevice.h>
+#include <linux/skbuff.h>
+#include <linux/if_bonding.h>
+#include <net/net_namespace.h>
+#include <net/netns/generic.h>
+#include <net/genetlink.h>
+
+#include "bonding.h"
+
+int bond_nl_seq = 0;
+
+struct genl_family bond_genl_family = {
+ .id = GENL_ID_GENERATE,
+ .name = "bond",
+ .version = BOND_GENL_VERSION,
+ .maxattr = BOND_GENL_ATTR_MAX,
+};
+
+struct genl_multicast_group bond_genl_mcgrp = {
+ .name = BOND_GENL_MC_GROUP,
+};
+
+static int bond_genl_validate(struct genl_info *info)
+{
+ int i;
+
+ printk("bond_genl_validate\n");
+
+ for (i = 0; i < __BOND_GENL_ATTR_MAX; i++)
+ printk("info->attrs[%d] %p\n", i, info->attrs[i]);
+
+ switch (info->genlhdr->cmd) {
+ case BOND_GENL_CMD_GET_MODE:
+ if (!info->attrs[BOND_GENL_ATTR_MASTER_INDEX])
+ return -EINVAL;
+ break;
+ case BOND_GENL_ML_CMD_RT_ADD:
+ case BOND_GENL_ML_CMD_RT_DEL:
+
+ printk("MLADDR %p\n", info->attrs[BOND_GENL_ATTR_ML_MLADDR]);
+ if (!info->attrs[BOND_GENL_ATTR_ML_MLADDR]) {
+ printk("g_v: no MLADDR\n");
+ return -EINVAL;
+ }
+ printk("LADDR %p\n", info->attrs[BOND_GENL_ATTR_ML_LADDR]);
+ if (!info->attrs[BOND_GENL_ATTR_ML_LADDR]) {
+ printk("g_v: no LADDR\n");
+ return -EINVAL;
+ }
+ if (!info->attrs[BOND_GENL_ATTR_ML_RADDR]) {
+ printk("g_v: no LADDR\n");
+ return -EINVAL;
+ }
+ if (!info->attrs[BOND_GENL_ATTR_ML_INDEX]) {
+ printk("g_v: no INDEX\n");
+ return -EINVAL;
+ }
+ break;
+ case BOND_GENL_ML_CMD_RT_FLUSH:
+ if (!info->attrs[BOND_GENL_ATTR_MASTER_INDEX]) {
+ printk("g_v: no MASTER_INDEX\n");
+ return -EINVAL;
+ }
+ break;
+ default:
+ return -EINVAL;
+ }
+
+ return 0;
+}
+
+/*
+ * Send netlink notification of slave link state change.
+ */
+int bond_nl_link_change(struct bonding *bond, struct slave *slave, int state)
+{
+ struct sk_buff *skb;
+ void *msg;
+ int rv;
+
+ skb = genlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
+ if (!skb) {
+ printk("no genlmsg_new\n");
+ return -ENOMEM;
+ }
+
+ msg = genlmsg_put(skb, 0, bond_nl_seq++, &bond_genl_family, 0,
+ BOND_GENL_SLAVE_LINK);
+ if (!msg)
+ goto nla_put_failure;
+
+ NLA_PUT_U32(skb, BOND_GENL_ATTR_SLAVE_INDEX, slave->dev->ifindex);
+ NLA_PUT_U32(skb, BOND_GENL_ATTR_MASTER_INDEX, bond->dev->ifindex);
+ NLA_PUT_U32(skb, BOND_GENL_ATTR_SLAVE_LINK, state);
+
+ rv = genlmsg_end(skb, msg);
+ if (rv < 0)
+ goto nla_put_failure;
+
+ return genlmsg_multicast(skb, 0, bond_genl_mcgrp.id, GFP_ATOMIC);
+
+nla_put_failure:
+ nlmsg_free(skb);
+ return -EMSGSIZE;
+}
+
+static int bond_genl_get_mode(struct sk_buff *skb, struct genl_info *info)
+{
+ struct bonding *bond;
+ struct net_device *bond_dev;
+ struct sk_buff *rep_skb;
+ void *reply;
+ u32 m_idx, mode;
+ int rv;
+
+ rv = bond_genl_validate(info);
+ if (rv)
+ return rv;
+
+ m_idx = nla_get_u32(info->attrs[BOND_GENL_ATTR_MASTER_INDEX]);
+ bond_dev = dev_get_by_index(&init_net, m_idx);
+ if (!bond_dev || !(bond_dev->flags & IFF_MASTER) ||
+ !(bond_dev->priv_flags & IFF_BONDING))
+ return -EINVAL;
+
+ bond = netdev_priv(bond_dev);
+ mode = bond->params.mode;
+
+ rep_skb = genlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
+ if (!rep_skb)
+ return -ENOMEM;
+
+ reply = genlmsg_put_reply(rep_skb, info, &bond_genl_family, 0,
+ info->genlhdr->cmd);
+ if (!reply)
+ goto nla_put_failure;
+
+ NLA_PUT_U32(rep_skb, BOND_GENL_ATTR_MODE, mode);
+
+ genlmsg_end(rep_skb, reply);
+
+ return genlmsg_reply(rep_skb, info);
+
+nla_put_failure:
+ nlmsg_free(rep_skb);
+ return -EMSGSIZE;
+}
+
+static int bond_genl_ml_flush_route(struct sk_buff *skb, struct genl_info *info)
+{
+ struct bonding *bond;
+ struct net_device *bond_dev;
+ struct sk_buff *rep_skb;
+ void *reply;
+ u32 m_idx;
+ int rv;
+
+ rv = bond_genl_validate(info);
+ if (rv)
+ return rv;
+
+ m_idx = nla_get_u32(info->attrs[BOND_GENL_ATTR_MASTER_INDEX]);
+ bond_dev = dev_get_by_index(&init_net, m_idx);
+ if (!bond_dev || !(bond_dev->flags & IFF_MASTER) ||
+ !(bond_dev->priv_flags & IFF_BONDING)) {
+ printk("genl_flush flags\n");
+ rv = -EINVAL;
+ goto out;
+ }
+
+ bond = netdev_priv(bond_dev);
+ bond_ml_rt_flush(bond);
+
+ /* XXX do before flush? */
+ rep_skb = genlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
+ if (!rep_skb) {
+ rv = -ENOMEM;
+ goto out;
+ }
+
+ reply = genlmsg_put_reply(rep_skb, info, &bond_genl_family, 0,
+ info->genlhdr->cmd);
+ if (!reply) {
+ nlmsg_free(rep_skb);
+ rv = -EINVAL;
+ goto out;
+ }
+
+ rv = genlmsg_end(rep_skb, reply);
+// printk("_end %d\n", rv);
+ rv = genlmsg_reply(rep_skb, info);
+// printk("_reply %d\n", rv);
+
+out:
+ if (bond_dev)
+ dev_put(bond_dev);
+
+ return rv;
+}
+
+static int bond_genl_ml_chg_route(struct sk_buff *skb, struct genl_info *info)
+{
+ struct in_addr laddr, raddr, mladdr;
+ u32 l_idx;
+ struct net_device *slave_dev, *bond_dev;
+ struct bonding *bond;
+ struct slave *slave;
+ int rv, cmd;
+
+ cmd = info->genlhdr->cmd;
+ printk("bgmc: cmd %d\n", info->genlhdr->cmd);
+
+ rv = bond_genl_validate(info);
+ if (rv)
+ return rv;
+
+ laddr.s_addr = nla_get_u32(info->attrs[BOND_GENL_ATTR_ML_LADDR]);
+ printk("bgmc: laddr %pI4\n", &laddr);
+ raddr.s_addr = nla_get_u32(info->attrs[BOND_GENL_ATTR_ML_RADDR]);
+ printk("bgmc: raddr %pI4\n", &raddr);
+ mladdr.s_addr = nla_get_u32(info->attrs[BOND_GENL_ATTR_ML_MLADDR]);
+ printk("bgmc: mladdr %pI4\n", &mladdr);
+ l_idx = nla_get_u32(info->attrs[BOND_GENL_ATTR_ML_INDEX]);
+
+ printk("ml_route: cmd %d l %pI4 r %pI4 m %pI4 i %u\n",
+ cmd, &laddr, &raddr, &mladdr, l_idx);
+
+ slave_dev = dev_get_by_index(&init_net, l_idx);
+ if (!slave_dev || !(slave_dev->priv_flags & IFF_BONDING)) {
+ printk("no slave_dev\n");
+ return -EINVAL;
+ }
+
+ bond_dev = slave_dev->master;
+ if (!bond_dev || !(bond_dev->priv_flags & IFF_BONDING)) {
+ printk("no bond for slave %s\n", slave_dev->name);
+ return -EINVAL;
+ }
+
+ bond = netdev_priv(bond_dev);
+
+ slave = bond_get_slave_by_dev(bond, slave_dev);
+ if (!slave) {
+ printk("no slave %s in bond %s\n", slave_dev->name,
+ bond_dev->name);
+ return -EINVAL;
+ }
+
+ switch (cmd) {
+ case BOND_GENL_ML_CMD_RT_ADD:
+ rv = bond_ml_addrt(bond, laddr, raddr, mladdr, slave);
+ break;
+ case BOND_GENL_ML_CMD_RT_DEL:
+ rv = bond_ml_delrt(bond, laddr, raddr, mladdr, slave);
+ break;
+ default:
+ printk("bond_genl_ml_route: impossible cmd %d\n", cmd);
+ return -EINVAL;
+ }
+
+ return rv;
+
+#if 0
+ rep_skb = genlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
+ if (!rep_skb)
+ return -ENOMEM;
+
+ reply = genlmsg_put_reply(rep_skb, info, &bond_genl_family, 0, cmd);
+ if (!reply) {
+ nlmsg_free(rep_skb);
+ return -EINVAL;
+ }
+ rv = nla_put_u32(rep_skb, BOND_GENL_ATTR_ML_INDEX, rv);
+// printk("put_u32 %d\n", rv);
+ rv = genlmsg_end(rep_skb, reply);
+// printk("_end %d\n", rv);
+ rv = genlmsg_reply(rep_skb, info);
+// printk("_reply %d\n", rv);
+
+ return 0;
+#endif
+}
+
+static struct nla_policy bond_genl_policy[BOND_GENL_ATTR_MAX + 1] = {
+ [BOND_GENL_ATTR_MASTER_INDEX] = { .type = NLA_U32 },
+ [BOND_GENL_ATTR_SLAVE_INDEX] = { .type = NLA_U32 },
+ [BOND_GENL_ATTR_MODE] = { .type = NLA_U32 },
+ [BOND_GENL_ATTR_SLAVE_LINK] = { .type = NLA_U32 },
+ [BOND_GENL_ATTR_ML_LADDR] = { .type = NLA_U32 },
+ [BOND_GENL_ATTR_ML_RADDR] = { .type = NLA_U32 },
+ [BOND_GENL_ATTR_ML_MLADDR] = { .type = NLA_U32 },
+ [BOND_GENL_ATTR_ML_INDEX] = { .type = NLA_U32 },
+};
+
+static struct genl_ops bond_genl_ops[] = {
+ {
+ .cmd = BOND_GENL_CMD_GET_MODE,
+ .doit = bond_genl_get_mode,
+ .policy = bond_genl_policy,
+ },
+ {
+ .cmd = BOND_GENL_ML_CMD_RT_ADD,
+ .doit = bond_genl_ml_chg_route,
+ .policy = bond_genl_policy,
+ },
+ {
+ .cmd = BOND_GENL_ML_CMD_RT_DEL,
+ .doit = bond_genl_ml_chg_route,
+ .policy = bond_genl_policy,
+ },
+ {
+ .cmd = BOND_GENL_ML_CMD_RT_FLUSH,
+ .doit = bond_genl_ml_flush_route,
+ .policy = bond_genl_policy,
+ },
+};
+
+static int bond_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;
+}
+
+struct rtnl_link_ops bond_link_ops __read_mostly = {
+ .kind = "bond",
+ .priv_size = sizeof(struct bonding),
+ .setup = bond_setup,
+ .validate = bond_validate,
+};
+
+int __init bond_netlink_init(void)
+{
+ int rv;
+
+ rv = rtnl_link_register(&bond_link_ops);
+ if (rv)
+ goto out1;
+
+ rv = genl_register_family_with_ops(&bond_genl_family,
+ bond_genl_ops,
+ ARRAY_SIZE(bond_genl_ops));
+ if (rv)
+ goto out2;
+
+ rv = genl_register_mc_group(&bond_genl_family, &bond_genl_mcgrp);
+ if (rv)
+ goto out3;
+
+ return 0;
+
+out3:
+ genl_unregister_family(&bond_genl_family);
+out2:
+ rtnl_link_unregister(&bond_link_ops);
+out1:
+ return rv;
+}
+
+void __exit bond_netlink_fini(void)
+{
+ rtnl_link_unregister(&bond_link_ops);
+ genl_unregister_family(&bond_genl_family);
+}
diff --git a/drivers/net/bonding/bond_netlink.h b/drivers/net/bonding/bond_netlink.h
new file mode 100644
index 0000000..cd87b05
--- /dev/null
+++ b/drivers/net/bonding/bond_netlink.h
@@ -0,0 +1,5 @@
+
+extern int bond_nl_link_change(struct bonding *bond, struct slave *slave, int state);
+
+extern int bond_netlink_init(void);
+extern void bond_netlink_fini(void);
diff --git a/drivers/net/bonding/bonding.h b/drivers/net/bonding/bonding.h
index ad3ae46..db7bb06 100644
--- a/drivers/net/bonding/bonding.h
+++ b/drivers/net/bonding/bonding.h
@@ -380,6 +380,7 @@ void bond_select_active_slave(struct bonding *bond);
void bond_change_active_slave(struct bonding *bond, struct slave *new_active);
void bond_register_arp(struct bonding *);
void bond_unregister_arp(struct bonding *);
+extern void bond_setup(struct net_device *bond_dev);
struct bond_net {
struct net * net; /* Associated network namespace */
diff --git a/include/linux/if_bonding.h b/include/linux/if_bonding.h
index a17edda..b03d832 100644
--- a/include/linux/if_bonding.h
+++ b/include/linux/if_bonding.h
@@ -114,6 +114,29 @@ struct ad_info {
__u8 partner_system[ETH_ALEN];
};
+enum {
+ BOND_GENL_ATTR_UNSPEC = 0,
+ BOND_GENL_ATTR_MASTER_INDEX,
+ BOND_GENL_ATTR_SLAVE_INDEX,
+ BOND_GENL_ATTR_MODE,
+ BOND_GENL_ATTR_SLAVE_LINK,
+ __BOND_GENL_ATTR_MAX,
+};
+
+#define BOND_GENL_ATTR_MAX (__BOND_GENL_ATTR_MAX - 1)
+
+enum {
+ BOND_GENL_CMD_UNSPEC = 0,
+ BOND_GENL_CMD_GET_MODE,
+ BOND_GENL_SLAVE_LINK,
+ __BOND_GENL_MAX,
+};
+
+#define BOND_GENL_MAX (__BOND_GENL_MAX - 1)
+
+#define BOND_GENL_VERSION 1
+#define BOND_GENL_MC_GROUP "bond_mc_group"
+
#endif /* _LINUX_IF_BONDING_H */
/*
--
1.6.0.2
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists