blob: 10469b0088b500fbe2012bc4bd43d249dad3b705 [file] [log] [blame]
Roland Dreierb2cbae22011-05-20 11:46:11 -07001/*
2 * Copyright (c) 2010 Voltaire Inc. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33#define pr_fmt(fmt) "%s:%s: " fmt, KBUILD_MODNAME, __func__
34
Paul Gortmakerb108d972011-05-27 15:29:33 -040035#include <linux/export.h>
Roland Dreierb2cbae22011-05-20 11:46:11 -070036#include <net/netlink.h>
37#include <net/net_namespace.h>
38#include <net/sock.h>
39#include <rdma/rdma_netlink.h>
40
41struct ibnl_client {
42 struct list_head list;
43 int index;
44 int nops;
45 const struct ibnl_client_cbs *cb_table;
46};
47
48static DEFINE_MUTEX(ibnl_mutex);
49static struct sock *nls;
50static LIST_HEAD(client_list);
51
Kaike Wanbc10ed72015-08-14 08:52:07 -040052int ibnl_chk_listeners(unsigned int group)
53{
54 if (netlink_has_listeners(nls, group) == 0)
55 return -1;
56 return 0;
57}
58EXPORT_SYMBOL(ibnl_chk_listeners);
59
Roland Dreierb2cbae22011-05-20 11:46:11 -070060int ibnl_add_client(int index, int nops,
61 const struct ibnl_client_cbs cb_table[])
62{
63 struct ibnl_client *cur;
64 struct ibnl_client *nl_client;
65
66 nl_client = kmalloc(sizeof *nl_client, GFP_KERNEL);
67 if (!nl_client)
68 return -ENOMEM;
69
70 nl_client->index = index;
71 nl_client->nops = nops;
72 nl_client->cb_table = cb_table;
73
74 mutex_lock(&ibnl_mutex);
75
76 list_for_each_entry(cur, &client_list, list) {
77 if (cur->index == index) {
78 pr_warn("Client for %d already exists\n", index);
79 mutex_unlock(&ibnl_mutex);
80 kfree(nl_client);
81 return -EINVAL;
82 }
83 }
84
85 list_add_tail(&nl_client->list, &client_list);
86
87 mutex_unlock(&ibnl_mutex);
88
89 return 0;
90}
91EXPORT_SYMBOL(ibnl_add_client);
92
93int ibnl_remove_client(int index)
94{
95 struct ibnl_client *cur, *next;
96
97 mutex_lock(&ibnl_mutex);
98 list_for_each_entry_safe(cur, next, &client_list, list) {
99 if (cur->index == index) {
100 list_del(&(cur->list));
101 mutex_unlock(&ibnl_mutex);
102 kfree(cur);
103 return 0;
104 }
105 }
106 pr_warn("Can't remove callback for client idx %d. Not found\n", index);
107 mutex_unlock(&ibnl_mutex);
108
109 return -EINVAL;
110}
111EXPORT_SYMBOL(ibnl_remove_client);
112
113void *ibnl_put_msg(struct sk_buff *skb, struct nlmsghdr **nlh, int seq,
Tatyana Nikolova30dc5e62014-03-26 17:07:35 -0500114 int len, int client, int op, int flags)
Roland Dreierb2cbae22011-05-20 11:46:11 -0700115{
116 unsigned char *prev_tail;
117
118 prev_tail = skb_tail_pointer(skb);
David S. Millere0527332012-06-26 21:43:19 -0700119 *nlh = nlmsg_put(skb, 0, seq, RDMA_NL_GET_TYPE(client, op),
Tatyana Nikolova30dc5e62014-03-26 17:07:35 -0500120 len, flags);
David S. Millere0527332012-06-26 21:43:19 -0700121 if (!*nlh)
122 goto out_nlmsg_trim;
Roland Dreierb2cbae22011-05-20 11:46:11 -0700123 (*nlh)->nlmsg_len = skb_tail_pointer(skb) - prev_tail;
David S. Millere0527332012-06-26 21:43:19 -0700124 return nlmsg_data(*nlh);
Roland Dreierb2cbae22011-05-20 11:46:11 -0700125
David S. Millere0527332012-06-26 21:43:19 -0700126out_nlmsg_trim:
Roland Dreierb2cbae22011-05-20 11:46:11 -0700127 nlmsg_trim(skb, prev_tail);
128 return NULL;
129}
130EXPORT_SYMBOL(ibnl_put_msg);
131
132int ibnl_put_attr(struct sk_buff *skb, struct nlmsghdr *nlh,
133 int len, void *data, int type)
134{
135 unsigned char *prev_tail;
136
137 prev_tail = skb_tail_pointer(skb);
David S. Miller4e24ffa2012-04-01 20:19:38 -0400138 if (nla_put(skb, type, len, data))
139 goto nla_put_failure;
Roland Dreierb2cbae22011-05-20 11:46:11 -0700140 nlh->nlmsg_len += skb_tail_pointer(skb) - prev_tail;
141 return 0;
142
143nla_put_failure:
144 nlmsg_trim(skb, prev_tail - nlh->nlmsg_len);
145 return -EMSGSIZE;
146}
147EXPORT_SYMBOL(ibnl_put_attr);
148
149static int ibnl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
150{
151 struct ibnl_client *client;
152 int type = nlh->nlmsg_type;
153 int index = RDMA_NL_GET_CLIENT(type);
Mark Bloch1ae5ccc2016-05-06 22:45:25 +0300154 unsigned int op = RDMA_NL_GET_OP(type);
Roland Dreierb2cbae22011-05-20 11:46:11 -0700155
156 list_for_each_entry(client, &client_list, list) {
157 if (client->index == index) {
Mark Bloch1ae5ccc2016-05-06 22:45:25 +0300158 if (op >= client->nops || !client->cb_table[op].dump)
Roland Dreierb2cbae22011-05-20 11:46:11 -0700159 return -EINVAL;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000160
Kaike Wanbc10ed72015-08-14 08:52:07 -0400161 /*
162 * For response or local service set_timeout request,
163 * there is no need to use netlink_dump_start.
164 */
165 if (!(nlh->nlmsg_flags & NLM_F_REQUEST) ||
166 (index == RDMA_NL_LS &&
167 op == RDMA_NL_LS_OP_SET_TIMEOUT)) {
168 struct netlink_callback cb = {
169 .skb = skb,
170 .nlh = nlh,
171 .dump = client->cb_table[op].dump,
172 .module = client->cb_table[op].module,
173 };
174
175 return cb.dump(skb, &cb);
176 }
177
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000178 {
179 struct netlink_dump_control c = {
180 .dump = client->cb_table[op].dump,
Gao feng809d5fc2012-10-04 20:15:49 +0000181 .module = client->cb_table[op].module,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000182 };
183 return netlink_dump_start(nls, skb, nlh, &c);
184 }
Roland Dreierb2cbae22011-05-20 11:46:11 -0700185 }
186 }
187
188 pr_info("Index %d wasn't found in client list\n", index);
189 return -EINVAL;
190}
191
Kaike Wanbc10ed72015-08-14 08:52:07 -0400192static void ibnl_rcv_reply_skb(struct sk_buff *skb)
193{
194 struct nlmsghdr *nlh;
195 int msglen;
196
197 /*
198 * Process responses until there is no more message or the first
199 * request. Generally speaking, it is not recommended to mix responses
200 * with requests.
201 */
202 while (skb->len >= nlmsg_total_size(0)) {
203 nlh = nlmsg_hdr(skb);
204
205 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
206 return;
207
208 /* Handle response only */
209 if (nlh->nlmsg_flags & NLM_F_REQUEST)
210 return;
211
212 ibnl_rcv_msg(skb, nlh);
213
214 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
215 if (msglen > skb->len)
216 msglen = skb->len;
217 skb_pull(skb, msglen);
218 }
219}
220
Roland Dreierb2cbae22011-05-20 11:46:11 -0700221static void ibnl_rcv(struct sk_buff *skb)
222{
223 mutex_lock(&ibnl_mutex);
Kaike Wanbc10ed72015-08-14 08:52:07 -0400224 ibnl_rcv_reply_skb(skb);
Roland Dreierb2cbae22011-05-20 11:46:11 -0700225 netlink_rcv_skb(skb, &ibnl_rcv_msg);
226 mutex_unlock(&ibnl_mutex);
227}
228
Tatyana Nikolova30dc5e62014-03-26 17:07:35 -0500229int ibnl_unicast(struct sk_buff *skb, struct nlmsghdr *nlh,
230 __u32 pid)
231{
Mustafa Ismailcea05ea2016-07-28 15:02:26 -0500232 int err;
233
234 err = netlink_unicast(nls, skb, pid, 0);
235 return (err < 0) ? err : 0;
Tatyana Nikolova30dc5e62014-03-26 17:07:35 -0500236}
237EXPORT_SYMBOL(ibnl_unicast);
238
239int ibnl_multicast(struct sk_buff *skb, struct nlmsghdr *nlh,
240 unsigned int group, gfp_t flags)
241{
242 return nlmsg_multicast(nls, skb, 0, group, flags);
243}
244EXPORT_SYMBOL(ibnl_multicast);
245
Roland Dreierb2cbae22011-05-20 11:46:11 -0700246int __init ibnl_init(void)
247{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000248 struct netlink_kernel_cfg cfg = {
249 .input = ibnl_rcv,
250 };
251
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000252 nls = netlink_kernel_create(&init_net, NETLINK_RDMA, &cfg);
Roland Dreierb2cbae22011-05-20 11:46:11 -0700253 if (!nls) {
254 pr_warn("Failed to create netlink socket\n");
255 return -ENOMEM;
256 }
257
Mustafa Ismailcea05ea2016-07-28 15:02:26 -0500258 nls->sk_sndtimeo = 10 * HZ;
Roland Dreierb2cbae22011-05-20 11:46:11 -0700259 return 0;
260}
261
262void ibnl_cleanup(void)
263{
264 struct ibnl_client *cur, *next;
265
266 mutex_lock(&ibnl_mutex);
267 list_for_each_entry_safe(cur, next, &client_list, list) {
268 list_del(&(cur->list));
269 kfree(cur);
270 }
271 mutex_unlock(&ibnl_mutex);
272
273 netlink_kernel_release(nls);
274}