netlabel_mgmt.c 16.2 KB
Newer Older
P
Paul Moore 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * NetLabel Management Support
 *
 * This file defines the management functions for the NetLabel system.  The
 * NetLabel system manages static and dynamic label mappings for network
 * protocols such as CIPSO and RIPSO.
 *
 * Author: Paul Moore <paul.moore@hp.com>
 *
 */

/*
 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
 *
 * This program is free software;  you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY;  without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 * the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program;  if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 */

#include <linux/types.h>
#include <linux/socket.h>
#include <linux/string.h>
#include <linux/skbuff.h>
#include <net/sock.h>
#include <net/netlink.h>
#include <net/genetlink.h>
#include <net/netlabel.h>
#include <net/cipso_ipv4.h>

#include "netlabel_domainhash.h"
#include "netlabel_user.h"
#include "netlabel_mgmt.h"

45 46 47 48 49 50 51
/* Argument struct for netlbl_domhsh_walk() */
struct netlbl_domhsh_walk_arg {
	struct netlink_callback *nl_cb;
	struct sk_buff *skb;
	u32 seq;
};

P
Paul Moore 已提交
52 53 54 55 56 57
/* NetLabel Generic NETLINK CIPSOv4 family */
static struct genl_family netlbl_mgmt_gnl_family = {
	.id = GENL_ID_GENERATE,
	.hdrsize = 0,
	.name = NETLBL_NLTYPE_MGMT_NAME,
	.version = NETLBL_PROTO_VERSION,
58
	.maxattr = NLBL_MGMT_A_MAX,
P
Paul Moore 已提交
59 60
};

61 62 63 64 65 66 67
/* NetLabel Netlink attribute policy */
static struct nla_policy netlbl_mgmt_genl_policy[NLBL_MGMT_A_MAX + 1] = {
	[NLBL_MGMT_A_DOMAIN] = { .type = NLA_NUL_STRING },
	[NLBL_MGMT_A_PROTOCOL] = { .type = NLA_U32 },
	[NLBL_MGMT_A_VERSION] = { .type = NLA_U32 },
	[NLBL_MGMT_A_CV4DOI] = { .type = NLA_U32 },
};
P
Paul Moore 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

/*
 * NetLabel Command Handlers
 */

/**
 * netlbl_mgmt_add - Handle an ADD message
 * @skb: the NETLINK buffer
 * @info: the Generic NETLINK info block
 *
 * Description:
 * Process a user generated ADD message and add the domains from the message
 * to the hash table.  See netlabel.h for a description of the message format.
 * Returns zero on success, negative values on failure.
 *
 */
static int netlbl_mgmt_add(struct sk_buff *skb, struct genl_info *info)
{
	int ret_val = -EINVAL;
	struct netlbl_dom_map *entry = NULL;
88
	size_t tmp_size;
P
Paul Moore 已提交
89
	u32 tmp_val;
90
	struct netlbl_audit audit_info;
P
Paul Moore 已提交
91

92 93
	if (!info->attrs[NLBL_MGMT_A_DOMAIN] ||
	    !info->attrs[NLBL_MGMT_A_PROTOCOL])
P
Paul Moore 已提交
94 95
		goto add_failure;

96 97
	netlbl_netlink_auditinfo(skb, &audit_info);

98 99 100 101 102 103 104 105 106
	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
	if (entry == NULL) {
		ret_val = -ENOMEM;
		goto add_failure;
	}
	tmp_size = nla_len(info->attrs[NLBL_MGMT_A_DOMAIN]);
	entry->domain = kmalloc(tmp_size, GFP_KERNEL);
	if (entry->domain == NULL) {
		ret_val = -ENOMEM;
P
Paul Moore 已提交
107
		goto add_failure;
108 109 110
	}
	entry->type = nla_get_u32(info->attrs[NLBL_MGMT_A_PROTOCOL]);
	nla_strlcpy(entry->domain, info->attrs[NLBL_MGMT_A_DOMAIN], tmp_size);
P
Paul Moore 已提交
111

112 113
	switch (entry->type) {
	case NETLBL_NLTYPE_UNLABELED:
114
		ret_val = netlbl_domhsh_add(entry, &audit_info);
115 116 117
		break;
	case NETLBL_NLTYPE_CIPSOV4:
		if (!info->attrs[NLBL_MGMT_A_CV4DOI])
P
Paul Moore 已提交
118 119
			goto add_failure;

120 121 122 123 124 125 126 127
		tmp_val = nla_get_u32(info->attrs[NLBL_MGMT_A_CV4DOI]);
		/* We should be holding a rcu_read_lock() here while we hold
		 * the result but since the entry will always be deleted when
		 * the CIPSO DOI is deleted we aren't going to keep the
		 * lock. */
		rcu_read_lock();
		entry->type_def.cipsov4 = cipso_v4_doi_getdef(tmp_val);
		if (entry->type_def.cipsov4 == NULL) {
P
Paul Moore 已提交
128 129
			rcu_read_unlock();
			goto add_failure;
130
		}
131
		ret_val = netlbl_domhsh_add(entry, &audit_info);
132 133 134 135
		rcu_read_unlock();
		break;
	default:
		goto add_failure;
P
Paul Moore 已提交
136
	}
137 138
	if (ret_val != 0)
		goto add_failure;
P
Paul Moore 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160

	return 0;

add_failure:
	if (entry)
		kfree(entry->domain);
	kfree(entry);
	return ret_val;
}

