6 * Kazunori MIYAZAWA @USAGI
7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * Kazunori MIYAZAWA @USAGI
11 * Split up af-specific portion
12 * Derek Atkins <derek@ihtfp.com> Add the post_input processor
16 #include <linux/err.h>
17 #include <linux/slab.h>
18 #include <linux/kmod.h>
19 #include <linux/list.h>
20 #include <linux/spinlock.h>
21 #include <linux/workqueue.h>
22 #include <linux/notifier.h>
23 #include <linux/netdevice.h>
24 #include <linux/netfilter.h>
25 #include <linux/module.h>
26 #include <linux/cache.h>
27 #include <linux/audit.h>
31 #ifdef CONFIG_XFRM_STATISTICS
35 #include "xfrm_hash.h"
37 int sysctl_xfrm_larval_drop __read_mostly
;
39 #ifdef CONFIG_XFRM_STATISTICS
40 DEFINE_SNMP_STAT(struct linux_xfrm_mib
, xfrm_statistics
) __read_mostly
;
41 EXPORT_SYMBOL(xfrm_statistics
);
44 DEFINE_MUTEX(xfrm_cfg_mutex
);
45 EXPORT_SYMBOL(xfrm_cfg_mutex
);
47 static DEFINE_RWLOCK(xfrm_policy_lock
);
49 static struct list_head xfrm_policy_bytype
[XFRM_POLICY_TYPE_MAX
];
50 unsigned int xfrm_policy_count
[XFRM_POLICY_MAX
*2];
51 EXPORT_SYMBOL(xfrm_policy_count
);
53 static DEFINE_RWLOCK(xfrm_policy_afinfo_lock
);
54 static struct xfrm_policy_afinfo
*xfrm_policy_afinfo
[NPROTO
];
56 static struct kmem_cache
*xfrm_dst_cache __read_mostly
;
58 static struct work_struct xfrm_policy_gc_work
;
59 static HLIST_HEAD(xfrm_policy_gc_list
);
60 static DEFINE_SPINLOCK(xfrm_policy_gc_lock
);
62 static struct xfrm_policy_afinfo
*xfrm_policy_get_afinfo(unsigned short family
);
63 static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo
*afinfo
);
64 static void xfrm_init_pmtu(struct dst_entry
*dst
);
67 __xfrm4_selector_match(struct xfrm_selector
*sel
, struct flowi
*fl
)
69 return addr_match(&fl
->fl4_dst
, &sel
->daddr
, sel
->prefixlen_d
) &&
70 addr_match(&fl
->fl4_src
, &sel
->saddr
, sel
->prefixlen_s
) &&
71 !((xfrm_flowi_dport(fl
) ^ sel
->dport
) & sel
->dport_mask
) &&
72 !((xfrm_flowi_sport(fl
) ^ sel
->sport
) & sel
->sport_mask
) &&
73 (fl
->proto
== sel
->proto
|| !sel
->proto
) &&
74 (fl
->oif
== sel
->ifindex
|| !sel
->ifindex
);
78 __xfrm6_selector_match(struct xfrm_selector
*sel
, struct flowi
*fl
)
80 return addr_match(&fl
->fl6_dst
, &sel
->daddr
, sel
->prefixlen_d
) &&
81 addr_match(&fl
->fl6_src
, &sel
->saddr
, sel
->prefixlen_s
) &&
82 !((xfrm_flowi_dport(fl
) ^ sel
->dport
) & sel
->dport_mask
) &&
83 !((xfrm_flowi_sport(fl
) ^ sel
->sport
) & sel
->sport_mask
) &&
84 (fl
->proto
== sel
->proto
|| !sel
->proto
) &&
85 (fl
->oif
== sel
->ifindex
|| !sel
->ifindex
);
88 int xfrm_selector_match(struct xfrm_selector
*sel
, struct flowi
*fl
,
89 unsigned short family
)
93 return __xfrm4_selector_match(sel
, fl
);
95 return __xfrm6_selector_match(sel
, fl
);
100 static inline struct dst_entry
*__xfrm_dst_lookup(int tos
,
101 xfrm_address_t
*saddr
,
102 xfrm_address_t
*daddr
,
105 struct xfrm_policy_afinfo
*afinfo
;
106 struct dst_entry
*dst
;
108 afinfo
= xfrm_policy_get_afinfo(family
);
109 if (unlikely(afinfo
== NULL
))
110 return ERR_PTR(-EAFNOSUPPORT
);
112 dst
= afinfo
->dst_lookup(tos
, saddr
, daddr
);
114 xfrm_policy_put_afinfo(afinfo
);
119 static inline struct dst_entry
*xfrm_dst_lookup(struct xfrm_state
*x
, int tos
,
120 xfrm_address_t
*prev_saddr
,
121 xfrm_address_t
*prev_daddr
,
124 xfrm_address_t
*saddr
= &x
->props
.saddr
;
125 xfrm_address_t
*daddr
= &x
->id
.daddr
;
126 struct dst_entry
*dst
;
128 if (x
->type
->flags
& XFRM_TYPE_LOCAL_COADDR
) {
132 if (x
->type
->flags
& XFRM_TYPE_REMOTE_COADDR
) {
137 dst
= __xfrm_dst_lookup(tos
, saddr
, daddr
, family
);
140 if (prev_saddr
!= saddr
)
141 memcpy(prev_saddr
, saddr
, sizeof(*prev_saddr
));
142 if (prev_daddr
!= daddr
)
143 memcpy(prev_daddr
, daddr
, sizeof(*prev_daddr
));
149 static inline unsigned long make_jiffies(long secs
)
151 if (secs
>= (MAX_SCHEDULE_TIMEOUT
-1)/HZ
)
152 return MAX_SCHEDULE_TIMEOUT
-1;
157 static void xfrm_policy_timer(unsigned long data
)
159 struct xfrm_policy
*xp
= (struct xfrm_policy
*)data
;
160 unsigned long now
= get_seconds();
161 long next
= LONG_MAX
;
165 read_lock(&xp
->lock
);
170 dir
= xfrm_policy_id2dir(xp
->index
);
172 if (xp
->lft
.hard_add_expires_seconds
) {
173 long tmo
= xp
->lft
.hard_add_expires_seconds
+
174 xp
->curlft
.add_time
- now
;
180 if (xp
->lft
.hard_use_expires_seconds
) {
181 long tmo
= xp
->lft
.hard_use_expires_seconds
+
182 (xp
->curlft
.use_time
? : xp
->curlft
.add_time
) - now
;
188 if (xp
->lft
.soft_add_expires_seconds
) {
189 long tmo
= xp
->lft
.soft_add_expires_seconds
+
190 xp
->curlft
.add_time
- now
;
193 tmo
= XFRM_KM_TIMEOUT
;
198 if (xp
->lft
.soft_use_expires_seconds
) {
199 long tmo
= xp
->lft
.soft_use_expires_seconds
+
200 (xp
->curlft
.use_time
? : xp
->curlft
.add_time
) - now
;
203 tmo
= XFRM_KM_TIMEOUT
;
210 km_policy_expired(xp
, dir
, 0, 0);
211 if (next
!= LONG_MAX
&&
212 !mod_timer(&xp
->timer
, jiffies
+ make_jiffies(next
)))
216 read_unlock(&xp
->lock
);
221 read_unlock(&xp
->lock
);
222 if (!xfrm_policy_delete(xp
, dir
))
223 km_policy_expired(xp
, dir
, 1, 0);
228 /* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
232 struct xfrm_policy
*xfrm_policy_alloc(gfp_t gfp
)
234 struct xfrm_policy
*policy
;
236 policy
= kzalloc(sizeof(struct xfrm_policy
), gfp
);
239 INIT_LIST_HEAD(&policy
->bytype
);
240 INIT_HLIST_NODE(&policy
->bydst
);
241 INIT_HLIST_NODE(&policy
->byidx
);
242 rwlock_init(&policy
->lock
);
243 atomic_set(&policy
->refcnt
, 1);
244 setup_timer(&policy
->timer
, xfrm_policy_timer
,
245 (unsigned long)policy
);
249 EXPORT_SYMBOL(xfrm_policy_alloc
);
251 /* Destroy xfrm_policy: descendant resources must be released to this moment. */
253 void xfrm_policy_destroy(struct xfrm_policy
*policy
)
255 BUG_ON(!policy
->dead
);
257 BUG_ON(policy
->bundles
);
259 if (del_timer(&policy
->timer
))
262 write_lock_bh(&xfrm_policy_lock
);
263 list_del(&policy
->bytype
);
264 write_unlock_bh(&xfrm_policy_lock
);
266 security_xfrm_policy_free(policy
);
269 EXPORT_SYMBOL(xfrm_policy_destroy
);
271 static void xfrm_policy_gc_kill(struct xfrm_policy
*policy
)
273 struct dst_entry
*dst
;
275 while ((dst
= policy
->bundles
) != NULL
) {
276 policy
->bundles
= dst
->next
;
280 if (del_timer(&policy
->timer
))
281 atomic_dec(&policy
->refcnt
);
283 if (atomic_read(&policy
->refcnt
) > 1)
286 xfrm_pol_put(policy
);
289 static void xfrm_policy_gc_task(struct work_struct
*work
)
291 struct xfrm_policy
*policy
;
292 struct hlist_node
*entry
, *tmp
;
293 struct hlist_head gc_list
;
295 spin_lock_bh(&xfrm_policy_gc_lock
);
296 gc_list
.first
= xfrm_policy_gc_list
.first
;
297 INIT_HLIST_HEAD(&xfrm_policy_gc_list
);
298 spin_unlock_bh(&xfrm_policy_gc_lock
);
300 hlist_for_each_entry_safe(policy
, entry
, tmp
, &gc_list
, bydst
)
301 xfrm_policy_gc_kill(policy
);
304 /* Rule must be locked. Release descentant resources, announce
305 * entry dead. The rule must be unlinked from lists to the moment.
308 static void xfrm_policy_kill(struct xfrm_policy
*policy
)
312 write_lock_bh(&policy
->lock
);
315 write_unlock_bh(&policy
->lock
);
317 if (unlikely(dead
)) {
322 spin_lock(&xfrm_policy_gc_lock
);
323 hlist_add_head(&policy
->bydst
, &xfrm_policy_gc_list
);
324 spin_unlock(&xfrm_policy_gc_lock
);
326 schedule_work(&xfrm_policy_gc_work
);
329 struct xfrm_policy_hash
{
330 struct hlist_head
*table
;
334 static struct hlist_head xfrm_policy_inexact
[XFRM_POLICY_MAX
*2];
335 static struct xfrm_policy_hash xfrm_policy_bydst
[XFRM_POLICY_MAX
*2] __read_mostly
;
336 static struct hlist_head
*xfrm_policy_byidx __read_mostly
;
337 static unsigned int xfrm_idx_hmask __read_mostly
;
338 static unsigned int xfrm_policy_hashmax __read_mostly
= 1 * 1024 * 1024;
340 static inline unsigned int idx_hash(u32 index
)
342 return __idx_hash(index
, xfrm_idx_hmask
);
345 static struct hlist_head
*policy_hash_bysel(struct xfrm_selector
*sel
, unsigned short family
, int dir
)
347 unsigned int hmask
= xfrm_policy_bydst
[dir
].hmask
;
348 unsigned int hash
= __sel_hash(sel
, family
, hmask
);
350 return (hash
== hmask
+ 1 ?
351 &xfrm_policy_inexact
[dir
] :
352 xfrm_policy_bydst
[dir
].table
+ hash
);
355 static struct hlist_head
*policy_hash_direct(xfrm_address_t
*daddr
, xfrm_address_t
*saddr
, unsigned short family
, int dir
)
357 unsigned int hmask
= xfrm_policy_bydst
[dir
].hmask
;
358 unsigned int hash
= __addr_hash(daddr
, saddr
, family
, hmask
);
360 return xfrm_policy_bydst
[dir
].table
+ hash
;
363 static void xfrm_dst_hash_transfer(struct hlist_head
*list
,
364 struct hlist_head
*ndsttable
,
365 unsigned int nhashmask
)
367 struct hlist_node
*entry
, *tmp
, *entry0
= NULL
;
368 struct xfrm_policy
*pol
;
372 hlist_for_each_entry_safe(pol
, entry
, tmp
, list
, bydst
) {
375 h
= __addr_hash(&pol
->selector
.daddr
, &pol
->selector
.saddr
,
376 pol
->family
, nhashmask
);
379 hlist_add_head(&pol
->bydst
, ndsttable
+h
);
385 hlist_add_after(entry0
, &pol
->bydst
);
389 if (!hlist_empty(list
)) {
395 static void xfrm_idx_hash_transfer(struct hlist_head
*list
,
396 struct hlist_head
*nidxtable
,
397 unsigned int nhashmask
)
399 struct hlist_node
*entry
, *tmp
;
400 struct xfrm_policy
*pol
;
402 hlist_for_each_entry_safe(pol
, entry
, tmp
, list
, byidx
) {
405 h
= __idx_hash(pol
->index
, nhashmask
);
406 hlist_add_head(&pol
->byidx
, nidxtable
+h
);
410 static unsigned long xfrm_new_hash_mask(unsigned int old_hmask
)
412 return ((old_hmask
+ 1) << 1) - 1;
415 static void xfrm_bydst_resize(int dir
)
417 unsigned int hmask
= xfrm_policy_bydst
[dir
].hmask
;
418 unsigned int nhashmask
= xfrm_new_hash_mask(hmask
);
419 unsigned int nsize
= (nhashmask
+ 1) * sizeof(struct hlist_head
);
420 struct hlist_head
*odst
= xfrm_policy_bydst
[dir
].table
;
421 struct hlist_head
*ndst
= xfrm_hash_alloc(nsize
);
427 write_lock_bh(&xfrm_policy_lock
);
429 for (i
= hmask
; i
>= 0; i
--)
430 xfrm_dst_hash_transfer(odst
+ i
, ndst
, nhashmask
);
432 xfrm_policy_bydst
[dir
].table
= ndst
;
433 xfrm_policy_bydst
[dir
].hmask
= nhashmask
;
435 write_unlock_bh(&xfrm_policy_lock
);
437 xfrm_hash_free(odst
, (hmask
+ 1) * sizeof(struct hlist_head
));
440 static void xfrm_byidx_resize(int total
)
442 unsigned int hmask
= xfrm_idx_hmask
;
443 unsigned int nhashmask
= xfrm_new_hash_mask(hmask
);
444 unsigned int nsize
= (nhashmask
+ 1) * sizeof(struct hlist_head
);
445 struct hlist_head
*oidx
= xfrm_policy_byidx
;
446 struct hlist_head
*nidx
= xfrm_hash_alloc(nsize
);
452 write_lock_bh(&xfrm_policy_lock
);
454 for (i
= hmask
; i
>= 0; i
--)
455 xfrm_idx_hash_transfer(oidx
+ i
, nidx
, nhashmask
);
457 xfrm_policy_byidx
= nidx
;
458 xfrm_idx_hmask
= nhashmask
;
460 write_unlock_bh(&xfrm_policy_lock
);
462 xfrm_hash_free(oidx
, (hmask
+ 1) * sizeof(struct hlist_head
));
465 static inline int xfrm_bydst_should_resize(int dir
, int *total
)
467 unsigned int cnt
= xfrm_policy_count
[dir
];
468 unsigned int hmask
= xfrm_policy_bydst
[dir
].hmask
;
473 if ((hmask
+ 1) < xfrm_policy_hashmax
&&
480 static inline int xfrm_byidx_should_resize(int total
)
482 unsigned int hmask
= xfrm_idx_hmask
;
484 if ((hmask
+ 1) < xfrm_policy_hashmax
&&
491 void xfrm_spd_getinfo(struct xfrmk_spdinfo
*si
)
493 read_lock_bh(&xfrm_policy_lock
);
494 si
->incnt
= xfrm_policy_count
[XFRM_POLICY_IN
];
495 si
->outcnt
= xfrm_policy_count
[XFRM_POLICY_OUT
];
496 si
->fwdcnt
= xfrm_policy_count
[XFRM_POLICY_FWD
];
497 si
->inscnt
= xfrm_policy_count
[XFRM_POLICY_IN
+XFRM_POLICY_MAX
];
498 si
->outscnt
= xfrm_policy_count
[XFRM_POLICY_OUT
+XFRM_POLICY_MAX
];
499 si
->fwdscnt
= xfrm_policy_count
[XFRM_POLICY_FWD
+XFRM_POLICY_MAX
];
500 si
->spdhcnt
= xfrm_idx_hmask
;
501 si
->spdhmcnt
= xfrm_policy_hashmax
;
502 read_unlock_bh(&xfrm_policy_lock
);
504 EXPORT_SYMBOL(xfrm_spd_getinfo
);
506 static DEFINE_MUTEX(hash_resize_mutex
);
507 static void xfrm_hash_resize(struct work_struct
*__unused
)
511 mutex_lock(&hash_resize_mutex
);
514 for (dir
= 0; dir
< XFRM_POLICY_MAX
* 2; dir
++) {
515 if (xfrm_bydst_should_resize(dir
, &total
))
516 xfrm_bydst_resize(dir
);
518 if (xfrm_byidx_should_resize(total
))
519 xfrm_byidx_resize(total
);
521 mutex_unlock(&hash_resize_mutex
);
524 static DECLARE_WORK(xfrm_hash_work
, xfrm_hash_resize
);
526 /* Generate new index... KAME seems to generate them ordered by cost
527 * of an absolute inpredictability of ordering of rules. This will not pass. */
528 static u32
xfrm_gen_index(u8 type
, int dir
)
530 static u32 idx_generator
;
533 struct hlist_node
*entry
;
534 struct hlist_head
*list
;
535 struct xfrm_policy
*p
;
539 idx
= (idx_generator
| dir
);
543 list
= xfrm_policy_byidx
+ idx_hash(idx
);
545 hlist_for_each_entry(p
, entry
, list
, byidx
) {
546 if (p
->index
== idx
) {
556 static inline int selector_cmp(struct xfrm_selector
*s1
, struct xfrm_selector
*s2
)
558 u32
*p1
= (u32
*) s1
;
559 u32
*p2
= (u32
*) s2
;
560 int len
= sizeof(struct xfrm_selector
) / sizeof(u32
);
563 for (i
= 0; i
< len
; i
++) {
571 int xfrm_policy_insert(int dir
, struct xfrm_policy
*policy
, int excl
)
573 struct xfrm_policy
*pol
;
574 struct xfrm_policy
*delpol
;
575 struct hlist_head
*chain
;
576 struct hlist_node
*entry
, *newpos
;
577 struct dst_entry
*gc_list
;
579 write_lock_bh(&xfrm_policy_lock
);
580 chain
= policy_hash_bysel(&policy
->selector
, policy
->family
, dir
);
583 hlist_for_each_entry(pol
, entry
, chain
, bydst
) {
584 if (pol
->type
== policy
->type
&&
585 !selector_cmp(&pol
->selector
, &policy
->selector
) &&
586 xfrm_sec_ctx_match(pol
->security
, policy
->security
) &&
589 write_unlock_bh(&xfrm_policy_lock
);
593 if (policy
->priority
> pol
->priority
)
595 } else if (policy
->priority
>= pol
->priority
) {
596 newpos
= &pol
->bydst
;
603 hlist_add_after(newpos
, &policy
->bydst
);
605 hlist_add_head(&policy
->bydst
, chain
);
606 xfrm_pol_hold(policy
);
607 xfrm_policy_count
[dir
]++;
608 atomic_inc(&flow_cache_genid
);
610 hlist_del(&delpol
->bydst
);
611 hlist_del(&delpol
->byidx
);
612 xfrm_policy_count
[dir
]--;
614 policy
->index
= delpol
? delpol
->index
: xfrm_gen_index(policy
->type
, dir
);
615 hlist_add_head(&policy
->byidx
, xfrm_policy_byidx
+idx_hash(policy
->index
));
616 policy
->curlft
.add_time
= get_seconds();
617 policy
->curlft
.use_time
= 0;
618 if (!mod_timer(&policy
->timer
, jiffies
+ HZ
))
619 xfrm_pol_hold(policy
);
620 list_add_tail(&policy
->bytype
, &xfrm_policy_bytype
[policy
->type
]);
621 write_unlock_bh(&xfrm_policy_lock
);
624 xfrm_policy_kill(delpol
);
625 else if (xfrm_bydst_should_resize(dir
, NULL
))
626 schedule_work(&xfrm_hash_work
);
628 read_lock_bh(&xfrm_policy_lock
);
630 entry
= &policy
->bydst
;
631 hlist_for_each_entry_continue(policy
, entry
, bydst
) {
632 struct dst_entry
*dst
;
634 write_lock(&policy
->lock
);
635 dst
= policy
->bundles
;
637 struct dst_entry
*tail
= dst
;
640 tail
->next
= gc_list
;
643 policy
->bundles
= NULL
;
645 write_unlock(&policy
->lock
);
647 read_unlock_bh(&xfrm_policy_lock
);
650 struct dst_entry
*dst
= gc_list
;
658 EXPORT_SYMBOL(xfrm_policy_insert
);
660 struct xfrm_policy
*xfrm_policy_bysel_ctx(u8 type
, int dir
,
661 struct xfrm_selector
*sel
,
662 struct xfrm_sec_ctx
*ctx
, int delete,
665 struct xfrm_policy
*pol
, *ret
;
666 struct hlist_head
*chain
;
667 struct hlist_node
*entry
;
670 write_lock_bh(&xfrm_policy_lock
);
671 chain
= policy_hash_bysel(sel
, sel
->family
, dir
);
673 hlist_for_each_entry(pol
, entry
, chain
, bydst
) {
674 if (pol
->type
== type
&&
675 !selector_cmp(sel
, &pol
->selector
) &&
676 xfrm_sec_ctx_match(ctx
, pol
->security
)) {
679 *err
= security_xfrm_policy_delete(pol
);
681 write_unlock_bh(&xfrm_policy_lock
);
684 hlist_del(&pol
->bydst
);
685 hlist_del(&pol
->byidx
);
686 xfrm_policy_count
[dir
]--;
692 write_unlock_bh(&xfrm_policy_lock
);
695 atomic_inc(&flow_cache_genid
);
696 xfrm_policy_kill(ret
);
700 EXPORT_SYMBOL(xfrm_policy_bysel_ctx
);
702 struct xfrm_policy
*xfrm_policy_byid(u8 type
, int dir
, u32 id
, int delete,
705 struct xfrm_policy
*pol
, *ret
;
706 struct hlist_head
*chain
;
707 struct hlist_node
*entry
;
710 if (xfrm_policy_id2dir(id
) != dir
)
714 write_lock_bh(&xfrm_policy_lock
);
715 chain
= xfrm_policy_byidx
+ idx_hash(id
);
717 hlist_for_each_entry(pol
, entry
, chain
, byidx
) {
718 if (pol
->type
== type
&& pol
->index
== id
) {
721 *err
= security_xfrm_policy_delete(pol
);
723 write_unlock_bh(&xfrm_policy_lock
);
726 hlist_del(&pol
->bydst
);
727 hlist_del(&pol
->byidx
);
728 xfrm_policy_count
[dir
]--;
734 write_unlock_bh(&xfrm_policy_lock
);
737 atomic_inc(&flow_cache_genid
);
738 xfrm_policy_kill(ret
);
742 EXPORT_SYMBOL(xfrm_policy_byid
);
744 #ifdef CONFIG_SECURITY_NETWORK_XFRM
746 xfrm_policy_flush_secctx_check(u8 type
, struct xfrm_audit
*audit_info
)
750 for (dir
= 0; dir
< XFRM_POLICY_MAX
; dir
++) {
751 struct xfrm_policy
*pol
;
752 struct hlist_node
*entry
;
755 hlist_for_each_entry(pol
, entry
,
756 &xfrm_policy_inexact
[dir
], bydst
) {
757 if (pol
->type
!= type
)
759 err
= security_xfrm_policy_delete(pol
);
761 xfrm_audit_policy_delete(pol
, 0,
762 audit_info
->loginuid
,
767 for (i
= xfrm_policy_bydst
[dir
].hmask
; i
>= 0; i
--) {
768 hlist_for_each_entry(pol
, entry
,
769 xfrm_policy_bydst
[dir
].table
+ i
,
771 if (pol
->type
!= type
)
773 err
= security_xfrm_policy_delete(pol
);
775 xfrm_audit_policy_delete(pol
, 0,
776 audit_info
->loginuid
,
787 xfrm_policy_flush_secctx_check(u8 type
, struct xfrm_audit
*audit_info
)
793 int xfrm_policy_flush(u8 type
, struct xfrm_audit
*audit_info
)
797 write_lock_bh(&xfrm_policy_lock
);
799 err
= xfrm_policy_flush_secctx_check(type
, audit_info
);
803 for (dir
= 0; dir
< XFRM_POLICY_MAX
; dir
++) {
804 struct xfrm_policy
*pol
;
805 struct hlist_node
*entry
;
810 hlist_for_each_entry(pol
, entry
,
811 &xfrm_policy_inexact
[dir
], bydst
) {
812 if (pol
->type
!= type
)
814 hlist_del(&pol
->bydst
);
815 hlist_del(&pol
->byidx
);
816 write_unlock_bh(&xfrm_policy_lock
);
818 xfrm_audit_policy_delete(pol
, 1, audit_info
->loginuid
,
821 xfrm_policy_kill(pol
);
824 write_lock_bh(&xfrm_policy_lock
);
828 for (i
= xfrm_policy_bydst
[dir
].hmask
; i
>= 0; i
--) {
830 hlist_for_each_entry(pol
, entry
,
831 xfrm_policy_bydst
[dir
].table
+ i
,
833 if (pol
->type
!= type
)
835 hlist_del(&pol
->bydst
);
836 hlist_del(&pol
->byidx
);
837 write_unlock_bh(&xfrm_policy_lock
);
839 xfrm_audit_policy_delete(pol
, 1,
840 audit_info
->loginuid
,
842 xfrm_policy_kill(pol
);
845 write_lock_bh(&xfrm_policy_lock
);
850 xfrm_policy_count
[dir
] -= killed
;
852 atomic_inc(&flow_cache_genid
);
854 write_unlock_bh(&xfrm_policy_lock
);
857 EXPORT_SYMBOL(xfrm_policy_flush
);
859 int xfrm_policy_walk(struct xfrm_policy_walk
*walk
,
860 int (*func
)(struct xfrm_policy
*, int, int, void*),
863 struct xfrm_policy
*old
, *pol
, *last
= NULL
;
866 if (walk
->type
>= XFRM_POLICY_TYPE_MAX
&&
867 walk
->type
!= XFRM_POLICY_TYPE_ANY
)
870 if (walk
->policy
== NULL
&& walk
->count
!= 0)
873 old
= pol
= walk
->policy
;
875 read_lock_bh(&xfrm_policy_lock
);
877 for (; walk
->cur_type
< XFRM_POLICY_TYPE_MAX
; walk
->cur_type
++) {
878 if (walk
->type
!= walk
->cur_type
&&
879 walk
->type
!= XFRM_POLICY_TYPE_ANY
)
883 pol
= list_first_entry(&xfrm_policy_bytype
[walk
->cur_type
],
884 struct xfrm_policy
, bytype
);
886 list_for_each_entry_from(pol
, &xfrm_policy_bytype
[walk
->cur_type
], bytype
) {
890 error
= func(last
, xfrm_policy_id2dir(last
->index
),
903 if (walk
->count
== 0) {
908 error
= func(last
, xfrm_policy_id2dir(last
->index
), 0, data
);
910 read_unlock_bh(&xfrm_policy_lock
);
915 EXPORT_SYMBOL(xfrm_policy_walk
);
918 * Find policy to apply to this flow.
920 * Returns 0 if policy found, else an -errno.
922 static int xfrm_policy_match(struct xfrm_policy
*pol
, struct flowi
*fl
,
923 u8 type
, u16 family
, int dir
)
925 struct xfrm_selector
*sel
= &pol
->selector
;
926 int match
, ret
= -ESRCH
;
928 if (pol
->family
!= family
||
932 match
= xfrm_selector_match(sel
, fl
, family
);
934 ret
= security_xfrm_policy_lookup(pol
, fl
->secid
, dir
);
939 static struct xfrm_policy
*xfrm_policy_lookup_bytype(u8 type
, struct flowi
*fl
,
943 struct xfrm_policy
*pol
, *ret
;
944 xfrm_address_t
*daddr
, *saddr
;
945 struct hlist_node
*entry
;
946 struct hlist_head
*chain
;
949 daddr
= xfrm_flowi_daddr(fl
, family
);
950 saddr
= xfrm_flowi_saddr(fl
, family
);
951 if (unlikely(!daddr
|| !saddr
))
954 read_lock_bh(&xfrm_policy_lock
);
955 chain
= policy_hash_direct(daddr
, saddr
, family
, dir
);
957 hlist_for_each_entry(pol
, entry
, chain
, bydst
) {
958 err
= xfrm_policy_match(pol
, fl
, type
, family
, dir
);
968 priority
= ret
->priority
;
972 chain
= &xfrm_policy_inexact
[dir
];
973 hlist_for_each_entry(pol
, entry
, chain
, bydst
) {
974 err
= xfrm_policy_match(pol
, fl
, type
, family
, dir
);
982 } else if (pol
->priority
< priority
) {
990 read_unlock_bh(&xfrm_policy_lock
);
995 static int xfrm_policy_lookup(struct flowi
*fl
, u16 family
, u8 dir
,
996 void **objp
, atomic_t
**obj_refp
)
998 struct xfrm_policy
*pol
;
1001 #ifdef CONFIG_XFRM_SUB_POLICY
1002 pol
= xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_SUB
, fl
, family
, dir
);
1010 pol
= xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN
, fl
, family
, dir
);
1015 #ifdef CONFIG_XFRM_SUB_POLICY
1018 if ((*objp
= (void *) pol
) != NULL
)
1019 *obj_refp
= &pol
->refcnt
;
1023 static inline int policy_to_flow_dir(int dir
)
1025 if (XFRM_POLICY_IN
== FLOW_DIR_IN
&&
1026 XFRM_POLICY_OUT
== FLOW_DIR_OUT
&&
1027 XFRM_POLICY_FWD
== FLOW_DIR_FWD
)
1031 case XFRM_POLICY_IN
:
1033 case XFRM_POLICY_OUT
:
1034 return FLOW_DIR_OUT
;
1035 case XFRM_POLICY_FWD
:
1036 return FLOW_DIR_FWD
;
1040 static struct xfrm_policy
*xfrm_sk_policy_lookup(struct sock
*sk
, int dir
, struct flowi
*fl
)
1042 struct xfrm_policy
*pol
;
1044 read_lock_bh(&xfrm_policy_lock
);
1045 if ((pol
= sk
->sk_policy
[dir
]) != NULL
) {
1046 int match
= xfrm_selector_match(&pol
->selector
, fl
,
1051 err
= security_xfrm_policy_lookup(pol
, fl
->secid
,
1052 policy_to_flow_dir(dir
));
1055 else if (err
== -ESRCH
)
1062 read_unlock_bh(&xfrm_policy_lock
);
1066 static void __xfrm_policy_link(struct xfrm_policy
*pol
, int dir
)
1068 struct hlist_head
*chain
= policy_hash_bysel(&pol
->selector
,
1071 hlist_add_head(&pol
->bydst
, chain
);
1072 hlist_add_head(&pol
->byidx
, xfrm_policy_byidx
+idx_hash(pol
->index
));
1073 xfrm_policy_count
[dir
]++;
1076 if (xfrm_bydst_should_resize(dir
, NULL
))
1077 schedule_work(&xfrm_hash_work
);
1080 static struct xfrm_policy
*__xfrm_policy_unlink(struct xfrm_policy
*pol
,
1083 if (hlist_unhashed(&pol
->bydst
))
1086 hlist_del(&pol
->bydst
);
1087 hlist_del(&pol
->byidx
);
1088 xfrm_policy_count
[dir
]--;
1093 int xfrm_policy_delete(struct xfrm_policy
*pol
, int dir
)
1095 write_lock_bh(&xfrm_policy_lock
);
1096 pol
= __xfrm_policy_unlink(pol
, dir
);
1097 write_unlock_bh(&xfrm_policy_lock
);
1099 if (dir
< XFRM_POLICY_MAX
)
1100 atomic_inc(&flow_cache_genid
);
1101 xfrm_policy_kill(pol
);
1106 EXPORT_SYMBOL(xfrm_policy_delete
);
1108 int xfrm_sk_policy_insert(struct sock
*sk
, int dir
, struct xfrm_policy
*pol
)
1110 struct xfrm_policy
*old_pol
;
1112 #ifdef CONFIG_XFRM_SUB_POLICY
1113 if (pol
&& pol
->type
!= XFRM_POLICY_TYPE_MAIN
)
1117 write_lock_bh(&xfrm_policy_lock
);
1118 old_pol
= sk
->sk_policy
[dir
];
1119 sk
->sk_policy
[dir
] = pol
;
1121 pol
->curlft
.add_time
= get_seconds();
1122 pol
->index
= xfrm_gen_index(pol
->type
, XFRM_POLICY_MAX
+dir
);
1123 __xfrm_policy_link(pol
, XFRM_POLICY_MAX
+dir
);
1126 __xfrm_policy_unlink(old_pol
, XFRM_POLICY_MAX
+dir
);
1127 write_unlock_bh(&xfrm_policy_lock
);
1130 xfrm_policy_kill(old_pol
);
1135 static struct xfrm_policy
*clone_policy(struct xfrm_policy
*old
, int dir
)
1137 struct xfrm_policy
*newp
= xfrm_policy_alloc(GFP_ATOMIC
);
1140 newp
->selector
= old
->selector
;
1141 if (security_xfrm_policy_clone(old
, newp
)) {
1143 return NULL
; /* ENOMEM */
1145 newp
->lft
= old
->lft
;
1146 newp
->curlft
= old
->curlft
;
1147 newp
->action
= old
->action
;
1148 newp
->flags
= old
->flags
;
1149 newp
->xfrm_nr
= old
->xfrm_nr
;
1150 newp
->index
= old
->index
;
1151 newp
->type
= old
->type
;
1152 memcpy(newp
->xfrm_vec
, old
->xfrm_vec
,
1153 newp
->xfrm_nr
*sizeof(struct xfrm_tmpl
));
1154 write_lock_bh(&xfrm_policy_lock
);
1155 __xfrm_policy_link(newp
, XFRM_POLICY_MAX
+dir
);
1156 write_unlock_bh(&xfrm_policy_lock
);
1162 int __xfrm_sk_clone_policy(struct sock
*sk
)
1164 struct xfrm_policy
*p0
= sk
->sk_policy
[0],
1165 *p1
= sk
->sk_policy
[1];
1167 sk
->sk_policy
[0] = sk
->sk_policy
[1] = NULL
;
1168 if (p0
&& (sk
->sk_policy
[0] = clone_policy(p0
, 0)) == NULL
)
1170 if (p1
&& (sk
->sk_policy
[1] = clone_policy(p1
, 1)) == NULL
)
1176 xfrm_get_saddr(xfrm_address_t
*local
, xfrm_address_t
*remote
,
1177 unsigned short family
)
1180 struct xfrm_policy_afinfo
*afinfo
= xfrm_policy_get_afinfo(family
);
1182 if (unlikely(afinfo
== NULL
))
1184 err
= afinfo
->get_saddr(local
, remote
);
1185 xfrm_policy_put_afinfo(afinfo
);
1189 /* Resolve list of templates for the flow, given policy. */
1192 xfrm_tmpl_resolve_one(struct xfrm_policy
*policy
, struct flowi
*fl
,
1193 struct xfrm_state
**xfrm
,
1194 unsigned short family
)
1198 xfrm_address_t
*daddr
= xfrm_flowi_daddr(fl
, family
);
1199 xfrm_address_t
*saddr
= xfrm_flowi_saddr(fl
, family
);
1202 for (nx
=0, i
= 0; i
< policy
->xfrm_nr
; i
++) {
1203 struct xfrm_state
*x
;
1204 xfrm_address_t
*remote
= daddr
;
1205 xfrm_address_t
*local
= saddr
;
1206 struct xfrm_tmpl
*tmpl
= &policy
->xfrm_vec
[i
];
1208 if (tmpl
->mode
== XFRM_MODE_TUNNEL
||
1209 tmpl
->mode
== XFRM_MODE_BEET
) {
1210 remote
= &tmpl
->id
.daddr
;
1211 local
= &tmpl
->saddr
;
1212 family
= tmpl
->encap_family
;
1213 if (xfrm_addr_any(local
, family
)) {
1214 error
= xfrm_get_saddr(&tmp
, remote
, family
);
1221 x
= xfrm_state_find(remote
, local
, fl
, tmpl
, policy
, &error
, family
);
1223 if (x
&& x
->km
.state
== XFRM_STATE_VALID
) {
1230 error
= (x
->km
.state
== XFRM_STATE_ERROR
?
1235 if (!tmpl
->optional
)
1241 for (nx
--; nx
>=0; nx
--)
1242 xfrm_state_put(xfrm
[nx
]);
1247 xfrm_tmpl_resolve(struct xfrm_policy
**pols
, int npols
, struct flowi
*fl
,
1248 struct xfrm_state
**xfrm
,
1249 unsigned short family
)
1251 struct xfrm_state
*tp
[XFRM_MAX_DEPTH
];
1252 struct xfrm_state
**tpp
= (npols
> 1) ? tp
: xfrm
;
1258 for (i
= 0; i
< npols
; i
++) {
1259 if (cnx
+ pols
[i
]->xfrm_nr
>= XFRM_MAX_DEPTH
) {
1264 ret
= xfrm_tmpl_resolve_one(pols
[i
], fl
, &tpp
[cnx
], family
);
1272 /* found states are sorted for outbound processing */
1274 xfrm_state_sort(xfrm
, tpp
, cnx
, family
);
1279 for (cnx
--; cnx
>=0; cnx
--)
1280 xfrm_state_put(tpp
[cnx
]);
1285 /* Check that the bundle accepts the flow and its components are
1289 static struct dst_entry
*
1290 xfrm_find_bundle(struct flowi
*fl
, struct xfrm_policy
*policy
, unsigned short family
)
1292 struct dst_entry
*x
;
1293 struct xfrm_policy_afinfo
*afinfo
= xfrm_policy_get_afinfo(family
);
1294 if (unlikely(afinfo
== NULL
))
1295 return ERR_PTR(-EINVAL
);
1296 x
= afinfo
->find_bundle(fl
, policy
);
1297 xfrm_policy_put_afinfo(afinfo
);
1301 static inline int xfrm_get_tos(struct flowi
*fl
, int family
)
1303 struct xfrm_policy_afinfo
*afinfo
= xfrm_policy_get_afinfo(family
);
1309 tos
= afinfo
->get_tos(fl
);
1311 xfrm_policy_put_afinfo(afinfo
);
1316 static inline struct xfrm_dst
*xfrm_alloc_dst(int family
)
1318 struct xfrm_policy_afinfo
*afinfo
= xfrm_policy_get_afinfo(family
);
1319 struct xfrm_dst
*xdst
;
1322 return ERR_PTR(-EINVAL
);
1324 xdst
= dst_alloc(afinfo
->dst_ops
) ?: ERR_PTR(-ENOBUFS
);
1326 xfrm_policy_put_afinfo(afinfo
);
1331 static inline int xfrm_init_path(struct xfrm_dst
*path
, struct dst_entry
*dst
,
1334 struct xfrm_policy_afinfo
*afinfo
=
1335 xfrm_policy_get_afinfo(dst
->ops
->family
);
1341 err
= afinfo
->init_path(path
, dst
, nfheader_len
);
1343 xfrm_policy_put_afinfo(afinfo
);
1348 static inline int xfrm_fill_dst(struct xfrm_dst
*xdst
, struct net_device
*dev
)
1350 struct xfrm_policy_afinfo
*afinfo
=
1351 xfrm_policy_get_afinfo(xdst
->u
.dst
.ops
->family
);
1357 err
= afinfo
->fill_dst(xdst
, dev
);
1359 xfrm_policy_put_afinfo(afinfo
);
1364 /* Allocate chain of dst_entry's, attach known xfrm's, calculate
1365 * all the metrics... Shortly, bundle a bundle.
1368 static struct dst_entry
*xfrm_bundle_create(struct xfrm_policy
*policy
,
1369 struct xfrm_state
**xfrm
, int nx
,
1371 struct dst_entry
*dst
)
1373 unsigned long now
= jiffies
;
1374 struct net_device
*dev
;
1375 struct dst_entry
*dst_prev
= NULL
;
1376 struct dst_entry
*dst0
= NULL
;
1380 int nfheader_len
= 0;
1381 int trailer_len
= 0;
1383 int family
= policy
->selector
.family
;
1384 xfrm_address_t saddr
, daddr
;
1386 xfrm_flowi_addr_get(fl
, &saddr
, &daddr
, family
);
1388 tos
= xfrm_get_tos(fl
, family
);
1395 for (; i
< nx
; i
++) {
1396 struct xfrm_dst
*xdst
= xfrm_alloc_dst(family
);
1397 struct dst_entry
*dst1
= &xdst
->u
.dst
;
1399 err
= PTR_ERR(xdst
);
1408 dst_prev
->child
= dst_clone(dst1
);
1409 dst1
->flags
|= DST_NOHASH
;
1413 memcpy(&dst1
->metrics
, &dst
->metrics
, sizeof(dst
->metrics
));
1415 if (xfrm
[i
]->props
.mode
!= XFRM_MODE_TRANSPORT
) {
1416 family
= xfrm
[i
]->props
.family
;
1417 dst
= xfrm_dst_lookup(xfrm
[i
], tos
, &saddr
, &daddr
,
1425 dst1
->xfrm
= xfrm
[i
];
1426 xdst
->genid
= xfrm
[i
]->genid
;
1428 dst1
->obsolete
= -1;
1429 dst1
->flags
|= DST_HOST
;
1430 dst1
->lastuse
= now
;
1432 dst1
->input
= dst_discard
;
1433 dst1
->output
= xfrm
[i
]->outer_mode
->afinfo
->output
;
1435 dst1
->next
= dst_prev
;
1438 header_len
+= xfrm
[i
]->props
.header_len
;
1439 if (xfrm
[i
]->type
->flags
& XFRM_TYPE_NON_FRAGMENT
)
1440 nfheader_len
+= xfrm
[i
]->props
.header_len
;
1441 trailer_len
+= xfrm
[i
]->props
.trailer_len
;
1444 dst_prev
->child
= dst
;
1452 /* Copy neighbout for reachability confirmation */
1453 dst0
->neighbour
= neigh_clone(dst
->neighbour
);
1455 xfrm_init_path((struct xfrm_dst
*)dst0
, dst
, nfheader_len
);
1456 xfrm_init_pmtu(dst_prev
);
1458 for (dst_prev
= dst0
; dst_prev
!= dst
; dst_prev
= dst_prev
->child
) {
1459 struct xfrm_dst
*xdst
= (struct xfrm_dst
*)dst_prev
;
1461 err
= xfrm_fill_dst(xdst
, dev
);
1465 dst_prev
->header_len
= header_len
;
1466 dst_prev
->trailer_len
= trailer_len
;
1467 header_len
-= xdst
->u
.dst
.xfrm
->props
.header_len
;
1468 trailer_len
-= xdst
->u
.dst
.xfrm
->props
.trailer_len
;
1476 xfrm_state_put(xfrm
[i
]);
1480 dst0
= ERR_PTR(err
);
1485 xfrm_dst_alloc_copy(void **target
, void *src
, int size
)
1488 *target
= kmalloc(size
, GFP_ATOMIC
);
1492 memcpy(*target
, src
, size
);
1497 xfrm_dst_update_parent(struct dst_entry
*dst
, struct xfrm_selector
*sel
)
1499 #ifdef CONFIG_XFRM_SUB_POLICY
1500 struct xfrm_dst
*xdst
= (struct xfrm_dst
*)dst
;
1501 return xfrm_dst_alloc_copy((void **)&(xdst
->partner
),
1509 xfrm_dst_update_origin(struct dst_entry
*dst
, struct flowi
*fl
)
1511 #ifdef CONFIG_XFRM_SUB_POLICY
1512 struct xfrm_dst
*xdst
= (struct xfrm_dst
*)dst
;
1513 return xfrm_dst_alloc_copy((void **)&(xdst
->origin
), fl
, sizeof(*fl
));
1519 static int stale_bundle(struct dst_entry
*dst
);
1521 /* Main function: finds/creates a bundle for given flow.
1523 * At the moment we eat a raw IP route. Mostly to speed up lookups
1524 * on interfaces with disabled IPsec.
1526 int __xfrm_lookup(struct dst_entry
**dst_p
, struct flowi
*fl
,
1527 struct sock
*sk
, int flags
)
1529 struct xfrm_policy
*policy
;
1530 struct xfrm_policy
*pols
[XFRM_POLICY_TYPE_MAX
];
1535 struct xfrm_state
*xfrm
[XFRM_MAX_DEPTH
];
1536 struct dst_entry
*dst
, *dst_orig
= *dst_p
;
1541 u8 dir
= policy_to_flow_dir(XFRM_POLICY_OUT
);
1544 genid
= atomic_read(&flow_cache_genid
);
1546 for (pi
= 0; pi
< ARRAY_SIZE(pols
); pi
++)
1552 if (sk
&& sk
->sk_policy
[XFRM_POLICY_OUT
]) {
1553 policy
= xfrm_sk_policy_lookup(sk
, XFRM_POLICY_OUT
, fl
);
1554 err
= PTR_ERR(policy
);
1555 if (IS_ERR(policy
)) {
1556 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR
);
1562 /* To accelerate a bit... */
1563 if ((dst_orig
->flags
& DST_NOXFRM
) ||
1564 !xfrm_policy_count
[XFRM_POLICY_OUT
])
1567 policy
= flow_cache_lookup(fl
, dst_orig
->ops
->family
,
1568 dir
, xfrm_policy_lookup
);
1569 err
= PTR_ERR(policy
);
1570 if (IS_ERR(policy
)) {
1571 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR
);
1579 family
= dst_orig
->ops
->family
;
1582 xfrm_nr
+= pols
[0]->xfrm_nr
;
1585 if ((flags
& XFRM_LOOKUP_ICMP
) && !(policy
->flags
& XFRM_POLICY_ICMP
))
1588 policy
->curlft
.use_time
= get_seconds();
1590 switch (policy
->action
) {
1592 case XFRM_POLICY_BLOCK
:
1593 /* Prohibit the flow */
1594 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK
);
1598 case XFRM_POLICY_ALLOW
:
1599 #ifndef CONFIG_XFRM_SUB_POLICY
1600 if (policy
->xfrm_nr
== 0) {
1601 /* Flow passes not transformed. */
1602 xfrm_pol_put(policy
);
1607 /* Try to find matching bundle.
1609 * LATER: help from flow cache. It is optional, this
1610 * is required only for output policy.
1612 dst
= xfrm_find_bundle(fl
, policy
, family
);
1614 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR
);
1622 #ifdef CONFIG_XFRM_SUB_POLICY
1623 if (pols
[0]->type
!= XFRM_POLICY_TYPE_MAIN
) {
1624 pols
[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN
,
1628 if (IS_ERR(pols
[1])) {
1629 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR
);
1630 err
= PTR_ERR(pols
[1]);
1633 if (pols
[1]->action
== XFRM_POLICY_BLOCK
) {
1634 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK
);
1639 xfrm_nr
+= pols
[1]->xfrm_nr
;
1644 * Because neither flowi nor bundle information knows about
1645 * transformation template size. On more than one policy usage
1646 * we can realize whether all of them is bypass or not after
1647 * they are searched. See above not-transformed bypass
1648 * is surrounded by non-sub policy configuration, too.
1651 /* Flow passes not transformed. */
1652 xfrm_pols_put(pols
, npols
);
1657 nx
= xfrm_tmpl_resolve(pols
, npols
, fl
, xfrm
, family
);
1659 if (unlikely(nx
<0)) {
1661 if (err
== -EAGAIN
&& sysctl_xfrm_larval_drop
) {
1662 /* EREMOTE tells the caller to generate
1663 * a one-shot blackhole route.
1665 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES
);
1666 xfrm_pol_put(policy
);
1669 if (err
== -EAGAIN
&& (flags
& XFRM_LOOKUP_WAIT
)) {
1670 DECLARE_WAITQUEUE(wait
, current
);
1672 add_wait_queue(&km_waitq
, &wait
);
1673 set_current_state(TASK_INTERRUPTIBLE
);
1675 set_current_state(TASK_RUNNING
);
1676 remove_wait_queue(&km_waitq
, &wait
);
1678 nx
= xfrm_tmpl_resolve(pols
, npols
, fl
, xfrm
, family
);
1680 if (nx
== -EAGAIN
&& signal_pending(current
)) {
1681 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES
);
1685 if (nx
== -EAGAIN
||
1686 genid
!= atomic_read(&flow_cache_genid
)) {
1687 xfrm_pols_put(pols
, npols
);
1693 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES
);
1698 /* Flow passes not transformed. */
1699 xfrm_pols_put(pols
, npols
);
1703 dst
= xfrm_bundle_create(policy
, xfrm
, nx
, fl
, dst_orig
);
1706 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLEGENERROR
);
1710 for (pi
= 0; pi
< npols
; pi
++) {
1711 read_lock_bh(&pols
[pi
]->lock
);
1712 pol_dead
|= pols
[pi
]->dead
;
1713 read_unlock_bh(&pols
[pi
]->lock
);
1716 write_lock_bh(&policy
->lock
);
1717 if (unlikely(pol_dead
|| stale_bundle(dst
))) {
1718 /* Wow! While we worked on resolving, this
1719 * policy has gone. Retry. It is not paranoia,
1720 * we just cannot enlist new bundle to dead object.
1721 * We can't enlist stable bundles either.
1723 write_unlock_bh(&policy
->lock
);
1728 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLDEAD
);
1730 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR
);
1731 err
= -EHOSTUNREACH
;
1736 err
= xfrm_dst_update_parent(dst
, &pols
[1]->selector
);
1738 err
= xfrm_dst_update_origin(dst
, fl
);
1739 if (unlikely(err
)) {
1740 write_unlock_bh(&policy
->lock
);
1743 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR
);
1747 dst
->next
= policy
->bundles
;
1748 policy
->bundles
= dst
;
1750 write_unlock_bh(&policy
->lock
);
1753 dst_release(dst_orig
);
1754 xfrm_pols_put(pols
, npols
);
1758 xfrm_pols_put(pols
, npols
);
1760 dst_release(dst_orig
);
1766 if (flags
& XFRM_LOOKUP_ICMP
)
1770 EXPORT_SYMBOL(__xfrm_lookup
);
1772 int xfrm_lookup(struct dst_entry
**dst_p
, struct flowi
*fl
,
1773 struct sock
*sk
, int flags
)
1775 int err
= __xfrm_lookup(dst_p
, fl
, sk
, flags
);
1777 if (err
== -EREMOTE
) {
1778 dst_release(*dst_p
);
1785 EXPORT_SYMBOL(xfrm_lookup
);
1788 xfrm_secpath_reject(int idx
, struct sk_buff
*skb
, struct flowi
*fl
)
1790 struct xfrm_state
*x
;
1792 if (!skb
->sp
|| idx
< 0 || idx
>= skb
->sp
->len
)
1794 x
= skb
->sp
->xvec
[idx
];
1795 if (!x
->type
->reject
)
1797 return x
->type
->reject(x
, skb
, fl
);
1800 /* When skb is transformed back to its "native" form, we have to
1801 * check policy restrictions. At the moment we make this in maximally
1802 * stupid way. Shame on me. :-) Of course, connected sockets must
1803 * have policy cached at them.
1807 xfrm_state_ok(struct xfrm_tmpl
*tmpl
, struct xfrm_state
*x
,
1808 unsigned short family
)
1810 if (xfrm_state_kern(x
))
1811 return tmpl
->optional
&& !xfrm_state_addr_cmp(tmpl
, x
, tmpl
->encap_family
);
1812 return x
->id
.proto
== tmpl
->id
.proto
&&
1813 (x
->id
.spi
== tmpl
->id
.spi
|| !tmpl
->id
.spi
) &&
1814 (x
->props
.reqid
== tmpl
->reqid
|| !tmpl
->reqid
) &&
1815 x
->props
.mode
== tmpl
->mode
&&
1816 ((tmpl
->aalgos
& (1<<x
->props
.aalgo
)) ||
1817 !(xfrm_id_proto_match(tmpl
->id
.proto
, IPSEC_PROTO_ANY
))) &&
1818 !(x
->props
.mode
!= XFRM_MODE_TRANSPORT
&&
1819 xfrm_state_addr_cmp(tmpl
, x
, family
));
1823 * 0 or more than 0 is returned when validation is succeeded (either bypass
1824 * because of optional transport mode, or next index of the mathced secpath
1825 * state with the template.
1826 * -1 is returned when no matching template is found.
1827 * Otherwise "-2 - errored_index" is returned.
1830 xfrm_policy_ok(struct xfrm_tmpl
*tmpl
, struct sec_path
*sp
, int start
,
1831 unsigned short family
)
1835 if (tmpl
->optional
) {
1836 if (tmpl
->mode
== XFRM_MODE_TRANSPORT
)
1840 for (; idx
< sp
->len
; idx
++) {
1841 if (xfrm_state_ok(tmpl
, sp
->xvec
[idx
], family
))
1843 if (sp
->xvec
[idx
]->props
.mode
!= XFRM_MODE_TRANSPORT
) {
1852 int __xfrm_decode_session(struct sk_buff
*skb
, struct flowi
*fl
,
1853 unsigned int family
, int reverse
)
1855 struct xfrm_policy_afinfo
*afinfo
= xfrm_policy_get_afinfo(family
);
1858 if (unlikely(afinfo
== NULL
))
1859 return -EAFNOSUPPORT
;
1861 afinfo
->decode_session(skb
, fl
, reverse
);
1862 err
= security_xfrm_decode_session(skb
, &fl
->secid
);
1863 xfrm_policy_put_afinfo(afinfo
);
1866 EXPORT_SYMBOL(__xfrm_decode_session
);
1868 static inline int secpath_has_nontransport(struct sec_path
*sp
, int k
, int *idxp
)
1870 for (; k
< sp
->len
; k
++) {
1871 if (sp
->xvec
[k
]->props
.mode
!= XFRM_MODE_TRANSPORT
) {
1880 int __xfrm_policy_check(struct sock
*sk
, int dir
, struct sk_buff
*skb
,
1881 unsigned short family
)
1883 struct xfrm_policy
*pol
;
1884 struct xfrm_policy
*pols
[XFRM_POLICY_TYPE_MAX
];
1893 reverse
= dir
& ~XFRM_POLICY_MASK
;
1894 dir
&= XFRM_POLICY_MASK
;
1895 fl_dir
= policy_to_flow_dir(dir
);
1897 if (__xfrm_decode_session(skb
, &fl
, family
, reverse
) < 0) {
1898 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR
);
1902 nf_nat_decode_session(skb
, &fl
, family
);
1904 /* First, check used SA against their selectors. */
1908 for (i
=skb
->sp
->len
-1; i
>=0; i
--) {
1909 struct xfrm_state
*x
= skb
->sp
->xvec
[i
];
1910 if (!xfrm_selector_match(&x
->sel
, &fl
, family
)) {
1911 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEMISMATCH
);
1918 if (sk
&& sk
->sk_policy
[dir
]) {
1919 pol
= xfrm_sk_policy_lookup(sk
, dir
, &fl
);
1921 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR
);
1927 pol
= flow_cache_lookup(&fl
, family
, fl_dir
,
1928 xfrm_policy_lookup
);
1931 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR
);
1936 if (skb
->sp
&& secpath_has_nontransport(skb
->sp
, 0, &xerr_idx
)) {
1937 xfrm_secpath_reject(xerr_idx
, skb
, &fl
);
1938 XFRM_INC_STATS(LINUX_MIB_XFRMINNOPOLS
);
1944 pol
->curlft
.use_time
= get_seconds();
1948 #ifdef CONFIG_XFRM_SUB_POLICY
1949 if (pols
[0]->type
!= XFRM_POLICY_TYPE_MAIN
) {
1950 pols
[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN
,
1954 if (IS_ERR(pols
[1])) {
1955 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR
);
1958 pols
[1]->curlft
.use_time
= get_seconds();
1964 if (pol
->action
== XFRM_POLICY_ALLOW
) {
1965 struct sec_path
*sp
;
1966 static struct sec_path dummy
;
1967 struct xfrm_tmpl
*tp
[XFRM_MAX_DEPTH
];
1968 struct xfrm_tmpl
*stp
[XFRM_MAX_DEPTH
];
1969 struct xfrm_tmpl
**tpp
= tp
;
1973 if ((sp
= skb
->sp
) == NULL
)
1976 for (pi
= 0; pi
< npols
; pi
++) {
1977 if (pols
[pi
] != pol
&&
1978 pols
[pi
]->action
!= XFRM_POLICY_ALLOW
) {
1979 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK
);
1982 if (ti
+ pols
[pi
]->xfrm_nr
>= XFRM_MAX_DEPTH
) {
1983 XFRM_INC_STATS(LINUX_MIB_XFRMINBUFFERERROR
);
1986 for (i
= 0; i
< pols
[pi
]->xfrm_nr
; i
++)
1987 tpp
[ti
++] = &pols
[pi
]->xfrm_vec
[i
];
1991 xfrm_tmpl_sort(stp
, tpp
, xfrm_nr
, family
);
1995 /* For each tunnel xfrm, find the first matching tmpl.
1996 * For each tmpl before that, find corresponding xfrm.
1997 * Order is _important_. Later we will implement
1998 * some barriers, but at the moment barriers
1999 * are implied between each two transformations.
2001 for (i
= xfrm_nr
-1, k
= 0; i
>= 0; i
--) {
2002 k
= xfrm_policy_ok(tpp
[i
], sp
, k
, family
);
2005 /* "-2 - errored_index" returned */
2007 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH
);
2012 if (secpath_has_nontransport(sp
, k
, &xerr_idx
)) {
2013 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH
);
2017 xfrm_pols_put(pols
, npols
);
2020 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK
);
2023 xfrm_secpath_reject(xerr_idx
, skb
, &fl
);
2025 xfrm_pols_put(pols
, npols
);
2028 EXPORT_SYMBOL(__xfrm_policy_check
);
2030 int __xfrm_route_forward(struct sk_buff
*skb
, unsigned short family
)
2034 if (xfrm_decode_session(skb
, &fl
, family
) < 0) {
2035 /* XXX: we should have something like FWDHDRERROR here. */
2036 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR
);
2040 return xfrm_lookup(&skb
->dst
, &fl
, NULL
, 0) == 0;
2042 EXPORT_SYMBOL(__xfrm_route_forward
);
2044 /* Optimize later using cookies and generation ids. */
2046 static struct dst_entry
*xfrm_dst_check(struct dst_entry
*dst
, u32 cookie
)
2048 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2049 * to "-1" to force all XFRM destinations to get validated by
2050 * dst_ops->check on every use. We do this because when a
2051 * normal route referenced by an XFRM dst is obsoleted we do
2052 * not go looking around for all parent referencing XFRM dsts
2053 * so that we can invalidate them. It is just too much work.
2054 * Instead we make the checks here on every use. For example:
2056 * XFRM dst A --> IPv4 dst X
2058 * X is the "xdst->route" of A (X is also the "dst->path" of A
2059 * in this example). If X is marked obsolete, "A" will not
2060 * notice. That's what we are validating here via the
2061 * stale_bundle() check.
2063 * When a policy's bundle is pruned, we dst_free() the XFRM
2064 * dst which causes it's ->obsolete field to be set to a
2065 * positive non-zero integer. If an XFRM dst has been pruned
2066 * like this, we want to force a new route lookup.
2068 if (dst
->obsolete
< 0 && !stale_bundle(dst
))
2074 static int stale_bundle(struct dst_entry
*dst
)
2076 return !xfrm_bundle_ok(NULL
, (struct xfrm_dst
*)dst
, NULL
, AF_UNSPEC
, 0);
2079 void xfrm_dst_ifdown(struct dst_entry
*dst
, struct net_device
*dev
)
2081 while ((dst
= dst
->child
) && dst
->xfrm
&& dst
->dev
== dev
) {
2082 dst
->dev
= dev
->nd_net
->loopback_dev
;
2087 EXPORT_SYMBOL(xfrm_dst_ifdown
);
2089 static void xfrm_link_failure(struct sk_buff
*skb
)
2091 /* Impossible. Such dst must be popped before reaches point of failure. */
2095 static struct dst_entry
*xfrm_negative_advice(struct dst_entry
*dst
)
2098 if (dst
->obsolete
) {
2106 static void prune_one_bundle(struct xfrm_policy
*pol
, int (*func
)(struct dst_entry
*), struct dst_entry
**gc_list_p
)
2108 struct dst_entry
*dst
, **dstp
;
2110 write_lock(&pol
->lock
);
2111 dstp
= &pol
->bundles
;
2112 while ((dst
=*dstp
) != NULL
) {
2115 dst
->next
= *gc_list_p
;
2121 write_unlock(&pol
->lock
);
2124 static void xfrm_prune_bundles(int (*func
)(struct dst_entry
*))
2126 struct dst_entry
*gc_list
= NULL
;
2129 read_lock_bh(&xfrm_policy_lock
);
2130 for (dir
= 0; dir
< XFRM_POLICY_MAX
* 2; dir
++) {
2131 struct xfrm_policy
*pol
;
2132 struct hlist_node
*entry
;
2133 struct hlist_head
*table
;
2136 hlist_for_each_entry(pol
, entry
,
2137 &xfrm_policy_inexact
[dir
], bydst
)
2138 prune_one_bundle(pol
, func
, &gc_list
);
2140 table
= xfrm_policy_bydst
[dir
].table
;
2141 for (i
= xfrm_policy_bydst
[dir
].hmask
; i
>= 0; i
--) {
2142 hlist_for_each_entry(pol
, entry
, table
+ i
, bydst
)
2143 prune_one_bundle(pol
, func
, &gc_list
);
2146 read_unlock_bh(&xfrm_policy_lock
);
2149 struct dst_entry
*dst
= gc_list
;
2150 gc_list
= dst
->next
;
2155 static int unused_bundle(struct dst_entry
*dst
)
2157 return !atomic_read(&dst
->__refcnt
);
2160 static void __xfrm_garbage_collect(void)
2162 xfrm_prune_bundles(unused_bundle
);
2165 static int xfrm_flush_bundles(void)
2167 xfrm_prune_bundles(stale_bundle
);
2171 static void xfrm_init_pmtu(struct dst_entry
*dst
)
2174 struct xfrm_dst
*xdst
= (struct xfrm_dst
*)dst
;
2175 u32 pmtu
, route_mtu_cached
;
2177 pmtu
= dst_mtu(dst
->child
);
2178 xdst
->child_mtu_cached
= pmtu
;
2180 pmtu
= xfrm_state_mtu(dst
->xfrm
, pmtu
);
2182 route_mtu_cached
= dst_mtu(xdst
->route
);
2183 xdst
->route_mtu_cached
= route_mtu_cached
;
2185 if (pmtu
> route_mtu_cached
)
2186 pmtu
= route_mtu_cached
;
2188 dst
->metrics
[RTAX_MTU
-1] = pmtu
;
2189 } while ((dst
= dst
->next
));
2192 /* Check that the bundle accepts the flow and its components are
2196 int xfrm_bundle_ok(struct xfrm_policy
*pol
, struct xfrm_dst
*first
,
2197 struct flowi
*fl
, int family
, int strict
)
2199 struct dst_entry
*dst
= &first
->u
.dst
;
2200 struct xfrm_dst
*last
;
2203 if (!dst_check(dst
->path
, ((struct xfrm_dst
*)dst
)->path_cookie
) ||
2204 (dst
->dev
&& !netif_running(dst
->dev
)))
2206 #ifdef CONFIG_XFRM_SUB_POLICY
2208 if (first
->origin
&& !flow_cache_uli_match(first
->origin
, fl
))
2210 if (first
->partner
&&
2211 !xfrm_selector_match(first
->partner
, fl
, family
))
2219 struct xfrm_dst
*xdst
= (struct xfrm_dst
*)dst
;
2221 if (fl
&& !xfrm_selector_match(&dst
->xfrm
->sel
, fl
, family
))
2224 !security_xfrm_state_pol_flow_match(dst
->xfrm
, pol
, fl
))
2226 if (dst
->xfrm
->km
.state
!= XFRM_STATE_VALID
)
2228 if (xdst
->genid
!= dst
->xfrm
->genid
)
2232 !(dst
->xfrm
->outer_mode
->flags
& XFRM_MODE_FLAG_TUNNEL
) &&
2233 !xfrm_state_addr_flow_check(dst
->xfrm
, fl
, family
))
2236 mtu
= dst_mtu(dst
->child
);
2237 if (xdst
->child_mtu_cached
!= mtu
) {
2239 xdst
->child_mtu_cached
= mtu
;
2242 if (!dst_check(xdst
->route
, xdst
->route_cookie
))
2244 mtu
= dst_mtu(xdst
->route
);
2245 if (xdst
->route_mtu_cached
!= mtu
) {
2247 xdst
->route_mtu_cached
= mtu
;
2251 } while (dst
->xfrm
);
2256 mtu
= last
->child_mtu_cached
;
2260 mtu
= xfrm_state_mtu(dst
->xfrm
, mtu
);
2261 if (mtu
> last
->route_mtu_cached
)
2262 mtu
= last
->route_mtu_cached
;
2263 dst
->metrics
[RTAX_MTU
-1] = mtu
;
2268 last
= (struct xfrm_dst
*)last
->u
.dst
.next
;
2269 last
->child_mtu_cached
= mtu
;
2275 EXPORT_SYMBOL(xfrm_bundle_ok
);
2277 int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo
*afinfo
)
2280 if (unlikely(afinfo
== NULL
))
2282 if (unlikely(afinfo
->family
>= NPROTO
))
2283 return -EAFNOSUPPORT
;
2284 write_lock_bh(&xfrm_policy_afinfo_lock
);
2285 if (unlikely(xfrm_policy_afinfo
[afinfo
->family
] != NULL
))
2288 struct dst_ops
*dst_ops
= afinfo
->dst_ops
;
2289 if (likely(dst_ops
->kmem_cachep
== NULL
))
2290 dst_ops
->kmem_cachep
= xfrm_dst_cache
;
2291 if (likely(dst_ops
->check
== NULL
))
2292 dst_ops
->check
= xfrm_dst_check
;
2293 if (likely(dst_ops
->negative_advice
== NULL
))
2294 dst_ops
->negative_advice
= xfrm_negative_advice
;
2295 if (likely(dst_ops
->link_failure
== NULL
))
2296 dst_ops
->link_failure
= xfrm_link_failure
;
2297 if (likely(afinfo
->garbage_collect
== NULL
))
2298 afinfo
->garbage_collect
= __xfrm_garbage_collect
;
2299 xfrm_policy_afinfo
[afinfo
->family
] = afinfo
;
2301 write_unlock_bh(&xfrm_policy_afinfo_lock
);
2304 EXPORT_SYMBOL(xfrm_policy_register_afinfo
);
2306 int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo
*afinfo
)
2309 if (unlikely(afinfo
== NULL
))
2311 if (unlikely(afinfo
->family
>= NPROTO
))
2312 return -EAFNOSUPPORT
;
2313 write_lock_bh(&xfrm_policy_afinfo_lock
);
2314 if (likely(xfrm_policy_afinfo
[afinfo
->family
] != NULL
)) {
2315 if (unlikely(xfrm_policy_afinfo
[afinfo
->family
] != afinfo
))
2318 struct dst_ops
*dst_ops
= afinfo
->dst_ops
;
2319 xfrm_policy_afinfo
[afinfo
->family
] = NULL
;
2320 dst_ops
->kmem_cachep
= NULL
;
2321 dst_ops
->check
= NULL
;
2322 dst_ops
->negative_advice
= NULL
;
2323 dst_ops
->link_failure
= NULL
;
2324 afinfo
->garbage_collect
= NULL
;
2327 write_unlock_bh(&xfrm_policy_afinfo_lock
);
2330 EXPORT_SYMBOL(xfrm_policy_unregister_afinfo
);
2332 static struct xfrm_policy_afinfo
*xfrm_policy_get_afinfo(unsigned short family
)
2334 struct xfrm_policy_afinfo
*afinfo
;
2335 if (unlikely(family
>= NPROTO
))
2337 read_lock(&xfrm_policy_afinfo_lock
);
2338 afinfo
= xfrm_policy_afinfo
[family
];
2339 if (unlikely(!afinfo
))
2340 read_unlock(&xfrm_policy_afinfo_lock
);
2344 static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo
*afinfo
)
2346 read_unlock(&xfrm_policy_afinfo_lock
);
2349 static int xfrm_dev_event(struct notifier_block
*this, unsigned long event
, void *ptr
)
2351 struct net_device
*dev
= ptr
;
2353 if (dev
->nd_net
!= &init_net
)
2358 xfrm_flush_bundles();
2363 static struct notifier_block xfrm_dev_notifier
= {
2369 #ifdef CONFIG_XFRM_STATISTICS
2370 static int __init
xfrm_statistics_init(void)
2372 if (snmp_mib_init((void **)xfrm_statistics
,
2373 sizeof(struct linux_xfrm_mib
)) < 0)
2379 static void __init
xfrm_policy_init(void)
2381 unsigned int hmask
, sz
;
2384 xfrm_dst_cache
= kmem_cache_create("xfrm_dst_cache",
2385 sizeof(struct xfrm_dst
),
2386 0, SLAB_HWCACHE_ALIGN
|SLAB_PANIC
,
2390 sz
= (hmask
+1) * sizeof(struct hlist_head
);
2392 xfrm_policy_byidx
= xfrm_hash_alloc(sz
);
2393 xfrm_idx_hmask
= hmask
;
2394 if (!xfrm_policy_byidx
)
2395 panic("XFRM: failed to allocate byidx hash\n");
2397 for (dir
= 0; dir
< XFRM_POLICY_MAX
* 2; dir
++) {
2398 struct xfrm_policy_hash
*htab
;
2400 INIT_HLIST_HEAD(&xfrm_policy_inexact
[dir
]);
2402 htab
= &xfrm_policy_bydst
[dir
];
2403 htab
->table
= xfrm_hash_alloc(sz
);
2404 htab
->hmask
= hmask
;
2406 panic("XFRM: failed to allocate bydst hash\n");
2409 for (dir
= 0; dir
< XFRM_POLICY_TYPE_MAX
; dir
++)
2410 INIT_LIST_HEAD(&xfrm_policy_bytype
[dir
]);
2412 INIT_WORK(&xfrm_policy_gc_work
, xfrm_policy_gc_task
);
2413 register_netdevice_notifier(&xfrm_dev_notifier
);
2416 void __init
xfrm_init(void)
2418 #ifdef CONFIG_XFRM_STATISTICS
2419 xfrm_statistics_init();
2424 #ifdef CONFIG_XFRM_STATISTICS
2429 #ifdef CONFIG_AUDITSYSCALL
2430 static void xfrm_audit_common_policyinfo(struct xfrm_policy
*xp
,
2431 struct audit_buffer
*audit_buf
)
2433 struct xfrm_sec_ctx
*ctx
= xp
->security
;
2434 struct xfrm_selector
*sel
= &xp
->selector
;
2437 audit_log_format(audit_buf
, " sec_alg=%u sec_doi=%u sec_obj=%s",
2438 ctx
->ctx_alg
, ctx
->ctx_doi
, ctx
->ctx_str
);
2440 switch(sel
->family
) {
2442 audit_log_format(audit_buf
, " src=" NIPQUAD_FMT
,
2443 NIPQUAD(sel
->saddr
.a4
));
2444 if (sel
->prefixlen_s
!= 32)
2445 audit_log_format(audit_buf
, " src_prefixlen=%d",
2447 audit_log_format(audit_buf
, " dst=" NIPQUAD_FMT
,
2448 NIPQUAD(sel
->daddr
.a4
));
2449 if (sel
->prefixlen_d
!= 32)
2450 audit_log_format(audit_buf
, " dst_prefixlen=%d",
2454 audit_log_format(audit_buf
, " src=" NIP6_FMT
,
2455 NIP6(*(struct in6_addr
*)sel
->saddr
.a6
));
2456 if (sel
->prefixlen_s
!= 128)
2457 audit_log_format(audit_buf
, " src_prefixlen=%d",
2459 audit_log_format(audit_buf
, " dst=" NIP6_FMT
,
2460 NIP6(*(struct in6_addr
*)sel
->daddr
.a6
));
2461 if (sel
->prefixlen_d
!= 128)
2462 audit_log_format(audit_buf
, " dst_prefixlen=%d",
2468 void xfrm_audit_policy_add(struct xfrm_policy
*xp
, int result
,
2469 u32 auid
, u32 secid
)
2471 struct audit_buffer
*audit_buf
;
2473 audit_buf
= xfrm_audit_start("SPD-add");
2474 if (audit_buf
== NULL
)
2476 xfrm_audit_helper_usrinfo(auid
, secid
, audit_buf
);
2477 audit_log_format(audit_buf
, " res=%u", result
);
2478 xfrm_audit_common_policyinfo(xp
, audit_buf
);
2479 audit_log_end(audit_buf
);
2481 EXPORT_SYMBOL_GPL(xfrm_audit_policy_add
);
2483 void xfrm_audit_policy_delete(struct xfrm_policy
*xp
, int result
,
2484 u32 auid
, u32 secid
)
2486 struct audit_buffer
*audit_buf
;
2488 audit_buf
= xfrm_audit_start("SPD-delete");
2489 if (audit_buf
== NULL
)
2491 xfrm_audit_helper_usrinfo(auid
, secid
, audit_buf
);
2492 audit_log_format(audit_buf
, " res=%u", result
);
2493 xfrm_audit_common_policyinfo(xp
, audit_buf
);
2494 audit_log_end(audit_buf
);
2496 EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete
);
2499 #ifdef CONFIG_XFRM_MIGRATE
2500 static int xfrm_migrate_selector_match(struct xfrm_selector
*sel_cmp
,
2501 struct xfrm_selector
*sel_tgt
)
2503 if (sel_cmp
->proto
== IPSEC_ULPROTO_ANY
) {
2504 if (sel_tgt
->family
== sel_cmp
->family
&&
2505 xfrm_addr_cmp(&sel_tgt
->daddr
, &sel_cmp
->daddr
,
2506 sel_cmp
->family
) == 0 &&
2507 xfrm_addr_cmp(&sel_tgt
->saddr
, &sel_cmp
->saddr
,
2508 sel_cmp
->family
) == 0 &&
2509 sel_tgt
->prefixlen_d
== sel_cmp
->prefixlen_d
&&
2510 sel_tgt
->prefixlen_s
== sel_cmp
->prefixlen_s
) {
2514 if (memcmp(sel_tgt
, sel_cmp
, sizeof(*sel_tgt
)) == 0) {
2521 static struct xfrm_policy
* xfrm_migrate_policy_find(struct xfrm_selector
*sel
,
2524 struct xfrm_policy
*pol
, *ret
= NULL
;
2525 struct hlist_node
*entry
;
2526 struct hlist_head
*chain
;
2529 read_lock_bh(&xfrm_policy_lock
);
2530 chain
= policy_hash_direct(&sel
->daddr
, &sel
->saddr
, sel
->family
, dir
);
2531 hlist_for_each_entry(pol
, entry
, chain
, bydst
) {
2532 if (xfrm_migrate_selector_match(sel
, &pol
->selector
) &&
2533 pol
->type
== type
) {
2535 priority
= ret
->priority
;
2539 chain
= &xfrm_policy_inexact
[dir
];
2540 hlist_for_each_entry(pol
, entry
, chain
, bydst
) {
2541 if (xfrm_migrate_selector_match(sel
, &pol
->selector
) &&
2542 pol
->type
== type
&&
2543 pol
->priority
< priority
) {
2552 read_unlock_bh(&xfrm_policy_lock
);
2557 static int migrate_tmpl_match(struct xfrm_migrate
*m
, struct xfrm_tmpl
*t
)
2561 if (t
->mode
== m
->mode
&& t
->id
.proto
== m
->proto
&&
2562 (m
->reqid
== 0 || t
->reqid
== m
->reqid
)) {
2564 case XFRM_MODE_TUNNEL
:
2565 case XFRM_MODE_BEET
:
2566 if (xfrm_addr_cmp(&t
->id
.daddr
, &m
->old_daddr
,
2567 m
->old_family
) == 0 &&
2568 xfrm_addr_cmp(&t
->saddr
, &m
->old_saddr
,
2569 m
->old_family
) == 0) {
2573 case XFRM_MODE_TRANSPORT
:
2574 /* in case of transport mode, template does not store
2575 any IP addresses, hence we just compare mode and
2586 /* update endpoint address(es) of template(s) */
2587 static int xfrm_policy_migrate(struct xfrm_policy
*pol
,
2588 struct xfrm_migrate
*m
, int num_migrate
)
2590 struct xfrm_migrate
*mp
;
2591 struct dst_entry
*dst
;
2594 write_lock_bh(&pol
->lock
);
2595 if (unlikely(pol
->dead
)) {
2596 /* target policy has been deleted */
2597 write_unlock_bh(&pol
->lock
);
2601 for (i
= 0; i
< pol
->xfrm_nr
; i
++) {
2602 for (j
= 0, mp
= m
; j
< num_migrate
; j
++, mp
++) {
2603 if (!migrate_tmpl_match(mp
, &pol
->xfrm_vec
[i
]))
2606 if (pol
->xfrm_vec
[i
].mode
!= XFRM_MODE_TUNNEL
&&
2607 pol
->xfrm_vec
[i
].mode
!= XFRM_MODE_BEET
)
2609 /* update endpoints */
2610 memcpy(&pol
->xfrm_vec
[i
].id
.daddr
, &mp
->new_daddr
,
2611 sizeof(pol
->xfrm_vec
[i
].id
.daddr
));
2612 memcpy(&pol
->xfrm_vec
[i
].saddr
, &mp
->new_saddr
,
2613 sizeof(pol
->xfrm_vec
[i
].saddr
));
2614 pol
->xfrm_vec
[i
].encap_family
= mp
->new_family
;
2616 while ((dst
= pol
->bundles
) != NULL
) {
2617 pol
->bundles
= dst
->next
;
2623 write_unlock_bh(&pol
->lock
);
2631 static int xfrm_migrate_check(struct xfrm_migrate
*m
, int num_migrate
)
2635 if (num_migrate
< 1 || num_migrate
> XFRM_MAX_DEPTH
)
2638 for (i
= 0; i
< num_migrate
; i
++) {
2639 if ((xfrm_addr_cmp(&m
[i
].old_daddr
, &m
[i
].new_daddr
,
2640 m
[i
].old_family
) == 0) &&
2641 (xfrm_addr_cmp(&m
[i
].old_saddr
, &m
[i
].new_saddr
,
2642 m
[i
].old_family
) == 0))
2644 if (xfrm_addr_any(&m
[i
].new_daddr
, m
[i
].new_family
) ||
2645 xfrm_addr_any(&m
[i
].new_saddr
, m
[i
].new_family
))
2648 /* check if there is any duplicated entry */
2649 for (j
= i
+ 1; j
< num_migrate
; j
++) {
2650 if (!memcmp(&m
[i
].old_daddr
, &m
[j
].old_daddr
,
2651 sizeof(m
[i
].old_daddr
)) &&
2652 !memcmp(&m
[i
].old_saddr
, &m
[j
].old_saddr
,
2653 sizeof(m
[i
].old_saddr
)) &&
2654 m
[i
].proto
== m
[j
].proto
&&
2655 m
[i
].mode
== m
[j
].mode
&&
2656 m
[i
].reqid
== m
[j
].reqid
&&
2657 m
[i
].old_family
== m
[j
].old_family
)
2665 int xfrm_migrate(struct xfrm_selector
*sel
, u8 dir
, u8 type
,
2666 struct xfrm_migrate
*m
, int num_migrate
)
2668 int i
, err
, nx_cur
= 0, nx_new
= 0;
2669 struct xfrm_policy
*pol
= NULL
;
2670 struct xfrm_state
*x
, *xc
;
2671 struct xfrm_state
*x_cur
[XFRM_MAX_DEPTH
];
2672 struct xfrm_state
*x_new
[XFRM_MAX_DEPTH
];
2673 struct xfrm_migrate
*mp
;
2675 if ((err
= xfrm_migrate_check(m
, num_migrate
)) < 0)
2678 /* Stage 1 - find policy */
2679 if ((pol
= xfrm_migrate_policy_find(sel
, dir
, type
)) == NULL
) {
2684 /* Stage 2 - find and update state(s) */
2685 for (i
= 0, mp
= m
; i
< num_migrate
; i
++, mp
++) {
2686 if ((x
= xfrm_migrate_state_find(mp
))) {
2689 if ((xc
= xfrm_state_migrate(x
, mp
))) {
2699 /* Stage 3 - update policy */
2700 if ((err
= xfrm_policy_migrate(pol
, m
, num_migrate
)) < 0)
2703 /* Stage 4 - delete old state(s) */
2705 xfrm_states_put(x_cur
, nx_cur
);
2706 xfrm_states_delete(x_cur
, nx_cur
);
2709 /* Stage 5 - announce */
2710 km_migrate(sel
, dir
, type
, m
, num_migrate
);
2722 xfrm_states_put(x_cur
, nx_cur
);
2724 xfrm_states_delete(x_new
, nx_new
);
2728 EXPORT_SYMBOL(xfrm_migrate
);