ACPI: thinkpad-acpi: add development version tag
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / xfrm / xfrm_user.c
blob6106b72826d374f4d5cbcc1ea8ab1c391bef2917
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/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>
30 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
31 #include <linux/in6.h>
32 #endif
34 static inline int aead_len(struct xfrm_algo_aead *alg)
36 return sizeof(*alg) + ((alg->alg_key_len + 7) / 8);
39 static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
41 struct nlattr *rt = attrs[type];
42 struct xfrm_algo *algp;
44 if (!rt)
45 return 0;
47 algp = nla_data(rt);
48 if (nla_len(rt) < xfrm_alg_len(algp))
49 return -EINVAL;
51 switch (type) {
52 case XFRMA_ALG_AUTH:
53 case XFRMA_ALG_CRYPT:
54 case XFRMA_ALG_COMP:
55 break;
57 default:
58 return -EINVAL;
61 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
62 return 0;
65 static int verify_auth_trunc(struct nlattr **attrs)
67 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
68 struct xfrm_algo_auth *algp;
70 if (!rt)
71 return 0;
73 algp = nla_data(rt);
74 if (nla_len(rt) < xfrm_alg_auth_len(algp))
75 return -EINVAL;
77 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
78 return 0;
81 static int verify_aead(struct nlattr **attrs)
83 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
84 struct xfrm_algo_aead *algp;
86 if (!rt)
87 return 0;
89 algp = nla_data(rt);
90 if (nla_len(rt) < aead_len(algp))
91 return -EINVAL;
93 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
94 return 0;
97 static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
98 xfrm_address_t **addrp)
100 struct nlattr *rt = attrs[type];
102 if (rt && addrp)
103 *addrp = nla_data(rt);
106 static inline int verify_sec_ctx_len(struct nlattr **attrs)
108 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
109 struct xfrm_user_sec_ctx *uctx;
111 if (!rt)
112 return 0;
114 uctx = nla_data(rt);
115 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
116 return -EINVAL;
118 return 0;
122 static int verify_newsa_info(struct xfrm_usersa_info *p,
123 struct nlattr **attrs)
125 int err;
127 err = -EINVAL;
128 switch (p->family) {
129 case AF_INET:
130 break;
132 case AF_INET6:
133 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
134 break;
135 #else
136 err = -EAFNOSUPPORT;
137 goto out;
138 #endif
140 default:
141 goto out;
144 err = -EINVAL;
145 switch (p->id.proto) {
146 case IPPROTO_AH:
147 if ((!attrs[XFRMA_ALG_AUTH] &&
148 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
149 attrs[XFRMA_ALG_AEAD] ||
150 attrs[XFRMA_ALG_CRYPT] ||
151 attrs[XFRMA_ALG_COMP])
152 goto out;
153 break;
155 case IPPROTO_ESP:
156 if (attrs[XFRMA_ALG_COMP])
157 goto out;
158 if (!attrs[XFRMA_ALG_AUTH] &&
159 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
160 !attrs[XFRMA_ALG_CRYPT] &&
161 !attrs[XFRMA_ALG_AEAD])
162 goto out;
163 if ((attrs[XFRMA_ALG_AUTH] ||
164 attrs[XFRMA_ALG_AUTH_TRUNC] ||
165 attrs[XFRMA_ALG_CRYPT]) &&
166 attrs[XFRMA_ALG_AEAD])
167 goto out;
168 break;
170 case IPPROTO_COMP:
171 if (!attrs[XFRMA_ALG_COMP] ||
172 attrs[XFRMA_ALG_AEAD] ||
173 attrs[XFRMA_ALG_AUTH] ||
174 attrs[XFRMA_ALG_AUTH_TRUNC] ||
175 attrs[XFRMA_ALG_CRYPT])
176 goto out;
177 break;
179 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
180 case IPPROTO_DSTOPTS:
181 case IPPROTO_ROUTING:
182 if (attrs[XFRMA_ALG_COMP] ||
183 attrs[XFRMA_ALG_AUTH] ||
184 attrs[XFRMA_ALG_AUTH_TRUNC] ||
185 attrs[XFRMA_ALG_AEAD] ||
186 attrs[XFRMA_ALG_CRYPT] ||
187 attrs[XFRMA_ENCAP] ||
188 attrs[XFRMA_SEC_CTX] ||
189 !attrs[XFRMA_COADDR])
190 goto out;
191 break;
192 #endif
194 default:
195 goto out;
198 if ((err = verify_aead(attrs)))
199 goto out;
200 if ((err = verify_auth_trunc(attrs)))
201 goto out;
202 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
203 goto out;
204 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
205 goto out;
206 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
207 goto out;
208 if ((err = verify_sec_ctx_len(attrs)))
209 goto out;
211 err = -EINVAL;
212 switch (p->mode) {
213 case XFRM_MODE_TRANSPORT:
214 case XFRM_MODE_TUNNEL:
215 case XFRM_MODE_ROUTEOPTIMIZATION:
216 case XFRM_MODE_BEET:
217 break;
219 default:
220 goto out;
223 err = 0;
225 out:
226 return err;
229 static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
230 struct xfrm_algo_desc *(*get_byname)(char *, int),
231 struct nlattr *rta)
233 struct xfrm_algo *p, *ualg;
234 struct xfrm_algo_desc *algo;
236 if (!rta)
237 return 0;
239 ualg = nla_data(rta);
241 algo = get_byname(ualg->alg_name, 1);
242 if (!algo)
243 return -ENOSYS;
244 *props = algo->desc.sadb_alg_id;
246 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
247 if (!p)
248 return -ENOMEM;
250 strcpy(p->alg_name, algo->name);
251 *algpp = p;
252 return 0;
255 static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
256 struct nlattr *rta)
258 struct xfrm_algo *ualg;
259 struct xfrm_algo_auth *p;
260 struct xfrm_algo_desc *algo;
262 if (!rta)
263 return 0;
265 ualg = nla_data(rta);
267 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
268 if (!algo)
269 return -ENOSYS;
270 *props = algo->desc.sadb_alg_id;
272 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
273 if (!p)
274 return -ENOMEM;
276 strcpy(p->alg_name, algo->name);
277 p->alg_key_len = ualg->alg_key_len;
278 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
279 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
281 *algpp = p;
282 return 0;
285 static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
286 struct nlattr *rta)
288 struct xfrm_algo_auth *p, *ualg;
289 struct xfrm_algo_desc *algo;
291 if (!rta)
292 return 0;
294 ualg = nla_data(rta);
296 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
297 if (!algo)
298 return -ENOSYS;
299 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
300 return -EINVAL;
301 *props = algo->desc.sadb_alg_id;
303 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
304 if (!p)
305 return -ENOMEM;
307 strcpy(p->alg_name, algo->name);
308 if (!p->alg_trunc_len)
309 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
311 *algpp = p;
312 return 0;
315 static int attach_aead(struct xfrm_algo_aead **algpp, u8 *props,
316 struct nlattr *rta)
318 struct xfrm_algo_aead *p, *ualg;
319 struct xfrm_algo_desc *algo;
321 if (!rta)
322 return 0;
324 ualg = nla_data(rta);
326 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
327 if (!algo)
328 return -ENOSYS;
329 *props = algo->desc.sadb_alg_id;
331 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
332 if (!p)
333 return -ENOMEM;
335 strcpy(p->alg_name, algo->name);
336 *algpp = p;
337 return 0;
340 static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
342 int len = 0;
344 if (xfrm_ctx) {
345 len += sizeof(struct xfrm_user_sec_ctx);
346 len += xfrm_ctx->ctx_len;
348 return len;
351 static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
353 memcpy(&x->id, &p->id, sizeof(x->id));
354 memcpy(&x->sel, &p->sel, sizeof(x->sel));
355 memcpy(&x->lft, &p->lft, sizeof(x->lft));
356 x->props.mode = p->mode;
357 x->props.replay_window = p->replay_window;
358 x->props.reqid = p->reqid;
359 x->props.family = p->family;
360 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
361 x->props.flags = p->flags;
363 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
364 x->sel.family = p->family;
368 * someday when pfkey also has support, we could have the code
369 * somehow made shareable and move it to xfrm_state.c - JHS
372 static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs)
374 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
375 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
376 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
377 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
379 if (rp) {
380 struct xfrm_replay_state *replay;
381 replay = nla_data(rp);
382 memcpy(&x->replay, replay, sizeof(*replay));
383 memcpy(&x->preplay, replay, sizeof(*replay));
386 if (lt) {
387 struct xfrm_lifetime_cur *ltime;
388 ltime = nla_data(lt);
389 x->curlft.bytes = ltime->bytes;
390 x->curlft.packets = ltime->packets;
391 x->curlft.add_time = ltime->add_time;
392 x->curlft.use_time = ltime->use_time;
395 if (et)
396 x->replay_maxage = nla_get_u32(et);
398 if (rt)
399 x->replay_maxdiff = nla_get_u32(rt);
402 static struct xfrm_state *xfrm_state_construct(struct net *net,
403 struct xfrm_usersa_info *p,
404 struct nlattr **attrs,
405 int *errp)
407 struct xfrm_state *x = xfrm_state_alloc(net);
408 int err = -ENOMEM;
410 if (!x)
411 goto error_no_put;
413 copy_from_user_state(x, p);
415 if ((err = attach_aead(&x->aead, &x->props.ealgo,
416 attrs[XFRMA_ALG_AEAD])))
417 goto error;
418 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
419 attrs[XFRMA_ALG_AUTH_TRUNC])))
420 goto error;
421 if (!x->props.aalgo) {
422 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
423 attrs[XFRMA_ALG_AUTH])))
424 goto error;
426 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
427 xfrm_ealg_get_byname,
428 attrs[XFRMA_ALG_CRYPT])))
429 goto error;
430 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
431 xfrm_calg_get_byname,
432 attrs[XFRMA_ALG_COMP])))
433 goto error;
435 if (attrs[XFRMA_ENCAP]) {
436 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
437 sizeof(*x->encap), GFP_KERNEL);
438 if (x->encap == NULL)
439 goto error;
442 if (attrs[XFRMA_COADDR]) {
443 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
444 sizeof(*x->coaddr), GFP_KERNEL);
445 if (x->coaddr == NULL)
446 goto error;
449 xfrm_mark_get(attrs, &x->mark);
451 err = xfrm_init_state(x);
452 if (err)
453 goto error;
455 if (attrs[XFRMA_SEC_CTX] &&
456 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
457 goto error;
459 x->km.seq = p->seq;
460 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
461 /* sysctl_xfrm_aevent_etime is in 100ms units */
462 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
463 x->preplay.bitmap = 0;
464 x->preplay.seq = x->replay.seq+x->replay_maxdiff;
465 x->preplay.oseq = x->replay.oseq +x->replay_maxdiff;
467 /* override default values from above */
469 xfrm_update_ae_params(x, attrs);
471 return x;
473 error:
474 x->km.state = XFRM_STATE_DEAD;
475 xfrm_state_put(x);
476 error_no_put:
477 *errp = err;
478 return NULL;
481 static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
482 struct nlattr **attrs)
484 struct net *net = sock_net(skb->sk);
485 struct xfrm_usersa_info *p = nlmsg_data(nlh);
486 struct xfrm_state *x;
487 int err;
488 struct km_event c;
489 uid_t loginuid = NETLINK_CB(skb).loginuid;
490 u32 sessionid = NETLINK_CB(skb).sessionid;
491 u32 sid = NETLINK_CB(skb).sid;
493 err = verify_newsa_info(p, attrs);
494 if (err)
495 return err;
497 x = xfrm_state_construct(net, p, attrs, &err);
498 if (!x)
499 return err;
501 xfrm_state_hold(x);
502 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
503 err = xfrm_state_add(x);
504 else
505 err = xfrm_state_update(x);
507 xfrm_audit_state_add(x, err ? 0 : 1, loginuid, sessionid, sid);
509 if (err < 0) {
510 x->km.state = XFRM_STATE_DEAD;
511 __xfrm_state_put(x);
512 goto out;
515 c.seq = nlh->nlmsg_seq;
516 c.pid = nlh->nlmsg_pid;
517 c.event = nlh->nlmsg_type;
519 km_state_notify(x, &c);
520 out:
521 xfrm_state_put(x);
522 return err;
525 static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
526 struct xfrm_usersa_id *p,
527 struct nlattr **attrs,
528 int *errp)
530 struct xfrm_state *x = NULL;
531 struct xfrm_mark m;
532 int err;
533 u32 mark = xfrm_mark_get(attrs, &m);
535 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
536 err = -ESRCH;
537 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
538 } else {
539 xfrm_address_t *saddr = NULL;
541 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
542 if (!saddr) {
543 err = -EINVAL;
544 goto out;
547 err = -ESRCH;
548 x = xfrm_state_lookup_byaddr(net, mark,
549 &p->daddr, saddr,
550 p->proto, p->family);
553 out:
554 if (!x && errp)
555 *errp = err;
556 return x;
559 static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
560 struct nlattr **attrs)
562 struct net *net = sock_net(skb->sk);
563 struct xfrm_state *x;
564 int err = -ESRCH;
565 struct km_event c;
566 struct xfrm_usersa_id *p = nlmsg_data(nlh);
567 uid_t loginuid = NETLINK_CB(skb).loginuid;
568 u32 sessionid = NETLINK_CB(skb).sessionid;
569 u32 sid = NETLINK_CB(skb).sid;
571 x = xfrm_user_state_lookup(net, p, attrs, &err);
572 if (x == NULL)
573 return err;
575 if ((err = security_xfrm_state_delete(x)) != 0)
576 goto out;
578 if (xfrm_state_kern(x)) {
579 err = -EPERM;
580 goto out;
583 err = xfrm_state_delete(x);
585 if (err < 0)
586 goto out;
588 c.seq = nlh->nlmsg_seq;
589 c.pid = nlh->nlmsg_pid;
590 c.event = nlh->nlmsg_type;
591 km_state_notify(x, &c);
593 out:
594 xfrm_audit_state_delete(x, err ? 0 : 1, loginuid, sessionid, sid);
595 xfrm_state_put(x);
596 return err;
599 static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
601 memcpy(&p->id, &x->id, sizeof(p->id));
602 memcpy(&p->sel, &x->sel, sizeof(p->sel));
603 memcpy(&p->lft, &x->lft, sizeof(p->lft));
604 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
605 memcpy(&p->stats, &x->stats, sizeof(p->stats));
606 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
607 p->mode = x->props.mode;
608 p->replay_window = x->props.replay_window;
609 p->reqid = x->props.reqid;
610 p->family = x->props.family;
611 p->flags = x->props.flags;
612 p->seq = x->km.seq;
615 struct xfrm_dump_info {
616 struct sk_buff *in_skb;
617 struct sk_buff *out_skb;
618 u32 nlmsg_seq;
619 u16 nlmsg_flags;
622 static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
624 struct xfrm_user_sec_ctx *uctx;
625 struct nlattr *attr;
626 int ctx_size = sizeof(*uctx) + s->ctx_len;
628 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
629 if (attr == NULL)
630 return -EMSGSIZE;
632 uctx = nla_data(attr);
633 uctx->exttype = XFRMA_SEC_CTX;
634 uctx->len = ctx_size;
635 uctx->ctx_doi = s->ctx_doi;
636 uctx->ctx_alg = s->ctx_alg;
637 uctx->ctx_len = s->ctx_len;
638 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
640 return 0;
643 static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
645 struct xfrm_algo *algo;
646 struct nlattr *nla;
648 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
649 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
650 if (!nla)
651 return -EMSGSIZE;
653 algo = nla_data(nla);
654 strcpy(algo->alg_name, auth->alg_name);
655 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
656 algo->alg_key_len = auth->alg_key_len;
658 return 0;
661 /* Don't change this without updating xfrm_sa_len! */
662 static int copy_to_user_state_extra(struct xfrm_state *x,
663 struct xfrm_usersa_info *p,
664 struct sk_buff *skb)
666 copy_to_user_state(x, p);
668 if (x->coaddr)
669 NLA_PUT(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
671 if (x->lastused)
672 NLA_PUT_U64(skb, XFRMA_LASTUSED, x->lastused);
674 if (x->aead)
675 NLA_PUT(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
676 if (x->aalg) {
677 if (copy_to_user_auth(x->aalg, skb))
678 goto nla_put_failure;
680 NLA_PUT(skb, XFRMA_ALG_AUTH_TRUNC,
681 xfrm_alg_auth_len(x->aalg), x->aalg);
683 if (x->ealg)
684 NLA_PUT(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
685 if (x->calg)
686 NLA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
688 if (x->encap)
689 NLA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
691 if (xfrm_mark_put(skb, &x->mark))
692 goto nla_put_failure;
694 if (x->security && copy_sec_ctx(x->security, skb) < 0)
695 goto nla_put_failure;
697 return 0;
699 nla_put_failure:
700 return -EMSGSIZE;
703 static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
705 struct xfrm_dump_info *sp = ptr;
706 struct sk_buff *in_skb = sp->in_skb;
707 struct sk_buff *skb = sp->out_skb;
708 struct xfrm_usersa_info *p;
709 struct nlmsghdr *nlh;
710 int err;
712 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
713 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
714 if (nlh == NULL)
715 return -EMSGSIZE;
717 p = nlmsg_data(nlh);
719 err = copy_to_user_state_extra(x, p, skb);
720 if (err)
721 goto nla_put_failure;
723 nlmsg_end(skb, nlh);
724 return 0;
726 nla_put_failure:
727 nlmsg_cancel(skb, nlh);
728 return err;
731 static int xfrm_dump_sa_done(struct netlink_callback *cb)
733 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
734 xfrm_state_walk_done(walk);
735 return 0;
738 static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
740 struct net *net = sock_net(skb->sk);
741 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
742 struct xfrm_dump_info info;
744 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
745 sizeof(cb->args) - sizeof(cb->args[0]));
747 info.in_skb = cb->skb;
748 info.out_skb = skb;
749 info.nlmsg_seq = cb->nlh->nlmsg_seq;
750 info.nlmsg_flags = NLM_F_MULTI;
752 if (!cb->args[0]) {
753 cb->args[0] = 1;
754 xfrm_state_walk_init(walk, 0);
757 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
759 return skb->len;
762 static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
763 struct xfrm_state *x, u32 seq)
765 struct xfrm_dump_info info;
766 struct sk_buff *skb;
768 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
769 if (!skb)
770 return ERR_PTR(-ENOMEM);
772 info.in_skb = in_skb;
773 info.out_skb = skb;
774 info.nlmsg_seq = seq;
775 info.nlmsg_flags = 0;
777 if (dump_one_state(x, 0, &info)) {
778 kfree_skb(skb);
779 return NULL;
782 return skb;
785 static inline size_t xfrm_spdinfo_msgsize(void)
787 return NLMSG_ALIGN(4)
788 + nla_total_size(sizeof(struct xfrmu_spdinfo))
789 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
792 static int build_spdinfo(struct sk_buff *skb, struct net *net,
793 u32 pid, u32 seq, u32 flags)
795 struct xfrmk_spdinfo si;
796 struct xfrmu_spdinfo spc;
797 struct xfrmu_spdhinfo sph;
798 struct nlmsghdr *nlh;
799 u32 *f;
801 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
802 if (nlh == NULL) /* shouldnt really happen ... */
803 return -EMSGSIZE;
805 f = nlmsg_data(nlh);
806 *f = flags;
807 xfrm_spd_getinfo(net, &si);
808 spc.incnt = si.incnt;
809 spc.outcnt = si.outcnt;
810 spc.fwdcnt = si.fwdcnt;
811 spc.inscnt = si.inscnt;
812 spc.outscnt = si.outscnt;
813 spc.fwdscnt = si.fwdscnt;
814 sph.spdhcnt = si.spdhcnt;
815 sph.spdhmcnt = si.spdhmcnt;
817 NLA_PUT(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
818 NLA_PUT(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
820 return nlmsg_end(skb, nlh);
822 nla_put_failure:
823 nlmsg_cancel(skb, nlh);
824 return -EMSGSIZE;
827 static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
828 struct nlattr **attrs)
830 struct net *net = sock_net(skb->sk);
831 struct sk_buff *r_skb;
832 u32 *flags = nlmsg_data(nlh);
833 u32 spid = NETLINK_CB(skb).pid;
834 u32 seq = nlh->nlmsg_seq;
836 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
837 if (r_skb == NULL)
838 return -ENOMEM;
840 if (build_spdinfo(r_skb, net, spid, seq, *flags) < 0)
841 BUG();
843 return nlmsg_unicast(net->xfrm.nlsk, r_skb, spid);
846 static inline size_t xfrm_sadinfo_msgsize(void)
848 return NLMSG_ALIGN(4)
849 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
850 + nla_total_size(4); /* XFRMA_SAD_CNT */
853 static int build_sadinfo(struct sk_buff *skb, struct net *net,
854 u32 pid, u32 seq, u32 flags)
856 struct xfrmk_sadinfo si;
857 struct xfrmu_sadhinfo sh;
858 struct nlmsghdr *nlh;
859 u32 *f;
861 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
862 if (nlh == NULL) /* shouldnt really happen ... */
863 return -EMSGSIZE;
865 f = nlmsg_data(nlh);
866 *f = flags;
867 xfrm_sad_getinfo(net, &si);
869 sh.sadhmcnt = si.sadhmcnt;
870 sh.sadhcnt = si.sadhcnt;
872 NLA_PUT_U32(skb, XFRMA_SAD_CNT, si.sadcnt);
873 NLA_PUT(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
875 return nlmsg_end(skb, nlh);
877 nla_put_failure:
878 nlmsg_cancel(skb, nlh);
879 return -EMSGSIZE;
882 static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
883 struct nlattr **attrs)
885 struct net *net = sock_net(skb->sk);
886 struct sk_buff *r_skb;
887 u32 *flags = nlmsg_data(nlh);
888 u32 spid = NETLINK_CB(skb).pid;
889 u32 seq = nlh->nlmsg_seq;
891 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
892 if (r_skb == NULL)
893 return -ENOMEM;
895 if (build_sadinfo(r_skb, net, spid, seq, *flags) < 0)
896 BUG();
898 return nlmsg_unicast(net->xfrm.nlsk, r_skb, spid);
901 static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
902 struct nlattr **attrs)
904 struct net *net = sock_net(skb->sk);
905 struct xfrm_usersa_id *p = nlmsg_data(nlh);
906 struct xfrm_state *x;
907 struct sk_buff *resp_skb;
908 int err = -ESRCH;
910 x = xfrm_user_state_lookup(net, p, attrs, &err);
911 if (x == NULL)
912 goto out_noput;
914 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
915 if (IS_ERR(resp_skb)) {
916 err = PTR_ERR(resp_skb);
917 } else {
918 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).pid);
920 xfrm_state_put(x);
921 out_noput:
922 return err;
925 static int verify_userspi_info(struct xfrm_userspi_info *p)
927 switch (p->info.id.proto) {
928 case IPPROTO_AH:
929 case IPPROTO_ESP:
930 break;
932 case IPPROTO_COMP:
933 /* IPCOMP spi is 16-bits. */
934 if (p->max >= 0x10000)
935 return -EINVAL;
936 break;
938 default:
939 return -EINVAL;
942 if (p->min > p->max)
943 return -EINVAL;
945 return 0;
948 static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
949 struct nlattr **attrs)
951 struct net *net = sock_net(skb->sk);
952 struct xfrm_state *x;
953 struct xfrm_userspi_info *p;
954 struct sk_buff *resp_skb;
955 xfrm_address_t *daddr;
956 int family;
957 int err;
958 u32 mark;
959 struct xfrm_mark m;
961 p = nlmsg_data(nlh);
962 err = verify_userspi_info(p);
963 if (err)
964 goto out_noput;
966 family = p->info.family;
967 daddr = &p->info.id.daddr;
969 x = NULL;
971 mark = xfrm_mark_get(attrs, &m);
972 if (p->info.seq) {
973 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
974 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
975 xfrm_state_put(x);
976 x = NULL;
980 if (!x)
981 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
982 p->info.id.proto, daddr,
983 &p->info.saddr, 1,
984 family);
985 err = -ENOENT;
986 if (x == NULL)
987 goto out_noput;
989 err = xfrm_alloc_spi(x, p->min, p->max);
990 if (err)
991 goto out;
993 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
994 if (IS_ERR(resp_skb)) {
995 err = PTR_ERR(resp_skb);
996 goto out;
999 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).pid);
1001 out:
1002 xfrm_state_put(x);
1003 out_noput:
1004 return err;
1007 static int verify_policy_dir(u8 dir)
1009 switch (dir) {
1010 case XFRM_POLICY_IN:
1011 case XFRM_POLICY_OUT:
1012 case XFRM_POLICY_FWD:
1013 break;
1015 default:
1016 return -EINVAL;
1019 return 0;
1022 static int verify_policy_type(u8 type)
1024 switch (type) {
1025 case XFRM_POLICY_TYPE_MAIN:
1026 #ifdef CONFIG_XFRM_SUB_POLICY
1027 case XFRM_POLICY_TYPE_SUB:
1028 #endif
1029 break;
1031 default:
1032 return -EINVAL;
1035 return 0;
1038 static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1040 switch (p->share) {
1041 case XFRM_SHARE_ANY:
1042 case XFRM_SHARE_SESSION:
1043 case XFRM_SHARE_USER:
1044 case XFRM_SHARE_UNIQUE:
1045 break;
1047 default:
1048 return -EINVAL;
1051 switch (p->action) {
1052 case XFRM_POLICY_ALLOW:
1053 case XFRM_POLICY_BLOCK:
1054 break;
1056 default:
1057 return -EINVAL;
1060 switch (p->sel.family) {
1061 case AF_INET:
1062 break;
1064 case AF_INET6:
1065 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1066 break;
1067 #else
1068 return -EAFNOSUPPORT;
1069 #endif
1071 default:
1072 return -EINVAL;
1075 return verify_policy_dir(p->dir);
1078 static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
1080 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
1081 struct xfrm_user_sec_ctx *uctx;
1083 if (!rt)
1084 return 0;
1086 uctx = nla_data(rt);
1087 return security_xfrm_policy_alloc(&pol->security, uctx);
1090 static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1091 int nr)
1093 int i;
1095 xp->xfrm_nr = nr;
1096 for (i = 0; i < nr; i++, ut++) {
1097 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1099 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1100 memcpy(&t->saddr, &ut->saddr,
1101 sizeof(xfrm_address_t));
1102 t->reqid = ut->reqid;
1103 t->mode = ut->mode;
1104 t->share = ut->share;
1105 t->optional = ut->optional;
1106 t->aalgos = ut->aalgos;
1107 t->ealgos = ut->ealgos;
1108 t->calgos = ut->calgos;
1109 /* If all masks are ~0, then we allow all algorithms. */
1110 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
1111 t->encap_family = ut->family;
1115 static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1117 int i;
1119 if (nr > XFRM_MAX_DEPTH)
1120 return -EINVAL;
1122 for (i = 0; i < nr; i++) {
1123 /* We never validated the ut->family value, so many
1124 * applications simply leave it at zero. The check was
1125 * never made and ut->family was ignored because all
1126 * templates could be assumed to have the same family as
1127 * the policy itself. Now that we will have ipv4-in-ipv6
1128 * and ipv6-in-ipv4 tunnels, this is no longer true.
1130 if (!ut[i].family)
1131 ut[i].family = family;
1133 switch (ut[i].family) {
1134 case AF_INET:
1135 break;
1136 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1137 case AF_INET6:
1138 break;
1139 #endif
1140 default:
1141 return -EINVAL;
1145 return 0;
1148 static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
1150 struct nlattr *rt = attrs[XFRMA_TMPL];
1152 if (!rt) {
1153 pol->xfrm_nr = 0;
1154 } else {
1155 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1156 int nr = nla_len(rt) / sizeof(*utmpl);
1157 int err;
1159 err = validate_tmpl(nr, utmpl, pol->family);
1160 if (err)
1161 return err;
1163 copy_templates(pol, utmpl, nr);
1165 return 0;
1168 static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
1170 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
1171 struct xfrm_userpolicy_type *upt;
1172 u8 type = XFRM_POLICY_TYPE_MAIN;
1173 int err;
1175 if (rt) {
1176 upt = nla_data(rt);
1177 type = upt->type;
1180 err = verify_policy_type(type);
1181 if (err)
1182 return err;
1184 *tp = type;
1185 return 0;
1188 static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1190 xp->priority = p->priority;
1191 xp->index = p->index;
1192 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1193 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1194 xp->action = p->action;
1195 xp->flags = p->flags;
1196 xp->family = p->sel.family;
1197 /* XXX xp->share = p->share; */
1200 static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1202 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1203 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1204 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1205 p->priority = xp->priority;
1206 p->index = xp->index;
1207 p->sel.family = xp->family;
1208 p->dir = dir;
1209 p->action = xp->action;
1210 p->flags = xp->flags;
1211 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1214 static struct xfrm_policy *xfrm_policy_construct(struct net *net, struct xfrm_userpolicy_info *p, struct nlattr **attrs, int *errp)
1216 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
1217 int err;
1219 if (!xp) {
1220 *errp = -ENOMEM;
1221 return NULL;
1224 copy_from_user_policy(xp, p);
1226 err = copy_from_user_policy_type(&xp->type, attrs);
1227 if (err)
1228 goto error;
1230 if (!(err = copy_from_user_tmpl(xp, attrs)))
1231 err = copy_from_user_sec_ctx(xp, attrs);
1232 if (err)
1233 goto error;
1235 xfrm_mark_get(attrs, &xp->mark);
1237 return xp;
1238 error:
1239 *errp = err;
1240 xp->walk.dead = 1;
1241 xfrm_policy_destroy(xp);
1242 return NULL;
1245 static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1246 struct nlattr **attrs)
1248 struct net *net = sock_net(skb->sk);
1249 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
1250 struct xfrm_policy *xp;
1251 struct km_event c;
1252 int err;
1253 int excl;
1254 uid_t loginuid = NETLINK_CB(skb).loginuid;
1255 u32 sessionid = NETLINK_CB(skb).sessionid;
1256 u32 sid = NETLINK_CB(skb).sid;
1258 err = verify_newpolicy_info(p);
1259 if (err)
1260 return err;
1261 err = verify_sec_ctx_len(attrs);
1262 if (err)
1263 return err;
1265 xp = xfrm_policy_construct(net, p, attrs, &err);
1266 if (!xp)
1267 return err;
1269 /* shouldnt excl be based on nlh flags??
1270 * Aha! this is anti-netlink really i.e more pfkey derived
1271 * in netlink excl is a flag and you wouldnt need
1272 * a type XFRM_MSG_UPDPOLICY - JHS */
1273 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1274 err = xfrm_policy_insert(p->dir, xp, excl);
1275 xfrm_audit_policy_add(xp, err ? 0 : 1, loginuid, sessionid, sid);
1277 if (err) {
1278 security_xfrm_policy_free(xp->security);
1279 kfree(xp);
1280 return err;
1283 c.event = nlh->nlmsg_type;
1284 c.seq = nlh->nlmsg_seq;
1285 c.pid = nlh->nlmsg_pid;
1286 km_policy_notify(xp, p->dir, &c);
1288 xfrm_pol_put(xp);
1290 return 0;
1293 static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1295 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1296 int i;
1298 if (xp->xfrm_nr == 0)
1299 return 0;
1301 for (i = 0; i < xp->xfrm_nr; i++) {
1302 struct xfrm_user_tmpl *up = &vec[i];
1303 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1305 memcpy(&up->id, &kp->id, sizeof(up->id));
1306 up->family = kp->encap_family;
1307 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1308 up->reqid = kp->reqid;
1309 up->mode = kp->mode;
1310 up->share = kp->share;
1311 up->optional = kp->optional;
1312 up->aalgos = kp->aalgos;
1313 up->ealgos = kp->ealgos;
1314 up->calgos = kp->calgos;
1317 return nla_put(skb, XFRMA_TMPL,
1318 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
1321 static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1323 if (x->security) {
1324 return copy_sec_ctx(x->security, skb);
1326 return 0;
1329 static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1331 if (xp->security) {
1332 return copy_sec_ctx(xp->security, skb);
1334 return 0;
1336 static inline size_t userpolicy_type_attrsize(void)
1338 #ifdef CONFIG_XFRM_SUB_POLICY
1339 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1340 #else
1341 return 0;
1342 #endif
1345 #ifdef CONFIG_XFRM_SUB_POLICY
1346 static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
1348 struct xfrm_userpolicy_type upt = {
1349 .type = type,
1352 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
1355 #else
1356 static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
1358 return 0;
1360 #endif
1362 static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1364 struct xfrm_dump_info *sp = ptr;
1365 struct xfrm_userpolicy_info *p;
1366 struct sk_buff *in_skb = sp->in_skb;
1367 struct sk_buff *skb = sp->out_skb;
1368 struct nlmsghdr *nlh;
1370 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
1371 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1372 if (nlh == NULL)
1373 return -EMSGSIZE;
1375 p = nlmsg_data(nlh);
1376 copy_to_user_policy(xp, p, dir);
1377 if (copy_to_user_tmpl(xp, skb) < 0)
1378 goto nlmsg_failure;
1379 if (copy_to_user_sec_ctx(xp, skb))
1380 goto nlmsg_failure;
1381 if (copy_to_user_policy_type(xp->type, skb) < 0)
1382 goto nlmsg_failure;
1383 if (xfrm_mark_put(skb, &xp->mark))
1384 goto nla_put_failure;
1386 nlmsg_end(skb, nlh);
1387 return 0;
1389 nla_put_failure:
1390 nlmsg_failure:
1391 nlmsg_cancel(skb, nlh);
1392 return -EMSGSIZE;
1395 static int xfrm_dump_policy_done(struct netlink_callback *cb)
1397 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
1399 xfrm_policy_walk_done(walk);
1400 return 0;
1403 static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1405 struct net *net = sock_net(skb->sk);
1406 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
1407 struct xfrm_dump_info info;
1409 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1410 sizeof(cb->args) - sizeof(cb->args[0]));
1412 info.in_skb = cb->skb;
1413 info.out_skb = skb;
1414 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1415 info.nlmsg_flags = NLM_F_MULTI;
1417 if (!cb->args[0]) {
1418 cb->args[0] = 1;
1419 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1422 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
1424 return skb->len;
1427 static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1428 struct xfrm_policy *xp,
1429 int dir, u32 seq)
1431 struct xfrm_dump_info info;
1432 struct sk_buff *skb;
1434 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1435 if (!skb)
1436 return ERR_PTR(-ENOMEM);
1438 info.in_skb = in_skb;
1439 info.out_skb = skb;
1440 info.nlmsg_seq = seq;
1441 info.nlmsg_flags = 0;
1443 if (dump_one_policy(xp, dir, 0, &info) < 0) {
1444 kfree_skb(skb);
1445 return NULL;
1448 return skb;
1451 static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1452 struct nlattr **attrs)
1454 struct net *net = sock_net(skb->sk);
1455 struct xfrm_policy *xp;
1456 struct xfrm_userpolicy_id *p;
1457 u8 type = XFRM_POLICY_TYPE_MAIN;
1458 int err;
1459 struct km_event c;
1460 int delete;
1461 struct xfrm_mark m;
1462 u32 mark = xfrm_mark_get(attrs, &m);
1464 p = nlmsg_data(nlh);
1465 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1467 err = copy_from_user_policy_type(&type, attrs);
1468 if (err)
1469 return err;
1471 err = verify_policy_dir(p->dir);
1472 if (err)
1473 return err;
1475 if (p->index)
1476 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
1477 else {
1478 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
1479 struct xfrm_sec_ctx *ctx;
1481 err = verify_sec_ctx_len(attrs);
1482 if (err)
1483 return err;
1485 ctx = NULL;
1486 if (rt) {
1487 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
1489 err = security_xfrm_policy_alloc(&ctx, uctx);
1490 if (err)
1491 return err;
1493 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
1494 ctx, delete, &err);
1495 security_xfrm_policy_free(ctx);
1497 if (xp == NULL)
1498 return -ENOENT;
1500 if (!delete) {
1501 struct sk_buff *resp_skb;
1503 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1504 if (IS_ERR(resp_skb)) {
1505 err = PTR_ERR(resp_skb);
1506 } else {
1507 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
1508 NETLINK_CB(skb).pid);
1510 } else {
1511 uid_t loginuid = NETLINK_CB(skb).loginuid;
1512 u32 sessionid = NETLINK_CB(skb).sessionid;
1513 u32 sid = NETLINK_CB(skb).sid;
1515 xfrm_audit_policy_delete(xp, err ? 0 : 1, loginuid, sessionid,
1516 sid);
1518 if (err != 0)
1519 goto out;
1521 c.data.byid = p->index;
1522 c.event = nlh->nlmsg_type;
1523 c.seq = nlh->nlmsg_seq;
1524 c.pid = nlh->nlmsg_pid;
1525 km_policy_notify(xp, p->dir, &c);
1528 out:
1529 xfrm_pol_put(xp);
1530 return err;
1533 static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
1534 struct nlattr **attrs)
1536 struct net *net = sock_net(skb->sk);
1537 struct km_event c;
1538 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
1539 struct xfrm_audit audit_info;
1540 int err;
1542 audit_info.loginuid = NETLINK_CB(skb).loginuid;
1543 audit_info.sessionid = NETLINK_CB(skb).sessionid;
1544 audit_info.secid = NETLINK_CB(skb).sid;
1545 err = xfrm_state_flush(net, p->proto, &audit_info);
1546 if (err) {
1547 if (err == -ESRCH) /* empty table */
1548 return 0;
1549 return err;
1551 c.data.proto = p->proto;
1552 c.event = nlh->nlmsg_type;
1553 c.seq = nlh->nlmsg_seq;
1554 c.pid = nlh->nlmsg_pid;
1555 c.net = net;
1556 km_state_notify(NULL, &c);
1558 return 0;
1561 static inline size_t xfrm_aevent_msgsize(void)
1563 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
1564 + nla_total_size(sizeof(struct xfrm_replay_state))
1565 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
1566 + nla_total_size(sizeof(struct xfrm_mark))
1567 + nla_total_size(4) /* XFRM_AE_RTHR */
1568 + nla_total_size(4); /* XFRM_AE_ETHR */
1571 static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
1573 struct xfrm_aevent_id *id;
1574 struct nlmsghdr *nlh;
1576 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
1577 if (nlh == NULL)
1578 return -EMSGSIZE;
1580 id = nlmsg_data(nlh);
1581 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
1582 id->sa_id.spi = x->id.spi;
1583 id->sa_id.family = x->props.family;
1584 id->sa_id.proto = x->id.proto;
1585 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1586 id->reqid = x->props.reqid;
1587 id->flags = c->data.aevent;
1589 NLA_PUT(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), &x->replay);
1590 NLA_PUT(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1592 if (id->flags & XFRM_AE_RTHR)
1593 NLA_PUT_U32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1595 if (id->flags & XFRM_AE_ETHR)
1596 NLA_PUT_U32(skb, XFRMA_ETIMER_THRESH,
1597 x->replay_maxage * 10 / HZ);
1599 if (xfrm_mark_put(skb, &x->mark))
1600 goto nla_put_failure;
1602 return nlmsg_end(skb, nlh);
1604 nla_put_failure:
1605 nlmsg_cancel(skb, nlh);
1606 return -EMSGSIZE;
1609 static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
1610 struct nlattr **attrs)
1612 struct net *net = sock_net(skb->sk);
1613 struct xfrm_state *x;
1614 struct sk_buff *r_skb;
1615 int err;
1616 struct km_event c;
1617 u32 mark;
1618 struct xfrm_mark m;
1619 struct xfrm_aevent_id *p = nlmsg_data(nlh);
1620 struct xfrm_usersa_id *id = &p->sa_id;
1622 r_skb = nlmsg_new(xfrm_aevent_msgsize(), GFP_ATOMIC);
1623 if (r_skb == NULL)
1624 return -ENOMEM;
1626 mark = xfrm_mark_get(attrs, &m);
1628 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
1629 if (x == NULL) {
1630 kfree_skb(r_skb);
1631 return -ESRCH;
1635 * XXX: is this lock really needed - none of the other
1636 * gets lock (the concern is things getting updated
1637 * while we are still reading) - jhs
1639 spin_lock_bh(&x->lock);
1640 c.data.aevent = p->flags;
1641 c.seq = nlh->nlmsg_seq;
1642 c.pid = nlh->nlmsg_pid;
1644 if (build_aevent(r_skb, x, &c) < 0)
1645 BUG();
1646 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).pid);
1647 spin_unlock_bh(&x->lock);
1648 xfrm_state_put(x);
1649 return err;
1652 static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
1653 struct nlattr **attrs)
1655 struct net *net = sock_net(skb->sk);
1656 struct xfrm_state *x;
1657 struct km_event c;
1658 int err = - EINVAL;
1659 u32 mark = 0;
1660 struct xfrm_mark m;
1661 struct xfrm_aevent_id *p = nlmsg_data(nlh);
1662 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
1663 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
1665 if (!lt && !rp)
1666 return err;
1668 /* pedantic mode - thou shalt sayeth replaceth */
1669 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1670 return err;
1672 mark = xfrm_mark_get(attrs, &m);
1674 x = xfrm_state_lookup(net, mark, &p->sa_id.daddr, p->sa_id.spi, p->sa_id.proto, p->sa_id.family);
1675 if (x == NULL)
1676 return -ESRCH;
1678 if (x->km.state != XFRM_STATE_VALID)
1679 goto out;
1681 spin_lock_bh(&x->lock);
1682 xfrm_update_ae_params(x, attrs);
1683 spin_unlock_bh(&x->lock);
1685 c.event = nlh->nlmsg_type;
1686 c.seq = nlh->nlmsg_seq;
1687 c.pid = nlh->nlmsg_pid;
1688 c.data.aevent = XFRM_AE_CU;
1689 km_state_notify(x, &c);
1690 err = 0;
1691 out:
1692 xfrm_state_put(x);
1693 return err;
1696 static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1697 struct nlattr **attrs)
1699 struct net *net = sock_net(skb->sk);
1700 struct km_event c;
1701 u8 type = XFRM_POLICY_TYPE_MAIN;
1702 int err;
1703 struct xfrm_audit audit_info;
1705 err = copy_from_user_policy_type(&type, attrs);
1706 if (err)
1707 return err;
1709 audit_info.loginuid = NETLINK_CB(skb).loginuid;
1710 audit_info.sessionid = NETLINK_CB(skb).sessionid;
1711 audit_info.secid = NETLINK_CB(skb).sid;
1712 err = xfrm_policy_flush(net, type, &audit_info);
1713 if (err) {
1714 if (err == -ESRCH) /* empty table */
1715 return 0;
1716 return err;
1719 c.data.type = type;
1720 c.event = nlh->nlmsg_type;
1721 c.seq = nlh->nlmsg_seq;
1722 c.pid = nlh->nlmsg_pid;
1723 c.net = net;
1724 km_policy_notify(NULL, 0, &c);
1725 return 0;
1728 static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
1729 struct nlattr **attrs)
1731 struct net *net = sock_net(skb->sk);
1732 struct xfrm_policy *xp;
1733 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
1734 struct xfrm_userpolicy_info *p = &up->pol;
1735 u8 type = XFRM_POLICY_TYPE_MAIN;
1736 int err = -ENOENT;
1737 struct xfrm_mark m;
1738 u32 mark = xfrm_mark_get(attrs, &m);
1740 err = copy_from_user_policy_type(&type, attrs);
1741 if (err)
1742 return err;
1744 if (p->index)
1745 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
1746 else {
1747 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
1748 struct xfrm_sec_ctx *ctx;
1750 err = verify_sec_ctx_len(attrs);
1751 if (err)
1752 return err;
1754 ctx = NULL;
1755 if (rt) {
1756 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
1758 err = security_xfrm_policy_alloc(&ctx, uctx);
1759 if (err)
1760 return err;
1762 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
1763 &p->sel, ctx, 0, &err);
1764 security_xfrm_policy_free(ctx);
1766 if (xp == NULL)
1767 return -ENOENT;
1769 read_lock(&xp->lock);
1770 if (xp->walk.dead) {
1771 read_unlock(&xp->lock);
1772 goto out;
1775 read_unlock(&xp->lock);
1776 err = 0;
1777 if (up->hard) {
1778 uid_t loginuid = NETLINK_CB(skb).loginuid;
1779 uid_t sessionid = NETLINK_CB(skb).sessionid;
1780 u32 sid = NETLINK_CB(skb).sid;
1781 xfrm_policy_delete(xp, p->dir);
1782 xfrm_audit_policy_delete(xp, 1, loginuid, sessionid, sid);
1784 } else {
1785 // reset the timers here?
1786 printk("Dont know what to do with soft policy expire\n");
1788 km_policy_expired(xp, p->dir, up->hard, current->pid);
1790 out:
1791 xfrm_pol_put(xp);
1792 return err;
1795 static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
1796 struct nlattr **attrs)
1798 struct net *net = sock_net(skb->sk);
1799 struct xfrm_state *x;
1800 int err;
1801 struct xfrm_user_expire *ue = nlmsg_data(nlh);
1802 struct xfrm_usersa_info *p = &ue->state;
1803 struct xfrm_mark m;
1804 u32 mark = xfrm_mark_get(attrs, &m);;
1806 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
1808 err = -ENOENT;
1809 if (x == NULL)
1810 return err;
1812 spin_lock_bh(&x->lock);
1813 err = -EINVAL;
1814 if (x->km.state != XFRM_STATE_VALID)
1815 goto out;
1816 km_state_expired(x, ue->hard, current->pid);
1818 if (ue->hard) {
1819 uid_t loginuid = NETLINK_CB(skb).loginuid;
1820 uid_t sessionid = NETLINK_CB(skb).sessionid;
1821 u32 sid = NETLINK_CB(skb).sid;
1822 __xfrm_state_delete(x);
1823 xfrm_audit_state_delete(x, 1, loginuid, sessionid, sid);
1825 err = 0;
1826 out:
1827 spin_unlock_bh(&x->lock);
1828 xfrm_state_put(x);
1829 return err;
1832 static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
1833 struct nlattr **attrs)
1835 struct net *net = sock_net(skb->sk);
1836 struct xfrm_policy *xp;
1837 struct xfrm_user_tmpl *ut;
1838 int i;
1839 struct nlattr *rt = attrs[XFRMA_TMPL];
1840 struct xfrm_mark mark;
1842 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
1843 struct xfrm_state *x = xfrm_state_alloc(net);
1844 int err = -ENOMEM;
1846 if (!x)
1847 goto nomem;
1849 xfrm_mark_get(attrs, &mark);
1851 err = verify_newpolicy_info(&ua->policy);
1852 if (err)
1853 goto bad_policy;
1855 /* build an XP */
1856 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
1857 if (!xp)
1858 goto free_state;
1860 memcpy(&x->id, &ua->id, sizeof(ua->id));
1861 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
1862 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
1863 xp->mark.m = x->mark.m = mark.m;
1864 xp->mark.v = x->mark.v = mark.v;
1865 ut = nla_data(rt);
1866 /* extract the templates and for each call km_key */
1867 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
1868 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1869 memcpy(&x->id, &t->id, sizeof(x->id));
1870 x->props.mode = t->mode;
1871 x->props.reqid = t->reqid;
1872 x->props.family = ut->family;
1873 t->aalgos = ua->aalgos;
1874 t->ealgos = ua->ealgos;
1875 t->calgos = ua->calgos;
1876 err = km_query(x, t, xp);
1880 kfree(x);
1881 kfree(xp);
1883 return 0;
1885 bad_policy:
1886 printk("BAD policy passed\n");
1887 free_state:
1888 kfree(x);
1889 nomem:
1890 return err;
1893 #ifdef CONFIG_XFRM_MIGRATE
1894 static int copy_from_user_migrate(struct xfrm_migrate *ma,
1895 struct xfrm_kmaddress *k,
1896 struct nlattr **attrs, int *num)
1898 struct nlattr *rt = attrs[XFRMA_MIGRATE];
1899 struct xfrm_user_migrate *um;
1900 int i, num_migrate;
1902 if (k != NULL) {
1903 struct xfrm_user_kmaddress *uk;
1905 uk = nla_data(attrs[XFRMA_KMADDRESS]);
1906 memcpy(&k->local, &uk->local, sizeof(k->local));
1907 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
1908 k->family = uk->family;
1909 k->reserved = uk->reserved;
1912 um = nla_data(rt);
1913 num_migrate = nla_len(rt) / sizeof(*um);
1915 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
1916 return -EINVAL;
1918 for (i = 0; i < num_migrate; i++, um++, ma++) {
1919 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
1920 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
1921 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
1922 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
1924 ma->proto = um->proto;
1925 ma->mode = um->mode;
1926 ma->reqid = um->reqid;
1928 ma->old_family = um->old_family;
1929 ma->new_family = um->new_family;
1932 *num = i;
1933 return 0;
1936 static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
1937 struct nlattr **attrs)
1939 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
1940 struct xfrm_migrate m[XFRM_MAX_DEPTH];
1941 struct xfrm_kmaddress km, *kmp;
1942 u8 type;
1943 int err;
1944 int n = 0;
1946 if (attrs[XFRMA_MIGRATE] == NULL)
1947 return -EINVAL;
1949 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
1951 err = copy_from_user_policy_type(&type, attrs);
1952 if (err)
1953 return err;
1955 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
1956 if (err)
1957 return err;
1959 if (!n)
1960 return 0;
1962 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp);
1964 return 0;
1966 #else
1967 static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
1968 struct nlattr **attrs)
1970 return -ENOPROTOOPT;
1972 #endif
1974 #ifdef CONFIG_XFRM_MIGRATE
1975 static int copy_to_user_migrate(struct xfrm_migrate *m, struct sk_buff *skb)
1977 struct xfrm_user_migrate um;
1979 memset(&um, 0, sizeof(um));
1980 um.proto = m->proto;
1981 um.mode = m->mode;
1982 um.reqid = m->reqid;
1983 um.old_family = m->old_family;
1984 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
1985 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
1986 um.new_family = m->new_family;
1987 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
1988 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
1990 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
1993 static int copy_to_user_kmaddress(struct xfrm_kmaddress *k, struct sk_buff *skb)
1995 struct xfrm_user_kmaddress uk;
1997 memset(&uk, 0, sizeof(uk));
1998 uk.family = k->family;
1999 uk.reserved = k->reserved;
2000 memcpy(&uk.local, &k->local, sizeof(uk.local));
2001 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
2003 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2006 static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
2008 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
2009 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2010 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2011 + userpolicy_type_attrsize();
2014 static int build_migrate(struct sk_buff *skb, struct xfrm_migrate *m,
2015 int num_migrate, struct xfrm_kmaddress *k,
2016 struct xfrm_selector *sel, u8 dir, u8 type)
2018 struct xfrm_migrate *mp;
2019 struct xfrm_userpolicy_id *pol_id;
2020 struct nlmsghdr *nlh;
2021 int i;
2023 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2024 if (nlh == NULL)
2025 return -EMSGSIZE;
2027 pol_id = nlmsg_data(nlh);
2028 /* copy data from selector, dir, and type to the pol_id */
2029 memset(pol_id, 0, sizeof(*pol_id));
2030 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2031 pol_id->dir = dir;
2033 if (k != NULL && (copy_to_user_kmaddress(k, skb) < 0))
2034 goto nlmsg_failure;
2036 if (copy_to_user_policy_type(type, skb) < 0)
2037 goto nlmsg_failure;
2039 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
2040 if (copy_to_user_migrate(mp, skb) < 0)
2041 goto nlmsg_failure;
2044 return nlmsg_end(skb, nlh);
2045 nlmsg_failure:
2046 nlmsg_cancel(skb, nlh);
2047 return -EMSGSIZE;
2050 static int xfrm_send_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
2051 struct xfrm_migrate *m, int num_migrate,
2052 struct xfrm_kmaddress *k)
2054 struct net *net = &init_net;
2055 struct sk_buff *skb;
2057 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
2058 if (skb == NULL)
2059 return -ENOMEM;
2061 /* build migrate */
2062 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
2063 BUG();
2065 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
2067 #else
2068 static int xfrm_send_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
2069 struct xfrm_migrate *m, int num_migrate,
2070 struct xfrm_kmaddress *k)
2072 return -ENOPROTOOPT;
2074 #endif
2076 #define XMSGSIZE(type) sizeof(struct type)
2078 static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
2079 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
2080 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2081 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2082 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2083 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2084 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2085 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
2086 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
2087 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
2088 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2089 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
2090 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
2091 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
2092 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
2093 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2094 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2095 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
2096 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2097 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
2098 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
2101 #undef XMSGSIZE
2103 static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
2104 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2105 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2106 [XFRMA_LASTUSED] = { .type = NLA_U64},
2107 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
2108 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
2109 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2110 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2111 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2112 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2113 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2114 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2115 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2116 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2117 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2118 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2119 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2120 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2121 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2122 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
2123 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
2124 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
2127 static struct xfrm_link {
2128 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
2129 int (*dump)(struct sk_buff *, struct netlink_callback *);
2130 int (*done)(struct netlink_callback *);
2131 } xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2132 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2133 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2134 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
2135 .dump = xfrm_dump_sa,
2136 .done = xfrm_dump_sa_done },
2137 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2138 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2139 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
2140 .dump = xfrm_dump_policy,
2141 .done = xfrm_dump_policy_done },
2142 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
2143 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
2144 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
2145 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2146 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2147 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
2148 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2149 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
2150 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2151 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
2152 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
2153 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
2154 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
2157 static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
2159 struct net *net = sock_net(skb->sk);
2160 struct nlattr *attrs[XFRMA_MAX+1];
2161 struct xfrm_link *link;
2162 int type, err;
2164 type = nlh->nlmsg_type;
2165 if (type > XFRM_MSG_MAX)
2166 return -EINVAL;
2168 type -= XFRM_MSG_BASE;
2169 link = &xfrm_dispatch[type];
2171 /* All operations require privileges, even GET */
2172 if (security_netlink_recv(skb, CAP_NET_ADMIN))
2173 return -EPERM;
2175 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2176 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
2177 (nlh->nlmsg_flags & NLM_F_DUMP)) {
2178 if (link->dump == NULL)
2179 return -EINVAL;
2181 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, link->dump, link->done);
2184 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
2185 xfrma_policy);
2186 if (err < 0)
2187 return err;
2189 if (link->doit == NULL)
2190 return -EINVAL;
2192 return link->doit(skb, nlh, attrs);
2195 static void xfrm_netlink_rcv(struct sk_buff *skb)
2197 mutex_lock(&xfrm_cfg_mutex);
2198 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
2199 mutex_unlock(&xfrm_cfg_mutex);
2202 static inline size_t xfrm_expire_msgsize(void)
2204 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2205 + nla_total_size(sizeof(struct xfrm_mark));
2208 static int build_expire(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
2210 struct xfrm_user_expire *ue;
2211 struct nlmsghdr *nlh;
2213 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
2214 if (nlh == NULL)
2215 return -EMSGSIZE;
2217 ue = nlmsg_data(nlh);
2218 copy_to_user_state(x, &ue->state);
2219 ue->hard = (c->data.hard != 0) ? 1 : 0;
2221 if (xfrm_mark_put(skb, &x->mark))
2222 goto nla_put_failure;
2224 return nlmsg_end(skb, nlh);
2226 nla_put_failure:
2227 return -EMSGSIZE;
2230 static int xfrm_exp_state_notify(struct xfrm_state *x, struct km_event *c)
2232 struct net *net = xs_net(x);
2233 struct sk_buff *skb;
2235 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
2236 if (skb == NULL)
2237 return -ENOMEM;
2239 if (build_expire(skb, x, c) < 0) {
2240 kfree_skb(skb);
2241 return -EMSGSIZE;
2244 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
2247 static int xfrm_aevent_state_notify(struct xfrm_state *x, struct km_event *c)
2249 struct net *net = xs_net(x);
2250 struct sk_buff *skb;
2252 skb = nlmsg_new(xfrm_aevent_msgsize(), GFP_ATOMIC);
2253 if (skb == NULL)
2254 return -ENOMEM;
2256 if (build_aevent(skb, x, c) < 0)
2257 BUG();
2259 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
2262 static int xfrm_notify_sa_flush(struct km_event *c)
2264 struct net *net = c->net;
2265 struct xfrm_usersa_flush *p;
2266 struct nlmsghdr *nlh;
2267 struct sk_buff *skb;
2268 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
2270 skb = nlmsg_new(len, GFP_ATOMIC);
2271 if (skb == NULL)
2272 return -ENOMEM;
2274 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
2275 if (nlh == NULL) {
2276 kfree_skb(skb);
2277 return -EMSGSIZE;
2280 p = nlmsg_data(nlh);
2281 p->proto = c->data.proto;
2283 nlmsg_end(skb, nlh);
2285 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
2288 static inline size_t xfrm_sa_len(struct xfrm_state *x)
2290 size_t l = 0;
2291 if (x->aead)
2292 l += nla_total_size(aead_len(x->aead));
2293 if (x->aalg) {
2294 l += nla_total_size(sizeof(struct xfrm_algo) +
2295 (x->aalg->alg_key_len + 7) / 8);
2296 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2298 if (x->ealg)
2299 l += nla_total_size(xfrm_alg_len(x->ealg));
2300 if (x->calg)
2301 l += nla_total_size(sizeof(*x->calg));
2302 if (x->encap)
2303 l += nla_total_size(sizeof(*x->encap));
2304 if (x->security)
2305 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2306 x->security->ctx_len);
2307 if (x->coaddr)
2308 l += nla_total_size(sizeof(*x->coaddr));
2310 /* Must count x->lastused as it may become non-zero behind our back. */
2311 l += nla_total_size(sizeof(u64));
2313 return l;
2316 static int xfrm_notify_sa(struct xfrm_state *x, struct km_event *c)
2318 struct net *net = xs_net(x);
2319 struct xfrm_usersa_info *p;
2320 struct xfrm_usersa_id *id;
2321 struct nlmsghdr *nlh;
2322 struct sk_buff *skb;
2323 int len = xfrm_sa_len(x);
2324 int headlen;
2326 headlen = sizeof(*p);
2327 if (c->event == XFRM_MSG_DELSA) {
2328 len += nla_total_size(headlen);
2329 headlen = sizeof(*id);
2330 len += nla_total_size(sizeof(struct xfrm_mark));
2332 len += NLMSG_ALIGN(headlen);
2334 skb = nlmsg_new(len, GFP_ATOMIC);
2335 if (skb == NULL)
2336 return -ENOMEM;
2338 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2339 if (nlh == NULL)
2340 goto nla_put_failure;
2342 p = nlmsg_data(nlh);
2343 if (c->event == XFRM_MSG_DELSA) {
2344 struct nlattr *attr;
2346 id = nlmsg_data(nlh);
2347 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2348 id->spi = x->id.spi;
2349 id->family = x->props.family;
2350 id->proto = x->id.proto;
2352 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
2353 if (attr == NULL)
2354 goto nla_put_failure;
2356 p = nla_data(attr);
2359 if (copy_to_user_state_extra(x, p, skb))
2360 goto nla_put_failure;
2362 nlmsg_end(skb, nlh);
2364 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
2366 nla_put_failure:
2367 /* Somebody screwed up with xfrm_sa_len! */
2368 WARN_ON(1);
2369 kfree_skb(skb);
2370 return -1;
2373 static int xfrm_send_state_notify(struct xfrm_state *x, struct km_event *c)
2376 switch (c->event) {
2377 case XFRM_MSG_EXPIRE:
2378 return xfrm_exp_state_notify(x, c);
2379 case XFRM_MSG_NEWAE:
2380 return xfrm_aevent_state_notify(x, c);
2381 case XFRM_MSG_DELSA:
2382 case XFRM_MSG_UPDSA:
2383 case XFRM_MSG_NEWSA:
2384 return xfrm_notify_sa(x, c);
2385 case XFRM_MSG_FLUSHSA:
2386 return xfrm_notify_sa_flush(c);
2387 default:
2388 printk("xfrm_user: Unknown SA event %d\n", c->event);
2389 break;
2392 return 0;
2396 static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2397 struct xfrm_policy *xp)
2399 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2400 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2401 + nla_total_size(sizeof(struct xfrm_mark))
2402 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2403 + userpolicy_type_attrsize();
2406 static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
2407 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
2408 int dir)
2410 struct xfrm_user_acquire *ua;
2411 struct nlmsghdr *nlh;
2412 __u32 seq = xfrm_get_acqseq();
2414 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2415 if (nlh == NULL)
2416 return -EMSGSIZE;
2418 ua = nlmsg_data(nlh);
2419 memcpy(&ua->id, &x->id, sizeof(ua->id));
2420 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2421 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
2422 copy_to_user_policy(xp, &ua->policy, dir);
2423 ua->aalgos = xt->aalgos;
2424 ua->ealgos = xt->ealgos;
2425 ua->calgos = xt->calgos;
2426 ua->seq = x->km.seq = seq;
2428 if (copy_to_user_tmpl(xp, skb) < 0)
2429 goto nlmsg_failure;
2430 if (copy_to_user_state_sec_ctx(x, skb))
2431 goto nlmsg_failure;
2432 if (copy_to_user_policy_type(xp->type, skb) < 0)
2433 goto nlmsg_failure;
2434 if (xfrm_mark_put(skb, &xp->mark))
2435 goto nla_put_failure;
2437 return nlmsg_end(skb, nlh);
2439 nla_put_failure:
2440 nlmsg_failure:
2441 nlmsg_cancel(skb, nlh);
2442 return -EMSGSIZE;
2445 static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
2446 struct xfrm_policy *xp, int dir)
2448 struct net *net = xs_net(x);
2449 struct sk_buff *skb;
2451 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
2452 if (skb == NULL)
2453 return -ENOMEM;
2455 if (build_acquire(skb, x, xt, xp, dir) < 0)
2456 BUG();
2458 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
2461 /* User gives us xfrm_user_policy_info followed by an array of 0
2462 * or more templates.
2464 static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
2465 u8 *data, int len, int *dir)
2467 struct net *net = sock_net(sk);
2468 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2469 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2470 struct xfrm_policy *xp;
2471 int nr;
2473 switch (sk->sk_family) {
2474 case AF_INET:
2475 if (opt != IP_XFRM_POLICY) {
2476 *dir = -EOPNOTSUPP;
2477 return NULL;
2479 break;
2480 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2481 case AF_INET6:
2482 if (opt != IPV6_XFRM_POLICY) {
2483 *dir = -EOPNOTSUPP;
2484 return NULL;
2486 break;
2487 #endif
2488 default:
2489 *dir = -EINVAL;
2490 return NULL;
2493 *dir = -EINVAL;
2495 if (len < sizeof(*p) ||
2496 verify_newpolicy_info(p))
2497 return NULL;
2499 nr = ((len - sizeof(*p)) / sizeof(*ut));
2500 if (validate_tmpl(nr, ut, p->sel.family))
2501 return NULL;
2503 if (p->dir > XFRM_POLICY_OUT)
2504 return NULL;
2506 xp = xfrm_policy_alloc(net, GFP_KERNEL);
2507 if (xp == NULL) {
2508 *dir = -ENOBUFS;
2509 return NULL;
2512 copy_from_user_policy(xp, p);
2513 xp->type = XFRM_POLICY_TYPE_MAIN;
2514 copy_templates(xp, ut, nr);
2516 *dir = p->dir;
2518 return xp;
2521 static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2523 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2524 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2525 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
2526 + nla_total_size(sizeof(struct xfrm_mark))
2527 + userpolicy_type_attrsize();
2530 static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
2531 int dir, struct km_event *c)
2533 struct xfrm_user_polexpire *upe;
2534 struct nlmsghdr *nlh;
2535 int hard = c->data.hard;
2537 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
2538 if (nlh == NULL)
2539 return -EMSGSIZE;
2541 upe = nlmsg_data(nlh);
2542 copy_to_user_policy(xp, &upe->pol, dir);
2543 if (copy_to_user_tmpl(xp, skb) < 0)
2544 goto nlmsg_failure;
2545 if (copy_to_user_sec_ctx(xp, skb))
2546 goto nlmsg_failure;
2547 if (copy_to_user_policy_type(xp->type, skb) < 0)
2548 goto nlmsg_failure;
2549 if (xfrm_mark_put(skb, &xp->mark))
2550 goto nla_put_failure;
2551 upe->hard = !!hard;
2553 return nlmsg_end(skb, nlh);
2555 nla_put_failure:
2556 nlmsg_failure:
2557 nlmsg_cancel(skb, nlh);
2558 return -EMSGSIZE;
2561 static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
2563 struct net *net = xp_net(xp);
2564 struct sk_buff *skb;
2566 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
2567 if (skb == NULL)
2568 return -ENOMEM;
2570 if (build_polexpire(skb, xp, dir, c) < 0)
2571 BUG();
2573 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
2576 static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, struct km_event *c)
2578 struct net *net = xp_net(xp);
2579 struct xfrm_userpolicy_info *p;
2580 struct xfrm_userpolicy_id *id;
2581 struct nlmsghdr *nlh;
2582 struct sk_buff *skb;
2583 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
2584 int headlen;
2586 headlen = sizeof(*p);
2587 if (c->event == XFRM_MSG_DELPOLICY) {
2588 len += nla_total_size(headlen);
2589 headlen = sizeof(*id);
2591 len += userpolicy_type_attrsize();
2592 len += nla_total_size(sizeof(struct xfrm_mark));
2593 len += NLMSG_ALIGN(headlen);
2595 skb = nlmsg_new(len, GFP_ATOMIC);
2596 if (skb == NULL)
2597 return -ENOMEM;
2599 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2600 if (nlh == NULL)
2601 goto nlmsg_failure;
2603 p = nlmsg_data(nlh);
2604 if (c->event == XFRM_MSG_DELPOLICY) {
2605 struct nlattr *attr;
2607 id = nlmsg_data(nlh);
2608 memset(id, 0, sizeof(*id));
2609 id->dir = dir;
2610 if (c->data.byid)
2611 id->index = xp->index;
2612 else
2613 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2615 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
2616 if (attr == NULL)
2617 goto nlmsg_failure;
2619 p = nla_data(attr);
2622 copy_to_user_policy(xp, p, dir);
2623 if (copy_to_user_tmpl(xp, skb) < 0)
2624 goto nlmsg_failure;
2625 if (copy_to_user_policy_type(xp->type, skb) < 0)
2626 goto nlmsg_failure;
2628 if (xfrm_mark_put(skb, &xp->mark))
2629 goto nla_put_failure;
2631 nlmsg_end(skb, nlh);
2633 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
2635 nla_put_failure:
2636 nlmsg_failure:
2637 kfree_skb(skb);
2638 return -1;
2641 static int xfrm_notify_policy_flush(struct km_event *c)
2643 struct net *net = c->net;
2644 struct nlmsghdr *nlh;
2645 struct sk_buff *skb;
2647 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
2648 if (skb == NULL)
2649 return -ENOMEM;
2651 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
2652 if (nlh == NULL)
2653 goto nlmsg_failure;
2654 if (copy_to_user_policy_type(c->data.type, skb) < 0)
2655 goto nlmsg_failure;
2657 nlmsg_end(skb, nlh);
2659 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
2661 nlmsg_failure:
2662 kfree_skb(skb);
2663 return -1;
2666 static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
2669 switch (c->event) {
2670 case XFRM_MSG_NEWPOLICY:
2671 case XFRM_MSG_UPDPOLICY:
2672 case XFRM_MSG_DELPOLICY:
2673 return xfrm_notify_policy(xp, dir, c);
2674 case XFRM_MSG_FLUSHPOLICY:
2675 return xfrm_notify_policy_flush(c);
2676 case XFRM_MSG_POLEXPIRE:
2677 return xfrm_exp_policy_notify(xp, dir, c);
2678 default:
2679 printk("xfrm_user: Unknown Policy event %d\n", c->event);
2682 return 0;
2686 static inline size_t xfrm_report_msgsize(void)
2688 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2691 static int build_report(struct sk_buff *skb, u8 proto,
2692 struct xfrm_selector *sel, xfrm_address_t *addr)
2694 struct xfrm_user_report *ur;
2695 struct nlmsghdr *nlh;
2697 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2698 if (nlh == NULL)
2699 return -EMSGSIZE;
2701 ur = nlmsg_data(nlh);
2702 ur->proto = proto;
2703 memcpy(&ur->sel, sel, sizeof(ur->sel));
2705 if (addr)
2706 NLA_PUT(skb, XFRMA_COADDR, sizeof(*addr), addr);
2708 return nlmsg_end(skb, nlh);
2710 nla_put_failure:
2711 nlmsg_cancel(skb, nlh);
2712 return -EMSGSIZE;
2715 static int xfrm_send_report(struct net *net, u8 proto,
2716 struct xfrm_selector *sel, xfrm_address_t *addr)
2718 struct sk_buff *skb;
2720 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
2721 if (skb == NULL)
2722 return -ENOMEM;
2724 if (build_report(skb, proto, sel, addr) < 0)
2725 BUG();
2727 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
2730 static inline size_t xfrm_mapping_msgsize(void)
2732 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
2735 static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
2736 xfrm_address_t *new_saddr, __be16 new_sport)
2738 struct xfrm_user_mapping *um;
2739 struct nlmsghdr *nlh;
2741 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
2742 if (nlh == NULL)
2743 return -EMSGSIZE;
2745 um = nlmsg_data(nlh);
2747 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
2748 um->id.spi = x->id.spi;
2749 um->id.family = x->props.family;
2750 um->id.proto = x->id.proto;
2751 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
2752 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
2753 um->new_sport = new_sport;
2754 um->old_sport = x->encap->encap_sport;
2755 um->reqid = x->props.reqid;
2757 return nlmsg_end(skb, nlh);
2760 static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
2761 __be16 sport)
2763 struct net *net = xs_net(x);
2764 struct sk_buff *skb;
2766 if (x->id.proto != IPPROTO_ESP)
2767 return -EINVAL;
2769 if (!x->encap)
2770 return -EINVAL;
2772 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
2773 if (skb == NULL)
2774 return -ENOMEM;
2776 if (build_mapping(skb, x, ipaddr, sport) < 0)
2777 BUG();
2779 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MAPPING, GFP_ATOMIC);
2782 static struct xfrm_mgr netlink_mgr = {
2783 .id = "netlink",
2784 .notify = xfrm_send_state_notify,
2785 .acquire = xfrm_send_acquire,
2786 .compile_policy = xfrm_compile_policy,
2787 .notify_policy = xfrm_send_policy_notify,
2788 .report = xfrm_send_report,
2789 .migrate = xfrm_send_migrate,
2790 .new_mapping = xfrm_send_mapping,
2793 static int __net_init xfrm_user_net_init(struct net *net)
2795 struct sock *nlsk;
2797 nlsk = netlink_kernel_create(net, NETLINK_XFRM, XFRMNLGRP_MAX,
2798 xfrm_netlink_rcv, NULL, THIS_MODULE);
2799 if (nlsk == NULL)
2800 return -ENOMEM;
2801 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
2802 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
2803 return 0;
2806 static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
2808 struct net *net;
2809 list_for_each_entry(net, net_exit_list, exit_list)
2810 rcu_assign_pointer(net->xfrm.nlsk, NULL);
2811 synchronize_net();
2812 list_for_each_entry(net, net_exit_list, exit_list)
2813 netlink_kernel_release(net->xfrm.nlsk_stash);
2816 static struct pernet_operations xfrm_user_net_ops = {
2817 .init = xfrm_user_net_init,
2818 .exit_batch = xfrm_user_net_exit,
2821 static int __init xfrm_user_init(void)
2823 int rv;
2825 printk(KERN_INFO "Initializing XFRM netlink socket\n");
2827 rv = register_pernet_subsys(&xfrm_user_net_ops);
2828 if (rv < 0)
2829 return rv;
2830 rv = xfrm_register_km(&netlink_mgr);
2831 if (rv < 0)
2832 unregister_pernet_subsys(&xfrm_user_net_ops);
2833 return rv;
2836 static void __exit xfrm_user_exit(void)
2838 xfrm_unregister_km(&netlink_mgr);
2839 unregister_pernet_subsys(&xfrm_user_net_ops);
2842 module_init(xfrm_user_init);
2843 module_exit(xfrm_user_exit);
2844 MODULE_LICENSE("GPL");
2845 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);