/**
 * netlbl_mgmt_remove - Handle a REMOVE message
 * @skb: the NETLINK buffer
 * @info: the Generic NETLINK info block
 *
 * Description:
 * Process a user generated REMOVE message and remove the specified domain
 * mappings.  Returns zero on success, negative values on failure.
 *
 */
static int netlbl_mgmt_remove(struct sk_buff *skb, struct genl_info *info)
{
161
	char *domain;
162
	struct netlbl_audit audit_info;
P
Paul Moore 已提交
163

164 165
	if (!info->attrs[NLBL_MGMT_A_DOMAIN])
		return -EINVAL;
P
Paul Moore 已提交
166

167 168
	netlbl_netlink_auditinfo(skb, &audit_info);

169
	domain = nla_data(info->attrs[NLBL_MGMT_A_DOMAIN]);
170
	return netlbl_domhsh_remove(domain, &audit_info);
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
}

/**
 * netlbl_mgmt_listall_cb - netlbl_domhsh_walk() callback for LISTALL
 * @entry: the domain mapping hash table entry
 * @arg: the netlbl_domhsh_walk_arg structure
 *
 * Description:
 * This function is designed to be used as a callback to the
 * netlbl_domhsh_walk() function for use in generating a response for a LISTALL
 * message.  Returns the size of the message on success, negative values on
 * failure.
 *
 */
static int netlbl_mgmt_listall_cb(struct netlbl_dom_map *entry, void *arg)
{
	int ret_val = -ENOMEM;
	struct netlbl_domhsh_walk_arg *cb_arg = arg;
	void *data;

	data = netlbl_netlink_hdr_put(cb_arg->skb,
				      NETLINK_CB(cb_arg->nl_cb->skb).pid,
				      cb_arg->seq,
				      netlbl_mgmt_gnl_family.id,
				      NLM_F_MULTI,
				      NLBL_MGMT_C_LISTALL);
	if (data == NULL)
		goto listall_cb_failure;

	ret_val = nla_put_string(cb_arg->skb,
				 NLBL_MGMT_A_DOMAIN,
				 entry->domain);
	if (ret_val != 0)
		goto listall_cb_failure;
	ret_val = nla_put_u32(cb_arg->skb, NLBL_MGMT_A_PROTOCOL, entry->type);
	if (ret_val != 0)
		goto listall_cb_failure;
	switch (entry->type) {
	case NETLBL_NLTYPE_CIPSOV4:
		ret_val = nla_put_u32(cb_arg->skb,
				      NLBL_MGMT_A_CV4DOI,
				      entry->type_def.cipsov4->doi);
P
Paul Moore 已提交
213
		if (ret_val != 0)
214 215
			goto listall_cb_failure;
		break;
P
Paul Moore 已提交
216 217
	}

218 219
	cb_arg->seq++;
	return genlmsg_end(cb_arg->skb, data);
P
Paul Moore 已提交
220

221 222
listall_cb_failure:
	genlmsg_cancel(cb_arg->skb, data);
P
Paul Moore 已提交
223 224 225 226
	return ret_val;
}

