genetlink.c 23.2 KB
Newer Older
T
Thomas Graf 已提交
1 2 3 4 5
/*
 * NETLINK      Generic Netlink Family
 *
 * 		Authors:	Jamal Hadi Salim
 * 				Thomas Graf <tgraf@suug.ch>
6
 *				Johannes Berg <johannes@sipsolutions.net>
T
Thomas Graf 已提交
7 8 9 10
 */

#include <linux/module.h>
#include <linux/kernel.h>
11
#include <linux/slab.h>
T
Thomas Graf 已提交
12 13 14 15 16
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/socket.h>
#include <linux/string.h>
#include <linux/skbuff.h>
17
#include <linux/mutex.h>
18
#include <linux/bitmap.h>
19
#include <linux/rwsem.h>
T
Thomas Graf 已提交
20 21 22
#include <net/sock.h>
#include <net/genetlink.h>

23
static DEFINE_MUTEX(genl_mutex); /* serialization of message processing */
24
static DECLARE_RWSEM(cb_lock);
T
Thomas Graf 已提交
25

26
void genl_lock(void)
T
Thomas Graf 已提交
27
{
28
	mutex_lock(&genl_mutex);
T
Thomas Graf 已提交
29
}
30
EXPORT_SYMBOL(genl_lock);
T
Thomas Graf 已提交
31

32
void genl_unlock(void)
T
Thomas Graf 已提交
33
{
34
	mutex_unlock(&genl_mutex);
T
Thomas Graf 已提交
35
}
36
EXPORT_SYMBOL(genl_unlock);
T
Thomas Graf 已提交
37

38
#ifdef CONFIG_LOCKDEP
39 40 41 42 43 44 45
int lockdep_genl_is_held(void)
{
	return lockdep_is_held(&genl_mutex);
}
EXPORT_SYMBOL(lockdep_genl_is_held);
#endif

46 47 48 49 50 51 52 53 54 55 56 57
static void genl_lock_all(void)
{
	down_write(&cb_lock);
	genl_lock();
}

static void genl_unlock_all(void)
{
	genl_unlock();
	up_write(&cb_lock);
}

T
Thomas Graf 已提交
58 59 60 61
#define GENL_FAM_TAB_SIZE	16
#define GENL_FAM_TAB_MASK	(GENL_FAM_TAB_SIZE - 1)

static struct list_head family_ht[GENL_FAM_TAB_SIZE];
62 63 64 65 66 67 68 69 70 71
/*
 * Bitmap of multicast groups that are currently in use.
 *
 * To avoid an allocation at boot of just one unsigned long,
 * declare it global instead.
 * Bit 0 is marked as already used since group 0 is invalid.
 */
static unsigned long mc_group_start = 0x1;
static unsigned long *mc_groups = &mc_group_start;
static unsigned long mc_groups_longs = 1;
T
Thomas Graf 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

static int genl_ctrl_event(int event, void *data);

static inline unsigned int genl_family_hash(unsigned int id)
{
	return id & GENL_FAM_TAB_MASK;
}

static inline struct list_head *genl_family_chain(unsigned int id)
{
	return &family_ht[genl_family_hash(id)];
}

static struct genl_family *genl_family_find_byid(unsigned int id)
{
	struct genl_family *f;

	list_for_each_entry(f, genl_family_chain(id), family_list)
		if (f->id == id)
			return f;

	return NULL;
}

static struct genl_family *genl_family_find_byname(char *name)
{
	struct genl_family *f;
	int i;

	for (i = 0; i < GENL_FAM_TAB_SIZE; i++)
		list_for_each_entry(f, genl_family_chain(i), family_list)
			if (strcmp(f->name, name) == 0)
				return f;

	return NULL;
}

J
Johannes Berg 已提交
109
static const struct genl_ops *genl_get_cmd(u8 cmd, struct genl_family *family)
T
Thomas Graf 已提交
110
{
111
	int i;
T
Thomas Graf 已提交
112

113 114 115
	for (i = 0; i < family->n_ops; i++)
		if (family->ops[i].cmd == cmd)
			return &family->ops[i];
T
Thomas Graf 已提交
116 117 118 119 120 121 122

	return NULL;
}

/* Of course we are going to have problems once we hit
 * 2^16 alive types, but that can only happen by year 2K
*/
123
static u16 genl_generate_id(void)
T
Thomas Graf 已提交
124
{
125 126
	static u16 id_gen_idx = GENL_MIN_ID;
	int i;
T
Thomas Graf 已提交
127

128 129 130 131
	for (i = 0; i <= GENL_MAX_ID - GENL_MIN_ID; i++) {
		if (!genl_family_find_byid(id_gen_idx))
			return id_gen_idx;
		if (++id_gen_idx > GENL_MAX_ID)
T
Thomas Graf 已提交
132
			id_gen_idx = GENL_MIN_ID;
133
	}
T
Thomas Graf 已提交
134

135
	return 0;
T
Thomas Graf 已提交
136 137
}

