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>
21 #include <net/genetlink.h>
23 static DEFINE_MUTEX(genl_mutex); /* serialization of message processing */
24 static DECLARE_RWSEM(cb_lock);
28 mutex_lock(&genl_mutex);
30 EXPORT_SYMBOL(genl_lock);
32 void genl_unlock(void)
34 mutex_unlock(&genl_mutex);
36 EXPORT_SYMBOL(genl_unlock);
39 int lockdep_genl_is_held(void)
41 return lockdep_is_held(&genl_mutex);
43 EXPORT_SYMBOL(lockdep_genl_is_held);
46 static void genl_lock_all(void)
52 static void genl_unlock_all(void)
58 #define GENL_FAM_TAB_SIZE 16
59 #define GENL_FAM_TAB_MASK (GENL_FAM_TAB_SIZE - 1)
61 static struct list_head family_ht[GENL_FAM_TAB_SIZE];
63 * Bitmap of multicast groups that are currently in use.
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 * Bit 1 is marked as already used since the drop-monitor code
69 * abuses the API and thinks it can statically use group 1.
70 * That group will typically conflict with other groups that
71 * any proper users use.
72 * Bit 16 is marked as used since it's used for generic netlink
73 * and the code no longer marks pre-reserved IDs as used.
74 * Bit 17 is marked as already used since the VFS quota code
75 * also abused this API and relied on family == group ID, we
76 * cater to that by giving it a static family and group ID.
78 static unsigned long mc_group_start = 0x3 | BIT(GENL_ID_CTRL) |
79 BIT(GENL_ID_VFS_DQUOT);
80 static unsigned long *mc_groups = &mc_group_start;
81 static unsigned long mc_groups_longs = 1;
83 static int genl_ctrl_event(int event, struct genl_family *family,
84 const struct genl_multicast_group *grp,
87 static inline unsigned int genl_family_hash(unsigned int id)
89 return id & GENL_FAM_TAB_MASK;
92 static inline struct list_head *genl_family_chain(unsigned int id)
94 return &family_ht[genl_family_hash(id)];
97 static struct genl_family *genl_family_find_byid(unsigned int id)
99 struct genl_family *f;
101 list_for_each_entry(f, genl_family_chain(id), family_list)
108 static struct genl_family *genl_family_find_byname(char *name)
110 struct genl_family *f;
113 for (i = 0; i < GENL_FAM_TAB_SIZE; i++)
114 list_for_each_entry(f, genl_family_chain(i), family_list)
115 if (strcmp(f->name, name) == 0)
121 static const struct genl_ops *genl_get_cmd(u8 cmd, struct genl_family *family)
125 for (i = 0; i < family->n_ops; i++)
126 if (family->ops[i].cmd == cmd)
127 return &family->ops[i];
132 /* Of course we are going to have problems once we hit
133 * 2^16 alive types, but that can only happen by year 2K
135 static u16 genl_generate_id(void)
137 static u16 id_gen_idx = GENL_MIN_ID;
140 for (i = 0; i <= GENL_MAX_ID - GENL_MIN_ID; i++) {
141 if (id_gen_idx != GENL_ID_VFS_DQUOT &&
142 !genl_family_find_byid(id_gen_idx))
144 if (++id_gen_idx > GENL_MAX_ID)
145 id_gen_idx = GENL_MIN_ID;
151 static int genl_allocate_reserve_groups(int n_groups, int *first_id)
153 unsigned long *new_groups;
161 id = find_first_zero_bit(mc_groups,
165 id = find_next_zero_bit(mc_groups,
166 mc_groups_longs * BITS_PER_LONG,
171 i < min_t(int, id + n_groups,
172 mc_groups_longs * BITS_PER_LONG);
174 if (test_bit(i, mc_groups)) {
181 if (id >= mc_groups_longs * BITS_PER_LONG) {
182 unsigned long new_longs = mc_groups_longs +
183 BITS_TO_LONGS(n_groups);
184 size_t nlen = new_longs * sizeof(unsigned long);
186 if (mc_groups == &mc_group_start) {
187 new_groups = kzalloc(nlen, GFP_KERNEL);
190 mc_groups = new_groups;
191 *mc_groups = mc_group_start;
193 new_groups = krealloc(mc_groups, nlen,
197 mc_groups = new_groups;
198 for (i = 0; i < BITS_TO_LONGS(n_groups); i++)
199 mc_groups[mc_groups_longs + i] = 0;
201 mc_groups_longs = new_longs;
205 for (i = id; i < id + n_groups; i++)
206 set_bit(i, mc_groups);
211 static struct genl_family genl_ctrl;
213 static int genl_validate_assign_mc_groups(struct genl_family *family)
216 int n_groups = family->n_mcgrps;
218 bool groups_allocated = false;
223 for (i = 0; i < n_groups; i++) {
224 const struct genl_multicast_group *grp = &family->mcgrps[i];
226 if (WARN_ON(grp->name[0] == '\0'))
228 if (WARN_ON(memchr(grp->name, '\0', GENL_NAMSIZ) == NULL))
232 /* special-case our own group and hacks */
233 if (family == &genl_ctrl) {
234 first_id = GENL_ID_CTRL;
235 BUG_ON(n_groups != 1);
236 } else if (strcmp(family->name, "NET_DM") == 0) {
238 BUG_ON(n_groups != 1);
239 } else if (strcmp(family->name, "VFS_DQUOT") == 0) {
240 first_id = GENL_ID_VFS_DQUOT;
241 BUG_ON(n_groups != 1);
243 groups_allocated = true;
244 err = genl_allocate_reserve_groups(n_groups, &first_id);
249 family->mcgrp_offset = first_id;
251 /* if still initializing, can't and don't need to to realloc bitmaps */
252 if (!init_net.genl_sock)
255 if (family->netnsok) {
258 netlink_table_grab();
260 for_each_net_rcu(net) {
261 err = __netlink_change_ngroups(net->genl_sock,
262 mc_groups_longs * BITS_PER_LONG);
265 * No need to roll back, can only fail if
266 * memory allocation fails and then the
267 * number of _possible_ groups has been
268 * increased on some sockets which is ok.
274 netlink_table_ungrab();
276 err = netlink_change_ngroups(init_net.genl_sock,
277 mc_groups_longs * BITS_PER_LONG);
280 if (groups_allocated && err) {
281 for (i = 0; i < family->n_mcgrps; i++)
282 clear_bit(family->mcgrp_offset + i, mc_groups);
288 static void genl_unregister_mc_groups(struct genl_family *family)
293 netlink_table_grab();
295 for_each_net_rcu(net) {
296 for (i = 0; i < family->n_mcgrps; i++)
297 __netlink_clear_multicast_users(
298 net->genl_sock, family->mcgrp_offset + i);
301 netlink_table_ungrab();
303 for (i = 0; i < family->n_mcgrps; i++) {
304 int grp_id = family->mcgrp_offset + i;
307 clear_bit(grp_id, mc_groups);
308 genl_ctrl_event(CTRL_CMD_DELMCAST_GRP, family,
309 &family->mcgrps[i], grp_id);
313 static int genl_validate_ops(struct genl_family *family)
315 const struct genl_ops *ops = family->ops;
316 unsigned int n_ops = family->n_ops;
319 if (WARN_ON(n_ops && !ops))
325 for (i = 0; i < n_ops; i++) {
326 if (ops[i].dumpit == NULL && ops[i].doit == NULL)
328 for (j = i + 1; j < n_ops; j++)
329 if (ops[i].cmd == ops[j].cmd)
333 /* family is not registered yet, so no locking needed */
335 family->n_ops = n_ops;
341 * __genl_register_family - register a generic netlink family
342 * @family: generic netlink family
344 * Registers the specified family after validating it first. Only one
345 * family may be registered with the same family name or identifier.
346 * The family id may equal GENL_ID_GENERATE causing an unique id to
347 * be automatically generated and assigned.
349 * The family's ops array must already be assigned, you can use the
350 * genl_register_family_with_ops() helper function.
352 * Return 0 on success or a negative error code.
354 int __genl_register_family(struct genl_family *family)
356 int err = -EINVAL, i;
358 if (family->id && family->id < GENL_MIN_ID)
361 if (family->id > GENL_MAX_ID)
364 err = genl_validate_ops(family);
370 if (genl_family_find_byname(family->name)) {
375 if (family->id == GENL_ID_GENERATE) {
376 u16 newid = genl_generate_id();
384 } else if (genl_family_find_byid(family->id)) {
389 if (family->maxattr && !family->parallel_ops) {
390 family->attrbuf = kmalloc((family->maxattr+1) *
391 sizeof(struct nlattr *), GFP_KERNEL);
392 if (family->attrbuf == NULL) {
397 family->attrbuf = NULL;
399 err = genl_validate_assign_mc_groups(family);
403 list_add_tail(&family->family_list, genl_family_chain(family->id));
406 /* send all events */
407 genl_ctrl_event(CTRL_CMD_NEWFAMILY, family, NULL, 0);
408 for (i = 0; i < family->n_mcgrps; i++)
409 genl_ctrl_event(CTRL_CMD_NEWMCAST_GRP, family,
410 &family->mcgrps[i], family->mcgrp_offset + i);
419 EXPORT_SYMBOL(__genl_register_family);
422 * genl_unregister_family - unregister generic netlink family
423 * @family: generic netlink family
425 * Unregisters the specified family.
427 * Returns 0 on success or a negative error code.
429 int genl_unregister_family(struct genl_family *family)
431 struct genl_family *rc;
435 genl_unregister_mc_groups(family);
437 list_for_each_entry(rc, genl_family_chain(family->id), family_list) {
438 if (family->id != rc->id || strcmp(rc->name, family->name))
441 list_del(&rc->family_list);
445 kfree(family->attrbuf);
446 genl_ctrl_event(CTRL_CMD_DELFAMILY, family, NULL, 0);
454 EXPORT_SYMBOL(genl_unregister_family);
457 * genlmsg_put - Add generic netlink header to netlink message
458 * @skb: socket buffer holding the message
459 * @portid: netlink portid the message is addressed to
460 * @seq: sequence number (usually the one of the sender)
461 * @family: generic netlink family
462 * @flags: netlink message flags
463 * @cmd: generic netlink command
465 * Returns pointer to user specific header
467 void *genlmsg_put(struct sk_buff *skb, u32 portid, u32 seq,
468 struct genl_family *family, int flags, u8 cmd)
470 struct nlmsghdr *nlh;
471 struct genlmsghdr *hdr;
473 nlh = nlmsg_put(skb, portid, seq, family->id, GENL_HDRLEN +
474 family->hdrsize, flags);
478 hdr = nlmsg_data(nlh);
480 hdr->version = family->version;
483 return (char *) hdr + GENL_HDRLEN;
485 EXPORT_SYMBOL(genlmsg_put);
487 static int genl_lock_dumpit(struct sk_buff *skb, struct netlink_callback *cb)
489 /* our ops are always const - netlink API doesn't propagate that */
490 const struct genl_ops *ops = cb->data;
494 rc = ops->dumpit(skb, cb);
499 static int genl_lock_done(struct netlink_callback *cb)
501 /* our ops are always const - netlink API doesn't propagate that */
502 const struct genl_ops *ops = cb->data;
513 static int genl_family_rcv_msg(struct genl_family *family,
515 struct nlmsghdr *nlh)
517 const struct genl_ops *ops;
518 struct net *net = sock_net(skb->sk);
519 struct genl_info info;
520 struct genlmsghdr *hdr = nlmsg_data(nlh);
521 struct nlattr **attrbuf;
524 /* this family doesn't exist in this netns */
525 if (!family->netnsok && !net_eq(net, &init_net))
528 hdrlen = GENL_HDRLEN + family->hdrsize;
529 if (nlh->nlmsg_len < nlmsg_msg_size(hdrlen))
532 ops = genl_get_cmd(hdr->cmd, family);
536 if ((ops->flags & GENL_ADMIN_PERM) &&
537 !capable(CAP_NET_ADMIN))
540 if ((nlh->nlmsg_flags & NLM_F_DUMP) == NLM_F_DUMP) {
543 if (ops->dumpit == NULL)
546 if (!family->parallel_ops) {
547 struct netlink_dump_control c = {
548 .module = family->module,
549 /* we have const, but the netlink API doesn't */
551 .dump = genl_lock_dumpit,
552 .done = genl_lock_done,
556 rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c);
560 struct netlink_dump_control c = {
561 .module = family->module,
566 rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c);
572 if (ops->doit == NULL)
575 if (family->maxattr && family->parallel_ops) {
576 attrbuf = kmalloc((family->maxattr+1) *
577 sizeof(struct nlattr *), GFP_KERNEL);
581 attrbuf = family->attrbuf;
584 err = nlmsg_parse(nlh, hdrlen, attrbuf, family->maxattr,
590 info.snd_seq = nlh->nlmsg_seq;
591 info.snd_portid = NETLINK_CB(skb).portid;
593 info.genlhdr = nlmsg_data(nlh);
594 info.userhdr = nlmsg_data(nlh) + GENL_HDRLEN;
595 info.attrs = attrbuf;
596 genl_info_net_set(&info, net);
597 memset(&info.user_ptr, 0, sizeof(info.user_ptr));
599 if (family->pre_doit) {
600 err = family->pre_doit(ops, skb, &info);
605 err = ops->doit(skb, &info);
607 if (family->post_doit)
608 family->post_doit(ops, skb, &info);
611 if (family->parallel_ops)
617 static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
619 struct genl_family *family;
622 family = genl_family_find_byid(nlh->nlmsg_type);
626 if (!family->parallel_ops)
629 err = genl_family_rcv_msg(family, skb, nlh);
631 if (!family->parallel_ops)
637 static void genl_rcv(struct sk_buff *skb)
640 netlink_rcv_skb(skb, &genl_rcv_msg);
644 /**************************************************************************
646 **************************************************************************/
648 static struct genl_family genl_ctrl = {
652 .maxattr = CTRL_ATTR_MAX,
656 static int ctrl_fill_info(struct genl_family *family, u32 portid, u32 seq,
657 u32 flags, struct sk_buff *skb, u8 cmd)
661 hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd);
665 if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, family->name) ||
666 nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, family->id) ||
667 nla_put_u32(skb, CTRL_ATTR_VERSION, family->version) ||
668 nla_put_u32(skb, CTRL_ATTR_HDRSIZE, family->hdrsize) ||
669 nla_put_u32(skb, CTRL_ATTR_MAXATTR, family->maxattr))
670 goto nla_put_failure;
673 struct nlattr *nla_ops;
676 nla_ops = nla_nest_start(skb, CTRL_ATTR_OPS);
678 goto nla_put_failure;
680 for (i = 0; i < family->n_ops; i++) {
682 const struct genl_ops *ops = &family->ops[i];
683 u32 op_flags = ops->flags;
686 op_flags |= GENL_CMD_CAP_DUMP;
688 op_flags |= GENL_CMD_CAP_DO;
690 op_flags |= GENL_CMD_CAP_HASPOL;
692 nest = nla_nest_start(skb, i + 1);
694 goto nla_put_failure;
696 if (nla_put_u32(skb, CTRL_ATTR_OP_ID, ops->cmd) ||
697 nla_put_u32(skb, CTRL_ATTR_OP_FLAGS, op_flags))
698 goto nla_put_failure;
700 nla_nest_end(skb, nest);
703 nla_nest_end(skb, nla_ops);
706 if (family->n_mcgrps) {
707 struct nlattr *nla_grps;
710 nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS);
711 if (nla_grps == NULL)
712 goto nla_put_failure;
714 for (i = 0; i < family->n_mcgrps; i++) {
716 const struct genl_multicast_group *grp;
718 grp = &family->mcgrps[i];
720 nest = nla_nest_start(skb, i + 1);
722 goto nla_put_failure;
724 if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID,
725 family->mcgrp_offset + i) ||
726 nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME,
728 goto nla_put_failure;
730 nla_nest_end(skb, nest);
732 nla_nest_end(skb, nla_grps);
735 return genlmsg_end(skb, hdr);
738 genlmsg_cancel(skb, hdr);
742 static int ctrl_fill_mcgrp_info(struct genl_family *family,
743 const struct genl_multicast_group *grp,
744 int grp_id, u32 portid, u32 seq, u32 flags,
745 struct sk_buff *skb, u8 cmd)
748 struct nlattr *nla_grps;
751 hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd);
755 if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, family->name) ||
756 nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, family->id))
757 goto nla_put_failure;
759 nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS);
760 if (nla_grps == NULL)
761 goto nla_put_failure;
763 nest = nla_nest_start(skb, 1);
765 goto nla_put_failure;
767 if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID, grp_id) ||
768 nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME,
770 goto nla_put_failure;
772 nla_nest_end(skb, nest);
773 nla_nest_end(skb, nla_grps);
775 return genlmsg_end(skb, hdr);
778 genlmsg_cancel(skb, hdr);
782 static int ctrl_dumpfamily(struct sk_buff *skb, struct netlink_callback *cb)
786 struct genl_family *rt;
787 struct net *net = sock_net(skb->sk);
788 int chains_to_skip = cb->args[0];
789 int fams_to_skip = cb->args[1];
791 for (i = chains_to_skip; i < GENL_FAM_TAB_SIZE; i++) {
793 list_for_each_entry(rt, genl_family_chain(i), family_list) {
794 if (!rt->netnsok && !net_eq(net, &init_net))
796 if (++n < fams_to_skip)
798 if (ctrl_fill_info(rt, NETLINK_CB(cb->skb).portid,
799 cb->nlh->nlmsg_seq, NLM_F_MULTI,
800 skb, CTRL_CMD_NEWFAMILY) < 0)
814 static struct sk_buff *ctrl_build_family_msg(struct genl_family *family,
815 u32 portid, int seq, u8 cmd)
820 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
822 return ERR_PTR(-ENOBUFS);
824 err = ctrl_fill_info(family, portid, seq, 0, skb, cmd);
833 static struct sk_buff *
834 ctrl_build_mcgrp_msg(struct genl_family *family,
835 const struct genl_multicast_group *grp,
836 int grp_id, u32 portid, int seq, u8 cmd)
841 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
843 return ERR_PTR(-ENOBUFS);
845 err = ctrl_fill_mcgrp_info(family, grp, grp_id, portid,
855 static const struct nla_policy ctrl_policy[CTRL_ATTR_MAX+1] = {
856 [CTRL_ATTR_FAMILY_ID] = { .type = NLA_U16 },
857 [CTRL_ATTR_FAMILY_NAME] = { .type = NLA_NUL_STRING,
858 .len = GENL_NAMSIZ - 1 },
861 static int ctrl_getfamily(struct sk_buff *skb, struct genl_info *info)
864 struct genl_family *res = NULL;
867 if (info->attrs[CTRL_ATTR_FAMILY_ID]) {
868 u16 id = nla_get_u16(info->attrs[CTRL_ATTR_FAMILY_ID]);
869 res = genl_family_find_byid(id);
873 if (info->attrs[CTRL_ATTR_FAMILY_NAME]) {
876 name = nla_data(info->attrs[CTRL_ATTR_FAMILY_NAME]);
877 res = genl_family_find_byname(name);
878 #ifdef CONFIG_MODULES
882 request_module("net-pf-%d-proto-%d-family-%s",
883 PF_NETLINK, NETLINK_GENERIC, name);
886 res = genl_family_find_byname(name);
895 if (!res->netnsok && !net_eq(genl_info_net(info), &init_net)) {
896 /* family doesn't exist here */
900 msg = ctrl_build_family_msg(res, info->snd_portid, info->snd_seq,
905 return genlmsg_reply(msg, info);
908 static int genl_ctrl_event(int event, struct genl_family *family,
909 const struct genl_multicast_group *grp,
914 /* genl is still initialising */
915 if (!init_net.genl_sock)
919 case CTRL_CMD_NEWFAMILY:
920 case CTRL_CMD_DELFAMILY:
922 msg = ctrl_build_family_msg(family, 0, 0, event);
924 case CTRL_CMD_NEWMCAST_GRP:
925 case CTRL_CMD_DELMCAST_GRP:
927 msg = ctrl_build_mcgrp_msg(family, grp, grp_id, 0, 0, event);
936 if (!family->netnsok) {
937 genlmsg_multicast_netns(&genl_ctrl, &init_net, msg, 0,
941 genlmsg_multicast_allns(&genl_ctrl, msg, 0,
949 static struct genl_ops genl_ctrl_ops[] = {
951 .cmd = CTRL_CMD_GETFAMILY,
952 .doit = ctrl_getfamily,
953 .dumpit = ctrl_dumpfamily,
954 .policy = ctrl_policy,
958 static struct genl_multicast_group genl_ctrl_groups[] = {
959 { .name = "notify", },
962 static int __net_init genl_pernet_init(struct net *net)
964 struct netlink_kernel_cfg cfg = {
966 .flags = NL_CFG_F_NONROOT_RECV,
969 /* we'll bump the group number right afterwards */
970 net->genl_sock = netlink_kernel_create(net, NETLINK_GENERIC, &cfg);
972 if (!net->genl_sock && net_eq(net, &init_net))
973 panic("GENL: Cannot initialize generic netlink\n");
981 static void __net_exit genl_pernet_exit(struct net *net)
983 netlink_kernel_release(net->genl_sock);
984 net->genl_sock = NULL;
987 static struct pernet_operations genl_pernet_ops = {
988 .init = genl_pernet_init,
989 .exit = genl_pernet_exit,
992 static int __init genl_init(void)
996 for (i = 0; i < GENL_FAM_TAB_SIZE; i++)
997 INIT_LIST_HEAD(&family_ht[i]);
999 err = genl_register_family_with_ops_groups(&genl_ctrl, genl_ctrl_ops,
1004 err = register_pernet_subsys(&genl_pernet_ops);
1011 panic("GENL: Cannot register controller: %d\n", err);
1014 subsys_initcall(genl_init);
1016 static int genlmsg_mcast(struct sk_buff *skb, u32 portid, unsigned long group,
1019 struct sk_buff *tmp;
1020 struct net *net, *prev = NULL;
1023 for_each_net_rcu(net) {
1025 tmp = skb_clone(skb, flags);
1030 err = nlmsg_multicast(prev->genl_sock, tmp,
1031 portid, group, flags);
1039 return nlmsg_multicast(prev->genl_sock, skb, portid, group, flags);
1045 int genlmsg_multicast_allns(struct genl_family *family, struct sk_buff *skb,
1046 u32 portid, unsigned int group, gfp_t flags)
1048 if (group >= family->n_mcgrps)
1050 group = family->mcgrp_offset + group;
1051 return genlmsg_mcast(skb, portid, group, flags);
1053 EXPORT_SYMBOL(genlmsg_multicast_allns);
1055 void genl_notify(struct genl_family *family,
1056 struct sk_buff *skb, struct net *net, u32 portid, u32 group,
1057 struct nlmsghdr *nlh, gfp_t flags)
1059 struct sock *sk = net->genl_sock;
1063 report = nlmsg_report(nlh);
1065 if (group >= family->n_mcgrps)
1067 group = family->mcgrp_offset + group;
1068 nlmsg_notify(sk, skb, portid, group, report, flags);
1070 EXPORT_SYMBOL(genl_notify);