/**
227
 * netlbl_mgmt_listall - Handle a LISTALL message
P
Paul Moore 已提交
228
 * @skb: the NETLINK buffer
229
 * @cb: the NETLINK callback
P
Paul Moore 已提交
230 231
 *
 * Description:
232 233 234
 * Process a user generated LISTALL message and dumps the domain hash table in
 * a form suitable for use in a kernel generated LISTALL message.  Returns zero
 * on success, negative values on failure.
P
Paul Moore 已提交
235 236
 *
 */
237 238
static int netlbl_mgmt_listall(struct sk_buff *skb,
			       struct netlink_callback *cb)
P
Paul Moore 已提交
239
{
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
	struct netlbl_domhsh_walk_arg cb_arg;
	u32 skip_bkt = cb->args[0];
	u32 skip_chain = cb->args[1];

	cb_arg.nl_cb = cb;
	cb_arg.skb = skb;
	cb_arg.seq = cb->nlh->nlmsg_seq;

	netlbl_domhsh_walk(&skip_bkt,
			   &skip_chain,
			   netlbl_mgmt_listall_cb,
			   &cb_arg);

	cb->args[0] = skip_bkt;
	cb->args[1] = skip_chain;
	return skb->len;
P
Paul Moore 已提交
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
}

/**
 * netlbl_mgmt_adddef - Handle an ADDDEF message
 * @skb: the NETLINK buffer
 * @info: the Generic NETLINK info block
 *
 * Description:
 * Process a user generated ADDDEF message and respond accordingly.  Returns
 * zero on success, negative values on failure.
 *
 */
static int netlbl_mgmt_adddef(struct sk_buff *skb, struct genl_info *info)
{
	int ret_val = -EINVAL;
	struct netlbl_dom_map *entry = NULL;
	u32 tmp_val;
273
	struct netlbl_audit audit_info;
P
Paul Moore 已提交
274

275
	if (!info->attrs[NLBL_MGMT_A_PROTOCOL])
P
Paul Moore 已提交
276 277
		goto adddef_failure;

278 279
	netlbl_netlink_auditinfo(skb, &audit_info);

P
Paul Moore 已提交
280 281 282 283 284
	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
	if (entry == NULL) {
		ret_val = -ENOMEM;
		goto adddef_failure;
	}
285
	entry->type = nla_get_u32(info->attrs[NLBL_MGMT_A_PROTOCOL]);
P
Paul Moore 已提交
286 287 288

	switch (entry->type) {
	case NETLBL_NLTYPE_UNLABELED:
289
		ret_val = netlbl_domhsh_add_default(entry, &audit_info);
P
Paul Moore 已提交
290 291
		break;
	case NETLBL_NLTYPE_CIPSOV4:
292
		if (!info->attrs[NLBL_MGMT_A_CV4DOI])
P
Paul Moore 已提交
293
			goto adddef_failure;
294 295 296 297 298 299

		tmp_val = nla_get_u32(info->attrs[NLBL_MGMT_A_CV4DOI]);
		/* We should be holding a rcu_read_lock() here while we hold
		 * the result but since the entry will always be deleted when
		 * the CIPSO DOI is deleted we aren't going to keep the
		 * lock. */
P
Paul Moore 已提交
300 301 302 303 304 305
		rcu_read_lock();
		entry->type_def.cipsov4 = cipso_v4_doi_getdef(tmp_val);
		if (entry->type_def.cipsov4 == NULL) {
			rcu_read_unlock();
			goto adddef_failure;
		}
306
		ret_val = netlbl_domhsh_add_default(entry, &audit_info);
P
Paul Moore 已提交
307 308 309
		rcu_read_unlock();
		break;
	default:
310
		goto adddef_failure;
P
Paul Moore 已提交
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
	}
	if (ret_val != 0)
		goto adddef_failure;

	return 0;

adddef_failure:
	kfree(entry);
	return ret_val;
}

/**
 * netlbl_mgmt_removedef - Handle a REMOVEDEF message
 * @skb: the NETLINK buffer
 * @info: the Generic NETLINK info block
 *
 * Description:
 * Process a user generated REMOVEDEF message and remove the default domain
 * mapping.  Returns zero on success, negative values on failure.
 *
 */