138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
static struct genl_multicast_group notify_grp;

/**
 * genl_register_mc_group - register a multicast group
 *
 * Registers the specified multicast group and notifies userspace
 * about the new group.
 *
 * Returns 0 on success or a negative error code.
 *
 * @family: The generic netlink family the group shall be registered for.
 * @grp: The group to register, must have a name.
 */
int genl_register_mc_group(struct genl_family *family,
			   struct genl_multicast_group *grp)
{
	int id;
	unsigned long *new_groups;
B
Brian Haley 已提交
156
	int err = 0;
157 158

	BUG_ON(grp->name[0] == '\0');
159
	BUG_ON(memchr(grp->name, '\0', GENL_NAMSIZ) == NULL);
160

161
	genl_lock_all();
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193

	/* special-case our own group */
	if (grp == &notify_grp)
		id = GENL_ID_CTRL;
	else
		id = find_first_zero_bit(mc_groups,
					 mc_groups_longs * BITS_PER_LONG);


	if (id >= mc_groups_longs * BITS_PER_LONG) {
		size_t nlen = (mc_groups_longs + 1) * sizeof(unsigned long);

		if (mc_groups == &mc_group_start) {
			new_groups = kzalloc(nlen, GFP_KERNEL);
			if (!new_groups) {
				err = -ENOMEM;
				goto out;
			}
			mc_groups = new_groups;
			*mc_groups = mc_group_start;
		} else {
			new_groups = krealloc(mc_groups, nlen, GFP_KERNEL);
			if (!new_groups) {
				err = -ENOMEM;
				goto out;
			}
			mc_groups = new_groups;
			mc_groups[mc_groups_longs] = 0;
		}
		mc_groups_longs++;
	}

J
Johannes Berg 已提交
194 195 196
	if (family->netnsok) {
		struct net *net;

197
		netlink_table_grab();
J
Johannes Berg 已提交
198 199
		rcu_read_lock();
		for_each_net_rcu(net) {
200
			err = __netlink_change_ngroups(net->genl_sock,
J
Johannes Berg 已提交
201 202 203 204 205 206 207 208 209
					mc_groups_longs * BITS_PER_LONG);
			if (err) {
				/*
				 * No need to roll back, can only fail if
				 * memory allocation fails and then the
				 * number of _possible_ groups has been
				 * increased on some sockets which is ok.
				 */
				rcu_read_unlock();
210
				netlink_table_ungrab();
J
Johannes Berg 已提交
211 212 213 214
				goto out;
			}
		}
		rcu_read_unlock();
215
		netlink_table_ungrab();
J
Johannes Berg 已提交
216 217 218 219 220 221
	} else {
		err = netlink_change_ngroups(init_net.genl_sock,
					     mc_groups_longs * BITS_PER_LONG);
		if (err)
			goto out;
	}
222 223 224 225 226 227 228 229

	grp->id = id;
	set_bit(id, mc_groups);
	list_add_tail(&grp->list, &family->mcast_groups);
	grp->family = family;

	genl_ctrl_event(CTRL_CMD_NEWMCAST_GRP, grp);
 out:
230
	genl_unlock_all();
231
	return err;
232 233 234
}
EXPORT_SYMBOL(genl_register_mc_group);

235 236 237
static void __genl_unregister_mc_group(struct genl_family *family,
				       struct genl_multicast_group *grp)
{
J
Johannes Berg 已提交
238
	struct net *net;
239
	BUG_ON(grp->family != family);
J
Johannes Berg 已提交
240

241
	netlink_table_grab();
J
Johannes Berg 已提交
242 243
	rcu_read_lock();
	for_each_net_rcu(net)
244
		__netlink_clear_multicast_users(net->genl_sock, grp->id);
J
Johannes Berg 已提交
245
	rcu_read_unlock();
246
	netlink_table_ungrab();
J
Johannes Berg 已提交
247

248 249 250 251 252 253 254
	clear_bit(grp->id, mc_groups);
	list_del(&grp->list);
	genl_ctrl_event(CTRL_CMD_DELMCAST_GRP, grp);
	grp->id = 0;
	grp->family = NULL;
}

255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
/**
 * genl_unregister_mc_group - unregister a multicast group
 *
 * Unregisters the specified multicast group and notifies userspace
 * about it. All current listeners on the group are removed.
 *
 * Note: It is not necessary to unregister all multicast groups before
 *       unregistering the family, unregistering the family will cause
 *       all assigned multicast groups to be unregistered automatically.
 *
 * @family: Generic netlink family the group belongs to.
 * @grp: The group to unregister, must have been registered successfully
 *	 previously.
 */
void genl_unregister_mc_group(struct genl_family *family,
			      struct genl_multicast_group *grp)
{
272
	genl_lock_all();
273
	__genl_unregister_mc_group(family, grp);
274
	genl_unlock_all();
275
}
276
EXPORT_SYMBOL(genl_unregister_mc_group);
277 278 279 280 281 282

