[PATCH] i386: fix bound check IDT gate
[linux-2.6/verdex.git] / net / xfrm / xfrm_user.c
blob92e2b804c6061a9442b951b99b0d99f8067a657a
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 kfree(xp);
806 return err;
809 c.event = nlh->nlmsg_type;
810 c.seq = nlh->nlmsg_seq;
811 c.pid = nlh->nlmsg_pid;
812 km_policy_notify(xp, p->dir, &c);
814 xfrm_pol_put(xp);
816 return 0;
819 static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
821 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
822 int i;
824 if (xp->xfrm_nr == 0)
825 return 0;
827 for (i = 0; i < xp->xfrm_nr; i++) {
828 struct xfrm_user_tmpl *up = &vec[i];
829 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
831 memcpy(&up->id, &kp->id, sizeof(up->id));
832 up->family = xp->family;
833 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
834 up->reqid = kp->reqid;
835 up->mode = kp->mode;
836 up->share = kp->share;
837 up->optional = kp->optional;
838 up->aalgos = kp->aalgos;
839 up->ealgos = kp->ealgos;
840 up->calgos = kp->calgos;
842 RTA_PUT(skb, XFRMA_TMPL,
843 (sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr),
844 vec);
846 return 0;
848 rtattr_failure:
849 return -1;
852 static int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
854 if (xp->security) {
855 int ctx_size = sizeof(struct xfrm_sec_ctx) +
856 xp->security->ctx_len;
857 struct rtattr *rt = __RTA_PUT(skb, XFRMA_SEC_CTX, ctx_size);
858 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
860 uctx->exttype = XFRMA_SEC_CTX;
861 uctx->len = ctx_size;
862 uctx->ctx_doi = xp->security->ctx_doi;
863 uctx->ctx_alg = xp->security->ctx_alg;
864 uctx->ctx_len = xp->security->ctx_len;
865 memcpy(uctx + 1, xp->security->ctx_str, xp->security->ctx_len);
867 return 0;
869 rtattr_failure:
870 return -1;
873 static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
875 struct xfrm_dump_info *sp = ptr;
876 struct xfrm_userpolicy_info *p;
877 struct sk_buff *in_skb = sp->in_skb;
878 struct sk_buff *skb = sp->out_skb;
879 struct nlmsghdr *nlh;
880 unsigned char *b = skb->tail;
882 if (sp->this_idx < sp->start_idx)
883 goto out;
885 nlh = NLMSG_PUT(skb, NETLINK_CB(in_skb).pid,
886 sp->nlmsg_seq,
887 XFRM_MSG_NEWPOLICY, sizeof(*p));
888 p = NLMSG_DATA(nlh);
889 nlh->nlmsg_flags = sp->nlmsg_flags;
891 copy_to_user_policy(xp, p, dir);
892 if (copy_to_user_tmpl(xp, skb) < 0)
893 goto nlmsg_failure;
894 if (copy_to_user_sec_ctx(xp, skb))
895 goto nlmsg_failure;
897 nlh->nlmsg_len = skb->tail - b;
898 out:
899 sp->this_idx++;
900 return 0;
902 nlmsg_failure:
903 skb_trim(skb, b - skb->data);
904 return -1;
907 static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
909 struct xfrm_dump_info info;
911 info.in_skb = cb->skb;
912 info.out_skb = skb;
913 info.nlmsg_seq = cb->nlh->nlmsg_seq;
914 info.nlmsg_flags = NLM_F_MULTI;
915 info.this_idx = 0;
916 info.start_idx = cb->args[0];
917 (void) xfrm_policy_walk(dump_one_policy, &info);
918 cb->args[0] = info.this_idx;
920 return skb->len;
923 static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
924 struct xfrm_policy *xp,
925 int dir, u32 seq)
927 struct xfrm_dump_info info;
928 struct sk_buff *skb;
930 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
931 if (!skb)
932 return ERR_PTR(-ENOMEM);
934 NETLINK_CB(skb).dst_pid = NETLINK_CB(in_skb).pid;
935 info.in_skb = in_skb;
936 info.out_skb = skb;
937 info.nlmsg_seq = seq;
938 info.nlmsg_flags = 0;
939 info.this_idx = info.start_idx = 0;
941 if (dump_one_policy(xp, dir, 0, &info) < 0) {
942 kfree_skb(skb);
943 return NULL;
946 return skb;
949 static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
951 struct xfrm_policy *xp;
952 struct xfrm_userpolicy_id *p;
953 int err;
954 struct km_event c;
955 int delete;
957 p = NLMSG_DATA(nlh);
958 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
960 err = verify_policy_dir(p->dir);
961 if (err)
962 return err;
964 if (p->index)
965 xp = xfrm_policy_byid(p->dir, p->index, delete);
966 else {
967 struct rtattr **rtattrs = (struct rtattr **)xfrma;
968 struct rtattr *rt = rtattrs[XFRMA_SEC_CTX-1];
969 struct xfrm_policy tmp;
971 err = verify_sec_ctx_len(rtattrs);
972 if (err)
973 return err;
975 memset(&tmp, 0, sizeof(struct xfrm_policy));
976 if (rt) {
977 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
979 if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
980 return err;
982 xp = xfrm_policy_bysel_ctx(p->dir, &p->sel, tmp.security, delete);
983 security_xfrm_policy_free(&tmp);
985 if (xp == NULL)
986 return -ENOENT;
988 if (!delete) {
989 struct sk_buff *resp_skb;
991 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
992 if (IS_ERR(resp_skb)) {
993 err = PTR_ERR(resp_skb);
994 } else {
995 err = netlink_unicast(xfrm_nl, resp_skb,
996 NETLINK_CB(skb).pid,
997 MSG_DONTWAIT);
999 } else {
1000 c.data.byid = p->index;
1001 c.event = nlh->nlmsg_type;
1002 c.seq = nlh->nlmsg_seq;
1003 c.pid = nlh->nlmsg_pid;
1004 km_policy_notify(xp, p->dir, &c);
1007 xfrm_pol_put(xp);
1009 return err;
1012 static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1014 struct km_event c;
1015 struct xfrm_usersa_flush *p = NLMSG_DATA(nlh);
1017 xfrm_state_flush(p->proto);
1018 c.data.proto = p->proto;
1019 c.event = nlh->nlmsg_type;
1020 c.seq = nlh->nlmsg_seq;
1021 c.pid = nlh->nlmsg_pid;
1022 km_state_notify(NULL, &c);
1024 return 0;
1027 static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1029 struct km_event c;
1031 xfrm_policy_flush();
1032 c.event = nlh->nlmsg_type;
1033 c.seq = nlh->nlmsg_seq;
1034 c.pid = nlh->nlmsg_pid;
1035 km_policy_notify(NULL, 0, &c);
1036 return 0;
1039 #define XMSGSIZE(type) NLMSG_LENGTH(sizeof(struct type))
1041 static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
1042 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1043 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1044 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1045 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1046 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1047 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1048 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
1049 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
1050 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
1051 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1052 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1053 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
1054 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
1055 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = NLMSG_LENGTH(0),
1058 #undef XMSGSIZE
1060 static struct xfrm_link {
1061 int (*doit)(struct sk_buff *, struct nlmsghdr *, void **);
1062 int (*dump)(struct sk_buff *, struct netlink_callback *);
1063 } xfrm_dispatch[XFRM_NR_MSGTYPES] = {
1064 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
1065 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
1066 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
1067 .dump = xfrm_dump_sa },
1068 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1069 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
1070 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
1071 .dump = xfrm_dump_policy },
1072 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
1073 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1074 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
1075 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
1076 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
1079 static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *errp)
1081 struct rtattr *xfrma[XFRMA_MAX];
1082 struct xfrm_link *link;
1083 int type, min_len;
1085 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
1086 return 0;
1088 type = nlh->nlmsg_type;
1090 /* A control message: ignore them */
1091 if (type < XFRM_MSG_BASE)
1092 return 0;
1094 /* Unknown message: reply with EINVAL */
1095 if (type > XFRM_MSG_MAX)
1096 goto err_einval;
1098 type -= XFRM_MSG_BASE;
1099 link = &xfrm_dispatch[type];
1101 /* All operations require privileges, even GET */
1102 if (security_netlink_recv(skb)) {
1103 *errp = -EPERM;
1104 return -1;
1107 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
1108 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
1109 (nlh->nlmsg_flags & NLM_F_DUMP)) {
1110 if (link->dump == NULL)
1111 goto err_einval;
1113 if ((*errp = netlink_dump_start(xfrm_nl, skb, nlh,
1114 link->dump, NULL)) != 0) {
1115 return -1;
1118 netlink_queue_skip(nlh, skb);
1119 return -1;
1122 memset(xfrma, 0, sizeof(xfrma));
1124 if (nlh->nlmsg_len < (min_len = xfrm_msg_min[type]))
1125 goto err_einval;
1127 if (nlh->nlmsg_len > min_len) {
1128 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
1129 struct rtattr *attr = (void *) nlh + NLMSG_ALIGN(min_len);
1131 while (RTA_OK(attr, attrlen)) {
1132 unsigned short flavor = attr->rta_type;
1133 if (flavor) {
1134 if (flavor > XFRMA_MAX)
1135 goto err_einval;
1136 xfrma[flavor - 1] = attr;
1138 attr = RTA_NEXT(attr, attrlen);
1142 if (link->doit == NULL)
1143 goto err_einval;
1144 *errp = link->doit(skb, nlh, (void **) &xfrma);
1146 return *errp;
1148 err_einval:
1149 *errp = -EINVAL;
1150 return -1;
1153 static void xfrm_netlink_rcv(struct sock *sk, int len)
1155 unsigned int qlen = 0;
1157 do {
1158 down(&xfrm_cfg_sem);
1159 netlink_run_queue(sk, &qlen, &xfrm_user_rcv_msg);
1160 up(&xfrm_cfg_sem);
1162 } while (qlen);
1165 static int build_expire(struct sk_buff *skb, struct xfrm_state *x, int hard)
1167 struct xfrm_user_expire *ue;
1168 struct nlmsghdr *nlh;
1169 unsigned char *b = skb->tail;
1171 nlh = NLMSG_PUT(skb, 0, 0, XFRM_MSG_EXPIRE,
1172 sizeof(*ue));
1173 ue = NLMSG_DATA(nlh);
1174 nlh->nlmsg_flags = 0;
1176 copy_to_user_state(x, &ue->state);
1177 ue->hard = (hard != 0) ? 1 : 0;
1179 nlh->nlmsg_len = skb->tail - b;
1180 return skb->len;
1182 nlmsg_failure:
1183 skb_trim(skb, b - skb->data);
1184 return -1;
1187 static int xfrm_exp_state_notify(struct xfrm_state *x, struct km_event *c)
1189 struct sk_buff *skb;
1190 int len = NLMSG_LENGTH(sizeof(struct xfrm_user_expire));
1192 skb = alloc_skb(len, GFP_ATOMIC);
1193 if (skb == NULL)
1194 return -ENOMEM;
1196 if (build_expire(skb, x, c->data.hard) < 0)
1197 BUG();
1199 NETLINK_CB(skb).dst_group = XFRMNLGRP_EXPIRE;
1200 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
1203 static int xfrm_notify_sa_flush(struct km_event *c)
1205 struct xfrm_usersa_flush *p;
1206 struct nlmsghdr *nlh;
1207 struct sk_buff *skb;
1208 unsigned char *b;
1209 int len = NLMSG_LENGTH(sizeof(struct xfrm_usersa_flush));
1211 skb = alloc_skb(len, GFP_ATOMIC);
1212 if (skb == NULL)
1213 return -ENOMEM;
1214 b = skb->tail;
1216 nlh = NLMSG_PUT(skb, c->pid, c->seq,
1217 XFRM_MSG_FLUSHSA, sizeof(*p));
1218 nlh->nlmsg_flags = 0;
1220 p = NLMSG_DATA(nlh);
1221 p->proto = c->data.proto;
1223 nlh->nlmsg_len = skb->tail - b;
1225 NETLINK_CB(skb).dst_group = XFRMNLGRP_SA;
1226 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
1228 nlmsg_failure:
1229 kfree_skb(skb);
1230 return -1;
1233 static int inline xfrm_sa_len(struct xfrm_state *x)
1235 int l = 0;
1236 if (x->aalg)
1237 l += RTA_SPACE(sizeof(*x->aalg) + (x->aalg->alg_key_len+7)/8);
1238 if (x->ealg)
1239 l += RTA_SPACE(sizeof(*x->ealg) + (x->ealg->alg_key_len+7)/8);
1240 if (x->calg)
1241 l += RTA_SPACE(sizeof(*x->calg));
1242 if (x->encap)
1243 l += RTA_SPACE(sizeof(*x->encap));
1245 return l;
1248 static int xfrm_notify_sa(struct xfrm_state *x, struct km_event *c)
1250 struct xfrm_usersa_info *p;
1251 struct xfrm_usersa_id *id;
1252 struct nlmsghdr *nlh;
1253 struct sk_buff *skb;
1254 unsigned char *b;
1255 int len = xfrm_sa_len(x);
1256 int headlen;
1258 headlen = sizeof(*p);
1259 if (c->event == XFRM_MSG_DELSA) {
1260 len += RTA_SPACE(headlen);
1261 headlen = sizeof(*id);
1263 len += NLMSG_SPACE(headlen);
1265 skb = alloc_skb(len, GFP_ATOMIC);
1266 if (skb == NULL)
1267 return -ENOMEM;
1268 b = skb->tail;
1270 nlh = NLMSG_PUT(skb, c->pid, c->seq, c->event, headlen);
1271 nlh->nlmsg_flags = 0;
1273 p = NLMSG_DATA(nlh);
1274 if (c->event == XFRM_MSG_DELSA) {
1275 id = NLMSG_DATA(nlh);
1276 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
1277 id->spi = x->id.spi;
1278 id->family = x->props.family;
1279 id->proto = x->id.proto;
1281 p = RTA_DATA(__RTA_PUT(skb, XFRMA_SA, sizeof(*p)));
1284 copy_to_user_state(x, p);
1286 if (x->aalg)
1287 RTA_PUT(skb, XFRMA_ALG_AUTH,
1288 sizeof(*(x->aalg))+(x->aalg->alg_key_len+7)/8, x->aalg);
1289 if (x->ealg)
1290 RTA_PUT(skb, XFRMA_ALG_CRYPT,
1291 sizeof(*(x->ealg))+(x->ealg->alg_key_len+7)/8, x->ealg);
1292 if (x->calg)
1293 RTA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
1295 if (x->encap)
1296 RTA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
1298 nlh->nlmsg_len = skb->tail - b;
1300 NETLINK_CB(skb).dst_group = XFRMNLGRP_SA;
1301 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
1303 nlmsg_failure:
1304 rtattr_failure:
1305 kfree_skb(skb);
1306 return -1;
1309 static int xfrm_send_state_notify(struct xfrm_state *x, struct km_event *c)
1312 switch (c->event) {
1313 case XFRM_MSG_EXPIRE:
1314 return xfrm_exp_state_notify(x, c);
1315 case XFRM_MSG_DELSA:
1316 case XFRM_MSG_UPDSA:
1317 case XFRM_MSG_NEWSA:
1318 return xfrm_notify_sa(x, c);
1319 case XFRM_MSG_FLUSHSA:
1320 return xfrm_notify_sa_flush(c);
1321 default:
1322 printk("xfrm_user: Unknown SA event %d\n", c->event);
1323 break;
1326 return 0;
1330 static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
1331 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
1332 int dir)
1334 struct xfrm_user_acquire *ua;
1335 struct nlmsghdr *nlh;
1336 unsigned char *b = skb->tail;
1337 __u32 seq = xfrm_get_acqseq();
1339 nlh = NLMSG_PUT(skb, 0, 0, XFRM_MSG_ACQUIRE,
1340 sizeof(*ua));
1341 ua = NLMSG_DATA(nlh);
1342 nlh->nlmsg_flags = 0;
1344 memcpy(&ua->id, &x->id, sizeof(ua->id));
1345 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
1346 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
1347 copy_to_user_policy(xp, &ua->policy, dir);
1348 ua->aalgos = xt->aalgos;
1349 ua->ealgos = xt->ealgos;
1350 ua->calgos = xt->calgos;
1351 ua->seq = x->km.seq = seq;
1353 if (copy_to_user_tmpl(xp, skb) < 0)
1354 goto nlmsg_failure;
1355 if (copy_to_user_sec_ctx(xp, skb))
1356 goto nlmsg_failure;
1358 nlh->nlmsg_len = skb->tail - b;
1359 return skb->len;
1361 nlmsg_failure:
1362 skb_trim(skb, b - skb->data);
1363 return -1;
1366 static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
1367 struct xfrm_policy *xp, int dir)
1369 struct sk_buff *skb;
1370 size_t len;
1372 len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
1373 len += NLMSG_SPACE(sizeof(struct xfrm_user_acquire));
1374 len += RTA_SPACE(xfrm_user_sec_ctx_size(xp));
1375 skb = alloc_skb(len, GFP_ATOMIC);
1376 if (skb == NULL)
1377 return -ENOMEM;
1379 if (build_acquire(skb, x, xt, xp, dir) < 0)
1380 BUG();
1382 NETLINK_CB(skb).dst_group = XFRMNLGRP_ACQUIRE;
1383 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
1386 /* User gives us xfrm_user_policy_info followed by an array of 0
1387 * or more templates.
1389 static struct xfrm_policy *xfrm_compile_policy(u16 family, int opt,
1390 u8 *data, int len, int *dir)
1392 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
1393 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
1394 struct xfrm_policy *xp;
1395 int nr;
1397 switch (family) {
1398 case AF_INET:
1399 if (opt != IP_XFRM_POLICY) {
1400 *dir = -EOPNOTSUPP;
1401 return NULL;
1403 break;
1404 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1405 case AF_INET6:
1406 if (opt != IPV6_XFRM_POLICY) {
1407 *dir = -EOPNOTSUPP;
1408 return NULL;
1410 break;
1411 #endif
1412 default:
1413 *dir = -EINVAL;
1414 return NULL;
1417 *dir = -EINVAL;
1419 if (len < sizeof(*p) ||
1420 verify_newpolicy_info(p))
1421 return NULL;
1423 nr = ((len - sizeof(*p)) / sizeof(*ut));
1424 if (nr > XFRM_MAX_DEPTH)
1425 return NULL;
1427 if (p->dir > XFRM_POLICY_OUT)
1428 return NULL;
1430 xp = xfrm_policy_alloc(GFP_KERNEL);
1431 if (xp == NULL) {
1432 *dir = -ENOBUFS;
1433 return NULL;
1436 copy_from_user_policy(xp, p);
1437 copy_templates(xp, ut, nr);
1439 *dir = p->dir;
1441 return xp;
1444 static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
1445 int dir, int hard)
1447 struct xfrm_user_polexpire *upe;
1448 struct nlmsghdr *nlh;
1449 unsigned char *b = skb->tail;
1451 nlh = NLMSG_PUT(skb, 0, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe));
1452 upe = NLMSG_DATA(nlh);
1453 nlh->nlmsg_flags = 0;
1455 copy_to_user_policy(xp, &upe->pol, dir);
1456 if (copy_to_user_tmpl(xp, skb) < 0)
1457 goto nlmsg_failure;
1458 if (copy_to_user_sec_ctx(xp, skb))
1459 goto nlmsg_failure;
1460 upe->hard = !!hard;
1462 nlh->nlmsg_len = skb->tail - b;
1463 return skb->len;
1465 nlmsg_failure:
1466 skb_trim(skb, b - skb->data);
1467 return -1;
1470 static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
1472 struct sk_buff *skb;
1473 size_t len;
1475 len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
1476 len += NLMSG_SPACE(sizeof(struct xfrm_user_polexpire));
1477 len += RTA_SPACE(xfrm_user_sec_ctx_size(xp));
1478 skb = alloc_skb(len, GFP_ATOMIC);
1479 if (skb == NULL)
1480 return -ENOMEM;
1482 if (build_polexpire(skb, xp, dir, c->data.hard) < 0)
1483 BUG();
1485 NETLINK_CB(skb).dst_group = XFRMNLGRP_EXPIRE;
1486 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
1489 static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, struct km_event *c)
1491 struct xfrm_userpolicy_info *p;
1492 struct xfrm_userpolicy_id *id;
1493 struct nlmsghdr *nlh;
1494 struct sk_buff *skb;
1495 unsigned char *b;
1496 int len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
1497 int headlen;
1499 headlen = sizeof(*p);
1500 if (c->event == XFRM_MSG_DELPOLICY) {
1501 len += RTA_SPACE(headlen);
1502 headlen = sizeof(*id);
1504 len += NLMSG_SPACE(headlen);
1506 skb = alloc_skb(len, GFP_ATOMIC);
1507 if (skb == NULL)
1508 return -ENOMEM;
1509 b = skb->tail;
1511 nlh = NLMSG_PUT(skb, c->pid, c->seq, c->event, headlen);
1513 p = NLMSG_DATA(nlh);
1514 if (c->event == XFRM_MSG_DELPOLICY) {
1515 id = NLMSG_DATA(nlh);
1516 memset(id, 0, sizeof(*id));
1517 id->dir = dir;
1518 if (c->data.byid)
1519 id->index = xp->index;
1520 else
1521 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
1523 p = RTA_DATA(__RTA_PUT(skb, XFRMA_POLICY, sizeof(*p)));
1526 nlh->nlmsg_flags = 0;
1528 copy_to_user_policy(xp, p, dir);
1529 if (copy_to_user_tmpl(xp, skb) < 0)
1530 goto nlmsg_failure;
1532 nlh->nlmsg_len = skb->tail - b;
1534 NETLINK_CB(skb).dst_group = XFRMNLGRP_POLICY;
1535 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
1537 nlmsg_failure:
1538 rtattr_failure:
1539 kfree_skb(skb);
1540 return -1;
1543 static int xfrm_notify_policy_flush(struct km_event *c)
1545 struct nlmsghdr *nlh;
1546 struct sk_buff *skb;
1547 unsigned char *b;
1548 int len = NLMSG_LENGTH(0);
1550 skb = alloc_skb(len, GFP_ATOMIC);
1551 if (skb == NULL)
1552 return -ENOMEM;
1553 b = skb->tail;
1556 nlh = NLMSG_PUT(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0);
1558 nlh->nlmsg_len = skb->tail - b;
1560 NETLINK_CB(skb).dst_group = XFRMNLGRP_POLICY;
1561 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
1563 nlmsg_failure:
1564 kfree_skb(skb);
1565 return -1;
1568 static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
1571 switch (c->event) {
1572 case XFRM_MSG_NEWPOLICY:
1573 case XFRM_MSG_UPDPOLICY:
1574 case XFRM_MSG_DELPOLICY:
1575 return xfrm_notify_policy(xp, dir, c);
1576 case XFRM_MSG_FLUSHPOLICY:
1577 return xfrm_notify_policy_flush(c);
1578 case XFRM_MSG_POLEXPIRE:
1579 return xfrm_exp_policy_notify(xp, dir, c);
1580 default:
1581 printk("xfrm_user: Unknown Policy event %d\n", c->event);
1584 return 0;
1588 static struct xfrm_mgr netlink_mgr = {
1589 .id = "netlink",
1590 .notify = xfrm_send_state_notify,
1591 .acquire = xfrm_send_acquire,
1592 .compile_policy = xfrm_compile_policy,
1593 .notify_policy = xfrm_send_policy_notify,
1596 static int __init xfrm_user_init(void)
1598 printk(KERN_INFO "Initializing IPsec netlink socket\n");
1600 xfrm_nl = netlink_kernel_create(NETLINK_XFRM, XFRMNLGRP_MAX,
1601 xfrm_netlink_rcv, THIS_MODULE);
1602 if (xfrm_nl == NULL)
1603 return -ENOMEM;
1605 xfrm_register_km(&netlink_mgr);
1607 return 0;
1610 static void __exit xfrm_user_exit(void)
1612 xfrm_unregister_km(&netlink_mgr);
1613 sock_release(xfrm_nl->sk_socket);
1616 module_init(xfrm_user_init);
1617 module_exit(xfrm_user_exit);
1618 MODULE_LICENSE("GPL");
1619 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);