static int netlbl_mgmt_removedef(struct sk_buff *skb, struct genl_info *info)
{
334 335 336 337 338
	struct netlbl_audit audit_info;

	netlbl_netlink_auditinfo(skb, &audit_info);

	return netlbl_domhsh_remove_default(&audit_info);
P
Paul Moore 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
}

/**
 * netlbl_mgmt_listdef - Handle a LISTDEF message
 * @skb: the NETLINK buffer
 * @info: the Generic NETLINK info block
 *
 * Description:
 * Process a user generated LISTDEF message and dumps the default domain
 * mapping in a form suitable for use in a kernel generated LISTDEF message.
 * Returns zero on success, negative values on failure.
 *
 */
static int netlbl_mgmt_listdef(struct sk_buff *skb, struct genl_info *info)
{
	int ret_val = -ENOMEM;
355 356 357
	struct sk_buff *ans_skb = NULL;
	void *data;
	struct netlbl_dom_map *entry;
P
Paul Moore 已提交
358

359
	ans_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
P
Paul Moore 已提交
360
	if (ans_skb == NULL)
361 362 363 364 365 366 367 368
		return -ENOMEM;
	data = netlbl_netlink_hdr_put(ans_skb,
				      info->snd_pid,
				      info->snd_seq,
				      netlbl_mgmt_gnl_family.id,
				      0,
				      NLBL_MGMT_C_LISTDEF);
	if (data == NULL)
P
Paul Moore 已提交
369 370
		goto listdef_failure;

371 372 373 374 375 376 377
	rcu_read_lock();
	entry = netlbl_domhsh_getentry(NULL);
	if (entry == NULL) {
		ret_val = -ENOENT;
		goto listdef_failure_lock;
	}
	ret_val = nla_put_u32(ans_skb, NLBL_MGMT_A_PROTOCOL, entry->type);
P
Paul Moore 已提交
378
	if (ret_val != 0)
379 380 381 382 383 384 385 386 387 388 389
		goto listdef_failure_lock;
	switch (entry->type) {
	case NETLBL_NLTYPE_CIPSOV4:
		ret_val = nla_put_u32(ans_skb,
				      NLBL_MGMT_A_CV4DOI,
				      entry->type_def.cipsov4->doi);
		if (ret_val != 0)
			goto listdef_failure_lock;
		break;
	}
	rcu_read_unlock();
P
Paul Moore 已提交
390

391 392 393 394 395
	genlmsg_end(ans_skb, data);

	ret_val = genlmsg_unicast(ans_skb, info->snd_pid);
	if (ret_val != 0)
		goto listdef_failure;
P
Paul Moore 已提交
396 397
	return 0;

398 399
listdef_failure_lock:
	rcu_read_unlock();
P
Paul Moore 已提交
400
listdef_failure:
401
	kfree_skb(ans_skb);
P
Paul Moore 已提交
402 403 404 405
	return ret_val;
}

/**
406 407 408 409 410
 * netlbl_mgmt_protocols_cb - Write an individual PROTOCOL message response
 * @skb: the skb to write to
 * @seq: the NETLINK sequence number
 * @cb: the NETLINK callback
 * @protocol: the NetLabel protocol to use in the message
P
Paul Moore 已提交
411 412
 *
 * Description:
413 414 415
 * This function is to be used in conjunction with netlbl_mgmt_protocols() to
 * answer a application's PROTOCOLS message.  Returns the size of the message
 * on success, negative values on failure.
P
Paul Moore 已提交
416 417
 *
 */
418 419 420
static int netlbl_mgmt_protocols_cb(struct sk_buff *skb,
				    struct netlink_callback *cb,
				    u32 protocol)
P
Paul Moore 已提交
421 422
{
	int ret_val = -ENOMEM;
423 424 425 426 427 428 429 430 431 432 433 434
	void *data;

	data = netlbl_netlink_hdr_put(skb,
				      NETLINK_CB(cb->skb).pid,
				      cb->nlh->nlmsg_seq,
				      netlbl_mgmt_gnl_family.id,
				      NLM_F_MULTI,
				      NLBL_MGMT_C_PROTOCOLS);
	if (data == NULL)
		goto protocols_cb_failure;

	ret_val = nla_put_u32(skb, NLBL_MGMT_A_PROTOCOL, protocol);
P
Paul Moore 已提交
435
	if (ret_val != 0)
436
		goto protocols_cb_failure;
P
Paul Moore 已提交
437

438
	return genlmsg_end(skb, data);
P
Paul Moore 已提交
439

440 441
protocols_cb_failure:
	genlmsg_cancel(skb, data);
P
Paul Moore 已提交
442 443 444
	return ret_val;
}

