2 * NETLINK Generic Netlink Family
4 * Authors: Jamal Hadi Salim
5 * Thomas Graf <tgraf@suug.ch>
6 * Johannes Berg <johannes@sipsolutions.net>
9 #include <linux/module.h>
10 #include <linux/kernel.h>
11 #include <linux/slab.h>
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>
17 #include <linux/mutex.h>
18 #include <linux/bitmap.h>
19 #include <linux/rwsem.h>
20 #include <linux/idr.h>
22 #include <net/genetlink.h>
24 static DEFINE_MUTEX(genl_mutex
); /* serialization of message processing */
25 static DECLARE_RWSEM(cb_lock
);
27 atomic_t genl_sk_destructing_cnt
= ATOMIC_INIT(0);
28 DECLARE_WAIT_QUEUE_HEAD(genl_sk_destructing_waitq
);
32 mutex_lock(&genl_mutex
);
34 EXPORT_SYMBOL(genl_lock
);
36 void genl_unlock(void)
38 mutex_unlock(&genl_mutex
);
40 EXPORT_SYMBOL(genl_unlock
);
43 bool lockdep_genl_is_held(void)
45 return lockdep_is_held(&genl_mutex
);
47 EXPORT_SYMBOL(lockdep_genl_is_held
);
50 static void genl_lock_all(void)
56 static void genl_unlock_all(void)
62 static DEFINE_IDR(genl_fam_idr
);
65 * Bitmap of multicast groups that are currently in use.
67 * To avoid an allocation at boot of just one unsigned long,
68 * declare it global instead.
69 * Bit 0 is marked as already used since group 0 is invalid.
70 * Bit 1 is marked as already used since the drop-monitor code
71 * abuses the API and thinks it can statically use group 1.
72 * That group will typically conflict with other groups that
73 * any proper users use.
74 * Bit 16 is marked as used since it's used for generic netlink
75 * and the code no longer marks pre-reserved IDs as used.
76 * Bit 17 is marked as already used since the VFS quota code
77 * also abused this API and relied on family == group ID, we
78 * cater to that by giving it a static family and group ID.
79 * Bit 18 is marked as already used since the PMCRAID driver
80 * did the same thing as the VFS quota code (maybe copied?)
82 static unsigned long mc_group_start
= 0x3 | BIT(GENL_ID_CTRL
) |
83 BIT(GENL_ID_VFS_DQUOT
) |
85 static unsigned long *mc_groups
= &mc_group_start
;
86 static unsigned long mc_groups_longs
= 1;
88 static int genl_ctrl_event(int event
, const struct genl_family
*family
,
89 const struct genl_multicast_group
*grp
,
92 static const struct genl_family
*genl_family_find_byid(unsigned int id
)
94 return idr_find(&genl_fam_idr
, id
);
97 static const struct genl_family
*genl_family_find_byname(char *name
)
99 const struct genl_family
*family
;
102 idr_for_each_entry(&genl_fam_idr
, family
, id
)
103 if (strcmp(family
->name
, name
) == 0)
109 static const struct genl_ops
*genl_get_cmd(u8 cmd
,
110 const struct genl_family
*family
)
114 for (i
= 0; i
< family
->n_ops
; i
++)
115 if (family
->ops
[i
].cmd
== cmd
)
116 return &family
->ops
[i
];
121 static int genl_allocate_reserve_groups(int n_groups
, int *first_id
)
123 unsigned long *new_groups
;
131 id
= find_first_zero_bit(mc_groups
,
135 id
= find_next_zero_bit(mc_groups
,
136 mc_groups_longs
* BITS_PER_LONG
,
141 i
< min_t(int, id
+ n_groups
,
142 mc_groups_longs
* BITS_PER_LONG
);
144 if (test_bit(i
, mc_groups
)) {
151 if (id
+ n_groups
> mc_groups_longs
* BITS_PER_LONG
) {
152 unsigned long new_longs
= mc_groups_longs
+
153 BITS_TO_LONGS(n_groups
);
154 size_t nlen
= new_longs
* sizeof(unsigned long);
156 if (mc_groups
== &mc_group_start
) {
157 new_groups
= kzalloc(nlen
, GFP_KERNEL
);
160 mc_groups
= new_groups
;
161 *mc_groups
= mc_group_start
;
163 new_groups
= krealloc(mc_groups
, nlen
,
167 mc_groups
= new_groups
;
168 for (i
= 0; i
< BITS_TO_LONGS(n_groups
); i
++)
169 mc_groups
[mc_groups_longs
+ i
] = 0;
171 mc_groups_longs
= new_longs
;
175 for (i
= id
; i
< id
+ n_groups
; i
++)
176 set_bit(i
, mc_groups
);
181 static struct genl_family genl_ctrl
;
183 static int genl_validate_assign_mc_groups(struct genl_family
*family
)
186 int n_groups
= family
->n_mcgrps
;
188 bool groups_allocated
= false;
193 for (i
= 0; i
< n_groups
; i
++) {
194 const struct genl_multicast_group
*grp
= &family
->mcgrps
[i
];
196 if (WARN_ON(grp
->name
[0] == '\0'))
198 if (WARN_ON(memchr(grp
->name
, '\0', GENL_NAMSIZ
) == NULL
))
202 /* special-case our own group and hacks */
203 if (family
== &genl_ctrl
) {
204 first_id
= GENL_ID_CTRL
;
205 BUG_ON(n_groups
!= 1);
206 } else if (strcmp(family
->name
, "NET_DM") == 0) {
208 BUG_ON(n_groups
!= 1);
209 } else if (family
->id
== GENL_ID_VFS_DQUOT
) {
210 first_id
= GENL_ID_VFS_DQUOT
;
211 BUG_ON(n_groups
!= 1);
212 } else if (family
->id
== GENL_ID_PMCRAID
) {
213 first_id
= GENL_ID_PMCRAID
;
214 BUG_ON(n_groups
!= 1);
216 groups_allocated
= true;
217 err
= genl_allocate_reserve_groups(n_groups
, &first_id
);
222 family
->mcgrp_offset
= first_id
;
224 /* if still initializing, can't and don't need to to realloc bitmaps */
225 if (!init_net
.genl_sock
)
228 if (family
->netnsok
) {
231 netlink_table_grab();
233 for_each_net_rcu(net
) {
234 err
= __netlink_change_ngroups(net
->genl_sock
,
235 mc_groups_longs
* BITS_PER_LONG
);
238 * No need to roll back, can only fail if
239 * memory allocation fails and then the
240 * number of _possible_ groups has been
241 * increased on some sockets which is ok.
247 netlink_table_ungrab();
249 err
= netlink_change_ngroups(init_net
.genl_sock
,
250 mc_groups_longs
* BITS_PER_LONG
);
253 if (groups_allocated
&& err
) {
254 for (i
= 0; i
< family
->n_mcgrps
; i
++)
255 clear_bit(family
->mcgrp_offset
+ i
, mc_groups
);
261 static void genl_unregister_mc_groups(const struct genl_family
*family
)
266 netlink_table_grab();
268 for_each_net_rcu(net
) {
269 for (i
= 0; i
< family
->n_mcgrps
; i
++)
270 __netlink_clear_multicast_users(
271 net
->genl_sock
, family
->mcgrp_offset
+ i
);
274 netlink_table_ungrab();
276 for (i
= 0; i
< family
->n_mcgrps
; i
++) {
277 int grp_id
= family
->mcgrp_offset
+ i
;
280 clear_bit(grp_id
, mc_groups
);
281 genl_ctrl_event(CTRL_CMD_DELMCAST_GRP
, family
,
282 &family
->mcgrps
[i
], grp_id
);
286 static int genl_validate_ops(const struct genl_family
*family
)
288 const struct genl_ops
*ops
= family
->ops
;
289 unsigned int n_ops
= family
->n_ops
;
292 if (WARN_ON(n_ops
&& !ops
))
298 for (i
= 0; i
< n_ops
; i
++) {
299 if (ops
[i
].dumpit
== NULL
&& ops
[i
].doit
== NULL
)
301 for (j
= i
+ 1; j
< n_ops
; j
++)
302 if (ops
[i
].cmd
== ops
[j
].cmd
)
310 * genl_register_family - register a generic netlink family
311 * @family: generic netlink family
313 * Registers the specified family after validating it first. Only one
314 * family may be registered with the same family name or identifier.
316 * The family's ops, multicast groups and module pointer must already
319 * Return 0 on success or a negative error code.
321 int genl_register_family(struct genl_family
*family
)
324 int start
= GENL_START_ALLOC
, end
= GENL_MAX_ID
;
326 err
= genl_validate_ops(family
);
332 if (genl_family_find_byname(family
->name
)) {
338 * Sadly, a few cases need to be special-cased
339 * due to them having previously abused the API
340 * and having used their family ID also as their
341 * multicast group ID, so we use reserved IDs
342 * for both to be sure we can do that mapping.
344 if (family
== &genl_ctrl
) {
345 /* and this needs to be special for initial family lookups */
346 start
= end
= GENL_ID_CTRL
;
347 } else if (strcmp(family
->name
, "pmcraid") == 0) {
348 start
= end
= GENL_ID_PMCRAID
;
349 } else if (strcmp(family
->name
, "VFS_DQUOT") == 0) {
350 start
= end
= GENL_ID_VFS_DQUOT
;
353 if (family
->maxattr
&& !family
->parallel_ops
) {
354 family
->attrbuf
= kmalloc((family
->maxattr
+1) *
355 sizeof(struct nlattr
*), GFP_KERNEL
);
356 if (family
->attrbuf
== NULL
) {
361 family
->attrbuf
= NULL
;
363 family
->id
= idr_alloc(&genl_fam_idr
, family
,
364 start
, end
+ 1, GFP_KERNEL
);
365 if (family
->id
< 0) {
370 err
= genl_validate_assign_mc_groups(family
);
376 /* send all events */
377 genl_ctrl_event(CTRL_CMD_NEWFAMILY
, family
, NULL
, 0);
378 for (i
= 0; i
< family
->n_mcgrps
; i
++)
379 genl_ctrl_event(CTRL_CMD_NEWMCAST_GRP
, family
,
380 &family
->mcgrps
[i
], family
->mcgrp_offset
+ i
);
385 idr_remove(&genl_fam_idr
, family
->id
);
386 kfree(family
->attrbuf
);
391 EXPORT_SYMBOL(genl_register_family
);
394 * genl_unregister_family - unregister generic netlink family
395 * @family: generic netlink family
397 * Unregisters the specified family.
399 * Returns 0 on success or a negative error code.
401 int genl_unregister_family(const struct genl_family
*family
)
405 if (!genl_family_find_byid(family
->id
)) {
410 genl_unregister_mc_groups(family
);
412 idr_remove(&genl_fam_idr
, family
->id
);
415 wait_event(genl_sk_destructing_waitq
,
416 atomic_read(&genl_sk_destructing_cnt
) == 0);
419 kfree(family
->attrbuf
);
421 genl_ctrl_event(CTRL_CMD_DELFAMILY
, family
, NULL
, 0);
425 EXPORT_SYMBOL(genl_unregister_family
);
428 * genlmsg_put - Add generic netlink header to netlink message
429 * @skb: socket buffer holding the message
430 * @portid: netlink portid the message is addressed to
431 * @seq: sequence number (usually the one of the sender)
432 * @family: generic netlink family
433 * @flags: netlink message flags
434 * @cmd: generic netlink command
436 * Returns pointer to user specific header
438 void *genlmsg_put(struct sk_buff
*skb
, u32 portid
, u32 seq
,
439 const struct genl_family
*family
, int flags
, u8 cmd
)
441 struct nlmsghdr
*nlh
;
442 struct genlmsghdr
*hdr
;
444 nlh
= nlmsg_put(skb
, portid
, seq
, family
->id
, GENL_HDRLEN
+
445 family
->hdrsize
, flags
);
449 hdr
= nlmsg_data(nlh
);
451 hdr
->version
= family
->version
;
454 return (char *) hdr
+ GENL_HDRLEN
;
456 EXPORT_SYMBOL(genlmsg_put
);
458 static int genl_lock_start(struct netlink_callback
*cb
)
460 /* our ops are always const - netlink API doesn't propagate that */
461 const struct genl_ops
*ops
= cb
->data
;
472 static int genl_lock_dumpit(struct sk_buff
*skb
, struct netlink_callback
*cb
)
474 /* our ops are always const - netlink API doesn't propagate that */
475 const struct genl_ops
*ops
= cb
->data
;
479 rc
= ops
->dumpit(skb
, cb
);
484 static int genl_lock_done(struct netlink_callback
*cb
)
486 /* our ops are always const - netlink API doesn't propagate that */
487 const struct genl_ops
*ops
= cb
->data
;
498 static int genl_family_rcv_msg(const struct genl_family
*family
,
500 struct nlmsghdr
*nlh
)
502 const struct genl_ops
*ops
;
503 struct net
*net
= sock_net(skb
->sk
);
504 struct genl_info info
;
505 struct genlmsghdr
*hdr
= nlmsg_data(nlh
);
506 struct nlattr
**attrbuf
;
509 /* this family doesn't exist in this netns */
510 if (!family
->netnsok
&& !net_eq(net
, &init_net
))
513 hdrlen
= GENL_HDRLEN
+ family
->hdrsize
;
514 if (nlh
->nlmsg_len
< nlmsg_msg_size(hdrlen
))
517 ops
= genl_get_cmd(hdr
->cmd
, family
);
521 if ((ops
->flags
& GENL_ADMIN_PERM
) &&
522 !netlink_capable(skb
, CAP_NET_ADMIN
))
525 if ((ops
->flags
& GENL_UNS_ADMIN_PERM
) &&
526 !netlink_ns_capable(skb
, net
->user_ns
, CAP_NET_ADMIN
))
529 if ((nlh
->nlmsg_flags
& NLM_F_DUMP
) == NLM_F_DUMP
) {
532 if (ops
->dumpit
== NULL
)
535 if (!family
->parallel_ops
) {
536 struct netlink_dump_control c
= {
537 .module
= family
->module
,
538 /* we have const, but the netlink API doesn't */
540 .start
= genl_lock_start
,
541 .dump
= genl_lock_dumpit
,
542 .done
= genl_lock_done
,
546 rc
= __netlink_dump_start(net
->genl_sock
, skb
, nlh
, &c
);
550 struct netlink_dump_control c
= {
551 .module
= family
->module
,
557 rc
= __netlink_dump_start(net
->genl_sock
, skb
, nlh
, &c
);
563 if (ops
->doit
== NULL
)
566 if (family
->maxattr
&& family
->parallel_ops
) {
567 attrbuf
= kmalloc((family
->maxattr
+1) *
568 sizeof(struct nlattr
*), GFP_KERNEL
);
572 attrbuf
= family
->attrbuf
;
575 err
= nlmsg_parse(nlh
, hdrlen
, attrbuf
, family
->maxattr
,
581 info
.snd_seq
= nlh
->nlmsg_seq
;
582 info
.snd_portid
= NETLINK_CB(skb
).portid
;
584 info
.genlhdr
= nlmsg_data(nlh
);
585 info
.userhdr
= nlmsg_data(nlh
) + GENL_HDRLEN
;
586 info
.attrs
= attrbuf
;
587 genl_info_net_set(&info
, net
);
588 memset(&info
.user_ptr
, 0, sizeof(info
.user_ptr
));
590 if (family
->pre_doit
) {
591 err
= family
->pre_doit(ops
, skb
, &info
);
596 err
= ops
->doit(skb
, &info
);
598 if (family
->post_doit
)
599 family
->post_doit(ops
, skb
, &info
);
602 if (family
->parallel_ops
)
608 static int genl_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
610 const struct genl_family
*family
;
613 family
= genl_family_find_byid(nlh
->nlmsg_type
);
617 if (!family
->parallel_ops
)
620 err
= genl_family_rcv_msg(family
, skb
, nlh
);
622 if (!family
->parallel_ops
)
628 static void genl_rcv(struct sk_buff
*skb
)
631 netlink_rcv_skb(skb
, &genl_rcv_msg
);
635 /**************************************************************************
637 **************************************************************************/
639 static struct genl_family genl_ctrl
;
641 static int ctrl_fill_info(const struct genl_family
*family
, u32 portid
, u32 seq
,
642 u32 flags
, struct sk_buff
*skb
, u8 cmd
)
646 hdr
= genlmsg_put(skb
, portid
, seq
, &genl_ctrl
, flags
, cmd
);
650 if (nla_put_string(skb
, CTRL_ATTR_FAMILY_NAME
, family
->name
) ||
651 nla_put_u16(skb
, CTRL_ATTR_FAMILY_ID
, family
->id
) ||
652 nla_put_u32(skb
, CTRL_ATTR_VERSION
, family
->version
) ||
653 nla_put_u32(skb
, CTRL_ATTR_HDRSIZE
, family
->hdrsize
) ||
654 nla_put_u32(skb
, CTRL_ATTR_MAXATTR
, family
->maxattr
))
655 goto nla_put_failure
;
658 struct nlattr
*nla_ops
;
661 nla_ops
= nla_nest_start(skb
, CTRL_ATTR_OPS
);
663 goto nla_put_failure
;
665 for (i
= 0; i
< family
->n_ops
; i
++) {
667 const struct genl_ops
*ops
= &family
->ops
[i
];
668 u32 op_flags
= ops
->flags
;
671 op_flags
|= GENL_CMD_CAP_DUMP
;
673 op_flags
|= GENL_CMD_CAP_DO
;
675 op_flags
|= GENL_CMD_CAP_HASPOL
;
677 nest
= nla_nest_start(skb
, i
+ 1);
679 goto nla_put_failure
;
681 if (nla_put_u32(skb
, CTRL_ATTR_OP_ID
, ops
->cmd
) ||
682 nla_put_u32(skb
, CTRL_ATTR_OP_FLAGS
, op_flags
))
683 goto nla_put_failure
;
685 nla_nest_end(skb
, nest
);
688 nla_nest_end(skb
, nla_ops
);
691 if (family
->n_mcgrps
) {
692 struct nlattr
*nla_grps
;
695 nla_grps
= nla_nest_start(skb
, CTRL_ATTR_MCAST_GROUPS
);
696 if (nla_grps
== NULL
)
697 goto nla_put_failure
;
699 for (i
= 0; i
< family
->n_mcgrps
; i
++) {
701 const struct genl_multicast_group
*grp
;
703 grp
= &family
->mcgrps
[i
];
705 nest
= nla_nest_start(skb
, i
+ 1);
707 goto nla_put_failure
;
709 if (nla_put_u32(skb
, CTRL_ATTR_MCAST_GRP_ID
,
710 family
->mcgrp_offset
+ i
) ||
711 nla_put_string(skb
, CTRL_ATTR_MCAST_GRP_NAME
,
713 goto nla_put_failure
;
715 nla_nest_end(skb
, nest
);
717 nla_nest_end(skb
, nla_grps
);
720 genlmsg_end(skb
, hdr
);
724 genlmsg_cancel(skb
, hdr
);
728 static int ctrl_fill_mcgrp_info(const struct genl_family
*family
,
729 const struct genl_multicast_group
*grp
,
730 int grp_id
, u32 portid
, u32 seq
, u32 flags
,
731 struct sk_buff
*skb
, u8 cmd
)
734 struct nlattr
*nla_grps
;
737 hdr
= genlmsg_put(skb
, portid
, seq
, &genl_ctrl
, flags
, cmd
);
741 if (nla_put_string(skb
, CTRL_ATTR_FAMILY_NAME
, family
->name
) ||
742 nla_put_u16(skb
, CTRL_ATTR_FAMILY_ID
, family
->id
))
743 goto nla_put_failure
;
745 nla_grps
= nla_nest_start(skb
, CTRL_ATTR_MCAST_GROUPS
);
746 if (nla_grps
== NULL
)
747 goto nla_put_failure
;
749 nest
= nla_nest_start(skb
, 1);
751 goto nla_put_failure
;
753 if (nla_put_u32(skb
, CTRL_ATTR_MCAST_GRP_ID
, grp_id
) ||
754 nla_put_string(skb
, CTRL_ATTR_MCAST_GRP_NAME
,
756 goto nla_put_failure
;
758 nla_nest_end(skb
, nest
);
759 nla_nest_end(skb
, nla_grps
);
761 genlmsg_end(skb
, hdr
);
765 genlmsg_cancel(skb
, hdr
);
769 static int ctrl_dumpfamily(struct sk_buff
*skb
, struct netlink_callback
*cb
)
772 struct genl_family
*rt
;
773 struct net
*net
= sock_net(skb
->sk
);
774 int fams_to_skip
= cb
->args
[0];
777 idr_for_each_entry(&genl_fam_idr
, rt
, id
) {
778 if (!rt
->netnsok
&& !net_eq(net
, &init_net
))
781 if (n
++ < fams_to_skip
)
784 if (ctrl_fill_info(rt
, NETLINK_CB(cb
->skb
).portid
,
785 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
786 skb
, CTRL_CMD_NEWFAMILY
) < 0)
794 static struct sk_buff
*ctrl_build_family_msg(const struct genl_family
*family
,
795 u32 portid
, int seq
, u8 cmd
)
800 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
802 return ERR_PTR(-ENOBUFS
);
804 err
= ctrl_fill_info(family
, portid
, seq
, 0, skb
, cmd
);
813 static struct sk_buff
*
814 ctrl_build_mcgrp_msg(const struct genl_family
*family
,
815 const struct genl_multicast_group
*grp
,
816 int grp_id
, u32 portid
, int seq
, u8 cmd
)
821 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
823 return ERR_PTR(-ENOBUFS
);
825 err
= ctrl_fill_mcgrp_info(family
, grp
, grp_id
, portid
,
835 static const struct nla_policy ctrl_policy
[CTRL_ATTR_MAX
+1] = {
836 [CTRL_ATTR_FAMILY_ID
] = { .type
= NLA_U16
},
837 [CTRL_ATTR_FAMILY_NAME
] = { .type
= NLA_NUL_STRING
,
838 .len
= GENL_NAMSIZ
- 1 },
841 static int ctrl_getfamily(struct sk_buff
*skb
, struct genl_info
*info
)
844 const struct genl_family
*res
= NULL
;
847 if (info
->attrs
[CTRL_ATTR_FAMILY_ID
]) {
848 u16 id
= nla_get_u16(info
->attrs
[CTRL_ATTR_FAMILY_ID
]);
849 res
= genl_family_find_byid(id
);
853 if (info
->attrs
[CTRL_ATTR_FAMILY_NAME
]) {
856 name
= nla_data(info
->attrs
[CTRL_ATTR_FAMILY_NAME
]);
857 res
= genl_family_find_byname(name
);
858 #ifdef CONFIG_MODULES
862 request_module("net-pf-%d-proto-%d-family-%s",
863 PF_NETLINK
, NETLINK_GENERIC
, name
);
866 res
= genl_family_find_byname(name
);
875 if (!res
->netnsok
&& !net_eq(genl_info_net(info
), &init_net
)) {
876 /* family doesn't exist here */
880 msg
= ctrl_build_family_msg(res
, info
->snd_portid
, info
->snd_seq
,
885 return genlmsg_reply(msg
, info
);
888 static int genl_ctrl_event(int event
, const struct genl_family
*family
,
889 const struct genl_multicast_group
*grp
,
894 /* genl is still initialising */
895 if (!init_net
.genl_sock
)
899 case CTRL_CMD_NEWFAMILY
:
900 case CTRL_CMD_DELFAMILY
:
902 msg
= ctrl_build_family_msg(family
, 0, 0, event
);
904 case CTRL_CMD_NEWMCAST_GRP
:
905 case CTRL_CMD_DELMCAST_GRP
:
907 msg
= ctrl_build_mcgrp_msg(family
, grp
, grp_id
, 0, 0, event
);
916 if (!family
->netnsok
) {
917 genlmsg_multicast_netns(&genl_ctrl
, &init_net
, msg
, 0,
921 genlmsg_multicast_allns(&genl_ctrl
, msg
, 0,
929 static const struct genl_ops genl_ctrl_ops
[] = {
931 .cmd
= CTRL_CMD_GETFAMILY
,
932 .doit
= ctrl_getfamily
,
933 .dumpit
= ctrl_dumpfamily
,
934 .policy
= ctrl_policy
,
938 static const struct genl_multicast_group genl_ctrl_groups
[] = {
939 { .name
= "notify", },
942 static struct genl_family genl_ctrl __ro_after_init
= {
943 .module
= THIS_MODULE
,
944 .ops
= genl_ctrl_ops
,
945 .n_ops
= ARRAY_SIZE(genl_ctrl_ops
),
946 .mcgrps
= genl_ctrl_groups
,
947 .n_mcgrps
= ARRAY_SIZE(genl_ctrl_groups
),
951 .maxattr
= CTRL_ATTR_MAX
,
955 static int genl_bind(struct net
*net
, int group
)
957 struct genl_family
*f
;
963 idr_for_each_entry(&genl_fam_idr
, f
, id
) {
964 if (group
>= f
->mcgrp_offset
&&
965 group
< f
->mcgrp_offset
+ f
->n_mcgrps
) {
966 int fam_grp
= group
- f
->mcgrp_offset
;
968 if (!f
->netnsok
&& net
!= &init_net
)
970 else if (f
->mcast_bind
)
971 err
= f
->mcast_bind(net
, fam_grp
);
982 static void genl_unbind(struct net
*net
, int group
)
984 struct genl_family
*f
;
989 idr_for_each_entry(&genl_fam_idr
, f
, id
) {
990 if (group
>= f
->mcgrp_offset
&&
991 group
< f
->mcgrp_offset
+ f
->n_mcgrps
) {
992 int fam_grp
= group
- f
->mcgrp_offset
;
995 f
->mcast_unbind(net
, fam_grp
);
1002 static int __net_init
genl_pernet_init(struct net
*net
)
1004 struct netlink_kernel_cfg cfg
= {
1006 .flags
= NL_CFG_F_NONROOT_RECV
,
1008 .unbind
= genl_unbind
,
1011 /* we'll bump the group number right afterwards */
1012 net
->genl_sock
= netlink_kernel_create(net
, NETLINK_GENERIC
, &cfg
);
1014 if (!net
->genl_sock
&& net_eq(net
, &init_net
))
1015 panic("GENL: Cannot initialize generic netlink\n");
1017 if (!net
->genl_sock
)
1023 static void __net_exit
genl_pernet_exit(struct net
*net
)
1025 netlink_kernel_release(net
->genl_sock
);
1026 net
->genl_sock
= NULL
;
1029 static struct pernet_operations genl_pernet_ops
= {
1030 .init
= genl_pernet_init
,
1031 .exit
= genl_pernet_exit
,
1034 static int __init
genl_init(void)
1038 err
= genl_register_family(&genl_ctrl
);
1042 err
= register_pernet_subsys(&genl_pernet_ops
);
1049 panic("GENL: Cannot register controller: %d\n", err
);
1052 subsys_initcall(genl_init
);
1055 * genl_family_attrbuf - return family's attrbuf
1056 * @family: the family
1058 * Return the family's attrbuf, while validating that it's
1059 * actually valid to access it.
1061 * You cannot use this function with a family that has parallel_ops
1062 * and you can only use it within (pre/post) doit/dumpit callbacks.
1064 struct nlattr
**genl_family_attrbuf(const struct genl_family
*family
)
1066 if (!WARN_ON(family
->parallel_ops
))
1067 lockdep_assert_held(&genl_mutex
);
1069 return family
->attrbuf
;
1071 EXPORT_SYMBOL(genl_family_attrbuf
);
1073 static int genlmsg_mcast(struct sk_buff
*skb
, u32 portid
, unsigned long group
,
1076 struct sk_buff
*tmp
;
1077 struct net
*net
, *prev
= NULL
;
1080 for_each_net_rcu(net
) {
1082 tmp
= skb_clone(skb
, flags
);
1087 err
= nlmsg_multicast(prev
->genl_sock
, tmp
,
1088 portid
, group
, flags
);
1096 return nlmsg_multicast(prev
->genl_sock
, skb
, portid
, group
, flags
);
1102 int genlmsg_multicast_allns(const struct genl_family
*family
,
1103 struct sk_buff
*skb
, u32 portid
,
1104 unsigned int group
, gfp_t flags
)
1106 if (WARN_ON_ONCE(group
>= family
->n_mcgrps
))
1108 group
= family
->mcgrp_offset
+ group
;
1109 return genlmsg_mcast(skb
, portid
, group
, flags
);
1111 EXPORT_SYMBOL(genlmsg_multicast_allns
);
1113 void genl_notify(const struct genl_family
*family
, struct sk_buff
*skb
,
1114 struct genl_info
*info
, u32 group
, gfp_t flags
)
1116 struct net
*net
= genl_info_net(info
);
1117 struct sock
*sk
= net
->genl_sock
;
1121 report
= nlmsg_report(info
->nlhdr
);
1123 if (WARN_ON_ONCE(group
>= family
->n_mcgrps
))
1125 group
= family
->mcgrp_offset
+ group
;
1126 nlmsg_notify(sk
, skb
, info
->snd_portid
, group
, report
, flags
);
1128 EXPORT_SYMBOL(genl_notify
);