6 * Kazunori MIYAZAWA @USAGI
7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * YOSHIFUJI Hideaki @USAGI
10 * Split up af-specific functions
11 * Derek Atkins <derek@ihtfp.com>
12 * Add UDP Encapsulation
16 #include <linux/workqueue.h>
18 #include <linux/pfkeyv2.h>
19 #include <linux/ipsec.h>
20 #include <linux/module.h>
21 #include <linux/cache.h>
22 #include <linux/audit.h>
23 #include <asm/uaccess.h>
25 #include "xfrm_hash.h"
28 EXPORT_SYMBOL(xfrm_nl);
30 u32 sysctl_xfrm_aevent_etime __read_mostly = XFRM_AE_ETIME;
31 EXPORT_SYMBOL(sysctl_xfrm_aevent_etime);
33 u32 sysctl_xfrm_aevent_rseqth __read_mostly = XFRM_AE_SEQT_SIZE;
34 EXPORT_SYMBOL(sysctl_xfrm_aevent_rseqth);
36 u32 sysctl_xfrm_acq_expires __read_mostly = 30;
38 /* Each xfrm_state may be linked to two tables:
40 1. Hash table by (spi,daddr,ah/esp) to find SA by SPI. (input,ctl)
41 2. Hash table by (daddr,family,reqid) to find what SAs exist for given
42 destination/tunnel endpoint. (output)
45 static DEFINE_SPINLOCK(xfrm_state_lock);
47 /* Hash table to find appropriate SA towards given target (endpoint
48 * of tunnel or destination of transport mode) allowed by selector.
50 * Main use is finding SA after policy selected tunnel or transport mode.
51 * Also, it can be used by ah/esp icmp error handler to find offending SA.
53 static LIST_HEAD(xfrm_state_all);
54 static struct hlist_head *xfrm_state_bydst __read_mostly;
55 static struct hlist_head *xfrm_state_bysrc __read_mostly;
56 static struct hlist_head *xfrm_state_byspi __read_mostly;
57 static unsigned int xfrm_state_hmask __read_mostly;
58 static unsigned int xfrm_state_hashmax __read_mostly = 1 * 1024 * 1024;
59 static unsigned int xfrm_state_num;
60 static unsigned int xfrm_state_genid;
62 static struct xfrm_state_afinfo *xfrm_state_get_afinfo(unsigned int family);
63 static void xfrm_state_put_afinfo(struct xfrm_state_afinfo *afinfo);
65 #ifdef CONFIG_AUDITSYSCALL
66 static void xfrm_audit_state_replay(struct xfrm_state *x,
67 struct sk_buff *skb, __be32 net_seq);
69 #define xfrm_audit_state_replay(x, s, sq) do { ; } while (0)
70 #endif /* CONFIG_AUDITSYSCALL */
72 static inline unsigned int xfrm_dst_hash(xfrm_address_t *daddr,
73 xfrm_address_t *saddr,
75 unsigned short family)
77 return __xfrm_dst_hash(daddr, saddr, reqid, family, xfrm_state_hmask);
80 static inline unsigned int xfrm_src_hash(xfrm_address_t *daddr,
81 xfrm_address_t *saddr,
82 unsigned short family)
84 return __xfrm_src_hash(daddr, saddr, family, xfrm_state_hmask);
87 static inline unsigned int
88 xfrm_spi_hash(xfrm_address_t *daddr, __be32 spi, u8 proto, unsigned short family)
90 return __xfrm_spi_hash(daddr, spi, proto, family, xfrm_state_hmask);
93 static void xfrm_hash_transfer(struct hlist_head *list,
94 struct hlist_head *ndsttable,
95 struct hlist_head *nsrctable,
96 struct hlist_head *nspitable,
97 unsigned int nhashmask)
99 struct hlist_node *entry, *tmp;
100 struct xfrm_state *x;
102 hlist_for_each_entry_safe(x, entry, tmp, list, bydst) {
105 h = __xfrm_dst_hash(&x->id.daddr, &x->props.saddr,
106 x->props.reqid, x->props.family,
108 hlist_add_head(&x->bydst, ndsttable+h);
110 h = __xfrm_src_hash(&x->id.daddr, &x->props.saddr,
113 hlist_add_head(&x->bysrc, nsrctable+h);
116 h = __xfrm_spi_hash(&x->id.daddr, x->id.spi,
117 x->id.proto, x->props.family,
119 hlist_add_head(&x->byspi, nspitable+h);
124 static unsigned long xfrm_hash_new_size(void)
126 return ((xfrm_state_hmask + 1) << 1) *
127 sizeof(struct hlist_head);
130 static DEFINE_MUTEX(hash_resize_mutex);
132 static void xfrm_hash_resize(struct work_struct *__unused)
134 struct hlist_head *ndst, *nsrc, *nspi, *odst, *osrc, *ospi;
135 unsigned long nsize, osize;
136 unsigned int nhashmask, ohashmask;
139 mutex_lock(&hash_resize_mutex);
141 nsize = xfrm_hash_new_size();
142 ndst = xfrm_hash_alloc(nsize);
145 nsrc = xfrm_hash_alloc(nsize);
147 xfrm_hash_free(ndst, nsize);
150 nspi = xfrm_hash_alloc(nsize);
152 xfrm_hash_free(ndst, nsize);
153 xfrm_hash_free(nsrc, nsize);
157 spin_lock_bh(&xfrm_state_lock);
159 nhashmask = (nsize / sizeof(struct hlist_head)) - 1U;
160 for (i = xfrm_state_hmask; i >= 0; i--)
161 xfrm_hash_transfer(xfrm_state_bydst+i, ndst, nsrc, nspi,
164 odst = xfrm_state_bydst;
165 osrc = xfrm_state_bysrc;
166 ospi = xfrm_state_byspi;
167 ohashmask = xfrm_state_hmask;
169 xfrm_state_bydst = ndst;
170 xfrm_state_bysrc = nsrc;
171 xfrm_state_byspi = nspi;
172 xfrm_state_hmask = nhashmask;
174 spin_unlock_bh(&xfrm_state_lock);
176 osize = (ohashmask + 1) * sizeof(struct hlist_head);
177 xfrm_hash_free(odst, osize);
178 xfrm_hash_free(osrc, osize);
179 xfrm_hash_free(ospi, osize);
182 mutex_unlock(&hash_resize_mutex);
185 static DECLARE_WORK(xfrm_hash_work, xfrm_hash_resize);
187 DECLARE_WAIT_QUEUE_HEAD(km_waitq);
188 EXPORT_SYMBOL(km_waitq);
190 static DEFINE_RWLOCK(xfrm_state_afinfo_lock);
191 static struct xfrm_state_afinfo *xfrm_state_afinfo[NPROTO];
193 static struct work_struct xfrm_state_gc_work;
194 static HLIST_HEAD(xfrm_state_gc_list);
195 static DEFINE_SPINLOCK(xfrm_state_gc_lock);
197 int __xfrm_state_delete(struct xfrm_state *x);
199 int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol);
200 void km_state_expired(struct xfrm_state *x, int hard, u32 pid);
202 static struct xfrm_state_afinfo *xfrm_state_lock_afinfo(unsigned int family)
204 struct xfrm_state_afinfo *afinfo;
205 if (unlikely(family >= NPROTO))
207 write_lock_bh(&xfrm_state_afinfo_lock);
208 afinfo = xfrm_state_afinfo[family];
209 if (unlikely(!afinfo))
210 write_unlock_bh(&xfrm_state_afinfo_lock);
214 static void xfrm_state_unlock_afinfo(struct xfrm_state_afinfo *afinfo)
215 __releases(xfrm_state_afinfo_lock)
217 write_unlock_bh(&xfrm_state_afinfo_lock);
220 int xfrm_register_type(const struct xfrm_type *type, unsigned short family)
222 struct xfrm_state_afinfo *afinfo = xfrm_state_lock_afinfo(family);
223 const struct xfrm_type **typemap;
226 if (unlikely(afinfo == NULL))
227 return -EAFNOSUPPORT;
228 typemap = afinfo->type_map;
230 if (likely(typemap[type->proto] == NULL))
231 typemap[type->proto] = type;
234 xfrm_state_unlock_afinfo(afinfo);
237 EXPORT_SYMBOL(xfrm_register_type);
239 int xfrm_unregister_type(const struct xfrm_type *type, unsigned short family)
241 struct xfrm_state_afinfo *afinfo = xfrm_state_lock_afinfo(family);
242 const struct xfrm_type **typemap;
245 if (unlikely(afinfo == NULL))
246 return -EAFNOSUPPORT;
247 typemap = afinfo->type_map;
249 if (unlikely(typemap[type->proto] != type))
252 typemap[type->proto] = NULL;
253 xfrm_state_unlock_afinfo(afinfo);
256 EXPORT_SYMBOL(xfrm_unregister_type);
258 static const struct xfrm_type *xfrm_get_type(u8 proto, unsigned short family)
260 struct xfrm_state_afinfo *afinfo;
261 const struct xfrm_type **typemap;
262 const struct xfrm_type *type;
263 int modload_attempted = 0;
266 afinfo = xfrm_state_get_afinfo(family);
267 if (unlikely(afinfo == NULL))
269 typemap = afinfo->type_map;
271 type = typemap[proto];
272 if (unlikely(type && !try_module_get(type->owner)))
274 if (!type && !modload_attempted) {
275 xfrm_state_put_afinfo(afinfo);
276 request_module("xfrm-type-%d-%d", family, proto);
277 modload_attempted = 1;
281 xfrm_state_put_afinfo(afinfo);
285 static void xfrm_put_type(const struct xfrm_type *type)
287 module_put(type->owner);
290 int xfrm_register_mode(struct xfrm_mode *mode, int family)
292 struct xfrm_state_afinfo *afinfo;
293 struct xfrm_mode **modemap;
296 if (unlikely(mode->encap >= XFRM_MODE_MAX))
299 afinfo = xfrm_state_lock_afinfo(family);
300 if (unlikely(afinfo == NULL))
301 return -EAFNOSUPPORT;
304 modemap = afinfo->mode_map;
305 if (modemap[mode->encap])
309 if (!try_module_get(afinfo->owner))
312 mode->afinfo = afinfo;
313 modemap[mode->encap] = mode;
317 xfrm_state_unlock_afinfo(afinfo);
320 EXPORT_SYMBOL(xfrm_register_mode);
322 int xfrm_unregister_mode(struct xfrm_mode *mode, int family)
324 struct xfrm_state_afinfo *afinfo;
325 struct xfrm_mode **modemap;
328 if (unlikely(mode->encap >= XFRM_MODE_MAX))
331 afinfo = xfrm_state_lock_afinfo(family);
332 if (unlikely(afinfo == NULL))
333 return -EAFNOSUPPORT;
336 modemap = afinfo->mode_map;
337 if (likely(modemap[mode->encap] == mode)) {
338 modemap[mode->encap] = NULL;
339 module_put(mode->afinfo->owner);
343 xfrm_state_unlock_afinfo(afinfo);
346 EXPORT_SYMBOL(xfrm_unregister_mode);
348 static struct xfrm_mode *xfrm_get_mode(unsigned int encap, int family)
350 struct xfrm_state_afinfo *afinfo;
351 struct xfrm_mode *mode;
352 int modload_attempted = 0;
354 if (unlikely(encap >= XFRM_MODE_MAX))
358 afinfo = xfrm_state_get_afinfo(family);
359 if (unlikely(afinfo == NULL))
362 mode = afinfo->mode_map[encap];
363 if (unlikely(mode && !try_module_get(mode->owner)))
365 if (!mode && !modload_attempted) {
366 xfrm_state_put_afinfo(afinfo);
367 request_module("xfrm-mode-%d-%d", family, encap);
368 modload_attempted = 1;
372 xfrm_state_put_afinfo(afinfo);
376 static void xfrm_put_mode(struct xfrm_mode *mode)
378 module_put(mode->owner);
381 static void xfrm_state_gc_destroy(struct xfrm_state *x)
383 del_timer_sync(&x->timer);
384 del_timer_sync(&x->rtimer);
391 xfrm_put_mode(x->inner_mode);
392 if (x->inner_mode_iaf)
393 xfrm_put_mode(x->inner_mode_iaf);
395 xfrm_put_mode(x->outer_mode);
397 x->type->destructor(x);
398 xfrm_put_type(x->type);
400 security_xfrm_state_free(x);
404 static void xfrm_state_gc_task(struct work_struct *data)
406 struct xfrm_state *x;
407 struct hlist_node *entry, *tmp;
408 struct hlist_head gc_list;
410 spin_lock_bh(&xfrm_state_gc_lock);
411 gc_list.first = xfrm_state_gc_list.first;
412 INIT_HLIST_HEAD(&xfrm_state_gc_list);
413 spin_unlock_bh(&xfrm_state_gc_lock);
415 hlist_for_each_entry_safe(x, entry, tmp, &gc_list, bydst)
416 xfrm_state_gc_destroy(x);
421 static inline unsigned long make_jiffies(long secs)
423 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
424 return MAX_SCHEDULE_TIMEOUT-1;
429 static void xfrm_timer_handler(unsigned long data)
431 struct xfrm_state *x = (struct xfrm_state*)data;
432 unsigned long now = get_seconds();
433 long next = LONG_MAX;
438 if (x->km.state == XFRM_STATE_DEAD)
440 if (x->km.state == XFRM_STATE_EXPIRED)
442 if (x->lft.hard_add_expires_seconds) {
443 long tmo = x->lft.hard_add_expires_seconds +
444 x->curlft.add_time - now;
450 if (x->lft.hard_use_expires_seconds) {
451 long tmo = x->lft.hard_use_expires_seconds +
452 (x->curlft.use_time ? : now) - now;
460 if (x->lft.soft_add_expires_seconds) {
461 long tmo = x->lft.soft_add_expires_seconds +
462 x->curlft.add_time - now;
468 if (x->lft.soft_use_expires_seconds) {
469 long tmo = x->lft.soft_use_expires_seconds +
470 (x->curlft.use_time ? : now) - now;
479 km_state_expired(x, 0, 0);
481 if (next != LONG_MAX)
482 mod_timer(&x->timer, jiffies + make_jiffies(next));
487 if (x->km.state == XFRM_STATE_ACQ && x->id.spi == 0) {
488 x->km.state = XFRM_STATE_EXPIRED;
494 err = __xfrm_state_delete(x);
495 if (!err && x->id.spi)
496 km_state_expired(x, 1, 0);
498 xfrm_audit_state_delete(x, err ? 0 : 1,
499 audit_get_loginuid(current),
500 audit_get_sessionid(current), 0);
503 spin_unlock(&x->lock);
506 static void xfrm_replay_timer_handler(unsigned long data);
508 struct xfrm_state *xfrm_state_alloc(void)
510 struct xfrm_state *x;
512 x = kzalloc(sizeof(struct xfrm_state), GFP_ATOMIC);
515 atomic_set(&x->refcnt, 1);
516 atomic_set(&x->tunnel_users, 0);
517 INIT_LIST_HEAD(&x->all);
518 INIT_HLIST_NODE(&x->bydst);
519 INIT_HLIST_NODE(&x->bysrc);
520 INIT_HLIST_NODE(&x->byspi);
521 setup_timer(&x->timer, xfrm_timer_handler, (unsigned long)x);
522 setup_timer(&x->rtimer, xfrm_replay_timer_handler,
524 x->curlft.add_time = get_seconds();
525 x->lft.soft_byte_limit = XFRM_INF;
526 x->lft.soft_packet_limit = XFRM_INF;
527 x->lft.hard_byte_limit = XFRM_INF;
528 x->lft.hard_packet_limit = XFRM_INF;
529 x->replay_maxage = 0;
530 x->replay_maxdiff = 0;
531 x->inner_mode = NULL;
532 x->inner_mode_iaf = NULL;
533 spin_lock_init(&x->lock);
537 EXPORT_SYMBOL(xfrm_state_alloc);
539 void __xfrm_state_destroy(struct xfrm_state *x)
541 BUG_TRAP(x->km.state == XFRM_STATE_DEAD);
543 spin_lock_bh(&xfrm_state_lock);
545 spin_unlock_bh(&xfrm_state_lock);
547 spin_lock_bh(&xfrm_state_gc_lock);
548 hlist_add_head(&x->bydst, &xfrm_state_gc_list);
549 spin_unlock_bh(&xfrm_state_gc_lock);
550 schedule_work(&xfrm_state_gc_work);
552 EXPORT_SYMBOL(__xfrm_state_destroy);
554 int __xfrm_state_delete(struct xfrm_state *x)
558 if (x->km.state != XFRM_STATE_DEAD) {
559 x->km.state = XFRM_STATE_DEAD;
560 spin_lock(&xfrm_state_lock);
561 hlist_del(&x->bydst);
562 hlist_del(&x->bysrc);
564 hlist_del(&x->byspi);
566 spin_unlock(&xfrm_state_lock);
568 /* All xfrm_state objects are created by xfrm_state_alloc.
569 * The xfrm_state_alloc call gives a reference, and that
570 * is what we are dropping here.
578 EXPORT_SYMBOL(__xfrm_state_delete);
580 int xfrm_state_delete(struct xfrm_state *x)
584 spin_lock_bh(&x->lock);
585 err = __xfrm_state_delete(x);
586 spin_unlock_bh(&x->lock);
590 EXPORT_SYMBOL(xfrm_state_delete);
592 #ifdef CONFIG_SECURITY_NETWORK_XFRM
594 xfrm_state_flush_secctx_check(u8 proto, struct xfrm_audit *audit_info)
598 for (i = 0; i <= xfrm_state_hmask; i++) {
599 struct hlist_node *entry;
600 struct xfrm_state *x;
602 hlist_for_each_entry(x, entry, xfrm_state_bydst+i, bydst) {
603 if (xfrm_id_proto_match(x->id.proto, proto) &&
604 (err = security_xfrm_state_delete(x)) != 0) {
605 xfrm_audit_state_delete(x, 0,
606 audit_info->loginuid,
607 audit_info->sessionid,
618 xfrm_state_flush_secctx_check(u8 proto, struct xfrm_audit *audit_info)
624 int xfrm_state_flush(u8 proto, struct xfrm_audit *audit_info)
628 spin_lock_bh(&xfrm_state_lock);
629 err = xfrm_state_flush_secctx_check(proto, audit_info);
633 for (i = 0; i <= xfrm_state_hmask; i++) {
634 struct hlist_node *entry;
635 struct xfrm_state *x;
637 hlist_for_each_entry(x, entry, xfrm_state_bydst+i, bydst) {
638 if (!xfrm_state_kern(x) &&
639 xfrm_id_proto_match(x->id.proto, proto)) {
641 spin_unlock_bh(&xfrm_state_lock);
643 err = xfrm_state_delete(x);
644 xfrm_audit_state_delete(x, err ? 0 : 1,
645 audit_info->loginuid,
646 audit_info->sessionid,
650 spin_lock_bh(&xfrm_state_lock);
658 spin_unlock_bh(&xfrm_state_lock);
662 EXPORT_SYMBOL(xfrm_state_flush);
664 void xfrm_sad_getinfo(struct xfrmk_sadinfo *si)
666 spin_lock_bh(&xfrm_state_lock);
667 si->sadcnt = xfrm_state_num;
668 si->sadhcnt = xfrm_state_hmask;
669 si->sadhmcnt = xfrm_state_hashmax;
670 spin_unlock_bh(&xfrm_state_lock);
672 EXPORT_SYMBOL(xfrm_sad_getinfo);
675 xfrm_init_tempsel(struct xfrm_state *x, struct flowi *fl,
676 struct xfrm_tmpl *tmpl,
677 xfrm_address_t *daddr, xfrm_address_t *saddr,
678 unsigned short family)
680 struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
683 afinfo->init_tempsel(x, fl, tmpl, daddr, saddr);
684 xfrm_state_put_afinfo(afinfo);
688 static struct xfrm_state *__xfrm_state_lookup(xfrm_address_t *daddr, __be32 spi, u8 proto, unsigned short family)
690 unsigned int h = xfrm_spi_hash(daddr, spi, proto, family);
691 struct xfrm_state *x;
692 struct hlist_node *entry;
694 hlist_for_each_entry(x, entry, xfrm_state_byspi+h, byspi) {
695 if (x->props.family != family ||
697 x->id.proto != proto)
702 if (x->id.daddr.a4 != daddr->a4)
706 if (!ipv6_addr_equal((struct in6_addr *)daddr,
720 static struct xfrm_state *__xfrm_state_lookup_byaddr(xfrm_address_t *daddr, xfrm_address_t *saddr, u8 proto, unsigned short family)
722 unsigned int h = xfrm_src_hash(daddr, saddr, family);
723 struct xfrm_state *x;
724 struct hlist_node *entry;
726 hlist_for_each_entry(x, entry, xfrm_state_bysrc+h, bysrc) {
727 if (x->props.family != family ||
728 x->id.proto != proto)
733 if (x->id.daddr.a4 != daddr->a4 ||
734 x->props.saddr.a4 != saddr->a4)
738 if (!ipv6_addr_equal((struct in6_addr *)daddr,
741 !ipv6_addr_equal((struct in6_addr *)saddr,
755 static inline struct xfrm_state *
756 __xfrm_state_locate(struct xfrm_state *x, int use_spi, int family)
759 return __xfrm_state_lookup(&x->id.daddr, x->id.spi,
760 x->id.proto, family);
762 return __xfrm_state_lookup_byaddr(&x->id.daddr,
764 x->id.proto, family);
767 static void xfrm_hash_grow_check(int have_hash_collision)
769 if (have_hash_collision &&
770 (xfrm_state_hmask + 1) < xfrm_state_hashmax &&
771 xfrm_state_num > xfrm_state_hmask)
772 schedule_work(&xfrm_hash_work);
776 xfrm_state_find(xfrm_address_t *daddr, xfrm_address_t *saddr,
777 struct flowi *fl, struct xfrm_tmpl *tmpl,
778 struct xfrm_policy *pol, int *err,
779 unsigned short family)
782 struct hlist_node *entry;
783 struct xfrm_state *x, *x0;
784 int acquire_in_progress = 0;
786 struct xfrm_state *best = NULL;
788 spin_lock_bh(&xfrm_state_lock);
789 h = xfrm_dst_hash(daddr, saddr, tmpl->reqid, family);
790 hlist_for_each_entry(x, entry, xfrm_state_bydst+h, bydst) {
791 if (x->props.family == family &&
792 x->props.reqid == tmpl->reqid &&
793 !(x->props.flags & XFRM_STATE_WILDRECV) &&
794 xfrm_state_addr_check(x, daddr, saddr, family) &&
795 tmpl->mode == x->props.mode &&
796 tmpl->id.proto == x->id.proto &&
797 (tmpl->id.spi == x->id.spi || !tmpl->id.spi)) {
799 1. There is a valid state with matching selector.
801 2. Valid state with inappropriate selector. Skip.
803 Entering area of "sysdeps".
805 3. If state is not valid, selector is temporary,
806 it selects only session which triggered
807 previous resolution. Key manager will do
808 something to install a state with proper
811 if (x->km.state == XFRM_STATE_VALID) {
812 if ((x->sel.family && !xfrm_selector_match(&x->sel, fl, x->sel.family)) ||
813 !security_xfrm_state_pol_flow_match(x, pol, fl))
816 best->km.dying > x->km.dying ||
817 (best->km.dying == x->km.dying &&
818 best->curlft.add_time < x->curlft.add_time))
820 } else if (x->km.state == XFRM_STATE_ACQ) {
821 acquire_in_progress = 1;
822 } else if (x->km.state == XFRM_STATE_ERROR ||
823 x->km.state == XFRM_STATE_EXPIRED) {
824 if (xfrm_selector_match(&x->sel, fl, x->sel.family) &&
825 security_xfrm_state_pol_flow_match(x, pol, fl))
832 if (!x && !error && !acquire_in_progress) {
834 (x0 = __xfrm_state_lookup(daddr, tmpl->id.spi,
835 tmpl->id.proto, family)) != NULL) {
840 x = xfrm_state_alloc();
845 /* Initialize temporary selector matching only
846 * to current session. */
847 xfrm_init_tempsel(x, fl, tmpl, daddr, saddr, family);
849 error = security_xfrm_state_alloc_acquire(x, pol->security, fl->secid);
851 x->km.state = XFRM_STATE_DEAD;
857 if (km_query(x, tmpl, pol) == 0) {
858 x->km.state = XFRM_STATE_ACQ;
859 hlist_add_head(&x->bydst, xfrm_state_bydst+h);
860 h = xfrm_src_hash(daddr, saddr, family);
861 hlist_add_head(&x->bysrc, xfrm_state_bysrc+h);
863 h = xfrm_spi_hash(&x->id.daddr, x->id.spi, x->id.proto, family);
864 hlist_add_head(&x->byspi, xfrm_state_byspi+h);
866 x->lft.hard_add_expires_seconds = sysctl_xfrm_acq_expires;
867 x->timer.expires = jiffies + sysctl_xfrm_acq_expires*HZ;
868 add_timer(&x->timer);
870 xfrm_hash_grow_check(x->bydst.next != NULL);
872 x->km.state = XFRM_STATE_DEAD;
882 *err = acquire_in_progress ? -EAGAIN : error;
883 spin_unlock_bh(&xfrm_state_lock);
888 xfrm_stateonly_find(xfrm_address_t *daddr, xfrm_address_t *saddr,
889 unsigned short family, u8 mode, u8 proto, u32 reqid)
892 struct xfrm_state *rx = NULL, *x = NULL;
893 struct hlist_node *entry;
895 spin_lock(&xfrm_state_lock);
896 h = xfrm_dst_hash(daddr, saddr, reqid, family);
897 hlist_for_each_entry(x, entry, xfrm_state_bydst+h, bydst) {
898 if (x->props.family == family &&
899 x->props.reqid == reqid &&
900 !(x->props.flags & XFRM_STATE_WILDRECV) &&
901 xfrm_state_addr_check(x, daddr, saddr, family) &&
902 mode == x->props.mode &&
903 proto == x->id.proto &&
904 x->km.state == XFRM_STATE_VALID) {
912 spin_unlock(&xfrm_state_lock);
917 EXPORT_SYMBOL(xfrm_stateonly_find);
919 static void __xfrm_state_insert(struct xfrm_state *x)
923 x->genid = ++xfrm_state_genid;
925 list_add_tail(&x->all, &xfrm_state_all);
927 h = xfrm_dst_hash(&x->id.daddr, &x->props.saddr,
928 x->props.reqid, x->props.family);
929 hlist_add_head(&x->bydst, xfrm_state_bydst+h);
931 h = xfrm_src_hash(&x->id.daddr, &x->props.saddr, x->props.family);
932 hlist_add_head(&x->bysrc, xfrm_state_bysrc+h);
935 h = xfrm_spi_hash(&x->id.daddr, x->id.spi, x->id.proto,
938 hlist_add_head(&x->byspi, xfrm_state_byspi+h);
941 mod_timer(&x->timer, jiffies + HZ);
942 if (x->replay_maxage)
943 mod_timer(&x->rtimer, jiffies + x->replay_maxage);
949 xfrm_hash_grow_check(x->bydst.next != NULL);
952 /* xfrm_state_lock is held */
953 static void __xfrm_state_bump_genids(struct xfrm_state *xnew)
955 unsigned short family = xnew->props.family;
956 u32 reqid = xnew->props.reqid;
957 struct xfrm_state *x;
958 struct hlist_node *entry;
961 h = xfrm_dst_hash(&xnew->id.daddr, &xnew->props.saddr, reqid, family);
962 hlist_for_each_entry(x, entry, xfrm_state_bydst+h, bydst) {
963 if (x->props.family == family &&
964 x->props.reqid == reqid &&
965 !xfrm_addr_cmp(&x->id.daddr, &xnew->id.daddr, family) &&
966 !xfrm_addr_cmp(&x->props.saddr, &xnew->props.saddr, family))
967 x->genid = xfrm_state_genid;
971 void xfrm_state_insert(struct xfrm_state *x)
973 spin_lock_bh(&xfrm_state_lock);
974 __xfrm_state_bump_genids(x);
975 __xfrm_state_insert(x);
976 spin_unlock_bh(&xfrm_state_lock);
978 EXPORT_SYMBOL(xfrm_state_insert);
980 /* xfrm_state_lock is held */
981 static struct xfrm_state *__find_acq_core(unsigned short family, u8 mode, u32 reqid, u8 proto, xfrm_address_t *daddr, xfrm_address_t *saddr, int create)
983 unsigned int h = xfrm_dst_hash(daddr, saddr, reqid, family);
984 struct hlist_node *entry;
985 struct xfrm_state *x;
987 hlist_for_each_entry(x, entry, xfrm_state_bydst+h, bydst) {
988 if (x->props.reqid != reqid ||
989 x->props.mode != mode ||
990 x->props.family != family ||
991 x->km.state != XFRM_STATE_ACQ ||
993 x->id.proto != proto)
998 if (x->id.daddr.a4 != daddr->a4 ||
999 x->props.saddr.a4 != saddr->a4)
1003 if (!ipv6_addr_equal((struct in6_addr *)x->id.daddr.a6,
1004 (struct in6_addr *)daddr) ||
1005 !ipv6_addr_equal((struct in6_addr *)
1007 (struct in6_addr *)saddr))
1019 x = xfrm_state_alloc();
1023 x->sel.daddr.a4 = daddr->a4;
1024 x->sel.saddr.a4 = saddr->a4;
1025 x->sel.prefixlen_d = 32;
1026 x->sel.prefixlen_s = 32;
1027 x->props.saddr.a4 = saddr->a4;
1028 x->id.daddr.a4 = daddr->a4;
1032 ipv6_addr_copy((struct in6_addr *)x->sel.daddr.a6,
1033 (struct in6_addr *)daddr);
1034 ipv6_addr_copy((struct in6_addr *)x->sel.saddr.a6,
1035 (struct in6_addr *)saddr);
1036 x->sel.prefixlen_d = 128;
1037 x->sel.prefixlen_s = 128;
1038 ipv6_addr_copy((struct in6_addr *)x->props.saddr.a6,
1039 (struct in6_addr *)saddr);
1040 ipv6_addr_copy((struct in6_addr *)x->id.daddr.a6,
1041 (struct in6_addr *)daddr);
1045 x->km.state = XFRM_STATE_ACQ;
1046 x->id.proto = proto;
1047 x->props.family = family;
1048 x->props.mode = mode;
1049 x->props.reqid = reqid;
1050 x->lft.hard_add_expires_seconds = sysctl_xfrm_acq_expires;
1052 x->timer.expires = jiffies + sysctl_xfrm_acq_expires*HZ;
1053 add_timer(&x->timer);
1054 hlist_add_head(&x->bydst, xfrm_state_bydst+h);
1055 h = xfrm_src_hash(daddr, saddr, family);
1056 hlist_add_head(&x->bysrc, xfrm_state_bysrc+h);
1060 xfrm_hash_grow_check(x->bydst.next != NULL);
1066 static struct xfrm_state *__xfrm_find_acq_byseq(u32 seq);
1068 int xfrm_state_add(struct xfrm_state *x)
1070 struct xfrm_state *x1;
1073 int use_spi = xfrm_id_proto_match(x->id.proto, IPSEC_PROTO_ANY);
1075 family = x->props.family;
1077 spin_lock_bh(&xfrm_state_lock);
1079 x1 = __xfrm_state_locate(x, use_spi, family);
1087 if (use_spi && x->km.seq) {
1088 x1 = __xfrm_find_acq_byseq(x->km.seq);
1089 if (x1 && ((x1->id.proto != x->id.proto) ||
1090 xfrm_addr_cmp(&x1->id.daddr, &x->id.daddr, family))) {
1097 x1 = __find_acq_core(family, x->props.mode, x->props.reqid,
1099 &x->id.daddr, &x->props.saddr, 0);
1101 __xfrm_state_bump_genids(x);
1102 __xfrm_state_insert(x);
1106 spin_unlock_bh(&xfrm_state_lock);
1109 xfrm_state_delete(x1);
1115 EXPORT_SYMBOL(xfrm_state_add);
1117 #ifdef CONFIG_XFRM_MIGRATE
1118 static struct xfrm_state *xfrm_state_clone(struct xfrm_state *orig, int *errp)
1121 struct xfrm_state *x = xfrm_state_alloc();
1125 memcpy(&x->id, &orig->id, sizeof(x->id));
1126 memcpy(&x->sel, &orig->sel, sizeof(x->sel));
1127 memcpy(&x->lft, &orig->lft, sizeof(x->lft));
1128 x->props.mode = orig->props.mode;
1129 x->props.replay_window = orig->props.replay_window;
1130 x->props.reqid = orig->props.reqid;
1131 x->props.family = orig->props.family;
1132 x->props.saddr = orig->props.saddr;
1135 x->aalg = xfrm_algo_clone(orig->aalg);
1139 x->props.aalgo = orig->props.aalgo;
1142 x->ealg = xfrm_algo_clone(orig->ealg);
1146 x->props.ealgo = orig->props.ealgo;
1149 x->calg = xfrm_algo_clone(orig->calg);
1153 x->props.calgo = orig->props.calgo;
1156 x->encap = kmemdup(orig->encap, sizeof(*x->encap), GFP_KERNEL);
1162 x->coaddr = kmemdup(orig->coaddr, sizeof(*x->coaddr),
1168 err = xfrm_init_state(x);
1172 x->props.flags = orig->props.flags;
1174 x->curlft.add_time = orig->curlft.add_time;
1175 x->km.state = orig->km.state;
1176 x->km.seq = orig->km.seq;
1194 /* xfrm_state_lock is held */
1195 struct xfrm_state * xfrm_migrate_state_find(struct xfrm_migrate *m)
1198 struct xfrm_state *x;
1199 struct hlist_node *entry;
1202 h = xfrm_dst_hash(&m->old_daddr, &m->old_saddr,
1203 m->reqid, m->old_family);
1204 hlist_for_each_entry(x, entry, xfrm_state_bydst+h, bydst) {
1205 if (x->props.mode != m->mode ||
1206 x->id.proto != m->proto)
1208 if (m->reqid && x->props.reqid != m->reqid)
1210 if (xfrm_addr_cmp(&x->id.daddr, &m->old_daddr,
1212 xfrm_addr_cmp(&x->props.saddr, &m->old_saddr,
1219 h = xfrm_src_hash(&m->old_daddr, &m->old_saddr,
1221 hlist_for_each_entry(x, entry, xfrm_state_bysrc+h, bysrc) {
1222 if (x->props.mode != m->mode ||
1223 x->id.proto != m->proto)
1225 if (xfrm_addr_cmp(&x->id.daddr, &m->old_daddr,
1227 xfrm_addr_cmp(&x->props.saddr, &m->old_saddr,
1237 EXPORT_SYMBOL(xfrm_migrate_state_find);
1239 struct xfrm_state * xfrm_state_migrate(struct xfrm_state *x,
1240 struct xfrm_migrate *m)
1242 struct xfrm_state *xc;
1245 xc = xfrm_state_clone(x, &err);
1249 memcpy(&xc->id.daddr, &m->new_daddr, sizeof(xc->id.daddr));
1250 memcpy(&xc->props.saddr, &m->new_saddr, sizeof(xc->props.saddr));
1253 if (!xfrm_addr_cmp(&x->id.daddr, &m->new_daddr, m->new_family)) {
1254 /* a care is needed when the destination address of the
1255 state is to be updated as it is a part of triplet */
1256 xfrm_state_insert(xc);
1258 if ((err = xfrm_state_add(xc)) < 0)
1267 EXPORT_SYMBOL(xfrm_state_migrate);
1270 int xfrm_state_update(struct xfrm_state *x)
1272 struct xfrm_state *x1;
1274 int use_spi = xfrm_id_proto_match(x->id.proto, IPSEC_PROTO_ANY);
1276 spin_lock_bh(&xfrm_state_lock);
1277 x1 = __xfrm_state_locate(x, use_spi, x->props.family);
1283 if (xfrm_state_kern(x1)) {
1289 if (x1->km.state == XFRM_STATE_ACQ) {
1290 __xfrm_state_insert(x);
1296 spin_unlock_bh(&xfrm_state_lock);
1302 xfrm_state_delete(x1);
1308 spin_lock_bh(&x1->lock);
1309 if (likely(x1->km.state == XFRM_STATE_VALID)) {
1310 if (x->encap && x1->encap)
1311 memcpy(x1->encap, x->encap, sizeof(*x1->encap));
1312 if (x->coaddr && x1->coaddr) {
1313 memcpy(x1->coaddr, x->coaddr, sizeof(*x1->coaddr));
1315 if (!use_spi && memcmp(&x1->sel, &x->sel, sizeof(x1->sel)))
1316 memcpy(&x1->sel, &x->sel, sizeof(x1->sel));
1317 memcpy(&x1->lft, &x->lft, sizeof(x1->lft));
1320 mod_timer(&x1->timer, jiffies + HZ);
1321 if (x1->curlft.use_time)
1322 xfrm_state_check_expire(x1);
1326 spin_unlock_bh(&x1->lock);
1332 EXPORT_SYMBOL(xfrm_state_update);
1334 int xfrm_state_check_expire(struct xfrm_state *x)
1336 if (!x->curlft.use_time)
1337 x->curlft.use_time = get_seconds();
1339 if (x->km.state != XFRM_STATE_VALID)
1342 if (x->curlft.bytes >= x->lft.hard_byte_limit ||
1343 x->curlft.packets >= x->lft.hard_packet_limit) {
1344 x->km.state = XFRM_STATE_EXPIRED;
1345 mod_timer(&x->timer, jiffies);
1350 (x->curlft.bytes >= x->lft.soft_byte_limit ||
1351 x->curlft.packets >= x->lft.soft_packet_limit)) {
1353 km_state_expired(x, 0, 0);
1357 EXPORT_SYMBOL(xfrm_state_check_expire);
1360 xfrm_state_lookup(xfrm_address_t *daddr, __be32 spi, u8 proto,
1361 unsigned short family)
1363 struct xfrm_state *x;
1365 spin_lock_bh(&xfrm_state_lock);
1366 x = __xfrm_state_lookup(daddr, spi, proto, family);
1367 spin_unlock_bh(&xfrm_state_lock);
1370 EXPORT_SYMBOL(xfrm_state_lookup);
1373 xfrm_state_lookup_byaddr(xfrm_address_t *daddr, xfrm_address_t *saddr,
1374 u8 proto, unsigned short family)
1376 struct xfrm_state *x;
1378 spin_lock_bh(&xfrm_state_lock);
1379 x = __xfrm_state_lookup_byaddr(daddr, saddr, proto, family);
1380 spin_unlock_bh(&xfrm_state_lock);
1383 EXPORT_SYMBOL(xfrm_state_lookup_byaddr);
1386 xfrm_find_acq(u8 mode, u32 reqid, u8 proto,
1387 xfrm_address_t *daddr, xfrm_address_t *saddr,
1388 int create, unsigned short family)
1390 struct xfrm_state *x;
1392 spin_lock_bh(&xfrm_state_lock);
1393 x = __find_acq_core(family, mode, reqid, proto, daddr, saddr, create);
1394 spin_unlock_bh(&xfrm_state_lock);
1398 EXPORT_SYMBOL(xfrm_find_acq);
1400 #ifdef CONFIG_XFRM_SUB_POLICY
1402 xfrm_tmpl_sort(struct xfrm_tmpl **dst, struct xfrm_tmpl **src, int n,
1403 unsigned short family)
1406 struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
1408 return -EAFNOSUPPORT;
1410 spin_lock_bh(&xfrm_state_lock);
1411 if (afinfo->tmpl_sort)
1412 err = afinfo->tmpl_sort(dst, src, n);
1413 spin_unlock_bh(&xfrm_state_lock);
1414 xfrm_state_put_afinfo(afinfo);
1417 EXPORT_SYMBOL(xfrm_tmpl_sort);
1420 xfrm_state_sort(struct xfrm_state **dst, struct xfrm_state **src, int n,
1421 unsigned short family)
1424 struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
1426 return -EAFNOSUPPORT;
1428 spin_lock_bh(&xfrm_state_lock);
1429 if (afinfo->state_sort)
1430 err = afinfo->state_sort(dst, src, n);
1431 spin_unlock_bh(&xfrm_state_lock);
1432 xfrm_state_put_afinfo(afinfo);
1435 EXPORT_SYMBOL(xfrm_state_sort);
1438 /* Silly enough, but I'm lazy to build resolution list */
1440 static struct xfrm_state *__xfrm_find_acq_byseq(u32 seq)
1444 for (i = 0; i <= xfrm_state_hmask; i++) {
1445 struct hlist_node *entry;
1446 struct xfrm_state *x;
1448 hlist_for_each_entry(x, entry, xfrm_state_bydst+i, bydst) {
1449 if (x->km.seq == seq &&
1450 x->km.state == XFRM_STATE_ACQ) {
1459 struct xfrm_state *xfrm_find_acq_byseq(u32 seq)
1461 struct xfrm_state *x;
1463 spin_lock_bh(&xfrm_state_lock);
1464 x = __xfrm_find_acq_byseq(seq);
1465 spin_unlock_bh(&xfrm_state_lock);
1468 EXPORT_SYMBOL(xfrm_find_acq_byseq);
1470 u32 xfrm_get_acqseq(void)
1474 static DEFINE_SPINLOCK(acqseq_lock);
1476 spin_lock_bh(&acqseq_lock);
1477 res = (++acqseq ? : ++acqseq);
1478 spin_unlock_bh(&acqseq_lock);
1481 EXPORT_SYMBOL(xfrm_get_acqseq);
1483 int xfrm_alloc_spi(struct xfrm_state *x, u32 low, u32 high)
1486 struct xfrm_state *x0;
1488 __be32 minspi = htonl(low);
1489 __be32 maxspi = htonl(high);
1491 spin_lock_bh(&x->lock);
1492 if (x->km.state == XFRM_STATE_DEAD)
1501 if (minspi == maxspi) {
1502 x0 = xfrm_state_lookup(&x->id.daddr, minspi, x->id.proto, x->props.family);
1510 for (h=0; h<high-low+1; h++) {
1511 spi = low + net_random()%(high-low+1);
1512 x0 = xfrm_state_lookup(&x->id.daddr, htonl(spi), x->id.proto, x->props.family);
1514 x->id.spi = htonl(spi);
1521 spin_lock_bh(&xfrm_state_lock);
1522 h = xfrm_spi_hash(&x->id.daddr, x->id.spi, x->id.proto, x->props.family);
1523 hlist_add_head(&x->byspi, xfrm_state_byspi+h);
1524 spin_unlock_bh(&xfrm_state_lock);
1530 spin_unlock_bh(&x->lock);
1534 EXPORT_SYMBOL(xfrm_alloc_spi);
1536 int xfrm_state_walk(struct xfrm_state_walk *walk,
1537 int (*func)(struct xfrm_state *, int, void*),
1540 struct xfrm_state *old, *x, *last = NULL;
1543 if (walk->state == NULL && walk->count != 0)
1546 old = x = walk->state;
1548 spin_lock_bh(&xfrm_state_lock);
1550 x = list_first_entry(&xfrm_state_all, struct xfrm_state, all);
1551 list_for_each_entry_from(x, &xfrm_state_all, all) {
1552 if (x->km.state == XFRM_STATE_DEAD)
1554 if (!xfrm_id_proto_match(x->id.proto, walk->proto))
1557 err = func(last, walk->count, data);
1559 xfrm_state_hold(last);
1567 if (walk->count == 0) {
1572 err = func(last, 0, data);
1574 spin_unlock_bh(&xfrm_state_lock);
1576 xfrm_state_put(old);
1579 EXPORT_SYMBOL(xfrm_state_walk);
1582 void xfrm_replay_notify(struct xfrm_state *x, int event)
1585 /* we send notify messages in case
1586 * 1. we updated on of the sequence numbers, and the seqno difference
1587 * is at least x->replay_maxdiff, in this case we also update the
1588 * timeout of our timer function
1589 * 2. if x->replay_maxage has elapsed since last update,
1590 * and there were changes
1592 * The state structure must be locked!
1596 case XFRM_REPLAY_UPDATE:
1597 if (x->replay_maxdiff &&
1598 (x->replay.seq - x->preplay.seq < x->replay_maxdiff) &&
1599 (x->replay.oseq - x->preplay.oseq < x->replay_maxdiff)) {
1600 if (x->xflags & XFRM_TIME_DEFER)
1601 event = XFRM_REPLAY_TIMEOUT;
1608 case XFRM_REPLAY_TIMEOUT:
1609 if ((x->replay.seq == x->preplay.seq) &&
1610 (x->replay.bitmap == x->preplay.bitmap) &&
1611 (x->replay.oseq == x->preplay.oseq)) {
1612 x->xflags |= XFRM_TIME_DEFER;
1619 memcpy(&x->preplay, &x->replay, sizeof(struct xfrm_replay_state));
1620 c.event = XFRM_MSG_NEWAE;
1621 c.data.aevent = event;
1622 km_state_notify(x, &c);
1624 if (x->replay_maxage &&
1625 !mod_timer(&x->rtimer, jiffies + x->replay_maxage))
1626 x->xflags &= ~XFRM_TIME_DEFER;
1629 static void xfrm_replay_timer_handler(unsigned long data)
1631 struct xfrm_state *x = (struct xfrm_state*)data;
1633 spin_lock(&x->lock);
1635 if (x->km.state == XFRM_STATE_VALID) {
1636 if (xfrm_aevent_is_on())
1637 xfrm_replay_notify(x, XFRM_REPLAY_TIMEOUT);
1639 x->xflags |= XFRM_TIME_DEFER;
1642 spin_unlock(&x->lock);
1645 int xfrm_replay_check(struct xfrm_state *x,
1646 struct sk_buff *skb, __be32 net_seq)
1649 u32 seq = ntohl(net_seq);
1651 if (unlikely(seq == 0))
1654 if (likely(seq > x->replay.seq))
1657 diff = x->replay.seq - seq;
1658 if (diff >= min_t(unsigned int, x->props.replay_window,
1659 sizeof(x->replay.bitmap) * 8)) {
1660 x->stats.replay_window++;
1664 if (x->replay.bitmap & (1U << diff)) {
1671 xfrm_audit_state_replay(x, skb, net_seq);
1675 void xfrm_replay_advance(struct xfrm_state *x, __be32 net_seq)
1678 u32 seq = ntohl(net_seq);
1680 if (seq > x->replay.seq) {
1681 diff = seq - x->replay.seq;
1682 if (diff < x->props.replay_window)
1683 x->replay.bitmap = ((x->replay.bitmap) << diff) | 1;
1685 x->replay.bitmap = 1;
1686 x->replay.seq = seq;
1688 diff = x->replay.seq - seq;
1689 x->replay.bitmap |= (1U << diff);
1692 if (xfrm_aevent_is_on())
1693 xfrm_replay_notify(x, XFRM_REPLAY_UPDATE);
1696 static LIST_HEAD(xfrm_km_list);
1697 static DEFINE_RWLOCK(xfrm_km_lock);
1699 void km_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
1701 struct xfrm_mgr *km;
1703 read_lock(&xfrm_km_lock);
1704 list_for_each_entry(km, &xfrm_km_list, list)
1705 if (km->notify_policy)
1706 km->notify_policy(xp, dir, c);
1707 read_unlock(&xfrm_km_lock);
1710 void km_state_notify(struct xfrm_state *x, struct km_event *c)
1712 struct xfrm_mgr *km;
1713 read_lock(&xfrm_km_lock);
1714 list_for_each_entry(km, &xfrm_km_list, list)
1717 read_unlock(&xfrm_km_lock);
1720 EXPORT_SYMBOL(km_policy_notify);
1721 EXPORT_SYMBOL(km_state_notify);
1723 void km_state_expired(struct xfrm_state *x, int hard, u32 pid)
1729 c.event = XFRM_MSG_EXPIRE;
1730 km_state_notify(x, &c);
1736 EXPORT_SYMBOL(km_state_expired);
1738 * We send to all registered managers regardless of failure
1739 * We are happy with one success
1741 int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol)
1743 int err = -EINVAL, acqret;
1744 struct xfrm_mgr *km;
1746 read_lock(&xfrm_km_lock);
1747 list_for_each_entry(km, &xfrm_km_list, list) {
1748 acqret = km->acquire(x, t, pol, XFRM_POLICY_OUT);
1752 read_unlock(&xfrm_km_lock);
1755 EXPORT_SYMBOL(km_query);
1757 int km_new_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, __be16 sport)
1760 struct xfrm_mgr *km;
1762 read_lock(&xfrm_km_lock);
1763 list_for_each_entry(km, &xfrm_km_list, list) {
1764 if (km->new_mapping)
1765 err = km->new_mapping(x, ipaddr, sport);
1769 read_unlock(&xfrm_km_lock);
1772 EXPORT_SYMBOL(km_new_mapping);
1774 void km_policy_expired(struct xfrm_policy *pol, int dir, int hard, u32 pid)
1780 c.event = XFRM_MSG_POLEXPIRE;
1781 km_policy_notify(pol, dir, &c);
1786 EXPORT_SYMBOL(km_policy_expired);
1788 #ifdef CONFIG_XFRM_MIGRATE
1789 int km_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
1790 struct xfrm_migrate *m, int num_migrate)
1794 struct xfrm_mgr *km;
1796 read_lock(&xfrm_km_lock);
1797 list_for_each_entry(km, &xfrm_km_list, list) {
1799 ret = km->migrate(sel, dir, type, m, num_migrate);
1804 read_unlock(&xfrm_km_lock);
1807 EXPORT_SYMBOL(km_migrate);
1810 int km_report(u8 proto, struct xfrm_selector *sel, xfrm_address_t *addr)
1814 struct xfrm_mgr *km;
1816 read_lock(&xfrm_km_lock);
1817 list_for_each_entry(km, &xfrm_km_list, list) {
1819 ret = km->report(proto, sel, addr);
1824 read_unlock(&xfrm_km_lock);
1827 EXPORT_SYMBOL(km_report);
1829 int xfrm_user_policy(struct sock *sk, int optname, u8 __user *optval, int optlen)
1833 struct xfrm_mgr *km;
1834 struct xfrm_policy *pol = NULL;
1836 if (optlen <= 0 || optlen > PAGE_SIZE)
1839 data = kmalloc(optlen, GFP_KERNEL);
1844 if (copy_from_user(data, optval, optlen))
1848 read_lock(&xfrm_km_lock);
1849 list_for_each_entry(km, &xfrm_km_list, list) {
1850 pol = km->compile_policy(sk, optname, data,
1855 read_unlock(&xfrm_km_lock);
1858 xfrm_sk_policy_insert(sk, err, pol);
1867 EXPORT_SYMBOL(xfrm_user_policy);
1869 int xfrm_register_km(struct xfrm_mgr *km)
1871 write_lock_bh(&xfrm_km_lock);
1872 list_add_tail(&km->list, &xfrm_km_list);
1873 write_unlock_bh(&xfrm_km_lock);
1876 EXPORT_SYMBOL(xfrm_register_km);
1878 int xfrm_unregister_km(struct xfrm_mgr *km)
1880 write_lock_bh(&xfrm_km_lock);
1881 list_del(&km->list);
1882 write_unlock_bh(&xfrm_km_lock);
1885 EXPORT_SYMBOL(xfrm_unregister_km);
1887 int xfrm_state_register_afinfo(struct xfrm_state_afinfo *afinfo)
1890 if (unlikely(afinfo == NULL))
1892 if (unlikely(afinfo->family >= NPROTO))
1893 return -EAFNOSUPPORT;
1894 write_lock_bh(&xfrm_state_afinfo_lock);
1895 if (unlikely(xfrm_state_afinfo[afinfo->family] != NULL))
1898 xfrm_state_afinfo[afinfo->family] = afinfo;
1899 write_unlock_bh(&xfrm_state_afinfo_lock);
1902 EXPORT_SYMBOL(xfrm_state_register_afinfo);
1904 int xfrm_state_unregister_afinfo(struct xfrm_state_afinfo *afinfo)
1907 if (unlikely(afinfo == NULL))
1909 if (unlikely(afinfo->family >= NPROTO))
1910 return -EAFNOSUPPORT;
1911 write_lock_bh(&xfrm_state_afinfo_lock);
1912 if (likely(xfrm_state_afinfo[afinfo->family] != NULL)) {
1913 if (unlikely(xfrm_state_afinfo[afinfo->family] != afinfo))
1916 xfrm_state_afinfo[afinfo->family] = NULL;
1918 write_unlock_bh(&xfrm_state_afinfo_lock);
1921 EXPORT_SYMBOL(xfrm_state_unregister_afinfo);
1923 static struct xfrm_state_afinfo *xfrm_state_get_afinfo(unsigned int family)
1925 struct xfrm_state_afinfo *afinfo;
1926 if (unlikely(family >= NPROTO))
1928 read_lock(&xfrm_state_afinfo_lock);
1929 afinfo = xfrm_state_afinfo[family];
1930 if (unlikely(!afinfo))
1931 read_unlock(&xfrm_state_afinfo_lock);
1935 static void xfrm_state_put_afinfo(struct xfrm_state_afinfo *afinfo)
1936 __releases(xfrm_state_afinfo_lock)
1938 read_unlock(&xfrm_state_afinfo_lock);
1941 /* Temporarily located here until net/xfrm/xfrm_tunnel.c is created */
1942 void xfrm_state_delete_tunnel(struct xfrm_state *x)
1945 struct xfrm_state *t = x->tunnel;
1947 if (atomic_read(&t->tunnel_users) == 2)
1948 xfrm_state_delete(t);
1949 atomic_dec(&t->tunnel_users);
1954 EXPORT_SYMBOL(xfrm_state_delete_tunnel);
1956 int xfrm_state_mtu(struct xfrm_state *x, int mtu)
1960 spin_lock_bh(&x->lock);
1961 if (x->km.state == XFRM_STATE_VALID &&
1962 x->type && x->type->get_mtu)
1963 res = x->type->get_mtu(x, mtu);
1965 res = mtu - x->props.header_len;
1966 spin_unlock_bh(&x->lock);
1970 int xfrm_init_state(struct xfrm_state *x)
1972 struct xfrm_state_afinfo *afinfo;
1973 struct xfrm_mode *inner_mode;
1974 int family = x->props.family;
1977 err = -EAFNOSUPPORT;
1978 afinfo = xfrm_state_get_afinfo(family);
1983 if (afinfo->init_flags)
1984 err = afinfo->init_flags(x);
1986 xfrm_state_put_afinfo(afinfo);
1991 err = -EPROTONOSUPPORT;
1993 if (x->sel.family != AF_UNSPEC) {
1994 inner_mode = xfrm_get_mode(x->props.mode, x->sel.family);
1995 if (inner_mode == NULL)
1998 if (!(inner_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
1999 family != x->sel.family) {
2000 xfrm_put_mode(inner_mode);
2004 x->inner_mode = inner_mode;
2006 struct xfrm_mode *inner_mode_iaf;
2008 inner_mode = xfrm_get_mode(x->props.mode, AF_INET);
2009 if (inner_mode == NULL)
2012 if (!(inner_mode->flags & XFRM_MODE_FLAG_TUNNEL)) {
2013 xfrm_put_mode(inner_mode);
2017 inner_mode_iaf = xfrm_get_mode(x->props.mode, AF_INET6);
2018 if (inner_mode_iaf == NULL)
2021 if (!(inner_mode_iaf->flags & XFRM_MODE_FLAG_TUNNEL)) {
2022 xfrm_put_mode(inner_mode_iaf);
2026 if (x->props.family == AF_INET) {
2027 x->inner_mode = inner_mode;
2028 x->inner_mode_iaf = inner_mode_iaf;
2030 x->inner_mode = inner_mode_iaf;
2031 x->inner_mode_iaf = inner_mode;
2035 x->type = xfrm_get_type(x->id.proto, family);
2036 if (x->type == NULL)
2039 err = x->type->init_state(x);
2043 x->outer_mode = xfrm_get_mode(x->props.mode, family);
2044 if (x->outer_mode == NULL)
2047 x->km.state = XFRM_STATE_VALID;
2053 EXPORT_SYMBOL(xfrm_init_state);
2055 void __init xfrm_state_init(void)
2059 sz = sizeof(struct hlist_head) * 8;
2061 xfrm_state_bydst = xfrm_hash_alloc(sz);
2062 xfrm_state_bysrc = xfrm_hash_alloc(sz);
2063 xfrm_state_byspi = xfrm_hash_alloc(sz);
2064 if (!xfrm_state_bydst || !xfrm_state_bysrc || !xfrm_state_byspi)
2065 panic("XFRM: Cannot allocate bydst/bysrc/byspi hashes.");
2066 xfrm_state_hmask = ((sz / sizeof(struct hlist_head)) - 1);
2068 INIT_WORK(&xfrm_state_gc_work, xfrm_state_gc_task);
2071 #ifdef CONFIG_AUDITSYSCALL
2072 static void xfrm_audit_helper_sainfo(struct xfrm_state *x,
2073 struct audit_buffer *audit_buf)
2075 struct xfrm_sec_ctx *ctx = x->security;
2076 u32 spi = ntohl(x->id.spi);
2079 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2080 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2082 switch(x->props.family) {
2084 audit_log_format(audit_buf,
2085 " src=" NIPQUAD_FMT " dst=" NIPQUAD_FMT,
2086 NIPQUAD(x->props.saddr.a4),
2087 NIPQUAD(x->id.daddr.a4));
2090 audit_log_format(audit_buf,
2091 " src=" NIP6_FMT " dst=" NIP6_FMT,
2092 NIP6(*(struct in6_addr *)x->props.saddr.a6),
2093 NIP6(*(struct in6_addr *)x->id.daddr.a6));
2097 audit_log_format(audit_buf, " spi=%u(0x%x)", spi, spi);
2100 static void xfrm_audit_helper_pktinfo(struct sk_buff *skb, u16 family,
2101 struct audit_buffer *audit_buf)
2104 struct ipv6hdr *iph6;
2109 audit_log_format(audit_buf,
2110 " src=" NIPQUAD_FMT " dst=" NIPQUAD_FMT,
2111 NIPQUAD(iph4->saddr),
2112 NIPQUAD(iph4->daddr));
2115 iph6 = ipv6_hdr(skb);
2116 audit_log_format(audit_buf,
2117 " src=" NIP6_FMT " dst=" NIP6_FMT
2118 " flowlbl=0x%x%02x%02x",
2121 iph6->flow_lbl[0] & 0x0f,
2128 void xfrm_audit_state_add(struct xfrm_state *x, int result,
2129 uid_t auid, u32 sessionid, u32 secid)
2131 struct audit_buffer *audit_buf;
2133 audit_buf = xfrm_audit_start("SAD-add");
2134 if (audit_buf == NULL)
2136 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
2137 xfrm_audit_helper_sainfo(x, audit_buf);
2138 audit_log_format(audit_buf, " res=%u", result);
2139 audit_log_end(audit_buf);
2141 EXPORT_SYMBOL_GPL(xfrm_audit_state_add);
2143 void xfrm_audit_state_delete(struct xfrm_state *x, int result,
2144 uid_t auid, u32 sessionid, u32 secid)
2146 struct audit_buffer *audit_buf;
2148 audit_buf = xfrm_audit_start("SAD-delete");
2149 if (audit_buf == NULL)
2151 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
2152 xfrm_audit_helper_sainfo(x, audit_buf);
2153 audit_log_format(audit_buf, " res=%u", result);
2154 audit_log_end(audit_buf);
2156 EXPORT_SYMBOL_GPL(xfrm_audit_state_delete);
2158 void xfrm_audit_state_replay_overflow(struct xfrm_state *x,
2159 struct sk_buff *skb)
2161 struct audit_buffer *audit_buf;
2164 audit_buf = xfrm_audit_start("SA-replay-overflow");
2165 if (audit_buf == NULL)
2167 xfrm_audit_helper_pktinfo(skb, x->props.family, audit_buf);
2168 /* don't record the sequence number because it's inherent in this kind
2169 * of audit message */
2170 spi = ntohl(x->id.spi);
2171 audit_log_format(audit_buf, " spi=%u(0x%x)", spi, spi);
2172 audit_log_end(audit_buf);
2174 EXPORT_SYMBOL_GPL(xfrm_audit_state_replay_overflow);
2176 static void xfrm_audit_state_replay(struct xfrm_state *x,
2177 struct sk_buff *skb, __be32 net_seq)
2179 struct audit_buffer *audit_buf;
2182 audit_buf = xfrm_audit_start("SA-replayed-pkt");
2183 if (audit_buf == NULL)
2185 xfrm_audit_helper_pktinfo(skb, x->props.family, audit_buf);
2186 spi = ntohl(x->id.spi);
2187 audit_log_format(audit_buf, " spi=%u(0x%x) seqno=%u",
2188 spi, spi, ntohl(net_seq));
2189 audit_log_end(audit_buf);
2192 void xfrm_audit_state_notfound_simple(struct sk_buff *skb, u16 family)
2194 struct audit_buffer *audit_buf;
2196 audit_buf = xfrm_audit_start("SA-notfound");
2197 if (audit_buf == NULL)
2199 xfrm_audit_helper_pktinfo(skb, family, audit_buf);
2200 audit_log_end(audit_buf);
2202 EXPORT_SYMBOL_GPL(xfrm_audit_state_notfound_simple);
2204 void xfrm_audit_state_notfound(struct sk_buff *skb, u16 family,
2205 __be32 net_spi, __be32 net_seq)
2207 struct audit_buffer *audit_buf;
2210 audit_buf = xfrm_audit_start("SA-notfound");
2211 if (audit_buf == NULL)
2213 xfrm_audit_helper_pktinfo(skb, family, audit_buf);
2214 spi = ntohl(net_spi);
2215 audit_log_format(audit_buf, " spi=%u(0x%x) seqno=%u",
2216 spi, spi, ntohl(net_seq));
2217 audit_log_end(audit_buf);
2219 EXPORT_SYMBOL_GPL(xfrm_audit_state_notfound);
2221 void xfrm_audit_state_icvfail(struct xfrm_state *x,
2222 struct sk_buff *skb, u8 proto)
2224 struct audit_buffer *audit_buf;
2228 audit_buf = xfrm_audit_start("SA-icv-failure");
2229 if (audit_buf == NULL)
2231 xfrm_audit_helper_pktinfo(skb, x->props.family, audit_buf);
2232 if (xfrm_parse_spi(skb, proto, &net_spi, &net_seq) == 0) {
2233 u32 spi = ntohl(net_spi);
2234 audit_log_format(audit_buf, " spi=%u(0x%x) seqno=%u",
2235 spi, spi, ntohl(net_seq));
2237 audit_log_end(audit_buf);
2239 EXPORT_SYMBOL_GPL(xfrm_audit_state_icvfail);
2240 #endif /* CONFIG_AUDITSYSCALL */