445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
/**
 * netlbl_mgmt_protocols - Handle a PROTOCOLS message
 * @skb: the NETLINK buffer
 * @cb: the NETLINK callback
 *
 * Description:
 * Process a user generated PROTOCOLS message and respond accordingly.
 *
 */
static int netlbl_mgmt_protocols(struct sk_buff *skb,
				 struct netlink_callback *cb)
{
	u32 protos_sent = cb->args[0];

	if (protos_sent == 0) {
		if (netlbl_mgmt_protocols_cb(skb,
					     cb,
					     NETLBL_NLTYPE_UNLABELED) < 0)
			goto protocols_return;
		protos_sent++;
	}
	if (protos_sent == 1) {
		if (netlbl_mgmt_protocols_cb(skb,
					     cb,
					     NETLBL_NLTYPE_CIPSOV4) < 0)
			goto protocols_return;
		protos_sent++;
	}

protocols_return:
	cb->args[0] = protos_sent;
	return skb->len;
}

P
Paul Moore 已提交
479 480 481 482 483 484 485 486 487 488 489 490 491 492
/**
 * netlbl_mgmt_version - Handle a VERSION message
 * @skb: the NETLINK buffer
 * @info: the Generic NETLINK info block
 *
 * Description:
 * Process a user generated VERSION message and respond accordingly.  Returns
 * zero on success, negative values on failure.
 *
 */
static int netlbl_mgmt_version(struct sk_buff *skb, struct genl_info *info)
{
	int ret_val = -ENOMEM;
	struct sk_buff *ans_skb = NULL;
493
	void *data;
P
Paul Moore 已提交
494

495
	ans_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
P
Paul Moore 已提交
496
	if (ans_skb == NULL)
497 498 499 500 501 502 503 504
		return -ENOMEM;
	data = netlbl_netlink_hdr_put(ans_skb,
				      info->snd_pid,
				      info->snd_seq,
				      netlbl_mgmt_gnl_family.id,
				      0,
				      NLBL_MGMT_C_VERSION);
	if (data == NULL)
P
Paul Moore 已提交
505 506
		goto version_failure;

507 508 509
	ret_val = nla_put_u32(ans_skb,
			      NLBL_MGMT_A_VERSION,
			      NETLBL_PROTO_VERSION);
P
Paul Moore 已提交
510 511 512
	if (ret_val != 0)
		goto version_failure;

513 514 515
	genlmsg_end(ans_skb, data);

	ret_val = genlmsg_unicast(ans_skb, info->snd_pid);
P
Paul Moore 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
	if (ret_val != 0)
		goto version_failure;
	return 0;

version_failure:
	kfree_skb(ans_skb);
	return ret_val;
}


/*
 * NetLabel Generic NETLINK Command Definitions
 */

static struct genl_ops netlbl_mgmt_genl_c_add = {
	.cmd = NLBL_MGMT_C_ADD,
532 533
	.flags = GENL_ADMIN_PERM,
	.policy = netlbl_mgmt_genl_policy,
P
Paul Moore 已提交
534 535 536 537 538 539
	.doit = netlbl_mgmt_add,
	.dumpit = NULL,
};

static struct genl_ops netlbl_mgmt_genl_c_remove = {
	.cmd = NLBL_MGMT_C_REMOVE,
540 541
	.flags = GENL_ADMIN_PERM,
	.policy = netlbl_mgmt_genl_policy,
P
Paul Moore 已提交
542 543 544 545
	.doit = netlbl_mgmt_remove,
	.dumpit = NULL,
};

546 547
static struct genl_ops netlbl_mgmt_genl_c_listall = {
	.cmd = NLBL_MGMT_C_LISTALL,
P
Paul Moore 已提交
548
	.flags = 0,
549 550 551
	.policy = netlbl_mgmt_genl_policy,
	.doit = NULL,
	.dumpit = netlbl_mgmt_listall,
P
Paul Moore 已提交
552 553 554 555
};

