[ALSA] opti93x - Fix a compile warning
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / xfrm / xfrm_user.c
blobac87a09ba83ed47dd03df3993eca7a108b33d016
1 /* xfrm_user.c: User interface to configure xfrm engine.
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
5 * Changes:
6 * Mitsuru KANDA @USAGI
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * IPv6 support
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/types.h>
16 #include <linux/slab.h>
17 #include <linux/socket.h>
18 #include <linux/string.h>
19 #include <linux/net.h>
20 #include <linux/skbuff.h>
21 #include <linux/rtnetlink.h>
22 #include <linux/pfkeyv2.h>
23 #include <linux/ipsec.h>
24 #include <linux/init.h>
25 #include <linux/security.h>
26 #include <net/sock.h>
27 #include <net/xfrm.h>
28 #include <net/netlink.h>
29 #include <asm/uaccess.h>
31 static struct sock *xfrm_nl;
33 static int verify_one_alg(struct rtattr **xfrma, enum xfrm_attr_type_t type)
35 struct rtattr *rt = xfrma[type - 1];
36 struct xfrm_algo *algp;
37 int len;
39 if (!rt)
40 return 0;
42 len = (rt->rta_len - sizeof(*rt)) - sizeof(*algp);
43 if (len < 0)
44 return -EINVAL;
46 algp = RTA_DATA(rt);
48 len -= (algp->alg_key_len + 7U) / 8;
49 if (len < 0)
50 return -EINVAL;
52 switch (type) {
53 case XFRMA_ALG_AUTH:
54 if (!algp->alg_key_len &&
55 strcmp(algp->alg_name, "digest_null") != 0)
56 return -EINVAL;
57 break;
59 case XFRMA_ALG_CRYPT:
60 if (!algp->alg_key_len &&
61 strcmp(algp->alg_name, "cipher_null") != 0)
62 return -EINVAL;
63 break;
65 case XFRMA_ALG_COMP:
66 /* Zero length keys are legal. */
67 break;
69 default:
70 return -EINVAL;
73 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
74 return 0;
77 static int verify_encap_tmpl(struct rtattr **xfrma)
79 struct rtattr *rt = xfrma[XFRMA_ENCAP - 1];
80 struct xfrm_encap_tmpl *encap;
82 if (!rt)
83 return 0;
85 if ((rt->rta_len - sizeof(*rt)) < sizeof(*encap))
86 return -EINVAL;
88 return 0;
92 static inline int verify_sec_ctx_len(struct rtattr **xfrma)
94 struct rtattr *rt = xfrma[XFRMA_SEC_CTX - 1];
95 struct xfrm_user_sec_ctx *uctx;
96 int len = 0;
98 if (!rt)
99 return 0;
101 if (rt->rta_len < sizeof(*uctx))
102 return -EINVAL;
104 uctx = RTA_DATA(rt);
106 if (uctx->ctx_len > PAGE_SIZE)
107 return -EINVAL;
109 len += sizeof(struct xfrm_user_sec_ctx);
110 len += uctx->ctx_len;
112 if (uctx->len != len)
113 return -EINVAL;
115 return 0;
119 static int verify_newsa_info(struct xfrm_usersa_info *p,
120 struct rtattr **xfrma)
122 int err;
124 err = -EINVAL;
125 switch (p->family) {
126 case AF_INET:
127 break;
129 case AF_INET6:
130 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
131 break;
132 #else
133 err = -EAFNOSUPPORT;
134 goto out;
135 #endif
137 default:
138 goto out;
141 err = -EINVAL;
142 switch (p->id.proto) {
143 case IPPROTO_AH:
144 if (!xfrma[XFRMA_ALG_AUTH-1] ||
145 xfrma[XFRMA_ALG_CRYPT-1] ||
146 xfrma[XFRMA_ALG_COMP-1])
147 goto out;
148 break;
150 case IPPROTO_ESP:
151 if ((!xfrma[XFRMA_ALG_AUTH-1] &&
152 !xfrma[XFRMA_ALG_CRYPT-1]) ||
153 xfrma[XFRMA_ALG_COMP-1])
154 goto out;
155 break;
157 case IPPROTO_COMP:
158 if (!xfrma[XFRMA_ALG_COMP-1] ||
159 xfrma[XFRMA_ALG_AUTH-1] ||
160 xfrma[XFRMA_ALG_CRYPT-1])
161 goto out;
162 break;
164 default:
165 goto out;
168 if ((err = verify_one_alg(xfrma, XFRMA_ALG_AUTH)))
169 goto out;
170 if ((err = verify_one_alg(xfrma, XFRMA_ALG_CRYPT)))
171 goto out;
172 if ((err = verify_one_alg(xfrma, XFRMA_ALG_COMP)))
173 goto out;
174 if ((err = verify_encap_tmpl(xfrma)))
175 goto out;
176 if ((err = verify_sec_ctx_len(xfrma)))
177 goto out;
179 err = -EINVAL;
180 switch (p->mode) {
181 case 0:
182 case 1:
183 break;
185 default:
186 goto out;
189 err = 0;
191 out:
192 return err;
195 static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
196 struct xfrm_algo_desc *(*get_byname)(char *, int),
197 struct rtattr *u_arg)
199 struct rtattr *rta = u_arg;
200 struct xfrm_algo *p, *ualg;
201 struct xfrm_algo_desc *algo;
202 int len;
204 if (!rta)
205 return 0;
207 ualg = RTA_DATA(rta);
209 algo = get_byname(ualg->alg_name, 1);
210 if (!algo)
211 return -ENOSYS;
212 *props = algo->desc.sadb_alg_id;
214 len = sizeof(*ualg) + (ualg->alg_key_len + 7U) / 8;
215 p = kmalloc(len, GFP_KERNEL);
216 if (!p)
217 return -ENOMEM;
219 memcpy(p, ualg, len);
220 *algpp = p;
221 return 0;
224 static int attach_encap_tmpl(struct xfrm_encap_tmpl **encapp, struct rtattr *u_arg)
226 struct rtattr *rta = u_arg;
227 struct xfrm_encap_tmpl *p, *uencap;
229 if (!rta)
230 return 0;
232 uencap = RTA_DATA(rta);
233 p = kmalloc(sizeof(*p), GFP_KERNEL);
234 if (!p)
235 return -ENOMEM;
237 memcpy(p, uencap, sizeof(*p));
238 *encapp = p;
239 return 0;
243 static inline int xfrm_user_sec_ctx_size(struct xfrm_policy *xp)
245 struct xfrm_sec_ctx *xfrm_ctx = xp->security;
246 int len = 0;
248 if (xfrm_ctx) {
249 len += sizeof(struct xfrm_user_sec_ctx);
250 len += xfrm_ctx->ctx_len;
252 return len;
255 static int attach_sec_ctx(struct xfrm_state *x, struct rtattr *u_arg)
257 struct xfrm_user_sec_ctx *uctx;
259 if (!u_arg)
260 return 0;
262 uctx = RTA_DATA(u_arg);
263 return security_xfrm_state_alloc(x, uctx);
266 static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
268 memcpy(&x->id, &p->id, sizeof(x->id));
269 memcpy(&x->sel, &p->sel, sizeof(x->sel));
270 memcpy(&x->lft, &p->lft, sizeof(x->lft));
271 x->props.mode = p->mode;
272 x->props.replay_window = p->replay_window;
273 x->props.reqid = p->reqid;
274 x->props.family = p->family;
275 x->props.saddr = p->saddr;
276 x->props.flags = p->flags;
279 static struct xfrm_state *xfrm_state_construct(struct xfrm_usersa_info *p,
280 struct rtattr **xfrma,
281 int *errp)
283 struct xfrm_state *x = xfrm_state_alloc();
284 int err = -ENOMEM;
286 if (!x)
287 goto error_no_put;
289 copy_from_user_state(x, p);
291 if ((err = attach_one_algo(&x->aalg, &x->props.aalgo,
292 xfrm_aalg_get_byname,
293 xfrma[XFRMA_ALG_AUTH-1])))
294 goto error;
295 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
296 xfrm_ealg_get_byname,
297 xfrma[XFRMA_ALG_CRYPT-1])))
298 goto error;
299 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
300 xfrm_calg_get_byname,
301 xfrma[XFRMA_ALG_COMP-1])))
302 goto error;
303 if ((err = attach_encap_tmpl(&x->encap, xfrma[XFRMA_ENCAP-1])))
304 goto error;
306 err = xfrm_init_state(x);
307 if (err)
308 goto error;
310 if ((err = attach_sec_ctx(x, xfrma[XFRMA_SEC_CTX-1])))
311 goto error;
313 x->km.seq = p->seq;
315 return x;
317 error:
318 x->km.state = XFRM_STATE_DEAD;
319 xfrm_state_put(x);
320 error_no_put:
321 *errp = err;
322 return NULL;
325 static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
327 struct xfrm_usersa_info *p = NLMSG_DATA(nlh);
328 struct xfrm_state *x;
329 int err;
330 struct km_event c;
332 err = verify_newsa_info(p, (struct rtattr **)xfrma);
333 if (err)
334 return err;
336 x = xfrm_state_construct(p, (struct rtattr **)xfrma, &err);
337 if (!x)
338 return err;
340 xfrm_state_hold(x);
341 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
342 err = xfrm_state_add(x);
343 else
344 err = xfrm_state_update(x);
346 if (err < 0) {
347 x->km.state = XFRM_STATE_DEAD;
348 xfrm_state_put(x);
349 goto out;
352 c.seq = nlh->nlmsg_seq;
353 c.pid = nlh->nlmsg_pid;
354 c.event = nlh->nlmsg_type;
356 km_state_notify(x, &c);
357 out:
358 xfrm_state_put(x);
359 return err;
362 static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
364 struct xfrm_state *x;
365 int err;
366 struct km_event c;
367 struct xfrm_usersa_id *p = NLMSG_DATA(nlh);
369 x = xfrm_state_lookup(&p->daddr, p->spi, p->proto, p->family);
370 if (x == NULL)
371 return -ESRCH;
373 if (xfrm_state_kern(x)) {
374 xfrm_state_put(x);
375 return -EPERM;
378 err = xfrm_state_delete(x);
379 if (err < 0) {
380 xfrm_state_put(x);
381 return err;
384 c.seq = nlh->nlmsg_seq;
385 c.pid = nlh->nlmsg_pid;
386 c.event = nlh->nlmsg_type;
387 km_state_notify(x, &c);
388 xfrm_state_put(x);
390 return err;
393 static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
395 memcpy(&p->id, &x->id, sizeof(p->id));
396 memcpy(&p->sel, &x->sel, sizeof(p->sel));
397 memcpy(&p->lft, &x->lft, sizeof(p->lft));
398 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
399 memcpy(&p->stats, &x->stats, sizeof(p->stats));
400 p->saddr = x->props.saddr;
401 p->mode = x->props.mode;
402 p->replay_window = x->props.replay_window;
403 p->reqid = x->props.reqid;
404 p->family = x->props.family;
405 p->flags = x->props.flags;
406 p->seq = x->km.seq;
409 struct xfrm_dump_info {
410 struct sk_buff *in_skb;
411 struct sk_buff *out_skb;
412 u32 nlmsg_seq;
413 u16 nlmsg_flags;
414 int start_idx;
415 int this_idx;
418 static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
420 struct xfrm_dump_info *sp = ptr;
421 struct sk_buff *in_skb = sp->in_skb;
422 struct sk_buff *skb = sp->out_skb;
423 struct xfrm_usersa_info *p;
424 struct nlmsghdr *nlh;
425 unsigned char *b = skb->tail;
427 if (sp->this_idx < sp->start_idx)
428 goto out;
430 nlh = NLMSG_PUT(skb, NETLINK_CB(in_skb).pid,
431 sp->nlmsg_seq,
432 XFRM_MSG_NEWSA, sizeof(*p));
433 nlh->nlmsg_flags = sp->nlmsg_flags;
435 p = NLMSG_DATA(nlh);
436 copy_to_user_state(x, p);
438 if (x->aalg)
439 RTA_PUT(skb, XFRMA_ALG_AUTH,
440 sizeof(*(x->aalg))+(x->aalg->alg_key_len+7)/8, x->aalg);
441 if (x->ealg)
442 RTA_PUT(skb, XFRMA_ALG_CRYPT,
443 sizeof(*(x->ealg))+(x->ealg->alg_key_len+7)/8, x->ealg);
444 if (x->calg)
445 RTA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
447 if (x->encap)
448 RTA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
450 if (x->security) {
451 int ctx_size = sizeof(struct xfrm_sec_ctx) +
452 x->security->ctx_len;
453 struct rtattr *rt = __RTA_PUT(skb, XFRMA_SEC_CTX, ctx_size);
454 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
456 uctx->exttype = XFRMA_SEC_CTX;
457 uctx->len = ctx_size;
458 uctx->ctx_doi = x->security->ctx_doi;
459 uctx->ctx_alg = x->security->ctx_alg;
460 uctx->ctx_len = x->security->ctx_len;
461 memcpy(uctx + 1, x->security->ctx_str, x->security->ctx_len);
463 nlh->nlmsg_len = skb->tail - b;
464 out:
465 sp->this_idx++;
466 return 0;
468 nlmsg_failure:
469 rtattr_failure:
470 skb_trim(skb, b - skb->data);
471 return -1;
474 static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
476 struct xfrm_dump_info info;
478 info.in_skb = cb->skb;
479 info.out_skb = skb;
480 info.nlmsg_seq = cb->nlh->nlmsg_seq;
481 info.nlmsg_flags = NLM_F_MULTI;
482 info.this_idx = 0;
483 info.start_idx = cb->args[0];
484 (void) xfrm_state_walk(IPSEC_PROTO_ANY, dump_one_state, &info);
485 cb->args[0] = info.this_idx;
487 return skb->len;
490 static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
491 struct xfrm_state *x, u32 seq)
493 struct xfrm_dump_info info;
494 struct sk_buff *skb;
496 skb = alloc_skb(NLMSG_GOODSIZE, GFP_ATOMIC);
497 if (!skb)
498 return ERR_PTR(-ENOMEM);
500 NETLINK_CB(skb).dst_pid = NETLINK_CB(in_skb).pid;
501 info.in_skb = in_skb;
502 info.out_skb = skb;
503 info.nlmsg_seq = seq;
504 info.nlmsg_flags = 0;
505 info.this_idx = info.start_idx = 0;
507 if (dump_one_state(x, 0, &info)) {
508 kfree_skb(skb);
509 return NULL;
512 return skb;
515 static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
517 struct xfrm_usersa_id *p = NLMSG_DATA(nlh);
518 struct xfrm_state *x;
519 struct sk_buff *resp_skb;
520 int err;
522 x = xfrm_state_lookup(&p->daddr, p->spi, p->proto, p->family);
523 err = -ESRCH;
524 if (x == NULL)
525 goto out_noput;
527 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
528 if (IS_ERR(resp_skb)) {
529 err = PTR_ERR(resp_skb);
530 } else {
531 err = netlink_unicast(xfrm_nl, resp_skb,
532 NETLINK_CB(skb).pid, MSG_DONTWAIT);
534 xfrm_state_put(x);
535 out_noput:
536 return err;
539 static int verify_userspi_info(struct xfrm_userspi_info *p)
541 switch (p->info.id.proto) {
542 case IPPROTO_AH:
543 case IPPROTO_ESP:
544 break;
546 case IPPROTO_COMP:
547 /* IPCOMP spi is 16-bits. */
548 if (p->max >= 0x10000)
549 return -EINVAL;
550 break;
552 default:
553 return -EINVAL;
556 if (p->min > p->max)
557 return -EINVAL;
559 return 0;
562 static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
564 struct xfrm_state *x;
565 struct xfrm_userspi_info *p;
566 struct sk_buff *resp_skb;
567 xfrm_address_t *daddr;
568 int family;
569 int err;
571 p = NLMSG_DATA(nlh);
572 err = verify_userspi_info(p);
573 if (err)
574 goto out_noput;
576 family = p->info.family;
577 daddr = &p->info.id.daddr;
579 x = NULL;
580 if (p->info.seq) {
581 x = xfrm_find_acq_byseq(p->info.seq);
582 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
583 xfrm_state_put(x);
584 x = NULL;
588 if (!x)
589 x = xfrm_find_acq(p->info.mode, p->info.reqid,
590 p->info.id.proto, daddr,
591 &p->info.saddr, 1,
592 family);
593 err = -ENOENT;
594 if (x == NULL)
595 goto out_noput;
597 resp_skb = ERR_PTR(-ENOENT);
599 spin_lock_bh(&x->lock);
600 if (x->km.state != XFRM_STATE_DEAD) {
601 xfrm_alloc_spi(x, htonl(p->min), htonl(p->max));
602 if (x->id.spi)
603 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
605 spin_unlock_bh(&x->lock);
607 if (IS_ERR(resp_skb)) {
608 err = PTR_ERR(resp_skb);
609 goto out;
612 err = netlink_unicast(xfrm_nl, resp_skb,
613 NETLINK_CB(skb).pid, MSG_DONTWAIT);
615 out:
616 xfrm_state_put(x);
617 out_noput:
618 return err;
621 static int verify_policy_dir(__u8 dir)
623 switch (dir) {
624 case XFRM_POLICY_IN:
625 case XFRM_POLICY_OUT:
626 case XFRM_POLICY_FWD:
627 break;
629 default:
630 return -EINVAL;
633 return 0;
636 static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
638 switch (p->share) {
639 case XFRM_SHARE_ANY:
640 case XFRM_SHARE_SESSION:
641 case XFRM_SHARE_USER:
642 case XFRM_SHARE_UNIQUE:
643 break;
645 default:
646 return -EINVAL;
649 switch (p->action) {
650 case XFRM_POLICY_ALLOW:
651 case XFRM_POLICY_BLOCK:
652 break;
654 default:
655 return -EINVAL;
658 switch (p->sel.family) {
659 case AF_INET:
660 break;
662 case AF_INET6:
663 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
664 break;
665 #else
666 return -EAFNOSUPPORT;
667 #endif
669 default:
670 return -EINVAL;
673 return verify_policy_dir(p->dir);
676 static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct rtattr **xfrma)
678 struct rtattr *rt = xfrma[XFRMA_SEC_CTX-1];
679 struct xfrm_user_sec_ctx *uctx;
681 if (!rt)
682 return 0;
684 uctx = RTA_DATA(rt);
685 return security_xfrm_policy_alloc(pol, uctx);
688 static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
689 int nr)
691 int i;
693 xp->xfrm_nr = nr;
694 for (i = 0; i < nr; i++, ut++) {
695 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
697 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
698 memcpy(&t->saddr, &ut->saddr,
699 sizeof(xfrm_address_t));
700 t->reqid = ut->reqid;
701 t->mode = ut->mode;
702 t->share = ut->share;
703 t->optional = ut->optional;
704 t->aalgos = ut->aalgos;
705 t->ealgos = ut->ealgos;
706 t->calgos = ut->calgos;
710 static int copy_from_user_tmpl(struct xfrm_policy *pol, struct rtattr **xfrma)
712 struct rtattr *rt = xfrma[XFRMA_TMPL-1];
713 struct xfrm_user_tmpl *utmpl;
714 int nr;
716 if (!rt) {
717 pol->xfrm_nr = 0;
718 } else {
719 nr = (rt->rta_len - sizeof(*rt)) / sizeof(*utmpl);
721 if (nr > XFRM_MAX_DEPTH)
722 return -EINVAL;
724 copy_templates(pol, RTA_DATA(rt), nr);
726 return 0;
729 static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
731 xp->priority = p->priority;
732 xp->index = p->index;
733 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
734 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
735 xp->action = p->action;
736 xp->flags = p->flags;
737 xp->family = p->sel.family;
738 /* XXX xp->share = p->share; */
741 static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
743 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
744 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
745 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
746 p->priority = xp->priority;
747 p->index = xp->index;
748 p->sel.family = xp->family;
749 p->dir = dir;
750 p->action = xp->action;
751 p->flags = xp->flags;
752 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
755 static struct xfrm_policy *xfrm_policy_construct(struct xfrm_userpolicy_info *p, struct rtattr **xfrma, int *errp)
757 struct xfrm_policy *xp = xfrm_policy_alloc(GFP_KERNEL);
758 int err;
760 if (!xp) {
761 *errp = -ENOMEM;
762 return NULL;
765 copy_from_user_policy(xp, p);
767 if (!(err = copy_from_user_tmpl(xp, xfrma)))
768 err = copy_from_user_sec_ctx(xp, xfrma);
770 if (err) {
771 *errp = err;
772 kfree(xp);
773 xp = NULL;
776 return xp;
779 static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
781 struct xfrm_userpolicy_info *p = NLMSG_DATA(nlh);
782 struct xfrm_policy *xp;
783 struct km_event c;
784 int err;
785 int excl;
787 err = verify_newpolicy_info(p);
788 if (err)
789 return err;
790 err = verify_sec_ctx_len((struct rtattr **)xfrma);
791 if (err)
792 return err;
794 xp = xfrm_policy_construct(p, (struct rtattr **)xfrma, &err);
795 if (!xp)
796 return err;
798 /* shouldnt excl be based on nlh flags??
799 * Aha! this is anti-netlink really i.e more pfkey derived
800 * in netlink excl is a flag and you wouldnt need
801 * a type XFRM_MSG_UPDPOLICY - JHS */
802 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
803 err = xfrm_policy_insert(p->dir, xp, excl);
804 if (err) {
805 security_xfrm_policy_free(xp);
806 kfree(xp);
807 return err;
810 c.event = nlh->nlmsg_type;
811 c.seq = nlh->nlmsg_seq;
812 c.pid = nlh->nlmsg_pid;
813 km_policy_notify(xp, p->dir, &c);
815 xfrm_pol_put(xp);
817 return 0;
820 static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
822 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
823 int i;
825 if (xp->xfrm_nr == 0)
826 return 0;
828 for (i = 0; i < xp->xfrm_nr; i++) {
829 struct xfrm_user_tmpl *up = &vec[i];
830 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
832 memcpy(&up->id, &kp->id, sizeof(up->id));
833 up->family = xp->family;
834 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
835 up->reqid = kp->reqid;
836 up->mode = kp->mode;
837 up->share = kp->share;
838 up->optional = kp->optional;
839 up->aalgos = kp->aalgos;
840 up->ealgos = kp->ealgos;
841 up->calgos = kp->calgos;
843 RTA_PUT(skb, XFRMA_TMPL,
844 (sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr),
845 vec);
847 return 0;
849 rtattr_failure:
850 return -1;
853 static int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
855 if (xp->security) {
856 int ctx_size = sizeof(struct xfrm_sec_ctx) +
857 xp->security->ctx_len;
858 struct rtattr *rt = __RTA_PUT(skb, XFRMA_SEC_CTX, ctx_size);
859 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
861 uctx->exttype = XFRMA_SEC_CTX;
862 uctx->len = ctx_size;
863 uctx->ctx_doi = xp->security->ctx_doi;
864 uctx->ctx_alg = xp->security->ctx_alg;
865 uctx->ctx_len = xp->security->ctx_len;
866 memcpy(uctx + 1, xp->security->ctx_str, xp->security->ctx_len);
868 return 0;
870 rtattr_failure:
871 return -1;
874 static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
876 struct xfrm_dump_info *sp = ptr;
877 struct xfrm_userpolicy_info *p;
878 struct sk_buff *in_skb = sp->in_skb;
879 struct sk_buff *skb = sp->out_skb;
880 struct nlmsghdr *nlh;
881 unsigned char *b = skb->tail;
883 if (sp->this_idx < sp->start_idx)
884 goto out;
886 nlh = NLMSG_PUT(skb, NETLINK_CB(in_skb).pid,
887 sp->nlmsg_seq,
888 XFRM_MSG_NEWPOLICY, sizeof(*p));
889 p = NLMSG_DATA(nlh);
890 nlh->nlmsg_flags = sp->nlmsg_flags;
892 copy_to_user_policy(xp, p, dir);
893 if (copy_to_user_tmpl(xp, skb) < 0)
894 goto nlmsg_failure;
895 if (copy_to_user_sec_ctx(xp, skb))
896 goto nlmsg_failure;
898 nlh->nlmsg_len = skb->tail - b;
899 out:
900 sp->this_idx++;
901 return 0;
903 nlmsg_failure:
904 skb_trim(skb, b - skb->data);
905 return -1;
908 static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
910 struct xfrm_dump_info info;
912 info.in_skb = cb->skb;
913 info.out_skb = skb;
914 info.nlmsg_seq = cb->nlh->nlmsg_seq;
915 info.nlmsg_flags = NLM_F_MULTI;
916 info.this_idx = 0;
917 info.start_idx = cb->args[0];
918 (void) xfrm_policy_walk(dump_one_policy, &info);
919 cb->args[0] = info.this_idx;
921 return skb->len;
924 static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
925 struct xfrm_policy *xp,
926 int dir, u32 seq)
928 struct xfrm_dump_info info;
929 struct sk_buff *skb;
931 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
932 if (!skb)
933 return ERR_PTR(-ENOMEM);
935 NETLINK_CB(skb).dst_pid = NETLINK_CB(in_skb).pid;
936 info.in_skb = in_skb;
937 info.out_skb = skb;
938 info.nlmsg_seq = seq;
939 info.nlmsg_flags = 0;
940 info.this_idx = info.start_idx = 0;
942 if (dump_one_policy(xp, dir, 0, &info) < 0) {
943 kfree_skb(skb);
944 return NULL;
947 return skb;
950 static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
952 struct xfrm_policy *xp;
953 struct xfrm_userpolicy_id *p;
954 int err;
955 struct km_event c;
956 int delete;
958 p = NLMSG_DATA(nlh);
959 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
961 err = verify_policy_dir(p->dir);
962 if (err)
963 return err;
965 if (p->index)
966 xp = xfrm_policy_byid(p->dir, p->index, delete);
967 else {
968 struct rtattr **rtattrs = (struct rtattr **)xfrma;
969 struct rtattr *rt = rtattrs[XFRMA_SEC_CTX-1];
970 struct xfrm_policy tmp;
972 err = verify_sec_ctx_len(rtattrs);
973 if (err)
974 return err;
976 memset(&tmp, 0, sizeof(struct xfrm_policy));
977 if (rt) {
978 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
980 if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
981 return err;
983 xp = xfrm_policy_bysel_ctx(p->dir, &p->sel, tmp.security, delete);
984 security_xfrm_policy_free(&tmp);
986 if (xp == NULL)
987 return -ENOENT;
989 if (!delete) {
990 struct sk_buff *resp_skb;
992 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
993 if (IS_ERR(resp_skb)) {
994 err = PTR_ERR(resp_skb);
995 } else {
996 err = netlink_unicast(xfrm_nl, resp_skb,
997 NETLINK_CB(skb).pid,
998 MSG_DONTWAIT);
1000 } else {
1001 c.data.byid = p->index;
1002 c.event = nlh->nlmsg_type;
1003 c.seq = nlh->nlmsg_seq;
1004 c.pid = nlh->nlmsg_pid;
1005 km_policy_notify(xp, p->dir, &c);
1008 xfrm_pol_put(xp);
1010 return err;
1013 static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1015 struct km_event c;
1016 struct xfrm_usersa_flush *p = NLMSG_DATA(nlh);
1018 xfrm_state_flush(p->proto);
1019 c.data.proto = p->proto;
1020 c.event = nlh->nlmsg_type;
1021 c.seq = nlh->nlmsg_seq;
1022 c.pid = nlh->nlmsg_pid;
1023 km_state_notify(NULL, &c);
1025 return 0;
1028 static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1030 struct km_event c;
1032 xfrm_policy_flush();
1033 c.event = nlh->nlmsg_type;
1034 c.seq = nlh->nlmsg_seq;
1035 c.pid = nlh->nlmsg_pid;
1036 km_policy_notify(NULL, 0, &c);
1037 return 0;
1040 #define XMSGSIZE(type) NLMSG_LENGTH(sizeof(struct type))
1042 static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
1043 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1044 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1045 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1046 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1047 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1048 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1049 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
1050 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
1051 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
1052 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1053 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1054 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
1055 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
1056 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = NLMSG_LENGTH(0),
1059 #undef XMSGSIZE
1061 static struct xfrm_link {
1062 int (*doit)(struct sk_buff *, struct nlmsghdr *, void **);
1063 int (*dump)(struct sk_buff *, struct netlink_callback *);
1064 } xfrm_dispatch[XFRM_NR_MSGTYPES] = {
1065 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
1066 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
1067 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
1068 .dump = xfrm_dump_sa },
1069 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1070 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
1071 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
1072 .dump = xfrm_dump_policy },
1073 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
1074 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1075 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
1076 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
1077 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
1080 static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *errp)
1082 struct rtattr *xfrma[XFRMA_MAX];
1083 struct xfrm_link *link;
1084 int type, min_len;
1086 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
1087 return 0;
1089 type = nlh->nlmsg_type;
1091 /* A control message: ignore them */
1092 if (type < XFRM_MSG_BASE)
1093 return 0;
1095 /* Unknown message: reply with EINVAL */
1096 if (type > XFRM_MSG_MAX)
1097 goto err_einval;
1099 type -= XFRM_MSG_BASE;
1100 link = &xfrm_dispatch[type];
1102 /* All operations require privileges, even GET */
1103 if (security_netlink_recv(skb)) {
1104 *errp = -EPERM;
1105 return -1;
1108 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
1109 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
1110 (nlh->nlmsg_flags & NLM_F_DUMP)) {
1111 if (link->dump == NULL)
1112 goto err_einval;
1114 if ((*errp = netlink_dump_start(xfrm_nl, skb, nlh,
1115 link->dump, NULL)) != 0) {
1116 return -1;
1119 netlink_queue_skip(nlh, skb);
1120 return -1;
1123 memset(xfrma, 0, sizeof(xfrma));
1125 if (nlh->nlmsg_len < (min_len = xfrm_msg_min[type]))
1126 goto err_einval;
1128 if (nlh->nlmsg_len > min_len) {
1129 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
1130 struct rtattr *attr = (void *) nlh + NLMSG_ALIGN(min_len);
1132 while (RTA_OK(attr, attrlen)) {
1133 unsigned short flavor = attr->rta_type;
1134 if (flavor) {
1135 if (flavor > XFRMA_MAX)
1136 goto err_einval;
1137 xfrma[flavor - 1] = attr;
1139 attr = RTA_NEXT(attr, attrlen);
1143 if (link->doit == NULL)
1144 goto err_einval;
1145 *errp = link->doit(skb, nlh, (void **) &xfrma);
1147 return *errp;
1149 err_einval:
1150 *errp = -EINVAL;
1151 return -1;
1154 static void xfrm_netlink_rcv(struct sock *sk, int len)
1156 unsigned int qlen = 0;
1158 do {
1159 down(&xfrm_cfg_sem);
1160 netlink_run_queue(sk, &qlen, &xfrm_user_rcv_msg);
1161 up(&xfrm_cfg_sem);
1163 } while (qlen);
1166 static int build_expire(struct sk_buff *skb, struct xfrm_state *x, int hard)
1168 struct xfrm_user_expire *ue;
1169 struct nlmsghdr *nlh;
1170 unsigned char *b = skb->tail;
1172 nlh = NLMSG_PUT(skb, 0, 0, XFRM_MSG_EXPIRE,
1173 sizeof(*ue));
1174 ue = NLMSG_DATA(nlh);
1175 nlh->nlmsg_flags = 0;
1177 copy_to_user_state(x, &ue->state);
1178 ue->hard = (hard != 0) ? 1 : 0;
1180 nlh->nlmsg_len = skb->tail - b;
1181 return skb->len;
1183 nlmsg_failure:
1184 skb_trim(skb, b - skb->data);
1185 return -1;
1188 static int xfrm_exp_state_notify(struct xfrm_state *x, struct km_event *c)
1190 struct sk_buff *skb;
1191 int len = NLMSG_LENGTH(sizeof(struct xfrm_user_expire));
1193 skb = alloc_skb(len, GFP_ATOMIC);
1194 if (skb == NULL)
1195 return -ENOMEM;
1197 if (build_expire(skb, x, c->data.hard) < 0)
1198 BUG();
1200 NETLINK_CB(skb).dst_group = XFRMNLGRP_EXPIRE;
1201 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
1204 static int xfrm_notify_sa_flush(struct km_event *c)
1206 struct xfrm_usersa_flush *p;
1207 struct nlmsghdr *nlh;
1208 struct sk_buff *skb;
1209 unsigned char *b;
1210 int len = NLMSG_LENGTH(sizeof(struct xfrm_usersa_flush));
1212 skb = alloc_skb(len, GFP_ATOMIC);
1213 if (skb == NULL)
1214 return -ENOMEM;
1215 b = skb->tail;
1217 nlh = NLMSG_PUT(skb, c->pid, c->seq,
1218 XFRM_MSG_FLUSHSA, sizeof(*p));
1219 nlh->nlmsg_flags = 0;
1221 p = NLMSG_DATA(nlh);
1222 p->proto = c->data.proto;
1224 nlh->nlmsg_len = skb->tail - b;
1226 NETLINK_CB(skb).dst_group = XFRMNLGRP_SA;
1227 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
1229 nlmsg_failure:
1230 kfree_skb(skb);
1231 return -1;
1234 static int inline xfrm_sa_len(struct xfrm_state *x)
1236 int l = 0;
1237 if (x->aalg)
1238 l += RTA_SPACE(sizeof(*x->aalg) + (x->aalg->alg_key_len+7)/8);
1239 if (x->ealg)
1240 l += RTA_SPACE(sizeof(*x->ealg) + (x->ealg->alg_key_len+7)/8);
1241 if (x->calg)
1242 l += RTA_SPACE(sizeof(*x->calg));
1243 if (x->encap)
1244 l += RTA_SPACE(sizeof(*x->encap));
1246 return l;
1249 static int xfrm_notify_sa(struct xfrm_state *x, struct km_event *c)
1251 struct xfrm_usersa_info *p;
1252 struct xfrm_usersa_id *id;
1253 struct nlmsghdr *nlh;
1254 struct sk_buff *skb;
1255 unsigned char *b;
1256 int len = xfrm_sa_len(x);
1257 int headlen;
1259 headlen = sizeof(*p);
1260 if (c->event == XFRM_MSG_DELSA) {
1261 len += RTA_SPACE(headlen);
1262 headlen = sizeof(*id);
1264 len += NLMSG_SPACE(headlen);
1266 skb = alloc_skb(len, GFP_ATOMIC);
1267 if (skb == NULL)
1268 return -ENOMEM;
1269 b = skb->tail;
1271 nlh = NLMSG_PUT(skb, c->pid, c->seq, c->event, headlen);
1272 nlh->nlmsg_flags = 0;
1274 p = NLMSG_DATA(nlh);
1275 if (c->event == XFRM_MSG_DELSA) {
1276 id = NLMSG_DATA(nlh);
1277 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
1278 id->spi = x->id.spi;
1279 id->family = x->props.family;
1280 id->proto = x->id.proto;
1282 p = RTA_DATA(__RTA_PUT(skb, XFRMA_SA, sizeof(*p)));
1285 copy_to_user_state(x, p);
1287 if (x->aalg)
1288 RTA_PUT(skb, XFRMA_ALG_AUTH,
1289 sizeof(*(x->aalg))+(x->aalg->alg_key_len+7)/8, x->aalg);
1290 if (x->ealg)
1291 RTA_PUT(skb, XFRMA_ALG_CRYPT,
1292 sizeof(*(x->ealg))+(x->ealg->alg_key_len+7)/8, x->ealg);
1293 if (x->calg)
1294 RTA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
1296 if (x->encap)
1297 RTA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
1299 nlh->nlmsg_len = skb->tail - b;
1301 NETLINK_CB(skb).dst_group = XFRMNLGRP_SA;
1302 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
1304 nlmsg_failure:
1305 rtattr_failure:
1306 kfree_skb(skb);
1307 return -1;
1310 static int xfrm_send_state_notify(struct xfrm_state *x, struct km_event *c)
1313 switch (c->event) {
1314 case XFRM_MSG_EXPIRE:
1315 return xfrm_exp_state_notify(x, c);
1316 case XFRM_MSG_DELSA:
1317 case XFRM_MSG_UPDSA:
1318 case XFRM_MSG_NEWSA:
1319 return xfrm_notify_sa(x, c);
1320 case XFRM_MSG_FLUSHSA:
1321 return xfrm_notify_sa_flush(c);
1322 default:
1323 printk("xfrm_user: Unknown SA event %d\n", c->event);
1324 break;
1327 return 0;
1331 static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
1332 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
1333 int dir)
1335 struct xfrm_user_acquire *ua;
1336 struct nlmsghdr *nlh;
1337 unsigned char *b = skb->tail;
1338 __u32 seq = xfrm_get_acqseq();
1340 nlh = NLMSG_PUT(skb, 0, 0, XFRM_MSG_ACQUIRE,
1341 sizeof(*ua));
1342 ua = NLMSG_DATA(nlh);
1343 nlh->nlmsg_flags = 0;
1345 memcpy(&ua->id, &x->id, sizeof(ua->id));
1346 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
1347 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
1348 copy_to_user_policy(xp, &ua->policy, dir);
1349 ua->aalgos = xt->aalgos;
1350 ua->ealgos = xt->ealgos;
1351 ua->calgos = xt->calgos;
1352 ua->seq = x->km.seq = seq;
1354 if (copy_to_user_tmpl(xp, skb) < 0)
1355 goto nlmsg_failure;
1356 if (copy_to_user_sec_ctx(xp, skb))
1357 goto nlmsg_failure;
1359 nlh->nlmsg_len = skb->tail - b;
1360 return skb->len;
1362 nlmsg_failure:
1363 skb_trim(skb, b - skb->data);
1364 return -1;
1367 static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
1368 struct xfrm_policy *xp, int dir)
1370 struct sk_buff *skb;
1371 size_t len;
1373 len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
1374 len += NLMSG_SPACE(sizeof(struct xfrm_user_acquire));
1375 len += RTA_SPACE(xfrm_user_sec_ctx_size(xp));
1376 skb = alloc_skb(len, GFP_ATOMIC);
1377 if (skb == NULL)
1378 return -ENOMEM;
1380 if (build_acquire(skb, x, xt, xp, dir) < 0)
1381 BUG();
1383 NETLINK_CB(skb).dst_group = XFRMNLGRP_ACQUIRE;
1384 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
1387 /* User gives us xfrm_user_policy_info followed by an array of 0
1388 * or more templates.
1390 static struct xfrm_policy *xfrm_compile_policy(u16 family, int opt,
1391 u8 *data, int len, int *dir)
1393 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
1394 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
1395 struct xfrm_policy *xp;
1396 int nr;
1398 switch (family) {
1399 case AF_INET:
1400 if (opt != IP_XFRM_POLICY) {
1401 *dir = -EOPNOTSUPP;
1402 return NULL;
1404 break;
1405 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1406 case AF_INET6:
1407 if (opt != IPV6_XFRM_POLICY) {
1408 *dir = -EOPNOTSUPP;
1409 return NULL;
1411 break;
1412 #endif
1413 default:
1414 *dir = -EINVAL;
1415 return NULL;
1418 *dir = -EINVAL;
1420 if (len < sizeof(*p) ||
1421 verify_newpolicy_info(p))
1422 return NULL;
1424 nr = ((len - sizeof(*p)) / sizeof(*ut));
1425 if (nr > XFRM_MAX_DEPTH)
1426 return NULL;
1428 if (p->dir > XFRM_POLICY_OUT)
1429 return NULL;
1431 xp = xfrm_policy_alloc(GFP_KERNEL);
1432 if (xp == NULL) {
1433 *dir = -ENOBUFS;
1434 return NULL;
1437 copy_from_user_policy(xp, p);
1438 copy_templates(xp, ut, nr);
1440 *dir = p->dir;
1442 return xp;
1445 static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
1446 int dir, int hard)
1448 struct xfrm_user_polexpire *upe;
1449 struct nlmsghdr *nlh;
1450 unsigned char *b = skb->tail;
1452 nlh = NLMSG_PUT(skb, 0, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe));
1453 upe = NLMSG_DATA(nlh);
1454 nlh->nlmsg_flags = 0;
1456 copy_to_user_policy(xp, &upe->pol, dir);
1457 if (copy_to_user_tmpl(xp, skb) < 0)
1458 goto nlmsg_failure;
1459 if (copy_to_user_sec_ctx(xp, skb))
1460 goto nlmsg_failure;
1461 upe->hard = !!hard;
1463 nlh->nlmsg_len = skb->tail - b;
1464 return skb->len;
1466 nlmsg_failure:
1467 skb_trim(skb, b - skb->data);
1468 return -1;
1471 static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
1473 struct sk_buff *skb;
1474 size_t len;
1476 len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
1477 len += NLMSG_SPACE(sizeof(struct xfrm_user_polexpire));
1478 len += RTA_SPACE(xfrm_user_sec_ctx_size(xp));
1479 skb = alloc_skb(len, GFP_ATOMIC);
1480 if (skb == NULL)
1481 return -ENOMEM;
1483 if (build_polexpire(skb, xp, dir, c->data.hard) < 0)
1484 BUG();
1486 NETLINK_CB(skb).dst_group = XFRMNLGRP_EXPIRE;
1487 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
1490 static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, struct km_event *c)
1492 struct xfrm_userpolicy_info *p;
1493 struct xfrm_userpolicy_id *id;
1494 struct nlmsghdr *nlh;
1495 struct sk_buff *skb;
1496 unsigned char *b;
1497 int len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
1498 int headlen;
1500 headlen = sizeof(*p);
1501 if (c->event == XFRM_MSG_DELPOLICY) {
1502 len += RTA_SPACE(headlen);
1503 headlen = sizeof(*id);
1505 len += NLMSG_SPACE(headlen);
1507 skb = alloc_skb(len, GFP_ATOMIC);
1508 if (skb == NULL)
1509 return -ENOMEM;
1510 b = skb->tail;
1512 nlh = NLMSG_PUT(skb, c->pid, c->seq, c->event, headlen);
1514 p = NLMSG_DATA(nlh);
1515 if (c->event == XFRM_MSG_DELPOLICY) {
1516 id = NLMSG_DATA(nlh);
1517 memset(id, 0, sizeof(*id));
1518 id->dir = dir;
1519 if (c->data.byid)
1520 id->index = xp->index;
1521 else
1522 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
1524 p = RTA_DATA(__RTA_PUT(skb, XFRMA_POLICY, sizeof(*p)));
1527 nlh->nlmsg_flags = 0;
1529 copy_to_user_policy(xp, p, dir);
1530 if (copy_to_user_tmpl(xp, skb) < 0)
1531 goto nlmsg_failure;
1533 nlh->nlmsg_len = skb->tail - b;
1535 NETLINK_CB(skb).dst_group = XFRMNLGRP_POLICY;
1536 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
1538 nlmsg_failure:
1539 rtattr_failure:
1540 kfree_skb(skb);
1541 return -1;
1544 static int xfrm_notify_policy_flush(struct km_event *c)
1546 struct nlmsghdr *nlh;
1547 struct sk_buff *skb;
1548 unsigned char *b;
1549 int len = NLMSG_LENGTH(0);
1551 skb = alloc_skb(len, GFP_ATOMIC);
1552 if (skb == NULL)
1553 return -ENOMEM;
1554 b = skb->tail;
1557 nlh = NLMSG_PUT(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0);
1559 nlh->nlmsg_len = skb->tail - b;
1561 NETLINK_CB(skb).dst_group = XFRMNLGRP_POLICY;
1562 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
1564 nlmsg_failure:
1565 kfree_skb(skb);
1566 return -1;
1569 static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
1572 switch (c->event) {
1573 case XFRM_MSG_NEWPOLICY:
1574 case XFRM_MSG_UPDPOLICY:
1575 case XFRM_MSG_DELPOLICY:
1576 return xfrm_notify_policy(xp, dir, c);
1577 case XFRM_MSG_FLUSHPOLICY:
1578 return xfrm_notify_policy_flush(c);
1579 case XFRM_MSG_POLEXPIRE:
1580 return xfrm_exp_policy_notify(xp, dir, c);
1581 default:
1582 printk("xfrm_user: Unknown Policy event %d\n", c->event);
1585 return 0;
1589 static struct xfrm_mgr netlink_mgr = {
1590 .id = "netlink",
1591 .notify = xfrm_send_state_notify,
1592 .acquire = xfrm_send_acquire,
1593 .compile_policy = xfrm_compile_policy,
1594 .notify_policy = xfrm_send_policy_notify,
1597 static int __init xfrm_user_init(void)
1599 printk(KERN_INFO "Initializing IPsec netlink socket\n");
1601 xfrm_nl = netlink_kernel_create(NETLINK_XFRM, XFRMNLGRP_MAX,
1602 xfrm_netlink_rcv, THIS_MODULE);
1603 if (xfrm_nl == NULL)
1604 return -ENOMEM;
1606 xfrm_register_km(&netlink_mgr);
1608 return 0;
1611 static void __exit xfrm_user_exit(void)
1613 xfrm_unregister_km(&netlink_mgr);
1614 sock_release(xfrm_nl->sk_socket);
1617 module_init(xfrm_user_init);
1618 module_exit(xfrm_user_exit);
1619 MODULE_LICENSE("GPL");
1620 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);