static void genl_unregister_mc_groups(struct genl_family *family)
{
	struct genl_multicast_group *grp, *tmp;

	list_for_each_entry_safe(grp, tmp, &family->mcast_groups, list)
283
		__genl_unregister_mc_group(family, grp);
284 285
}

J
Johannes Berg 已提交
286 287
static int genl_validate_add_ops(struct genl_family *family,
				 const struct genl_ops *ops,
288
				 unsigned int n_ops)
T
Thomas Graf 已提交
289
{
290 291 292 293 294 295 296 297
	int i, j;

	for (i = 0; i < n_ops; i++) {
		if (ops[i].dumpit == NULL && ops[i].doit == NULL)
			return -EINVAL;
		for (j = i + 1; j < n_ops; j++)
			if (ops[i].cmd == ops[j].cmd)
				return -EINVAL;
T
Thomas Graf 已提交
298 299
	}

300 301 302
	/* family is not registered yet, so no locking needed */
	family->ops = ops;
	family->n_ops = n_ops;
T
Thomas Graf 已提交
303

304
	return 0;
T
Thomas Graf 已提交
305 306 307
}

/**
308
 * __genl_register_family - register a generic netlink family
T
Thomas Graf 已提交
309 310 311 312 313 314 315 316 317
 * @family: generic netlink family
 *
 * Registers the specified family after validating it first. Only one
 * family may be registered with the same family name or identifier.
 * The family id may equal GENL_ID_GENERATE causing an unique id to
 * be automatically generated and assigned.
 *
 * Return 0 on success or a negative error code.
 */
318
int __genl_register_family(struct genl_family *family)
T
Thomas Graf 已提交
319 320 321 322 323 324 325 326 327
{
	int err = -EINVAL;

	if (family->id && family->id < GENL_MIN_ID)
		goto errout;

	if (family->id > GENL_MAX_ID)
		goto errout;

328
	INIT_LIST_HEAD(&family->mcast_groups);
T
Thomas Graf 已提交
329

330
	genl_lock_all();
T
Thomas Graf 已提交
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345

	if (genl_family_find_byname(family->name)) {
		err = -EEXIST;
		goto errout_locked;
	}

	if (family->id == GENL_ID_GENERATE) {
		u16 newid = genl_generate_id();

		if (!newid) {
			err = -ENOMEM;
			goto errout_locked;
		}

		family->id = newid;
346 347 348
	} else if (genl_family_find_byid(family->id)) {
		err = -EEXIST;
		goto errout_locked;
T
Thomas Graf 已提交
349 350
	}

351
	if (family->maxattr && !family->parallel_ops) {
T
Thomas Graf 已提交
352 353 354 355
		family->attrbuf = kmalloc((family->maxattr+1) *
					sizeof(struct nlattr *), GFP_KERNEL);
		if (family->attrbuf == NULL) {
			err = -ENOMEM;
356
			goto errout_locked;
T
Thomas Graf 已提交
357 358 359 360 361
		}
	} else
		family->attrbuf = NULL;

	list_add_tail(&family->family_list, genl_family_chain(family->id));
362
	genl_unlock_all();
T
Thomas Graf 已提交
363 364 365 366 367 368

	genl_ctrl_event(CTRL_CMD_NEWFAMILY, family);

	return 0;

errout_locked:
369
	genl_unlock_all();
T
Thomas Graf 已提交
370 371 372
errout:
	return err;
}
373
EXPORT_SYMBOL(__genl_register_family);
T
Thomas Graf 已提交
374

375
/**
376
 * __genl_register_family_with_ops - register a generic netlink family
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
 * @family: generic netlink family
 * @ops: operations to be registered
 * @n_ops: number of elements to register
 *
 * Registers the specified family and operations from the specified table.
 * Only one family may be registered with the same family name or identifier.
 *
 * The family id may equal GENL_ID_GENERATE causing an unique id to
 * be automatically generated and assigned.
 *
 * Either a doit or dumpit callback must be specified for every registered
 * operation or the function will fail. Only one operation structure per
 * command identifier may be registered.
 *
 * See include/net/genetlink.h for more documenation on the operations
 * structure.
 *
 * Return 0 on success or a negative error code.
 */
396
int __genl_register_family_with_ops(struct genl_family *family,
J
Johannes Berg 已提交
397
	const struct genl_ops *ops, size_t n_ops)
398
{
399
	int err;
400

401
	err = genl_validate_add_ops(family, ops, n_ops);
402 403 404
	if (err)
		return err;

405
	return __genl_register_family(family);
406
}
407
EXPORT_SYMBOL(__genl_register_family_with_ops);
408