static struct genl_ops netlbl_mgmt_genl_c_adddef = {
	.cmd = NLBL_MGMT_C_ADDDEF,
556 557
	.flags = GENL_ADMIN_PERM,
	.policy = netlbl_mgmt_genl_policy,
P
Paul Moore 已提交
558 559 560 561 562 563
	.doit = netlbl_mgmt_adddef,
	.dumpit = NULL,
};

static struct genl_ops netlbl_mgmt_genl_c_removedef = {
	.cmd = NLBL_MGMT_C_REMOVEDEF,
564 565
	.flags = GENL_ADMIN_PERM,
	.policy = netlbl_mgmt_genl_policy,
P
Paul Moore 已提交
566 567 568 569 570 571 572
	.doit = netlbl_mgmt_removedef,
	.dumpit = NULL,
};

static struct genl_ops netlbl_mgmt_genl_c_listdef = {
	.cmd = NLBL_MGMT_C_LISTDEF,
	.flags = 0,
573
	.policy = netlbl_mgmt_genl_policy,
P
Paul Moore 已提交
574 575 576 577
	.doit = netlbl_mgmt_listdef,
	.dumpit = NULL,
};

578 579
static struct genl_ops netlbl_mgmt_genl_c_protocols = {
	.cmd = NLBL_MGMT_C_PROTOCOLS,
P
Paul Moore 已提交
580
	.flags = 0,
581 582 583
	.policy = netlbl_mgmt_genl_policy,
	.doit = NULL,
	.dumpit = netlbl_mgmt_protocols,
P
Paul Moore 已提交
584 585 586 587 588
};

static struct genl_ops netlbl_mgmt_genl_c_version = {
	.cmd = NLBL_MGMT_C_VERSION,
	.flags = 0,
589
	.policy = netlbl_mgmt_genl_policy,
P
Paul Moore 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
	.doit = netlbl_mgmt_version,
	.dumpit = NULL,
};

/*
 * NetLabel Generic NETLINK Protocol Functions
 */

/**
 * netlbl_mgmt_genl_init - Register the NetLabel management component
 *
 * Description:
 * Register the NetLabel management component with the Generic NETLINK
 * mechanism.  Returns zero on success, negative values on failure.
 *
 */
int netlbl_mgmt_genl_init(void)
{
	int ret_val;

	ret_val = genl_register_family(&netlbl_mgmt_gnl_family);
	if (ret_val != 0)
		return ret_val;

	ret_val = genl_register_ops(&netlbl_mgmt_gnl_family,
				    &netlbl_mgmt_genl_c_add);
	if (ret_val != 0)
		return ret_val;
	ret_val = genl_register_ops(&netlbl_mgmt_gnl_family,
				    &netlbl_mgmt_genl_c_remove);
	if (ret_val != 0)
		return ret_val;
	ret_val = genl_register_ops(&netlbl_mgmt_gnl_family,
623
				    &netlbl_mgmt_genl_c_listall);
P
Paul Moore 已提交
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
	if (ret_val != 0)
		return ret_val;
	ret_val = genl_register_ops(&netlbl_mgmt_gnl_family,
				    &netlbl_mgmt_genl_c_adddef);
	if (ret_val != 0)
		return ret_val;
	ret_val = genl_register_ops(&netlbl_mgmt_gnl_family,
				    &netlbl_mgmt_genl_c_removedef);
	if (ret_val != 0)
		return ret_val;
	ret_val = genl_register_ops(&netlbl_mgmt_gnl_family,
				    &netlbl_mgmt_genl_c_listdef);
	if (ret_val != 0)
		return ret_val;
	ret_val = genl_register_ops(&netlbl_mgmt_gnl_family,
639
				    &netlbl_mgmt_genl_c_protocols);
P
Paul Moore 已提交
640 641 642 643 644 645 646 647 648
	if (ret_val != 0)
		return ret_val;
	ret_val = genl_register_ops(&netlbl_mgmt_gnl_family,
				    &netlbl_mgmt_genl_c_version);
	if (ret_val != 0)
		return ret_val;

	return 0;
}