blob: fb6e10fdb2174320c96608aea63d3c484d3625a0 [file] [log] [blame]
Thomas Graf482a8522005-11-10 02:25:56 +01001/*
2 * NETLINK Generic Netlink Family
3 *
4 * Authors: Jamal Hadi Salim
5 * Thomas Graf <tgraf@suug.ch>
Johannes Berg2dbba6f2007-07-18 15:47:52 -07006 * Johannes Berg <johannes@sipsolutions.net>
Thomas Graf482a8522005-11-10 02:25:56 +01007 */
8
Thomas Graf482a8522005-11-10 02:25:56 +01009#include <linux/module.h>
10#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Thomas Graf482a8522005-11-10 02:25:56 +010012#include <linux/errno.h>
13#include <linux/types.h>
14#include <linux/socket.h>
15#include <linux/string.h>
16#include <linux/skbuff.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080017#include <linux/mutex.h>
Johannes Berg2dbba6f2007-07-18 15:47:52 -070018#include <linux/bitmap.h>
Pravin B Shelardef31172013-04-23 07:48:30 +000019#include <linux/rwsem.h>
Johannes Berg2ae0f172016-10-24 14:40:04 +020020#include <linux/idr.h>
Thomas Graf482a8522005-11-10 02:25:56 +010021#include <net/sock.h>
22#include <net/genetlink.h>
23
Ingo Molnar14cc3e22006-03-26 01:37:14 -080024static DEFINE_MUTEX(genl_mutex); /* serialization of message processing */
Pravin B Shelardef31172013-04-23 07:48:30 +000025static DECLARE_RWSEM(cb_lock);
Thomas Graf482a8522005-11-10 02:25:56 +010026
Johannes Bergee1c24422015-01-16 11:37:14 +010027atomic_t genl_sk_destructing_cnt = ATOMIC_INIT(0);
28DECLARE_WAIT_QUEUE_HEAD(genl_sk_destructing_waitq);
29
James Chapmanf408e0c2010-04-02 06:19:05 +000030void genl_lock(void)
Thomas Graf482a8522005-11-10 02:25:56 +010031{
Ingo Molnar14cc3e22006-03-26 01:37:14 -080032 mutex_lock(&genl_mutex);
Thomas Graf482a8522005-11-10 02:25:56 +010033}
James Chapmanf408e0c2010-04-02 06:19:05 +000034EXPORT_SYMBOL(genl_lock);
Thomas Graf482a8522005-11-10 02:25:56 +010035
James Chapmanf408e0c2010-04-02 06:19:05 +000036void genl_unlock(void)
Thomas Graf482a8522005-11-10 02:25:56 +010037{
Ingo Molnar14cc3e22006-03-26 01:37:14 -080038 mutex_unlock(&genl_mutex);
Thomas Graf482a8522005-11-10 02:25:56 +010039}
James Chapmanf408e0c2010-04-02 06:19:05 +000040EXPORT_SYMBOL(genl_unlock);
Thomas Graf482a8522005-11-10 02:25:56 +010041
WANG Cong320f5ea2012-07-24 13:44:01 +080042#ifdef CONFIG_LOCKDEP
Yaowei Bai61d03532015-10-08 21:28:54 +080043bool lockdep_genl_is_held(void)
Pravin B Shelar86b13092011-11-10 19:14:51 -080044{
45 return lockdep_is_held(&genl_mutex);
46}
47EXPORT_SYMBOL(lockdep_genl_is_held);
48#endif
49
Pravin B Shelardef31172013-04-23 07:48:30 +000050static void genl_lock_all(void)
51{
52 down_write(&cb_lock);
53 genl_lock();
54}
55
56static void genl_unlock_all(void)
57{
58 genl_unlock();
59 up_write(&cb_lock);
60}
61
Johannes Berg2ae0f172016-10-24 14:40:04 +020062static DEFINE_IDR(genl_fam_idr);
Thomas Graf482a8522005-11-10 02:25:56 +010063
Johannes Berg2dbba6f2007-07-18 15:47:52 -070064/*
65 * Bitmap of multicast groups that are currently in use.
66 *
67 * To avoid an allocation at boot of just one unsigned long,
68 * declare it global instead.
69 * Bit 0 is marked as already used since group 0 is invalid.
Johannes Berge5dcecb2013-11-19 15:19:32 +010070 * Bit 1 is marked as already used since the drop-monitor code
71 * abuses the API and thinks it can statically use group 1.
72 * That group will typically conflict with other groups that
73 * any proper users use.
Johannes Berg2a94fe42013-11-19 15:19:39 +010074 * Bit 16 is marked as used since it's used for generic netlink
75 * and the code no longer marks pre-reserved IDs as used.
Johannes Berg2ecf7532013-11-19 15:19:33 +010076 * Bit 17 is marked as already used since the VFS quota code
77 * also abused this API and relied on family == group ID, we
78 * cater to that by giving it a static family and group ID.
Johannes Berg5e53e682013-11-24 21:09:26 +010079 * Bit 18 is marked as already used since the PMCRAID driver
80 * did the same thing as the VFS quota code (maybe copied?)
Johannes Berg2dbba6f2007-07-18 15:47:52 -070081 */
Johannes Berg2a94fe42013-11-19 15:19:39 +010082static unsigned long mc_group_start = 0x3 | BIT(GENL_ID_CTRL) |
Johannes Berg5e53e682013-11-24 21:09:26 +010083 BIT(GENL_ID_VFS_DQUOT) |
84 BIT(GENL_ID_PMCRAID);
Johannes Berg2dbba6f2007-07-18 15:47:52 -070085static unsigned long *mc_groups = &mc_group_start;
86static unsigned long mc_groups_longs = 1;
Thomas Graf482a8522005-11-10 02:25:56 +010087
Johannes Berg2ae0f172016-10-24 14:40:04 +020088static int genl_ctrl_event(int event, const struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +010089 const struct genl_multicast_group *grp,
90 int grp_id);
Thomas Graf482a8522005-11-10 02:25:56 +010091
Johannes Berg2ae0f172016-10-24 14:40:04 +020092static const struct genl_family *genl_family_find_byid(unsigned int id)
Thomas Graf482a8522005-11-10 02:25:56 +010093{
Johannes Berg2ae0f172016-10-24 14:40:04 +020094 return idr_find(&genl_fam_idr, id);
Thomas Graf482a8522005-11-10 02:25:56 +010095}
96
Johannes Berg2ae0f172016-10-24 14:40:04 +020097static const struct genl_family *genl_family_find_byname(char *name)
Thomas Graf482a8522005-11-10 02:25:56 +010098{
Johannes Berg2ae0f172016-10-24 14:40:04 +020099 const struct genl_family *family;
100 unsigned int id;
Thomas Graf482a8522005-11-10 02:25:56 +0100101
Johannes Berg2ae0f172016-10-24 14:40:04 +0200102 idr_for_each_entry(&genl_fam_idr, family, id)
103 if (strcmp(family->name, name) == 0)
104 return family;
Thomas Graf482a8522005-11-10 02:25:56 +0100105
106 return NULL;
107}
108
Johannes Berg2ae0f172016-10-24 14:40:04 +0200109static const struct genl_ops *genl_get_cmd(u8 cmd,
110 const struct genl_family *family)
Thomas Graf482a8522005-11-10 02:25:56 +0100111{
Johannes Bergd91824c2013-11-14 17:14:44 +0100112 int i;
Thomas Graf482a8522005-11-10 02:25:56 +0100113
Johannes Bergd91824c2013-11-14 17:14:44 +0100114 for (i = 0; i < family->n_ops; i++)
115 if (family->ops[i].cmd == cmd)
116 return &family->ops[i];
Thomas Graf482a8522005-11-10 02:25:56 +0100117
118 return NULL;
119}
120
Johannes Berg2a94fe42013-11-19 15:19:39 +0100121static int genl_allocate_reserve_groups(int n_groups, int *first_id)
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700122{
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700123 unsigned long *new_groups;
Johannes Berg2a94fe42013-11-19 15:19:39 +0100124 int start = 0;
125 int i;
126 int id;
127 bool fits;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700128
Johannes Berg2a94fe42013-11-19 15:19:39 +0100129 do {
130 if (start == 0)
131 id = find_first_zero_bit(mc_groups,
132 mc_groups_longs *
133 BITS_PER_LONG);
134 else
135 id = find_next_zero_bit(mc_groups,
136 mc_groups_longs * BITS_PER_LONG,
137 start);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700138
Johannes Berg2a94fe42013-11-19 15:19:39 +0100139 fits = true;
140 for (i = id;
141 i < min_t(int, id + n_groups,
142 mc_groups_longs * BITS_PER_LONG);
143 i++) {
144 if (test_bit(i, mc_groups)) {
145 start = i;
146 fits = false;
147 break;
148 }
149 }
150
David S. Millerb8e429a2016-01-13 10:28:06 -0500151 if (id + n_groups > mc_groups_longs * BITS_PER_LONG) {
Johannes Berg2a94fe42013-11-19 15:19:39 +0100152 unsigned long new_longs = mc_groups_longs +
153 BITS_TO_LONGS(n_groups);
154 size_t nlen = new_longs * sizeof(unsigned long);
155
156 if (mc_groups == &mc_group_start) {
157 new_groups = kzalloc(nlen, GFP_KERNEL);
158 if (!new_groups)
159 return -ENOMEM;
160 mc_groups = new_groups;
161 *mc_groups = mc_group_start;
162 } else {
163 new_groups = krealloc(mc_groups, nlen,
164 GFP_KERNEL);
165 if (!new_groups)
166 return -ENOMEM;
167 mc_groups = new_groups;
168 for (i = 0; i < BITS_TO_LONGS(n_groups); i++)
169 mc_groups[mc_groups_longs + i] = 0;
170 }
171 mc_groups_longs = new_longs;
172 }
173 } while (!fits);
174
175 for (i = id; i < id + n_groups; i++)
176 set_bit(i, mc_groups);
177 *first_id = id;
178 return 0;
179}
180
181static struct genl_family genl_ctrl;
182
183static int genl_validate_assign_mc_groups(struct genl_family *family)
184{
185 int first_id;
186 int n_groups = family->n_mcgrps;
Geert Uytterhoeven0f0e2152013-11-23 13:01:50 +0100187 int err = 0, i;
Johannes Berg2a94fe42013-11-19 15:19:39 +0100188 bool groups_allocated = false;
189
190 if (!n_groups)
191 return 0;
192
193 for (i = 0; i < n_groups; i++) {
194 const struct genl_multicast_group *grp = &family->mcgrps[i];
195
196 if (WARN_ON(grp->name[0] == '\0'))
197 return -EINVAL;
198 if (WARN_ON(memchr(grp->name, '\0', GENL_NAMSIZ) == NULL))
199 return -EINVAL;
200 }
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700201
Johannes Berge5dcecb2013-11-19 15:19:32 +0100202 /* special-case our own group and hacks */
Johannes Berg2a94fe42013-11-19 15:19:39 +0100203 if (family == &genl_ctrl) {
204 first_id = GENL_ID_CTRL;
205 BUG_ON(n_groups != 1);
206 } else if (strcmp(family->name, "NET_DM") == 0) {
207 first_id = 1;
208 BUG_ON(n_groups != 1);
Johannes Berg5e53e682013-11-24 21:09:26 +0100209 } else if (family->id == GENL_ID_VFS_DQUOT) {
Johannes Berg2a94fe42013-11-19 15:19:39 +0100210 first_id = GENL_ID_VFS_DQUOT;
211 BUG_ON(n_groups != 1);
Johannes Berg5e53e682013-11-24 21:09:26 +0100212 } else if (family->id == GENL_ID_PMCRAID) {
213 first_id = GENL_ID_PMCRAID;
214 BUG_ON(n_groups != 1);
Johannes Berg2a94fe42013-11-19 15:19:39 +0100215 } else {
216 groups_allocated = true;
217 err = genl_allocate_reserve_groups(n_groups, &first_id);
218 if (err)
219 return err;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700220 }
221
Johannes Berg2a94fe42013-11-19 15:19:39 +0100222 family->mcgrp_offset = first_id;
223
224 /* if still initializing, can't and don't need to to realloc bitmaps */
225 if (!init_net.genl_sock)
226 return 0;
227
Johannes Berg134e6372009-07-10 09:51:34 +0000228 if (family->netnsok) {
229 struct net *net;
230
Johannes Bergd136f1b2009-09-12 03:03:15 +0000231 netlink_table_grab();
Johannes Berg134e6372009-07-10 09:51:34 +0000232 rcu_read_lock();
233 for_each_net_rcu(net) {
Johannes Bergd136f1b2009-09-12 03:03:15 +0000234 err = __netlink_change_ngroups(net->genl_sock,
Johannes Berg134e6372009-07-10 09:51:34 +0000235 mc_groups_longs * BITS_PER_LONG);
236 if (err) {
237 /*
238 * No need to roll back, can only fail if
239 * memory allocation fails and then the
240 * number of _possible_ groups has been
241 * increased on some sockets which is ok.
242 */
Johannes Berg2a94fe42013-11-19 15:19:39 +0100243 break;
Johannes Berg134e6372009-07-10 09:51:34 +0000244 }
245 }
246 rcu_read_unlock();
Johannes Bergd136f1b2009-09-12 03:03:15 +0000247 netlink_table_ungrab();
Johannes Berg134e6372009-07-10 09:51:34 +0000248 } else {
249 err = netlink_change_ngroups(init_net.genl_sock,
250 mc_groups_longs * BITS_PER_LONG);
Johannes Berg134e6372009-07-10 09:51:34 +0000251 }
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700252
Johannes Berg2a94fe42013-11-19 15:19:39 +0100253 if (groups_allocated && err) {
254 for (i = 0; i < family->n_mcgrps; i++)
255 clear_bit(family->mcgrp_offset + i, mc_groups);
256 }
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700257
Thomas Graf79d310d2007-07-24 15:34:53 -0700258 return err;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700259}
Thomas Graf79dc43862007-07-24 15:32:46 -0700260
Johannes Berg2ae0f172016-10-24 14:40:04 +0200261static void genl_unregister_mc_groups(const struct genl_family *family)
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700262{
Johannes Berg2a94fe42013-11-19 15:19:39 +0100263 struct net *net;
264 int i;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700265
Johannes Berg2a94fe42013-11-19 15:19:39 +0100266 netlink_table_grab();
267 rcu_read_lock();
268 for_each_net_rcu(net) {
269 for (i = 0; i < family->n_mcgrps; i++)
270 __netlink_clear_multicast_users(
271 net->genl_sock, family->mcgrp_offset + i);
272 }
273 rcu_read_unlock();
274 netlink_table_ungrab();
275
276 for (i = 0; i < family->n_mcgrps; i++) {
277 int grp_id = family->mcgrp_offset + i;
278
279 if (grp_id != 1)
280 clear_bit(grp_id, mc_groups);
281 genl_ctrl_event(CTRL_CMD_DELMCAST_GRP, family,
282 &family->mcgrps[i], grp_id);
283 }
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700284}
285
Denis ChengRq2f91abd2014-06-02 01:18:01 -0700286static int genl_validate_ops(const struct genl_family *family)
Thomas Graf482a8522005-11-10 02:25:56 +0100287{
Johannes Berg568508a2013-11-15 14:19:08 +0100288 const struct genl_ops *ops = family->ops;
289 unsigned int n_ops = family->n_ops;
Johannes Bergd91824c2013-11-14 17:14:44 +0100290 int i, j;
Thomas Graf482a8522005-11-10 02:25:56 +0100291
Johannes Berg568508a2013-11-15 14:19:08 +0100292 if (WARN_ON(n_ops && !ops))
293 return -EINVAL;
294
295 if (!n_ops)
296 return 0;
297
Johannes Bergd91824c2013-11-14 17:14:44 +0100298 for (i = 0; i < n_ops; i++) {
299 if (ops[i].dumpit == NULL && ops[i].doit == NULL)
300 return -EINVAL;
301 for (j = i + 1; j < n_ops; j++)
302 if (ops[i].cmd == ops[j].cmd)
303 return -EINVAL;
Thomas Graf482a8522005-11-10 02:25:56 +0100304 }
305
Johannes Bergd91824c2013-11-14 17:14:44 +0100306 return 0;
Thomas Graf482a8522005-11-10 02:25:56 +0100307}
Thomas Graf482a8522005-11-10 02:25:56 +0100308
309/**
Johannes Berg489111e2016-10-24 14:40:03 +0200310 * genl_register_family - register a generic netlink family
Thomas Graf482a8522005-11-10 02:25:56 +0100311 * @family: generic netlink family
312 *
313 * Registers the specified family after validating it first. Only one
314 * family may be registered with the same family name or identifier.
Thomas Graf482a8522005-11-10 02:25:56 +0100315 *
Johannes Berg489111e2016-10-24 14:40:03 +0200316 * The family's ops, multicast groups and module pointer must already
317 * be assigned.
Johannes Berg568508a2013-11-15 14:19:08 +0100318 *
Thomas Graf482a8522005-11-10 02:25:56 +0100319 * Return 0 on success or a negative error code.
320 */
Johannes Berg489111e2016-10-24 14:40:03 +0200321int genl_register_family(struct genl_family *family)
Thomas Graf482a8522005-11-10 02:25:56 +0100322{
Johannes Berga07ea4d2016-10-24 14:40:02 +0200323 int err, i;
Johannes Berg2ae0f172016-10-24 14:40:04 +0200324 int start = GENL_START_ALLOC, end = GENL_MAX_ID;
Thomas Graf482a8522005-11-10 02:25:56 +0100325
Johannes Berg568508a2013-11-15 14:19:08 +0100326 err = genl_validate_ops(family);
327 if (err)
328 return err;
329
Pravin B Shelardef31172013-04-23 07:48:30 +0000330 genl_lock_all();
Thomas Graf482a8522005-11-10 02:25:56 +0100331
332 if (genl_family_find_byname(family->name)) {
333 err = -EEXIST;
334 goto errout_locked;
335 }
336
Johannes Berg2ae0f172016-10-24 14:40:04 +0200337 /*
338 * Sadly, a few cases need to be special-cased
339 * due to them having previously abused the API
340 * and having used their family ID also as their
341 * multicast group ID, so we use reserved IDs
342 * for both to be sure we can do that mapping.
343 */
Johannes Berga07ea4d2016-10-24 14:40:02 +0200344 if (family == &genl_ctrl) {
Johannes Berg2ae0f172016-10-24 14:40:04 +0200345 /* and this needs to be special for initial family lookups */
346 start = end = GENL_ID_CTRL;
347 } else if (strcmp(family->name, "pmcraid") == 0) {
348 start = end = GENL_ID_PMCRAID;
349 } else if (strcmp(family->name, "VFS_DQUOT") == 0) {
350 start = end = GENL_ID_VFS_DQUOT;
Thomas Graf482a8522005-11-10 02:25:56 +0100351 }
352
Pravin B Shelardef31172013-04-23 07:48:30 +0000353 if (family->maxattr && !family->parallel_ops) {
Thomas Graf482a8522005-11-10 02:25:56 +0100354 family->attrbuf = kmalloc((family->maxattr+1) *
355 sizeof(struct nlattr *), GFP_KERNEL);
356 if (family->attrbuf == NULL) {
357 err = -ENOMEM;
Jamal Hadi Salime200bd82006-02-13 15:51:24 -0800358 goto errout_locked;
Thomas Graf482a8522005-11-10 02:25:56 +0100359 }
360 } else
361 family->attrbuf = NULL;
362
Johannes Berg2ae0f172016-10-24 14:40:04 +0200363 family->id = idr_alloc(&genl_fam_idr, family,
364 start, end + 1, GFP_KERNEL);
Wei Yongjun22ca9042016-11-01 14:45:52 +0000365 if (family->id < 0) {
366 err = family->id;
Johannes Berg2a94fe42013-11-19 15:19:39 +0100367 goto errout_locked;
Wei Yongjun22ca9042016-11-01 14:45:52 +0000368 }
Johannes Berg2a94fe42013-11-19 15:19:39 +0100369
Johannes Berg2ae0f172016-10-24 14:40:04 +0200370 err = genl_validate_assign_mc_groups(family);
371 if (err)
372 goto errout_remove;
373
Pravin B Shelardef31172013-04-23 07:48:30 +0000374 genl_unlock_all();
Thomas Graf482a8522005-11-10 02:25:56 +0100375
Johannes Berg2a94fe42013-11-19 15:19:39 +0100376 /* send all events */
377 genl_ctrl_event(CTRL_CMD_NEWFAMILY, family, NULL, 0);
378 for (i = 0; i < family->n_mcgrps; i++)
379 genl_ctrl_event(CTRL_CMD_NEWMCAST_GRP, family,
380 &family->mcgrps[i], family->mcgrp_offset + i);
Thomas Graf482a8522005-11-10 02:25:56 +0100381
382 return 0;
383
Johannes Berg2ae0f172016-10-24 14:40:04 +0200384errout_remove:
385 idr_remove(&genl_fam_idr, family->id);
WANG Cong00ffc1b2016-11-03 09:42:35 -0700386 kfree(family->attrbuf);
Thomas Graf482a8522005-11-10 02:25:56 +0100387errout_locked:
Pravin B Shelardef31172013-04-23 07:48:30 +0000388 genl_unlock_all();
Thomas Graf482a8522005-11-10 02:25:56 +0100389 return err;
390}
Johannes Berg489111e2016-10-24 14:40:03 +0200391EXPORT_SYMBOL(genl_register_family);
Thomas Graf482a8522005-11-10 02:25:56 +0100392
393/**
394 * genl_unregister_family - unregister generic netlink family
395 * @family: generic netlink family
396 *
397 * Unregisters the specified family.
398 *
399 * Returns 0 on success or a negative error code.
400 */
Johannes Berg2ae0f172016-10-24 14:40:04 +0200401int genl_unregister_family(const struct genl_family *family)
Thomas Graf482a8522005-11-10 02:25:56 +0100402{
Pravin B Shelardef31172013-04-23 07:48:30 +0000403 genl_lock_all();
Thomas Graf482a8522005-11-10 02:25:56 +0100404
pravin shelar0e82c762016-10-28 16:01:41 -0700405 if (!genl_family_find_byid(family->id)) {
Johannes Berg2ae0f172016-10-24 14:40:04 +0200406 genl_unlock_all();
407 return -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100408 }
409
Johannes Berg2ae0f172016-10-24 14:40:04 +0200410 genl_unregister_mc_groups(family);
Thomas Graf482a8522005-11-10 02:25:56 +0100411
Johannes Berg2ae0f172016-10-24 14:40:04 +0200412 idr_remove(&genl_fam_idr, family->id);
413
414 up_write(&cb_lock);
415 wait_event(genl_sk_destructing_waitq,
416 atomic_read(&genl_sk_destructing_cnt) == 0);
417 genl_unlock();
418
419 kfree(family->attrbuf);
420
421 genl_ctrl_event(CTRL_CMD_DELFAMILY, family, NULL, 0);
422
423 return 0;
Thomas Graf482a8522005-11-10 02:25:56 +0100424}
Changli Gao416c2f92010-07-25 20:46:01 +0000425EXPORT_SYMBOL(genl_unregister_family);
Thomas Graf482a8522005-11-10 02:25:56 +0100426
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500427/**
428 * genlmsg_put - Add generic netlink header to netlink message
429 * @skb: socket buffer holding the message
Eric W. Biederman15e47302012-09-07 20:12:54 +0000430 * @portid: netlink portid the message is addressed to
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500431 * @seq: sequence number (usually the one of the sender)
432 * @family: generic netlink family
Ben Hutchings2c530402012-07-10 10:55:09 +0000433 * @flags: netlink message flags
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500434 * @cmd: generic netlink command
435 *
436 * Returns pointer to user specific header
437 */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000438void *genlmsg_put(struct sk_buff *skb, u32 portid, u32 seq,
Johannes Berg2ae0f172016-10-24 14:40:04 +0200439 const struct genl_family *family, int flags, u8 cmd)
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500440{
441 struct nlmsghdr *nlh;
442 struct genlmsghdr *hdr;
443
Eric W. Biederman15e47302012-09-07 20:12:54 +0000444 nlh = nlmsg_put(skb, portid, seq, family->id, GENL_HDRLEN +
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500445 family->hdrsize, flags);
446 if (nlh == NULL)
447 return NULL;
448
449 hdr = nlmsg_data(nlh);
450 hdr->cmd = cmd;
451 hdr->version = family->version;
452 hdr->reserved = 0;
453
454 return (char *) hdr + GENL_HDRLEN;
455}
456EXPORT_SYMBOL(genlmsg_put);
457
Tom Herbertfc9e50f2015-12-15 15:41:37 -0800458static int genl_lock_start(struct netlink_callback *cb)
459{
460 /* our ops are always const - netlink API doesn't propagate that */
461 const struct genl_ops *ops = cb->data;
462 int rc = 0;
463
464 if (ops->start) {
465 genl_lock();
466 rc = ops->start(cb);
467 genl_unlock();
468 }
469 return rc;
470}
471
Pravin B Shelar9b963092013-08-23 12:44:55 -0700472static int genl_lock_dumpit(struct sk_buff *skb, struct netlink_callback *cb)
473{
Johannes Bergf84f7712013-11-14 17:14:45 +0100474 /* our ops are always const - netlink API doesn't propagate that */
475 const struct genl_ops *ops = cb->data;
Pravin B Shelar9b963092013-08-23 12:44:55 -0700476 int rc;
477
478 genl_lock();
479 rc = ops->dumpit(skb, cb);
480 genl_unlock();
481 return rc;
482}
483
484static int genl_lock_done(struct netlink_callback *cb)
485{
Johannes Bergf84f7712013-11-14 17:14:45 +0100486 /* our ops are always const - netlink API doesn't propagate that */
487 const struct genl_ops *ops = cb->data;
Pravin B Shelar9b963092013-08-23 12:44:55 -0700488 int rc = 0;
489
490 if (ops->done) {
491 genl_lock();
492 rc = ops->done(cb);
493 genl_unlock();
494 }
495 return rc;
496}
497
Johannes Berg2ae0f172016-10-24 14:40:04 +0200498static int genl_family_rcv_msg(const struct genl_family *family,
Pravin B Shelardef31172013-04-23 07:48:30 +0000499 struct sk_buff *skb,
500 struct nlmsghdr *nlh)
Thomas Graf482a8522005-11-10 02:25:56 +0100501{
Johannes Bergf84f7712013-11-14 17:14:45 +0100502 const struct genl_ops *ops;
Johannes Berg134e6372009-07-10 09:51:34 +0000503 struct net *net = sock_net(skb->sk);
Thomas Graf482a8522005-11-10 02:25:56 +0100504 struct genl_info info;
505 struct genlmsghdr *hdr = nlmsg_data(nlh);
Pravin B Shelardef31172013-04-23 07:48:30 +0000506 struct nlattr **attrbuf;
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700507 int hdrlen, err;
Thomas Graf482a8522005-11-10 02:25:56 +0100508
Johannes Berg134e6372009-07-10 09:51:34 +0000509 /* this family doesn't exist in this netns */
510 if (!family->netnsok && !net_eq(net, &init_net))
511 return -ENOENT;
512
Thomas Graf482a8522005-11-10 02:25:56 +0100513 hdrlen = GENL_HDRLEN + family->hdrsize;
514 if (nlh->nlmsg_len < nlmsg_msg_size(hdrlen))
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700515 return -EINVAL;
Thomas Graf482a8522005-11-10 02:25:56 +0100516
517 ops = genl_get_cmd(hdr->cmd, family);
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700518 if (ops == NULL)
519 return -EOPNOTSUPP;
Thomas Graf482a8522005-11-10 02:25:56 +0100520
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700521 if ((ops->flags & GENL_ADMIN_PERM) &&
Eric W. Biederman90f62cf2014-04-23 14:29:27 -0700522 !netlink_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700523 return -EPERM;
Thomas Graf482a8522005-11-10 02:25:56 +0100524
Tycho Andersen4a926022016-02-05 09:20:52 -0700525 if ((ops->flags & GENL_UNS_ADMIN_PERM) &&
526 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
527 return -EPERM;
528
Pablo Neirae1ee3672013-07-29 12:30:04 +0200529 if ((nlh->nlmsg_flags & NLM_F_DUMP) == NLM_F_DUMP) {
Pravin B Shelar9b963092013-08-23 12:44:55 -0700530 int rc;
Pravin B Shelardef31172013-04-23 07:48:30 +0000531
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700532 if (ops->dumpit == NULL)
533 return -EOPNOTSUPP;
Thomas Graf482a8522005-11-10 02:25:56 +0100534
Pravin B Shelar9b963092013-08-23 12:44:55 -0700535 if (!family->parallel_ops) {
536 struct netlink_dump_control c = {
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700537 .module = family->module,
Johannes Bergf84f7712013-11-14 17:14:45 +0100538 /* we have const, but the netlink API doesn't */
539 .data = (void *)ops,
Tom Herbertfc9e50f2015-12-15 15:41:37 -0800540 .start = genl_lock_start,
Pravin B Shelar9b963092013-08-23 12:44:55 -0700541 .dump = genl_lock_dumpit,
542 .done = genl_lock_done,
543 };
544
545 genl_unlock();
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700546 rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c);
Pravin B Shelar9b963092013-08-23 12:44:55 -0700547 genl_lock();
548
549 } else {
550 struct netlink_dump_control c = {
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700551 .module = family->module,
Tom Herbertfc9e50f2015-12-15 15:41:37 -0800552 .start = ops->start,
Pravin B Shelar9b963092013-08-23 12:44:55 -0700553 .dump = ops->dumpit,
554 .done = ops->done,
555 };
556
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700557 rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c);
Pravin B Shelar9b963092013-08-23 12:44:55 -0700558 }
559
560 return rc;
Thomas Graf482a8522005-11-10 02:25:56 +0100561 }
562
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700563 if (ops->doit == NULL)
564 return -EOPNOTSUPP;
Thomas Graf482a8522005-11-10 02:25:56 +0100565
Pravin B Shelardef31172013-04-23 07:48:30 +0000566 if (family->maxattr && family->parallel_ops) {
567 attrbuf = kmalloc((family->maxattr+1) *
568 sizeof(struct nlattr *), GFP_KERNEL);
569 if (attrbuf == NULL)
570 return -ENOMEM;
571 } else
572 attrbuf = family->attrbuf;
573
574 if (attrbuf) {
575 err = nlmsg_parse(nlh, hdrlen, attrbuf, family->maxattr,
Thomas Graf482a8522005-11-10 02:25:56 +0100576 ops->policy);
577 if (err < 0)
Wei Yongjun50754d212013-04-26 15:34:16 +0000578 goto out;
Thomas Graf482a8522005-11-10 02:25:56 +0100579 }
580
581 info.snd_seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000582 info.snd_portid = NETLINK_CB(skb).portid;
Thomas Graf482a8522005-11-10 02:25:56 +0100583 info.nlhdr = nlh;
584 info.genlhdr = nlmsg_data(nlh);
585 info.userhdr = nlmsg_data(nlh) + GENL_HDRLEN;
Pravin B Shelardef31172013-04-23 07:48:30 +0000586 info.attrs = attrbuf;
Johannes Berg134e6372009-07-10 09:51:34 +0000587 genl_info_net_set(&info, net);
Johannes Bergff4c92d2010-10-04 21:14:03 +0200588 memset(&info.user_ptr, 0, sizeof(info.user_ptr));
Thomas Graf482a8522005-11-10 02:25:56 +0100589
Johannes Bergff4c92d2010-10-04 21:14:03 +0200590 if (family->pre_doit) {
591 err = family->pre_doit(ops, skb, &info);
592 if (err)
Wei Yongjun50754d212013-04-26 15:34:16 +0000593 goto out;
Johannes Bergff4c92d2010-10-04 21:14:03 +0200594 }
595
596 err = ops->doit(skb, &info);
597
598 if (family->post_doit)
599 family->post_doit(ops, skb, &info);
600
Wei Yongjun50754d212013-04-26 15:34:16 +0000601out:
Pravin B Shelardef31172013-04-23 07:48:30 +0000602 if (family->parallel_ops)
603 kfree(attrbuf);
604
605 return err;
606}
607
608static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
609{
Johannes Berg2ae0f172016-10-24 14:40:04 +0200610 const struct genl_family *family;
Pravin B Shelardef31172013-04-23 07:48:30 +0000611 int err;
612
613 family = genl_family_find_byid(nlh->nlmsg_type);
614 if (family == NULL)
615 return -ENOENT;
616
617 if (!family->parallel_ops)
618 genl_lock();
619
620 err = genl_family_rcv_msg(family, skb, nlh);
621
622 if (!family->parallel_ops)
623 genl_unlock();
624
Johannes Bergff4c92d2010-10-04 21:14:03 +0200625 return err;
Thomas Graf482a8522005-11-10 02:25:56 +0100626}
627
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700628static void genl_rcv(struct sk_buff *skb)
Thomas Graf482a8522005-11-10 02:25:56 +0100629{
Pravin B Shelardef31172013-04-23 07:48:30 +0000630 down_read(&cb_lock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700631 netlink_rcv_skb(skb, &genl_rcv_msg);
Pravin B Shelardef31172013-04-23 07:48:30 +0000632 up_read(&cb_lock);
Thomas Graf482a8522005-11-10 02:25:56 +0100633}
634
635/**************************************************************************
636 * Controller
637 **************************************************************************/
638
Johannes Berg489111e2016-10-24 14:40:03 +0200639static struct genl_family genl_ctrl;
Thomas Graf17c157c2006-11-14 19:46:02 -0800640
Johannes Berg2ae0f172016-10-24 14:40:04 +0200641static int ctrl_fill_info(const struct genl_family *family, u32 portid, u32 seq,
Thomas Graf482a8522005-11-10 02:25:56 +0100642 u32 flags, struct sk_buff *skb, u8 cmd)
643{
644 void *hdr;
645
Eric W. Biederman15e47302012-09-07 20:12:54 +0000646 hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd);
Thomas Graf482a8522005-11-10 02:25:56 +0100647 if (hdr == NULL)
648 return -1;
649
David S. Miller444653f2012-03-29 23:25:11 -0400650 if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, family->name) ||
651 nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, family->id) ||
652 nla_put_u32(skb, CTRL_ATTR_VERSION, family->version) ||
653 nla_put_u32(skb, CTRL_ATTR_HDRSIZE, family->hdrsize) ||
654 nla_put_u32(skb, CTRL_ATTR_MAXATTR, family->maxattr))
655 goto nla_put_failure;
Thomas Grafeb328112006-09-18 00:01:59 -0700656
Johannes Bergd91824c2013-11-14 17:14:44 +0100657 if (family->n_ops) {
Thomas Grafe94ef682006-11-23 11:44:37 -0800658 struct nlattr *nla_ops;
Johannes Bergd91824c2013-11-14 17:14:44 +0100659 int i;
Thomas Grafeb328112006-09-18 00:01:59 -0700660
Thomas Grafe94ef682006-11-23 11:44:37 -0800661 nla_ops = nla_nest_start(skb, CTRL_ATTR_OPS);
662 if (nla_ops == NULL)
Thomas Grafeb328112006-09-18 00:01:59 -0700663 goto nla_put_failure;
664
Johannes Bergd91824c2013-11-14 17:14:44 +0100665 for (i = 0; i < family->n_ops; i++) {
Thomas Grafe94ef682006-11-23 11:44:37 -0800666 struct nlattr *nest;
Johannes Bergf84f7712013-11-14 17:14:45 +0100667 const struct genl_ops *ops = &family->ops[i];
Johannes Berg029b2342013-11-18 20:54:58 +0100668 u32 op_flags = ops->flags;
Johannes Bergf84f7712013-11-14 17:14:45 +0100669
670 if (ops->dumpit)
Johannes Berg029b2342013-11-18 20:54:58 +0100671 op_flags |= GENL_CMD_CAP_DUMP;
Johannes Bergf84f7712013-11-14 17:14:45 +0100672 if (ops->doit)
Johannes Berg029b2342013-11-18 20:54:58 +0100673 op_flags |= GENL_CMD_CAP_DO;
Johannes Bergf84f7712013-11-14 17:14:45 +0100674 if (ops->policy)
Johannes Berg029b2342013-11-18 20:54:58 +0100675 op_flags |= GENL_CMD_CAP_HASPOL;
Thomas Grafeb328112006-09-18 00:01:59 -0700676
Johannes Bergd91824c2013-11-14 17:14:44 +0100677 nest = nla_nest_start(skb, i + 1);
Thomas Grafe94ef682006-11-23 11:44:37 -0800678 if (nest == NULL)
679 goto nla_put_failure;
Thomas Grafeb328112006-09-18 00:01:59 -0700680
David S. Miller444653f2012-03-29 23:25:11 -0400681 if (nla_put_u32(skb, CTRL_ATTR_OP_ID, ops->cmd) ||
Johannes Berg029b2342013-11-18 20:54:58 +0100682 nla_put_u32(skb, CTRL_ATTR_OP_FLAGS, op_flags))
David S. Miller444653f2012-03-29 23:25:11 -0400683 goto nla_put_failure;
Thomas Grafeb328112006-09-18 00:01:59 -0700684
Thomas Grafe94ef682006-11-23 11:44:37 -0800685 nla_nest_end(skb, nest);
686 }
687
688 nla_nest_end(skb, nla_ops);
Thomas Grafeb328112006-09-18 00:01:59 -0700689 }
690
Johannes Berg2a94fe42013-11-19 15:19:39 +0100691 if (family->n_mcgrps) {
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700692 struct nlattr *nla_grps;
Johannes Berg2a94fe42013-11-19 15:19:39 +0100693 int i;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700694
695 nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS);
696 if (nla_grps == NULL)
697 goto nla_put_failure;
698
Johannes Berg2a94fe42013-11-19 15:19:39 +0100699 for (i = 0; i < family->n_mcgrps; i++) {
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700700 struct nlattr *nest;
Johannes Berg2a94fe42013-11-19 15:19:39 +0100701 const struct genl_multicast_group *grp;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700702
Johannes Berg2a94fe42013-11-19 15:19:39 +0100703 grp = &family->mcgrps[i];
704
705 nest = nla_nest_start(skb, i + 1);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700706 if (nest == NULL)
707 goto nla_put_failure;
708
Johannes Berg2a94fe42013-11-19 15:19:39 +0100709 if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID,
710 family->mcgrp_offset + i) ||
David S. Miller444653f2012-03-29 23:25:11 -0400711 nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME,
712 grp->name))
713 goto nla_put_failure;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700714
715 nla_nest_end(skb, nest);
716 }
717 nla_nest_end(skb, nla_grps);
718 }
719
Johannes Berg053c0952015-01-16 22:09:00 +0100720 genlmsg_end(skb, hdr);
721 return 0;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700722
723nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700724 genlmsg_cancel(skb, hdr);
725 return -EMSGSIZE;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700726}
727
Johannes Berg2ae0f172016-10-24 14:40:04 +0200728static int ctrl_fill_mcgrp_info(const struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +0100729 const struct genl_multicast_group *grp,
730 int grp_id, u32 portid, u32 seq, u32 flags,
731 struct sk_buff *skb, u8 cmd)
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700732{
733 void *hdr;
734 struct nlattr *nla_grps;
735 struct nlattr *nest;
736
Eric W. Biederman15e47302012-09-07 20:12:54 +0000737 hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700738 if (hdr == NULL)
739 return -1;
740
Johannes Bergc2ebb902013-11-19 15:19:36 +0100741 if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, family->name) ||
742 nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, family->id))
David S. Miller444653f2012-03-29 23:25:11 -0400743 goto nla_put_failure;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700744
745 nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS);
746 if (nla_grps == NULL)
747 goto nla_put_failure;
748
749 nest = nla_nest_start(skb, 1);
750 if (nest == NULL)
751 goto nla_put_failure;
752
Johannes Berg2a94fe42013-11-19 15:19:39 +0100753 if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID, grp_id) ||
David S. Miller444653f2012-03-29 23:25:11 -0400754 nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME,
755 grp->name))
756 goto nla_put_failure;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700757
758 nla_nest_end(skb, nest);
759 nla_nest_end(skb, nla_grps);
760
Johannes Berg053c0952015-01-16 22:09:00 +0100761 genlmsg_end(skb, hdr);
762 return 0;
Thomas Graf482a8522005-11-10 02:25:56 +0100763
764nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700765 genlmsg_cancel(skb, hdr);
766 return -EMSGSIZE;
Thomas Graf482a8522005-11-10 02:25:56 +0100767}
768
769static int ctrl_dumpfamily(struct sk_buff *skb, struct netlink_callback *cb)
770{
Johannes Berg2ae0f172016-10-24 14:40:04 +0200771 int n = 0;
Thomas Graf482a8522005-11-10 02:25:56 +0100772 struct genl_family *rt;
Johannes Berg134e6372009-07-10 09:51:34 +0000773 struct net *net = sock_net(skb->sk);
Johannes Berg2ae0f172016-10-24 14:40:04 +0200774 int fams_to_skip = cb->args[0];
775 unsigned int id;
Thomas Graf482a8522005-11-10 02:25:56 +0100776
Johannes Berg2ae0f172016-10-24 14:40:04 +0200777 idr_for_each_entry(&genl_fam_idr, rt, id) {
778 if (!rt->netnsok && !net_eq(net, &init_net))
779 continue;
Thomas Graf482a8522005-11-10 02:25:56 +0100780
Johannes Berg2ae0f172016-10-24 14:40:04 +0200781 if (n++ < fams_to_skip)
782 continue;
783
784 if (ctrl_fill_info(rt, NETLINK_CB(cb->skb).portid,
785 cb->nlh->nlmsg_seq, NLM_F_MULTI,
786 skb, CTRL_CMD_NEWFAMILY) < 0)
787 break;
Thomas Graf482a8522005-11-10 02:25:56 +0100788 }
789
Johannes Berg2ae0f172016-10-24 14:40:04 +0200790 cb->args[0] = n;
Thomas Graf482a8522005-11-10 02:25:56 +0100791 return skb->len;
792}
793
Johannes Berg2ae0f172016-10-24 14:40:04 +0200794static struct sk_buff *ctrl_build_family_msg(const struct genl_family *family,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000795 u32 portid, int seq, u8 cmd)
Thomas Graf482a8522005-11-10 02:25:56 +0100796{
797 struct sk_buff *skb;
798 int err;
799
Thomas Graf339bf982006-11-10 14:10:15 -0800800 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Thomas Graf482a8522005-11-10 02:25:56 +0100801 if (skb == NULL)
802 return ERR_PTR(-ENOBUFS);
803
Eric W. Biederman15e47302012-09-07 20:12:54 +0000804 err = ctrl_fill_info(family, portid, seq, 0, skb, cmd);
Thomas Graf482a8522005-11-10 02:25:56 +0100805 if (err < 0) {
806 nlmsg_free(skb);
807 return ERR_PTR(err);
808 }
809
810 return skb;
811}
812
Johannes Berg2a94fe42013-11-19 15:19:39 +0100813static struct sk_buff *
Johannes Berg2ae0f172016-10-24 14:40:04 +0200814ctrl_build_mcgrp_msg(const struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +0100815 const struct genl_multicast_group *grp,
816 int grp_id, u32 portid, int seq, u8 cmd)
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700817{
818 struct sk_buff *skb;
819 int err;
820
821 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
822 if (skb == NULL)
823 return ERR_PTR(-ENOBUFS);
824
Johannes Berg2a94fe42013-11-19 15:19:39 +0100825 err = ctrl_fill_mcgrp_info(family, grp, grp_id, portid,
826 seq, 0, skb, cmd);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700827 if (err < 0) {
828 nlmsg_free(skb);
829 return ERR_PTR(err);
830 }
831
832 return skb;
833}
834
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700835static const struct nla_policy ctrl_policy[CTRL_ATTR_MAX+1] = {
Thomas Graf482a8522005-11-10 02:25:56 +0100836 [CTRL_ATTR_FAMILY_ID] = { .type = NLA_U16 },
Thomas Graf5176f912006-08-26 20:13:18 -0700837 [CTRL_ATTR_FAMILY_NAME] = { .type = NLA_NUL_STRING,
838 .len = GENL_NAMSIZ - 1 },
Thomas Graf482a8522005-11-10 02:25:56 +0100839};
840
841static int ctrl_getfamily(struct sk_buff *skb, struct genl_info *info)
842{
843 struct sk_buff *msg;
Johannes Berg2ae0f172016-10-24 14:40:04 +0200844 const struct genl_family *res = NULL;
Thomas Graf482a8522005-11-10 02:25:56 +0100845 int err = -EINVAL;
846
847 if (info->attrs[CTRL_ATTR_FAMILY_ID]) {
848 u16 id = nla_get_u16(info->attrs[CTRL_ATTR_FAMILY_ID]);
849 res = genl_family_find_byid(id);
Johannes Berg134e6372009-07-10 09:51:34 +0000850 err = -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100851 }
852
853 if (info->attrs[CTRL_ATTR_FAMILY_NAME]) {
Thomas Graf5176f912006-08-26 20:13:18 -0700854 char *name;
Thomas Graf482a8522005-11-10 02:25:56 +0100855
Thomas Graf5176f912006-08-26 20:13:18 -0700856 name = nla_data(info->attrs[CTRL_ATTR_FAMILY_NAME]);
Thomas Graf482a8522005-11-10 02:25:56 +0100857 res = genl_family_find_byname(name);
Stephen Hemmingerfa843092011-12-28 13:48:55 -0500858#ifdef CONFIG_MODULES
859 if (res == NULL) {
860 genl_unlock();
Stanislaw Gruszkac74f2b22013-07-26 11:00:10 +0200861 up_read(&cb_lock);
Neil Hormane9412c32012-05-29 09:30:41 +0000862 request_module("net-pf-%d-proto-%d-family-%s",
Stephen Hemmingerfa843092011-12-28 13:48:55 -0500863 PF_NETLINK, NETLINK_GENERIC, name);
Stanislaw Gruszkac74f2b22013-07-26 11:00:10 +0200864 down_read(&cb_lock);
Stephen Hemmingerfa843092011-12-28 13:48:55 -0500865 genl_lock();
866 res = genl_family_find_byname(name);
867 }
868#endif
Johannes Berg134e6372009-07-10 09:51:34 +0000869 err = -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100870 }
871
Johannes Berg134e6372009-07-10 09:51:34 +0000872 if (res == NULL)
873 return err;
874
875 if (!res->netnsok && !net_eq(genl_info_net(info), &init_net)) {
876 /* family doesn't exist here */
877 return -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100878 }
879
Eric W. Biederman15e47302012-09-07 20:12:54 +0000880 msg = ctrl_build_family_msg(res, info->snd_portid, info->snd_seq,
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700881 CTRL_CMD_NEWFAMILY);
Johannes Berg134e6372009-07-10 09:51:34 +0000882 if (IS_ERR(msg))
883 return PTR_ERR(msg);
Thomas Graf482a8522005-11-10 02:25:56 +0100884
Johannes Berg134e6372009-07-10 09:51:34 +0000885 return genlmsg_reply(msg, info);
Thomas Graf482a8522005-11-10 02:25:56 +0100886}
887
Johannes Berg2ae0f172016-10-24 14:40:04 +0200888static int genl_ctrl_event(int event, const struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +0100889 const struct genl_multicast_group *grp,
890 int grp_id)
Thomas Graf482a8522005-11-10 02:25:56 +0100891{
892 struct sk_buff *msg;
893
Johannes Berg134e6372009-07-10 09:51:34 +0000894 /* genl is still initialising */
895 if (!init_net.genl_sock)
Thomas Graf482a8522005-11-10 02:25:56 +0100896 return 0;
897
898 switch (event) {
899 case CTRL_CMD_NEWFAMILY:
900 case CTRL_CMD_DELFAMILY:
Johannes Bergc2ebb902013-11-19 15:19:36 +0100901 WARN_ON(grp);
Johannes Berg134e6372009-07-10 09:51:34 +0000902 msg = ctrl_build_family_msg(family, 0, 0, event);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700903 break;
904 case CTRL_CMD_NEWMCAST_GRP:
905 case CTRL_CMD_DELMCAST_GRP:
Johannes Bergc2ebb902013-11-19 15:19:36 +0100906 BUG_ON(!grp);
Johannes Berg2a94fe42013-11-19 15:19:39 +0100907 msg = ctrl_build_mcgrp_msg(family, grp, grp_id, 0, 0, event);
Thomas Graf482a8522005-11-10 02:25:56 +0100908 break;
Johannes Berg134e6372009-07-10 09:51:34 +0000909 default:
910 return -EINVAL;
911 }
912
913 if (IS_ERR(msg))
914 return PTR_ERR(msg);
915
916 if (!family->netnsok) {
Johannes Berg68eb5502013-11-19 15:19:38 +0100917 genlmsg_multicast_netns(&genl_ctrl, &init_net, msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +0100918 0, GFP_KERNEL);
Johannes Berg134e6372009-07-10 09:51:34 +0000919 } else {
920 rcu_read_lock();
Johannes Berg68eb5502013-11-19 15:19:38 +0100921 genlmsg_multicast_allns(&genl_ctrl, msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +0100922 0, GFP_ATOMIC);
Johannes Berg134e6372009-07-10 09:51:34 +0000923 rcu_read_unlock();
Thomas Graf482a8522005-11-10 02:25:56 +0100924 }
925
926 return 0;
927}
928
stephen hemminger12d8de62016-08-31 15:22:00 -0700929static const struct genl_ops genl_ctrl_ops[] = {
Johannes Bergc53ed742013-11-19 15:19:31 +0100930 {
931 .cmd = CTRL_CMD_GETFAMILY,
932 .doit = ctrl_getfamily,
933 .dumpit = ctrl_dumpfamily,
934 .policy = ctrl_policy,
935 },
Thomas Graf482a8522005-11-10 02:25:56 +0100936};
937
stephen hemminger12d8de62016-08-31 15:22:00 -0700938static const struct genl_multicast_group genl_ctrl_groups[] = {
Johannes Berg2a94fe42013-11-19 15:19:39 +0100939 { .name = "notify", },
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700940};
941
Johannes Berg56989f62016-10-24 14:40:05 +0200942static struct genl_family genl_ctrl __ro_after_init = {
Johannes Berg489111e2016-10-24 14:40:03 +0200943 .module = THIS_MODULE,
944 .ops = genl_ctrl_ops,
945 .n_ops = ARRAY_SIZE(genl_ctrl_ops),
946 .mcgrps = genl_ctrl_groups,
947 .n_mcgrps = ARRAY_SIZE(genl_ctrl_groups),
948 .id = GENL_ID_CTRL,
949 .name = "nlctrl",
950 .version = 0x2,
951 .maxattr = CTRL_ATTR_MAX,
952 .netnsok = true,
953};
954
Johannes Berg023e2cf2014-12-23 21:00:06 +0100955static int genl_bind(struct net *net, int group)
Johannes Bergc380d9a2014-12-23 20:54:40 +0100956{
Johannes Berg2ae0f172016-10-24 14:40:04 +0200957 struct genl_family *f;
958 int err = -ENOENT;
959 unsigned int id;
Johannes Bergc380d9a2014-12-23 20:54:40 +0100960
961 down_read(&cb_lock);
Johannes Bergc380d9a2014-12-23 20:54:40 +0100962
Johannes Berg2ae0f172016-10-24 14:40:04 +0200963 idr_for_each_entry(&genl_fam_idr, f, id) {
964 if (group >= f->mcgrp_offset &&
965 group < f->mcgrp_offset + f->n_mcgrps) {
966 int fam_grp = group - f->mcgrp_offset;
Johannes Bergc380d9a2014-12-23 20:54:40 +0100967
Johannes Berg2ae0f172016-10-24 14:40:04 +0200968 if (!f->netnsok && net != &init_net)
969 err = -ENOENT;
970 else if (f->mcast_bind)
971 err = f->mcast_bind(net, fam_grp);
972 else
973 err = 0;
974 break;
Johannes Bergc380d9a2014-12-23 20:54:40 +0100975 }
976 }
977 up_read(&cb_lock);
978
Johannes Bergc380d9a2014-12-23 20:54:40 +0100979 return err;
980}
981
Johannes Berg023e2cf2014-12-23 21:00:06 +0100982static void genl_unbind(struct net *net, int group)
Johannes Bergc380d9a2014-12-23 20:54:40 +0100983{
Johannes Berg2ae0f172016-10-24 14:40:04 +0200984 struct genl_family *f;
985 unsigned int id;
Johannes Bergc380d9a2014-12-23 20:54:40 +0100986
987 down_read(&cb_lock);
Johannes Bergc380d9a2014-12-23 20:54:40 +0100988
Johannes Berg2ae0f172016-10-24 14:40:04 +0200989 idr_for_each_entry(&genl_fam_idr, f, id) {
990 if (group >= f->mcgrp_offset &&
991 group < f->mcgrp_offset + f->n_mcgrps) {
992 int fam_grp = group - f->mcgrp_offset;
Johannes Bergc380d9a2014-12-23 20:54:40 +0100993
Johannes Berg2ae0f172016-10-24 14:40:04 +0200994 if (f->mcast_unbind)
995 f->mcast_unbind(net, fam_grp);
996 break;
Johannes Bergc380d9a2014-12-23 20:54:40 +0100997 }
998 }
999 up_read(&cb_lock);
Johannes Bergc380d9a2014-12-23 20:54:40 +01001000}
1001
Johannes Berg134e6372009-07-10 09:51:34 +00001002static int __net_init genl_pernet_init(struct net *net)
1003{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001004 struct netlink_kernel_cfg cfg = {
1005 .input = genl_rcv,
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001006 .flags = NL_CFG_F_NONROOT_RECV,
Johannes Bergc380d9a2014-12-23 20:54:40 +01001007 .bind = genl_bind,
1008 .unbind = genl_unbind,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001009 };
1010
Johannes Berg134e6372009-07-10 09:51:34 +00001011 /* we'll bump the group number right afterwards */
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00001012 net->genl_sock = netlink_kernel_create(net, NETLINK_GENERIC, &cfg);
Johannes Berg134e6372009-07-10 09:51:34 +00001013
1014 if (!net->genl_sock && net_eq(net, &init_net))
1015 panic("GENL: Cannot initialize generic netlink\n");
1016
1017 if (!net->genl_sock)
1018 return -ENOMEM;
1019
1020 return 0;
1021}
1022
1023static void __net_exit genl_pernet_exit(struct net *net)
1024{
1025 netlink_kernel_release(net->genl_sock);
1026 net->genl_sock = NULL;
1027}
1028
1029static struct pernet_operations genl_pernet_ops = {
1030 .init = genl_pernet_init,
1031 .exit = genl_pernet_exit,
1032};
1033
Thomas Graf482a8522005-11-10 02:25:56 +01001034static int __init genl_init(void)
1035{
Johannes Berg2ae0f172016-10-24 14:40:04 +02001036 int err;
Thomas Graf482a8522005-11-10 02:25:56 +01001037
Johannes Berg489111e2016-10-24 14:40:03 +02001038 err = genl_register_family(&genl_ctrl);
Thomas Graf482a8522005-11-10 02:25:56 +01001039 if (err < 0)
Johannes Berg134e6372009-07-10 09:51:34 +00001040 goto problem;
Thomas Graf482a8522005-11-10 02:25:56 +01001041
Johannes Berg134e6372009-07-10 09:51:34 +00001042 err = register_pernet_subsys(&genl_pernet_ops);
1043 if (err)
1044 goto problem;
Thomas Graf482a8522005-11-10 02:25:56 +01001045
1046 return 0;
1047
Johannes Berg134e6372009-07-10 09:51:34 +00001048problem:
Thomas Graf482a8522005-11-10 02:25:56 +01001049 panic("GENL: Cannot register controller: %d\n", err);
Thomas Graf482a8522005-11-10 02:25:56 +01001050}
1051
1052subsys_initcall(genl_init);
1053
Johannes Bergc90c39d2016-10-24 14:40:01 +02001054/**
1055 * genl_family_attrbuf - return family's attrbuf
1056 * @family: the family
1057 *
1058 * Return the family's attrbuf, while validating that it's
1059 * actually valid to access it.
1060 *
1061 * You cannot use this function with a family that has parallel_ops
1062 * and you can only use it within (pre/post) doit/dumpit callbacks.
1063 */
Johannes Berg2ae0f172016-10-24 14:40:04 +02001064struct nlattr **genl_family_attrbuf(const struct genl_family *family)
Johannes Bergc90c39d2016-10-24 14:40:01 +02001065{
1066 if (!WARN_ON(family->parallel_ops))
1067 lockdep_assert_held(&genl_mutex);
1068
1069 return family->attrbuf;
1070}
1071EXPORT_SYMBOL(genl_family_attrbuf);
1072
Eric W. Biederman15e47302012-09-07 20:12:54 +00001073static int genlmsg_mcast(struct sk_buff *skb, u32 portid, unsigned long group,
Johannes Berg134e6372009-07-10 09:51:34 +00001074 gfp_t flags)
1075{
1076 struct sk_buff *tmp;
1077 struct net *net, *prev = NULL;
1078 int err;
1079
1080 for_each_net_rcu(net) {
1081 if (prev) {
1082 tmp = skb_clone(skb, flags);
1083 if (!tmp) {
1084 err = -ENOMEM;
1085 goto error;
1086 }
1087 err = nlmsg_multicast(prev->genl_sock, tmp,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001088 portid, group, flags);
Johannes Berg134e6372009-07-10 09:51:34 +00001089 if (err)
1090 goto error;
1091 }
1092
1093 prev = net;
1094 }
1095
Eric W. Biederman15e47302012-09-07 20:12:54 +00001096 return nlmsg_multicast(prev->genl_sock, skb, portid, group, flags);
Johannes Berg134e6372009-07-10 09:51:34 +00001097 error:
1098 kfree_skb(skb);
1099 return err;
1100}
1101
Johannes Berg2ae0f172016-10-24 14:40:04 +02001102int genlmsg_multicast_allns(const struct genl_family *family,
1103 struct sk_buff *skb, u32 portid,
1104 unsigned int group, gfp_t flags)
Johannes Berg134e6372009-07-10 09:51:34 +00001105{
Johannes Berg220815a2013-11-21 18:17:04 +01001106 if (WARN_ON_ONCE(group >= family->n_mcgrps))
Johannes Berg2a94fe42013-11-19 15:19:39 +01001107 return -EINVAL;
1108 group = family->mcgrp_offset + group;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001109 return genlmsg_mcast(skb, portid, group, flags);
Johannes Berg134e6372009-07-10 09:51:34 +00001110}
1111EXPORT_SYMBOL(genlmsg_multicast_allns);
Pravin B Shelar263ba612011-11-10 19:14:37 -08001112
Johannes Berg2ae0f172016-10-24 14:40:04 +02001113void genl_notify(const struct genl_family *family, struct sk_buff *skb,
Jiri Benc92c14d92015-09-22 18:56:43 +02001114 struct genl_info *info, u32 group, gfp_t flags)
Pravin B Shelar263ba612011-11-10 19:14:37 -08001115{
Jiri Benc92c14d92015-09-22 18:56:43 +02001116 struct net *net = genl_info_net(info);
Pravin B Shelar263ba612011-11-10 19:14:37 -08001117 struct sock *sk = net->genl_sock;
1118 int report = 0;
1119
Jiri Benc92c14d92015-09-22 18:56:43 +02001120 if (info->nlhdr)
1121 report = nlmsg_report(info->nlhdr);
Pravin B Shelar263ba612011-11-10 19:14:37 -08001122
Johannes Berg220815a2013-11-21 18:17:04 +01001123 if (WARN_ON_ONCE(group >= family->n_mcgrps))
Johannes Berg2a94fe42013-11-19 15:19:39 +01001124 return;
1125 group = family->mcgrp_offset + group;
Jiri Benc92c14d92015-09-22 18:56:43 +02001126 nlmsg_notify(sk, skb, info->snd_portid, group, report, flags);
Pravin B Shelar263ba612011-11-10 19:14:37 -08001127}
1128EXPORT_SYMBOL(genl_notify);