T
Thomas Graf 已提交
409 410 411 412 413 414 415 416 417 418 419 420
/**
 * genl_unregister_family - unregister generic netlink family
 * @family: generic netlink family
 *
 * Unregisters the specified family.
 *
 * Returns 0 on success or a negative error code.
 */
int genl_unregister_family(struct genl_family *family)
{
	struct genl_family *rc;

421
	genl_lock_all();
T
Thomas Graf 已提交
422

423 424
	genl_unregister_mc_groups(family);

T
Thomas Graf 已提交
425 426 427 428 429
	list_for_each_entry(rc, genl_family_chain(family->id), family_list) {
		if (family->id != rc->id || strcmp(rc->name, family->name))
			continue;

		list_del(&rc->family_list);
430
		family->n_ops = 0;
431
		genl_unlock_all();
T
Thomas Graf 已提交
432 433 434 435 436 437

		kfree(family->attrbuf);
		genl_ctrl_event(CTRL_CMD_DELFAMILY, family);
		return 0;
	}

438
	genl_unlock_all();
T
Thomas Graf 已提交
439 440 441

	return -ENOENT;
}
442
EXPORT_SYMBOL(genl_unregister_family);
T
Thomas Graf 已提交
443

444 445 446
/**
 * genlmsg_put - Add generic netlink header to netlink message
 * @skb: socket buffer holding the message
447
 * @portid: netlink portid the message is addressed to
448 449
 * @seq: sequence number (usually the one of the sender)
 * @family: generic netlink family
450
 * @flags: netlink message flags
451 452 453 454
 * @cmd: generic netlink command
 *
 * Returns pointer to user specific header
 */
455
void *genlmsg_put(struct sk_buff *skb, u32 portid, u32 seq,
456 457 458 459 460
				struct genl_family *family, int flags, u8 cmd)
{
	struct nlmsghdr *nlh;
	struct genlmsghdr *hdr;

461
	nlh = nlmsg_put(skb, portid, seq, family->id, GENL_HDRLEN +
462 463 464 465 466 467 468 469 470 471 472 473 474
			family->hdrsize, flags);
	if (nlh == NULL)
		return NULL;

	hdr = nlmsg_data(nlh);
	hdr->cmd = cmd;
	hdr->version = family->version;
	hdr->reserved = 0;

	return (char *) hdr + GENL_HDRLEN;
}
EXPORT_SYMBOL(genlmsg_put);

475 476
static int genl_lock_dumpit(struct sk_buff *skb, struct netlink_callback *cb)
{
J
Johannes Berg 已提交
477 478
	/* our ops are always const - netlink API doesn't propagate that */
	const struct genl_ops *ops = cb->data;
479 480 481 482 483 484 485 486 487 488
	int rc;

	genl_lock();
	rc = ops->dumpit(skb, cb);
	genl_unlock();
	return rc;
}

static int genl_lock_done(struct netlink_callback *cb)
{
J
Johannes Berg 已提交
489 490
	/* our ops are always const - netlink API doesn't propagate that */
	const struct genl_ops *ops = cb->data;
491 492 493 494 495 496 497 498 499 500
	int rc = 0;

	if (ops->done) {
		genl_lock();
		rc = ops->done(cb);
		genl_unlock();
	}
	return rc;
}

501 502 503
static int genl_family_rcv_msg(struct genl_family *family,
			       struct sk_buff *skb,
			       struct nlmsghdr *nlh)
T
Thomas Graf 已提交
504
{
J
Johannes Berg 已提交
505
	const struct genl_ops *ops;
J
Johannes Berg 已提交
506
	struct net *net = sock_net(skb->sk);
T
Thomas Graf 已提交
507 508
	struct genl_info info;
	struct genlmsghdr *hdr = nlmsg_data(nlh);
509
	struct nlattr **attrbuf;
510
	int hdrlen, err;
T
Thomas Graf 已提交
511

J
Johannes Berg 已提交
512 513 514 515
	/* this family doesn't exist in this netns */
	if (!family->netnsok && !net_eq(net, &init_net))
		return -ENOENT;

T
Thomas Graf 已提交
516 517
	hdrlen = GENL_HDRLEN + family->hdrsize;
	if (nlh->nlmsg_len < nlmsg_msg_size(hdrlen))
518
		return -EINVAL;
T
Thomas Graf 已提交
519 520

	ops = genl_get_cmd(hdr->cmd, family);
521 522
	if (ops == NULL)
		return -EOPNOTSUPP;
T
Thomas Graf 已提交
523

524
	if ((ops->flags & GENL_ADMIN_PERM) &&
525
	    !capable(CAP_NET_ADMIN))
526
		return -EPERM;
T
Thomas Graf 已提交
527

528
	if ((nlh->nlmsg_flags & NLM_F_DUMP) == NLM_F_DUMP) {
529
		int rc;
530

531 532
		if (ops->dumpit == NULL)
			return -EOPNOTSUPP;
T
Thomas Graf 已提交
533

534 535
		if (!family->parallel_ops) {
			struct netlink_dump_control c = {
536
				.module = family->module,
J
Johannes Berg 已提交
537 538
				/* we have const, but the netlink API doesn't */
				.data = (void *)ops,
539 540 541 542 543
				.dump = genl_lock_dumpit,
				.done = genl_lock_done,
			};

			genl_unlock();
544
			rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c);
545 546 547 548
			genl_lock();

		} else {
			struct netlink_dump_control c = {
549
				.module = family->module,
550 551 552 553
				.dump = ops->dumpit,
				.done = ops->done,
			};

554
			rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c);
555 556 557
		}

		return rc;
