blob: f07eb568a1db80e1811dfbf067bf0393426c6343 [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>
Thomas Graf482a8522005-11-10 02:25:56 +010020#include <net/sock.h>
21#include <net/genetlink.h>
22
Ingo Molnar14cc3e22006-03-26 01:37:14 -080023static DEFINE_MUTEX(genl_mutex); /* serialization of message processing */
Pravin B Shelardef31172013-04-23 07:48:30 +000024static DECLARE_RWSEM(cb_lock);
Thomas Graf482a8522005-11-10 02:25:56 +010025
James Chapmanf408e0c2010-04-02 06:19:05 +000026void genl_lock(void)
Thomas Graf482a8522005-11-10 02:25:56 +010027{
Ingo Molnar14cc3e22006-03-26 01:37:14 -080028 mutex_lock(&genl_mutex);
Thomas Graf482a8522005-11-10 02:25:56 +010029}
James Chapmanf408e0c2010-04-02 06:19:05 +000030EXPORT_SYMBOL(genl_lock);
Thomas Graf482a8522005-11-10 02:25:56 +010031
James Chapmanf408e0c2010-04-02 06:19:05 +000032void genl_unlock(void)
Thomas Graf482a8522005-11-10 02:25:56 +010033{
Ingo Molnar14cc3e22006-03-26 01:37:14 -080034 mutex_unlock(&genl_mutex);
Thomas Graf482a8522005-11-10 02:25:56 +010035}
James Chapmanf408e0c2010-04-02 06:19:05 +000036EXPORT_SYMBOL(genl_unlock);
Thomas Graf482a8522005-11-10 02:25:56 +010037
WANG Cong320f5ea2012-07-24 13:44:01 +080038#ifdef CONFIG_LOCKDEP
Pravin B Shelar86b13092011-11-10 19:14:51 -080039int lockdep_genl_is_held(void)
40{
41 return lockdep_is_held(&genl_mutex);
42}
43EXPORT_SYMBOL(lockdep_genl_is_held);
44#endif
45
Pravin B Shelardef31172013-04-23 07:48:30 +000046static void genl_lock_all(void)
47{
48 down_write(&cb_lock);
49 genl_lock();
50}
51
52static void genl_unlock_all(void)
53{
54 genl_unlock();
55 up_write(&cb_lock);
56}
57
Thomas Graf482a8522005-11-10 02:25:56 +010058#define GENL_FAM_TAB_SIZE 16
59#define GENL_FAM_TAB_MASK (GENL_FAM_TAB_SIZE - 1)
60
61static struct list_head family_ht[GENL_FAM_TAB_SIZE];
Johannes Berg2dbba6f2007-07-18 15:47:52 -070062/*
63 * Bitmap of multicast groups that are currently in use.
64 *
65 * To avoid an allocation at boot of just one unsigned long,
66 * declare it global instead.
67 * Bit 0 is marked as already used since group 0 is invalid.
68 */
69static unsigned long mc_group_start = 0x1;
70static unsigned long *mc_groups = &mc_group_start;
71static unsigned long mc_groups_longs = 1;
Thomas Graf482a8522005-11-10 02:25:56 +010072
73static int genl_ctrl_event(int event, void *data);
74
75static inline unsigned int genl_family_hash(unsigned int id)
76{
77 return id & GENL_FAM_TAB_MASK;
78}
79
80static inline struct list_head *genl_family_chain(unsigned int id)
81{
82 return &family_ht[genl_family_hash(id)];
83}
84
85static struct genl_family *genl_family_find_byid(unsigned int id)
86{
87 struct genl_family *f;
88
89 list_for_each_entry(f, genl_family_chain(id), family_list)
90 if (f->id == id)
91 return f;
92
93 return NULL;
94}
95
96static struct genl_family *genl_family_find_byname(char *name)
97{
98 struct genl_family *f;
99 int i;
100
101 for (i = 0; i < GENL_FAM_TAB_SIZE; i++)
102 list_for_each_entry(f, genl_family_chain(i), family_list)
103 if (strcmp(f->name, name) == 0)
104 return f;
105
106 return NULL;
107}
108
Johannes Bergf84f7712013-11-14 17:14:45 +0100109static const struct genl_ops *genl_get_cmd(u8 cmd, struct genl_family *family)
Thomas Graf482a8522005-11-10 02:25:56 +0100110{
Johannes Bergd91824c2013-11-14 17:14:44 +0100111 int i;
Thomas Graf482a8522005-11-10 02:25:56 +0100112
Johannes Bergd91824c2013-11-14 17:14:44 +0100113 for (i = 0; i < family->n_ops; i++)
114 if (family->ops[i].cmd == cmd)
115 return &family->ops[i];
Thomas Graf482a8522005-11-10 02:25:56 +0100116
117 return NULL;
118}
119
120/* Of course we are going to have problems once we hit
121 * 2^16 alive types, but that can only happen by year 2K
122*/
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000123static u16 genl_generate_id(void)
Thomas Graf482a8522005-11-10 02:25:56 +0100124{
Krishna Kumar988ade62009-10-14 19:55:07 +0000125 static u16 id_gen_idx = GENL_MIN_ID;
126 int i;
Thomas Graf482a8522005-11-10 02:25:56 +0100127
Krishna Kumar988ade62009-10-14 19:55:07 +0000128 for (i = 0; i <= GENL_MAX_ID - GENL_MIN_ID; i++) {
129 if (!genl_family_find_byid(id_gen_idx))
130 return id_gen_idx;
131 if (++id_gen_idx > GENL_MAX_ID)
Thomas Graf482a8522005-11-10 02:25:56 +0100132 id_gen_idx = GENL_MIN_ID;
Krishna Kumar988ade62009-10-14 19:55:07 +0000133 }
Thomas Graf482a8522005-11-10 02:25:56 +0100134
Krishna Kumar988ade62009-10-14 19:55:07 +0000135 return 0;
Thomas Graf482a8522005-11-10 02:25:56 +0100136}
137
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700138static struct genl_multicast_group notify_grp;
139
140/**
141 * genl_register_mc_group - register a multicast group
142 *
143 * Registers the specified multicast group and notifies userspace
144 * about the new group.
145 *
146 * Returns 0 on success or a negative error code.
147 *
148 * @family: The generic netlink family the group shall be registered for.
149 * @grp: The group to register, must have a name.
150 */
151int genl_register_mc_group(struct genl_family *family,
152 struct genl_multicast_group *grp)
153{
154 int id;
155 unsigned long *new_groups;
Brian Haleyb1f57192009-09-04 20:36:52 -0700156 int err = 0;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700157
158 BUG_ON(grp->name[0] == '\0');
Masatake YAMATOf1e79e22013-03-19 01:47:27 +0000159 BUG_ON(memchr(grp->name, '\0', GENL_NAMSIZ) == NULL);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700160
Pravin B Shelardef31172013-04-23 07:48:30 +0000161 genl_lock_all();
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700162
163 /* special-case our own group */
164 if (grp == &notify_grp)
165 id = GENL_ID_CTRL;
166 else
167 id = find_first_zero_bit(mc_groups,
168 mc_groups_longs * BITS_PER_LONG);
169
170
171 if (id >= mc_groups_longs * BITS_PER_LONG) {
172 size_t nlen = (mc_groups_longs + 1) * sizeof(unsigned long);
173
174 if (mc_groups == &mc_group_start) {
175 new_groups = kzalloc(nlen, GFP_KERNEL);
176 if (!new_groups) {
177 err = -ENOMEM;
178 goto out;
179 }
180 mc_groups = new_groups;
181 *mc_groups = mc_group_start;
182 } else {
183 new_groups = krealloc(mc_groups, nlen, GFP_KERNEL);
184 if (!new_groups) {
185 err = -ENOMEM;
186 goto out;
187 }
188 mc_groups = new_groups;
189 mc_groups[mc_groups_longs] = 0;
190 }
191 mc_groups_longs++;
192 }
193
Johannes Berg134e6372009-07-10 09:51:34 +0000194 if (family->netnsok) {
195 struct net *net;
196
Johannes Bergd136f1b2009-09-12 03:03:15 +0000197 netlink_table_grab();
Johannes Berg134e6372009-07-10 09:51:34 +0000198 rcu_read_lock();
199 for_each_net_rcu(net) {
Johannes Bergd136f1b2009-09-12 03:03:15 +0000200 err = __netlink_change_ngroups(net->genl_sock,
Johannes Berg134e6372009-07-10 09:51:34 +0000201 mc_groups_longs * BITS_PER_LONG);
202 if (err) {
203 /*
204 * No need to roll back, can only fail if
205 * memory allocation fails and then the
206 * number of _possible_ groups has been
207 * increased on some sockets which is ok.
208 */
209 rcu_read_unlock();
Johannes Bergd136f1b2009-09-12 03:03:15 +0000210 netlink_table_ungrab();
Johannes Berg134e6372009-07-10 09:51:34 +0000211 goto out;
212 }
213 }
214 rcu_read_unlock();
Johannes Bergd136f1b2009-09-12 03:03:15 +0000215 netlink_table_ungrab();
Johannes Berg134e6372009-07-10 09:51:34 +0000216 } else {
217 err = netlink_change_ngroups(init_net.genl_sock,
218 mc_groups_longs * BITS_PER_LONG);
219 if (err)
220 goto out;
221 }
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700222
223 grp->id = id;
224 set_bit(id, mc_groups);
225 list_add_tail(&grp->list, &family->mcast_groups);
226 grp->family = family;
227
228 genl_ctrl_event(CTRL_CMD_NEWMCAST_GRP, grp);
229 out:
Pravin B Shelardef31172013-04-23 07:48:30 +0000230 genl_unlock_all();
Thomas Graf79d310d2007-07-24 15:34:53 -0700231 return err;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700232}
233EXPORT_SYMBOL(genl_register_mc_group);
234
Thomas Graf79dc43862007-07-24 15:32:46 -0700235static void __genl_unregister_mc_group(struct genl_family *family,
236 struct genl_multicast_group *grp)
237{
Johannes Berg134e6372009-07-10 09:51:34 +0000238 struct net *net;
Thomas Graf79dc43862007-07-24 15:32:46 -0700239 BUG_ON(grp->family != family);
Johannes Berg134e6372009-07-10 09:51:34 +0000240
Johannes Bergb8273572009-09-24 15:44:05 -0700241 netlink_table_grab();
Johannes Berg134e6372009-07-10 09:51:34 +0000242 rcu_read_lock();
243 for_each_net_rcu(net)
Johannes Bergb8273572009-09-24 15:44:05 -0700244 __netlink_clear_multicast_users(net->genl_sock, grp->id);
Johannes Berg134e6372009-07-10 09:51:34 +0000245 rcu_read_unlock();
Johannes Bergb8273572009-09-24 15:44:05 -0700246 netlink_table_ungrab();
Johannes Berg134e6372009-07-10 09:51:34 +0000247
Thomas Graf79dc43862007-07-24 15:32:46 -0700248 clear_bit(grp->id, mc_groups);
249 list_del(&grp->list);
250 genl_ctrl_event(CTRL_CMD_DELMCAST_GRP, grp);
251 grp->id = 0;
252 grp->family = NULL;
253}
254
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700255/**
256 * genl_unregister_mc_group - unregister a multicast group
257 *
258 * Unregisters the specified multicast group and notifies userspace
259 * about it. All current listeners on the group are removed.
260 *
261 * Note: It is not necessary to unregister all multicast groups before
262 * unregistering the family, unregistering the family will cause
263 * all assigned multicast groups to be unregistered automatically.
264 *
265 * @family: Generic netlink family the group belongs to.
266 * @grp: The group to unregister, must have been registered successfully
267 * previously.
268 */
269void genl_unregister_mc_group(struct genl_family *family,
270 struct genl_multicast_group *grp)
271{
Pravin B Shelardef31172013-04-23 07:48:30 +0000272 genl_lock_all();
Thomas Graf79dc43862007-07-24 15:32:46 -0700273 __genl_unregister_mc_group(family, grp);
Pravin B Shelardef31172013-04-23 07:48:30 +0000274 genl_unlock_all();
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700275}
Inaky Perez-Gonzalez3efb40c2008-12-20 16:57:37 -0800276EXPORT_SYMBOL(genl_unregister_mc_group);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700277
278static void genl_unregister_mc_groups(struct genl_family *family)
279{
280 struct genl_multicast_group *grp, *tmp;
281
282 list_for_each_entry_safe(grp, tmp, &family->mcast_groups, list)
Thomas Graf79dc43862007-07-24 15:32:46 -0700283 __genl_unregister_mc_group(family, grp);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700284}
285
Johannes Berg568508a2013-11-15 14:19:08 +0100286static int genl_validate_ops(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 /* family is not registered yet, so no locking needed */
307 family->ops = ops;
308 family->n_ops = n_ops;
Jamal Hadi Salim334c29a2006-12-04 19:31:51 -0800309
Johannes Bergd91824c2013-11-14 17:14:44 +0100310 return 0;
Thomas Graf482a8522005-11-10 02:25:56 +0100311}
Thomas Graf482a8522005-11-10 02:25:56 +0100312
313/**
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700314 * __genl_register_family - register a generic netlink family
Thomas Graf482a8522005-11-10 02:25:56 +0100315 * @family: generic netlink family
316 *
317 * Registers the specified family after validating it first. Only one
318 * family may be registered with the same family name or identifier.
319 * The family id may equal GENL_ID_GENERATE causing an unique id to
320 * be automatically generated and assigned.
321 *
Johannes Berg568508a2013-11-15 14:19:08 +0100322 * The family's ops array must already be assigned, you can use the
323 * genl_register_family_with_ops() helper function.
324 *
Thomas Graf482a8522005-11-10 02:25:56 +0100325 * Return 0 on success or a negative error code.
326 */
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700327int __genl_register_family(struct genl_family *family)
Thomas Graf482a8522005-11-10 02:25:56 +0100328{
329 int err = -EINVAL;
330
331 if (family->id && family->id < GENL_MIN_ID)
332 goto errout;
333
334 if (family->id > GENL_MAX_ID)
335 goto errout;
336
Johannes Berg568508a2013-11-15 14:19:08 +0100337 err = genl_validate_ops(family);
338 if (err)
339 return err;
340
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700341 INIT_LIST_HEAD(&family->mcast_groups);
Thomas Graf482a8522005-11-10 02:25:56 +0100342
Pravin B Shelardef31172013-04-23 07:48:30 +0000343 genl_lock_all();
Thomas Graf482a8522005-11-10 02:25:56 +0100344
345 if (genl_family_find_byname(family->name)) {
346 err = -EEXIST;
347 goto errout_locked;
348 }
349
Thomas Graf482a8522005-11-10 02:25:56 +0100350 if (family->id == GENL_ID_GENERATE) {
351 u16 newid = genl_generate_id();
352
353 if (!newid) {
354 err = -ENOMEM;
355 goto errout_locked;
356 }
357
358 family->id = newid;
Krishna Kumar93860b02009-10-14 19:54:53 +0000359 } else if (genl_family_find_byid(family->id)) {
360 err = -EEXIST;
361 goto errout_locked;
Thomas Graf482a8522005-11-10 02:25:56 +0100362 }
363
Pravin B Shelardef31172013-04-23 07:48:30 +0000364 if (family->maxattr && !family->parallel_ops) {
Thomas Graf482a8522005-11-10 02:25:56 +0100365 family->attrbuf = kmalloc((family->maxattr+1) *
366 sizeof(struct nlattr *), GFP_KERNEL);
367 if (family->attrbuf == NULL) {
368 err = -ENOMEM;
Jamal Hadi Salime200bd82006-02-13 15:51:24 -0800369 goto errout_locked;
Thomas Graf482a8522005-11-10 02:25:56 +0100370 }
371 } else
372 family->attrbuf = NULL;
373
374 list_add_tail(&family->family_list, genl_family_chain(family->id));
Pravin B Shelardef31172013-04-23 07:48:30 +0000375 genl_unlock_all();
Thomas Graf482a8522005-11-10 02:25:56 +0100376
377 genl_ctrl_event(CTRL_CMD_NEWFAMILY, family);
378
379 return 0;
380
381errout_locked:
Pravin B Shelardef31172013-04-23 07:48:30 +0000382 genl_unlock_all();
Thomas Graf482a8522005-11-10 02:25:56 +0100383errout:
384 return err;
385}
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700386EXPORT_SYMBOL(__genl_register_family);
Thomas Graf482a8522005-11-10 02:25:56 +0100387
388/**
389 * genl_unregister_family - unregister generic netlink family
390 * @family: generic netlink family
391 *
392 * Unregisters the specified family.
393 *
394 * Returns 0 on success or a negative error code.
395 */
396int genl_unregister_family(struct genl_family *family)
397{
398 struct genl_family *rc;
399
Pravin B Shelardef31172013-04-23 07:48:30 +0000400 genl_lock_all();
Thomas Graf482a8522005-11-10 02:25:56 +0100401
Pavel Emelyanov910d6c32008-02-12 22:16:33 -0800402 genl_unregister_mc_groups(family);
403
Thomas Graf482a8522005-11-10 02:25:56 +0100404 list_for_each_entry(rc, genl_family_chain(family->id), family_list) {
405 if (family->id != rc->id || strcmp(rc->name, family->name))
406 continue;
407
408 list_del(&rc->family_list);
Johannes Bergd91824c2013-11-14 17:14:44 +0100409 family->n_ops = 0;
Pravin B Shelardef31172013-04-23 07:48:30 +0000410 genl_unlock_all();
Thomas Graf482a8522005-11-10 02:25:56 +0100411
Thomas Graf482a8522005-11-10 02:25:56 +0100412 kfree(family->attrbuf);
413 genl_ctrl_event(CTRL_CMD_DELFAMILY, family);
414 return 0;
415 }
416
Pravin B Shelardef31172013-04-23 07:48:30 +0000417 genl_unlock_all();
Thomas Graf482a8522005-11-10 02:25:56 +0100418
419 return -ENOENT;
420}
Changli Gao416c2f92010-07-25 20:46:01 +0000421EXPORT_SYMBOL(genl_unregister_family);
Thomas Graf482a8522005-11-10 02:25:56 +0100422
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500423/**
424 * genlmsg_put - Add generic netlink header to netlink message
425 * @skb: socket buffer holding the message
Eric W. Biederman15e47302012-09-07 20:12:54 +0000426 * @portid: netlink portid the message is addressed to
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500427 * @seq: sequence number (usually the one of the sender)
428 * @family: generic netlink family
Ben Hutchings2c530402012-07-10 10:55:09 +0000429 * @flags: netlink message flags
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500430 * @cmd: generic netlink command
431 *
432 * Returns pointer to user specific header
433 */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000434void *genlmsg_put(struct sk_buff *skb, u32 portid, u32 seq,
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500435 struct genl_family *family, int flags, u8 cmd)
436{
437 struct nlmsghdr *nlh;
438 struct genlmsghdr *hdr;
439
Eric W. Biederman15e47302012-09-07 20:12:54 +0000440 nlh = nlmsg_put(skb, portid, seq, family->id, GENL_HDRLEN +
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500441 family->hdrsize, flags);
442 if (nlh == NULL)
443 return NULL;
444
445 hdr = nlmsg_data(nlh);
446 hdr->cmd = cmd;
447 hdr->version = family->version;
448 hdr->reserved = 0;
449
450 return (char *) hdr + GENL_HDRLEN;
451}
452EXPORT_SYMBOL(genlmsg_put);
453
Pravin B Shelar9b963092013-08-23 12:44:55 -0700454static int genl_lock_dumpit(struct sk_buff *skb, struct netlink_callback *cb)
455{
Johannes Bergf84f7712013-11-14 17:14:45 +0100456 /* our ops are always const - netlink API doesn't propagate that */
457 const struct genl_ops *ops = cb->data;
Pravin B Shelar9b963092013-08-23 12:44:55 -0700458 int rc;
459
460 genl_lock();
461 rc = ops->dumpit(skb, cb);
462 genl_unlock();
463 return rc;
464}
465
466static int genl_lock_done(struct netlink_callback *cb)
467{
Johannes Bergf84f7712013-11-14 17:14:45 +0100468 /* our ops are always const - netlink API doesn't propagate that */
469 const struct genl_ops *ops = cb->data;
Pravin B Shelar9b963092013-08-23 12:44:55 -0700470 int rc = 0;
471
472 if (ops->done) {
473 genl_lock();
474 rc = ops->done(cb);
475 genl_unlock();
476 }
477 return rc;
478}
479
Pravin B Shelardef31172013-04-23 07:48:30 +0000480static int genl_family_rcv_msg(struct genl_family *family,
481 struct sk_buff *skb,
482 struct nlmsghdr *nlh)
Thomas Graf482a8522005-11-10 02:25:56 +0100483{
Johannes Bergf84f7712013-11-14 17:14:45 +0100484 const struct genl_ops *ops;
Johannes Berg134e6372009-07-10 09:51:34 +0000485 struct net *net = sock_net(skb->sk);
Thomas Graf482a8522005-11-10 02:25:56 +0100486 struct genl_info info;
487 struct genlmsghdr *hdr = nlmsg_data(nlh);
Pravin B Shelardef31172013-04-23 07:48:30 +0000488 struct nlattr **attrbuf;
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700489 int hdrlen, err;
Thomas Graf482a8522005-11-10 02:25:56 +0100490
Johannes Berg134e6372009-07-10 09:51:34 +0000491 /* this family doesn't exist in this netns */
492 if (!family->netnsok && !net_eq(net, &init_net))
493 return -ENOENT;
494
Thomas Graf482a8522005-11-10 02:25:56 +0100495 hdrlen = GENL_HDRLEN + family->hdrsize;
496 if (nlh->nlmsg_len < nlmsg_msg_size(hdrlen))
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700497 return -EINVAL;
Thomas Graf482a8522005-11-10 02:25:56 +0100498
499 ops = genl_get_cmd(hdr->cmd, family);
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700500 if (ops == NULL)
501 return -EOPNOTSUPP;
Thomas Graf482a8522005-11-10 02:25:56 +0100502
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700503 if ((ops->flags & GENL_ADMIN_PERM) &&
Eric Parisfd778462012-01-03 12:25:16 -0500504 !capable(CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700505 return -EPERM;
Thomas Graf482a8522005-11-10 02:25:56 +0100506
Pablo Neirae1ee3672013-07-29 12:30:04 +0200507 if ((nlh->nlmsg_flags & NLM_F_DUMP) == NLM_F_DUMP) {
Pravin B Shelar9b963092013-08-23 12:44:55 -0700508 int rc;
Pravin B Shelardef31172013-04-23 07:48:30 +0000509
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700510 if (ops->dumpit == NULL)
511 return -EOPNOTSUPP;
Thomas Graf482a8522005-11-10 02:25:56 +0100512
Pravin B Shelar9b963092013-08-23 12:44:55 -0700513 if (!family->parallel_ops) {
514 struct netlink_dump_control c = {
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700515 .module = family->module,
Johannes Bergf84f7712013-11-14 17:14:45 +0100516 /* we have const, but the netlink API doesn't */
517 .data = (void *)ops,
Pravin B Shelar9b963092013-08-23 12:44:55 -0700518 .dump = genl_lock_dumpit,
519 .done = genl_lock_done,
520 };
521
522 genl_unlock();
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700523 rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c);
Pravin B Shelar9b963092013-08-23 12:44:55 -0700524 genl_lock();
525
526 } else {
527 struct netlink_dump_control c = {
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700528 .module = family->module,
Pravin B Shelar9b963092013-08-23 12:44:55 -0700529 .dump = ops->dumpit,
530 .done = ops->done,
531 };
532
Pravin B Shelar33c6b1f2013-08-23 12:45:04 -0700533 rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c);
Pravin B Shelar9b963092013-08-23 12:44:55 -0700534 }
535
536 return rc;
Thomas Graf482a8522005-11-10 02:25:56 +0100537 }
538
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700539 if (ops->doit == NULL)
540 return -EOPNOTSUPP;
Thomas Graf482a8522005-11-10 02:25:56 +0100541
Pravin B Shelardef31172013-04-23 07:48:30 +0000542 if (family->maxattr && family->parallel_ops) {
543 attrbuf = kmalloc((family->maxattr+1) *
544 sizeof(struct nlattr *), GFP_KERNEL);
545 if (attrbuf == NULL)
546 return -ENOMEM;
547 } else
548 attrbuf = family->attrbuf;
549
550 if (attrbuf) {
551 err = nlmsg_parse(nlh, hdrlen, attrbuf, family->maxattr,
Thomas Graf482a8522005-11-10 02:25:56 +0100552 ops->policy);
553 if (err < 0)
Wei Yongjun50754d212013-04-26 15:34:16 +0000554 goto out;
Thomas Graf482a8522005-11-10 02:25:56 +0100555 }
556
557 info.snd_seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000558 info.snd_portid = NETLINK_CB(skb).portid;
Thomas Graf482a8522005-11-10 02:25:56 +0100559 info.nlhdr = nlh;
560 info.genlhdr = nlmsg_data(nlh);
561 info.userhdr = nlmsg_data(nlh) + GENL_HDRLEN;
Pravin B Shelardef31172013-04-23 07:48:30 +0000562 info.attrs = attrbuf;
Johannes Berg134e6372009-07-10 09:51:34 +0000563 genl_info_net_set(&info, net);
Johannes Bergff4c92d2010-10-04 21:14:03 +0200564 memset(&info.user_ptr, 0, sizeof(info.user_ptr));
Thomas Graf482a8522005-11-10 02:25:56 +0100565
Johannes Bergff4c92d2010-10-04 21:14:03 +0200566 if (family->pre_doit) {
567 err = family->pre_doit(ops, skb, &info);
568 if (err)
Wei Yongjun50754d212013-04-26 15:34:16 +0000569 goto out;
Johannes Bergff4c92d2010-10-04 21:14:03 +0200570 }
571
572 err = ops->doit(skb, &info);
573
574 if (family->post_doit)
575 family->post_doit(ops, skb, &info);
576
Wei Yongjun50754d212013-04-26 15:34:16 +0000577out:
Pravin B Shelardef31172013-04-23 07:48:30 +0000578 if (family->parallel_ops)
579 kfree(attrbuf);
580
581 return err;
582}
583
584static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
585{
586 struct genl_family *family;
587 int err;
588
589 family = genl_family_find_byid(nlh->nlmsg_type);
590 if (family == NULL)
591 return -ENOENT;
592
593 if (!family->parallel_ops)
594 genl_lock();
595
596 err = genl_family_rcv_msg(family, skb, nlh);
597
598 if (!family->parallel_ops)
599 genl_unlock();
600
Johannes Bergff4c92d2010-10-04 21:14:03 +0200601 return err;
Thomas Graf482a8522005-11-10 02:25:56 +0100602}
603
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700604static void genl_rcv(struct sk_buff *skb)
Thomas Graf482a8522005-11-10 02:25:56 +0100605{
Pravin B Shelardef31172013-04-23 07:48:30 +0000606 down_read(&cb_lock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700607 netlink_rcv_skb(skb, &genl_rcv_msg);
Pravin B Shelardef31172013-04-23 07:48:30 +0000608 up_read(&cb_lock);
Thomas Graf482a8522005-11-10 02:25:56 +0100609}
610
611/**************************************************************************
612 * Controller
613 **************************************************************************/
614
Thomas Graf17c157c2006-11-14 19:46:02 -0800615static struct genl_family genl_ctrl = {
616 .id = GENL_ID_CTRL,
617 .name = "nlctrl",
Jamal Hadi Salim334c29a2006-12-04 19:31:51 -0800618 .version = 0x2,
Thomas Graf17c157c2006-11-14 19:46:02 -0800619 .maxattr = CTRL_ATTR_MAX,
Johannes Berg134e6372009-07-10 09:51:34 +0000620 .netnsok = true,
Thomas Graf17c157c2006-11-14 19:46:02 -0800621};
622
Eric W. Biederman15e47302012-09-07 20:12:54 +0000623static int ctrl_fill_info(struct genl_family *family, u32 portid, u32 seq,
Thomas Graf482a8522005-11-10 02:25:56 +0100624 u32 flags, struct sk_buff *skb, u8 cmd)
625{
626 void *hdr;
627
Eric W. Biederman15e47302012-09-07 20:12:54 +0000628 hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd);
Thomas Graf482a8522005-11-10 02:25:56 +0100629 if (hdr == NULL)
630 return -1;
631
David S. Miller444653f2012-03-29 23:25:11 -0400632 if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, family->name) ||
633 nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, family->id) ||
634 nla_put_u32(skb, CTRL_ATTR_VERSION, family->version) ||
635 nla_put_u32(skb, CTRL_ATTR_HDRSIZE, family->hdrsize) ||
636 nla_put_u32(skb, CTRL_ATTR_MAXATTR, family->maxattr))
637 goto nla_put_failure;
Thomas Grafeb328112006-09-18 00:01:59 -0700638
Johannes Bergd91824c2013-11-14 17:14:44 +0100639 if (family->n_ops) {
Thomas Grafe94ef682006-11-23 11:44:37 -0800640 struct nlattr *nla_ops;
Johannes Bergd91824c2013-11-14 17:14:44 +0100641 int i;
Thomas Grafeb328112006-09-18 00:01:59 -0700642
Thomas Grafe94ef682006-11-23 11:44:37 -0800643 nla_ops = nla_nest_start(skb, CTRL_ATTR_OPS);
644 if (nla_ops == NULL)
Thomas Grafeb328112006-09-18 00:01:59 -0700645 goto nla_put_failure;
646
Johannes Bergd91824c2013-11-14 17:14:44 +0100647 for (i = 0; i < family->n_ops; i++) {
Thomas Grafe94ef682006-11-23 11:44:37 -0800648 struct nlattr *nest;
Johannes Bergf84f7712013-11-14 17:14:45 +0100649 const struct genl_ops *ops = &family->ops[i];
650 u32 flags = ops->flags;
651
652 if (ops->dumpit)
653 flags |= GENL_CMD_CAP_DUMP;
654 if (ops->doit)
655 flags |= GENL_CMD_CAP_DO;
656 if (ops->policy)
657 flags |= GENL_CMD_CAP_HASPOL;
Thomas Grafeb328112006-09-18 00:01:59 -0700658
Johannes Bergd91824c2013-11-14 17:14:44 +0100659 nest = nla_nest_start(skb, i + 1);
Thomas Grafe94ef682006-11-23 11:44:37 -0800660 if (nest == NULL)
661 goto nla_put_failure;
Thomas Grafeb328112006-09-18 00:01:59 -0700662
David S. Miller444653f2012-03-29 23:25:11 -0400663 if (nla_put_u32(skb, CTRL_ATTR_OP_ID, ops->cmd) ||
Johannes Bergf84f7712013-11-14 17:14:45 +0100664 nla_put_u32(skb, CTRL_ATTR_OP_FLAGS, flags))
David S. Miller444653f2012-03-29 23:25:11 -0400665 goto nla_put_failure;
Thomas Grafeb328112006-09-18 00:01:59 -0700666
Thomas Grafe94ef682006-11-23 11:44:37 -0800667 nla_nest_end(skb, nest);
668 }
669
670 nla_nest_end(skb, nla_ops);
Thomas Grafeb328112006-09-18 00:01:59 -0700671 }
672
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700673 if (!list_empty(&family->mcast_groups)) {
674 struct genl_multicast_group *grp;
675 struct nlattr *nla_grps;
676 int idx = 1;
677
678 nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS);
679 if (nla_grps == NULL)
680 goto nla_put_failure;
681
682 list_for_each_entry(grp, &family->mcast_groups, list) {
683 struct nlattr *nest;
684
685 nest = nla_nest_start(skb, idx++);
686 if (nest == NULL)
687 goto nla_put_failure;
688
David S. Miller444653f2012-03-29 23:25:11 -0400689 if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID, grp->id) ||
690 nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME,
691 grp->name))
692 goto nla_put_failure;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700693
694 nla_nest_end(skb, nest);
695 }
696 nla_nest_end(skb, nla_grps);
697 }
698
699 return genlmsg_end(skb, hdr);
700
701nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700702 genlmsg_cancel(skb, hdr);
703 return -EMSGSIZE;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700704}
705
Eric W. Biederman15e47302012-09-07 20:12:54 +0000706static int ctrl_fill_mcgrp_info(struct genl_multicast_group *grp, u32 portid,
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700707 u32 seq, u32 flags, struct sk_buff *skb,
708 u8 cmd)
709{
710 void *hdr;
711 struct nlattr *nla_grps;
712 struct nlattr *nest;
713
Eric W. Biederman15e47302012-09-07 20:12:54 +0000714 hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700715 if (hdr == NULL)
716 return -1;
717
David S. Miller444653f2012-03-29 23:25:11 -0400718 if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, grp->family->name) ||
719 nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, grp->family->id))
720 goto nla_put_failure;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700721
722 nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS);
723 if (nla_grps == NULL)
724 goto nla_put_failure;
725
726 nest = nla_nest_start(skb, 1);
727 if (nest == NULL)
728 goto nla_put_failure;
729
David S. Miller444653f2012-03-29 23:25:11 -0400730 if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID, grp->id) ||
731 nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME,
732 grp->name))
733 goto nla_put_failure;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700734
735 nla_nest_end(skb, nest);
736 nla_nest_end(skb, nla_grps);
737
Thomas Graf482a8522005-11-10 02:25:56 +0100738 return genlmsg_end(skb, hdr);
739
740nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700741 genlmsg_cancel(skb, hdr);
742 return -EMSGSIZE;
Thomas Graf482a8522005-11-10 02:25:56 +0100743}
744
745static int ctrl_dumpfamily(struct sk_buff *skb, struct netlink_callback *cb)
746{
747
748 int i, n = 0;
749 struct genl_family *rt;
Johannes Berg134e6372009-07-10 09:51:34 +0000750 struct net *net = sock_net(skb->sk);
Thomas Graf482a8522005-11-10 02:25:56 +0100751 int chains_to_skip = cb->args[0];
752 int fams_to_skip = cb->args[1];
753
Samir Bellabese1d5a012010-01-07 22:10:56 +0000754 for (i = chains_to_skip; i < GENL_FAM_TAB_SIZE; i++) {
Thomas Graf482a8522005-11-10 02:25:56 +0100755 n = 0;
756 list_for_each_entry(rt, genl_family_chain(i), family_list) {
Johannes Berg134e6372009-07-10 09:51:34 +0000757 if (!rt->netnsok && !net_eq(net, &init_net))
758 continue;
Thomas Graf482a8522005-11-10 02:25:56 +0100759 if (++n < fams_to_skip)
760 continue;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000761 if (ctrl_fill_info(rt, NETLINK_CB(cb->skb).portid,
Thomas Graf482a8522005-11-10 02:25:56 +0100762 cb->nlh->nlmsg_seq, NLM_F_MULTI,
763 skb, CTRL_CMD_NEWFAMILY) < 0)
764 goto errout;
765 }
766
767 fams_to_skip = 0;
768 }
769
770errout:
771 cb->args[0] = i;
772 cb->args[1] = n;
773
774 return skb->len;
775}
776
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700777static struct sk_buff *ctrl_build_family_msg(struct genl_family *family,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000778 u32 portid, int seq, u8 cmd)
Thomas Graf482a8522005-11-10 02:25:56 +0100779{
780 struct sk_buff *skb;
781 int err;
782
Thomas Graf339bf982006-11-10 14:10:15 -0800783 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Thomas Graf482a8522005-11-10 02:25:56 +0100784 if (skb == NULL)
785 return ERR_PTR(-ENOBUFS);
786
Eric W. Biederman15e47302012-09-07 20:12:54 +0000787 err = ctrl_fill_info(family, portid, seq, 0, skb, cmd);
Thomas Graf482a8522005-11-10 02:25:56 +0100788 if (err < 0) {
789 nlmsg_free(skb);
790 return ERR_PTR(err);
791 }
792
793 return skb;
794}
795
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700796static struct sk_buff *ctrl_build_mcgrp_msg(struct genl_multicast_group *grp,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000797 u32 portid, int seq, u8 cmd)
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700798{
799 struct sk_buff *skb;
800 int err;
801
802 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
803 if (skb == NULL)
804 return ERR_PTR(-ENOBUFS);
805
Eric W. Biederman15e47302012-09-07 20:12:54 +0000806 err = ctrl_fill_mcgrp_info(grp, portid, seq, 0, skb, cmd);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700807 if (err < 0) {
808 nlmsg_free(skb);
809 return ERR_PTR(err);
810 }
811
812 return skb;
813}
814
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700815static const struct nla_policy ctrl_policy[CTRL_ATTR_MAX+1] = {
Thomas Graf482a8522005-11-10 02:25:56 +0100816 [CTRL_ATTR_FAMILY_ID] = { .type = NLA_U16 },
Thomas Graf5176f912006-08-26 20:13:18 -0700817 [CTRL_ATTR_FAMILY_NAME] = { .type = NLA_NUL_STRING,
818 .len = GENL_NAMSIZ - 1 },
Thomas Graf482a8522005-11-10 02:25:56 +0100819};
820
821static int ctrl_getfamily(struct sk_buff *skb, struct genl_info *info)
822{
823 struct sk_buff *msg;
824 struct genl_family *res = NULL;
825 int err = -EINVAL;
826
827 if (info->attrs[CTRL_ATTR_FAMILY_ID]) {
828 u16 id = nla_get_u16(info->attrs[CTRL_ATTR_FAMILY_ID]);
829 res = genl_family_find_byid(id);
Johannes Berg134e6372009-07-10 09:51:34 +0000830 err = -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100831 }
832
833 if (info->attrs[CTRL_ATTR_FAMILY_NAME]) {
Thomas Graf5176f912006-08-26 20:13:18 -0700834 char *name;
Thomas Graf482a8522005-11-10 02:25:56 +0100835
Thomas Graf5176f912006-08-26 20:13:18 -0700836 name = nla_data(info->attrs[CTRL_ATTR_FAMILY_NAME]);
Thomas Graf482a8522005-11-10 02:25:56 +0100837 res = genl_family_find_byname(name);
Stephen Hemmingerfa843092011-12-28 13:48:55 -0500838#ifdef CONFIG_MODULES
839 if (res == NULL) {
840 genl_unlock();
Stanislaw Gruszkac74f2b22013-07-26 11:00:10 +0200841 up_read(&cb_lock);
Neil Hormane9412c32012-05-29 09:30:41 +0000842 request_module("net-pf-%d-proto-%d-family-%s",
Stephen Hemmingerfa843092011-12-28 13:48:55 -0500843 PF_NETLINK, NETLINK_GENERIC, name);
Stanislaw Gruszkac74f2b22013-07-26 11:00:10 +0200844 down_read(&cb_lock);
Stephen Hemmingerfa843092011-12-28 13:48:55 -0500845 genl_lock();
846 res = genl_family_find_byname(name);
847 }
848#endif
Johannes Berg134e6372009-07-10 09:51:34 +0000849 err = -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100850 }
851
Johannes Berg134e6372009-07-10 09:51:34 +0000852 if (res == NULL)
853 return err;
854
855 if (!res->netnsok && !net_eq(genl_info_net(info), &init_net)) {
856 /* family doesn't exist here */
857 return -ENOENT;
Thomas Graf482a8522005-11-10 02:25:56 +0100858 }
859
Eric W. Biederman15e47302012-09-07 20:12:54 +0000860 msg = ctrl_build_family_msg(res, info->snd_portid, info->snd_seq,
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700861 CTRL_CMD_NEWFAMILY);
Johannes Berg134e6372009-07-10 09:51:34 +0000862 if (IS_ERR(msg))
863 return PTR_ERR(msg);
Thomas Graf482a8522005-11-10 02:25:56 +0100864
Johannes Berg134e6372009-07-10 09:51:34 +0000865 return genlmsg_reply(msg, info);
Thomas Graf482a8522005-11-10 02:25:56 +0100866}
867
868static int genl_ctrl_event(int event, void *data)
869{
870 struct sk_buff *msg;
Johannes Berg134e6372009-07-10 09:51:34 +0000871 struct genl_family *family;
872 struct genl_multicast_group *grp;
Thomas Graf482a8522005-11-10 02:25:56 +0100873
Johannes Berg134e6372009-07-10 09:51:34 +0000874 /* genl is still initialising */
875 if (!init_net.genl_sock)
Thomas Graf482a8522005-11-10 02:25:56 +0100876 return 0;
877
878 switch (event) {
879 case CTRL_CMD_NEWFAMILY:
880 case CTRL_CMD_DELFAMILY:
Johannes Berg134e6372009-07-10 09:51:34 +0000881 family = data;
882 msg = ctrl_build_family_msg(family, 0, 0, event);
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700883 break;
884 case CTRL_CMD_NEWMCAST_GRP:
885 case CTRL_CMD_DELMCAST_GRP:
Johannes Berg134e6372009-07-10 09:51:34 +0000886 grp = data;
887 family = grp->family;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700888 msg = ctrl_build_mcgrp_msg(data, 0, 0, event);
Thomas Graf482a8522005-11-10 02:25:56 +0100889 break;
Johannes Berg134e6372009-07-10 09:51:34 +0000890 default:
891 return -EINVAL;
892 }
893
894 if (IS_ERR(msg))
895 return PTR_ERR(msg);
896
897 if (!family->netnsok) {
898 genlmsg_multicast_netns(&init_net, msg, 0,
899 GENL_ID_CTRL, GFP_KERNEL);
900 } else {
901 rcu_read_lock();
902 genlmsg_multicast_allns(msg, 0, GENL_ID_CTRL, GFP_ATOMIC);
903 rcu_read_unlock();
Thomas Graf482a8522005-11-10 02:25:56 +0100904 }
905
906 return 0;
907}
908
909static struct genl_ops genl_ctrl_ops = {
910 .cmd = CTRL_CMD_GETFAMILY,
911 .doit = ctrl_getfamily,
912 .dumpit = ctrl_dumpfamily,
913 .policy = ctrl_policy,
914};
915
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700916static struct genl_multicast_group notify_grp = {
917 .name = "notify",
918};
919
Johannes Berg134e6372009-07-10 09:51:34 +0000920static int __net_init genl_pernet_init(struct net *net)
921{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000922 struct netlink_kernel_cfg cfg = {
923 .input = genl_rcv,
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +0000924 .flags = NL_CFG_F_NONROOT_RECV,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000925 };
926
Johannes Berg134e6372009-07-10 09:51:34 +0000927 /* we'll bump the group number right afterwards */
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000928 net->genl_sock = netlink_kernel_create(net, NETLINK_GENERIC, &cfg);
Johannes Berg134e6372009-07-10 09:51:34 +0000929
930 if (!net->genl_sock && net_eq(net, &init_net))
931 panic("GENL: Cannot initialize generic netlink\n");
932
933 if (!net->genl_sock)
934 return -ENOMEM;
935
936 return 0;
937}
938
939static void __net_exit genl_pernet_exit(struct net *net)
940{
941 netlink_kernel_release(net->genl_sock);
942 net->genl_sock = NULL;
943}
944
945static struct pernet_operations genl_pernet_ops = {
946 .init = genl_pernet_init,
947 .exit = genl_pernet_exit,
948};
949
Thomas Graf482a8522005-11-10 02:25:56 +0100950static int __init genl_init(void)
951{
952 int i, err;
953
954 for (i = 0; i < GENL_FAM_TAB_SIZE; i++)
955 INIT_LIST_HEAD(&family_ht[i]);
956
Changli Gao652c6712010-07-25 23:21:05 +0000957 err = genl_register_family_with_ops(&genl_ctrl, &genl_ctrl_ops, 1);
Thomas Graf482a8522005-11-10 02:25:56 +0100958 if (err < 0)
Johannes Berg134e6372009-07-10 09:51:34 +0000959 goto problem;
Thomas Graf482a8522005-11-10 02:25:56 +0100960
Johannes Berg134e6372009-07-10 09:51:34 +0000961 err = register_pernet_subsys(&genl_pernet_ops);
962 if (err)
963 goto problem;
Thomas Graf482a8522005-11-10 02:25:56 +0100964
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700965 err = genl_register_mc_group(&genl_ctrl, &notify_grp);
966 if (err < 0)
Johannes Berg134e6372009-07-10 09:51:34 +0000967 goto problem;
Johannes Berg2dbba6f2007-07-18 15:47:52 -0700968
Thomas Graf482a8522005-11-10 02:25:56 +0100969 return 0;
970
Johannes Berg134e6372009-07-10 09:51:34 +0000971problem:
Thomas Graf482a8522005-11-10 02:25:56 +0100972 panic("GENL: Cannot register controller: %d\n", err);
Thomas Graf482a8522005-11-10 02:25:56 +0100973}
974
975subsys_initcall(genl_init);
976
Eric W. Biederman15e47302012-09-07 20:12:54 +0000977static int genlmsg_mcast(struct sk_buff *skb, u32 portid, unsigned long group,
Johannes Berg134e6372009-07-10 09:51:34 +0000978 gfp_t flags)
979{
980 struct sk_buff *tmp;
981 struct net *net, *prev = NULL;
982 int err;
983
984 for_each_net_rcu(net) {
985 if (prev) {
986 tmp = skb_clone(skb, flags);
987 if (!tmp) {
988 err = -ENOMEM;
989 goto error;
990 }
991 err = nlmsg_multicast(prev->genl_sock, tmp,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000992 portid, group, flags);
Johannes Berg134e6372009-07-10 09:51:34 +0000993 if (err)
994 goto error;
995 }
996
997 prev = net;
998 }
999
Eric W. Biederman15e47302012-09-07 20:12:54 +00001000 return nlmsg_multicast(prev->genl_sock, skb, portid, group, flags);
Johannes Berg134e6372009-07-10 09:51:34 +00001001 error:
1002 kfree_skb(skb);
1003 return err;
1004}
1005
Eric W. Biederman15e47302012-09-07 20:12:54 +00001006int genlmsg_multicast_allns(struct sk_buff *skb, u32 portid, unsigned int group,
Johannes Berg134e6372009-07-10 09:51:34 +00001007 gfp_t flags)
1008{
Eric W. Biederman15e47302012-09-07 20:12:54 +00001009 return genlmsg_mcast(skb, portid, group, flags);
Johannes Berg134e6372009-07-10 09:51:34 +00001010}
1011EXPORT_SYMBOL(genlmsg_multicast_allns);
Pravin B Shelar263ba612011-11-10 19:14:37 -08001012
Eric W. Biederman15e47302012-09-07 20:12:54 +00001013void genl_notify(struct sk_buff *skb, struct net *net, u32 portid, u32 group,
Pravin B Shelar263ba612011-11-10 19:14:37 -08001014 struct nlmsghdr *nlh, gfp_t flags)
1015{
1016 struct sock *sk = net->genl_sock;
1017 int report = 0;
1018
1019 if (nlh)
1020 report = nlmsg_report(nlh);
1021
Eric W. Biederman15e47302012-09-07 20:12:54 +00001022 nlmsg_notify(sk, skb, portid, group, report, flags);
Pravin B Shelar263ba612011-11-10 19:14:37 -08001023}
1024EXPORT_SYMBOL(genl_notify);