[XFRM] xfrm_user: Better validation of user templates.
[linux-2.6/libata-dev.git] / net / xfrm / xfrm_user.c
blob311205ffa7750747197135e23984f0adb6e5178c
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/crypto.h>
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/types.h>
17 #include <linux/slab.h>
18 #include <linux/socket.h>
19 #include <linux/string.h>
20 #include <linux/net.h>
21 #include <linux/skbuff.h>
22 #include <linux/rtnetlink.h>
23 #include <linux/pfkeyv2.h>
24 #include <linux/ipsec.h>
25 #include <linux/init.h>
26 #include <linux/security.h>
27 #include <net/sock.h>
28 #include <net/xfrm.h>
29 #include <net/netlink.h>
30 #include <asm/uaccess.h>
31 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
32 #include <linux/in6.h>
33 #endif
35 static int verify_one_alg(struct rtattr **xfrma, enum xfrm_attr_type_t type)
37 struct rtattr *rt = xfrma[type - 1];
38 struct xfrm_algo *algp;
39 int len;
41 if (!rt)
42 return 0;
44 len = (rt->rta_len - sizeof(*rt)) - sizeof(*algp);
45 if (len < 0)
46 return -EINVAL;
48 algp = RTA_DATA(rt);
50 len -= (algp->alg_key_len + 7U) / 8;
51 if (len < 0)
52 return -EINVAL;
54 switch (type) {
55 case XFRMA_ALG_AUTH:
56 if (!algp->alg_key_len &&
57 strcmp(algp->alg_name, "digest_null") != 0)
58 return -EINVAL;
59 break;
61 case XFRMA_ALG_CRYPT:
62 if (!algp->alg_key_len &&
63 strcmp(algp->alg_name, "cipher_null") != 0)
64 return -EINVAL;
65 break;
67 case XFRMA_ALG_COMP:
68 /* Zero length keys are legal. */
69 break;
71 default:
72 return -EINVAL;
75 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
76 return 0;
79 static int verify_encap_tmpl(struct rtattr **xfrma)
81 struct rtattr *rt = xfrma[XFRMA_ENCAP - 1];
82 struct xfrm_encap_tmpl *encap;
84 if (!rt)
85 return 0;
87 if ((rt->rta_len - sizeof(*rt)) < sizeof(*encap))
88 return -EINVAL;
90 return 0;
93 static int verify_one_addr(struct rtattr **xfrma, enum xfrm_attr_type_t type,
94 xfrm_address_t **addrp)
96 struct rtattr *rt = xfrma[type - 1];
98 if (!rt)
99 return 0;
101 if ((rt->rta_len - sizeof(*rt)) < sizeof(**addrp))
102 return -EINVAL;
104 if (addrp)
105 *addrp = RTA_DATA(rt);
107 return 0;
110 static inline int verify_sec_ctx_len(struct rtattr **xfrma)
112 struct rtattr *rt = xfrma[XFRMA_SEC_CTX - 1];
113 struct xfrm_user_sec_ctx *uctx;
114 int len = 0;
116 if (!rt)
117 return 0;
119 if (rt->rta_len < sizeof(*uctx))
120 return -EINVAL;
122 uctx = RTA_DATA(rt);
124 len += sizeof(struct xfrm_user_sec_ctx);
125 len += uctx->ctx_len;
127 if (uctx->len != len)
128 return -EINVAL;
130 return 0;
134 static int verify_newsa_info(struct xfrm_usersa_info *p,
135 struct rtattr **xfrma)
137 int err;
139 err = -EINVAL;
140 switch (p->family) {
141 case AF_INET:
142 break;
144 case AF_INET6:
145 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
146 break;
147 #else
148 err = -EAFNOSUPPORT;
149 goto out;
150 #endif
152 default:
153 goto out;
156 err = -EINVAL;
157 switch (p->id.proto) {
158 case IPPROTO_AH:
159 if (!xfrma[XFRMA_ALG_AUTH-1] ||
160 xfrma[XFRMA_ALG_CRYPT-1] ||
161 xfrma[XFRMA_ALG_COMP-1])
162 goto out;
163 break;
165 case IPPROTO_ESP:
166 if ((!xfrma[XFRMA_ALG_AUTH-1] &&
167 !xfrma[XFRMA_ALG_CRYPT-1]) ||
168 xfrma[XFRMA_ALG_COMP-1])
169 goto out;
170 break;
172 case IPPROTO_COMP:
173 if (!xfrma[XFRMA_ALG_COMP-1] ||
174 xfrma[XFRMA_ALG_AUTH-1] ||
175 xfrma[XFRMA_ALG_CRYPT-1])
176 goto out;
177 break;
179 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
180 case IPPROTO_DSTOPTS:
181 case IPPROTO_ROUTING:
182 if (xfrma[XFRMA_ALG_COMP-1] ||
183 xfrma[XFRMA_ALG_AUTH-1] ||
184 xfrma[XFRMA_ALG_CRYPT-1] ||
185 xfrma[XFRMA_ENCAP-1] ||
186 xfrma[XFRMA_SEC_CTX-1] ||
187 !xfrma[XFRMA_COADDR-1])
188 goto out;
189 break;
190 #endif
192 default:
193 goto out;
196 if ((err = verify_one_alg(xfrma, XFRMA_ALG_AUTH)))
197 goto out;
198 if ((err = verify_one_alg(xfrma, XFRMA_ALG_CRYPT)))
199 goto out;
200 if ((err = verify_one_alg(xfrma, XFRMA_ALG_COMP)))
201 goto out;
202 if ((err = verify_encap_tmpl(xfrma)))
203 goto out;
204 if ((err = verify_sec_ctx_len(xfrma)))
205 goto out;
206 if ((err = verify_one_addr(xfrma, XFRMA_COADDR, NULL)))
207 goto out;
209 err = -EINVAL;
210 switch (p->mode) {
211 case XFRM_MODE_TRANSPORT:
212 case XFRM_MODE_TUNNEL:
213 case XFRM_MODE_ROUTEOPTIMIZATION:
214 case XFRM_MODE_BEET:
215 break;
217 default:
218 goto out;
221 err = 0;
223 out:
224 return err;
227 static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
228 struct xfrm_algo_desc *(*get_byname)(char *, int),
229 struct rtattr *u_arg)
231 struct rtattr *rta = u_arg;
232 struct xfrm_algo *p, *ualg;
233 struct xfrm_algo_desc *algo;
234 int len;
236 if (!rta)
237 return 0;
239 ualg = RTA_DATA(rta);
241 algo = get_byname(ualg->alg_name, 1);
242 if (!algo)
243 return -ENOSYS;
244 *props = algo->desc.sadb_alg_id;
246 len = sizeof(*ualg) + (ualg->alg_key_len + 7U) / 8;
247 p = kmemdup(ualg, len, GFP_KERNEL);
248 if (!p)
249 return -ENOMEM;
251 strcpy(p->alg_name, algo->name);
252 *algpp = p;
253 return 0;
256 static int attach_encap_tmpl(struct xfrm_encap_tmpl **encapp, struct rtattr *u_arg)
258 struct rtattr *rta = u_arg;
259 struct xfrm_encap_tmpl *p, *uencap;
261 if (!rta)
262 return 0;
264 uencap = RTA_DATA(rta);
265 p = kmemdup(uencap, sizeof(*p), GFP_KERNEL);
266 if (!p)
267 return -ENOMEM;
269 *encapp = p;
270 return 0;
274 static inline int xfrm_user_sec_ctx_size(struct xfrm_policy *xp)
276 struct xfrm_sec_ctx *xfrm_ctx = xp->security;
277 int len = 0;
279 if (xfrm_ctx) {
280 len += sizeof(struct xfrm_user_sec_ctx);
281 len += xfrm_ctx->ctx_len;
283 return len;
286 static int attach_sec_ctx(struct xfrm_state *x, struct rtattr *u_arg)
288 struct xfrm_user_sec_ctx *uctx;
290 if (!u_arg)
291 return 0;
293 uctx = RTA_DATA(u_arg);
294 return security_xfrm_state_alloc(x, uctx);
297 static int attach_one_addr(xfrm_address_t **addrpp, struct rtattr *u_arg)
299 struct rtattr *rta = u_arg;
300 xfrm_address_t *p, *uaddrp;
302 if (!rta)
303 return 0;
305 uaddrp = RTA_DATA(rta);
306 p = kmemdup(uaddrp, sizeof(*p), GFP_KERNEL);
307 if (!p)
308 return -ENOMEM;
310 *addrpp = p;
311 return 0;
314 static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
316 memcpy(&x->id, &p->id, sizeof(x->id));
317 memcpy(&x->sel, &p->sel, sizeof(x->sel));
318 memcpy(&x->lft, &p->lft, sizeof(x->lft));
319 x->props.mode = p->mode;
320 x->props.replay_window = p->replay_window;
321 x->props.reqid = p->reqid;
322 x->props.family = p->family;
323 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
324 x->props.flags = p->flags;
328 * someday when pfkey also has support, we could have the code
329 * somehow made shareable and move it to xfrm_state.c - JHS
332 static int xfrm_update_ae_params(struct xfrm_state *x, struct rtattr **xfrma)
334 int err = - EINVAL;
335 struct rtattr *rp = xfrma[XFRMA_REPLAY_VAL-1];
336 struct rtattr *lt = xfrma[XFRMA_LTIME_VAL-1];
337 struct rtattr *et = xfrma[XFRMA_ETIMER_THRESH-1];
338 struct rtattr *rt = xfrma[XFRMA_REPLAY_THRESH-1];
340 if (rp) {
341 struct xfrm_replay_state *replay;
342 if (RTA_PAYLOAD(rp) < sizeof(*replay))
343 goto error;
344 replay = RTA_DATA(rp);
345 memcpy(&x->replay, replay, sizeof(*replay));
346 memcpy(&x->preplay, replay, sizeof(*replay));
349 if (lt) {
350 struct xfrm_lifetime_cur *ltime;
351 if (RTA_PAYLOAD(lt) < sizeof(*ltime))
352 goto error;
353 ltime = RTA_DATA(lt);
354 x->curlft.bytes = ltime->bytes;
355 x->curlft.packets = ltime->packets;
356 x->curlft.add_time = ltime->add_time;
357 x->curlft.use_time = ltime->use_time;
360 if (et) {
361 if (RTA_PAYLOAD(et) < sizeof(u32))
362 goto error;
363 x->replay_maxage = *(u32*)RTA_DATA(et);
366 if (rt) {
367 if (RTA_PAYLOAD(rt) < sizeof(u32))
368 goto error;
369 x->replay_maxdiff = *(u32*)RTA_DATA(rt);
372 return 0;
373 error:
374 return err;
377 static struct xfrm_state *xfrm_state_construct(struct xfrm_usersa_info *p,
378 struct rtattr **xfrma,
379 int *errp)
381 struct xfrm_state *x = xfrm_state_alloc();
382 int err = -ENOMEM;
384 if (!x)
385 goto error_no_put;
387 copy_from_user_state(x, p);
389 if ((err = attach_one_algo(&x->aalg, &x->props.aalgo,
390 xfrm_aalg_get_byname,
391 xfrma[XFRMA_ALG_AUTH-1])))
392 goto error;
393 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
394 xfrm_ealg_get_byname,
395 xfrma[XFRMA_ALG_CRYPT-1])))
396 goto error;
397 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
398 xfrm_calg_get_byname,
399 xfrma[XFRMA_ALG_COMP-1])))
400 goto error;
401 if ((err = attach_encap_tmpl(&x->encap, xfrma[XFRMA_ENCAP-1])))
402 goto error;
403 if ((err = attach_one_addr(&x->coaddr, xfrma[XFRMA_COADDR-1])))
404 goto error;
405 err = xfrm_init_state(x);
406 if (err)
407 goto error;
409 if ((err = attach_sec_ctx(x, xfrma[XFRMA_SEC_CTX-1])))
410 goto error;
412 x->km.seq = p->seq;
413 x->replay_maxdiff = sysctl_xfrm_aevent_rseqth;
414 /* sysctl_xfrm_aevent_etime is in 100ms units */
415 x->replay_maxage = (sysctl_xfrm_aevent_etime*HZ)/XFRM_AE_ETH_M;
416 x->preplay.bitmap = 0;
417 x->preplay.seq = x->replay.seq+x->replay_maxdiff;
418 x->preplay.oseq = x->replay.oseq +x->replay_maxdiff;
420 /* override default values from above */
422 err = xfrm_update_ae_params(x, (struct rtattr **)xfrma);
423 if (err < 0)
424 goto error;
426 return x;
428 error:
429 x->km.state = XFRM_STATE_DEAD;
430 xfrm_state_put(x);
431 error_no_put:
432 *errp = err;
433 return NULL;
436 static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
438 struct xfrm_usersa_info *p = NLMSG_DATA(nlh);
439 struct xfrm_state *x;
440 int err;
441 struct km_event c;
443 err = verify_newsa_info(p, (struct rtattr **)xfrma);
444 if (err)
445 return err;
447 x = xfrm_state_construct(p, (struct rtattr **)xfrma, &err);
448 if (!x)
449 return err;
451 xfrm_state_hold(x);
452 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
453 err = xfrm_state_add(x);
454 else
455 err = xfrm_state_update(x);
457 if (err < 0) {
458 x->km.state = XFRM_STATE_DEAD;
459 __xfrm_state_put(x);
460 goto out;
463 c.seq = nlh->nlmsg_seq;
464 c.pid = nlh->nlmsg_pid;
465 c.event = nlh->nlmsg_type;
467 km_state_notify(x, &c);
468 out:
469 xfrm_state_put(x);
470 return err;
473 static struct xfrm_state *xfrm_user_state_lookup(struct xfrm_usersa_id *p,
474 struct rtattr **xfrma,
475 int *errp)
477 struct xfrm_state *x = NULL;
478 int err;
480 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
481 err = -ESRCH;
482 x = xfrm_state_lookup(&p->daddr, p->spi, p->proto, p->family);
483 } else {
484 xfrm_address_t *saddr = NULL;
486 err = verify_one_addr(xfrma, XFRMA_SRCADDR, &saddr);
487 if (err)
488 goto out;
490 if (!saddr) {
491 err = -EINVAL;
492 goto out;
495 err = -ESRCH;
496 x = xfrm_state_lookup_byaddr(&p->daddr, saddr, p->proto,
497 p->family);
500 out:
501 if (!x && errp)
502 *errp = err;
503 return x;
506 static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
508 struct xfrm_state *x;
509 int err = -ESRCH;
510 struct km_event c;
511 struct xfrm_usersa_id *p = NLMSG_DATA(nlh);
513 x = xfrm_user_state_lookup(p, (struct rtattr **)xfrma, &err);
514 if (x == NULL)
515 return err;
517 if ((err = security_xfrm_state_delete(x)) != 0)
518 goto out;
520 if (xfrm_state_kern(x)) {
521 err = -EPERM;
522 goto out;
525 err = xfrm_state_delete(x);
526 if (err < 0)
527 goto out;
529 c.seq = nlh->nlmsg_seq;
530 c.pid = nlh->nlmsg_pid;
531 c.event = nlh->nlmsg_type;
532 km_state_notify(x, &c);
534 out:
535 xfrm_state_put(x);
536 return err;
539 static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
541 memcpy(&p->id, &x->id, sizeof(p->id));
542 memcpy(&p->sel, &x->sel, sizeof(p->sel));
543 memcpy(&p->lft, &x->lft, sizeof(p->lft));
544 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
545 memcpy(&p->stats, &x->stats, sizeof(p->stats));
546 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
547 p->mode = x->props.mode;
548 p->replay_window = x->props.replay_window;
549 p->reqid = x->props.reqid;
550 p->family = x->props.family;
551 p->flags = x->props.flags;
552 p->seq = x->km.seq;
555 struct xfrm_dump_info {
556 struct sk_buff *in_skb;
557 struct sk_buff *out_skb;
558 u32 nlmsg_seq;
559 u16 nlmsg_flags;
560 int start_idx;
561 int this_idx;
564 static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
566 struct xfrm_dump_info *sp = ptr;
567 struct sk_buff *in_skb = sp->in_skb;
568 struct sk_buff *skb = sp->out_skb;
569 struct xfrm_usersa_info *p;
570 struct nlmsghdr *nlh;
571 unsigned char *b = skb->tail;
573 if (sp->this_idx < sp->start_idx)
574 goto out;
576 nlh = NLMSG_PUT(skb, NETLINK_CB(in_skb).pid,
577 sp->nlmsg_seq,
578 XFRM_MSG_NEWSA, sizeof(*p));
579 nlh->nlmsg_flags = sp->nlmsg_flags;
581 p = NLMSG_DATA(nlh);
582 copy_to_user_state(x, p);
584 if (x->aalg)
585 RTA_PUT(skb, XFRMA_ALG_AUTH,
586 sizeof(*(x->aalg))+(x->aalg->alg_key_len+7)/8, x->aalg);
587 if (x->ealg)
588 RTA_PUT(skb, XFRMA_ALG_CRYPT,
589 sizeof(*(x->ealg))+(x->ealg->alg_key_len+7)/8, x->ealg);
590 if (x->calg)
591 RTA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
593 if (x->encap)
594 RTA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
596 if (x->security) {
597 int ctx_size = sizeof(struct xfrm_sec_ctx) +
598 x->security->ctx_len;
599 struct rtattr *rt = __RTA_PUT(skb, XFRMA_SEC_CTX, ctx_size);
600 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
602 uctx->exttype = XFRMA_SEC_CTX;
603 uctx->len = ctx_size;
604 uctx->ctx_doi = x->security->ctx_doi;
605 uctx->ctx_alg = x->security->ctx_alg;
606 uctx->ctx_len = x->security->ctx_len;
607 memcpy(uctx + 1, x->security->ctx_str, x->security->ctx_len);
610 if (x->coaddr)
611 RTA_PUT(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
613 if (x->lastused)
614 RTA_PUT(skb, XFRMA_LASTUSED, sizeof(x->lastused), &x->lastused);
616 nlh->nlmsg_len = skb->tail - b;
617 out:
618 sp->this_idx++;
619 return 0;
621 nlmsg_failure:
622 rtattr_failure:
623 skb_trim(skb, b - skb->data);
624 return -1;
627 static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
629 struct xfrm_dump_info info;
631 info.in_skb = cb->skb;
632 info.out_skb = skb;
633 info.nlmsg_seq = cb->nlh->nlmsg_seq;
634 info.nlmsg_flags = NLM_F_MULTI;
635 info.this_idx = 0;
636 info.start_idx = cb->args[0];
637 (void) xfrm_state_walk(0, dump_one_state, &info);
638 cb->args[0] = info.this_idx;
640 return skb->len;
643 static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
644 struct xfrm_state *x, u32 seq)
646 struct xfrm_dump_info info;
647 struct sk_buff *skb;
649 skb = alloc_skb(NLMSG_GOODSIZE, GFP_ATOMIC);
650 if (!skb)
651 return ERR_PTR(-ENOMEM);
653 info.in_skb = in_skb;
654 info.out_skb = skb;
655 info.nlmsg_seq = seq;
656 info.nlmsg_flags = 0;
657 info.this_idx = info.start_idx = 0;
659 if (dump_one_state(x, 0, &info)) {
660 kfree_skb(skb);
661 return NULL;
664 return skb;
667 static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
669 struct xfrm_usersa_id *p = NLMSG_DATA(nlh);
670 struct xfrm_state *x;
671 struct sk_buff *resp_skb;
672 int err = -ESRCH;
674 x = xfrm_user_state_lookup(p, (struct rtattr **)xfrma, &err);
675 if (x == NULL)
676 goto out_noput;
678 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
679 if (IS_ERR(resp_skb)) {
680 err = PTR_ERR(resp_skb);
681 } else {
682 err = netlink_unicast(xfrm_nl, resp_skb,
683 NETLINK_CB(skb).pid, MSG_DONTWAIT);
685 xfrm_state_put(x);
686 out_noput:
687 return err;
690 static int verify_userspi_info(struct xfrm_userspi_info *p)
692 switch (p->info.id.proto) {
693 case IPPROTO_AH:
694 case IPPROTO_ESP:
695 break;
697 case IPPROTO_COMP:
698 /* IPCOMP spi is 16-bits. */
699 if (p->max >= 0x10000)
700 return -EINVAL;
701 break;
703 default:
704 return -EINVAL;
707 if (p->min > p->max)
708 return -EINVAL;
710 return 0;
713 static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
715 struct xfrm_state *x;
716 struct xfrm_userspi_info *p;
717 struct sk_buff *resp_skb;
718 xfrm_address_t *daddr;
719 int family;
720 int err;
722 p = NLMSG_DATA(nlh);
723 err = verify_userspi_info(p);
724 if (err)
725 goto out_noput;
727 family = p->info.family;
728 daddr = &p->info.id.daddr;
730 x = NULL;
731 if (p->info.seq) {
732 x = xfrm_find_acq_byseq(p->info.seq);
733 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
734 xfrm_state_put(x);
735 x = NULL;
739 if (!x)
740 x = xfrm_find_acq(p->info.mode, p->info.reqid,
741 p->info.id.proto, daddr,
742 &p->info.saddr, 1,
743 family);
744 err = -ENOENT;
745 if (x == NULL)
746 goto out_noput;
748 resp_skb = ERR_PTR(-ENOENT);
750 spin_lock_bh(&x->lock);
751 if (x->km.state != XFRM_STATE_DEAD) {
752 xfrm_alloc_spi(x, htonl(p->min), htonl(p->max));
753 if (x->id.spi)
754 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
756 spin_unlock_bh(&x->lock);
758 if (IS_ERR(resp_skb)) {
759 err = PTR_ERR(resp_skb);
760 goto out;
763 err = netlink_unicast(xfrm_nl, resp_skb,
764 NETLINK_CB(skb).pid, MSG_DONTWAIT);
766 out:
767 xfrm_state_put(x);
768 out_noput:
769 return err;
772 static int verify_policy_dir(u8 dir)
774 switch (dir) {
775 case XFRM_POLICY_IN:
776 case XFRM_POLICY_OUT:
777 case XFRM_POLICY_FWD:
778 break;
780 default:
781 return -EINVAL;
784 return 0;
787 static int verify_policy_type(u8 type)
789 switch (type) {
790 case XFRM_POLICY_TYPE_MAIN:
791 #ifdef CONFIG_XFRM_SUB_POLICY
792 case XFRM_POLICY_TYPE_SUB:
793 #endif
794 break;
796 default:
797 return -EINVAL;
800 return 0;
803 static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
805 switch (p->share) {
806 case XFRM_SHARE_ANY:
807 case XFRM_SHARE_SESSION:
808 case XFRM_SHARE_USER:
809 case XFRM_SHARE_UNIQUE:
810 break;
812 default:
813 return -EINVAL;
816 switch (p->action) {
817 case XFRM_POLICY_ALLOW:
818 case XFRM_POLICY_BLOCK:
819 break;
821 default:
822 return -EINVAL;
825 switch (p->sel.family) {
826 case AF_INET:
827 break;
829 case AF_INET6:
830 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
831 break;
832 #else
833 return -EAFNOSUPPORT;
834 #endif
836 default:
837 return -EINVAL;
840 return verify_policy_dir(p->dir);
843 static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct rtattr **xfrma)
845 struct rtattr *rt = xfrma[XFRMA_SEC_CTX-1];
846 struct xfrm_user_sec_ctx *uctx;
848 if (!rt)
849 return 0;
851 uctx = RTA_DATA(rt);
852 return security_xfrm_policy_alloc(pol, uctx);
855 static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
856 int nr)
858 int i;
860 xp->xfrm_nr = nr;
861 for (i = 0; i < nr; i++, ut++) {
862 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
864 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
865 memcpy(&t->saddr, &ut->saddr,
866 sizeof(xfrm_address_t));
867 t->reqid = ut->reqid;
868 t->mode = ut->mode;
869 t->share = ut->share;
870 t->optional = ut->optional;
871 t->aalgos = ut->aalgos;
872 t->ealgos = ut->ealgos;
873 t->calgos = ut->calgos;
874 t->encap_family = ut->family;
878 static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
880 int i;
882 if (nr > XFRM_MAX_DEPTH)
883 return -EINVAL;
885 for (i = 0; i < nr; i++) {
886 /* We never validated the ut->family value, so many
887 * applications simply leave it at zero. The check was
888 * never made and ut->family was ignored because all
889 * templates could be assumed to have the same family as
890 * the policy itself. Now that we will have ipv4-in-ipv6
891 * and ipv6-in-ipv4 tunnels, this is no longer true.
893 if (!ut[i].family)
894 ut[i].family = family;
896 switch (ut[i].family) {
897 case AF_INET:
898 break;
899 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
900 case AF_INET6:
901 break;
902 #endif
903 default:
904 return -EINVAL;
908 return 0;
911 static int copy_from_user_tmpl(struct xfrm_policy *pol, struct rtattr **xfrma)
913 struct rtattr *rt = xfrma[XFRMA_TMPL-1];
915 if (!rt) {
916 pol->xfrm_nr = 0;
917 } else {
918 struct xfrm_user_tmpl *utmpl = RTA_DATA(rt);
919 int nr = (rt->rta_len - sizeof(*rt)) / sizeof(*utmpl);
920 int err;
922 err = validate_tmpl(nr, utmpl, pol->family);
923 if (err)
924 return err;
926 copy_templates(pol, RTA_DATA(rt), nr);
928 return 0;
931 static int copy_from_user_policy_type(u8 *tp, struct rtattr **xfrma)
933 struct rtattr *rt = xfrma[XFRMA_POLICY_TYPE-1];
934 struct xfrm_userpolicy_type *upt;
935 u8 type = XFRM_POLICY_TYPE_MAIN;
936 int err;
938 if (rt) {
939 if (rt->rta_len < sizeof(*upt))
940 return -EINVAL;
942 upt = RTA_DATA(rt);
943 type = upt->type;
946 err = verify_policy_type(type);
947 if (err)
948 return err;
950 *tp = type;
951 return 0;
954 static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
956 xp->priority = p->priority;
957 xp->index = p->index;
958 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
959 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
960 xp->action = p->action;
961 xp->flags = p->flags;
962 xp->family = p->sel.family;
963 /* XXX xp->share = p->share; */
966 static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
968 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
969 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
970 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
971 p->priority = xp->priority;
972 p->index = xp->index;
973 p->sel.family = xp->family;
974 p->dir = dir;
975 p->action = xp->action;
976 p->flags = xp->flags;
977 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
980 static struct xfrm_policy *xfrm_policy_construct(struct xfrm_userpolicy_info *p, struct rtattr **xfrma, int *errp)
982 struct xfrm_policy *xp = xfrm_policy_alloc(GFP_KERNEL);
983 int err;
985 if (!xp) {
986 *errp = -ENOMEM;
987 return NULL;
990 copy_from_user_policy(xp, p);
992 err = copy_from_user_policy_type(&xp->type, xfrma);
993 if (err)
994 goto error;
996 if (!(err = copy_from_user_tmpl(xp, xfrma)))
997 err = copy_from_user_sec_ctx(xp, xfrma);
998 if (err)
999 goto error;
1001 return xp;
1002 error:
1003 *errp = err;
1004 kfree(xp);
1005 return NULL;
1008 static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1010 struct xfrm_userpolicy_info *p = NLMSG_DATA(nlh);
1011 struct xfrm_policy *xp;
1012 struct km_event c;
1013 int err;
1014 int excl;
1016 err = verify_newpolicy_info(p);
1017 if (err)
1018 return err;
1019 err = verify_sec_ctx_len((struct rtattr **)xfrma);
1020 if (err)
1021 return err;
1023 xp = xfrm_policy_construct(p, (struct rtattr **)xfrma, &err);
1024 if (!xp)
1025 return err;
1027 /* shouldnt excl be based on nlh flags??
1028 * Aha! this is anti-netlink really i.e more pfkey derived
1029 * in netlink excl is a flag and you wouldnt need
1030 * a type XFRM_MSG_UPDPOLICY - JHS */
1031 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1032 err = xfrm_policy_insert(p->dir, xp, excl);
1033 if (err) {
1034 security_xfrm_policy_free(xp);
1035 kfree(xp);
1036 return err;
1039 c.event = nlh->nlmsg_type;
1040 c.seq = nlh->nlmsg_seq;
1041 c.pid = nlh->nlmsg_pid;
1042 km_policy_notify(xp, p->dir, &c);
1044 xfrm_pol_put(xp);
1046 return 0;
1049 static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1051 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1052 int i;
1054 if (xp->xfrm_nr == 0)
1055 return 0;
1057 for (i = 0; i < xp->xfrm_nr; i++) {
1058 struct xfrm_user_tmpl *up = &vec[i];
1059 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1061 memcpy(&up->id, &kp->id, sizeof(up->id));
1062 up->family = kp->encap_family;
1063 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1064 up->reqid = kp->reqid;
1065 up->mode = kp->mode;
1066 up->share = kp->share;
1067 up->optional = kp->optional;
1068 up->aalgos = kp->aalgos;
1069 up->ealgos = kp->ealgos;
1070 up->calgos = kp->calgos;
1072 RTA_PUT(skb, XFRMA_TMPL,
1073 (sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr),
1074 vec);
1076 return 0;
1078 rtattr_failure:
1079 return -1;
1082 static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
1084 int ctx_size = sizeof(struct xfrm_sec_ctx) + s->ctx_len;
1085 struct rtattr *rt = __RTA_PUT(skb, XFRMA_SEC_CTX, ctx_size);
1086 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
1088 uctx->exttype = XFRMA_SEC_CTX;
1089 uctx->len = ctx_size;
1090 uctx->ctx_doi = s->ctx_doi;
1091 uctx->ctx_alg = s->ctx_alg;
1092 uctx->ctx_len = s->ctx_len;
1093 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
1094 return 0;
1096 rtattr_failure:
1097 return -1;
1100 static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1102 if (x->security) {
1103 return copy_sec_ctx(x->security, skb);
1105 return 0;
1108 static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1110 if (xp->security) {
1111 return copy_sec_ctx(xp->security, skb);
1113 return 0;
1116 #ifdef CONFIG_XFRM_SUB_POLICY
1117 static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
1119 struct xfrm_userpolicy_type upt;
1121 memset(&upt, 0, sizeof(upt));
1122 upt.type = type;
1124 RTA_PUT(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
1126 return 0;
1128 rtattr_failure:
1129 return -1;
1132 #else
1133 static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
1135 return 0;
1137 #endif
1139 static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1141 struct xfrm_dump_info *sp = ptr;
1142 struct xfrm_userpolicy_info *p;
1143 struct sk_buff *in_skb = sp->in_skb;
1144 struct sk_buff *skb = sp->out_skb;
1145 struct nlmsghdr *nlh;
1146 unsigned char *b = skb->tail;
1148 if (sp->this_idx < sp->start_idx)
1149 goto out;
1151 nlh = NLMSG_PUT(skb, NETLINK_CB(in_skb).pid,
1152 sp->nlmsg_seq,
1153 XFRM_MSG_NEWPOLICY, sizeof(*p));
1154 p = NLMSG_DATA(nlh);
1155 nlh->nlmsg_flags = sp->nlmsg_flags;
1157 copy_to_user_policy(xp, p, dir);
1158 if (copy_to_user_tmpl(xp, skb) < 0)
1159 goto nlmsg_failure;
1160 if (copy_to_user_sec_ctx(xp, skb))
1161 goto nlmsg_failure;
1162 if (copy_to_user_policy_type(xp->type, skb) < 0)
1163 goto nlmsg_failure;
1165 nlh->nlmsg_len = skb->tail - b;
1166 out:
1167 sp->this_idx++;
1168 return 0;
1170 nlmsg_failure:
1171 skb_trim(skb, b - skb->data);
1172 return -1;
1175 static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1177 struct xfrm_dump_info info;
1179 info.in_skb = cb->skb;
1180 info.out_skb = skb;
1181 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1182 info.nlmsg_flags = NLM_F_MULTI;
1183 info.this_idx = 0;
1184 info.start_idx = cb->args[0];
1185 (void) xfrm_policy_walk(XFRM_POLICY_TYPE_MAIN, dump_one_policy, &info);
1186 #ifdef CONFIG_XFRM_SUB_POLICY
1187 (void) xfrm_policy_walk(XFRM_POLICY_TYPE_SUB, dump_one_policy, &info);
1188 #endif
1189 cb->args[0] = info.this_idx;
1191 return skb->len;
1194 static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1195 struct xfrm_policy *xp,
1196 int dir, u32 seq)
1198 struct xfrm_dump_info info;
1199 struct sk_buff *skb;
1201 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1202 if (!skb)
1203 return ERR_PTR(-ENOMEM);
1205 info.in_skb = in_skb;
1206 info.out_skb = skb;
1207 info.nlmsg_seq = seq;
1208 info.nlmsg_flags = 0;
1209 info.this_idx = info.start_idx = 0;
1211 if (dump_one_policy(xp, dir, 0, &info) < 0) {
1212 kfree_skb(skb);
1213 return NULL;
1216 return skb;
1219 static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1221 struct xfrm_policy *xp;
1222 struct xfrm_userpolicy_id *p;
1223 u8 type = XFRM_POLICY_TYPE_MAIN;
1224 int err;
1225 struct km_event c;
1226 int delete;
1228 p = NLMSG_DATA(nlh);
1229 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1231 err = copy_from_user_policy_type(&type, (struct rtattr **)xfrma);
1232 if (err)
1233 return err;
1235 err = verify_policy_dir(p->dir);
1236 if (err)
1237 return err;
1239 if (p->index)
1240 xp = xfrm_policy_byid(type, p->dir, p->index, delete);
1241 else {
1242 struct rtattr **rtattrs = (struct rtattr **)xfrma;
1243 struct rtattr *rt = rtattrs[XFRMA_SEC_CTX-1];
1244 struct xfrm_policy tmp;
1246 err = verify_sec_ctx_len(rtattrs);
1247 if (err)
1248 return err;
1250 memset(&tmp, 0, sizeof(struct xfrm_policy));
1251 if (rt) {
1252 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
1254 if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
1255 return err;
1257 xp = xfrm_policy_bysel_ctx(type, p->dir, &p->sel, tmp.security, delete);
1258 security_xfrm_policy_free(&tmp);
1260 if (xp == NULL)
1261 return -ENOENT;
1263 if (!delete) {
1264 struct sk_buff *resp_skb;
1266 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1267 if (IS_ERR(resp_skb)) {
1268 err = PTR_ERR(resp_skb);
1269 } else {
1270 err = netlink_unicast(xfrm_nl, resp_skb,
1271 NETLINK_CB(skb).pid,
1272 MSG_DONTWAIT);
1274 } else {
1275 if ((err = security_xfrm_policy_delete(xp)) != 0)
1276 goto out;
1277 c.data.byid = p->index;
1278 c.event = nlh->nlmsg_type;
1279 c.seq = nlh->nlmsg_seq;
1280 c.pid = nlh->nlmsg_pid;
1281 km_policy_notify(xp, p->dir, &c);
1284 xfrm_pol_put(xp);
1286 out:
1287 return err;
1290 static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1292 struct km_event c;
1293 struct xfrm_usersa_flush *p = NLMSG_DATA(nlh);
1295 xfrm_state_flush(p->proto);
1296 c.data.proto = p->proto;
1297 c.event = nlh->nlmsg_type;
1298 c.seq = nlh->nlmsg_seq;
1299 c.pid = nlh->nlmsg_pid;
1300 km_state_notify(NULL, &c);
1302 return 0;
1306 static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
1308 struct xfrm_aevent_id *id;
1309 struct nlmsghdr *nlh;
1310 struct xfrm_lifetime_cur ltime;
1311 unsigned char *b = skb->tail;
1313 nlh = NLMSG_PUT(skb, c->pid, c->seq, XFRM_MSG_NEWAE, sizeof(*id));
1314 id = NLMSG_DATA(nlh);
1315 nlh->nlmsg_flags = 0;
1317 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
1318 id->sa_id.spi = x->id.spi;
1319 id->sa_id.family = x->props.family;
1320 id->sa_id.proto = x->id.proto;
1321 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1322 id->reqid = x->props.reqid;
1323 id->flags = c->data.aevent;
1325 RTA_PUT(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), &x->replay);
1327 ltime.bytes = x->curlft.bytes;
1328 ltime.packets = x->curlft.packets;
1329 ltime.add_time = x->curlft.add_time;
1330 ltime.use_time = x->curlft.use_time;
1332 RTA_PUT(skb, XFRMA_LTIME_VAL, sizeof(struct xfrm_lifetime_cur), &ltime);
1334 if (id->flags&XFRM_AE_RTHR) {
1335 RTA_PUT(skb,XFRMA_REPLAY_THRESH,sizeof(u32),&x->replay_maxdiff);
1338 if (id->flags&XFRM_AE_ETHR) {
1339 u32 etimer = x->replay_maxage*10/HZ;
1340 RTA_PUT(skb,XFRMA_ETIMER_THRESH,sizeof(u32),&etimer);
1343 nlh->nlmsg_len = skb->tail - b;
1344 return skb->len;
1346 rtattr_failure:
1347 nlmsg_failure:
1348 skb_trim(skb, b - skb->data);
1349 return -1;
1352 static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1354 struct xfrm_state *x;
1355 struct sk_buff *r_skb;
1356 int err;
1357 struct km_event c;
1358 struct xfrm_aevent_id *p = NLMSG_DATA(nlh);
1359 int len = NLMSG_LENGTH(sizeof(struct xfrm_aevent_id));
1360 struct xfrm_usersa_id *id = &p->sa_id;
1362 len += RTA_SPACE(sizeof(struct xfrm_replay_state));
1363 len += RTA_SPACE(sizeof(struct xfrm_lifetime_cur));
1365 if (p->flags&XFRM_AE_RTHR)
1366 len+=RTA_SPACE(sizeof(u32));
1368 if (p->flags&XFRM_AE_ETHR)
1369 len+=RTA_SPACE(sizeof(u32));
1371 r_skb = alloc_skb(len, GFP_ATOMIC);
1372 if (r_skb == NULL)
1373 return -ENOMEM;
1375 x = xfrm_state_lookup(&id->daddr, id->spi, id->proto, id->family);
1376 if (x == NULL) {
1377 kfree(r_skb);
1378 return -ESRCH;
1382 * XXX: is this lock really needed - none of the other
1383 * gets lock (the concern is things getting updated
1384 * while we are still reading) - jhs
1386 spin_lock_bh(&x->lock);
1387 c.data.aevent = p->flags;
1388 c.seq = nlh->nlmsg_seq;
1389 c.pid = nlh->nlmsg_pid;
1391 if (build_aevent(r_skb, x, &c) < 0)
1392 BUG();
1393 err = netlink_unicast(xfrm_nl, r_skb,
1394 NETLINK_CB(skb).pid, MSG_DONTWAIT);
1395 spin_unlock_bh(&x->lock);
1396 xfrm_state_put(x);
1397 return err;
1400 static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1402 struct xfrm_state *x;
1403 struct km_event c;
1404 int err = - EINVAL;
1405 struct xfrm_aevent_id *p = NLMSG_DATA(nlh);
1406 struct rtattr *rp = xfrma[XFRMA_REPLAY_VAL-1];
1407 struct rtattr *lt = xfrma[XFRMA_LTIME_VAL-1];
1409 if (!lt && !rp)
1410 return err;
1412 /* pedantic mode - thou shalt sayeth replaceth */
1413 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1414 return err;
1416 x = xfrm_state_lookup(&p->sa_id.daddr, p->sa_id.spi, p->sa_id.proto, p->sa_id.family);
1417 if (x == NULL)
1418 return -ESRCH;
1420 if (x->km.state != XFRM_STATE_VALID)
1421 goto out;
1423 spin_lock_bh(&x->lock);
1424 err = xfrm_update_ae_params(x,(struct rtattr **)xfrma);
1425 spin_unlock_bh(&x->lock);
1426 if (err < 0)
1427 goto out;
1429 c.event = nlh->nlmsg_type;
1430 c.seq = nlh->nlmsg_seq;
1431 c.pid = nlh->nlmsg_pid;
1432 c.data.aevent = XFRM_AE_CU;
1433 km_state_notify(x, &c);
1434 err = 0;
1435 out:
1436 xfrm_state_put(x);
1437 return err;
1440 static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1442 struct km_event c;
1443 u8 type = XFRM_POLICY_TYPE_MAIN;
1444 int err;
1446 err = copy_from_user_policy_type(&type, (struct rtattr **)xfrma);
1447 if (err)
1448 return err;
1450 xfrm_policy_flush(type);
1451 c.data.type = type;
1452 c.event = nlh->nlmsg_type;
1453 c.seq = nlh->nlmsg_seq;
1454 c.pid = nlh->nlmsg_pid;
1455 km_policy_notify(NULL, 0, &c);
1456 return 0;
1459 static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1461 struct xfrm_policy *xp;
1462 struct xfrm_user_polexpire *up = NLMSG_DATA(nlh);
1463 struct xfrm_userpolicy_info *p = &up->pol;
1464 u8 type = XFRM_POLICY_TYPE_MAIN;
1465 int err = -ENOENT;
1467 err = copy_from_user_policy_type(&type, (struct rtattr **)xfrma);
1468 if (err)
1469 return err;
1471 if (p->index)
1472 xp = xfrm_policy_byid(type, p->dir, p->index, 0);
1473 else {
1474 struct rtattr **rtattrs = (struct rtattr **)xfrma;
1475 struct rtattr *rt = rtattrs[XFRMA_SEC_CTX-1];
1476 struct xfrm_policy tmp;
1478 err = verify_sec_ctx_len(rtattrs);
1479 if (err)
1480 return err;
1482 memset(&tmp, 0, sizeof(struct xfrm_policy));
1483 if (rt) {
1484 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
1486 if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
1487 return err;
1489 xp = xfrm_policy_bysel_ctx(type, p->dir, &p->sel, tmp.security, 0);
1490 security_xfrm_policy_free(&tmp);
1493 if (xp == NULL)
1494 return err;
1495 read_lock(&xp->lock);
1496 if (xp->dead) {
1497 read_unlock(&xp->lock);
1498 goto out;
1501 read_unlock(&xp->lock);
1502 err = 0;
1503 if (up->hard) {
1504 xfrm_policy_delete(xp, p->dir);
1505 } else {
1506 // reset the timers here?
1507 printk("Dont know what to do with soft policy expire\n");
1509 km_policy_expired(xp, p->dir, up->hard, current->pid);
1511 out:
1512 xfrm_pol_put(xp);
1513 return err;
1516 static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1518 struct xfrm_state *x;
1519 int err;
1520 struct xfrm_user_expire *ue = NLMSG_DATA(nlh);
1521 struct xfrm_usersa_info *p = &ue->state;
1523 x = xfrm_state_lookup(&p->id.daddr, p->id.spi, p->id.proto, p->family);
1524 err = -ENOENT;
1526 if (x == NULL)
1527 return err;
1529 err = -EINVAL;
1531 spin_lock_bh(&x->lock);
1532 if (x->km.state != XFRM_STATE_VALID)
1533 goto out;
1534 km_state_expired(x, ue->hard, current->pid);
1536 if (ue->hard)
1537 __xfrm_state_delete(x);
1538 out:
1539 spin_unlock_bh(&x->lock);
1540 xfrm_state_put(x);
1541 return err;
1544 static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh, void **xfrma)
1546 struct xfrm_policy *xp;
1547 struct xfrm_user_tmpl *ut;
1548 int i;
1549 struct rtattr *rt = xfrma[XFRMA_TMPL-1];
1551 struct xfrm_user_acquire *ua = NLMSG_DATA(nlh);
1552 struct xfrm_state *x = xfrm_state_alloc();
1553 int err = -ENOMEM;
1555 if (!x)
1556 return err;
1558 err = verify_newpolicy_info(&ua->policy);
1559 if (err) {
1560 printk("BAD policy passed\n");
1561 kfree(x);
1562 return err;
1565 /* build an XP */
1566 xp = xfrm_policy_construct(&ua->policy, (struct rtattr **) xfrma, &err);
1567 if (!xp) {
1568 kfree(x);
1569 return err;
1572 memcpy(&x->id, &ua->id, sizeof(ua->id));
1573 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
1574 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
1576 ut = RTA_DATA(rt);
1577 /* extract the templates and for each call km_key */
1578 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
1579 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1580 memcpy(&x->id, &t->id, sizeof(x->id));
1581 x->props.mode = t->mode;
1582 x->props.reqid = t->reqid;
1583 x->props.family = ut->family;
1584 t->aalgos = ua->aalgos;
1585 t->ealgos = ua->ealgos;
1586 t->calgos = ua->calgos;
1587 err = km_query(x, t, xp);
1591 kfree(x);
1592 kfree(xp);
1594 return 0;
1598 #define XMSGSIZE(type) NLMSG_LENGTH(sizeof(struct type))
1600 static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
1601 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1602 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1603 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1604 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1605 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1606 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1607 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
1608 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
1609 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
1610 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1611 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1612 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
1613 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
1614 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = NLMSG_LENGTH(0),
1615 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
1616 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
1617 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
1620 #undef XMSGSIZE
1622 static struct xfrm_link {
1623 int (*doit)(struct sk_buff *, struct nlmsghdr *, void **);
1624 int (*dump)(struct sk_buff *, struct netlink_callback *);
1625 } xfrm_dispatch[XFRM_NR_MSGTYPES] = {
1626 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
1627 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
1628 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
1629 .dump = xfrm_dump_sa },
1630 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1631 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
1632 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
1633 .dump = xfrm_dump_policy },
1634 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
1635 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
1636 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
1637 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1638 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
1639 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
1640 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
1641 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
1642 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
1643 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
1646 static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *errp)
1648 struct rtattr *xfrma[XFRMA_MAX];
1649 struct xfrm_link *link;
1650 int type, min_len;
1652 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
1653 return 0;
1655 type = nlh->nlmsg_type;
1657 /* A control message: ignore them */
1658 if (type < XFRM_MSG_BASE)
1659 return 0;
1661 /* Unknown message: reply with EINVAL */
1662 if (type > XFRM_MSG_MAX)
1663 goto err_einval;
1665 type -= XFRM_MSG_BASE;
1666 link = &xfrm_dispatch[type];
1668 /* All operations require privileges, even GET */
1669 if (security_netlink_recv(skb, CAP_NET_ADMIN)) {
1670 *errp = -EPERM;
1671 return -1;
1674 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
1675 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
1676 (nlh->nlmsg_flags & NLM_F_DUMP)) {
1677 if (link->dump == NULL)
1678 goto err_einval;
1680 if ((*errp = netlink_dump_start(xfrm_nl, skb, nlh,
1681 link->dump, NULL)) != 0) {
1682 return -1;
1685 netlink_queue_skip(nlh, skb);
1686 return -1;
1689 memset(xfrma, 0, sizeof(xfrma));
1691 if (nlh->nlmsg_len < (min_len = xfrm_msg_min[type]))
1692 goto err_einval;
1694 if (nlh->nlmsg_len > min_len) {
1695 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
1696 struct rtattr *attr = (void *) nlh + NLMSG_ALIGN(min_len);
1698 while (RTA_OK(attr, attrlen)) {
1699 unsigned short flavor = attr->rta_type;
1700 if (flavor) {
1701 if (flavor > XFRMA_MAX)
1702 goto err_einval;
1703 xfrma[flavor - 1] = attr;
1705 attr = RTA_NEXT(attr, attrlen);
1709 if (link->doit == NULL)
1710 goto err_einval;
1711 *errp = link->doit(skb, nlh, (void **) &xfrma);
1713 return *errp;
1715 err_einval:
1716 *errp = -EINVAL;
1717 return -1;
1720 static void xfrm_netlink_rcv(struct sock *sk, int len)
1722 unsigned int qlen = 0;
1724 do {
1725 mutex_lock(&xfrm_cfg_mutex);
1726 netlink_run_queue(sk, &qlen, &xfrm_user_rcv_msg);
1727 mutex_unlock(&xfrm_cfg_mutex);
1729 } while (qlen);
1732 static int build_expire(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
1734 struct xfrm_user_expire *ue;
1735 struct nlmsghdr *nlh;
1736 unsigned char *b = skb->tail;
1738 nlh = NLMSG_PUT(skb, c->pid, 0, XFRM_MSG_EXPIRE,
1739 sizeof(*ue));
1740 ue = NLMSG_DATA(nlh);
1741 nlh->nlmsg_flags = 0;
1743 copy_to_user_state(x, &ue->state);
1744 ue->hard = (c->data.hard != 0) ? 1 : 0;
1746 nlh->nlmsg_len = skb->tail - b;
1747 return skb->len;
1749 nlmsg_failure:
1750 skb_trim(skb, b - skb->data);
1751 return -1;
1754 static int xfrm_exp_state_notify(struct xfrm_state *x, struct km_event *c)
1756 struct sk_buff *skb;
1757 int len = NLMSG_LENGTH(sizeof(struct xfrm_user_expire));
1759 skb = alloc_skb(len, GFP_ATOMIC);
1760 if (skb == NULL)
1761 return -ENOMEM;
1763 if (build_expire(skb, x, c) < 0)
1764 BUG();
1766 NETLINK_CB(skb).dst_group = XFRMNLGRP_EXPIRE;
1767 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
1770 static int xfrm_aevent_state_notify(struct xfrm_state *x, struct km_event *c)
1772 struct sk_buff *skb;
1773 int len = NLMSG_LENGTH(sizeof(struct xfrm_aevent_id));
1775 len += RTA_SPACE(sizeof(struct xfrm_replay_state));
1776 len += RTA_SPACE(sizeof(struct xfrm_lifetime_cur));
1777 skb = alloc_skb(len, GFP_ATOMIC);
1778 if (skb == NULL)
1779 return -ENOMEM;
1781 if (build_aevent(skb, x, c) < 0)
1782 BUG();
1784 NETLINK_CB(skb).dst_group = XFRMNLGRP_AEVENTS;
1785 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
1788 static int xfrm_notify_sa_flush(struct km_event *c)
1790 struct xfrm_usersa_flush *p;
1791 struct nlmsghdr *nlh;
1792 struct sk_buff *skb;
1793 unsigned char *b;
1794 int len = NLMSG_LENGTH(sizeof(struct xfrm_usersa_flush));
1796 skb = alloc_skb(len, GFP_ATOMIC);
1797 if (skb == NULL)
1798 return -ENOMEM;
1799 b = skb->tail;
1801 nlh = NLMSG_PUT(skb, c->pid, c->seq,
1802 XFRM_MSG_FLUSHSA, sizeof(*p));
1803 nlh->nlmsg_flags = 0;
1805 p = NLMSG_DATA(nlh);
1806 p->proto = c->data.proto;
1808 nlh->nlmsg_len = skb->tail - b;
1810 NETLINK_CB(skb).dst_group = XFRMNLGRP_SA;
1811 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
1813 nlmsg_failure:
1814 kfree_skb(skb);
1815 return -1;
1818 static int inline xfrm_sa_len(struct xfrm_state *x)
1820 int l = 0;
1821 if (x->aalg)
1822 l += RTA_SPACE(sizeof(*x->aalg) + (x->aalg->alg_key_len+7)/8);
1823 if (x->ealg)
1824 l += RTA_SPACE(sizeof(*x->ealg) + (x->ealg->alg_key_len+7)/8);
1825 if (x->calg)
1826 l += RTA_SPACE(sizeof(*x->calg));
1827 if (x->encap)
1828 l += RTA_SPACE(sizeof(*x->encap));
1830 return l;
1833 static int xfrm_notify_sa(struct xfrm_state *x, struct km_event *c)
1835 struct xfrm_usersa_info *p;
1836 struct xfrm_usersa_id *id;
1837 struct nlmsghdr *nlh;
1838 struct sk_buff *skb;
1839 unsigned char *b;
1840 int len = xfrm_sa_len(x);
1841 int headlen;
1843 headlen = sizeof(*p);
1844 if (c->event == XFRM_MSG_DELSA) {
1845 len += RTA_SPACE(headlen);
1846 headlen = sizeof(*id);
1848 len += NLMSG_SPACE(headlen);
1850 skb = alloc_skb(len, GFP_ATOMIC);
1851 if (skb == NULL)
1852 return -ENOMEM;
1853 b = skb->tail;
1855 nlh = NLMSG_PUT(skb, c->pid, c->seq, c->event, headlen);
1856 nlh->nlmsg_flags = 0;
1858 p = NLMSG_DATA(nlh);
1859 if (c->event == XFRM_MSG_DELSA) {
1860 id = NLMSG_DATA(nlh);
1861 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
1862 id->spi = x->id.spi;
1863 id->family = x->props.family;
1864 id->proto = x->id.proto;
1866 p = RTA_DATA(__RTA_PUT(skb, XFRMA_SA, sizeof(*p)));
1869 copy_to_user_state(x, p);
1871 if (x->aalg)
1872 RTA_PUT(skb, XFRMA_ALG_AUTH,
1873 sizeof(*(x->aalg))+(x->aalg->alg_key_len+7)/8, x->aalg);
1874 if (x->ealg)
1875 RTA_PUT(skb, XFRMA_ALG_CRYPT,
1876 sizeof(*(x->ealg))+(x->ealg->alg_key_len+7)/8, x->ealg);
1877 if (x->calg)
1878 RTA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
1880 if (x->encap)
1881 RTA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
1883 nlh->nlmsg_len = skb->tail - b;
1885 NETLINK_CB(skb).dst_group = XFRMNLGRP_SA;
1886 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
1888 nlmsg_failure:
1889 rtattr_failure:
1890 kfree_skb(skb);
1891 return -1;
1894 static int xfrm_send_state_notify(struct xfrm_state *x, struct km_event *c)
1897 switch (c->event) {
1898 case XFRM_MSG_EXPIRE:
1899 return xfrm_exp_state_notify(x, c);
1900 case XFRM_MSG_NEWAE:
1901 return xfrm_aevent_state_notify(x, c);
1902 case XFRM_MSG_DELSA:
1903 case XFRM_MSG_UPDSA:
1904 case XFRM_MSG_NEWSA:
1905 return xfrm_notify_sa(x, c);
1906 case XFRM_MSG_FLUSHSA:
1907 return xfrm_notify_sa_flush(c);
1908 default:
1909 printk("xfrm_user: Unknown SA event %d\n", c->event);
1910 break;
1913 return 0;
1917 static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
1918 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
1919 int dir)
1921 struct xfrm_user_acquire *ua;
1922 struct nlmsghdr *nlh;
1923 unsigned char *b = skb->tail;
1924 __u32 seq = xfrm_get_acqseq();
1926 nlh = NLMSG_PUT(skb, 0, 0, XFRM_MSG_ACQUIRE,
1927 sizeof(*ua));
1928 ua = NLMSG_DATA(nlh);
1929 nlh->nlmsg_flags = 0;
1931 memcpy(&ua->id, &x->id, sizeof(ua->id));
1932 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
1933 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
1934 copy_to_user_policy(xp, &ua->policy, dir);
1935 ua->aalgos = xt->aalgos;
1936 ua->ealgos = xt->ealgos;
1937 ua->calgos = xt->calgos;
1938 ua->seq = x->km.seq = seq;
1940 if (copy_to_user_tmpl(xp, skb) < 0)
1941 goto nlmsg_failure;
1942 if (copy_to_user_state_sec_ctx(x, skb))
1943 goto nlmsg_failure;
1944 if (copy_to_user_policy_type(xp->type, skb) < 0)
1945 goto nlmsg_failure;
1947 nlh->nlmsg_len = skb->tail - b;
1948 return skb->len;
1950 nlmsg_failure:
1951 skb_trim(skb, b - skb->data);
1952 return -1;
1955 static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
1956 struct xfrm_policy *xp, int dir)
1958 struct sk_buff *skb;
1959 size_t len;
1961 len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
1962 len += NLMSG_SPACE(sizeof(struct xfrm_user_acquire));
1963 len += RTA_SPACE(xfrm_user_sec_ctx_size(xp));
1964 #ifdef CONFIG_XFRM_SUB_POLICY
1965 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
1966 #endif
1967 skb = alloc_skb(len, GFP_ATOMIC);
1968 if (skb == NULL)
1969 return -ENOMEM;
1971 if (build_acquire(skb, x, xt, xp, dir) < 0)
1972 BUG();
1974 NETLINK_CB(skb).dst_group = XFRMNLGRP_ACQUIRE;
1975 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
1978 /* User gives us xfrm_user_policy_info followed by an array of 0
1979 * or more templates.
1981 static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
1982 u8 *data, int len, int *dir)
1984 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
1985 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
1986 struct xfrm_policy *xp;
1987 int nr;
1989 switch (sk->sk_family) {
1990 case AF_INET:
1991 if (opt != IP_XFRM_POLICY) {
1992 *dir = -EOPNOTSUPP;
1993 return NULL;
1995 break;
1996 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1997 case AF_INET6:
1998 if (opt != IPV6_XFRM_POLICY) {
1999 *dir = -EOPNOTSUPP;
2000 return NULL;
2002 break;
2003 #endif
2004 default:
2005 *dir = -EINVAL;
2006 return NULL;
2009 *dir = -EINVAL;
2011 if (len < sizeof(*p) ||
2012 verify_newpolicy_info(p))
2013 return NULL;
2015 nr = ((len - sizeof(*p)) / sizeof(*ut));
2016 if (validate_tmpl(nr, ut, p->sel.family))
2017 return NULL;
2019 if (p->dir > XFRM_POLICY_OUT)
2020 return NULL;
2022 xp = xfrm_policy_alloc(GFP_KERNEL);
2023 if (xp == NULL) {
2024 *dir = -ENOBUFS;
2025 return NULL;
2028 copy_from_user_policy(xp, p);
2029 xp->type = XFRM_POLICY_TYPE_MAIN;
2030 copy_templates(xp, ut, nr);
2032 *dir = p->dir;
2034 return xp;
2037 static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
2038 int dir, struct km_event *c)
2040 struct xfrm_user_polexpire *upe;
2041 struct nlmsghdr *nlh;
2042 int hard = c->data.hard;
2043 unsigned char *b = skb->tail;
2045 nlh = NLMSG_PUT(skb, c->pid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe));
2046 upe = NLMSG_DATA(nlh);
2047 nlh->nlmsg_flags = 0;
2049 copy_to_user_policy(xp, &upe->pol, dir);
2050 if (copy_to_user_tmpl(xp, skb) < 0)
2051 goto nlmsg_failure;
2052 if (copy_to_user_sec_ctx(xp, skb))
2053 goto nlmsg_failure;
2054 if (copy_to_user_policy_type(xp->type, skb) < 0)
2055 goto nlmsg_failure;
2056 upe->hard = !!hard;
2058 nlh->nlmsg_len = skb->tail - b;
2059 return skb->len;
2061 nlmsg_failure:
2062 skb_trim(skb, b - skb->data);
2063 return -1;
2066 static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
2068 struct sk_buff *skb;
2069 size_t len;
2071 len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
2072 len += NLMSG_SPACE(sizeof(struct xfrm_user_polexpire));
2073 len += RTA_SPACE(xfrm_user_sec_ctx_size(xp));
2074 #ifdef CONFIG_XFRM_SUB_POLICY
2075 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
2076 #endif
2077 skb = alloc_skb(len, GFP_ATOMIC);
2078 if (skb == NULL)
2079 return -ENOMEM;
2081 if (build_polexpire(skb, xp, dir, c) < 0)
2082 BUG();
2084 NETLINK_CB(skb).dst_group = XFRMNLGRP_EXPIRE;
2085 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
2088 static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, struct km_event *c)
2090 struct xfrm_userpolicy_info *p;
2091 struct xfrm_userpolicy_id *id;
2092 struct nlmsghdr *nlh;
2093 struct sk_buff *skb;
2094 unsigned char *b;
2095 int len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
2096 int headlen;
2098 headlen = sizeof(*p);
2099 if (c->event == XFRM_MSG_DELPOLICY) {
2100 len += RTA_SPACE(headlen);
2101 headlen = sizeof(*id);
2103 #ifdef CONFIG_XFRM_SUB_POLICY
2104 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
2105 #endif
2106 len += NLMSG_SPACE(headlen);
2108 skb = alloc_skb(len, GFP_ATOMIC);
2109 if (skb == NULL)
2110 return -ENOMEM;
2111 b = skb->tail;
2113 nlh = NLMSG_PUT(skb, c->pid, c->seq, c->event, headlen);
2115 p = NLMSG_DATA(nlh);
2116 if (c->event == XFRM_MSG_DELPOLICY) {
2117 id = NLMSG_DATA(nlh);
2118 memset(id, 0, sizeof(*id));
2119 id->dir = dir;
2120 if (c->data.byid)
2121 id->index = xp->index;
2122 else
2123 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2125 p = RTA_DATA(__RTA_PUT(skb, XFRMA_POLICY, sizeof(*p)));
2128 nlh->nlmsg_flags = 0;
2130 copy_to_user_policy(xp, p, dir);
2131 if (copy_to_user_tmpl(xp, skb) < 0)
2132 goto nlmsg_failure;
2133 if (copy_to_user_policy_type(xp->type, skb) < 0)
2134 goto nlmsg_failure;
2136 nlh->nlmsg_len = skb->tail - b;
2138 NETLINK_CB(skb).dst_group = XFRMNLGRP_POLICY;
2139 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
2141 nlmsg_failure:
2142 rtattr_failure:
2143 kfree_skb(skb);
2144 return -1;
2147 static int xfrm_notify_policy_flush(struct km_event *c)
2149 struct nlmsghdr *nlh;
2150 struct sk_buff *skb;
2151 unsigned char *b;
2152 int len = 0;
2153 #ifdef CONFIG_XFRM_SUB_POLICY
2154 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
2155 #endif
2156 len += NLMSG_LENGTH(0);
2158 skb = alloc_skb(len, GFP_ATOMIC);
2159 if (skb == NULL)
2160 return -ENOMEM;
2161 b = skb->tail;
2164 nlh = NLMSG_PUT(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0);
2165 nlh->nlmsg_flags = 0;
2166 if (copy_to_user_policy_type(c->data.type, skb) < 0)
2167 goto nlmsg_failure;
2169 nlh->nlmsg_len = skb->tail - b;
2171 NETLINK_CB(skb).dst_group = XFRMNLGRP_POLICY;
2172 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
2174 nlmsg_failure:
2175 kfree_skb(skb);
2176 return -1;
2179 static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
2182 switch (c->event) {
2183 case XFRM_MSG_NEWPOLICY:
2184 case XFRM_MSG_UPDPOLICY:
2185 case XFRM_MSG_DELPOLICY:
2186 return xfrm_notify_policy(xp, dir, c);
2187 case XFRM_MSG_FLUSHPOLICY:
2188 return xfrm_notify_policy_flush(c);
2189 case XFRM_MSG_POLEXPIRE:
2190 return xfrm_exp_policy_notify(xp, dir, c);
2191 default:
2192 printk("xfrm_user: Unknown Policy event %d\n", c->event);
2195 return 0;
2199 static int build_report(struct sk_buff *skb, u8 proto,
2200 struct xfrm_selector *sel, xfrm_address_t *addr)
2202 struct xfrm_user_report *ur;
2203 struct nlmsghdr *nlh;
2204 unsigned char *b = skb->tail;
2206 nlh = NLMSG_PUT(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur));
2207 ur = NLMSG_DATA(nlh);
2208 nlh->nlmsg_flags = 0;
2210 ur->proto = proto;
2211 memcpy(&ur->sel, sel, sizeof(ur->sel));
2213 if (addr)
2214 RTA_PUT(skb, XFRMA_COADDR, sizeof(*addr), addr);
2216 nlh->nlmsg_len = skb->tail - b;
2217 return skb->len;
2219 nlmsg_failure:
2220 rtattr_failure:
2221 skb_trim(skb, b - skb->data);
2222 return -1;
2225 static int xfrm_send_report(u8 proto, struct xfrm_selector *sel,
2226 xfrm_address_t *addr)
2228 struct sk_buff *skb;
2229 size_t len;
2231 len = NLMSG_ALIGN(NLMSG_LENGTH(sizeof(struct xfrm_user_report)));
2232 skb = alloc_skb(len, GFP_ATOMIC);
2233 if (skb == NULL)
2234 return -ENOMEM;
2236 if (build_report(skb, proto, sel, addr) < 0)
2237 BUG();
2239 NETLINK_CB(skb).dst_group = XFRMNLGRP_REPORT;
2240 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
2243 static struct xfrm_mgr netlink_mgr = {
2244 .id = "netlink",
2245 .notify = xfrm_send_state_notify,
2246 .acquire = xfrm_send_acquire,
2247 .compile_policy = xfrm_compile_policy,
2248 .notify_policy = xfrm_send_policy_notify,
2249 .report = xfrm_send_report,
2252 static int __init xfrm_user_init(void)
2254 struct sock *nlsk;
2256 printk(KERN_INFO "Initializing XFRM netlink socket\n");
2258 nlsk = netlink_kernel_create(NETLINK_XFRM, XFRMNLGRP_MAX,
2259 xfrm_netlink_rcv, THIS_MODULE);
2260 if (nlsk == NULL)
2261 return -ENOMEM;
2262 rcu_assign_pointer(xfrm_nl, nlsk);
2264 xfrm_register_km(&netlink_mgr);
2266 return 0;
2269 static void __exit xfrm_user_exit(void)
2271 struct sock *nlsk = xfrm_nl;
2273 xfrm_unregister_km(&netlink_mgr);
2274 rcu_assign_pointer(xfrm_nl, NULL);
2275 synchronize_rcu();
2276 sock_release(nlsk->sk_socket);
2279 module_init(xfrm_user_init);
2280 module_exit(xfrm_user_exit);
2281 MODULE_LICENSE("GPL");
2282 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);