T
Thomas Graf 已提交
558 559
	}

560 561
	if (ops->doit == NULL)
		return -EOPNOTSUPP;
T
Thomas Graf 已提交
562

563 564 565 566 567 568 569 570 571 572
	if (family->maxattr && family->parallel_ops) {
		attrbuf = kmalloc((family->maxattr+1) *
					sizeof(struct nlattr *), GFP_KERNEL);
		if (attrbuf == NULL)
			return -ENOMEM;
	} else
		attrbuf = family->attrbuf;

	if (attrbuf) {
		err = nlmsg_parse(nlh, hdrlen, attrbuf, family->maxattr,
T
Thomas Graf 已提交
573 574
				  ops->policy);
		if (err < 0)
575
			goto out;
T
Thomas Graf 已提交
576 577 578
	}

	info.snd_seq = nlh->nlmsg_seq;
579
	info.snd_portid = NETLINK_CB(skb).portid;
T
Thomas Graf 已提交
580 581 582
	info.nlhdr = nlh;
	info.genlhdr = nlmsg_data(nlh);
	info.userhdr = nlmsg_data(nlh) + GENL_HDRLEN;
583
	info.attrs = attrbuf;
J
Johannes Berg 已提交
584
	genl_info_net_set(&info, net);
585
	memset(&info.user_ptr, 0, sizeof(info.user_ptr));
T
Thomas Graf 已提交
586

587 588 589
	if (family->pre_doit) {
		err = family->pre_doit(ops, skb, &info);
		if (err)
590
			goto out;
591 592 593 594 595 596 597
	}

	err = ops->doit(skb, &info);

	if (family->post_doit)
		family->post_doit(ops, skb, &info);

598
out:
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
	if (family->parallel_ops)
		kfree(attrbuf);

	return err;
}

static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
{
	struct genl_family *family;
	int err;

	family = genl_family_find_byid(nlh->nlmsg_type);
	if (family == NULL)
		return -ENOENT;

	if (!family->parallel_ops)
		genl_lock();

	err = genl_family_rcv_msg(family, skb, nlh);

	if (!family->parallel_ops)
		genl_unlock();

622
	return err;
T
Thomas Graf 已提交
623 624
}

625
static void genl_rcv(struct sk_buff *skb)
T
Thomas Graf 已提交
626
{
627
	down_read(&cb_lock);
628
	netlink_rcv_skb(skb, &genl_rcv_msg);
629
	up_read(&cb_lock);
T
Thomas Graf 已提交
630 631 632 633 634 635
}

/**************************************************************************
 * Controller
 **************************************************************************/

636 637 638
static struct genl_family genl_ctrl = {
	.id = GENL_ID_CTRL,
	.name = "nlctrl",
639
	.version = 0x2,
640
	.maxattr = CTRL_ATTR_MAX,
J
Johannes Berg 已提交
641
	.netnsok = true,
642 643
};

644
static int ctrl_fill_info(struct genl_family *family, u32 portid, u32 seq,
T
Thomas Graf 已提交
645 646 647 648
			  u32 flags, struct sk_buff *skb, u8 cmd)
{
	void *hdr;

649
	hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd);
T
Thomas Graf 已提交
650 651 652
	if (hdr == NULL)
		return -1;

653 654 655 656 657 658
	if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, family->name) ||
	    nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, family->id) ||
	    nla_put_u32(skb, CTRL_ATTR_VERSION, family->version) ||
	    nla_put_u32(skb, CTRL_ATTR_HDRSIZE, family->hdrsize) ||
	    nla_put_u32(skb, CTRL_ATTR_MAXATTR, family->maxattr))
		goto nla_put_failure;
659

