1 // SPDX-License-Identifier: GPL-2.0-only
7 * Kazunori MIYAZAWA @USAGI
10 * YOSHIFUJI Hideaki @USAGI
11 * Split up af-specific functions
13 * Add UDP Encapsulation
17 #include <linux/compat.h>
18 #include <linux/workqueue.h>
20 #include <linux/pfkeyv2.h>
21 #include <linux/ipsec.h>
22 #include <linux/module.h>
23 #include <linux/cache.h>
24 #include <linux/audit.h>
25 #include <linux/uaccess.h>
26 #include <linux/ktime.h>
27 #include <linux/slab.h>
28 #include <linux/interrupt.h>
29 #include <linux/kernel.h>
31 #include <crypto/aead.h>
33 #include "xfrm_hash.h"
35 #define xfrm_state_deref_prot(table, net) \
36 rcu_dereference_protected((table), lockdep_is_held(&(net)->xfrm.xfrm_state_lock))
38 static void xfrm_state_gc_task(struct work_struct *work);
40 /* Each xfrm_state may be linked to two tables:
42 1. Hash table by (spi,daddr,ah/esp) to find SA by SPI. (input,ctl)
43 2. Hash table by (daddr,family,reqid) to find what SAs exist for given
44 destination/tunnel endpoint. (output)
47 static unsigned int xfrm_state_hashmax __read_mostly = 1 * 1024 * 1024;
48 static struct kmem_cache *xfrm_state_cache __ro_after_init;
50 static DECLARE_WORK(xfrm_state_gc_work, xfrm_state_gc_task);
51 static HLIST_HEAD(xfrm_state_gc_list);
53 static inline bool xfrm_state_hold_rcu(struct xfrm_state __rcu *x)
55 return refcount_inc_not_zero(&x->refcnt);
58 static inline unsigned int xfrm_dst_hash(struct net *net,
59 const xfrm_address_t *daddr,
60 const xfrm_address_t *saddr,
62 unsigned short family)
64 return __xfrm_dst_hash(daddr, saddr, reqid, family, net->xfrm.state_hmask);
67 static inline unsigned int xfrm_src_hash(struct net *net,
68 const xfrm_address_t *daddr,
69 const xfrm_address_t *saddr,
70 unsigned short family)
72 return __xfrm_src_hash(daddr, saddr, family, net->xfrm.state_hmask);
75 static inline unsigned int
76 xfrm_spi_hash(struct net *net, const xfrm_address_t *daddr,
77 __be32 spi, u8 proto, unsigned short family)
79 return __xfrm_spi_hash(daddr, spi, proto, family, net->xfrm.state_hmask);
82 static unsigned int xfrm_seq_hash(struct net *net, u32 seq)
84 return __xfrm_seq_hash(seq, net->xfrm.state_hmask);
87 #define XFRM_STATE_INSERT(by, _n, _h, _type) \
89 struct xfrm_state *_x = NULL; \
91 if (_type != XFRM_DEV_OFFLOAD_PACKET) { \
92 hlist_for_each_entry_rcu(_x, _h, by) { \
93 if (_x->xso.type == XFRM_DEV_OFFLOAD_PACKET) \
99 if (!_x || _x->xso.type == XFRM_DEV_OFFLOAD_PACKET) \
100 /* SAD is empty or consist from HW SAs only */ \
101 hlist_add_head_rcu(_n, _h); \
103 hlist_add_before_rcu(_n, &_x->by); \
106 static void xfrm_hash_transfer(struct hlist_head *list,
107 struct hlist_head *ndsttable,
108 struct hlist_head *nsrctable,
109 struct hlist_head *nspitable,
110 struct hlist_head *nseqtable,
111 unsigned int nhashmask)
113 struct hlist_node *tmp;
114 struct xfrm_state *x;
116 hlist_for_each_entry_safe(x, tmp, list, bydst) {
119 h = __xfrm_dst_hash(&x->id.daddr, &x->props.saddr,
120 x->props.reqid, x->props.family,
122 XFRM_STATE_INSERT(bydst, &x->bydst, ndsttable + h, x->xso.type);
124 h = __xfrm_src_hash(&x->id.daddr, &x->props.saddr,
127 XFRM_STATE_INSERT(bysrc, &x->bysrc, nsrctable + h, x->xso.type);
130 h = __xfrm_spi_hash(&x->id.daddr, x->id.spi,
131 x->id.proto, x->props.family,
133 XFRM_STATE_INSERT(byspi, &x->byspi, nspitable + h,
138 h = __xfrm_seq_hash(x->km.seq, nhashmask);
139 XFRM_STATE_INSERT(byseq, &x->byseq, nseqtable + h,
145 static unsigned long xfrm_hash_new_size(unsigned int state_hmask)
147 return ((state_hmask + 1) << 1) * sizeof(struct hlist_head);
150 static void xfrm_hash_resize(struct work_struct *work)
152 struct net *net = container_of(work, struct net, xfrm.state_hash_work);
153 struct hlist_head *ndst, *nsrc, *nspi, *nseq, *odst, *osrc, *ospi, *oseq;
154 unsigned long nsize, osize;
155 unsigned int nhashmask, ohashmask;
158 nsize = xfrm_hash_new_size(net->xfrm.state_hmask);
159 ndst = xfrm_hash_alloc(nsize);
162 nsrc = xfrm_hash_alloc(nsize);
164 xfrm_hash_free(ndst, nsize);
167 nspi = xfrm_hash_alloc(nsize);
169 xfrm_hash_free(ndst, nsize);
170 xfrm_hash_free(nsrc, nsize);
173 nseq = xfrm_hash_alloc(nsize);
175 xfrm_hash_free(ndst, nsize);
176 xfrm_hash_free(nsrc, nsize);
177 xfrm_hash_free(nspi, nsize);
181 spin_lock_bh(&net->xfrm.xfrm_state_lock);
182 write_seqcount_begin(&net->xfrm.xfrm_state_hash_generation);
184 nhashmask = (nsize / sizeof(struct hlist_head)) - 1U;
185 odst = xfrm_state_deref_prot(net->xfrm.state_bydst, net);
186 for (i = net->xfrm.state_hmask; i >= 0; i--)
187 xfrm_hash_transfer(odst + i, ndst, nsrc, nspi, nseq, nhashmask);
189 osrc = xfrm_state_deref_prot(net->xfrm.state_bysrc, net);
190 ospi = xfrm_state_deref_prot(net->xfrm.state_byspi, net);
191 oseq = xfrm_state_deref_prot(net->xfrm.state_byseq, net);
192 ohashmask = net->xfrm.state_hmask;
194 rcu_assign_pointer(net->xfrm.state_bydst, ndst);
195 rcu_assign_pointer(net->xfrm.state_bysrc, nsrc);
196 rcu_assign_pointer(net->xfrm.state_byspi, nspi);
197 rcu_assign_pointer(net->xfrm.state_byseq, nseq);
198 net->xfrm.state_hmask = nhashmask;
200 write_seqcount_end(&net->xfrm.xfrm_state_hash_generation);
201 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
203 osize = (ohashmask + 1) * sizeof(struct hlist_head);
207 xfrm_hash_free(odst, osize);
208 xfrm_hash_free(osrc, osize);
209 xfrm_hash_free(ospi, osize);
210 xfrm_hash_free(oseq, osize);
213 static DEFINE_SPINLOCK(xfrm_state_afinfo_lock);
214 static struct xfrm_state_afinfo __rcu *xfrm_state_afinfo[NPROTO];
216 static DEFINE_SPINLOCK(xfrm_state_gc_lock);
218 int __xfrm_state_delete(struct xfrm_state *x);
220 int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol);
221 static bool km_is_alive(const struct km_event *c);
222 void km_state_expired(struct xfrm_state *x, int hard, u32 portid);
224 int xfrm_register_type(const struct xfrm_type *type, unsigned short family)
226 struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
230 return -EAFNOSUPPORT;
232 #define X(afi, T, name) do { \
233 WARN_ON((afi)->type_ ## name); \
234 (afi)->type_ ## name = (T); \
237 switch (type->proto) {
239 X(afinfo, type, comp);
245 X(afinfo, type, esp);
248 X(afinfo, type, ipip);
250 case IPPROTO_DSTOPTS:
251 X(afinfo, type, dstopts);
253 case IPPROTO_ROUTING:
254 X(afinfo, type, routing);
257 X(afinfo, type, ipip6);
261 err = -EPROTONOSUPPORT;
268 EXPORT_SYMBOL(xfrm_register_type);
270 void xfrm_unregister_type(const struct xfrm_type *type, unsigned short family)
272 struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
274 if (unlikely(afinfo == NULL))
277 #define X(afi, T, name) do { \
278 WARN_ON((afi)->type_ ## name != (T)); \
279 (afi)->type_ ## name = NULL; \
282 switch (type->proto) {
284 X(afinfo, type, comp);
290 X(afinfo, type, esp);
293 X(afinfo, type, ipip);
295 case IPPROTO_DSTOPTS:
296 X(afinfo, type, dstopts);
298 case IPPROTO_ROUTING:
299 X(afinfo, type, routing);
302 X(afinfo, type, ipip6);
311 EXPORT_SYMBOL(xfrm_unregister_type);
313 static const struct xfrm_type *xfrm_get_type(u8 proto, unsigned short family)
315 const struct xfrm_type *type = NULL;
316 struct xfrm_state_afinfo *afinfo;
317 int modload_attempted = 0;
320 afinfo = xfrm_state_get_afinfo(family);
321 if (unlikely(afinfo == NULL))
326 type = afinfo->type_comp;
329 type = afinfo->type_ah;
332 type = afinfo->type_esp;
335 type = afinfo->type_ipip;
337 case IPPROTO_DSTOPTS:
338 type = afinfo->type_dstopts;
340 case IPPROTO_ROUTING:
341 type = afinfo->type_routing;
344 type = afinfo->type_ipip6;
350 if (unlikely(type && !try_module_get(type->owner)))
355 if (!type && !modload_attempted) {
356 request_module("xfrm-type-%d-%d", family, proto);
357 modload_attempted = 1;
364 static void xfrm_put_type(const struct xfrm_type *type)
366 module_put(type->owner);
369 int xfrm_register_type_offload(const struct xfrm_type_offload *type,
370 unsigned short family)
372 struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
375 if (unlikely(afinfo == NULL))
376 return -EAFNOSUPPORT;
378 switch (type->proto) {
380 WARN_ON(afinfo->type_offload_esp);
381 afinfo->type_offload_esp = type;
385 err = -EPROTONOSUPPORT;
392 EXPORT_SYMBOL(xfrm_register_type_offload);
394 void xfrm_unregister_type_offload(const struct xfrm_type_offload *type,
395 unsigned short family)
397 struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
399 if (unlikely(afinfo == NULL))
402 switch (type->proto) {
404 WARN_ON(afinfo->type_offload_esp != type);
405 afinfo->type_offload_esp = NULL;
413 EXPORT_SYMBOL(xfrm_unregister_type_offload);
415 static const struct xfrm_type_offload *
416 xfrm_get_type_offload(u8 proto, unsigned short family, bool try_load)
418 const struct xfrm_type_offload *type = NULL;
419 struct xfrm_state_afinfo *afinfo;
422 afinfo = xfrm_state_get_afinfo(family);
423 if (unlikely(afinfo == NULL))
428 type = afinfo->type_offload_esp;
434 if ((type && !try_module_get(type->owner)))
439 if (!type && try_load) {
440 request_module("xfrm-offload-%d-%d", family, proto);
448 static void xfrm_put_type_offload(const struct xfrm_type_offload *type)
450 module_put(type->owner);
453 static const struct xfrm_mode xfrm4_mode_map[XFRM_MODE_MAX] = {
455 .encap = XFRM_MODE_BEET,
456 .flags = XFRM_MODE_FLAG_TUNNEL,
459 [XFRM_MODE_TRANSPORT] = {
460 .encap = XFRM_MODE_TRANSPORT,
463 [XFRM_MODE_TUNNEL] = {
464 .encap = XFRM_MODE_TUNNEL,
465 .flags = XFRM_MODE_FLAG_TUNNEL,
470 static const struct xfrm_mode xfrm6_mode_map[XFRM_MODE_MAX] = {
472 .encap = XFRM_MODE_BEET,
473 .flags = XFRM_MODE_FLAG_TUNNEL,
476 [XFRM_MODE_ROUTEOPTIMIZATION] = {
477 .encap = XFRM_MODE_ROUTEOPTIMIZATION,
480 [XFRM_MODE_TRANSPORT] = {
481 .encap = XFRM_MODE_TRANSPORT,
484 [XFRM_MODE_TUNNEL] = {
485 .encap = XFRM_MODE_TUNNEL,
486 .flags = XFRM_MODE_FLAG_TUNNEL,
491 static const struct xfrm_mode *xfrm_get_mode(unsigned int encap, int family)
493 const struct xfrm_mode *mode;
495 if (unlikely(encap >= XFRM_MODE_MAX))
500 mode = &xfrm4_mode_map[encap];
501 if (mode->family == family)
505 mode = &xfrm6_mode_map[encap];
506 if (mode->family == family)
516 void xfrm_state_free(struct xfrm_state *x)
518 kmem_cache_free(xfrm_state_cache, x);
520 EXPORT_SYMBOL(xfrm_state_free);
522 static void ___xfrm_state_destroy(struct xfrm_state *x)
524 hrtimer_cancel(&x->mtimer);
525 del_timer_sync(&x->rtimer);
532 kfree(x->replay_esn);
533 kfree(x->preplay_esn);
535 xfrm_put_type_offload(x->type_offload);
537 x->type->destructor(x);
538 xfrm_put_type(x->type);
541 put_page(x->xfrag.page);
542 xfrm_dev_state_free(x);
543 security_xfrm_state_free(x);
547 static void xfrm_state_gc_task(struct work_struct *work)
549 struct xfrm_state *x;
550 struct hlist_node *tmp;
551 struct hlist_head gc_list;
553 spin_lock_bh(&xfrm_state_gc_lock);
554 hlist_move_list(&xfrm_state_gc_list, &gc_list);
555 spin_unlock_bh(&xfrm_state_gc_lock);
559 hlist_for_each_entry_safe(x, tmp, &gc_list, gclist)
560 ___xfrm_state_destroy(x);
563 static enum hrtimer_restart xfrm_timer_handler(struct hrtimer *me)
565 struct xfrm_state *x = container_of(me, struct xfrm_state, mtimer);
566 enum hrtimer_restart ret = HRTIMER_NORESTART;
567 time64_t now = ktime_get_real_seconds();
568 time64_t next = TIME64_MAX;
573 xfrm_dev_state_update_stats(x);
575 if (x->km.state == XFRM_STATE_DEAD)
577 if (x->km.state == XFRM_STATE_EXPIRED)
579 if (x->lft.hard_add_expires_seconds) {
580 time64_t tmo = x->lft.hard_add_expires_seconds +
581 x->curlft.add_time - now;
583 if (x->xflags & XFRM_SOFT_EXPIRE) {
584 /* enter hard expire without soft expire first?!
585 * setting a new date could trigger this.
586 * workaround: fix x->curflt.add_time by below:
588 x->curlft.add_time = now - x->saved_tmo - 1;
589 tmo = x->lft.hard_add_expires_seconds - x->saved_tmo;
596 if (x->lft.hard_use_expires_seconds) {
597 time64_t tmo = x->lft.hard_use_expires_seconds +
598 (READ_ONCE(x->curlft.use_time) ? : now) - now;
606 if (x->lft.soft_add_expires_seconds) {
607 time64_t tmo = x->lft.soft_add_expires_seconds +
608 x->curlft.add_time - now;
611 x->xflags &= ~XFRM_SOFT_EXPIRE;
612 } else if (tmo < next) {
614 x->xflags |= XFRM_SOFT_EXPIRE;
618 if (x->lft.soft_use_expires_seconds) {
619 time64_t tmo = x->lft.soft_use_expires_seconds +
620 (READ_ONCE(x->curlft.use_time) ? : now) - now;
629 km_state_expired(x, 0, 0);
631 if (next != TIME64_MAX) {
632 hrtimer_forward_now(&x->mtimer, ktime_set(next, 0));
633 ret = HRTIMER_RESTART;
639 if (x->km.state == XFRM_STATE_ACQ && x->id.spi == 0)
640 x->km.state = XFRM_STATE_EXPIRED;
642 err = __xfrm_state_delete(x);
644 km_state_expired(x, 1, 0);
646 xfrm_audit_state_delete(x, err ? 0 : 1, true);
649 spin_unlock(&x->lock);
653 static void xfrm_replay_timer_handler(struct timer_list *t);
655 struct xfrm_state *xfrm_state_alloc(struct net *net)
657 struct xfrm_state *x;
659 x = kmem_cache_zalloc(xfrm_state_cache, GFP_ATOMIC);
662 write_pnet(&x->xs_net, net);
663 refcount_set(&x->refcnt, 1);
664 atomic_set(&x->tunnel_users, 0);
665 INIT_LIST_HEAD(&x->km.all);
666 INIT_HLIST_NODE(&x->bydst);
667 INIT_HLIST_NODE(&x->bysrc);
668 INIT_HLIST_NODE(&x->byspi);
669 INIT_HLIST_NODE(&x->byseq);
670 hrtimer_init(&x->mtimer, CLOCK_BOOTTIME, HRTIMER_MODE_ABS_SOFT);
671 x->mtimer.function = xfrm_timer_handler;
672 timer_setup(&x->rtimer, xfrm_replay_timer_handler, 0);
673 x->curlft.add_time = ktime_get_real_seconds();
674 x->lft.soft_byte_limit = XFRM_INF;
675 x->lft.soft_packet_limit = XFRM_INF;
676 x->lft.hard_byte_limit = XFRM_INF;
677 x->lft.hard_packet_limit = XFRM_INF;
678 x->replay_maxage = 0;
679 x->replay_maxdiff = 0;
680 spin_lock_init(&x->lock);
684 EXPORT_SYMBOL(xfrm_state_alloc);
686 void __xfrm_state_destroy(struct xfrm_state *x, bool sync)
688 WARN_ON(x->km.state != XFRM_STATE_DEAD);
692 ___xfrm_state_destroy(x);
694 spin_lock_bh(&xfrm_state_gc_lock);
695 hlist_add_head(&x->gclist, &xfrm_state_gc_list);
696 spin_unlock_bh(&xfrm_state_gc_lock);
697 schedule_work(&xfrm_state_gc_work);
700 EXPORT_SYMBOL(__xfrm_state_destroy);
702 int __xfrm_state_delete(struct xfrm_state *x)
704 struct net *net = xs_net(x);
707 if (x->km.state != XFRM_STATE_DEAD) {
708 x->km.state = XFRM_STATE_DEAD;
709 spin_lock(&net->xfrm.xfrm_state_lock);
710 list_del(&x->km.all);
711 hlist_del_rcu(&x->bydst);
712 hlist_del_rcu(&x->bysrc);
714 hlist_del_rcu(&x->byseq);
716 hlist_del_rcu(&x->byspi);
717 net->xfrm.state_num--;
718 spin_unlock(&net->xfrm.xfrm_state_lock);
721 sock_put(rcu_dereference_raw(x->encap_sk));
723 xfrm_dev_state_delete(x);
725 /* All xfrm_state objects are created by xfrm_state_alloc.
726 * The xfrm_state_alloc call gives a reference, and that
727 * is what we are dropping here.
735 EXPORT_SYMBOL(__xfrm_state_delete);
737 int xfrm_state_delete(struct xfrm_state *x)
741 spin_lock_bh(&x->lock);
742 err = __xfrm_state_delete(x);
743 spin_unlock_bh(&x->lock);
747 EXPORT_SYMBOL(xfrm_state_delete);
749 #ifdef CONFIG_SECURITY_NETWORK_XFRM
751 xfrm_state_flush_secctx_check(struct net *net, u8 proto, bool task_valid)
755 for (i = 0; i <= net->xfrm.state_hmask; i++) {
756 struct xfrm_state *x;
758 hlist_for_each_entry(x, net->xfrm.state_bydst+i, bydst) {
759 if (xfrm_id_proto_match(x->id.proto, proto) &&
760 (err = security_xfrm_state_delete(x)) != 0) {
761 xfrm_audit_state_delete(x, 0, task_valid);
771 xfrm_dev_state_flush_secctx_check(struct net *net, struct net_device *dev, bool task_valid)
775 for (i = 0; i <= net->xfrm.state_hmask; i++) {
776 struct xfrm_state *x;
777 struct xfrm_dev_offload *xso;
779 hlist_for_each_entry(x, net->xfrm.state_bydst+i, bydst) {
782 if (xso->dev == dev &&
783 (err = security_xfrm_state_delete(x)) != 0) {
784 xfrm_audit_state_delete(x, 0, task_valid);
794 xfrm_state_flush_secctx_check(struct net *net, u8 proto, bool task_valid)
800 xfrm_dev_state_flush_secctx_check(struct net *net, struct net_device *dev, bool task_valid)
806 int xfrm_state_flush(struct net *net, u8 proto, bool task_valid, bool sync)
808 int i, err = 0, cnt = 0;
810 spin_lock_bh(&net->xfrm.xfrm_state_lock);
811 err = xfrm_state_flush_secctx_check(net, proto, task_valid);
816 for (i = 0; i <= net->xfrm.state_hmask; i++) {
817 struct xfrm_state *x;
819 hlist_for_each_entry(x, net->xfrm.state_bydst+i, bydst) {
820 if (!xfrm_state_kern(x) &&
821 xfrm_id_proto_match(x->id.proto, proto)) {
823 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
825 err = xfrm_state_delete(x);
826 xfrm_audit_state_delete(x, err ? 0 : 1,
829 xfrm_state_put_sync(x);
835 spin_lock_bh(&net->xfrm.xfrm_state_lock);
841 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
847 EXPORT_SYMBOL(xfrm_state_flush);
849 int xfrm_dev_state_flush(struct net *net, struct net_device *dev, bool task_valid)
851 int i, err = 0, cnt = 0;
853 spin_lock_bh(&net->xfrm.xfrm_state_lock);
854 err = xfrm_dev_state_flush_secctx_check(net, dev, task_valid);
859 for (i = 0; i <= net->xfrm.state_hmask; i++) {
860 struct xfrm_state *x;
861 struct xfrm_dev_offload *xso;
863 hlist_for_each_entry(x, net->xfrm.state_bydst+i, bydst) {
866 if (!xfrm_state_kern(x) && xso->dev == dev) {
868 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
870 err = xfrm_state_delete(x);
871 xfrm_audit_state_delete(x, err ? 0 : 1,
877 spin_lock_bh(&net->xfrm.xfrm_state_lock);
886 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
889 EXPORT_SYMBOL(xfrm_dev_state_flush);
891 void xfrm_sad_getinfo(struct net *net, struct xfrmk_sadinfo *si)
893 spin_lock_bh(&net->xfrm.xfrm_state_lock);
894 si->sadcnt = net->xfrm.state_num;
895 si->sadhcnt = net->xfrm.state_hmask + 1;
896 si->sadhmcnt = xfrm_state_hashmax;
897 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
899 EXPORT_SYMBOL(xfrm_sad_getinfo);
902 __xfrm4_init_tempsel(struct xfrm_selector *sel, const struct flowi *fl)
904 const struct flowi4 *fl4 = &fl->u.ip4;
906 sel->daddr.a4 = fl4->daddr;
907 sel->saddr.a4 = fl4->saddr;
908 sel->dport = xfrm_flowi_dport(fl, &fl4->uli);
909 sel->dport_mask = htons(0xffff);
910 sel->sport = xfrm_flowi_sport(fl, &fl4->uli);
911 sel->sport_mask = htons(0xffff);
912 sel->family = AF_INET;
913 sel->prefixlen_d = 32;
914 sel->prefixlen_s = 32;
915 sel->proto = fl4->flowi4_proto;
916 sel->ifindex = fl4->flowi4_oif;
920 __xfrm6_init_tempsel(struct xfrm_selector *sel, const struct flowi *fl)
922 const struct flowi6 *fl6 = &fl->u.ip6;
924 /* Initialize temporary selector matching only to current session. */
925 *(struct in6_addr *)&sel->daddr = fl6->daddr;
926 *(struct in6_addr *)&sel->saddr = fl6->saddr;
927 sel->dport = xfrm_flowi_dport(fl, &fl6->uli);
928 sel->dport_mask = htons(0xffff);
929 sel->sport = xfrm_flowi_sport(fl, &fl6->uli);
930 sel->sport_mask = htons(0xffff);
931 sel->family = AF_INET6;
932 sel->prefixlen_d = 128;
933 sel->prefixlen_s = 128;
934 sel->proto = fl6->flowi6_proto;
935 sel->ifindex = fl6->flowi6_oif;
939 xfrm_init_tempstate(struct xfrm_state *x, const struct flowi *fl,
940 const struct xfrm_tmpl *tmpl,
941 const xfrm_address_t *daddr, const xfrm_address_t *saddr,
942 unsigned short family)
946 __xfrm4_init_tempsel(&x->sel, fl);
949 __xfrm6_init_tempsel(&x->sel, fl);
955 switch (tmpl->encap_family) {
957 if (x->id.daddr.a4 == 0)
958 x->id.daddr.a4 = daddr->a4;
959 x->props.saddr = tmpl->saddr;
960 if (x->props.saddr.a4 == 0)
961 x->props.saddr.a4 = saddr->a4;
964 if (ipv6_addr_any((struct in6_addr *)&x->id.daddr))
965 memcpy(&x->id.daddr, daddr, sizeof(x->sel.daddr));
966 memcpy(&x->props.saddr, &tmpl->saddr, sizeof(x->props.saddr));
967 if (ipv6_addr_any((struct in6_addr *)&x->props.saddr))
968 memcpy(&x->props.saddr, saddr, sizeof(x->props.saddr));
972 x->props.mode = tmpl->mode;
973 x->props.reqid = tmpl->reqid;
974 x->props.family = tmpl->encap_family;
977 static struct xfrm_state *__xfrm_state_lookup_all(struct net *net, u32 mark,
978 const xfrm_address_t *daddr,
979 __be32 spi, u8 proto,
980 unsigned short family,
981 struct xfrm_dev_offload *xdo)
983 unsigned int h = xfrm_spi_hash(net, daddr, spi, proto, family);
984 struct xfrm_state *x;
986 hlist_for_each_entry_rcu(x, net->xfrm.state_byspi + h, byspi) {
987 #ifdef CONFIG_XFRM_OFFLOAD
988 if (xdo->type == XFRM_DEV_OFFLOAD_PACKET) {
989 if (x->xso.type != XFRM_DEV_OFFLOAD_PACKET)
990 /* HW states are in the head of list, there is
991 * no need to iterate further.
995 /* Packet offload: both policy and SA should
998 if (xdo->dev != x->xso.dev)
1000 } else if (x->xso.type == XFRM_DEV_OFFLOAD_PACKET)
1001 /* Skip HW policy for SW lookups */
1004 if (x->props.family != family ||
1006 x->id.proto != proto ||
1007 !xfrm_addr_equal(&x->id.daddr, daddr, family))
1010 if ((mark & x->mark.m) != x->mark.v)
1012 if (!xfrm_state_hold_rcu(x))
1020 static struct xfrm_state *__xfrm_state_lookup(struct net *net, u32 mark,
1021 const xfrm_address_t *daddr,
1022 __be32 spi, u8 proto,
1023 unsigned short family)
1025 unsigned int h = xfrm_spi_hash(net, daddr, spi, proto, family);
1026 struct xfrm_state *x;
1028 hlist_for_each_entry_rcu(x, net->xfrm.state_byspi + h, byspi) {
1029 if (x->props.family != family ||
1031 x->id.proto != proto ||
1032 !xfrm_addr_equal(&x->id.daddr, daddr, family))
1035 if ((mark & x->mark.m) != x->mark.v)
1037 if (!xfrm_state_hold_rcu(x))
1045 static struct xfrm_state *__xfrm_state_lookup_byaddr(struct net *net, u32 mark,
1046 const xfrm_address_t *daddr,
1047 const xfrm_address_t *saddr,
1048 u8 proto, unsigned short family)
1050 unsigned int h = xfrm_src_hash(net, daddr, saddr, family);
1051 struct xfrm_state *x;
1053 hlist_for_each_entry_rcu(x, net->xfrm.state_bysrc + h, bysrc) {
1054 if (x->props.family != family ||
1055 x->id.proto != proto ||
1056 !xfrm_addr_equal(&x->id.daddr, daddr, family) ||
1057 !xfrm_addr_equal(&x->props.saddr, saddr, family))
1060 if ((mark & x->mark.m) != x->mark.v)
1062 if (!xfrm_state_hold_rcu(x))
1070 static inline struct xfrm_state *
1071 __xfrm_state_locate(struct xfrm_state *x, int use_spi, int family)
1073 struct net *net = xs_net(x);
1074 u32 mark = x->mark.v & x->mark.m;
1077 return __xfrm_state_lookup(net, mark, &x->id.daddr,
1078 x->id.spi, x->id.proto, family);
1080 return __xfrm_state_lookup_byaddr(net, mark,
1083 x->id.proto, family);
1086 static void xfrm_hash_grow_check(struct net *net, int have_hash_collision)
1088 if (have_hash_collision &&
1089 (net->xfrm.state_hmask + 1) < xfrm_state_hashmax &&
1090 net->xfrm.state_num > net->xfrm.state_hmask)
1091 schedule_work(&net->xfrm.state_hash_work);
1094 static void xfrm_state_look_at(struct xfrm_policy *pol, struct xfrm_state *x,
1095 const struct flowi *fl, unsigned short family,
1096 struct xfrm_state **best, int *acq_in_progress,
1099 /* Resolution logic:
1100 * 1. There is a valid state with matching selector. Done.
1101 * 2. Valid state with inappropriate selector. Skip.
1103 * Entering area of "sysdeps".
1105 * 3. If state is not valid, selector is temporary, it selects
1106 * only session which triggered previous resolution. Key
1107 * manager will do something to install a state with proper
1110 if (x->km.state == XFRM_STATE_VALID) {
1111 if ((x->sel.family &&
1112 (x->sel.family != family ||
1113 !xfrm_selector_match(&x->sel, fl, family))) ||
1114 !security_xfrm_state_pol_flow_match(x, pol,
1115 &fl->u.__fl_common))
1119 (*best)->km.dying > x->km.dying ||
1120 ((*best)->km.dying == x->km.dying &&
1121 (*best)->curlft.add_time < x->curlft.add_time))
1123 } else if (x->km.state == XFRM_STATE_ACQ) {
1124 *acq_in_progress = 1;
1125 } else if (x->km.state == XFRM_STATE_ERROR ||
1126 x->km.state == XFRM_STATE_EXPIRED) {
1127 if ((!x->sel.family ||
1128 (x->sel.family == family &&
1129 xfrm_selector_match(&x->sel, fl, family))) &&
1130 security_xfrm_state_pol_flow_match(x, pol,
1131 &fl->u.__fl_common))
1137 xfrm_state_find(const xfrm_address_t *daddr, const xfrm_address_t *saddr,
1138 const struct flowi *fl, struct xfrm_tmpl *tmpl,
1139 struct xfrm_policy *pol, int *err,
1140 unsigned short family, u32 if_id)
1142 static xfrm_address_t saddr_wildcard = { };
1143 struct net *net = xp_net(pol);
1144 unsigned int h, h_wildcard;
1145 struct xfrm_state *x, *x0, *to_put;
1146 int acquire_in_progress = 0;
1148 struct xfrm_state *best = NULL;
1149 u32 mark = pol->mark.v & pol->mark.m;
1150 unsigned short encap_family = tmpl->encap_family;
1151 unsigned int sequence;
1156 sequence = read_seqcount_begin(&net->xfrm.xfrm_state_hash_generation);
1159 h = xfrm_dst_hash(net, daddr, saddr, tmpl->reqid, encap_family);
1160 hlist_for_each_entry_rcu(x, net->xfrm.state_bydst + h, bydst) {
1161 #ifdef CONFIG_XFRM_OFFLOAD
1162 if (pol->xdo.type == XFRM_DEV_OFFLOAD_PACKET) {
1163 if (x->xso.type != XFRM_DEV_OFFLOAD_PACKET)
1164 /* HW states are in the head of list, there is
1165 * no need to iterate further.
1169 /* Packet offload: both policy and SA should
1172 if (pol->xdo.dev != x->xso.dev)
1174 } else if (x->xso.type == XFRM_DEV_OFFLOAD_PACKET)
1175 /* Skip HW policy for SW lookups */
1178 if (x->props.family == encap_family &&
1179 x->props.reqid == tmpl->reqid &&
1180 (mark & x->mark.m) == x->mark.v &&
1181 x->if_id == if_id &&
1182 !(x->props.flags & XFRM_STATE_WILDRECV) &&
1183 xfrm_state_addr_check(x, daddr, saddr, encap_family) &&
1184 tmpl->mode == x->props.mode &&
1185 tmpl->id.proto == x->id.proto &&
1186 (tmpl->id.spi == x->id.spi || !tmpl->id.spi))
1187 xfrm_state_look_at(pol, x, fl, family,
1188 &best, &acquire_in_progress, &error);
1190 if (best || acquire_in_progress)
1193 h_wildcard = xfrm_dst_hash(net, daddr, &saddr_wildcard, tmpl->reqid, encap_family);
1194 hlist_for_each_entry_rcu(x, net->xfrm.state_bydst + h_wildcard, bydst) {
1195 #ifdef CONFIG_XFRM_OFFLOAD
1196 if (pol->xdo.type == XFRM_DEV_OFFLOAD_PACKET) {
1197 if (x->xso.type != XFRM_DEV_OFFLOAD_PACKET)
1198 /* HW states are in the head of list, there is
1199 * no need to iterate further.
1203 /* Packet offload: both policy and SA should
1206 if (pol->xdo.dev != x->xso.dev)
1208 } else if (x->xso.type == XFRM_DEV_OFFLOAD_PACKET)
1209 /* Skip HW policy for SW lookups */
1212 if (x->props.family == encap_family &&
1213 x->props.reqid == tmpl->reqid &&
1214 (mark & x->mark.m) == x->mark.v &&
1215 x->if_id == if_id &&
1216 !(x->props.flags & XFRM_STATE_WILDRECV) &&
1217 xfrm_addr_equal(&x->id.daddr, daddr, encap_family) &&
1218 tmpl->mode == x->props.mode &&
1219 tmpl->id.proto == x->id.proto &&
1220 (tmpl->id.spi == x->id.spi || !tmpl->id.spi))
1221 xfrm_state_look_at(pol, x, fl, family,
1222 &best, &acquire_in_progress, &error);
1227 if (!x && !error && !acquire_in_progress) {
1229 (x0 = __xfrm_state_lookup_all(net, mark, daddr,
1230 tmpl->id.spi, tmpl->id.proto,
1232 &pol->xdo)) != NULL) {
1239 /* If the KMs have no listeners (yet...), avoid allocating an SA
1240 * for each and every packet - garbage collection might not
1243 if (!km_is_alive(&c)) {
1248 x = xfrm_state_alloc(net);
1253 /* Initialize temporary state matching only
1254 * to current session. */
1255 xfrm_init_tempstate(x, fl, tmpl, daddr, saddr, family);
1256 memcpy(&x->mark, &pol->mark, sizeof(x->mark));
1259 error = security_xfrm_state_alloc_acquire(x, pol->security, fl->flowi_secid);
1261 x->km.state = XFRM_STATE_DEAD;
1266 #ifdef CONFIG_XFRM_OFFLOAD
1267 if (pol->xdo.type == XFRM_DEV_OFFLOAD_PACKET) {
1268 struct xfrm_dev_offload *xdo = &pol->xdo;
1269 struct xfrm_dev_offload *xso = &x->xso;
1271 xso->type = XFRM_DEV_OFFLOAD_PACKET;
1272 xso->dir = xdo->dir;
1273 xso->dev = xdo->dev;
1274 xso->real_dev = xdo->real_dev;
1275 xso->flags = XFRM_DEV_OFFLOAD_FLAG_ACQ;
1276 netdev_tracker_alloc(xso->dev, &xso->dev_tracker,
1278 error = xso->dev->xfrmdev_ops->xdo_dev_state_add(x, NULL);
1281 netdev_put(xso->dev, &xso->dev_tracker);
1283 xso->real_dev = NULL;
1284 xso->type = XFRM_DEV_OFFLOAD_UNSPECIFIED;
1285 x->km.state = XFRM_STATE_DEAD;
1292 if (km_query(x, tmpl, pol) == 0) {
1293 spin_lock_bh(&net->xfrm.xfrm_state_lock);
1294 x->km.state = XFRM_STATE_ACQ;
1295 x->dir = XFRM_SA_DIR_OUT;
1296 list_add(&x->km.all, &net->xfrm.state_all);
1297 XFRM_STATE_INSERT(bydst, &x->bydst,
1298 net->xfrm.state_bydst + h,
1300 h = xfrm_src_hash(net, daddr, saddr, encap_family);
1301 XFRM_STATE_INSERT(bysrc, &x->bysrc,
1302 net->xfrm.state_bysrc + h,
1305 h = xfrm_spi_hash(net, &x->id.daddr, x->id.spi, x->id.proto, encap_family);
1306 XFRM_STATE_INSERT(byspi, &x->byspi,
1307 net->xfrm.state_byspi + h,
1311 h = xfrm_seq_hash(net, x->km.seq);
1312 XFRM_STATE_INSERT(byseq, &x->byseq,
1313 net->xfrm.state_byseq + h,
1316 x->lft.hard_add_expires_seconds = net->xfrm.sysctl_acq_expires;
1317 hrtimer_start(&x->mtimer,
1318 ktime_set(net->xfrm.sysctl_acq_expires, 0),
1319 HRTIMER_MODE_REL_SOFT);
1320 net->xfrm.state_num++;
1321 xfrm_hash_grow_check(net, x->bydst.next != NULL);
1322 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1324 #ifdef CONFIG_XFRM_OFFLOAD
1325 struct xfrm_dev_offload *xso = &x->xso;
1327 if (xso->type == XFRM_DEV_OFFLOAD_PACKET) {
1328 xfrm_dev_state_delete(x);
1329 xfrm_dev_state_free(x);
1332 x->km.state = XFRM_STATE_DEAD;
1340 if (!xfrm_state_hold_rcu(x)) {
1345 *err = acquire_in_progress ? -EAGAIN : error;
1349 xfrm_state_put(to_put);
1351 if (read_seqcount_retry(&net->xfrm.xfrm_state_hash_generation, sequence)) {
1363 xfrm_stateonly_find(struct net *net, u32 mark, u32 if_id,
1364 xfrm_address_t *daddr, xfrm_address_t *saddr,
1365 unsigned short family, u8 mode, u8 proto, u32 reqid)
1368 struct xfrm_state *rx = NULL, *x = NULL;
1370 spin_lock_bh(&net->xfrm.xfrm_state_lock);
1371 h = xfrm_dst_hash(net, daddr, saddr, reqid, family);
1372 hlist_for_each_entry(x, net->xfrm.state_bydst+h, bydst) {
1373 if (x->props.family == family &&
1374 x->props.reqid == reqid &&
1375 (mark & x->mark.m) == x->mark.v &&
1376 x->if_id == if_id &&
1377 !(x->props.flags & XFRM_STATE_WILDRECV) &&
1378 xfrm_state_addr_check(x, daddr, saddr, family) &&
1379 mode == x->props.mode &&
1380 proto == x->id.proto &&
1381 x->km.state == XFRM_STATE_VALID) {
1388 xfrm_state_hold(rx);
1389 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1394 EXPORT_SYMBOL(xfrm_stateonly_find);
1396 struct xfrm_state *xfrm_state_lookup_byspi(struct net *net, __be32 spi,
1397 unsigned short family)
1399 struct xfrm_state *x;
1400 struct xfrm_state_walk *w;
1402 spin_lock_bh(&net->xfrm.xfrm_state_lock);
1403 list_for_each_entry(w, &net->xfrm.state_all, all) {
1404 x = container_of(w, struct xfrm_state, km);
1405 if (x->props.family != family ||
1410 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1413 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1416 EXPORT_SYMBOL(xfrm_state_lookup_byspi);
1418 static void __xfrm_state_insert(struct xfrm_state *x)
1420 struct net *net = xs_net(x);
1423 list_add(&x->km.all, &net->xfrm.state_all);
1425 h = xfrm_dst_hash(net, &x->id.daddr, &x->props.saddr,
1426 x->props.reqid, x->props.family);
1427 XFRM_STATE_INSERT(bydst, &x->bydst, net->xfrm.state_bydst + h,
1430 h = xfrm_src_hash(net, &x->id.daddr, &x->props.saddr, x->props.family);
1431 XFRM_STATE_INSERT(bysrc, &x->bysrc, net->xfrm.state_bysrc + h,
1435 h = xfrm_spi_hash(net, &x->id.daddr, x->id.spi, x->id.proto,
1438 XFRM_STATE_INSERT(byspi, &x->byspi, net->xfrm.state_byspi + h,
1443 h = xfrm_seq_hash(net, x->km.seq);
1445 XFRM_STATE_INSERT(byseq, &x->byseq, net->xfrm.state_byseq + h,
1449 hrtimer_start(&x->mtimer, ktime_set(1, 0), HRTIMER_MODE_REL_SOFT);
1450 if (x->replay_maxage)
1451 mod_timer(&x->rtimer, jiffies + x->replay_maxage);
1453 net->xfrm.state_num++;
1455 xfrm_hash_grow_check(net, x->bydst.next != NULL);
1458 /* net->xfrm.xfrm_state_lock is held */
1459 static void __xfrm_state_bump_genids(struct xfrm_state *xnew)
1461 struct net *net = xs_net(xnew);
1462 unsigned short family = xnew->props.family;
1463 u32 reqid = xnew->props.reqid;
1464 struct xfrm_state *x;
1466 u32 mark = xnew->mark.v & xnew->mark.m;
1467 u32 if_id = xnew->if_id;
1469 h = xfrm_dst_hash(net, &xnew->id.daddr, &xnew->props.saddr, reqid, family);
1470 hlist_for_each_entry(x, net->xfrm.state_bydst+h, bydst) {
1471 if (x->props.family == family &&
1472 x->props.reqid == reqid &&
1473 x->if_id == if_id &&
1474 (mark & x->mark.m) == x->mark.v &&
1475 xfrm_addr_equal(&x->id.daddr, &xnew->id.daddr, family) &&
1476 xfrm_addr_equal(&x->props.saddr, &xnew->props.saddr, family))
1481 void xfrm_state_insert(struct xfrm_state *x)
1483 struct net *net = xs_net(x);
1485 spin_lock_bh(&net->xfrm.xfrm_state_lock);
1486 __xfrm_state_bump_genids(x);
1487 __xfrm_state_insert(x);
1488 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1490 EXPORT_SYMBOL(xfrm_state_insert);
1492 /* net->xfrm.xfrm_state_lock is held */
1493 static struct xfrm_state *__find_acq_core(struct net *net,
1494 const struct xfrm_mark *m,
1495 unsigned short family, u8 mode,
1496 u32 reqid, u32 if_id, u8 proto,
1497 const xfrm_address_t *daddr,
1498 const xfrm_address_t *saddr,
1501 unsigned int h = xfrm_dst_hash(net, daddr, saddr, reqid, family);
1502 struct xfrm_state *x;
1503 u32 mark = m->v & m->m;
1505 hlist_for_each_entry(x, net->xfrm.state_bydst+h, bydst) {
1506 if (x->props.reqid != reqid ||
1507 x->props.mode != mode ||
1508 x->props.family != family ||
1509 x->km.state != XFRM_STATE_ACQ ||
1511 x->id.proto != proto ||
1512 (mark & x->mark.m) != x->mark.v ||
1513 !xfrm_addr_equal(&x->id.daddr, daddr, family) ||
1514 !xfrm_addr_equal(&x->props.saddr, saddr, family))
1524 x = xfrm_state_alloc(net);
1528 x->sel.daddr.a4 = daddr->a4;
1529 x->sel.saddr.a4 = saddr->a4;
1530 x->sel.prefixlen_d = 32;
1531 x->sel.prefixlen_s = 32;
1532 x->props.saddr.a4 = saddr->a4;
1533 x->id.daddr.a4 = daddr->a4;
1537 x->sel.daddr.in6 = daddr->in6;
1538 x->sel.saddr.in6 = saddr->in6;
1539 x->sel.prefixlen_d = 128;
1540 x->sel.prefixlen_s = 128;
1541 x->props.saddr.in6 = saddr->in6;
1542 x->id.daddr.in6 = daddr->in6;
1546 x->km.state = XFRM_STATE_ACQ;
1547 x->id.proto = proto;
1548 x->props.family = family;
1549 x->props.mode = mode;
1550 x->props.reqid = reqid;
1554 x->lft.hard_add_expires_seconds = net->xfrm.sysctl_acq_expires;
1556 hrtimer_start(&x->mtimer,
1557 ktime_set(net->xfrm.sysctl_acq_expires, 0),
1558 HRTIMER_MODE_REL_SOFT);
1559 list_add(&x->km.all, &net->xfrm.state_all);
1560 XFRM_STATE_INSERT(bydst, &x->bydst, net->xfrm.state_bydst + h,
1562 h = xfrm_src_hash(net, daddr, saddr, family);
1563 XFRM_STATE_INSERT(bysrc, &x->bysrc, net->xfrm.state_bysrc + h,
1566 net->xfrm.state_num++;
1568 xfrm_hash_grow_check(net, x->bydst.next != NULL);
1574 static struct xfrm_state *__xfrm_find_acq_byseq(struct net *net, u32 mark, u32 seq);
1576 int xfrm_state_add(struct xfrm_state *x)
1578 struct net *net = xs_net(x);
1579 struct xfrm_state *x1, *to_put;
1582 u32 mark = x->mark.v & x->mark.m;
1583 int use_spi = xfrm_id_proto_match(x->id.proto, IPSEC_PROTO_ANY);
1585 family = x->props.family;
1589 spin_lock_bh(&net->xfrm.xfrm_state_lock);
1591 x1 = __xfrm_state_locate(x, use_spi, family);
1599 if (use_spi && x->km.seq) {
1600 x1 = __xfrm_find_acq_byseq(net, mark, x->km.seq);
1601 if (x1 && ((x1->id.proto != x->id.proto) ||
1602 !xfrm_addr_equal(&x1->id.daddr, &x->id.daddr, family))) {
1609 x1 = __find_acq_core(net, &x->mark, family, x->props.mode,
1610 x->props.reqid, x->if_id, x->id.proto,
1611 &x->id.daddr, &x->props.saddr, 0);
1613 __xfrm_state_bump_genids(x);
1614 __xfrm_state_insert(x);
1618 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1621 xfrm_state_delete(x1);
1626 xfrm_state_put(to_put);
1630 EXPORT_SYMBOL(xfrm_state_add);
1632 #ifdef CONFIG_XFRM_MIGRATE
1633 static inline int clone_security(struct xfrm_state *x, struct xfrm_sec_ctx *security)
1635 struct xfrm_user_sec_ctx *uctx;
1636 int size = sizeof(*uctx) + security->ctx_len;
1639 uctx = kmalloc(size, GFP_KERNEL);
1643 uctx->exttype = XFRMA_SEC_CTX;
1645 uctx->ctx_doi = security->ctx_doi;
1646 uctx->ctx_alg = security->ctx_alg;
1647 uctx->ctx_len = security->ctx_len;
1648 memcpy(uctx + 1, security->ctx_str, security->ctx_len);
1649 err = security_xfrm_state_alloc(x, uctx);
1657 static struct xfrm_state *xfrm_state_clone(struct xfrm_state *orig,
1658 struct xfrm_encap_tmpl *encap)
1660 struct net *net = xs_net(orig);
1661 struct xfrm_state *x = xfrm_state_alloc(net);
1665 memcpy(&x->id, &orig->id, sizeof(x->id));
1666 memcpy(&x->sel, &orig->sel, sizeof(x->sel));
1667 memcpy(&x->lft, &orig->lft, sizeof(x->lft));
1668 x->props.mode = orig->props.mode;
1669 x->props.replay_window = orig->props.replay_window;
1670 x->props.reqid = orig->props.reqid;
1671 x->props.family = orig->props.family;
1672 x->props.saddr = orig->props.saddr;
1675 x->aalg = xfrm_algo_auth_clone(orig->aalg);
1679 x->props.aalgo = orig->props.aalgo;
1682 x->aead = xfrm_algo_aead_clone(orig->aead);
1683 x->geniv = orig->geniv;
1688 x->ealg = xfrm_algo_clone(orig->ealg);
1692 x->props.ealgo = orig->props.ealgo;
1695 x->calg = xfrm_algo_clone(orig->calg);
1699 x->props.calgo = orig->props.calgo;
1701 if (encap || orig->encap) {
1703 x->encap = kmemdup(encap, sizeof(*x->encap),
1706 x->encap = kmemdup(orig->encap, sizeof(*x->encap),
1714 if (clone_security(x, orig->security))
1718 x->coaddr = kmemdup(orig->coaddr, sizeof(*x->coaddr),
1724 if (orig->replay_esn) {
1725 if (xfrm_replay_clone(x, orig))
1729 memcpy(&x->mark, &orig->mark, sizeof(x->mark));
1730 memcpy(&x->props.smark, &orig->props.smark, sizeof(x->props.smark));
1732 x->props.flags = orig->props.flags;
1733 x->props.extra_flags = orig->props.extra_flags;
1735 x->if_id = orig->if_id;
1736 x->tfcpad = orig->tfcpad;
1737 x->replay_maxdiff = orig->replay_maxdiff;
1738 x->replay_maxage = orig->replay_maxage;
1739 memcpy(&x->curlft, &orig->curlft, sizeof(x->curlft));
1740 x->km.state = orig->km.state;
1741 x->km.seq = orig->km.seq;
1742 x->replay = orig->replay;
1743 x->preplay = orig->preplay;
1744 x->mapping_maxage = orig->mapping_maxage;
1745 x->lastused = orig->lastused;
1747 x->new_mapping_sport = 0;
1758 struct xfrm_state *xfrm_migrate_state_find(struct xfrm_migrate *m, struct net *net,
1762 struct xfrm_state *x = NULL;
1764 spin_lock_bh(&net->xfrm.xfrm_state_lock);
1767 h = xfrm_dst_hash(net, &m->old_daddr, &m->old_saddr,
1768 m->reqid, m->old_family);
1769 hlist_for_each_entry(x, net->xfrm.state_bydst+h, bydst) {
1770 if (x->props.mode != m->mode ||
1771 x->id.proto != m->proto)
1773 if (m->reqid && x->props.reqid != m->reqid)
1775 if (if_id != 0 && x->if_id != if_id)
1777 if (!xfrm_addr_equal(&x->id.daddr, &m->old_daddr,
1779 !xfrm_addr_equal(&x->props.saddr, &m->old_saddr,
1786 h = xfrm_src_hash(net, &m->old_daddr, &m->old_saddr,
1788 hlist_for_each_entry(x, net->xfrm.state_bysrc+h, bysrc) {
1789 if (x->props.mode != m->mode ||
1790 x->id.proto != m->proto)
1792 if (if_id != 0 && x->if_id != if_id)
1794 if (!xfrm_addr_equal(&x->id.daddr, &m->old_daddr,
1796 !xfrm_addr_equal(&x->props.saddr, &m->old_saddr,
1804 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1808 EXPORT_SYMBOL(xfrm_migrate_state_find);
1810 struct xfrm_state *xfrm_state_migrate(struct xfrm_state *x,
1811 struct xfrm_migrate *m,
1812 struct xfrm_encap_tmpl *encap)
1814 struct xfrm_state *xc;
1816 xc = xfrm_state_clone(x, encap);
1820 xc->props.family = m->new_family;
1822 if (xfrm_init_state(xc) < 0)
1825 memcpy(&xc->id.daddr, &m->new_daddr, sizeof(xc->id.daddr));
1826 memcpy(&xc->props.saddr, &m->new_saddr, sizeof(xc->props.saddr));
1829 if (xfrm_addr_equal(&x->id.daddr, &m->new_daddr, m->new_family)) {
1830 /* a care is needed when the destination address of the
1831 state is to be updated as it is a part of triplet */
1832 xfrm_state_insert(xc);
1834 if (xfrm_state_add(xc) < 0)
1843 EXPORT_SYMBOL(xfrm_state_migrate);
1846 int xfrm_state_update(struct xfrm_state *x)
1848 struct xfrm_state *x1, *to_put;
1850 int use_spi = xfrm_id_proto_match(x->id.proto, IPSEC_PROTO_ANY);
1851 struct net *net = xs_net(x);
1855 spin_lock_bh(&net->xfrm.xfrm_state_lock);
1856 x1 = __xfrm_state_locate(x, use_spi, x->props.family);
1862 if (xfrm_state_kern(x1)) {
1868 if (x1->km.state == XFRM_STATE_ACQ) {
1869 if (x->dir && x1->dir != x->dir)
1872 __xfrm_state_insert(x);
1875 if (x1->dir != x->dir)
1881 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1884 xfrm_state_put(to_put);
1890 xfrm_state_delete(x1);
1896 spin_lock_bh(&x1->lock);
1897 if (likely(x1->km.state == XFRM_STATE_VALID)) {
1898 if (x->encap && x1->encap &&
1899 x->encap->encap_type == x1->encap->encap_type)
1900 memcpy(x1->encap, x->encap, sizeof(*x1->encap));
1901 else if (x->encap || x1->encap)
1904 if (x->coaddr && x1->coaddr) {
1905 memcpy(x1->coaddr, x->coaddr, sizeof(*x1->coaddr));
1907 if (!use_spi && memcmp(&x1->sel, &x->sel, sizeof(x1->sel)))
1908 memcpy(&x1->sel, &x->sel, sizeof(x1->sel));
1909 memcpy(&x1->lft, &x->lft, sizeof(x1->lft));
1912 hrtimer_start(&x1->mtimer, ktime_set(1, 0),
1913 HRTIMER_MODE_REL_SOFT);
1914 if (READ_ONCE(x1->curlft.use_time))
1915 xfrm_state_check_expire(x1);
1917 if (x->props.smark.m || x->props.smark.v || x->if_id) {
1918 spin_lock_bh(&net->xfrm.xfrm_state_lock);
1920 if (x->props.smark.m || x->props.smark.v)
1921 x1->props.smark = x->props.smark;
1924 x1->if_id = x->if_id;
1926 __xfrm_state_bump_genids(x1);
1927 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1931 x->km.state = XFRM_STATE_DEAD;
1932 __xfrm_state_put(x);
1936 spin_unlock_bh(&x1->lock);
1942 EXPORT_SYMBOL(xfrm_state_update);
1944 int xfrm_state_check_expire(struct xfrm_state *x)
1946 xfrm_dev_state_update_stats(x);
1948 if (!READ_ONCE(x->curlft.use_time))
1949 WRITE_ONCE(x->curlft.use_time, ktime_get_real_seconds());
1951 if (x->curlft.bytes >= x->lft.hard_byte_limit ||
1952 x->curlft.packets >= x->lft.hard_packet_limit) {
1953 x->km.state = XFRM_STATE_EXPIRED;
1954 hrtimer_start(&x->mtimer, 0, HRTIMER_MODE_REL_SOFT);
1959 (x->curlft.bytes >= x->lft.soft_byte_limit ||
1960 x->curlft.packets >= x->lft.soft_packet_limit)) {
1962 km_state_expired(x, 0, 0);
1966 EXPORT_SYMBOL(xfrm_state_check_expire);
1968 void xfrm_state_update_stats(struct net *net)
1970 struct xfrm_state *x;
1973 spin_lock_bh(&net->xfrm.xfrm_state_lock);
1974 for (i = 0; i <= net->xfrm.state_hmask; i++) {
1975 hlist_for_each_entry(x, net->xfrm.state_bydst + i, bydst)
1976 xfrm_dev_state_update_stats(x);
1978 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1982 xfrm_state_lookup(struct net *net, u32 mark, const xfrm_address_t *daddr, __be32 spi,
1983 u8 proto, unsigned short family)
1985 struct xfrm_state *x;
1988 x = __xfrm_state_lookup(net, mark, daddr, spi, proto, family);
1992 EXPORT_SYMBOL(xfrm_state_lookup);
1995 xfrm_state_lookup_byaddr(struct net *net, u32 mark,
1996 const xfrm_address_t *daddr, const xfrm_address_t *saddr,
1997 u8 proto, unsigned short family)
1999 struct xfrm_state *x;
2001 spin_lock_bh(&net->xfrm.xfrm_state_lock);
2002 x = __xfrm_state_lookup_byaddr(net, mark, daddr, saddr, proto, family);
2003 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
2006 EXPORT_SYMBOL(xfrm_state_lookup_byaddr);
2009 xfrm_find_acq(struct net *net, const struct xfrm_mark *mark, u8 mode, u32 reqid,
2010 u32 if_id, u8 proto, const xfrm_address_t *daddr,
2011 const xfrm_address_t *saddr, int create, unsigned short family)
2013 struct xfrm_state *x;
2015 spin_lock_bh(&net->xfrm.xfrm_state_lock);
2016 x = __find_acq_core(net, mark, family, mode, reqid, if_id, proto, daddr, saddr, create);
2017 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
2021 EXPORT_SYMBOL(xfrm_find_acq);
2023 #ifdef CONFIG_XFRM_SUB_POLICY
2024 #if IS_ENABLED(CONFIG_IPV6)
2025 /* distribution counting sort function for xfrm_state and xfrm_tmpl */
2027 __xfrm6_sort(void **dst, void **src, int n,
2028 int (*cmp)(const void *p), int maxclass)
2030 int count[XFRM_MAX_DEPTH] = { };
2031 int class[XFRM_MAX_DEPTH];
2034 for (i = 0; i < n; i++) {
2035 int c = cmp(src[i]);
2041 for (i = 2; i < maxclass; i++)
2042 count[i] += count[i - 1];
2044 for (i = 0; i < n; i++) {
2045 dst[count[class[i] - 1]++] = src[i];
2050 /* Rule for xfrm_state:
2052 * rule 1: select IPsec transport except AH
2053 * rule 2: select MIPv6 RO or inbound trigger
2054 * rule 3: select IPsec transport AH
2055 * rule 4: select IPsec tunnel
2058 static int __xfrm6_state_sort_cmp(const void *p)
2060 const struct xfrm_state *v = p;
2062 switch (v->props.mode) {
2063 case XFRM_MODE_TRANSPORT:
2064 if (v->id.proto != IPPROTO_AH)
2068 #if IS_ENABLED(CONFIG_IPV6_MIP6)
2069 case XFRM_MODE_ROUTEOPTIMIZATION:
2070 case XFRM_MODE_IN_TRIGGER:
2073 case XFRM_MODE_TUNNEL:
2074 case XFRM_MODE_BEET:
2080 /* Rule for xfrm_tmpl:
2082 * rule 1: select IPsec transport
2083 * rule 2: select MIPv6 RO or inbound trigger
2084 * rule 3: select IPsec tunnel
2087 static int __xfrm6_tmpl_sort_cmp(const void *p)
2089 const struct xfrm_tmpl *v = p;
2092 case XFRM_MODE_TRANSPORT:
2094 #if IS_ENABLED(CONFIG_IPV6_MIP6)
2095 case XFRM_MODE_ROUTEOPTIMIZATION:
2096 case XFRM_MODE_IN_TRIGGER:
2099 case XFRM_MODE_TUNNEL:
2100 case XFRM_MODE_BEET:
2106 static inline int __xfrm6_state_sort_cmp(const void *p) { return 5; }
2107 static inline int __xfrm6_tmpl_sort_cmp(const void *p) { return 4; }
2110 __xfrm6_sort(void **dst, void **src, int n,
2111 int (*cmp)(const void *p), int maxclass)
2115 for (i = 0; i < n; i++)
2118 #endif /* CONFIG_IPV6 */
2121 xfrm_tmpl_sort(struct xfrm_tmpl **dst, struct xfrm_tmpl **src, int n,
2122 unsigned short family)
2126 if (family == AF_INET6)
2127 __xfrm6_sort((void **)dst, (void **)src, n,
2128 __xfrm6_tmpl_sort_cmp, 5);
2130 for (i = 0; i < n; i++)
2135 xfrm_state_sort(struct xfrm_state **dst, struct xfrm_state **src, int n,
2136 unsigned short family)
2140 if (family == AF_INET6)
2141 __xfrm6_sort((void **)dst, (void **)src, n,
2142 __xfrm6_state_sort_cmp, 6);
2144 for (i = 0; i < n; i++)
2149 /* Silly enough, but I'm lazy to build resolution list */
2151 static struct xfrm_state *__xfrm_find_acq_byseq(struct net *net, u32 mark, u32 seq)
2153 unsigned int h = xfrm_seq_hash(net, seq);
2154 struct xfrm_state *x;
2156 hlist_for_each_entry_rcu(x, net->xfrm.state_byseq + h, byseq) {
2157 if (x->km.seq == seq &&
2158 (mark & x->mark.m) == x->mark.v &&
2159 x->km.state == XFRM_STATE_ACQ) {
2168 struct xfrm_state *xfrm_find_acq_byseq(struct net *net, u32 mark, u32 seq)
2170 struct xfrm_state *x;
2172 spin_lock_bh(&net->xfrm.xfrm_state_lock);
2173 x = __xfrm_find_acq_byseq(net, mark, seq);
2174 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
2177 EXPORT_SYMBOL(xfrm_find_acq_byseq);
2179 u32 xfrm_get_acqseq(void)
2182 static atomic_t acqseq;
2185 res = atomic_inc_return(&acqseq);
2190 EXPORT_SYMBOL(xfrm_get_acqseq);
2192 int verify_spi_info(u8 proto, u32 min, u32 max, struct netlink_ext_ack *extack)
2200 /* IPCOMP spi is 16-bits. */
2201 if (max >= 0x10000) {
2202 NL_SET_ERR_MSG(extack, "IPCOMP SPI must be <= 65535");
2208 NL_SET_ERR_MSG(extack, "Invalid protocol, must be one of AH, ESP, IPCOMP");
2213 NL_SET_ERR_MSG(extack, "Invalid SPI range: min > max");
2219 EXPORT_SYMBOL(verify_spi_info);
2221 int xfrm_alloc_spi(struct xfrm_state *x, u32 low, u32 high,
2222 struct netlink_ext_ack *extack)
2224 struct net *net = xs_net(x);
2226 struct xfrm_state *x0;
2228 __be32 minspi = htonl(low);
2229 __be32 maxspi = htonl(high);
2231 u32 mark = x->mark.v & x->mark.m;
2233 spin_lock_bh(&x->lock);
2234 if (x->km.state == XFRM_STATE_DEAD) {
2235 NL_SET_ERR_MSG(extack, "Target ACQUIRE is in DEAD state");
2245 if (minspi == maxspi) {
2246 x0 = xfrm_state_lookup(net, mark, &x->id.daddr, minspi, x->id.proto, x->props.family);
2248 NL_SET_ERR_MSG(extack, "Requested SPI is already in use");
2255 for (h = 0; h < high-low+1; h++) {
2256 spi = get_random_u32_inclusive(low, high);
2257 x0 = xfrm_state_lookup(net, mark, &x->id.daddr, htonl(spi), x->id.proto, x->props.family);
2259 newspi = htonl(spi);
2266 spin_lock_bh(&net->xfrm.xfrm_state_lock);
2268 h = xfrm_spi_hash(net, &x->id.daddr, x->id.spi, x->id.proto, x->props.family);
2269 XFRM_STATE_INSERT(byspi, &x->byspi, net->xfrm.state_byspi + h,
2271 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
2275 NL_SET_ERR_MSG(extack, "No SPI available in the requested range");
2279 spin_unlock_bh(&x->lock);
2283 EXPORT_SYMBOL(xfrm_alloc_spi);
2285 static bool __xfrm_state_filter_match(struct xfrm_state *x,
2286 struct xfrm_address_filter *filter)
2289 if ((filter->family == AF_INET ||
2290 filter->family == AF_INET6) &&
2291 x->props.family != filter->family)
2294 return addr_match(&x->props.saddr, &filter->saddr,
2296 addr_match(&x->id.daddr, &filter->daddr,
2302 int xfrm_state_walk(struct net *net, struct xfrm_state_walk *walk,
2303 int (*func)(struct xfrm_state *, int, void*),
2306 struct xfrm_state *state;
2307 struct xfrm_state_walk *x;
2310 if (walk->seq != 0 && list_empty(&walk->all))
2313 spin_lock_bh(&net->xfrm.xfrm_state_lock);
2314 if (list_empty(&walk->all))
2315 x = list_first_entry(&net->xfrm.state_all, struct xfrm_state_walk, all);
2317 x = list_first_entry(&walk->all, struct xfrm_state_walk, all);
2318 list_for_each_entry_from(x, &net->xfrm.state_all, all) {
2319 if (x->state == XFRM_STATE_DEAD)
2321 state = container_of(x, struct xfrm_state, km);
2322 if (!xfrm_id_proto_match(state->id.proto, walk->proto))
2324 if (!__xfrm_state_filter_match(state, walk->filter))
2326 err = func(state, walk->seq, data);
2328 list_move_tail(&walk->all, &x->all);
2333 if (walk->seq == 0) {
2337 list_del_init(&walk->all);
2339 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
2342 EXPORT_SYMBOL(xfrm_state_walk);
2344 void xfrm_state_walk_init(struct xfrm_state_walk *walk, u8 proto,
2345 struct xfrm_address_filter *filter)
2347 INIT_LIST_HEAD(&walk->all);
2348 walk->proto = proto;
2349 walk->state = XFRM_STATE_DEAD;
2351 walk->filter = filter;
2353 EXPORT_SYMBOL(xfrm_state_walk_init);
2355 void xfrm_state_walk_done(struct xfrm_state_walk *walk, struct net *net)
2357 kfree(walk->filter);
2359 if (list_empty(&walk->all))
2362 spin_lock_bh(&net->xfrm.xfrm_state_lock);
2363 list_del(&walk->all);
2364 spin_unlock_bh(&net->xfrm.xfrm_state_lock);
2366 EXPORT_SYMBOL(xfrm_state_walk_done);
2368 static void xfrm_replay_timer_handler(struct timer_list *t)
2370 struct xfrm_state *x = from_timer(x, t, rtimer);
2372 spin_lock(&x->lock);
2374 if (x->km.state == XFRM_STATE_VALID) {
2375 if (xfrm_aevent_is_on(xs_net(x)))
2376 xfrm_replay_notify(x, XFRM_REPLAY_TIMEOUT);
2378 x->xflags |= XFRM_TIME_DEFER;
2381 spin_unlock(&x->lock);
2384 static LIST_HEAD(xfrm_km_list);
2386 void km_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
2388 struct xfrm_mgr *km;
2391 list_for_each_entry_rcu(km, &xfrm_km_list, list)
2392 if (km->notify_policy)
2393 km->notify_policy(xp, dir, c);
2397 void km_state_notify(struct xfrm_state *x, const struct km_event *c)
2399 struct xfrm_mgr *km;
2401 list_for_each_entry_rcu(km, &xfrm_km_list, list)
2407 EXPORT_SYMBOL(km_policy_notify);
2408 EXPORT_SYMBOL(km_state_notify);
2410 void km_state_expired(struct xfrm_state *x, int hard, u32 portid)
2416 c.event = XFRM_MSG_EXPIRE;
2417 km_state_notify(x, &c);
2420 EXPORT_SYMBOL(km_state_expired);
2422 * We send to all registered managers regardless of failure
2423 * We are happy with one success
2425 int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol)
2427 int err = -EINVAL, acqret;
2428 struct xfrm_mgr *km;
2431 list_for_each_entry_rcu(km, &xfrm_km_list, list) {
2432 acqret = km->acquire(x, t, pol);
2439 EXPORT_SYMBOL(km_query);
2441 static int __km_new_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, __be16 sport)
2444 struct xfrm_mgr *km;
2447 list_for_each_entry_rcu(km, &xfrm_km_list, list) {
2448 if (km->new_mapping)
2449 err = km->new_mapping(x, ipaddr, sport);
2457 int km_new_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, __be16 sport)
2461 if (x->mapping_maxage) {
2462 if ((jiffies / HZ - x->new_mapping) > x->mapping_maxage ||
2463 x->new_mapping_sport != sport) {
2464 x->new_mapping_sport = sport;
2465 x->new_mapping = jiffies / HZ;
2466 ret = __km_new_mapping(x, ipaddr, sport);
2469 ret = __km_new_mapping(x, ipaddr, sport);
2474 EXPORT_SYMBOL(km_new_mapping);
2476 void km_policy_expired(struct xfrm_policy *pol, int dir, int hard, u32 portid)
2482 c.event = XFRM_MSG_POLEXPIRE;
2483 km_policy_notify(pol, dir, &c);
2485 EXPORT_SYMBOL(km_policy_expired);
2487 #ifdef CONFIG_XFRM_MIGRATE
2488 int km_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2489 const struct xfrm_migrate *m, int num_migrate,
2490 const struct xfrm_kmaddress *k,
2491 const struct xfrm_encap_tmpl *encap)
2495 struct xfrm_mgr *km;
2498 list_for_each_entry_rcu(km, &xfrm_km_list, list) {
2500 ret = km->migrate(sel, dir, type, m, num_migrate, k,
2509 EXPORT_SYMBOL(km_migrate);
2512 int km_report(struct net *net, u8 proto, struct xfrm_selector *sel, xfrm_address_t *addr)
2516 struct xfrm_mgr *km;
2519 list_for_each_entry_rcu(km, &xfrm_km_list, list) {
2521 ret = km->report(net, proto, sel, addr);
2529 EXPORT_SYMBOL(km_report);
2531 static bool km_is_alive(const struct km_event *c)
2533 struct xfrm_mgr *km;
2534 bool is_alive = false;
2537 list_for_each_entry_rcu(km, &xfrm_km_list, list) {
2538 if (km->is_alive && km->is_alive(c)) {
2548 #if IS_ENABLED(CONFIG_XFRM_USER_COMPAT)
2549 static DEFINE_SPINLOCK(xfrm_translator_lock);
2550 static struct xfrm_translator __rcu *xfrm_translator;
2552 struct xfrm_translator *xfrm_get_translator(void)
2554 struct xfrm_translator *xtr;
2557 xtr = rcu_dereference(xfrm_translator);
2560 if (!try_module_get(xtr->owner))
2566 EXPORT_SYMBOL_GPL(xfrm_get_translator);
2568 void xfrm_put_translator(struct xfrm_translator *xtr)
2570 module_put(xtr->owner);
2572 EXPORT_SYMBOL_GPL(xfrm_put_translator);
2574 int xfrm_register_translator(struct xfrm_translator *xtr)
2578 spin_lock_bh(&xfrm_translator_lock);
2579 if (unlikely(xfrm_translator != NULL))
2582 rcu_assign_pointer(xfrm_translator, xtr);
2583 spin_unlock_bh(&xfrm_translator_lock);
2587 EXPORT_SYMBOL_GPL(xfrm_register_translator);
2589 int xfrm_unregister_translator(struct xfrm_translator *xtr)
2593 spin_lock_bh(&xfrm_translator_lock);
2594 if (likely(xfrm_translator != NULL)) {
2595 if (rcu_access_pointer(xfrm_translator) != xtr)
2598 RCU_INIT_POINTER(xfrm_translator, NULL);
2600 spin_unlock_bh(&xfrm_translator_lock);
2605 EXPORT_SYMBOL_GPL(xfrm_unregister_translator);
2608 int xfrm_user_policy(struct sock *sk, int optname, sockptr_t optval, int optlen)
2612 struct xfrm_mgr *km;
2613 struct xfrm_policy *pol = NULL;
2615 if (sockptr_is_null(optval) && !optlen) {
2616 xfrm_sk_policy_insert(sk, XFRM_POLICY_IN, NULL);
2617 xfrm_sk_policy_insert(sk, XFRM_POLICY_OUT, NULL);
2622 if (optlen <= 0 || optlen > PAGE_SIZE)
2625 data = memdup_sockptr(optval, optlen);
2627 return PTR_ERR(data);
2629 if (in_compat_syscall()) {
2630 struct xfrm_translator *xtr = xfrm_get_translator();
2637 err = xtr->xlate_user_policy_sockptr(&data, optlen);
2638 xfrm_put_translator(xtr);
2647 list_for_each_entry_rcu(km, &xfrm_km_list, list) {
2648 pol = km->compile_policy(sk, optname, data,
2656 xfrm_sk_policy_insert(sk, err, pol);
2665 EXPORT_SYMBOL(xfrm_user_policy);
2667 static DEFINE_SPINLOCK(xfrm_km_lock);
2669 void xfrm_register_km(struct xfrm_mgr *km)
2671 spin_lock_bh(&xfrm_km_lock);
2672 list_add_tail_rcu(&km->list, &xfrm_km_list);
2673 spin_unlock_bh(&xfrm_km_lock);
2675 EXPORT_SYMBOL(xfrm_register_km);
2677 void xfrm_unregister_km(struct xfrm_mgr *km)
2679 spin_lock_bh(&xfrm_km_lock);
2680 list_del_rcu(&km->list);
2681 spin_unlock_bh(&xfrm_km_lock);
2684 EXPORT_SYMBOL(xfrm_unregister_km);
2686 int xfrm_state_register_afinfo(struct xfrm_state_afinfo *afinfo)
2690 if (WARN_ON(afinfo->family >= NPROTO))
2691 return -EAFNOSUPPORT;
2693 spin_lock_bh(&xfrm_state_afinfo_lock);
2694 if (unlikely(xfrm_state_afinfo[afinfo->family] != NULL))
2697 rcu_assign_pointer(xfrm_state_afinfo[afinfo->family], afinfo);
2698 spin_unlock_bh(&xfrm_state_afinfo_lock);
2701 EXPORT_SYMBOL(xfrm_state_register_afinfo);
2703 int xfrm_state_unregister_afinfo(struct xfrm_state_afinfo *afinfo)
2705 int err = 0, family = afinfo->family;
2707 if (WARN_ON(family >= NPROTO))
2708 return -EAFNOSUPPORT;
2710 spin_lock_bh(&xfrm_state_afinfo_lock);
2711 if (likely(xfrm_state_afinfo[afinfo->family] != NULL)) {
2712 if (rcu_access_pointer(xfrm_state_afinfo[family]) != afinfo)
2715 RCU_INIT_POINTER(xfrm_state_afinfo[afinfo->family], NULL);
2717 spin_unlock_bh(&xfrm_state_afinfo_lock);
2721 EXPORT_SYMBOL(xfrm_state_unregister_afinfo);
2723 struct xfrm_state_afinfo *xfrm_state_afinfo_get_rcu(unsigned int family)
2725 if (unlikely(family >= NPROTO))
2728 return rcu_dereference(xfrm_state_afinfo[family]);
2730 EXPORT_SYMBOL_GPL(xfrm_state_afinfo_get_rcu);
2732 struct xfrm_state_afinfo *xfrm_state_get_afinfo(unsigned int family)
2734 struct xfrm_state_afinfo *afinfo;
2735 if (unlikely(family >= NPROTO))
2738 afinfo = rcu_dereference(xfrm_state_afinfo[family]);
2739 if (unlikely(!afinfo))
2744 void xfrm_flush_gc(void)
2746 flush_work(&xfrm_state_gc_work);
2748 EXPORT_SYMBOL(xfrm_flush_gc);
2750 /* Temporarily located here until net/xfrm/xfrm_tunnel.c is created */
2751 void xfrm_state_delete_tunnel(struct xfrm_state *x)
2754 struct xfrm_state *t = x->tunnel;
2756 if (atomic_read(&t->tunnel_users) == 2)
2757 xfrm_state_delete(t);
2758 atomic_dec(&t->tunnel_users);
2759 xfrm_state_put_sync(t);
2763 EXPORT_SYMBOL(xfrm_state_delete_tunnel);
2765 u32 xfrm_state_mtu(struct xfrm_state *x, int mtu)
2767 const struct xfrm_type *type = READ_ONCE(x->type);
2768 struct crypto_aead *aead;
2769 u32 blksize, net_adj = 0;
2771 if (x->km.state != XFRM_STATE_VALID ||
2772 !type || type->proto != IPPROTO_ESP)
2773 return mtu - x->props.header_len;
2776 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
2778 switch (x->props.mode) {
2779 case XFRM_MODE_TRANSPORT:
2780 case XFRM_MODE_BEET:
2781 if (x->props.family == AF_INET)
2782 net_adj = sizeof(struct iphdr);
2783 else if (x->props.family == AF_INET6)
2784 net_adj = sizeof(struct ipv6hdr);
2786 case XFRM_MODE_TUNNEL:
2793 return ((mtu - x->props.header_len - crypto_aead_authsize(aead) -
2794 net_adj) & ~(blksize - 1)) + net_adj - 2;
2796 EXPORT_SYMBOL_GPL(xfrm_state_mtu);
2798 int __xfrm_init_state(struct xfrm_state *x, bool init_replay, bool offload,
2799 struct netlink_ext_ack *extack)
2801 const struct xfrm_mode *inner_mode;
2802 const struct xfrm_mode *outer_mode;
2803 int family = x->props.family;
2806 if (family == AF_INET &&
2807 READ_ONCE(xs_net(x)->ipv4.sysctl_ip_no_pmtu_disc))
2808 x->props.flags |= XFRM_STATE_NOPMTUDISC;
2810 err = -EPROTONOSUPPORT;
2812 if (x->sel.family != AF_UNSPEC) {
2813 inner_mode = xfrm_get_mode(x->props.mode, x->sel.family);
2814 if (inner_mode == NULL) {
2815 NL_SET_ERR_MSG(extack, "Requested mode not found");
2819 if (!(inner_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
2820 family != x->sel.family) {
2821 NL_SET_ERR_MSG(extack, "Only tunnel modes can accommodate a change of family");
2825 x->inner_mode = *inner_mode;
2827 const struct xfrm_mode *inner_mode_iaf;
2828 int iafamily = AF_INET;
2830 inner_mode = xfrm_get_mode(x->props.mode, x->props.family);
2831 if (inner_mode == NULL) {
2832 NL_SET_ERR_MSG(extack, "Requested mode not found");
2836 x->inner_mode = *inner_mode;
2838 if (x->props.family == AF_INET)
2839 iafamily = AF_INET6;
2841 inner_mode_iaf = xfrm_get_mode(x->props.mode, iafamily);
2842 if (inner_mode_iaf) {
2843 if (inner_mode_iaf->flags & XFRM_MODE_FLAG_TUNNEL)
2844 x->inner_mode_iaf = *inner_mode_iaf;
2848 x->type = xfrm_get_type(x->id.proto, family);
2849 if (x->type == NULL) {
2850 NL_SET_ERR_MSG(extack, "Requested type not found");
2854 x->type_offload = xfrm_get_type_offload(x->id.proto, family, offload);
2856 err = x->type->init_state(x, extack);
2860 outer_mode = xfrm_get_mode(x->props.mode, family);
2862 NL_SET_ERR_MSG(extack, "Requested mode not found");
2863 err = -EPROTONOSUPPORT;
2867 x->outer_mode = *outer_mode;
2869 err = xfrm_init_replay(x, extack);
2878 EXPORT_SYMBOL(__xfrm_init_state);
2880 int xfrm_init_state(struct xfrm_state *x)
2884 err = __xfrm_init_state(x, true, false, NULL);
2886 x->km.state = XFRM_STATE_VALID;
2891 EXPORT_SYMBOL(xfrm_init_state);
2893 int __net_init xfrm_state_init(struct net *net)
2897 if (net_eq(net, &init_net))
2898 xfrm_state_cache = KMEM_CACHE(xfrm_state,
2899 SLAB_HWCACHE_ALIGN | SLAB_PANIC);
2901 INIT_LIST_HEAD(&net->xfrm.state_all);
2903 sz = sizeof(struct hlist_head) * 8;
2905 net->xfrm.state_bydst = xfrm_hash_alloc(sz);
2906 if (!net->xfrm.state_bydst)
2908 net->xfrm.state_bysrc = xfrm_hash_alloc(sz);
2909 if (!net->xfrm.state_bysrc)
2911 net->xfrm.state_byspi = xfrm_hash_alloc(sz);
2912 if (!net->xfrm.state_byspi)
2914 net->xfrm.state_byseq = xfrm_hash_alloc(sz);
2915 if (!net->xfrm.state_byseq)
2917 net->xfrm.state_hmask = ((sz / sizeof(struct hlist_head)) - 1);
2919 net->xfrm.state_num = 0;
2920 INIT_WORK(&net->xfrm.state_hash_work, xfrm_hash_resize);
2921 spin_lock_init(&net->xfrm.xfrm_state_lock);
2922 seqcount_spinlock_init(&net->xfrm.xfrm_state_hash_generation,
2923 &net->xfrm.xfrm_state_lock);
2927 xfrm_hash_free(net->xfrm.state_byspi, sz);
2929 xfrm_hash_free(net->xfrm.state_bysrc, sz);
2931 xfrm_hash_free(net->xfrm.state_bydst, sz);
2936 void xfrm_state_fini(struct net *net)
2940 flush_work(&net->xfrm.state_hash_work);
2941 flush_work(&xfrm_state_gc_work);
2942 xfrm_state_flush(net, 0, false, true);
2944 WARN_ON(!list_empty(&net->xfrm.state_all));
2946 sz = (net->xfrm.state_hmask + 1) * sizeof(struct hlist_head);
2947 WARN_ON(!hlist_empty(net->xfrm.state_byseq));
2948 xfrm_hash_free(net->xfrm.state_byseq, sz);
2949 WARN_ON(!hlist_empty(net->xfrm.state_byspi));
2950 xfrm_hash_free(net->xfrm.state_byspi, sz);
2951 WARN_ON(!hlist_empty(net->xfrm.state_bysrc));
2952 xfrm_hash_free(net->xfrm.state_bysrc, sz);
2953 WARN_ON(!hlist_empty(net->xfrm.state_bydst));
2954 xfrm_hash_free(net->xfrm.state_bydst, sz);
2957 #ifdef CONFIG_AUDITSYSCALL
2958 static void xfrm_audit_helper_sainfo(struct xfrm_state *x,
2959 struct audit_buffer *audit_buf)
2961 struct xfrm_sec_ctx *ctx = x->security;
2962 u32 spi = ntohl(x->id.spi);
2965 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2966 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2968 switch (x->props.family) {
2970 audit_log_format(audit_buf, " src=%pI4 dst=%pI4",
2971 &x->props.saddr.a4, &x->id.daddr.a4);
2974 audit_log_format(audit_buf, " src=%pI6 dst=%pI6",
2975 x->props.saddr.a6, x->id.daddr.a6);
2979 audit_log_format(audit_buf, " spi=%u(0x%x)", spi, spi);
2982 static void xfrm_audit_helper_pktinfo(struct sk_buff *skb, u16 family,
2983 struct audit_buffer *audit_buf)
2985 const struct iphdr *iph4;
2986 const struct ipv6hdr *iph6;
2991 audit_log_format(audit_buf, " src=%pI4 dst=%pI4",
2992 &iph4->saddr, &iph4->daddr);
2995 iph6 = ipv6_hdr(skb);
2996 audit_log_format(audit_buf,
2997 " src=%pI6 dst=%pI6 flowlbl=0x%x%02x%02x",
2998 &iph6->saddr, &iph6->daddr,
2999 iph6->flow_lbl[0] & 0x0f,
3006 void xfrm_audit_state_add(struct xfrm_state *x, int result, bool task_valid)
3008 struct audit_buffer *audit_buf;
3010 audit_buf = xfrm_audit_start("SAD-add");
3011 if (audit_buf == NULL)
3013 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
3014 xfrm_audit_helper_sainfo(x, audit_buf);
3015 audit_log_format(audit_buf, " res=%u", result);
3016 audit_log_end(audit_buf);
3018 EXPORT_SYMBOL_GPL(xfrm_audit_state_add);
3020 void xfrm_audit_state_delete(struct xfrm_state *x, int result, bool task_valid)
3022 struct audit_buffer *audit_buf;
3024 audit_buf = xfrm_audit_start("SAD-delete");
3025 if (audit_buf == NULL)
3027 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
3028 xfrm_audit_helper_sainfo(x, audit_buf);
3029 audit_log_format(audit_buf, " res=%u", result);
3030 audit_log_end(audit_buf);
3032 EXPORT_SYMBOL_GPL(xfrm_audit_state_delete);
3034 void xfrm_audit_state_replay_overflow(struct xfrm_state *x,
3035 struct sk_buff *skb)
3037 struct audit_buffer *audit_buf;
3040 audit_buf = xfrm_audit_start("SA-replay-overflow");
3041 if (audit_buf == NULL)
3043 xfrm_audit_helper_pktinfo(skb, x->props.family, audit_buf);
3044 /* don't record the sequence number because it's inherent in this kind
3045 * of audit message */
3046 spi = ntohl(x->id.spi);
3047 audit_log_format(audit_buf, " spi=%u(0x%x)", spi, spi);
3048 audit_log_end(audit_buf);
3050 EXPORT_SYMBOL_GPL(xfrm_audit_state_replay_overflow);
3052 void xfrm_audit_state_replay(struct xfrm_state *x,
3053 struct sk_buff *skb, __be32 net_seq)
3055 struct audit_buffer *audit_buf;
3058 audit_buf = xfrm_audit_start("SA-replayed-pkt");
3059 if (audit_buf == NULL)
3061 xfrm_audit_helper_pktinfo(skb, x->props.family, audit_buf);
3062 spi = ntohl(x->id.spi);
3063 audit_log_format(audit_buf, " spi=%u(0x%x) seqno=%u",
3064 spi, spi, ntohl(net_seq));
3065 audit_log_end(audit_buf);
3067 EXPORT_SYMBOL_GPL(xfrm_audit_state_replay);
3069 void xfrm_audit_state_notfound_simple(struct sk_buff *skb, u16 family)
3071 struct audit_buffer *audit_buf;
3073 audit_buf = xfrm_audit_start("SA-notfound");
3074 if (audit_buf == NULL)
3076 xfrm_audit_helper_pktinfo(skb, family, audit_buf);
3077 audit_log_end(audit_buf);
3079 EXPORT_SYMBOL_GPL(xfrm_audit_state_notfound_simple);
3081 void xfrm_audit_state_notfound(struct sk_buff *skb, u16 family,
3082 __be32 net_spi, __be32 net_seq)
3084 struct audit_buffer *audit_buf;
3087 audit_buf = xfrm_audit_start("SA-notfound");
3088 if (audit_buf == NULL)
3090 xfrm_audit_helper_pktinfo(skb, family, audit_buf);
3091 spi = ntohl(net_spi);
3092 audit_log_format(audit_buf, " spi=%u(0x%x) seqno=%u",
3093 spi, spi, ntohl(net_seq));
3094 audit_log_end(audit_buf);
3096 EXPORT_SYMBOL_GPL(xfrm_audit_state_notfound);
3098 void xfrm_audit_state_icvfail(struct xfrm_state *x,
3099 struct sk_buff *skb, u8 proto)
3101 struct audit_buffer *audit_buf;
3105 audit_buf = xfrm_audit_start("SA-icv-failure");
3106 if (audit_buf == NULL)
3108 xfrm_audit_helper_pktinfo(skb, x->props.family, audit_buf);
3109 if (xfrm_parse_spi(skb, proto, &net_spi, &net_seq) == 0) {
3110 u32 spi = ntohl(net_spi);
3111 audit_log_format(audit_buf, " spi=%u(0x%x) seqno=%u",
3112 spi, spi, ntohl(net_seq));
3114 audit_log_end(audit_buf);
3116 EXPORT_SYMBOL_GPL(xfrm_audit_state_icvfail);
3117 #endif /* CONFIG_AUDITSYSCALL */