]>
Commit | Line | Data |
---|---|---|
482a8524 TG |
1 | /* |
2 | * NETLINK Generic Netlink Family | |
3 | * | |
4 | * Authors: Jamal Hadi Salim | |
5 | * Thomas Graf <tgraf@suug.ch> | |
2dbba6f7 | 6 | * Johannes Berg <johannes@sipsolutions.net> |
482a8524 TG |
7 | */ |
8 | ||
482a8524 TG |
9 | #include <linux/module.h> |
10 | #include <linux/kernel.h> | |
5a0e3ad6 | 11 | #include <linux/slab.h> |
482a8524 TG |
12 | #include <linux/errno.h> |
13 | #include <linux/types.h> | |
14 | #include <linux/socket.h> | |
15 | #include <linux/string.h> | |
16 | #include <linux/skbuff.h> | |
14cc3e2b | 17 | #include <linux/mutex.h> |
2dbba6f7 | 18 | #include <linux/bitmap.h> |
def31174 | 19 | #include <linux/rwsem.h> |
482a8524 TG |
20 | #include <net/sock.h> |
21 | #include <net/genetlink.h> | |
22 | ||
14cc3e2b | 23 | static DEFINE_MUTEX(genl_mutex); /* serialization of message processing */ |
def31174 | 24 | static DECLARE_RWSEM(cb_lock); |
482a8524 | 25 | |
f408e0ce | 26 | void genl_lock(void) |
482a8524 | 27 | { |
14cc3e2b | 28 | mutex_lock(&genl_mutex); |
482a8524 | 29 | } |
f408e0ce | 30 | EXPORT_SYMBOL(genl_lock); |
482a8524 | 31 | |
f408e0ce | 32 | void genl_unlock(void) |
482a8524 | 33 | { |
14cc3e2b | 34 | mutex_unlock(&genl_mutex); |
482a8524 | 35 | } |
f408e0ce | 36 | EXPORT_SYMBOL(genl_unlock); |
482a8524 | 37 | |
320f5ea0 | 38 | #ifdef CONFIG_LOCKDEP |
86b1309c PS |
39 | int lockdep_genl_is_held(void) |
40 | { | |
41 | return lockdep_is_held(&genl_mutex); | |
42 | } | |
43 | EXPORT_SYMBOL(lockdep_genl_is_held); | |
44 | #endif | |
45 | ||
def31174 PS |
46 | static void genl_lock_all(void) |
47 | { | |
48 | down_write(&cb_lock); | |
49 | genl_lock(); | |
50 | } | |
51 | ||
52 | static void genl_unlock_all(void) | |
53 | { | |
54 | genl_unlock(); | |
55 | up_write(&cb_lock); | |
56 | } | |
57 | ||
482a8524 TG |
58 | #define GENL_FAM_TAB_SIZE 16 |
59 | #define GENL_FAM_TAB_MASK (GENL_FAM_TAB_SIZE - 1) | |
60 | ||
61 | static struct list_head family_ht[GENL_FAM_TAB_SIZE]; | |
2dbba6f7 JB |
62 | /* |
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 | */ | |
69 | static unsigned long mc_group_start = 0x1; | |
70 | static unsigned long *mc_groups = &mc_group_start; | |
71 | static unsigned long mc_groups_longs = 1; | |
482a8524 TG |
72 | |
73 | static int genl_ctrl_event(int event, void *data); | |
74 | ||
75 | static inline unsigned int genl_family_hash(unsigned int id) | |
76 | { | |
77 | return id & GENL_FAM_TAB_MASK; | |
78 | } | |
79 | ||
80 | static inline struct list_head *genl_family_chain(unsigned int id) | |
81 | { | |
82 | return &family_ht[genl_family_hash(id)]; | |
83 | } | |
84 | ||
85 | static 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 | ||
96 | static 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 | ||
109 | static struct genl_ops *genl_get_cmd(u8 cmd, struct genl_family *family) | |
110 | { | |
111 | struct genl_ops *ops; | |
112 | ||
113 | list_for_each_entry(ops, &family->ops_list, ops_list) | |
114 | if (ops->cmd == cmd) | |
115 | return ops; | |
116 | ||
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 | */ | |
b57ef81f | 123 | static u16 genl_generate_id(void) |
482a8524 | 124 | { |
988ade6b KK |
125 | static u16 id_gen_idx = GENL_MIN_ID; |
126 | int i; | |
482a8524 | 127 | |
988ade6b KK |
128 | 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) | |
482a8524 | 132 | id_gen_idx = GENL_MIN_ID; |
988ade6b | 133 | } |
482a8524 | 134 | |
988ade6b | 135 | return 0; |
482a8524 TG |
136 | } |
137 | ||
2dbba6f7 JB |
138 | static 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 | */ | |
151 | int genl_register_mc_group(struct genl_family *family, | |
152 | struct genl_multicast_group *grp) | |
153 | { | |
154 | int id; | |
155 | unsigned long *new_groups; | |
b1f57195 | 156 | int err = 0; |
2dbba6f7 JB |
157 | |
158 | BUG_ON(grp->name[0] == '\0'); | |
f1e79e20 | 159 | BUG_ON(memchr(grp->name, '\0', GENL_NAMSIZ) == NULL); |
2dbba6f7 | 160 | |
def31174 | 161 | genl_lock_all(); |
2dbba6f7 JB |
162 | |
163 | /* special-case our own group */ | |
164 | if (grp == ¬ify_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 | ||
134e6375 JB |
194 | if (family->netnsok) { |
195 | struct net *net; | |
196 | ||
d136f1bd | 197 | netlink_table_grab(); |
134e6375 JB |
198 | rcu_read_lock(); |
199 | for_each_net_rcu(net) { | |
d136f1bd | 200 | err = __netlink_change_ngroups(net->genl_sock, |
134e6375 JB |
201 | 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(); | |
d136f1bd | 210 | netlink_table_ungrab(); |
134e6375 JB |
211 | goto out; |
212 | } | |
213 | } | |
214 | rcu_read_unlock(); | |
d136f1bd | 215 | netlink_table_ungrab(); |
134e6375 JB |
216 | } else { |
217 | err = netlink_change_ngroups(init_net.genl_sock, | |
218 | mc_groups_longs * BITS_PER_LONG); | |
219 | if (err) | |
220 | goto out; | |
221 | } | |
2dbba6f7 JB |
222 | |
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: | |
def31174 | 230 | genl_unlock_all(); |
79d310d0 | 231 | return err; |
2dbba6f7 JB |
232 | } |
233 | EXPORT_SYMBOL(genl_register_mc_group); | |
234 | ||
79dc4386 TG |
235 | static void __genl_unregister_mc_group(struct genl_family *family, |
236 | struct genl_multicast_group *grp) | |
237 | { | |
134e6375 | 238 | struct net *net; |
79dc4386 | 239 | BUG_ON(grp->family != family); |
134e6375 | 240 | |
b8273570 | 241 | netlink_table_grab(); |
134e6375 JB |
242 | rcu_read_lock(); |
243 | for_each_net_rcu(net) | |
b8273570 | 244 | __netlink_clear_multicast_users(net->genl_sock, grp->id); |
134e6375 | 245 | rcu_read_unlock(); |
b8273570 | 246 | netlink_table_ungrab(); |
134e6375 | 247 | |
79dc4386 TG |
248 | 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 | ||
2dbba6f7 JB |
255 | /** |
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 | */ | |
269 | void genl_unregister_mc_group(struct genl_family *family, | |
270 | struct genl_multicast_group *grp) | |
271 | { | |
def31174 | 272 | genl_lock_all(); |
79dc4386 | 273 | __genl_unregister_mc_group(family, grp); |
def31174 | 274 | genl_unlock_all(); |
2dbba6f7 | 275 | } |
3efb40c2 | 276 | EXPORT_SYMBOL(genl_unregister_mc_group); |
2dbba6f7 JB |
277 | |
278 | static 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) | |
79dc4386 | 283 | __genl_unregister_mc_group(family, grp); |
2dbba6f7 JB |
284 | } |
285 | ||
482a8524 TG |
286 | /** |
287 | * genl_register_ops - register generic netlink operations | |
288 | * @family: generic netlink family | |
289 | * @ops: operations to be registered | |
290 | * | |
291 | * Registers the specified operations and assigns them to the specified | |
292 | * family. Either a doit or dumpit callback must be specified or the | |
293 | * operation will fail. Only one operation structure per command | |
294 | * identifier may be registered. | |
295 | * | |
296 | * See include/net/genetlink.h for more documenation on the operations | |
297 | * structure. | |
298 | * | |
299 | * Returns 0 on success or a negative error code. | |
300 | */ | |
301 | int genl_register_ops(struct genl_family *family, struct genl_ops *ops) | |
302 | { | |
303 | int err = -EINVAL; | |
304 | ||
305 | if (ops->dumpit == NULL && ops->doit == NULL) | |
306 | goto errout; | |
307 | ||
308 | if (genl_get_cmd(ops->cmd, family)) { | |
309 | err = -EEXIST; | |
310 | goto errout; | |
311 | } | |
312 | ||
334c29a6 | 313 | if (ops->dumpit) |
334c29a6 | 314 | ops->flags |= GENL_CMD_CAP_DUMP; |
48d4ed7a JHS |
315 | if (ops->doit) |
316 | ops->flags |= GENL_CMD_CAP_DO; | |
334c29a6 JHS |
317 | if (ops->policy) |
318 | ops->flags |= GENL_CMD_CAP_HASPOL; | |
319 | ||
def31174 | 320 | genl_lock_all(); |
482a8524 | 321 | list_add_tail(&ops->ops_list, &family->ops_list); |
def31174 | 322 | genl_unlock_all(); |
482a8524 TG |
323 | |
324 | genl_ctrl_event(CTRL_CMD_NEWOPS, ops); | |
325 | err = 0; | |
326 | errout: | |
327 | return err; | |
328 | } | |
416c2f9c | 329 | EXPORT_SYMBOL(genl_register_ops); |
482a8524 TG |
330 | |
331 | /** | |
332 | * genl_unregister_ops - unregister generic netlink operations | |
333 | * @family: generic netlink family | |
334 | * @ops: operations to be unregistered | |
335 | * | |
336 | * Unregisters the specified operations and unassigns them from the | |
337 | * specified family. The operation blocks until the current message | |
338 | * processing has finished and doesn't start again until the | |
339 | * unregister process has finished. | |
340 | * | |
341 | * Note: It is not necessary to unregister all operations before | |
342 | * unregistering the family, unregistering the family will cause | |
343 | * all assigned operations to be unregistered automatically. | |
344 | * | |
345 | * Returns 0 on success or a negative error code. | |
346 | */ | |
347 | int genl_unregister_ops(struct genl_family *family, struct genl_ops *ops) | |
348 | { | |
349 | struct genl_ops *rc; | |
350 | ||
def31174 | 351 | genl_lock_all(); |
482a8524 TG |
352 | list_for_each_entry(rc, &family->ops_list, ops_list) { |
353 | if (rc == ops) { | |
354 | list_del(&ops->ops_list); | |
def31174 | 355 | genl_unlock_all(); |
482a8524 TG |
356 | genl_ctrl_event(CTRL_CMD_DELOPS, ops); |
357 | return 0; | |
358 | } | |
359 | } | |
def31174 | 360 | genl_unlock_all(); |
482a8524 TG |
361 | |
362 | return -ENOENT; | |
363 | } | |
416c2f9c | 364 | EXPORT_SYMBOL(genl_unregister_ops); |
482a8524 TG |
365 | |
366 | /** | |
367 | * genl_register_family - register a generic netlink family | |
368 | * @family: generic netlink family | |
369 | * | |
370 | * Registers the specified family after validating it first. Only one | |
371 | * family may be registered with the same family name or identifier. | |
372 | * The family id may equal GENL_ID_GENERATE causing an unique id to | |
373 | * be automatically generated and assigned. | |
374 | * | |
375 | * Return 0 on success or a negative error code. | |
376 | */ | |
377 | int genl_register_family(struct genl_family *family) | |
378 | { | |
379 | int err = -EINVAL; | |
380 | ||
381 | if (family->id && family->id < GENL_MIN_ID) | |
382 | goto errout; | |
383 | ||
384 | if (family->id > GENL_MAX_ID) | |
385 | goto errout; | |
386 | ||
387 | INIT_LIST_HEAD(&family->ops_list); | |
2dbba6f7 | 388 | INIT_LIST_HEAD(&family->mcast_groups); |
482a8524 | 389 | |
def31174 | 390 | genl_lock_all(); |
482a8524 TG |
391 | |
392 | if (genl_family_find_byname(family->name)) { | |
393 | err = -EEXIST; | |
394 | goto errout_locked; | |
395 | } | |
396 | ||
482a8524 TG |
397 | if (family->id == GENL_ID_GENERATE) { |
398 | u16 newid = genl_generate_id(); | |
399 | ||
400 | if (!newid) { | |
401 | err = -ENOMEM; | |
402 | goto errout_locked; | |
403 | } | |
404 | ||
405 | family->id = newid; | |
93860b08 KK |
406 | } else if (genl_family_find_byid(family->id)) { |
407 | err = -EEXIST; | |
408 | goto errout_locked; | |
482a8524 TG |
409 | } |
410 | ||
def31174 | 411 | if (family->maxattr && !family->parallel_ops) { |
482a8524 TG |
412 | family->attrbuf = kmalloc((family->maxattr+1) * |
413 | sizeof(struct nlattr *), GFP_KERNEL); | |
414 | if (family->attrbuf == NULL) { | |
415 | err = -ENOMEM; | |
e200bd80 | 416 | goto errout_locked; |
482a8524 TG |
417 | } |
418 | } else | |
419 | family->attrbuf = NULL; | |
420 | ||
421 | list_add_tail(&family->family_list, genl_family_chain(family->id)); | |
def31174 | 422 | genl_unlock_all(); |
482a8524 TG |
423 | |
424 | genl_ctrl_event(CTRL_CMD_NEWFAMILY, family); | |
425 | ||
426 | return 0; | |
427 | ||
428 | errout_locked: | |
def31174 | 429 | genl_unlock_all(); |
482a8524 TG |
430 | errout: |
431 | return err; | |
432 | } | |
416c2f9c | 433 | EXPORT_SYMBOL(genl_register_family); |
482a8524 | 434 | |
a7b11d73 MM |
435 | /** |
436 | * genl_register_family_with_ops - register a generic netlink family | |
437 | * @family: generic netlink family | |
438 | * @ops: operations to be registered | |
439 | * @n_ops: number of elements to register | |
440 | * | |
441 | * Registers the specified family and operations from the specified table. | |
442 | * Only one family may be registered with the same family name or identifier. | |
443 | * | |
444 | * The family id may equal GENL_ID_GENERATE causing an unique id to | |
445 | * be automatically generated and assigned. | |
446 | * | |
447 | * Either a doit or dumpit callback must be specified for every registered | |
448 | * operation or the function will fail. Only one operation structure per | |
449 | * command identifier may be registered. | |
450 | * | |
451 | * See include/net/genetlink.h for more documenation on the operations | |
452 | * structure. | |
453 | * | |
454 | * This is equivalent to calling genl_register_family() followed by | |
455 | * genl_register_ops() for every operation entry in the table taking | |
456 | * care to unregister the family on error path. | |
457 | * | |
458 | * Return 0 on success or a negative error code. | |
459 | */ | |
460 | int genl_register_family_with_ops(struct genl_family *family, | |
461 | struct genl_ops *ops, size_t n_ops) | |
462 | { | |
463 | int err, i; | |
464 | ||
465 | err = genl_register_family(family); | |
466 | if (err) | |
467 | return err; | |
468 | ||
469 | for (i = 0; i < n_ops; ++i, ++ops) { | |
470 | err = genl_register_ops(family, ops); | |
471 | if (err) | |
472 | goto err_out; | |
473 | } | |
474 | return 0; | |
475 | err_out: | |
476 | genl_unregister_family(family); | |
477 | return err; | |
478 | } | |
479 | EXPORT_SYMBOL(genl_register_family_with_ops); | |
480 | ||
482a8524 TG |
481 | /** |
482 | * genl_unregister_family - unregister generic netlink family | |
483 | * @family: generic netlink family | |
484 | * | |
485 | * Unregisters the specified family. | |
486 | * | |
487 | * Returns 0 on success or a negative error code. | |
488 | */ | |
489 | int genl_unregister_family(struct genl_family *family) | |
490 | { | |
491 | struct genl_family *rc; | |
492 | ||
def31174 | 493 | genl_lock_all(); |
482a8524 | 494 | |
910d6c32 PE |
495 | genl_unregister_mc_groups(family); |
496 | ||
482a8524 TG |
497 | list_for_each_entry(rc, genl_family_chain(family->id), family_list) { |
498 | if (family->id != rc->id || strcmp(rc->name, family->name)) | |
499 | continue; | |
500 | ||
501 | list_del(&rc->family_list); | |
502 | INIT_LIST_HEAD(&family->ops_list); | |
def31174 | 503 | genl_unlock_all(); |
482a8524 | 504 | |
482a8524 TG |
505 | kfree(family->attrbuf); |
506 | genl_ctrl_event(CTRL_CMD_DELFAMILY, family); | |
507 | return 0; | |
508 | } | |
509 | ||
def31174 | 510 | genl_unlock_all(); |
482a8524 TG |
511 | |
512 | return -ENOENT; | |
513 | } | |
416c2f9c | 514 | EXPORT_SYMBOL(genl_unregister_family); |
482a8524 | 515 | |
a46621a3 DV |
516 | /** |
517 | * genlmsg_put - Add generic netlink header to netlink message | |
518 | * @skb: socket buffer holding the message | |
15e47304 | 519 | * @portid: netlink portid the message is addressed to |
a46621a3 DV |
520 | * @seq: sequence number (usually the one of the sender) |
521 | * @family: generic netlink family | |
2c53040f | 522 | * @flags: netlink message flags |
a46621a3 DV |
523 | * @cmd: generic netlink command |
524 | * | |
525 | * Returns pointer to user specific header | |
526 | */ | |
15e47304 | 527 | void *genlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, |
a46621a3 DV |
528 | struct genl_family *family, int flags, u8 cmd) |
529 | { | |
530 | struct nlmsghdr *nlh; | |
531 | struct genlmsghdr *hdr; | |
532 | ||
15e47304 | 533 | nlh = nlmsg_put(skb, portid, seq, family->id, GENL_HDRLEN + |
a46621a3 DV |
534 | family->hdrsize, flags); |
535 | if (nlh == NULL) | |
536 | return NULL; | |
537 | ||
538 | hdr = nlmsg_data(nlh); | |
539 | hdr->cmd = cmd; | |
540 | hdr->version = family->version; | |
541 | hdr->reserved = 0; | |
542 | ||
543 | return (char *) hdr + GENL_HDRLEN; | |
544 | } | |
545 | EXPORT_SYMBOL(genlmsg_put); | |
546 | ||
def31174 PS |
547 | static int genl_family_rcv_msg(struct genl_family *family, |
548 | struct sk_buff *skb, | |
549 | struct nlmsghdr *nlh) | |
482a8524 TG |
550 | { |
551 | struct genl_ops *ops; | |
134e6375 | 552 | struct net *net = sock_net(skb->sk); |
482a8524 TG |
553 | struct genl_info info; |
554 | struct genlmsghdr *hdr = nlmsg_data(nlh); | |
def31174 | 555 | struct nlattr **attrbuf; |
1d00a4eb | 556 | int hdrlen, err; |
482a8524 | 557 | |
134e6375 JB |
558 | /* this family doesn't exist in this netns */ |
559 | if (!family->netnsok && !net_eq(net, &init_net)) | |
560 | return -ENOENT; | |
561 | ||
482a8524 TG |
562 | hdrlen = GENL_HDRLEN + family->hdrsize; |
563 | if (nlh->nlmsg_len < nlmsg_msg_size(hdrlen)) | |
1d00a4eb | 564 | return -EINVAL; |
482a8524 TG |
565 | |
566 | ops = genl_get_cmd(hdr->cmd, family); | |
1d00a4eb TG |
567 | if (ops == NULL) |
568 | return -EOPNOTSUPP; | |
482a8524 | 569 | |
1d00a4eb | 570 | if ((ops->flags & GENL_ADMIN_PERM) && |
fd778461 | 571 | !capable(CAP_NET_ADMIN)) |
1d00a4eb | 572 | return -EPERM; |
482a8524 | 573 | |
b8f3ab42 | 574 | if (nlh->nlmsg_flags & NLM_F_DUMP) { |
def31174 PS |
575 | struct netlink_dump_control c = { |
576 | .dump = ops->dumpit, | |
577 | .done = ops->done, | |
578 | }; | |
579 | ||
1d00a4eb TG |
580 | if (ops->dumpit == NULL) |
581 | return -EOPNOTSUPP; | |
482a8524 | 582 | |
def31174 | 583 | return netlink_dump_start(net->genl_sock, skb, nlh, &c); |
482a8524 TG |
584 | } |
585 | ||
1d00a4eb TG |
586 | if (ops->doit == NULL) |
587 | return -EOPNOTSUPP; | |
482a8524 | 588 | |
def31174 PS |
589 | if (family->maxattr && family->parallel_ops) { |
590 | attrbuf = kmalloc((family->maxattr+1) * | |
591 | sizeof(struct nlattr *), GFP_KERNEL); | |
592 | if (attrbuf == NULL) | |
593 | return -ENOMEM; | |
594 | } else | |
595 | attrbuf = family->attrbuf; | |
596 | ||
597 | if (attrbuf) { | |
598 | err = nlmsg_parse(nlh, hdrlen, attrbuf, family->maxattr, | |
482a8524 TG |
599 | ops->policy); |
600 | if (err < 0) | |
50754d21 | 601 | goto out; |
482a8524 TG |
602 | } |
603 | ||
604 | info.snd_seq = nlh->nlmsg_seq; | |
15e47304 | 605 | info.snd_portid = NETLINK_CB(skb).portid; |
482a8524 TG |
606 | info.nlhdr = nlh; |
607 | info.genlhdr = nlmsg_data(nlh); | |
608 | info.userhdr = nlmsg_data(nlh) + GENL_HDRLEN; | |
def31174 | 609 | info.attrs = attrbuf; |
134e6375 | 610 | genl_info_net_set(&info, net); |
ff4c92d8 | 611 | memset(&info.user_ptr, 0, sizeof(info.user_ptr)); |
482a8524 | 612 | |
ff4c92d8 JB |
613 | if (family->pre_doit) { |
614 | err = family->pre_doit(ops, skb, &info); | |
615 | if (err) | |
50754d21 | 616 | goto out; |
ff4c92d8 JB |
617 | } |
618 | ||
619 | err = ops->doit(skb, &info); | |
620 | ||
621 | if (family->post_doit) | |
622 | family->post_doit(ops, skb, &info); | |
623 | ||
50754d21 | 624 | out: |
def31174 PS |
625 | if (family->parallel_ops) |
626 | kfree(attrbuf); | |
627 | ||
628 | return err; | |
629 | } | |
630 | ||
631 | static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) | |
632 | { | |
633 | struct genl_family *family; | |
634 | int err; | |
635 | ||
636 | family = genl_family_find_byid(nlh->nlmsg_type); | |
637 | if (family == NULL) | |
638 | return -ENOENT; | |
639 | ||
640 | if (!family->parallel_ops) | |
641 | genl_lock(); | |
642 | ||
643 | err = genl_family_rcv_msg(family, skb, nlh); | |
644 | ||
645 | if (!family->parallel_ops) | |
646 | genl_unlock(); | |
647 | ||
ff4c92d8 | 648 | return err; |
482a8524 TG |
649 | } |
650 | ||
cd40b7d3 | 651 | static void genl_rcv(struct sk_buff *skb) |
482a8524 | 652 | { |
def31174 | 653 | down_read(&cb_lock); |
cd40b7d3 | 654 | netlink_rcv_skb(skb, &genl_rcv_msg); |
def31174 | 655 | up_read(&cb_lock); |
482a8524 TG |
656 | } |
657 | ||
658 | /************************************************************************** | |
659 | * Controller | |
660 | **************************************************************************/ | |
661 | ||
17c157c8 TG |
662 | static struct genl_family genl_ctrl = { |
663 | .id = GENL_ID_CTRL, | |
664 | .name = "nlctrl", | |
334c29a6 | 665 | .version = 0x2, |
17c157c8 | 666 | .maxattr = CTRL_ATTR_MAX, |
134e6375 | 667 | .netnsok = true, |
17c157c8 TG |
668 | }; |
669 | ||
15e47304 | 670 | static int ctrl_fill_info(struct genl_family *family, u32 portid, u32 seq, |
482a8524 TG |
671 | u32 flags, struct sk_buff *skb, u8 cmd) |
672 | { | |
673 | void *hdr; | |
674 | ||
15e47304 | 675 | hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd); |
482a8524 TG |
676 | if (hdr == NULL) |
677 | return -1; | |
678 | ||
444653f6 DM |
679 | if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, family->name) || |
680 | nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, family->id) || | |
681 | nla_put_u32(skb, CTRL_ATTR_VERSION, family->version) || | |
682 | nla_put_u32(skb, CTRL_ATTR_HDRSIZE, family->hdrsize) || | |
683 | nla_put_u32(skb, CTRL_ATTR_MAXATTR, family->maxattr)) | |
684 | goto nla_put_failure; | |
eb328111 | 685 | |
e94ef682 TG |
686 | if (!list_empty(&family->ops_list)) { |
687 | struct nlattr *nla_ops; | |
688 | struct genl_ops *ops; | |
689 | int idx = 1; | |
eb328111 | 690 | |
e94ef682 TG |
691 | nla_ops = nla_nest_start(skb, CTRL_ATTR_OPS); |
692 | if (nla_ops == NULL) | |
eb328111 TG |
693 | goto nla_put_failure; |
694 | ||
e94ef682 TG |
695 | list_for_each_entry(ops, &family->ops_list, ops_list) { |
696 | struct nlattr *nest; | |
eb328111 | 697 | |
e94ef682 TG |
698 | nest = nla_nest_start(skb, idx++); |
699 | if (nest == NULL) | |
700 | goto nla_put_failure; | |
eb328111 | 701 | |
444653f6 DM |
702 | if (nla_put_u32(skb, CTRL_ATTR_OP_ID, ops->cmd) || |
703 | nla_put_u32(skb, CTRL_ATTR_OP_FLAGS, ops->flags)) | |
704 | goto nla_put_failure; | |
eb328111 | 705 | |
e94ef682 TG |
706 | nla_nest_end(skb, nest); |
707 | } | |
708 | ||
709 | nla_nest_end(skb, nla_ops); | |
710 | } | |
482a8524 | 711 | |
2dbba6f7 JB |
712 | if (!list_empty(&family->mcast_groups)) { |
713 | struct genl_multicast_group *grp; | |
714 | struct nlattr *nla_grps; | |
715 | int idx = 1; | |
716 | ||
717 | nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS); | |
718 | if (nla_grps == NULL) | |
719 | goto nla_put_failure; | |
720 | ||
721 | list_for_each_entry(grp, &family->mcast_groups, list) { | |
722 | struct nlattr *nest; | |
723 | ||
724 | nest = nla_nest_start(skb, idx++); | |
725 | if (nest == NULL) | |
726 | goto nla_put_failure; | |
727 | ||
444653f6 DM |
728 | if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID, grp->id) || |
729 | nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME, | |
730 | grp->name)) | |
731 | goto nla_put_failure; | |
2dbba6f7 JB |
732 | |
733 | nla_nest_end(skb, nest); | |
734 | } | |
735 | nla_nest_end(skb, nla_grps); | |
736 | } | |
737 | ||
738 | return genlmsg_end(skb, hdr); | |
739 | ||
740 | nla_put_failure: | |
bc3ed28c TG |
741 | genlmsg_cancel(skb, hdr); |
742 | return -EMSGSIZE; | |
2dbba6f7 JB |
743 | } |
744 | ||
15e47304 | 745 | static int ctrl_fill_mcgrp_info(struct genl_multicast_group *grp, u32 portid, |
2dbba6f7 JB |
746 | u32 seq, u32 flags, struct sk_buff *skb, |
747 | u8 cmd) | |
748 | { | |
749 | void *hdr; | |
750 | struct nlattr *nla_grps; | |
751 | struct nlattr *nest; | |
752 | ||
15e47304 | 753 | hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd); |
2dbba6f7 JB |
754 | if (hdr == NULL) |
755 | return -1; | |
756 | ||
444653f6 DM |
757 | if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, grp->family->name) || |
758 | nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, grp->family->id)) | |
759 | goto nla_put_failure; | |
2dbba6f7 JB |
760 | |
761 | nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS); | |
762 | if (nla_grps == NULL) | |
763 | goto nla_put_failure; | |
764 | ||
765 | nest = nla_nest_start(skb, 1); | |
766 | if (nest == NULL) | |
767 | goto nla_put_failure; | |
768 | ||
444653f6 DM |
769 | if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID, grp->id) || |
770 | nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME, | |
771 | grp->name)) | |
772 | goto nla_put_failure; | |
2dbba6f7 JB |
773 | |
774 | nla_nest_end(skb, nest); | |
775 | nla_nest_end(skb, nla_grps); | |
776 | ||
482a8524 TG |
777 | return genlmsg_end(skb, hdr); |
778 | ||
779 | nla_put_failure: | |
bc3ed28c TG |
780 | genlmsg_cancel(skb, hdr); |
781 | return -EMSGSIZE; | |
482a8524 TG |
782 | } |
783 | ||
784 | static int ctrl_dumpfamily(struct sk_buff *skb, struct netlink_callback *cb) | |
785 | { | |
786 | ||
787 | int i, n = 0; | |
788 | struct genl_family *rt; | |
134e6375 | 789 | struct net *net = sock_net(skb->sk); |
482a8524 TG |
790 | int chains_to_skip = cb->args[0]; |
791 | int fams_to_skip = cb->args[1]; | |
792 | ||
e1d5a010 | 793 | for (i = chains_to_skip; i < GENL_FAM_TAB_SIZE; i++) { |
482a8524 TG |
794 | n = 0; |
795 | list_for_each_entry(rt, genl_family_chain(i), family_list) { | |
134e6375 JB |
796 | if (!rt->netnsok && !net_eq(net, &init_net)) |
797 | continue; | |
482a8524 TG |
798 | if (++n < fams_to_skip) |
799 | continue; | |
15e47304 | 800 | if (ctrl_fill_info(rt, NETLINK_CB(cb->skb).portid, |
482a8524 TG |
801 | cb->nlh->nlmsg_seq, NLM_F_MULTI, |
802 | skb, CTRL_CMD_NEWFAMILY) < 0) | |
803 | goto errout; | |
804 | } | |
805 | ||
806 | fams_to_skip = 0; | |
807 | } | |
808 | ||
809 | errout: | |
810 | cb->args[0] = i; | |
811 | cb->args[1] = n; | |
812 | ||
813 | return skb->len; | |
814 | } | |
815 | ||
2dbba6f7 | 816 | static struct sk_buff *ctrl_build_family_msg(struct genl_family *family, |
15e47304 | 817 | u32 portid, int seq, u8 cmd) |
482a8524 TG |
818 | { |
819 | struct sk_buff *skb; | |
820 | int err; | |
821 | ||
339bf98f | 822 | skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
482a8524 TG |
823 | if (skb == NULL) |
824 | return ERR_PTR(-ENOBUFS); | |
825 | ||
15e47304 | 826 | err = ctrl_fill_info(family, portid, seq, 0, skb, cmd); |
482a8524 TG |
827 | if (err < 0) { |
828 | nlmsg_free(skb); | |
829 | return ERR_PTR(err); | |
830 | } | |
831 | ||
832 | return skb; | |
833 | } | |
834 | ||
2dbba6f7 | 835 | static struct sk_buff *ctrl_build_mcgrp_msg(struct genl_multicast_group *grp, |
15e47304 | 836 | u32 portid, int seq, u8 cmd) |
2dbba6f7 JB |
837 | { |
838 | struct sk_buff *skb; | |
839 | int err; | |
840 | ||
841 | skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | |
842 | if (skb == NULL) | |
843 | return ERR_PTR(-ENOBUFS); | |
844 | ||
15e47304 | 845 | err = ctrl_fill_mcgrp_info(grp, portid, seq, 0, skb, cmd); |
2dbba6f7 JB |
846 | if (err < 0) { |
847 | nlmsg_free(skb); | |
848 | return ERR_PTR(err); | |
849 | } | |
850 | ||
851 | return skb; | |
852 | } | |
853 | ||
ef7c79ed | 854 | static const struct nla_policy ctrl_policy[CTRL_ATTR_MAX+1] = { |
482a8524 | 855 | [CTRL_ATTR_FAMILY_ID] = { .type = NLA_U16 }, |
5176f91e TG |
856 | [CTRL_ATTR_FAMILY_NAME] = { .type = NLA_NUL_STRING, |
857 | .len = GENL_NAMSIZ - 1 }, | |
482a8524 TG |
858 | }; |
859 | ||
860 | static int ctrl_getfamily(struct sk_buff *skb, struct genl_info *info) | |
861 | { | |
862 | struct sk_buff *msg; | |
863 | struct genl_family *res = NULL; | |
864 | int err = -EINVAL; | |
865 | ||
866 | if (info->attrs[CTRL_ATTR_FAMILY_ID]) { | |
867 | u16 id = nla_get_u16(info->attrs[CTRL_ATTR_FAMILY_ID]); | |
868 | res = genl_family_find_byid(id); | |
134e6375 | 869 | err = -ENOENT; |
482a8524 TG |
870 | } |
871 | ||
872 | if (info->attrs[CTRL_ATTR_FAMILY_NAME]) { | |
5176f91e | 873 | char *name; |
482a8524 | 874 | |
5176f91e | 875 | name = nla_data(info->attrs[CTRL_ATTR_FAMILY_NAME]); |
482a8524 | 876 | res = genl_family_find_byname(name); |
fa843095 SH |
877 | #ifdef CONFIG_MODULES |
878 | if (res == NULL) { | |
879 | genl_unlock(); | |
e9412c37 | 880 | request_module("net-pf-%d-proto-%d-family-%s", |
fa843095 SH |
881 | PF_NETLINK, NETLINK_GENERIC, name); |
882 | genl_lock(); | |
883 | res = genl_family_find_byname(name); | |
884 | } | |
885 | #endif | |
134e6375 | 886 | err = -ENOENT; |
482a8524 TG |
887 | } |
888 | ||
134e6375 JB |
889 | if (res == NULL) |
890 | return err; | |
891 | ||
892 | if (!res->netnsok && !net_eq(genl_info_net(info), &init_net)) { | |
893 | /* family doesn't exist here */ | |
894 | return -ENOENT; | |
482a8524 TG |
895 | } |
896 | ||
15e47304 | 897 | msg = ctrl_build_family_msg(res, info->snd_portid, info->snd_seq, |
2dbba6f7 | 898 | CTRL_CMD_NEWFAMILY); |
134e6375 JB |
899 | if (IS_ERR(msg)) |
900 | return PTR_ERR(msg); | |
482a8524 | 901 | |
134e6375 | 902 | return genlmsg_reply(msg, info); |
482a8524 TG |
903 | } |
904 | ||
905 | static int genl_ctrl_event(int event, void *data) | |
906 | { | |
907 | struct sk_buff *msg; | |
134e6375 JB |
908 | struct genl_family *family; |
909 | struct genl_multicast_group *grp; | |
482a8524 | 910 | |
134e6375 JB |
911 | /* genl is still initialising */ |
912 | if (!init_net.genl_sock) | |
482a8524 TG |
913 | return 0; |
914 | ||
915 | switch (event) { | |
916 | case CTRL_CMD_NEWFAMILY: | |
917 | case CTRL_CMD_DELFAMILY: | |
134e6375 JB |
918 | family = data; |
919 | msg = ctrl_build_family_msg(family, 0, 0, event); | |
2dbba6f7 JB |
920 | break; |
921 | case CTRL_CMD_NEWMCAST_GRP: | |
922 | case CTRL_CMD_DELMCAST_GRP: | |
134e6375 JB |
923 | grp = data; |
924 | family = grp->family; | |
2dbba6f7 | 925 | msg = ctrl_build_mcgrp_msg(data, 0, 0, event); |
482a8524 | 926 | break; |
134e6375 JB |
927 | default: |
928 | return -EINVAL; | |
929 | } | |
930 | ||
931 | if (IS_ERR(msg)) | |
932 | return PTR_ERR(msg); | |
933 | ||
934 | if (!family->netnsok) { | |
935 | genlmsg_multicast_netns(&init_net, msg, 0, | |
936 | GENL_ID_CTRL, GFP_KERNEL); | |
937 | } else { | |
938 | rcu_read_lock(); | |
939 | genlmsg_multicast_allns(msg, 0, GENL_ID_CTRL, GFP_ATOMIC); | |
940 | rcu_read_unlock(); | |
482a8524 TG |
941 | } |
942 | ||
943 | return 0; | |
944 | } | |
945 | ||
946 | static struct genl_ops genl_ctrl_ops = { | |
947 | .cmd = CTRL_CMD_GETFAMILY, | |
948 | .doit = ctrl_getfamily, | |
949 | .dumpit = ctrl_dumpfamily, | |
950 | .policy = ctrl_policy, | |
951 | }; | |
952 | ||
2dbba6f7 JB |
953 | static struct genl_multicast_group notify_grp = { |
954 | .name = "notify", | |
955 | }; | |
956 | ||
134e6375 JB |
957 | static int __net_init genl_pernet_init(struct net *net) |
958 | { | |
a31f2d17 PNA |
959 | struct netlink_kernel_cfg cfg = { |
960 | .input = genl_rcv, | |
9785e10a | 961 | .flags = NL_CFG_F_NONROOT_RECV, |
a31f2d17 PNA |
962 | }; |
963 | ||
134e6375 | 964 | /* we'll bump the group number right afterwards */ |
9f00d977 | 965 | net->genl_sock = netlink_kernel_create(net, NETLINK_GENERIC, &cfg); |
134e6375 JB |
966 | |
967 | if (!net->genl_sock && net_eq(net, &init_net)) | |
968 | panic("GENL: Cannot initialize generic netlink\n"); | |
969 | ||
970 | if (!net->genl_sock) | |
971 | return -ENOMEM; | |
972 | ||
973 | return 0; | |
974 | } | |
975 | ||
976 | static void __net_exit genl_pernet_exit(struct net *net) | |
977 | { | |
978 | netlink_kernel_release(net->genl_sock); | |
979 | net->genl_sock = NULL; | |
980 | } | |
981 | ||
982 | static struct pernet_operations genl_pernet_ops = { | |
983 | .init = genl_pernet_init, | |
984 | .exit = genl_pernet_exit, | |
985 | }; | |
986 | ||
482a8524 TG |
987 | static int __init genl_init(void) |
988 | { | |
989 | int i, err; | |
990 | ||
991 | for (i = 0; i < GENL_FAM_TAB_SIZE; i++) | |
992 | INIT_LIST_HEAD(&family_ht[i]); | |
993 | ||
652c6717 | 994 | err = genl_register_family_with_ops(&genl_ctrl, &genl_ctrl_ops, 1); |
482a8524 | 995 | if (err < 0) |
134e6375 | 996 | goto problem; |
482a8524 | 997 | |
134e6375 JB |
998 | err = register_pernet_subsys(&genl_pernet_ops); |
999 | if (err) | |
1000 | goto problem; | |
482a8524 | 1001 | |
2dbba6f7 JB |
1002 | err = genl_register_mc_group(&genl_ctrl, ¬ify_grp); |
1003 | if (err < 0) | |
134e6375 | 1004 | goto problem; |
2dbba6f7 | 1005 | |
482a8524 TG |
1006 | return 0; |
1007 | ||
134e6375 | 1008 | problem: |
482a8524 | 1009 | panic("GENL: Cannot register controller: %d\n", err); |
482a8524 TG |
1010 | } |
1011 | ||
1012 | subsys_initcall(genl_init); | |
1013 | ||
15e47304 | 1014 | static int genlmsg_mcast(struct sk_buff *skb, u32 portid, unsigned long group, |
134e6375 JB |
1015 | gfp_t flags) |
1016 | { | |
1017 | struct sk_buff *tmp; | |
1018 | struct net *net, *prev = NULL; | |
1019 | int err; | |
1020 | ||
1021 | for_each_net_rcu(net) { | |
1022 | if (prev) { | |
1023 | tmp = skb_clone(skb, flags); | |
1024 | if (!tmp) { | |
1025 | err = -ENOMEM; | |
1026 | goto error; | |
1027 | } | |
1028 | err = nlmsg_multicast(prev->genl_sock, tmp, | |
15e47304 | 1029 | portid, group, flags); |
134e6375 JB |
1030 | if (err) |
1031 | goto error; | |
1032 | } | |
1033 | ||
1034 | prev = net; | |
1035 | } | |
1036 | ||
15e47304 | 1037 | return nlmsg_multicast(prev->genl_sock, skb, portid, group, flags); |
134e6375 JB |
1038 | error: |
1039 | kfree_skb(skb); | |
1040 | return err; | |
1041 | } | |
1042 | ||
15e47304 | 1043 | int genlmsg_multicast_allns(struct sk_buff *skb, u32 portid, unsigned int group, |
134e6375 JB |
1044 | gfp_t flags) |
1045 | { | |
15e47304 | 1046 | return genlmsg_mcast(skb, portid, group, flags); |
134e6375 JB |
1047 | } |
1048 | EXPORT_SYMBOL(genlmsg_multicast_allns); | |
263ba61d | 1049 | |
15e47304 | 1050 | void genl_notify(struct sk_buff *skb, struct net *net, u32 portid, u32 group, |
263ba61d PS |
1051 | struct nlmsghdr *nlh, gfp_t flags) |
1052 | { | |
1053 | struct sock *sk = net->genl_sock; | |
1054 | int report = 0; | |
1055 | ||
1056 | if (nlh) | |
1057 | report = nlmsg_report(nlh); | |
1058 | ||
15e47304 | 1059 | nlmsg_notify(sk, skb, portid, group, report, flags); |
263ba61d PS |
1060 | } |
1061 | EXPORT_SYMBOL(genl_notify); |