660
	if (family->n_ops) {
661
		struct nlattr *nla_ops;
662
		int i;
663

664 665
		nla_ops = nla_nest_start(skb, CTRL_ATTR_OPS);
		if (nla_ops == NULL)
666 667
			goto nla_put_failure;

668
		for (i = 0; i < family->n_ops; i++) {
669
			struct nlattr *nest;
J
Johannes Berg 已提交
670 671 672 673 674 675 676 677 678
			const struct genl_ops *ops = &family->ops[i];
			u32 flags = ops->flags;

			if (ops->dumpit)
				flags |= GENL_CMD_CAP_DUMP;
			if (ops->doit)
				flags |= GENL_CMD_CAP_DO;
			if (ops->policy)
				flags |= GENL_CMD_CAP_HASPOL;
679

680
			nest = nla_nest_start(skb, i + 1);
681 682
			if (nest == NULL)
				goto nla_put_failure;
683

684
			if (nla_put_u32(skb, CTRL_ATTR_OP_ID, ops->cmd) ||
J
Johannes Berg 已提交
685
			    nla_put_u32(skb, CTRL_ATTR_OP_FLAGS, flags))
686
				goto nla_put_failure;
687

688 689 690 691 692
			nla_nest_end(skb, nest);
		}

		nla_nest_end(skb, nla_ops);
	}
T
Thomas Graf 已提交
693

694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
	if (!list_empty(&family->mcast_groups)) {
		struct genl_multicast_group *grp;
		struct nlattr *nla_grps;
		int idx = 1;

		nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS);
		if (nla_grps == NULL)
			goto nla_put_failure;

		list_for_each_entry(grp, &family->mcast_groups, list) {
			struct nlattr *nest;

			nest = nla_nest_start(skb, idx++);
			if (nest == NULL)
				goto nla_put_failure;

710 711 712 713
			if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID, grp->id) ||
			    nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME,
					   grp->name))
				goto nla_put_failure;
714 715 716 717 718 719 720 721 722

			nla_nest_end(skb, nest);
		}
		nla_nest_end(skb, nla_grps);
	}

	return genlmsg_end(skb, hdr);

nla_put_failure:
723 724
	genlmsg_cancel(skb, hdr);
	return -EMSGSIZE;
725 726
}

727
static int ctrl_fill_mcgrp_info(struct genl_multicast_group *grp, u32 portid,
728 729 730 731 732 733 734
				u32 seq, u32 flags, struct sk_buff *skb,
				u8 cmd)
{
	void *hdr;
	struct nlattr *nla_grps;
	struct nlattr *nest;

735
	hdr = genlmsg_put(skb, portid, seq, &genl_ctrl, flags, cmd);
736 737 738
	if (hdr == NULL)
		return -1;

739 740 741
	if (nla_put_string(skb, CTRL_ATTR_FAMILY_NAME, grp->family->name) ||
	    nla_put_u16(skb, CTRL_ATTR_FAMILY_ID, grp->family->id))
		goto nla_put_failure;
742 743 744 745 746 747 748 749 750

	nla_grps = nla_nest_start(skb, CTRL_ATTR_MCAST_GROUPS);
	if (nla_grps == NULL)
		goto nla_put_failure;

	nest = nla_nest_start(skb, 1);
	if (nest == NULL)
		goto nla_put_failure;

751 752 753 754
	if (nla_put_u32(skb, CTRL_ATTR_MCAST_GRP_ID, grp->id) ||
	    nla_put_string(skb, CTRL_ATTR_MCAST_GRP_NAME,
			   grp->name))
		goto nla_put_failure;
755 756 757 758

	nla_nest_end(skb, nest);
	nla_nest_end(skb, nla_grps);

T
Thomas Graf 已提交
759 760 761
	return genlmsg_end(skb, hdr);

nla_put_failure:
762 763
	genlmsg_cancel(skb, hdr);
	return -EMSGSIZE;
T
Thomas Graf 已提交
764 765 766 767 768 769 770
}

static int ctrl_dumpfamily(struct sk_buff *skb, struct netlink_callback *cb)
{

	int i, n = 0;
	struct genl_family *rt;
J
Johannes Berg 已提交
771
	struct net *net = sock_net(skb->sk);
T
Thomas Graf 已提交
772 773 774
	int chains_to_skip = cb->args[0];
	int fams_to_skip = cb->args[1];

775
	for (i = chains_to_skip; i < GENL_FAM_TAB_SIZE; i++) {
T
Thomas Graf 已提交
776 777
		n = 0;
		list_for_each_entry(rt, genl_family_chain(i), family_list) {
J
Johannes Berg 已提交
778 779
			if (!rt->netnsok && !net_eq(net, &init_net))
				continue;
T
Thomas Graf 已提交
780 781
			if (++n < fams_to_skip)
				continue;
782
			if (ctrl_fill_info(rt, NETLINK_CB(cb->skb).portid,
T
Thomas Graf 已提交
783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
					   cb->nlh->nlmsg_seq, NLM_F_MULTI,
					   skb, CTRL_CMD_NEWFAMILY) < 0)
				goto errout;
		}

		fams_to_skip = 0;
	}

errout:
	cb->args[0] = i;
	cb->args[1] = n;

	return skb->len;
}

798
static struct sk_buff *ctrl_build_family_msg(struct genl_family *family,
799
					     u32 portid, int seq, u8 cmd)
