blob: f932c2c3fad0ba74844c556448b8aad12b9506d4 [file] [log] [blame]
Leon Romanovsky6c80b412017-06-20 09:14:15 +03001/*
2 * Copyright (c) 2017 Mellanox Technologies. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * 3. Neither the names of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * Alternatively, this software may be distributed under the terms of the
17 * GNU General Public License ("GPL") version 2 as published by the Free
18 * Software Foundation.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 */
32
Leon Romanovskyb4c598a2017-06-20 09:59:14 +030033#include <net/netlink.h>
Leon Romanovsky6c80b412017-06-20 09:14:15 +030034#include <rdma/rdma_netlink.h>
35
36#include "core_priv.h"
37
Leon Romanovskyb4c598a2017-06-20 09:59:14 +030038static const struct nla_policy nldev_policy[RDMA_NLDEV_ATTR_MAX] = {
39 [RDMA_NLDEV_ATTR_DEV_INDEX] = { .type = NLA_U32 },
40 [RDMA_NLDEV_ATTR_DEV_NAME] = { .type = NLA_NUL_STRING,
41 .len = IB_DEVICE_NAME_MAX - 1},
42 [RDMA_NLDEV_ATTR_PORT_INDEX] = { .type = NLA_U32 },
Leon Romanovsky8621a7e2017-06-27 16:58:59 +030043 [RDMA_NLDEV_ATTR_FW_VERSION] = { .type = NLA_NUL_STRING,
44 .len = IB_FW_VERSION_NAME_MAX - 1},
Leon Romanovsky1aaff892017-06-28 14:01:37 +030045 [RDMA_NLDEV_ATTR_NODE_GUID] = { .type = NLA_U64 },
46 [RDMA_NLDEV_ATTR_SYS_IMAGE_GUID] = { .type = NLA_U64 },
Leon Romanovskyb4c598a2017-06-20 09:59:14 +030047};
48
49static int fill_dev_info(struct sk_buff *msg, struct ib_device *device)
50{
Leon Romanovsky8621a7e2017-06-27 16:58:59 +030051 char fw[IB_FW_VERSION_NAME_MAX];
52
Leon Romanovskyb4c598a2017-06-20 09:59:14 +030053 if (nla_put_u32(msg, RDMA_NLDEV_ATTR_DEV_INDEX, device->index))
54 return -EMSGSIZE;
55 if (nla_put_string(msg, RDMA_NLDEV_ATTR_DEV_NAME, device->name))
56 return -EMSGSIZE;
57 if (nla_put_u32(msg, RDMA_NLDEV_ATTR_PORT_INDEX, rdma_end_port(device)))
58 return -EMSGSIZE;
Leon Romanovskyac505252017-06-20 14:47:08 +030059
60 BUILD_BUG_ON(sizeof(device->attrs.device_cap_flags) != sizeof(u64));
61 if (nla_put_u64_64bit(msg, RDMA_NLDEV_ATTR_CAP_FLAGS,
62 device->attrs.device_cap_flags, 0))
63 return -EMSGSIZE;
64
Leon Romanovsky8621a7e2017-06-27 16:58:59 +030065 ib_get_device_fw_str(device, fw);
66 /* Device without FW has strlen(fw) */
67 if (strlen(fw) && nla_put_string(msg, RDMA_NLDEV_ATTR_FW_VERSION, fw))
68 return -EMSGSIZE;
69
Leon Romanovsky1aaff892017-06-28 14:01:37 +030070 if (nla_put_u64_64bit(msg, RDMA_NLDEV_ATTR_NODE_GUID,
71 be64_to_cpu(device->node_guid), 0))
72 return -EMSGSIZE;
73 if (nla_put_u64_64bit(msg, RDMA_NLDEV_ATTR_SYS_IMAGE_GUID,
74 be64_to_cpu(device->attrs.sys_image_guid), 0))
75 return -EMSGSIZE;
Leon Romanovskyb4c598a2017-06-20 09:59:14 +030076 return 0;
77}
78
Leon Romanovsky7d02f602017-06-20 11:30:33 +030079static int fill_port_info(struct sk_buff *msg,
80 struct ib_device *device, u32 port)
81{
Leon Romanovskyac505252017-06-20 14:47:08 +030082 struct ib_port_attr attr;
83 int ret;
84
Leon Romanovsky7d02f602017-06-20 11:30:33 +030085 if (nla_put_u32(msg, RDMA_NLDEV_ATTR_DEV_INDEX, device->index))
86 return -EMSGSIZE;
87 if (nla_put_string(msg, RDMA_NLDEV_ATTR_DEV_NAME, device->name))
88 return -EMSGSIZE;
89 if (nla_put_u32(msg, RDMA_NLDEV_ATTR_PORT_INDEX, port))
90 return -EMSGSIZE;
Leon Romanovskyac505252017-06-20 14:47:08 +030091
92 ret = ib_query_port(device, port, &attr);
93 if (ret)
94 return ret;
95
96 BUILD_BUG_ON(sizeof(attr.port_cap_flags) > sizeof(u64));
97 if (nla_put_u64_64bit(msg, RDMA_NLDEV_ATTR_CAP_FLAGS,
98 (u64)attr.port_cap_flags, 0))
99 return -EMSGSIZE;
100
Leon Romanovsky7d02f602017-06-20 11:30:33 +0300101 return 0;
102}
103
Leon Romanovskye5c94692017-06-15 20:33:08 +0300104static int nldev_get_doit(struct sk_buff *skb, struct nlmsghdr *nlh,
105 struct netlink_ext_ack *extack)
106{
107 struct nlattr *tb[RDMA_NLDEV_ATTR_MAX];
108 struct ib_device *device;
109 struct sk_buff *msg;
110 u32 index;
111 int err;
112
113 err = nlmsg_parse(nlh, 0, tb, RDMA_NLDEV_ATTR_MAX - 1,
114 nldev_policy, extack);
115 if (err || !tb[RDMA_NLDEV_ATTR_DEV_INDEX])
116 return -EINVAL;
117
118 index = nla_get_u32(tb[RDMA_NLDEV_ATTR_DEV_INDEX]);
119
120 device = __ib_device_get_by_index(index);
121 if (!device)
122 return -EINVAL;
123
124 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
125 if (!msg)
126 return -ENOMEM;
127
128 nlh = nlmsg_put(msg, NETLINK_CB(skb).portid, nlh->nlmsg_seq,
129 RDMA_NL_GET_TYPE(RDMA_NL_NLDEV, RDMA_NLDEV_CMD_GET),
130 0, 0);
131
132 err = fill_dev_info(msg, device);
133 if (err) {
134 nlmsg_free(msg);
135 return err;
136 }
137
138 nlmsg_end(msg, nlh);
139
140 return rdma_nl_unicast(msg, NETLINK_CB(skb).portid);
141}
142
Leon Romanovskyb4c598a2017-06-20 09:59:14 +0300143static int _nldev_get_dumpit(struct ib_device *device,
144 struct sk_buff *skb,
145 struct netlink_callback *cb,
146 unsigned int idx)
147{
148 int start = cb->args[0];
149 struct nlmsghdr *nlh;
150
151 if (idx < start)
152 return 0;
153
154 nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
155 RDMA_NL_GET_TYPE(RDMA_NL_NLDEV, RDMA_NLDEV_CMD_GET),
156 0, NLM_F_MULTI);
157
158 if (fill_dev_info(skb, device)) {
159 nlmsg_cancel(skb, nlh);
160 goto out;
161 }
162
163 nlmsg_end(skb, nlh);
164
165 idx++;
166
167out: cb->args[0] = idx;
168 return skb->len;
169}
170
171static int nldev_get_dumpit(struct sk_buff *skb, struct netlink_callback *cb)
172{
173 /*
174 * There is no need to take lock, because
175 * we are relying on ib_core's lists_rwsem
176 */
177 return ib_enum_all_devs(_nldev_get_dumpit, skb, cb);
178}
179
Leon Romanovskyc3f66f72017-06-22 16:10:38 +0300180static int nldev_port_get_doit(struct sk_buff *skb, struct nlmsghdr *nlh,
181 struct netlink_ext_ack *extack)
182{
183 struct nlattr *tb[RDMA_NLDEV_ATTR_MAX];
184 struct ib_device *device;
185 struct sk_buff *msg;
186 u32 index;
187 u32 port;
188 int err;
189
190 err = nlmsg_parse(nlh, 0, tb, RDMA_NLDEV_ATTR_MAX - 1,
191 nldev_policy, extack);
192 if (err || !tb[RDMA_NLDEV_ATTR_PORT_INDEX])
193 return -EINVAL;
194
195 index = nla_get_u32(tb[RDMA_NLDEV_ATTR_DEV_INDEX]);
196 device = __ib_device_get_by_index(index);
197 if (!device)
198 return -EINVAL;
199
200 port = nla_get_u32(tb[RDMA_NLDEV_ATTR_PORT_INDEX]);
201 if (!rdma_is_port_valid(device, port))
202 return -EINVAL;
203
204 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
205 if (!msg)
206 return -ENOMEM;
207
208 nlh = nlmsg_put(msg, NETLINK_CB(skb).portid, nlh->nlmsg_seq,
209 RDMA_NL_GET_TYPE(RDMA_NL_NLDEV, RDMA_NLDEV_CMD_GET),
210 0, 0);
211
212 err = fill_port_info(msg, device, port);
213 if (err) {
214 nlmsg_free(msg);
215 return err;
216 }
217
218 nlmsg_end(msg, nlh);
219
220 return rdma_nl_unicast(msg, NETLINK_CB(skb).portid);
221}
222
Leon Romanovsky7d02f602017-06-20 11:30:33 +0300223static int nldev_port_get_dumpit(struct sk_buff *skb,
224 struct netlink_callback *cb)
225{
226 struct nlattr *tb[RDMA_NLDEV_ATTR_MAX];
227 struct ib_device *device;
228 int start = cb->args[0];
229 struct nlmsghdr *nlh;
230 u32 idx = 0;
231 u32 ifindex;
232 int err;
233 u32 p;
234
235 err = nlmsg_parse(cb->nlh, 0, tb, RDMA_NLDEV_ATTR_MAX - 1,
236 nldev_policy, NULL);
237 if (err || !tb[RDMA_NLDEV_ATTR_DEV_INDEX])
238 return -EINVAL;
239
240 ifindex = nla_get_u32(tb[RDMA_NLDEV_ATTR_DEV_INDEX]);
241 device = __ib_device_get_by_index(ifindex);
242 if (!device)
243 return -EINVAL;
244
245 for (p = rdma_start_port(device); p <= rdma_end_port(device); ++p) {
246 /*
247 * The dumpit function returns all information from specific
248 * index. This specific index is taken from the netlink
249 * messages request sent by user and it is available
250 * in cb->args[0].
251 *
252 * Usually, the user doesn't fill this field and it causes
253 * to return everything.
254 *
255 */
256 if (idx < start) {
257 idx++;
258 continue;
259 }
260
261 nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid,
262 cb->nlh->nlmsg_seq,
263 RDMA_NL_GET_TYPE(RDMA_NL_NLDEV,
264 RDMA_NLDEV_CMD_PORT_GET),
265 0, NLM_F_MULTI);
266
267 if (fill_port_info(skb, device, p)) {
268 nlmsg_cancel(skb, nlh);
269 goto out;
270 }
271 idx++;
272 nlmsg_end(skb, nlh);
273 }
274
275out: cb->args[0] = idx;
276 return skb->len;
277}
278
Leon Romanovskyb4c598a2017-06-20 09:59:14 +0300279static const struct rdma_nl_cbs nldev_cb_table[] = {
280 [RDMA_NLDEV_CMD_GET] = {
Leon Romanovskye5c94692017-06-15 20:33:08 +0300281 .doit = nldev_get_doit,
Leon Romanovskyb4c598a2017-06-20 09:59:14 +0300282 .dump = nldev_get_dumpit,
283 },
Leon Romanovsky7d02f602017-06-20 11:30:33 +0300284 [RDMA_NLDEV_CMD_PORT_GET] = {
Leon Romanovskyc3f66f72017-06-22 16:10:38 +0300285 .doit = nldev_port_get_doit,
Leon Romanovsky7d02f602017-06-20 11:30:33 +0300286 .dump = nldev_port_get_dumpit,
287 },
Leon Romanovskyb4c598a2017-06-20 09:59:14 +0300288};
289
Leon Romanovsky6c80b412017-06-20 09:14:15 +0300290void __init nldev_init(void)
291{
Leon Romanovskyb4c598a2017-06-20 09:59:14 +0300292 rdma_nl_register(RDMA_NL_NLDEV, nldev_cb_table);
Leon Romanovsky6c80b412017-06-20 09:14:15 +0300293}
294
295void __exit nldev_exit(void)
296{
297 rdma_nl_unregister(RDMA_NL_NLDEV);
298}