2 * NetLabel Management Support
4 * This file defines the management functions for the NetLabel system. The
5 * NetLabel system manages static and dynamic label mappings for network
6 * protocols such as CIPSO and RIPSO.
8 * Author: Paul Moore <paul@paul-moore.com>
13 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006, 2008
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
23 * the GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <linux/types.h>
32 #include <linux/socket.h>
33 #include <linux/string.h>
34 #include <linux/skbuff.h>
36 #include <linux/in6.h>
37 #include <linux/slab.h>
39 #include <net/netlink.h>
40 #include <net/genetlink.h>
43 #include <net/netlabel.h>
44 #include <net/cipso_ipv4.h>
45 #include <linux/atomic.h>
47 #include "netlabel_domainhash.h"
48 #include "netlabel_user.h"
49 #include "netlabel_mgmt.h"
51 /* NetLabel configured protocol counter */
52 atomic_t netlabel_mgmt_protocount
= ATOMIC_INIT(0);
54 /* Argument struct for netlbl_domhsh_walk() */
55 struct netlbl_domhsh_walk_arg
{
56 struct netlink_callback
*nl_cb
;
61 /* NetLabel Generic NETLINK CIPSOv4 family */
62 static struct genl_family netlbl_mgmt_gnl_family
= {
63 .id
= GENL_ID_GENERATE
,
65 .name
= NETLBL_NLTYPE_MGMT_NAME
,
66 .version
= NETLBL_PROTO_VERSION
,
67 .maxattr
= NLBL_MGMT_A_MAX
,
70 /* NetLabel Netlink attribute policy */
71 static const struct nla_policy netlbl_mgmt_genl_policy
[NLBL_MGMT_A_MAX
+ 1] = {
72 [NLBL_MGMT_A_DOMAIN
] = { .type
= NLA_NUL_STRING
},
73 [NLBL_MGMT_A_PROTOCOL
] = { .type
= NLA_U32
},
74 [NLBL_MGMT_A_VERSION
] = { .type
= NLA_U32
},
75 [NLBL_MGMT_A_CV4DOI
] = { .type
= NLA_U32
},
83 * netlbl_mgmt_add - Handle an ADD message
84 * @info: the Generic NETLINK info block
85 * @audit_info: NetLabel audit information
88 * Helper function for the ADD and ADDDEF messages to add the domain mappings
89 * from the message to the hash table. See netlabel.h for a description of the
90 * message format. Returns zero on success, negative values on failure.
93 static int netlbl_mgmt_add_common(struct genl_info
*info
,
94 struct netlbl_audit
*audit_info
)
96 int ret_val
= -EINVAL
;
97 struct netlbl_dom_map
*entry
= NULL
;
98 struct netlbl_domaddr_map
*addrmap
= NULL
;
99 struct cipso_v4_doi
*cipsov4
= NULL
;
102 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
107 entry
->type
= nla_get_u32(info
->attrs
[NLBL_MGMT_A_PROTOCOL
]);
108 if (info
->attrs
[NLBL_MGMT_A_DOMAIN
]) {
109 size_t tmp_size
= nla_len(info
->attrs
[NLBL_MGMT_A_DOMAIN
]);
110 entry
->domain
= kmalloc(tmp_size
, GFP_KERNEL
);
111 if (entry
->domain
== NULL
) {
115 nla_strlcpy(entry
->domain
,
116 info
->attrs
[NLBL_MGMT_A_DOMAIN
], tmp_size
);
119 /* NOTE: internally we allow/use a entry->type value of
120 * NETLBL_NLTYPE_ADDRSELECT but we don't currently allow users
121 * to pass that as a protocol value because we need to know the
124 switch (entry
->type
) {
125 case NETLBL_NLTYPE_UNLABELED
:
127 case NETLBL_NLTYPE_CIPSOV4
:
128 if (!info
->attrs
[NLBL_MGMT_A_CV4DOI
])
131 tmp_val
= nla_get_u32(info
->attrs
[NLBL_MGMT_A_CV4DOI
]);
132 cipsov4
= cipso_v4_doi_getdef(tmp_val
);
135 entry
->type_def
.cipsov4
= cipsov4
;
141 if (info
->attrs
[NLBL_MGMT_A_IPV4ADDR
]) {
142 struct in_addr
*addr
;
143 struct in_addr
*mask
;
144 struct netlbl_domaddr4_map
*map
;
146 addrmap
= kzalloc(sizeof(*addrmap
), GFP_KERNEL
);
147 if (addrmap
== NULL
) {
151 INIT_LIST_HEAD(&addrmap
->list4
);
152 INIT_LIST_HEAD(&addrmap
->list6
);
154 if (nla_len(info
->attrs
[NLBL_MGMT_A_IPV4ADDR
]) !=
155 sizeof(struct in_addr
)) {
159 if (nla_len(info
->attrs
[NLBL_MGMT_A_IPV4MASK
]) !=
160 sizeof(struct in_addr
)) {
164 addr
= nla_data(info
->attrs
[NLBL_MGMT_A_IPV4ADDR
]);
165 mask
= nla_data(info
->attrs
[NLBL_MGMT_A_IPV4MASK
]);
167 map
= kzalloc(sizeof(*map
), GFP_KERNEL
);
172 map
->list
.addr
= addr
->s_addr
& mask
->s_addr
;
173 map
->list
.mask
= mask
->s_addr
;
175 map
->type
= entry
->type
;
177 map
->type_def
.cipsov4
= cipsov4
;
179 ret_val
= netlbl_af4list_add(&map
->list
, &addrmap
->list4
);
185 entry
->type
= NETLBL_NLTYPE_ADDRSELECT
;
186 entry
->type_def
.addrsel
= addrmap
;
187 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
188 } else if (info
->attrs
[NLBL_MGMT_A_IPV6ADDR
]) {
189 struct in6_addr
*addr
;
190 struct in6_addr
*mask
;
191 struct netlbl_domaddr6_map
*map
;
193 addrmap
= kzalloc(sizeof(*addrmap
), GFP_KERNEL
);
194 if (addrmap
== NULL
) {
198 INIT_LIST_HEAD(&addrmap
->list4
);
199 INIT_LIST_HEAD(&addrmap
->list6
);
201 if (nla_len(info
->attrs
[NLBL_MGMT_A_IPV6ADDR
]) !=
202 sizeof(struct in6_addr
)) {
206 if (nla_len(info
->attrs
[NLBL_MGMT_A_IPV6MASK
]) !=
207 sizeof(struct in6_addr
)) {
211 addr
= nla_data(info
->attrs
[NLBL_MGMT_A_IPV6ADDR
]);
212 mask
= nla_data(info
->attrs
[NLBL_MGMT_A_IPV6MASK
]);
214 map
= kzalloc(sizeof(*map
), GFP_KERNEL
);
219 ipv6_addr_copy(&map
->list
.addr
, addr
);
220 map
->list
.addr
.s6_addr32
[0] &= mask
->s6_addr32
[0];
221 map
->list
.addr
.s6_addr32
[1] &= mask
->s6_addr32
[1];
222 map
->list
.addr
.s6_addr32
[2] &= mask
->s6_addr32
[2];
223 map
->list
.addr
.s6_addr32
[3] &= mask
->s6_addr32
[3];
224 ipv6_addr_copy(&map
->list
.mask
, mask
);
226 map
->type
= entry
->type
;
228 ret_val
= netlbl_af6list_add(&map
->list
, &addrmap
->list6
);
234 entry
->type
= NETLBL_NLTYPE_ADDRSELECT
;
235 entry
->type_def
.addrsel
= addrmap
;
239 ret_val
= netlbl_domhsh_add(entry
, audit_info
);
247 cipso_v4_doi_putdef(cipsov4
);
249 kfree(entry
->domain
);
256 * netlbl_mgmt_listentry - List a NetLabel/LSM domain map entry
257 * @skb: the NETLINK buffer
258 * @entry: the map entry
261 * This function is a helper function used by the LISTALL and LISTDEF command
262 * handlers. The caller is responsible for ensuring that the RCU read lock
263 * is held. Returns zero on success, negative values on failure.
266 static int netlbl_mgmt_listentry(struct sk_buff
*skb
,
267 struct netlbl_dom_map
*entry
)
270 struct nlattr
*nla_a
;
271 struct nlattr
*nla_b
;
272 struct netlbl_af4list
*iter4
;
273 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
274 struct netlbl_af6list
*iter6
;
277 if (entry
->domain
!= NULL
) {
278 ret_val
= nla_put_string(skb
,
279 NLBL_MGMT_A_DOMAIN
, entry
->domain
);
284 switch (entry
->type
) {
285 case NETLBL_NLTYPE_ADDRSELECT
:
286 nla_a
= nla_nest_start(skb
, NLBL_MGMT_A_SELECTORLIST
);
290 netlbl_af4list_foreach_rcu(iter4
,
291 &entry
->type_def
.addrsel
->list4
) {
292 struct netlbl_domaddr4_map
*map4
;
293 struct in_addr addr_struct
;
295 nla_b
= nla_nest_start(skb
, NLBL_MGMT_A_ADDRSELECTOR
);
299 addr_struct
.s_addr
= iter4
->addr
;
300 ret_val
= nla_put(skb
, NLBL_MGMT_A_IPV4ADDR
,
301 sizeof(struct in_addr
),
305 addr_struct
.s_addr
= iter4
->mask
;
306 ret_val
= nla_put(skb
, NLBL_MGMT_A_IPV4MASK
,
307 sizeof(struct in_addr
),
311 map4
= netlbl_domhsh_addr4_entry(iter4
);
312 ret_val
= nla_put_u32(skb
, NLBL_MGMT_A_PROTOCOL
,
316 switch (map4
->type
) {
317 case NETLBL_NLTYPE_CIPSOV4
:
318 ret_val
= nla_put_u32(skb
, NLBL_MGMT_A_CV4DOI
,
319 map4
->type_def
.cipsov4
->doi
);
325 nla_nest_end(skb
, nla_b
);
327 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
328 netlbl_af6list_foreach_rcu(iter6
,
329 &entry
->type_def
.addrsel
->list6
) {
330 struct netlbl_domaddr6_map
*map6
;
332 nla_b
= nla_nest_start(skb
, NLBL_MGMT_A_ADDRSELECTOR
);
336 ret_val
= nla_put(skb
, NLBL_MGMT_A_IPV6ADDR
,
337 sizeof(struct in6_addr
),
341 ret_val
= nla_put(skb
, NLBL_MGMT_A_IPV6MASK
,
342 sizeof(struct in6_addr
),
346 map6
= netlbl_domhsh_addr6_entry(iter6
);
347 ret_val
= nla_put_u32(skb
, NLBL_MGMT_A_PROTOCOL
,
352 nla_nest_end(skb
, nla_b
);
356 nla_nest_end(skb
, nla_a
);
358 case NETLBL_NLTYPE_UNLABELED
:
359 ret_val
= nla_put_u32(skb
, NLBL_MGMT_A_PROTOCOL
, entry
->type
);
361 case NETLBL_NLTYPE_CIPSOV4
:
362 ret_val
= nla_put_u32(skb
, NLBL_MGMT_A_PROTOCOL
, entry
->type
);
365 ret_val
= nla_put_u32(skb
, NLBL_MGMT_A_CV4DOI
,
366 entry
->type_def
.cipsov4
->doi
);
374 * NetLabel Command Handlers
378 * netlbl_mgmt_add - Handle an ADD message
379 * @skb: the NETLINK buffer
380 * @info: the Generic NETLINK info block
383 * Process a user generated ADD message and add the domains from the message
384 * to the hash table. See netlabel.h for a description of the message format.
385 * Returns zero on success, negative values on failure.
388 static int netlbl_mgmt_add(struct sk_buff
*skb
, struct genl_info
*info
)
390 struct netlbl_audit audit_info
;
392 if ((!info
->attrs
[NLBL_MGMT_A_DOMAIN
]) ||
393 (!info
->attrs
[NLBL_MGMT_A_PROTOCOL
]) ||
394 (info
->attrs
[NLBL_MGMT_A_IPV4ADDR
] &&
395 info
->attrs
[NLBL_MGMT_A_IPV6ADDR
]) ||
396 (info
->attrs
[NLBL_MGMT_A_IPV4MASK
] &&
397 info
->attrs
[NLBL_MGMT_A_IPV6MASK
]) ||
398 ((info
->attrs
[NLBL_MGMT_A_IPV4ADDR
] != NULL
) ^
399 (info
->attrs
[NLBL_MGMT_A_IPV4MASK
] != NULL
)) ||
400 ((info
->attrs
[NLBL_MGMT_A_IPV6ADDR
] != NULL
) ^
401 (info
->attrs
[NLBL_MGMT_A_IPV6MASK
] != NULL
)))
404 netlbl_netlink_auditinfo(skb
, &audit_info
);
406 return netlbl_mgmt_add_common(info
, &audit_info
);
410 * netlbl_mgmt_remove - Handle a REMOVE message
411 * @skb: the NETLINK buffer
412 * @info: the Generic NETLINK info block
415 * Process a user generated REMOVE message and remove the specified domain
416 * mappings. Returns zero on success, negative values on failure.
419 static int netlbl_mgmt_remove(struct sk_buff
*skb
, struct genl_info
*info
)
422 struct netlbl_audit audit_info
;
424 if (!info
->attrs
[NLBL_MGMT_A_DOMAIN
])
427 netlbl_netlink_auditinfo(skb
, &audit_info
);
429 domain
= nla_data(info
->attrs
[NLBL_MGMT_A_DOMAIN
]);
430 return netlbl_domhsh_remove(domain
, &audit_info
);
434 * netlbl_mgmt_listall_cb - netlbl_domhsh_walk() callback for LISTALL
435 * @entry: the domain mapping hash table entry
436 * @arg: the netlbl_domhsh_walk_arg structure
439 * This function is designed to be used as a callback to the
440 * netlbl_domhsh_walk() function for use in generating a response for a LISTALL
441 * message. Returns the size of the message on success, negative values on
445 static int netlbl_mgmt_listall_cb(struct netlbl_dom_map
*entry
, void *arg
)
447 int ret_val
= -ENOMEM
;
448 struct netlbl_domhsh_walk_arg
*cb_arg
= arg
;
451 data
= genlmsg_put(cb_arg
->skb
, NETLINK_CB(cb_arg
->nl_cb
->skb
).pid
,
452 cb_arg
->seq
, &netlbl_mgmt_gnl_family
,
453 NLM_F_MULTI
, NLBL_MGMT_C_LISTALL
);
455 goto listall_cb_failure
;
457 ret_val
= netlbl_mgmt_listentry(cb_arg
->skb
, entry
);
459 goto listall_cb_failure
;
462 return genlmsg_end(cb_arg
->skb
, data
);
465 genlmsg_cancel(cb_arg
->skb
, data
);
470 * netlbl_mgmt_listall - Handle a LISTALL message
471 * @skb: the NETLINK buffer
472 * @cb: the NETLINK callback
475 * Process a user generated LISTALL message and dumps the domain hash table in
476 * a form suitable for use in a kernel generated LISTALL message. Returns zero
477 * on success, negative values on failure.
480 static int netlbl_mgmt_listall(struct sk_buff
*skb
,
481 struct netlink_callback
*cb
)
483 struct netlbl_domhsh_walk_arg cb_arg
;
484 u32 skip_bkt
= cb
->args
[0];
485 u32 skip_chain
= cb
->args
[1];
489 cb_arg
.seq
= cb
->nlh
->nlmsg_seq
;
491 netlbl_domhsh_walk(&skip_bkt
,
493 netlbl_mgmt_listall_cb
,
496 cb
->args
[0] = skip_bkt
;
497 cb
->args
[1] = skip_chain
;
502 * netlbl_mgmt_adddef - Handle an ADDDEF message
503 * @skb: the NETLINK buffer
504 * @info: the Generic NETLINK info block
507 * Process a user generated ADDDEF message and respond accordingly. Returns
508 * zero on success, negative values on failure.
511 static int netlbl_mgmt_adddef(struct sk_buff
*skb
, struct genl_info
*info
)
513 struct netlbl_audit audit_info
;
515 if ((!info
->attrs
[NLBL_MGMT_A_PROTOCOL
]) ||
516 (info
->attrs
[NLBL_MGMT_A_IPV4ADDR
] &&
517 info
->attrs
[NLBL_MGMT_A_IPV6ADDR
]) ||
518 (info
->attrs
[NLBL_MGMT_A_IPV4MASK
] &&
519 info
->attrs
[NLBL_MGMT_A_IPV6MASK
]) ||
520 ((info
->attrs
[NLBL_MGMT_A_IPV4ADDR
] != NULL
) ^
521 (info
->attrs
[NLBL_MGMT_A_IPV4MASK
] != NULL
)) ||
522 ((info
->attrs
[NLBL_MGMT_A_IPV6ADDR
] != NULL
) ^
523 (info
->attrs
[NLBL_MGMT_A_IPV6MASK
] != NULL
)))
526 netlbl_netlink_auditinfo(skb
, &audit_info
);
528 return netlbl_mgmt_add_common(info
, &audit_info
);
532 * netlbl_mgmt_removedef - Handle a REMOVEDEF message
533 * @skb: the NETLINK buffer
534 * @info: the Generic NETLINK info block
537 * Process a user generated REMOVEDEF message and remove the default domain
538 * mapping. Returns zero on success, negative values on failure.
541 static int netlbl_mgmt_removedef(struct sk_buff
*skb
, struct genl_info
*info
)
543 struct netlbl_audit audit_info
;
545 netlbl_netlink_auditinfo(skb
, &audit_info
);
547 return netlbl_domhsh_remove_default(&audit_info
);
551 * netlbl_mgmt_listdef - Handle a LISTDEF message
552 * @skb: the NETLINK buffer
553 * @info: the Generic NETLINK info block
556 * Process a user generated LISTDEF message and dumps the default domain
557 * mapping in a form suitable for use in a kernel generated LISTDEF message.
558 * Returns zero on success, negative values on failure.
561 static int netlbl_mgmt_listdef(struct sk_buff
*skb
, struct genl_info
*info
)
563 int ret_val
= -ENOMEM
;
564 struct sk_buff
*ans_skb
= NULL
;
566 struct netlbl_dom_map
*entry
;
568 ans_skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
571 data
= genlmsg_put_reply(ans_skb
, info
, &netlbl_mgmt_gnl_family
,
572 0, NLBL_MGMT_C_LISTDEF
);
574 goto listdef_failure
;
577 entry
= netlbl_domhsh_getentry(NULL
);
580 goto listdef_failure_lock
;
582 ret_val
= netlbl_mgmt_listentry(ans_skb
, entry
);
585 goto listdef_failure
;
587 genlmsg_end(ans_skb
, data
);
588 return genlmsg_reply(ans_skb
, info
);
590 listdef_failure_lock
:
598 * netlbl_mgmt_protocols_cb - Write an individual PROTOCOL message response
599 * @skb: the skb to write to
600 * @cb: the NETLINK callback
601 * @protocol: the NetLabel protocol to use in the message
604 * This function is to be used in conjunction with netlbl_mgmt_protocols() to
605 * answer a application's PROTOCOLS message. Returns the size of the message
606 * on success, negative values on failure.
609 static int netlbl_mgmt_protocols_cb(struct sk_buff
*skb
,
610 struct netlink_callback
*cb
,
613 int ret_val
= -ENOMEM
;
616 data
= genlmsg_put(skb
, NETLINK_CB(cb
->skb
).pid
, cb
->nlh
->nlmsg_seq
,
617 &netlbl_mgmt_gnl_family
, NLM_F_MULTI
,
618 NLBL_MGMT_C_PROTOCOLS
);
620 goto protocols_cb_failure
;
622 ret_val
= nla_put_u32(skb
, NLBL_MGMT_A_PROTOCOL
, protocol
);
624 goto protocols_cb_failure
;
626 return genlmsg_end(skb
, data
);
628 protocols_cb_failure
:
629 genlmsg_cancel(skb
, data
);
634 * netlbl_mgmt_protocols - Handle a PROTOCOLS message
635 * @skb: the NETLINK buffer
636 * @cb: the NETLINK callback
639 * Process a user generated PROTOCOLS message and respond accordingly.
642 static int netlbl_mgmt_protocols(struct sk_buff
*skb
,
643 struct netlink_callback
*cb
)
645 u32 protos_sent
= cb
->args
[0];
647 if (protos_sent
== 0) {
648 if (netlbl_mgmt_protocols_cb(skb
,
650 NETLBL_NLTYPE_UNLABELED
) < 0)
651 goto protocols_return
;
654 if (protos_sent
== 1) {
655 if (netlbl_mgmt_protocols_cb(skb
,
657 NETLBL_NLTYPE_CIPSOV4
) < 0)
658 goto protocols_return
;
663 cb
->args
[0] = protos_sent
;
668 * netlbl_mgmt_version - Handle a VERSION message
669 * @skb: the NETLINK buffer
670 * @info: the Generic NETLINK info block
673 * Process a user generated VERSION message and respond accordingly. Returns
674 * zero on success, negative values on failure.
677 static int netlbl_mgmt_version(struct sk_buff
*skb
, struct genl_info
*info
)
679 int ret_val
= -ENOMEM
;
680 struct sk_buff
*ans_skb
= NULL
;
683 ans_skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
686 data
= genlmsg_put_reply(ans_skb
, info
, &netlbl_mgmt_gnl_family
,
687 0, NLBL_MGMT_C_VERSION
);
689 goto version_failure
;
691 ret_val
= nla_put_u32(ans_skb
,
693 NETLBL_PROTO_VERSION
);
695 goto version_failure
;
697 genlmsg_end(ans_skb
, data
);
698 return genlmsg_reply(ans_skb
, info
);
707 * NetLabel Generic NETLINK Command Definitions
710 static struct genl_ops netlbl_mgmt_genl_ops
[] = {
712 .cmd
= NLBL_MGMT_C_ADD
,
713 .flags
= GENL_ADMIN_PERM
,
714 .policy
= netlbl_mgmt_genl_policy
,
715 .doit
= netlbl_mgmt_add
,
719 .cmd
= NLBL_MGMT_C_REMOVE
,
720 .flags
= GENL_ADMIN_PERM
,
721 .policy
= netlbl_mgmt_genl_policy
,
722 .doit
= netlbl_mgmt_remove
,
726 .cmd
= NLBL_MGMT_C_LISTALL
,
728 .policy
= netlbl_mgmt_genl_policy
,
730 .dumpit
= netlbl_mgmt_listall
,
733 .cmd
= NLBL_MGMT_C_ADDDEF
,
734 .flags
= GENL_ADMIN_PERM
,
735 .policy
= netlbl_mgmt_genl_policy
,
736 .doit
= netlbl_mgmt_adddef
,
740 .cmd
= NLBL_MGMT_C_REMOVEDEF
,
741 .flags
= GENL_ADMIN_PERM
,
742 .policy
= netlbl_mgmt_genl_policy
,
743 .doit
= netlbl_mgmt_removedef
,
747 .cmd
= NLBL_MGMT_C_LISTDEF
,
749 .policy
= netlbl_mgmt_genl_policy
,
750 .doit
= netlbl_mgmt_listdef
,
754 .cmd
= NLBL_MGMT_C_PROTOCOLS
,
756 .policy
= netlbl_mgmt_genl_policy
,
758 .dumpit
= netlbl_mgmt_protocols
,
761 .cmd
= NLBL_MGMT_C_VERSION
,
763 .policy
= netlbl_mgmt_genl_policy
,
764 .doit
= netlbl_mgmt_version
,
770 * NetLabel Generic NETLINK Protocol Functions
774 * netlbl_mgmt_genl_init - Register the NetLabel management component
777 * Register the NetLabel management component with the Generic NETLINK
778 * mechanism. Returns zero on success, negative values on failure.
781 int __init
netlbl_mgmt_genl_init(void)
783 return genl_register_family_with_ops(&netlbl_mgmt_gnl_family
,
784 netlbl_mgmt_genl_ops
, ARRAY_SIZE(netlbl_mgmt_genl_ops
));