T
Thomas Graf 已提交
800 801 802 803
{
	struct sk_buff *skb;
	int err;

804
	skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
T
Thomas Graf 已提交
805 806 807
	if (skb == NULL)
		return ERR_PTR(-ENOBUFS);

808
	err = ctrl_fill_info(family, portid, seq, 0, skb, cmd);
T
Thomas Graf 已提交
809 810 811 812 813 814 815 816
	if (err < 0) {
		nlmsg_free(skb);
		return ERR_PTR(err);
	}

	return skb;
}

817
static struct sk_buff *ctrl_build_mcgrp_msg(struct genl_multicast_group *grp,
818
					    u32 portid, int seq, u8 cmd)
819 820 821 822 823 824 825 826
{
	struct sk_buff *skb;
	int err;

	skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
	if (skb == NULL)
		return ERR_PTR(-ENOBUFS);

827
	err = ctrl_fill_mcgrp_info(grp, portid, seq, 0, skb, cmd);
828 829 830 831 832 833 834 835
	if (err < 0) {
		nlmsg_free(skb);
		return ERR_PTR(err);
	}

	return skb;
}

836
static const struct nla_policy ctrl_policy[CTRL_ATTR_MAX+1] = {
T
Thomas Graf 已提交
837
	[CTRL_ATTR_FAMILY_ID]	= { .type = NLA_U16 },
838 839
	[CTRL_ATTR_FAMILY_NAME]	= { .type = NLA_NUL_STRING,
				    .len = GENL_NAMSIZ - 1 },
T
Thomas Graf 已提交
840 841 842 843 844 845 846 847 848 849 850
};

static int ctrl_getfamily(struct sk_buff *skb, struct genl_info *info)
{
	struct sk_buff *msg;
	struct genl_family *res = NULL;
	int err = -EINVAL;

	if (info->attrs[CTRL_ATTR_FAMILY_ID]) {
		u16 id = nla_get_u16(info->attrs[CTRL_ATTR_FAMILY_ID]);
		res = genl_family_find_byid(id);
J
Johannes Berg 已提交
851
		err = -ENOENT;
T
Thomas Graf 已提交
852 853 854
	}

	if (info->attrs[CTRL_ATTR_FAMILY_NAME]) {
855
		char *name;
T
Thomas Graf 已提交
856

857
		name = nla_data(info->attrs[CTRL_ATTR_FAMILY_NAME]);
T
Thomas Graf 已提交
858
		res = genl_family_find_byname(name);
859 860 861
#ifdef CONFIG_MODULES
		if (res == NULL) {
			genl_unlock();
862
			up_read(&cb_lock);
863
			request_module("net-pf-%d-proto-%d-family-%s",
864
				       PF_NETLINK, NETLINK_GENERIC, name);
865
			down_read(&cb_lock);
866 867 868 869
			genl_lock();
			res = genl_family_find_byname(name);
		}
#endif
J
Johannes Berg 已提交
870
		err = -ENOENT;
T
Thomas Graf 已提交
871 872
	}

J
Johannes Berg 已提交
873 874 875 876 877 878
	if (res == NULL)
		return err;

	if (!res->netnsok && !net_eq(genl_info_net(info), &init_net)) {
		/* family doesn't exist here */
		return -ENOENT;
T
Thomas Graf 已提交
879 880
	}

881
	msg = ctrl_build_family_msg(res, info->snd_portid, info->snd_seq,
882
				    CTRL_CMD_NEWFAMILY);
J
Johannes Berg 已提交
883 884
	if (IS_ERR(msg))
		return PTR_ERR(msg);
T
Thomas Graf 已提交
885

J
Johannes Berg 已提交
886
	return genlmsg_reply(msg, info);
T
Thomas Graf 已提交
887 888 889 890 891
}

static int genl_ctrl_event(int event, void *data)
{
	struct sk_buff *msg;
J
Johannes Berg 已提交
892 893
	struct genl_family *family;
	struct genl_multicast_group *grp;
T
Thomas Graf 已提交
894

J
Johannes Berg 已提交
895 896
	/* genl is still initialising */
	if (!init_net.genl_sock)
T
Thomas Graf 已提交
897 898 899 900 901
		return 0;

	switch (event) {
	case CTRL_CMD_NEWFAMILY:
	case CTRL_CMD_DELFAMILY:
J
Johannes Berg 已提交
902 903
		family = data;
		msg = ctrl_build_family_msg(family, 0, 0, event);
904 905 906
		break;
	case CTRL_CMD_NEWMCAST_GRP:
	case CTRL_CMD_DELMCAST_GRP:
J
Johannes Berg 已提交
907 908
		grp = data;
		family = grp->family;
909
		msg = ctrl_build_mcgrp_msg(data, 0, 0, event);
T
Thomas Graf 已提交
910
		break;
J
Johannes Berg 已提交
911 912 913 914 915 916 917 918 919 920 921 922 923 924
	default:
		return -EINVAL;
	}

	if (IS_ERR(msg))
		return PTR_ERR(msg);

	if (!family->netnsok) {
		genlmsg_multicast_netns(&init_net, msg, 0,
					GENL_ID_CTRL, GFP_KERNEL);
	} else {
		rcu_read_lock();
		genlmsg_multicast_allns(msg, 0, GENL_ID_CTRL, GFP_ATOMIC);
		rcu_read_unlock();
T
Thomas Graf 已提交
925 926 927 928 929 930 931 932 933 934 935 936
	}

	return 0;
}

