1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33#include <linux/netdevice.h>
34#include <linux/if_arp.h>
35#include <linux/module.h>
36#include <net/rtnetlink.h>
37#include "ipoib.h"
38
39static const struct nla_policy ipoib_policy[IFLA_IPOIB_MAX + 1] = {
40 [IFLA_IPOIB_PKEY] = { .type = NLA_U16 },
41 [IFLA_IPOIB_MODE] = { .type = NLA_U16 },
42 [IFLA_IPOIB_UMCAST] = { .type = NLA_U16 },
43};
44
45static int ipoib_fill_info(struct sk_buff *skb, const struct net_device *dev)
46{
47 struct ipoib_dev_priv *priv = ipoib_priv(dev);
48 u16 val;
49
50 if (nla_put_u16(skb, IFLA_IPOIB_PKEY, priv->pkey))
51 goto nla_put_failure;
52
53 val = test_bit(IPOIB_FLAG_ADMIN_CM, &priv->flags);
54 if (nla_put_u16(skb, IFLA_IPOIB_MODE, val))
55 goto nla_put_failure;
56
57 val = test_bit(IPOIB_FLAG_UMCAST, &priv->flags);
58 if (nla_put_u16(skb, IFLA_IPOIB_UMCAST, val))
59 goto nla_put_failure;
60
61 return 0;
62
63nla_put_failure:
64 return -EMSGSIZE;
65}
66
67static int ipoib_changelink(struct net_device *dev, struct nlattr *tb[],
68 struct nlattr *data[],
69 struct netlink_ext_ack *extack)
70{
71 u16 mode, umcast;
72 int ret = 0;
73
74 if (data[IFLA_IPOIB_MODE]) {
75 mode = nla_get_u16(data[IFLA_IPOIB_MODE]);
76 if (mode == IPOIB_MODE_DATAGRAM)
77 ret = ipoib_set_mode(dev, "datagram\n");
78 else if (mode == IPOIB_MODE_CONNECTED)
79 ret = ipoib_set_mode(dev, "connected\n");
80 else
81 ret = -EINVAL;
82
83 if (ret < 0)
84 goto out_err;
85 }
86
87 if (data[IFLA_IPOIB_UMCAST]) {
88 umcast = nla_get_u16(data[IFLA_IPOIB_UMCAST]);
89 ipoib_set_umcast(dev, umcast);
90 }
91
92out_err:
93 return ret;
94}
95
96static int ipoib_new_child_link(struct net *src_net, struct net_device *dev,
97 struct nlattr *tb[], struct nlattr *data[],
98 struct netlink_ext_ack *extack)
99{
100 struct net_device *pdev;
101 struct ipoib_dev_priv *ppriv;
102 u16 child_pkey;
103 int err;
104
105 if (!tb[IFLA_LINK])
106 return -EINVAL;
107
108 pdev = __dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK]));
109 if (!pdev || pdev->type != ARPHRD_INFINIBAND)
110 return -ENODEV;
111
112 ppriv = ipoib_priv(pdev);
113
114 if (test_bit(IPOIB_FLAG_SUBINTERFACE, &ppriv->flags)) {
115 ipoib_warn(ppriv, "child creation disallowed for child devices\n");
116 return -EINVAL;
117 }
118
119 if (!data || !data[IFLA_IPOIB_PKEY]) {
120 ipoib_dbg(ppriv, "no pkey specified, using parent pkey\n");
121 child_pkey = ppriv->pkey;
122 } else
123 child_pkey = nla_get_u16(data[IFLA_IPOIB_PKEY]);
124
125 err = ipoib_intf_init(ppriv->ca, ppriv->port, dev->name, dev);
126 if (err) {
127 ipoib_warn(ppriv, "failed to initialize pkey device\n");
128 return err;
129 }
130
131 err = __ipoib_vlan_add(ppriv, ipoib_priv(dev),
132 child_pkey, IPOIB_RTNL_CHILD);
133 if (err)
134 return err;
135
136 if (data) {
137 err = ipoib_changelink(dev, tb, data, extack);
138 if (err) {
139 unregister_netdevice(dev);
140 return err;
141 }
142 }
143
144 return 0;
145}
146
147static void ipoib_del_child_link(struct net_device *dev, struct list_head *head)
148{
149 struct ipoib_dev_priv *priv = ipoib_priv(dev);
150
151 if (!priv->parent)
152 return;
153
154 unregister_netdevice_queue(dev, head);
155}
156
157static size_t ipoib_get_size(const struct net_device *dev)
158{
159 return nla_total_size(2) +
160 nla_total_size(2) +
161 nla_total_size(2);
162}
163
164static struct rtnl_link_ops ipoib_link_ops __read_mostly = {
165 .kind = "ipoib",
166 .netns_refund = true,
167 .maxtype = IFLA_IPOIB_MAX,
168 .policy = ipoib_policy,
169 .priv_size = sizeof(struct ipoib_dev_priv),
170 .setup = ipoib_setup_common,
171 .newlink = ipoib_new_child_link,
172 .dellink = ipoib_del_child_link,
173 .changelink = ipoib_changelink,
174 .get_size = ipoib_get_size,
175 .fill_info = ipoib_fill_info,
176};
177
178struct rtnl_link_ops *ipoib_get_link_ops(void)
179{
180 return &ipoib_link_ops;
181}
182
183int __init ipoib_netlink_init(void)
184{
185 return rtnl_link_register(&ipoib_link_ops);
186}
187
188void __exit ipoib_netlink_fini(void)
189{
190 rtnl_link_unregister(&ipoib_link_ops);
191}
192
193MODULE_ALIAS_RTNL_LINK("ipoib");
194