blob: 5a55be3f17a54aa2acac3ce109c412c86c652b36 [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>
Thomas Graf482a8522005-11-10 02:25:56 +010019#include <net/sock.h>
20#include <net/genetlink.h>
21
Ingo Molnar14cc3e22006-03-26 01:37:14 -080022static DEFINE_MUTEX(genl_mutex); /* serialization of message processing */
Thomas Graf482a8522005-11-10 02:25:56 +010023
James Chapmanf408e0c2010-04-02 06:19:05 +000024void genl_lock(void)
Thomas Graf482a8522005-11-10 02:25:56 +010025{
Ingo Molnar14cc3e22006-03-26 01:37:14 -080026 mutex_lock(&genl_mutex);
Thomas Graf482a8522005-11-10 02:25:56 +010027}
James Chapmanf408e0c2010-04-02 06:19:05 +000028EXPORT_SYMBOL(genl_lock);
Thomas Graf482a8522005-11-10 02:25:56 +010029
James Chapmanf408e0c2010-04-02 06:19:05 +000030void genl_unlock(void)
Thomas Graf482a8522005-11-10 02:25:56 +010031{
Ingo Molnar14cc3e22006-03-26 01:37:14 -080032 mutex_unlock(&genl_mutex);
Thomas Graf482a8522005-11-10 02:25:56 +010033}
James Chapmanf408e0c2010-04-02 06:19:05 +000034EXPORT_SYMBOL(genl_unlock);
Thomas Graf482a8522005-11-10 02:25:56 +010035
WANG Cong320f5ea2012-07-24 13:44:01 +080036#ifdef CONFIG_LOCKDEP
Pravin B Shelar86b13092011-11-10 19:14:51 -080037int lockdep_genl_is_held(void)
38{
39 return lockdep_is_held(&genl_mutex);
40}
41EXPORT_SYMBOL(lockdep_genl_is_held);
42#endif
43
Thomas Graf482a8522005-11-10 02:25:56 +010044#define GENL_FAM_TAB_SIZE 16
45#define GENL_FAM_TAB_MASK (GENL_FAM_TAB_SIZE - 1)
46
47static struct list_head family_ht[GENL_FAM_TAB_SIZE];
Johannes Berg2dbba6f2007-07-18 15:47:52 -070048/*
49 * Bitmap of multicast groups that are currently in use.
50 *
51 * To avoid an allocation at boot of just one unsigned long,
52 * declare it global instead.
53 * Bit 0 is marked as already used since group 0 is invalid.
54 */
55static unsigned long mc_group_start = 0x1;
56static unsigned long *mc_groups = &mc_group_start;
57static unsigned long mc_groups_longs = 1;
Thomas Graf482a8522005-11-10 02:25:56 +010058
59static int genl_ctrl_event(int event, void *data);
60
61static inline unsigned int genl_family_hash(unsigned int id)
62{
63 return id & GENL_FAM_TAB_MASK;
64}
65
66static inline struct list_head *genl_family_chain(unsigned int id)
67{
68 return &family_ht[genl_family_hash(id)];
69}
70
71static struct genl_family *genl_family_find_byid(unsigned int id)
72{
73 struct genl_family *f;
74
75 list_for_each_entry(f, genl_family_chain(id), family_list)
76 if (f->id == id)
77 return f;
78
79 return NULL;
80}
81
82static struct genl_family *genl_family_find_byname(char *name)
83{
84 struct genl_family *f;
85 int i;
86
87 for (i = 0; i < GENL_FAM_TAB_SIZE; i++)
88 list_for_each_entry(f, genl_family_chain(i), family_list)
89 if (strcmp(f->name, name) == 0)
90 return f;
91
92 return NULL;
93}
94
95static struct genl_ops *genl_get_cmd(u8 cmd, struct genl_family *family)
96{
97 struct genl_ops *ops;
98
99 list_for_each_entry(ops, &family->ops_list, ops_list)
100 if (ops->cmd == cmd)
101 return ops;
102
103 return NULL;
104}
105
106/* Of course we are going to have problems once we hit
107 * 2^16 alive types, but that can only happen by year 2K
108*/
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000109static u16 genl_generate_id(void)
Thomas Graf482a8522005-11-10 02:25:56 +0100110{
Krishna Kumar988ade62009-10-14 19:55:07 +0000111 static u16 id_gen_idx = GENL_MIN_ID;
112 int i;
Thomas Graf482a8522005-11-10 02:25:56 +0100113
Krishna Kumar988ade62009-10-14 19:55:07 +0000114 for (i = 0; i <= GENL_MAX_ID - GENL_MIN_ID; i++) {
115 if (!genl_family_find_byid(id_gen_idx))
116 return id_gen_idx;
117 if (++id_gen_idx > GENL_MAX_ID)
Thomas Graf482a8522005-11-10 02:25:56 +0100118 id_gen_idx = GENL_MIN_ID;
Krishna Kumar988ade62009-10-14 19:55:07 +0000119 }
Thomas Graf482a8522005-11-10 02:25:56 +0100120
Krishna Kumar988ade62009-10-14 19:55:07 +0000121 return 0;
Thomas Graf482a8522005-11-10 02:25:56 +0100122}
123
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700124static struct genl_multicast_group notify_grp;
125
126/**
127 * genl_register_mc_group - register a multicast group
128 *
129 * Registers the specified multicast group and notifies userspace
130 * about the new group.
131 *
132 * Returns 0 on success or a negative error code.
133 *
134 * @family: The generic netlink family the group shall be registered for.
135 * @grp: The group to register, must have a name.
136 */
137int genl_register_mc_group(struct genl_family *family,
138 struct genl_multicast_group *grp)
139{
140 int id;
141 unsigned long *new_groups;
Brian Haleyb1f57192009-09-04 20:36:52 -0700142 int err = 0;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700143
144 BUG_ON(grp->name[0] == '\0');
Masatake YAMATOf1e79e22013-03-19 01:47:27 +0000145 BUG_ON(memchr(grp->name, '\0', GENL_NAMSIZ) == NULL);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700146
147 genl_lock();
148
149 /* special-case our own group */
150 if (grp == &notify_grp)
151 id = GENL_ID_CTRL;
152 else
153 id = find_first_zero_bit(mc_groups,
154 mc_groups_longs * BITS_PER_LONG);
155
156
157 if (id >= mc_groups_longs * BITS_PER_LONG) {
158 size_t nlen = (mc_groups_longs + 1) * sizeof(unsigned long);
159
160 if (mc_groups == &mc_group_start) {
161 new_groups = kzalloc(nlen, GFP_KERNEL);
162 if (!new_groups) {
163 err = -ENOMEM;
164 goto out;
165 }
166 mc_groups = new_groups;
167 *mc_groups = mc_group_start;
168 } else {
169 new_groups = krealloc(mc_groups, nlen, GFP_KERNEL);
170 if (!new_groups) {
171 err = -ENOMEM;
172 goto out;
173 }
174 mc_groups = new_groups;
175 mc_groups[mc_groups_longs] = 0;
176 }
177 mc_groups_longs++;
178 }
179
Johannes Berg134e6372009-07-10 09:51:34 +0000180 if (family->netnsok) {
181 struct net *net;
182
Johannes Bergd136f1b2009-09-12 03:03:15 +0000183 netlink_table_grab();
Johannes Berg134e6372009-07-10 09:51:34 +0000184 rcu_read_lock();
185 for_each_net_rcu(net) {
Johannes Bergd136f1b2009-09-12 03:03:15 +0000186 err = __netlink_change_ngroups(net->genl_sock,
Johannes Berg134e6372009-07-10 09:51:34 +0000187 mc_groups_longs * BITS_PER_LONG);
188 if (err) {
189 /*
190 * No need to roll back, can only fail if
191 * memory allocation fails and then the
192 * number of _possible_ groups has been
193 * increased on some sockets which is ok.
194 */
195 rcu_read_unlock();
Johannes Bergd136f1b2009-09-12 03:03:15 +0000196 netlink_table_ungrab();
Johannes Berg134e6372009-07-10 09:51:34 +0000197 goto out;
198 }
199 }
200 rcu_read_unlock();
Johannes Bergd136f1b2009-09-12 03:03:15 +0000201 netlink_table_ungrab();
Johannes Berg134e6372009-07-10 09:51:34 +0000202 } else {
203 err = netlink_change_ngroups(init_net.genl_sock,
204 mc_groups_longs * BITS_PER_LONG);
205 if (err)
206 goto out;
207 }
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700208
209 grp->id = id;
210 set_bit(id, mc_groups);
211 list_add_tail(&grp->list, &family->mcast_groups);
212 grp->family = family;
213
214 genl_ctrl_event(CTRL_CMD_NEWMCAST_GRP, grp);
215 out:
216 genl_unlock();
Thomas Graf79d310d2007-07-24 15:34:53 -0700217 return err;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700218}
219EXPORT_SYMBOL(genl_register_mc_group);
220
Thomas Graf79dc43862007-07-24 15:32:46 -0700221static void __genl_unregister_mc_group(struct genl_family *family,
222 struct genl_multicast_group *grp)
223{
Johannes Berg134e6372009-07-10 09:51:34 +0000224 struct net *net;
Thomas Graf79dc43862007-07-24 15:32:46 -0700225 BUG_ON(grp->family != family);
Johannes Berg134e6372009-07-10 09:51:34 +0000226
Johannes Bergb8273572009-09-24 15:44:05 -0700227 netlink_table_grab();
Johannes Berg134e6372009-07-10 09:51:34 +0000228 rcu_read_lock();
229 for_each_net_rcu(net)
Johannes Bergb8273572009-09-24 15:44:05 -0700230 __netlink_clear_multicast_users(net->genl_sock, grp->id);
Johannes Berg134e6372009-07-10 09:51:34 +0000231 rcu_read_unlock();
Johannes Bergb8273572009-09-24 15:44:05 -0700232 netlink_table_ungrab();
Johannes Berg134e6372009-07-10 09:51:34 +0000233
Thomas Graf79dc43862007-07-24 15:32:46 -0700234 clear_bit(grp->id, mc_groups);
235 list_del(&grp->list);
236 genl_ctrl_event(CTRL_CMD_DELMCAST_GRP, grp);
237 grp->id = 0;
238 grp->family = NULL;
239}
240
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700241/**
242 * genl_unregister_mc_group - unregister a multicast group
243 *
244 * Unregisters the specified multicast group and notifies userspace
245 * about it. All current listeners on the group are removed.
246 *
247 * Note: It is not necessary to unregister all multicast groups before
248 * unregistering the family, unregistering the family will cause
249 * all assigned multicast groups to be unregistered automatically.
250 *
251 * @family: Generic netlink family the group belongs to.
252 * @grp: The group to unregister, must have been registered successfully
253 * previously.
254 */
255void genl_unregister_mc_group(struct genl_family *family,
256 struct genl_multicast_group *grp)
257{
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700258 genl_lock();
Thomas Graf79dc43862007-07-24 15:32:46 -0700259 __genl_unregister_mc_group(family, grp);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700260 genl_unlock();
261}
Inaky Perez-Gonzalez3efb40c2008-12-20 16:57:37 -0800262EXPORT_SYMBOL(genl_unregister_mc_group);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700263
264static void genl_unregister_mc_groups(struct genl_family *family)
265{
266 struct genl_multicast_group *grp, *tmp;
267
268 list_for_each_entry_safe(grp, tmp, &family->mcast_groups, list)
Thomas Graf79dc43862007-07-24 15:32:46 -0700269 __genl_unregister_mc_group(family, grp);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700270}
271
Thomas Graf482a8522005-11-10 02:25:56 +0100272/**
273 * genl_register_ops - register generic netlink operations
274 * @family: generic netlink family
275 * @ops: operations to be registered
276 *
277 * Registers the specified operations and assigns them to the specified
278 * family. Either a doit or dumpit callback must be specified or the
279 * operation will fail. Only one operation structure per command
280 * identifier may be registered.
281 *
282 * See include/net/genetlink.h for more documenation on the operations
283 * structure.
284 *
285 * Returns 0 on success or a negative error code.
286 */
287int genl_register_ops(struct genl_family *family, struct genl_ops *ops)
288{
289 int err = -EINVAL;
290
291 if (ops->dumpit == NULL && ops->doit == NULL)
292 goto errout;
293
294 if (genl_get_cmd(ops->cmd, family)) {
295 err = -EEXIST;
296 goto errout;
297 }
298
Jamal Hadi Salim334c29a2006-12-04 19:31:51 -0800299 if (ops->dumpit)
Jamal Hadi Salim334c29a2006-12-04 19:31:51 -0800300 ops->flags |= GENL_CMD_CAP_DUMP;
Jamal Hadi Salim48d4ed72006-12-06 20:06:25 -0800301 if (ops->doit)
302 ops->flags |= GENL_CMD_CAP_DO;
Jamal Hadi Salim334c29a2006-12-04 19:31:51 -0800303 if (ops->policy)
304 ops->flags |= GENL_CMD_CAP_HASPOL;
305
Thomas Graf482a8522005-11-10 02:25:56 +0100306 genl_lock();
307 list_add_tail(&ops->ops_list, &family->ops_list);
308 genl_unlock();
309
310 genl_ctrl_event(CTRL_CMD_NEWOPS, ops);
311 err = 0;
312errout:
313 return err;
314}
Changli Gao416c2f92010-07-25 20:46:01 +0000315EXPORT_SYMBOL(genl_register_ops);
Thomas Graf482a8522005-11-10 02:25:56 +0100316
317/**
318 * genl_unregister_ops - unregister generic netlink operations
319 * @family: generic netlink family
320 * @ops: operations to be unregistered
321 *
322 * Unregisters the specified operations and unassigns them from the
323 * specified family. The operation blocks until the current message
324 * processing has finished and doesn't start again until the
325 * unregister process has finished.
326 *
327 * Note: It is not necessary to unregister all operations before
328 * unregistering the family, unregistering the family will cause
329 * all assigned operations to be unregistered automatically.
330 *
331 * Returns 0 on success or a negative error code.
332 */
333int genl_unregister_ops(struct genl_family *family, struct genl_ops *ops)
334{
335 struct genl_ops *rc;
336
337 genl_lock();
338 list_for_each_entry(rc, &family->ops_list, ops_list) {
339 if (rc == ops) {
340 list_del(&ops->ops_list);
341 genl_unlock();
342 genl_ctrl_event(CTRL_CMD_DELOPS, ops);
343 return 0;
344 }
345 }
346 genl_unlock();
347
348 return -ENOENT;
349}
Changli Gao416c2f92010-07-25 20:46:01 +0000350EXPORT_SYMBOL(genl_unregister_ops);
Thomas Graf482a8522005-11-10 02:25:56 +0100351
352/**
353 * genl_register_family - register a generic netlink family
354 * @family: generic netlink family
355 *
356 * Registers the specified family after validating it first. Only one
357 * family may be registered with the same family name or identifier.
358 * The family id may equal GENL_ID_GENERATE causing an unique id to
359 * be automatically generated and assigned.
360 *
361 * Return 0 on success or a negative error code.
362 */
363int genl_register_family(struct genl_family *family)
364{
365 int err = -EINVAL;
366
367 if (family->id && family->id < GENL_MIN_ID)
368 goto errout;
369
370 if (family->id > GENL_MAX_ID)
371 goto errout;
372
373 INIT_LIST_HEAD(&family->ops_list);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700374 INIT_LIST_HEAD(&family->mcast_groups);
Thomas Graf482a8522005-11-10 02:25:56 +0100375
376 genl_lock();
377
378 if (genl_family_find_byname(family->name)) {
379 err = -EEXIST;
380 goto errout_locked;
381 }
382
Thomas Graf482a8522005-11-10 02:25:56 +0100383 if (family->id == GENL_ID_GENERATE) {
384 u16 newid = genl_generate_id();
385
386 if (!newid) {
387 err = -ENOMEM;
388 goto errout_locked;
389 }
390
391 family->id = newid;
Krishna Kumar93860b02009-10-14 19:54:53 +0000392 } else if (genl_family_find_byid(family->id)) {
393 err = -EEXIST;
394 goto errout_locked;
Thomas Graf482a8522005-11-10 02:25:56 +0100395 }
396
397 if (family->maxattr) {
398 family->attrbuf = kmalloc((family->maxattr+1) *
399 sizeof(struct nlattr *), GFP_KERNEL);
400 if (family->attrbuf == NULL) {
401 err = -ENOMEM;
Jamal Hadi Salime200bd82006-02-13 15:51:24 -0800402 goto errout_locked;
Thomas Graf482a8522005-11-10 02:25:56 +0100403 }
404 } else
405 family->attrbuf = NULL;
406
407 list_add_tail(&family->family_list, genl_family_chain(family->id));
408 genl_unlock();
409
410 genl_ctrl_event(CTRL_CMD_NEWFAMILY, family);
411
412 return 0;
413
414errout_locked:
415 genl_unlock();
416errout:
417 return err;
418}
Changli Gao416c2f92010-07-25 20:46:01 +0000419EXPORT_SYMBOL(genl_register_family);
Thomas Graf482a8522005-11-10 02:25:56 +0100420
421/**
Michał Mirosława7b11d72009-05-21 10:34:04 +0000422 * genl_register_family_with_ops - register a generic netlink family
423 * @family: generic netlink family
424 * @ops: operations to be registered
425 * @n_ops: number of elements to register
426 *
427 * Registers the specified family and operations from the specified table.
428 * Only one family may be registered with the same family name or identifier.
429 *
430 * The family id may equal GENL_ID_GENERATE causing an unique id to
431 * be automatically generated and assigned.
432 *
433 * Either a doit or dumpit callback must be specified for every registered
434 * operation or the function will fail. Only one operation structure per
435 * command identifier may be registered.
436 *
437 * See include/net/genetlink.h for more documenation on the operations
438 * structure.
439 *
440 * This is equivalent to calling genl_register_family() followed by
441 * genl_register_ops() for every operation entry in the table taking
442 * care to unregister the family on error path.
443 *
444 * Return 0 on success or a negative error code.
445 */
446int genl_register_family_with_ops(struct genl_family *family,
447 struct genl_ops *ops, size_t n_ops)
448{
449 int err, i;
450
451 err = genl_register_family(family);
452 if (err)
453 return err;
454
455 for (i = 0; i < n_ops; ++i, ++ops) {
456 err = genl_register_ops(family, ops);
457 if (err)
458 goto err_out;
459 }
460 return 0;
461err_out:
462 genl_unregister_family(family);
463 return err;
464}
465EXPORT_SYMBOL(genl_register_family_with_ops);
466
467/**
Thomas Graf482a8522005-11-10 02:25:56 +0100468 * genl_unregister_family - unregister generic netlink family
469 * @family: generic netlink family
470 *
471 * Unregisters the specified family.
472 *
473 * Returns 0 on success or a negative error code.
474 */
475int genl_unregister_family(struct genl_family *family)
476{
477 struct genl_family *rc;
478
479 genl_lock();
480
Pavel Emelyanov910d6c32008-02-12 22:16:33 -0800481 genl_unregister_mc_groups(family);
482
Thomas Graf482a8522005-11-10 02:25:56 +0100483 list_for_each_entry(rc, genl_family_chain(family->id), family_list) {
484 if (family->id != rc->id || strcmp(rc->name, family->name))
485 continue;
486
487 list_del(&rc->family_list);
488 INIT_LIST_HEAD(&family->ops_list);
489 genl_unlock();
490
Thomas Graf482a8522005-11-10 02:25:56 +0100491 kfree(family->attrbuf);
492 genl_ctrl_event(CTRL_CMD_DELFAMILY, family);
493 return 0;
494 }
495
496 genl_unlock();
497
498 return -ENOENT;
499}
Changli Gao416c2f92010-07-25 20:46:01 +0000500EXPORT_SYMBOL(genl_unregister_family);
Thomas Graf482a8522005-11-10 02:25:56 +0100501
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500502/**
503 * genlmsg_put - Add generic netlink header to netlink message
504 * @skb: socket buffer holding the message
Eric W. Biederman15e47302012-09-07 20:12:54 +0000505 * @portid: netlink portid the message is addressed to
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500506 * @seq: sequence number (usually the one of the sender)
507 * @family: generic netlink family
Ben Hutchings2c530402012-07-10 10:55:09 +0000508 * @flags: netlink message flags
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500509 * @cmd: generic netlink command
510 *
511 * Returns pointer to user specific header
512 */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000513void *genlmsg_put(struct sk_buff *skb, u32 portid, u32 seq,
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500514 struct genl_family *family, int flags, u8 cmd)
515{
516 struct nlmsghdr *nlh;
517 struct genlmsghdr *hdr;
518
Eric W. Biederman15e47302012-09-07 20:12:54 +0000519 nlh = nlmsg_put(skb, portid, seq, family->id, GENL_HDRLEN +
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500520 family->hdrsize, flags);
521 if (nlh == NULL)
522 return NULL;
523
524 hdr = nlmsg_data(nlh);
525 hdr->cmd = cmd;
526 hdr->version = family->version;
527 hdr->reserved = 0;
528
529 return (char *) hdr + GENL_HDRLEN;
530}
531EXPORT_SYMBOL(genlmsg_put);
532
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700533static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Thomas Graf482a8522005-11-10 02:25:56 +0100534{
535 struct genl_ops *ops;
536 struct genl_family *family;
Johannes Berg134e6372009-07-10 09:51:34 +0000537 struct net *net = sock_net(skb->sk);
Thomas Graf482a8522005-11-10 02:25:56 +0100538 struct genl_info info;
539 struct genlmsghdr *hdr = nlmsg_data(nlh);
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700540 int hdrlen, err;
Thomas Graf482a8522005-11-10 02:25:56 +0100541
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900542 family = genl_family_find_byid(nlh->nlmsg_type);
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700543 if (family == NULL)
544 return -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100545
Johannes Berg134e6372009-07-10 09:51:34 +0000546 /* this family doesn't exist in this netns */
547 if (!family->netnsok && !net_eq(net, &init_net))
548 return -ENOENT;
549
Thomas Graf482a8522005-11-10 02:25:56 +0100550 hdrlen = GENL_HDRLEN + family->hdrsize;
551 if (nlh->nlmsg_len < nlmsg_msg_size(hdrlen))
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700552 return -EINVAL;
Thomas Graf482a8522005-11-10 02:25:56 +0100553
554 ops = genl_get_cmd(hdr->cmd, family);
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700555 if (ops == NULL)
556 return -EOPNOTSUPP;
Thomas Graf482a8522005-11-10 02:25:56 +0100557
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700558 if ((ops->flags & GENL_ADMIN_PERM) &&
Eric Parisfd778462012-01-03 12:25:16 -0500559 !capable(CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700560 return -EPERM;
Thomas Graf482a8522005-11-10 02:25:56 +0100561
David S. Millerb8f3ab42011-01-18 12:40:38 -0800562 if (nlh->nlmsg_flags & NLM_F_DUMP) {
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700563 if (ops->dumpit == NULL)
564 return -EOPNOTSUPP;
Thomas Graf482a8522005-11-10 02:25:56 +0100565
Patrick McHardy6d1a3fb2008-06-18 02:07:07 -0700566 genl_unlock();
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000567 {
568 struct netlink_dump_control c = {
569 .dump = ops->dumpit,
570 .done = ops->done,
571 };
572 err = netlink_dump_start(net->genl_sock, skb, nlh, &c);
573 }
Patrick McHardy6d1a3fb2008-06-18 02:07:07 -0700574 genl_lock();
575 return err;
Thomas Graf482a8522005-11-10 02:25:56 +0100576 }
577
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700578 if (ops->doit == NULL)
579 return -EOPNOTSUPP;
Thomas Graf482a8522005-11-10 02:25:56 +0100580
581 if (family->attrbuf) {
582 err = nlmsg_parse(nlh, hdrlen, family->attrbuf, family->maxattr,
583 ops->policy);
584 if (err < 0)
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700585 return err;
Thomas Graf482a8522005-11-10 02:25:56 +0100586 }
587
588 info.snd_seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000589 info.snd_portid = NETLINK_CB(skb).portid;
Thomas Graf482a8522005-11-10 02:25:56 +0100590 info.nlhdr = nlh;
591 info.genlhdr = nlmsg_data(nlh);
592 info.userhdr = nlmsg_data(nlh) + GENL_HDRLEN;
593 info.attrs = family->attrbuf;
Johannes Berg134e6372009-07-10 09:51:34 +0000594 genl_info_net_set(&info, net);
Johannes Bergff4c92d2010-10-04 21:14:03 +0200595 memset(&info.user_ptr, 0, sizeof(info.user_ptr));
Thomas Graf482a8522005-11-10 02:25:56 +0100596
Johannes Bergff4c92d2010-10-04 21:14:03 +0200597 if (family->pre_doit) {
598 err = family->pre_doit(ops, skb, &info);
599 if (err)
600 return err;
601 }
602
603 err = ops->doit(skb, &info);
604
605 if (family->post_doit)
606 family->post_doit(ops, skb, &info);
607
608 return err;
Thomas Graf482a8522005-11-10 02:25:56 +0100609}
610
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700611static void genl_rcv(struct sk_buff *skb)
Thomas Graf482a8522005-11-10 02:25:56 +0100612{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700613 genl_lock();
614 netlink_rcv_skb(skb, &genl_rcv_msg);
615 genl_unlock();
Thomas Graf482a8522005-11-10 02:25:56 +0100616}
617
618/**************************************************************************
619 * Controller
620 **************************************************************************/
621
Thomas Graf17c157c2006-11-14 19:46:02 -0800622static struct genl_family genl_ctrl = {
623 .id = GENL_ID_CTRL,
624 .name = "nlctrl",
Jamal Hadi Salim334c29a2006-12-04 19:31:51 -0800625 .version = 0x2,
Thomas Graf17c157c2006-11-14 19:46:02 -0800626 .maxattr = CTRL_ATTR_MAX,
Johannes Berg134e6372009-07-10 09:51:34 +0000627 .netnsok = true,
Thomas Graf17c157c2006-11-14 19:46:02 -0800628};
629
Eric W. Biederman15e47302012-09-07 20:12:54 +0000630static int ctrl_fill_info(struct genl_family *family, u32 portid, u32 seq,
Thomas Graf482a8522005-11-10 02:25:56 +0100631 u32 flags, struct sk_buff *skb, u8 cmd)
632{
633 void *hdr;
634
Eric W. Biederman15e47302012-09-07 20:12:54 +0000635 hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd);
Thomas Graf482a8522005-11-10 02:25:56 +0100636 if (hdr == NULL)
637 return -1;
638
David S. Miller444653f2012-03-29 23:25:11 -0400639 if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, family->name) ||
640 nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, family->id) ||
641 nla_put_u32(skb, CTRL_ATTR_VERSION, family->version) ||
642 nla_put_u32(skb, CTRL_ATTR_HDRSIZE, family->hdrsize) ||
643 nla_put_u32(skb, CTRL_ATTR_MAXATTR, family->maxattr))
644 goto nla_put_failure;
Thomas Grafeb328112006-09-18 00:01:59 -0700645
Thomas Grafe94ef682006-11-23 11:44:37 -0800646 if (!list_empty(&family->ops_list)) {
647 struct nlattr *nla_ops;
648 struct genl_ops *ops;
649 int idx = 1;
Thomas Grafeb328112006-09-18 00:01:59 -0700650
Thomas Grafe94ef682006-11-23 11:44:37 -0800651 nla_ops = nla_nest_start(skb, CTRL_ATTR_OPS);
652 if (nla_ops == NULL)
Thomas Grafeb328112006-09-18 00:01:59 -0700653 goto nla_put_failure;
654
Thomas Grafe94ef682006-11-23 11:44:37 -0800655 list_for_each_entry(ops, &family->ops_list, ops_list) {
656 struct nlattr *nest;
Thomas Grafeb328112006-09-18 00:01:59 -0700657
Thomas Grafe94ef682006-11-23 11:44:37 -0800658 nest = nla_nest_start(skb, idx++);
659 if (nest == NULL)
660 goto nla_put_failure;
Thomas Grafeb328112006-09-18 00:01:59 -0700661
David S. Miller444653f2012-03-29 23:25:11 -0400662 if (nla_put_u32(skb, CTRL_ATTR_OP_ID, ops->cmd) ||
663 nla_put_u32(skb, CTRL_ATTR_OP_FLAGS, ops->flags))
664 goto nla_put_failure;
Thomas Grafeb328112006-09-18 00:01:59 -0700665
Thomas Grafe94ef682006-11-23 11:44:37 -0800666 nla_nest_end(skb, nest);
667 }
668
669 nla_nest_end(skb, nla_ops);
Thomas Grafeb328112006-09-18 00:01:59 -0700670 }
671
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700672 if (!list_empty(&family->mcast_groups)) {
673 struct genl_multicast_group *grp;
674 struct nlattr *nla_grps;
675 int idx = 1;
676
677 nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS);
678 if (nla_grps == NULL)
679 goto nla_put_failure;
680
681 list_for_each_entry(grp, &family->mcast_groups, list) {
682 struct nlattr *nest;
683
684 nest = nla_nest_start(skb, idx++);
685 if (nest == NULL)
686 goto nla_put_failure;
687
David S. Miller444653f2012-03-29 23:25:11 -0400688 if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID, grp->id) ||
689 nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME,
690 grp->name))
691 goto nla_put_failure;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700692
693 nla_nest_end(skb, nest);
694 }
695 nla_nest_end(skb, nla_grps);
696 }
697
698 return genlmsg_end(skb, hdr);
699
700nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700701 genlmsg_cancel(skb, hdr);
702 return -EMSGSIZE;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700703}
704
Eric W. Biederman15e47302012-09-07 20:12:54 +0000705static int ctrl_fill_mcgrp_info(struct genl_multicast_group *grp, u32 portid,
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700706 u32 seq, u32 flags, struct sk_buff *skb,
707 u8 cmd)
708{
709 void *hdr;
710 struct nlattr *nla_grps;
711 struct nlattr *nest;
712
Eric W. Biederman15e47302012-09-07 20:12:54 +0000713 hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700714 if (hdr == NULL)
715 return -1;
716
David S. Miller444653f2012-03-29 23:25:11 -0400717 if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, grp->family->name) ||
718 nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, grp->family->id))
719 goto nla_put_failure;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700720
721 nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS);
722 if (nla_grps == NULL)
723 goto nla_put_failure;
724
725 nest = nla_nest_start(skb, 1);
726 if (nest == NULL)
727 goto nla_put_failure;
728
David S. Miller444653f2012-03-29 23:25:11 -0400729 if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID, grp->id) ||
730 nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME,
731 grp->name))
732 goto nla_put_failure;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700733
734 nla_nest_end(skb, nest);
735 nla_nest_end(skb, nla_grps);
736
Thomas Graf482a8522005-11-10 02:25:56 +0100737 return genlmsg_end(skb, hdr);
738
739nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700740 genlmsg_cancel(skb, hdr);
741 return -EMSGSIZE;
Thomas Graf482a8522005-11-10 02:25:56 +0100742}
743
744static int ctrl_dumpfamily(struct sk_buff *skb, struct netlink_callback *cb)
745{
746
747 int i, n = 0;
748 struct genl_family *rt;
Johannes Berg134e6372009-07-10 09:51:34 +0000749 struct net *net = sock_net(skb->sk);
Thomas Graf482a8522005-11-10 02:25:56 +0100750 int chains_to_skip = cb->args[0];
751 int fams_to_skip = cb->args[1];
752
Samir Bellabese1d5a012010-01-07 22:10:56 +0000753 for (i = chains_to_skip; i < GENL_FAM_TAB_SIZE; i++) {
Thomas Graf482a8522005-11-10 02:25:56 +0100754 n = 0;
755 list_for_each_entry(rt, genl_family_chain(i), family_list) {
Johannes Berg134e6372009-07-10 09:51:34 +0000756 if (!rt->netnsok && !net_eq(net, &init_net))
757 continue;
Thomas Graf482a8522005-11-10 02:25:56 +0100758 if (++n < fams_to_skip)
759 continue;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000760 if (ctrl_fill_info(rt, NETLINK_CB(cb->skb).portid,
Thomas Graf482a8522005-11-10 02:25:56 +0100761 cb->nlh->nlmsg_seq, NLM_F_MULTI,
762 skb, CTRL_CMD_NEWFAMILY) < 0)
763 goto errout;
764 }
765
766 fams_to_skip = 0;
767 }
768
769errout:
770 cb->args[0] = i;
771 cb->args[1] = n;
772
773 return skb->len;
774}
775
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700776static struct sk_buff *ctrl_build_family_msg(struct genl_family *family,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000777 u32 portid, int seq, u8 cmd)
Thomas Graf482a8522005-11-10 02:25:56 +0100778{
779 struct sk_buff *skb;
780 int err;
781
Thomas Graf339bf982006-11-10 14:10:15 -0800782 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Thomas Graf482a8522005-11-10 02:25:56 +0100783 if (skb == NULL)
784 return ERR_PTR(-ENOBUFS);
785
Eric W. Biederman15e47302012-09-07 20:12:54 +0000786 err = ctrl_fill_info(family, portid, seq, 0, skb, cmd);
Thomas Graf482a8522005-11-10 02:25:56 +0100787 if (err < 0) {
788 nlmsg_free(skb);
789 return ERR_PTR(err);
790 }
791
792 return skb;
793}
794
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700795static struct sk_buff *ctrl_build_mcgrp_msg(struct genl_multicast_group *grp,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000796 u32 portid, int seq, u8 cmd)
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700797{
798 struct sk_buff *skb;
799 int err;
800
801 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
802 if (skb == NULL)
803 return ERR_PTR(-ENOBUFS);
804
Eric W. Biederman15e47302012-09-07 20:12:54 +0000805 err = ctrl_fill_mcgrp_info(grp, portid, seq, 0, skb, cmd);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700806 if (err < 0) {
807 nlmsg_free(skb);
808 return ERR_PTR(err);
809 }
810
811 return skb;
812}
813
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700814static const struct nla_policy ctrl_policy[CTRL_ATTR_MAX+1] = {
Thomas Graf482a8522005-11-10 02:25:56 +0100815 [CTRL_ATTR_FAMILY_ID] = { .type = NLA_U16 },
Thomas Graf5176f912006-08-26 20:13:18 -0700816 [CTRL_ATTR_FAMILY_NAME] = { .type = NLA_NUL_STRING,
817 .len = GENL_NAMSIZ - 1 },
Thomas Graf482a8522005-11-10 02:25:56 +0100818};
819
820static int ctrl_getfamily(struct sk_buff *skb, struct genl_info *info)
821{
822 struct sk_buff *msg;
823 struct genl_family *res = NULL;
824 int err = -EINVAL;
825
826 if (info->attrs[CTRL_ATTR_FAMILY_ID]) {
827 u16 id = nla_get_u16(info->attrs[CTRL_ATTR_FAMILY_ID]);
828 res = genl_family_find_byid(id);
Johannes Berg134e6372009-07-10 09:51:34 +0000829 err = -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100830 }
831
832 if (info->attrs[CTRL_ATTR_FAMILY_NAME]) {
Thomas Graf5176f912006-08-26 20:13:18 -0700833 char *name;
Thomas Graf482a8522005-11-10 02:25:56 +0100834
Thomas Graf5176f912006-08-26 20:13:18 -0700835 name = nla_data(info->attrs[CTRL_ATTR_FAMILY_NAME]);
Thomas Graf482a8522005-11-10 02:25:56 +0100836 res = genl_family_find_byname(name);
Stephen Hemmingerfa843092011-12-28 13:48:55 -0500837#ifdef CONFIG_MODULES
838 if (res == NULL) {
839 genl_unlock();
Neil Hormane9412c32012-05-29 09:30:41 +0000840 request_module("net-pf-%d-proto-%d-family-%s",
Stephen Hemmingerfa843092011-12-28 13:48:55 -0500841 PF_NETLINK, NETLINK_GENERIC, name);
842 genl_lock();
843 res = genl_family_find_byname(name);
844 }
845#endif
Johannes Berg134e6372009-07-10 09:51:34 +0000846 err = -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100847 }
848
Johannes Berg134e6372009-07-10 09:51:34 +0000849 if (res == NULL)
850 return err;
851
852 if (!res->netnsok && !net_eq(genl_info_net(info), &init_net)) {
853 /* family doesn't exist here */
854 return -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100855 }
856
Eric W. Biederman15e47302012-09-07 20:12:54 +0000857 msg = ctrl_build_family_msg(res, info->snd_portid, info->snd_seq,
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700858 CTRL_CMD_NEWFAMILY);
Johannes Berg134e6372009-07-10 09:51:34 +0000859 if (IS_ERR(msg))
860 return PTR_ERR(msg);
Thomas Graf482a8522005-11-10 02:25:56 +0100861
Johannes Berg134e6372009-07-10 09:51:34 +0000862 return genlmsg_reply(msg, info);
Thomas Graf482a8522005-11-10 02:25:56 +0100863}
864
865static int genl_ctrl_event(int event, void *data)
866{
867 struct sk_buff *msg;
Johannes Berg134e6372009-07-10 09:51:34 +0000868 struct genl_family *family;
869 struct genl_multicast_group *grp;
Thomas Graf482a8522005-11-10 02:25:56 +0100870
Johannes Berg134e6372009-07-10 09:51:34 +0000871 /* genl is still initialising */
872 if (!init_net.genl_sock)
Thomas Graf482a8522005-11-10 02:25:56 +0100873 return 0;
874
875 switch (event) {
876 case CTRL_CMD_NEWFAMILY:
877 case CTRL_CMD_DELFAMILY:
Johannes Berg134e6372009-07-10 09:51:34 +0000878 family = data;
879 msg = ctrl_build_family_msg(family, 0, 0, event);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700880 break;
881 case CTRL_CMD_NEWMCAST_GRP:
882 case CTRL_CMD_DELMCAST_GRP:
Johannes Berg134e6372009-07-10 09:51:34 +0000883 grp = data;
884 family = grp->family;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700885 msg = ctrl_build_mcgrp_msg(data, 0, 0, event);
Thomas Graf482a8522005-11-10 02:25:56 +0100886 break;
Johannes Berg134e6372009-07-10 09:51:34 +0000887 default:
888 return -EINVAL;
889 }
890
891 if (IS_ERR(msg))
892 return PTR_ERR(msg);
893
894 if (!family->netnsok) {
895 genlmsg_multicast_netns(&init_net, msg, 0,
896 GENL_ID_CTRL, GFP_KERNEL);
897 } else {
898 rcu_read_lock();
899 genlmsg_multicast_allns(msg, 0, GENL_ID_CTRL, GFP_ATOMIC);
900 rcu_read_unlock();
Thomas Graf482a8522005-11-10 02:25:56 +0100901 }
902
903 return 0;
904}
905
906static struct genl_ops genl_ctrl_ops = {
907 .cmd = CTRL_CMD_GETFAMILY,
908 .doit = ctrl_getfamily,
909 .dumpit = ctrl_dumpfamily,
910 .policy = ctrl_policy,
911};
912
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700913static struct genl_multicast_group notify_grp = {
914 .name = "notify",
915};
916
Johannes Berg134e6372009-07-10 09:51:34 +0000917static int __net_init genl_pernet_init(struct net *net)
918{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000919 struct netlink_kernel_cfg cfg = {
920 .input = genl_rcv,
921 .cb_mutex = &genl_mutex,
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +0000922 .flags = NL_CFG_F_NONROOT_RECV,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000923 };
924
Johannes Berg134e6372009-07-10 09:51:34 +0000925 /* we'll bump the group number right afterwards */
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000926 net->genl_sock = netlink_kernel_create(net, NETLINK_GENERIC, &cfg);
Johannes Berg134e6372009-07-10 09:51:34 +0000927
928 if (!net->genl_sock && net_eq(net, &init_net))
929 panic("GENL: Cannot initialize generic netlink\n");
930
931 if (!net->genl_sock)
932 return -ENOMEM;
933
934 return 0;
935}
936
937static void __net_exit genl_pernet_exit(struct net *net)
938{
939 netlink_kernel_release(net->genl_sock);
940 net->genl_sock = NULL;
941}
942
943static struct pernet_operations genl_pernet_ops = {
944 .init = genl_pernet_init,
945 .exit = genl_pernet_exit,
946};
947
Thomas Graf482a8522005-11-10 02:25:56 +0100948static int __init genl_init(void)
949{
950 int i, err;
951
952 for (i = 0; i < GENL_FAM_TAB_SIZE; i++)
953 INIT_LIST_HEAD(&family_ht[i]);
954
Changli Gao652c6712010-07-25 23:21:05 +0000955 err = genl_register_family_with_ops(&genl_ctrl, &genl_ctrl_ops, 1);
Thomas Graf482a8522005-11-10 02:25:56 +0100956 if (err < 0)
Johannes Berg134e6372009-07-10 09:51:34 +0000957 goto problem;
Thomas Graf482a8522005-11-10 02:25:56 +0100958
Johannes Berg134e6372009-07-10 09:51:34 +0000959 err = register_pernet_subsys(&genl_pernet_ops);
960 if (err)
961 goto problem;
Thomas Graf482a8522005-11-10 02:25:56 +0100962
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700963 err = genl_register_mc_group(&genl_ctrl, &notify_grp);
964 if (err < 0)
Johannes Berg134e6372009-07-10 09:51:34 +0000965 goto problem;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700966
Thomas Graf482a8522005-11-10 02:25:56 +0100967 return 0;
968
Johannes Berg134e6372009-07-10 09:51:34 +0000969problem:
Thomas Graf482a8522005-11-10 02:25:56 +0100970 panic("GENL: Cannot register controller: %d\n", err);
Thomas Graf482a8522005-11-10 02:25:56 +0100971}
972
973subsys_initcall(genl_init);
974
Eric W. Biederman15e47302012-09-07 20:12:54 +0000975static int genlmsg_mcast(struct sk_buff *skb, u32 portid, unsigned long group,
Johannes Berg134e6372009-07-10 09:51:34 +0000976 gfp_t flags)
977{
978 struct sk_buff *tmp;
979 struct net *net, *prev = NULL;
980 int err;
981
982 for_each_net_rcu(net) {
983 if (prev) {
984 tmp = skb_clone(skb, flags);
985 if (!tmp) {
986 err = -ENOMEM;
987 goto error;
988 }
989 err = nlmsg_multicast(prev->genl_sock, tmp,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000990 portid, group, flags);
Johannes Berg134e6372009-07-10 09:51:34 +0000991 if (err)
992 goto error;
993 }
994
995 prev = net;
996 }
997
Eric W. Biederman15e47302012-09-07 20:12:54 +0000998 return nlmsg_multicast(prev->genl_sock, skb, portid, group, flags);
Johannes Berg134e6372009-07-10 09:51:34 +0000999 error:
1000 kfree_skb(skb);
1001 return err;
1002}
1003
Eric W. Biederman15e47302012-09-07 20:12:54 +00001004int genlmsg_multicast_allns(struct sk_buff *skb, u32 portid, unsigned int group,
Johannes Berg134e6372009-07-10 09:51:34 +00001005 gfp_t flags)
1006{
Eric W. Biederman15e47302012-09-07 20:12:54 +00001007 return genlmsg_mcast(skb, portid, group, flags);
Johannes Berg134e6372009-07-10 09:51:34 +00001008}
1009EXPORT_SYMBOL(genlmsg_multicast_allns);
Pravin B Shelar263ba612011-11-10 19:14:37 -08001010
Eric W. Biederman15e47302012-09-07 20:12:54 +00001011void genl_notify(struct sk_buff *skb, struct net *net, u32 portid, u32 group,
Pravin B Shelar263ba612011-11-10 19:14:37 -08001012 struct nlmsghdr *nlh, gfp_t flags)
1013{
1014 struct sock *sk = net->genl_sock;
1015 int report = 0;
1016
1017 if (nlh)
1018 report = nlmsg_report(nlh);
1019
Eric W. Biederman15e47302012-09-07 20:12:54 +00001020 nlmsg_notify(sk, skb, portid, group, report, flags);
Pravin B Shelar263ba612011-11-10 19:14:37 -08001021}
1022EXPORT_SYMBOL(genl_notify);