static struct genl_ops genl_ctrl_ops = {
	.cmd		= CTRL_CMD_GETFAMILY,
	.doit		= ctrl_getfamily,
	.dumpit		= ctrl_dumpfamily,
	.policy		= ctrl_policy,
};

937 938 939 940
static struct genl_multicast_group notify_grp = {
	.name		= "notify",
};

J
Johannes Berg 已提交
941 942
static int __net_init genl_pernet_init(struct net *net)
{
943 944
	struct netlink_kernel_cfg cfg = {
		.input		= genl_rcv,
945
		.flags		= NL_CFG_F_NONROOT_RECV,
946 947
	};

J
Johannes Berg 已提交
948
	/* we'll bump the group number right afterwards */
949
	net->genl_sock = netlink_kernel_create(net, NETLINK_GENERIC, &cfg);
J
Johannes Berg 已提交
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970

	if (!net->genl_sock && net_eq(net, &init_net))
		panic("GENL: Cannot initialize generic netlink\n");

	if (!net->genl_sock)
		return -ENOMEM;

	return 0;
}

static void __net_exit genl_pernet_exit(struct net *net)
{
	netlink_kernel_release(net->genl_sock);
	net->genl_sock = NULL;
}

static struct pernet_operations genl_pernet_ops = {
	.init = genl_pernet_init,
	.exit = genl_pernet_exit,
};

T
Thomas Graf 已提交
971 972 973 974 975 976 977
static int __init genl_init(void)
{
	int i, err;

	for (i = 0; i < GENL_FAM_TAB_SIZE; i++)
		INIT_LIST_HEAD(&family_ht[i]);

978
	err = genl_register_family_with_ops(&genl_ctrl, &genl_ctrl_ops, 1);
T
Thomas Graf 已提交
979
	if (err < 0)
J
Johannes Berg 已提交
980
		goto problem;
T
Thomas Graf 已提交
981

J
Johannes Berg 已提交
982 983 984
	err = register_pernet_subsys(&genl_pernet_ops);
	if (err)
		goto problem;
T
Thomas Graf 已提交
985

986 987
	err = genl_register_mc_group(&genl_ctrl, &notify_grp);
	if (err < 0)
J
Johannes Berg 已提交
988
		goto problem;
989

T
Thomas Graf 已提交
990 991
	return 0;

J
Johannes Berg 已提交
992
problem:
T
Thomas Graf 已提交
993 994 995 996 997
	panic("GENL: Cannot register controller: %d\n", err);
}

subsys_initcall(genl_init);

998
static int genlmsg_mcast(struct sk_buff *skb, u32 portid, unsigned long group,
J
Johannes Berg 已提交
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
			 gfp_t flags)
{
	struct sk_buff *tmp;
	struct net *net, *prev = NULL;
	int err;

	for_each_net_rcu(net) {
		if (prev) {
			tmp = skb_clone(skb, flags);
			if (!tmp) {
				err = -ENOMEM;
				goto error;
			}
			err = nlmsg_multicast(prev->genl_sock, tmp,
1013
					      portid, group, flags);
J
Johannes Berg 已提交
1014 1015 1016 1017 1018 1019 1020
			if (err)
				goto error;
		}

		prev = net;
	}

1021
	return nlmsg_multicast(prev->genl_sock, skb, portid, group, flags);
J
Johannes Berg 已提交
1022 1023 1024 1025 1026
 error:
	kfree_skb(skb);
	return err;
}

1027
int genlmsg_multicast_allns(struct sk_buff *skb, u32 portid, unsigned int group,
J
Johannes Berg 已提交
1028 1029
			    gfp_t flags)
{
1030
	return genlmsg_mcast(skb, portid, group, flags);
J
Johannes Berg 已提交
1031 1032
}
EXPORT_SYMBOL(genlmsg_multicast_allns);
P
Pravin B Shelar 已提交
1033

1034
void genl_notify(struct sk_buff *skb, struct net *net, u32 portid, u32 group,
P
Pravin B Shelar 已提交
1035 1036 1037 1038 1039 1040 1041 1042
		 struct nlmsghdr *nlh, gfp_t flags)
{
	struct sock *sk = net->genl_sock;
	int report = 0;

	if (nlh)
		report = nlmsg_report(nlh);

1043
	nlmsg_notify(sk, skb, portid, group, report, flags);
P
Pravin B Shelar 已提交
1044 1045
}
EXPORT_SYMBOL(genl_notify);