YOSHIFUJI Hideaki | a716c11 | 2007-02-09 23:25:29 +0900 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * xfrm_policy.c |
| 3 | * |
| 4 | * Changes: |
| 5 | * Mitsuru KANDA @USAGI |
| 6 | * Kazunori MIYAZAWA @USAGI |
| 7 | * Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 8 | * IPv6 support |
| 9 | * Kazunori MIYAZAWA @USAGI |
| 10 | * YOSHIFUJI Hideaki |
| 11 | * Split up af-specific portion |
| 12 | * Derek Atkins <derek@ihtfp.com> Add the post_input processor |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 13 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | */ |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/slab.h> |
| 17 | #include <linux/kmod.h> |
| 18 | #include <linux/list.h> |
| 19 | #include <linux/spinlock.h> |
| 20 | #include <linux/workqueue.h> |
| 21 | #include <linux/notifier.h> |
| 22 | #include <linux/netdevice.h> |
Patrick McHardy | eb9c7eb | 2006-01-06 23:06:30 -0800 | [diff] [blame] | 23 | #include <linux/netfilter.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/module.h> |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 25 | #include <linux/cache.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <net/xfrm.h> |
| 27 | #include <net/ip.h> |
| 28 | |
David S. Miller | 44e36b4 | 2006-08-24 04:50:50 -0700 | [diff] [blame] | 29 | #include "xfrm_hash.h" |
| 30 | |
David S. Miller | aad0e0b | 2007-05-25 00:42:49 -0700 | [diff] [blame] | 31 | int sysctl_xfrm_larval_drop __read_mostly; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 32 | |
Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 33 | DEFINE_MUTEX(xfrm_cfg_mutex); |
| 34 | EXPORT_SYMBOL(xfrm_cfg_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | static DEFINE_RWLOCK(xfrm_policy_lock); |
| 37 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 38 | unsigned int xfrm_policy_count[XFRM_POLICY_MAX*2]; |
| 39 | EXPORT_SYMBOL(xfrm_policy_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | static DEFINE_RWLOCK(xfrm_policy_afinfo_lock); |
| 42 | static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO]; |
| 43 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 44 | static struct kmem_cache *xfrm_dst_cache __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | static struct work_struct xfrm_policy_gc_work; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 47 | static HLIST_HEAD(xfrm_policy_gc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | static DEFINE_SPINLOCK(xfrm_policy_gc_lock); |
| 49 | |
| 50 | static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family); |
| 51 | static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo); |
| 52 | |
Andrew Morton | 7768102 | 2006-11-08 22:46:26 -0800 | [diff] [blame] | 53 | static inline int |
| 54 | __xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl) |
| 55 | { |
| 56 | return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) && |
| 57 | addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) && |
| 58 | !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) && |
| 59 | !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) && |
| 60 | (fl->proto == sel->proto || !sel->proto) && |
| 61 | (fl->oif == sel->ifindex || !sel->ifindex); |
| 62 | } |
| 63 | |
| 64 | static inline int |
| 65 | __xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl) |
| 66 | { |
| 67 | return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) && |
| 68 | addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) && |
| 69 | !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) && |
| 70 | !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) && |
| 71 | (fl->proto == sel->proto || !sel->proto) && |
| 72 | (fl->oif == sel->ifindex || !sel->ifindex); |
| 73 | } |
| 74 | |
| 75 | int xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl, |
| 76 | unsigned short family) |
| 77 | { |
| 78 | switch (family) { |
| 79 | case AF_INET: |
| 80 | return __xfrm4_selector_match(sel, fl); |
| 81 | case AF_INET6: |
| 82 | return __xfrm6_selector_match(sel, fl); |
| 83 | } |
| 84 | return 0; |
| 85 | } |
| 86 | |
YOSHIFUJI Hideaki | a716c11 | 2007-02-09 23:25:29 +0900 | [diff] [blame] | 87 | int xfrm_dst_lookup(struct xfrm_dst **dst, struct flowi *fl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | unsigned short family) |
| 89 | { |
| 90 | struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family); |
| 91 | int err = 0; |
| 92 | |
| 93 | if (unlikely(afinfo == NULL)) |
| 94 | return -EAFNOSUPPORT; |
| 95 | |
| 96 | if (likely(afinfo->dst_lookup != NULL)) |
| 97 | err = afinfo->dst_lookup(dst, fl); |
| 98 | else |
| 99 | err = -EINVAL; |
| 100 | xfrm_policy_put_afinfo(afinfo); |
| 101 | return err; |
| 102 | } |
| 103 | EXPORT_SYMBOL(xfrm_dst_lookup); |
| 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | static inline unsigned long make_jiffies(long secs) |
| 106 | { |
| 107 | if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ) |
| 108 | return MAX_SCHEDULE_TIMEOUT-1; |
| 109 | else |
YOSHIFUJI Hideaki | a716c11 | 2007-02-09 23:25:29 +0900 | [diff] [blame] | 110 | return secs*HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | static void xfrm_policy_timer(unsigned long data) |
| 114 | { |
| 115 | struct xfrm_policy *xp = (struct xfrm_policy*)data; |
James Morris | 9d729f7 | 2007-03-04 16:12:44 -0800 | [diff] [blame] | 116 | unsigned long now = get_seconds(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | long next = LONG_MAX; |
| 118 | int warn = 0; |
| 119 | int dir; |
| 120 | |
| 121 | read_lock(&xp->lock); |
| 122 | |
| 123 | if (xp->dead) |
| 124 | goto out; |
| 125 | |
Herbert Xu | 77d8d7a | 2005-10-05 12:15:12 -0700 | [diff] [blame] | 126 | dir = xfrm_policy_id2dir(xp->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
| 128 | if (xp->lft.hard_add_expires_seconds) { |
| 129 | long tmo = xp->lft.hard_add_expires_seconds + |
| 130 | xp->curlft.add_time - now; |
| 131 | if (tmo <= 0) |
| 132 | goto expired; |
| 133 | if (tmo < next) |
| 134 | next = tmo; |
| 135 | } |
| 136 | if (xp->lft.hard_use_expires_seconds) { |
| 137 | long tmo = xp->lft.hard_use_expires_seconds + |
| 138 | (xp->curlft.use_time ? : xp->curlft.add_time) - now; |
| 139 | if (tmo <= 0) |
| 140 | goto expired; |
| 141 | if (tmo < next) |
| 142 | next = tmo; |
| 143 | } |
| 144 | if (xp->lft.soft_add_expires_seconds) { |
| 145 | long tmo = xp->lft.soft_add_expires_seconds + |
| 146 | xp->curlft.add_time - now; |
| 147 | if (tmo <= 0) { |
| 148 | warn = 1; |
| 149 | tmo = XFRM_KM_TIMEOUT; |
| 150 | } |
| 151 | if (tmo < next) |
| 152 | next = tmo; |
| 153 | } |
| 154 | if (xp->lft.soft_use_expires_seconds) { |
| 155 | long tmo = xp->lft.soft_use_expires_seconds + |
| 156 | (xp->curlft.use_time ? : xp->curlft.add_time) - now; |
| 157 | if (tmo <= 0) { |
| 158 | warn = 1; |
| 159 | tmo = XFRM_KM_TIMEOUT; |
| 160 | } |
| 161 | if (tmo < next) |
| 162 | next = tmo; |
| 163 | } |
| 164 | |
| 165 | if (warn) |
Jamal Hadi Salim | 6c5c8ca | 2006-03-20 19:17:25 -0800 | [diff] [blame] | 166 | km_policy_expired(xp, dir, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | if (next != LONG_MAX && |
| 168 | !mod_timer(&xp->timer, jiffies + make_jiffies(next))) |
| 169 | xfrm_pol_hold(xp); |
| 170 | |
| 171 | out: |
| 172 | read_unlock(&xp->lock); |
| 173 | xfrm_pol_put(xp); |
| 174 | return; |
| 175 | |
| 176 | expired: |
| 177 | read_unlock(&xp->lock); |
Herbert Xu | 4666faa | 2005-06-18 22:43:22 -0700 | [diff] [blame] | 178 | if (!xfrm_policy_delete(xp, dir)) |
Jamal Hadi Salim | 6c5c8ca | 2006-03-20 19:17:25 -0800 | [diff] [blame] | 179 | km_policy_expired(xp, dir, 1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | xfrm_pol_put(xp); |
| 181 | } |
| 182 | |
| 183 | |
| 184 | /* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2 |
| 185 | * SPD calls. |
| 186 | */ |
| 187 | |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 188 | struct xfrm_policy *xfrm_policy_alloc(gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
| 190 | struct xfrm_policy *policy; |
| 191 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 192 | policy = kzalloc(sizeof(struct xfrm_policy), gfp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
| 194 | if (policy) { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 195 | INIT_HLIST_NODE(&policy->bydst); |
| 196 | INIT_HLIST_NODE(&policy->byidx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | rwlock_init(&policy->lock); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 198 | atomic_set(&policy->refcnt, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | init_timer(&policy->timer); |
| 200 | policy->timer.data = (unsigned long)policy; |
| 201 | policy->timer.function = xfrm_policy_timer; |
| 202 | } |
| 203 | return policy; |
| 204 | } |
| 205 | EXPORT_SYMBOL(xfrm_policy_alloc); |
| 206 | |
| 207 | /* Destroy xfrm_policy: descendant resources must be released to this moment. */ |
| 208 | |
| 209 | void __xfrm_policy_destroy(struct xfrm_policy *policy) |
| 210 | { |
Kris Katterjohn | 09a6266 | 2006-01-08 22:24:28 -0800 | [diff] [blame] | 211 | BUG_ON(!policy->dead); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Kris Katterjohn | 09a6266 | 2006-01-08 22:24:28 -0800 | [diff] [blame] | 213 | BUG_ON(policy->bundles); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | if (del_timer(&policy->timer)) |
| 216 | BUG(); |
| 217 | |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 218 | security_xfrm_policy_free(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | kfree(policy); |
| 220 | } |
| 221 | EXPORT_SYMBOL(__xfrm_policy_destroy); |
| 222 | |
| 223 | static void xfrm_policy_gc_kill(struct xfrm_policy *policy) |
| 224 | { |
| 225 | struct dst_entry *dst; |
| 226 | |
| 227 | while ((dst = policy->bundles) != NULL) { |
| 228 | policy->bundles = dst->next; |
| 229 | dst_free(dst); |
| 230 | } |
| 231 | |
| 232 | if (del_timer(&policy->timer)) |
| 233 | atomic_dec(&policy->refcnt); |
| 234 | |
| 235 | if (atomic_read(&policy->refcnt) > 1) |
| 236 | flow_cache_flush(); |
| 237 | |
| 238 | xfrm_pol_put(policy); |
| 239 | } |
| 240 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 241 | static void xfrm_policy_gc_task(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
| 243 | struct xfrm_policy *policy; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 244 | struct hlist_node *entry, *tmp; |
| 245 | struct hlist_head gc_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
| 247 | spin_lock_bh(&xfrm_policy_gc_lock); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 248 | gc_list.first = xfrm_policy_gc_list.first; |
| 249 | INIT_HLIST_HEAD(&xfrm_policy_gc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | spin_unlock_bh(&xfrm_policy_gc_lock); |
| 251 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 252 | hlist_for_each_entry_safe(policy, entry, tmp, &gc_list, bydst) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | xfrm_policy_gc_kill(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | /* Rule must be locked. Release descentant resources, announce |
| 257 | * entry dead. The rule must be unlinked from lists to the moment. |
| 258 | */ |
| 259 | |
| 260 | static void xfrm_policy_kill(struct xfrm_policy *policy) |
| 261 | { |
| 262 | int dead; |
| 263 | |
| 264 | write_lock_bh(&policy->lock); |
| 265 | dead = policy->dead; |
| 266 | policy->dead = 1; |
| 267 | write_unlock_bh(&policy->lock); |
| 268 | |
| 269 | if (unlikely(dead)) { |
| 270 | WARN_ON(1); |
| 271 | return; |
| 272 | } |
| 273 | |
| 274 | spin_lock(&xfrm_policy_gc_lock); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 275 | hlist_add_head(&policy->bydst, &xfrm_policy_gc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | spin_unlock(&xfrm_policy_gc_lock); |
| 277 | |
| 278 | schedule_work(&xfrm_policy_gc_work); |
| 279 | } |
| 280 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 281 | struct xfrm_policy_hash { |
| 282 | struct hlist_head *table; |
| 283 | unsigned int hmask; |
| 284 | }; |
| 285 | |
| 286 | static struct hlist_head xfrm_policy_inexact[XFRM_POLICY_MAX*2]; |
| 287 | static struct xfrm_policy_hash xfrm_policy_bydst[XFRM_POLICY_MAX*2] __read_mostly; |
| 288 | static struct hlist_head *xfrm_policy_byidx __read_mostly; |
| 289 | static unsigned int xfrm_idx_hmask __read_mostly; |
| 290 | static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024; |
| 291 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 292 | static inline unsigned int idx_hash(u32 index) |
| 293 | { |
| 294 | return __idx_hash(index, xfrm_idx_hmask); |
| 295 | } |
| 296 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 297 | static struct hlist_head *policy_hash_bysel(struct xfrm_selector *sel, unsigned short family, int dir) |
| 298 | { |
| 299 | unsigned int hmask = xfrm_policy_bydst[dir].hmask; |
| 300 | unsigned int hash = __sel_hash(sel, family, hmask); |
| 301 | |
| 302 | return (hash == hmask + 1 ? |
| 303 | &xfrm_policy_inexact[dir] : |
| 304 | xfrm_policy_bydst[dir].table + hash); |
| 305 | } |
| 306 | |
| 307 | static struct hlist_head *policy_hash_direct(xfrm_address_t *daddr, xfrm_address_t *saddr, unsigned short family, int dir) |
| 308 | { |
| 309 | unsigned int hmask = xfrm_policy_bydst[dir].hmask; |
| 310 | unsigned int hash = __addr_hash(daddr, saddr, family, hmask); |
| 311 | |
| 312 | return xfrm_policy_bydst[dir].table + hash; |
| 313 | } |
| 314 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 315 | static void xfrm_dst_hash_transfer(struct hlist_head *list, |
| 316 | struct hlist_head *ndsttable, |
| 317 | unsigned int nhashmask) |
| 318 | { |
| 319 | struct hlist_node *entry, *tmp; |
| 320 | struct xfrm_policy *pol; |
| 321 | |
| 322 | hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) { |
| 323 | unsigned int h; |
| 324 | |
| 325 | h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr, |
| 326 | pol->family, nhashmask); |
| 327 | hlist_add_head(&pol->bydst, ndsttable+h); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | static void xfrm_idx_hash_transfer(struct hlist_head *list, |
| 332 | struct hlist_head *nidxtable, |
| 333 | unsigned int nhashmask) |
| 334 | { |
| 335 | struct hlist_node *entry, *tmp; |
| 336 | struct xfrm_policy *pol; |
| 337 | |
| 338 | hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) { |
| 339 | unsigned int h; |
| 340 | |
| 341 | h = __idx_hash(pol->index, nhashmask); |
| 342 | hlist_add_head(&pol->byidx, nidxtable+h); |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | static unsigned long xfrm_new_hash_mask(unsigned int old_hmask) |
| 347 | { |
| 348 | return ((old_hmask + 1) << 1) - 1; |
| 349 | } |
| 350 | |
| 351 | static void xfrm_bydst_resize(int dir) |
| 352 | { |
| 353 | unsigned int hmask = xfrm_policy_bydst[dir].hmask; |
| 354 | unsigned int nhashmask = xfrm_new_hash_mask(hmask); |
| 355 | unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head); |
| 356 | struct hlist_head *odst = xfrm_policy_bydst[dir].table; |
David S. Miller | 44e36b4 | 2006-08-24 04:50:50 -0700 | [diff] [blame] | 357 | struct hlist_head *ndst = xfrm_hash_alloc(nsize); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 358 | int i; |
| 359 | |
| 360 | if (!ndst) |
| 361 | return; |
| 362 | |
| 363 | write_lock_bh(&xfrm_policy_lock); |
| 364 | |
| 365 | for (i = hmask; i >= 0; i--) |
| 366 | xfrm_dst_hash_transfer(odst + i, ndst, nhashmask); |
| 367 | |
| 368 | xfrm_policy_bydst[dir].table = ndst; |
| 369 | xfrm_policy_bydst[dir].hmask = nhashmask; |
| 370 | |
| 371 | write_unlock_bh(&xfrm_policy_lock); |
| 372 | |
David S. Miller | 44e36b4 | 2006-08-24 04:50:50 -0700 | [diff] [blame] | 373 | xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head)); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | static void xfrm_byidx_resize(int total) |
| 377 | { |
| 378 | unsigned int hmask = xfrm_idx_hmask; |
| 379 | unsigned int nhashmask = xfrm_new_hash_mask(hmask); |
| 380 | unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head); |
| 381 | struct hlist_head *oidx = xfrm_policy_byidx; |
David S. Miller | 44e36b4 | 2006-08-24 04:50:50 -0700 | [diff] [blame] | 382 | struct hlist_head *nidx = xfrm_hash_alloc(nsize); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 383 | int i; |
| 384 | |
| 385 | if (!nidx) |
| 386 | return; |
| 387 | |
| 388 | write_lock_bh(&xfrm_policy_lock); |
| 389 | |
| 390 | for (i = hmask; i >= 0; i--) |
| 391 | xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask); |
| 392 | |
| 393 | xfrm_policy_byidx = nidx; |
| 394 | xfrm_idx_hmask = nhashmask; |
| 395 | |
| 396 | write_unlock_bh(&xfrm_policy_lock); |
| 397 | |
David S. Miller | 44e36b4 | 2006-08-24 04:50:50 -0700 | [diff] [blame] | 398 | xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head)); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | static inline int xfrm_bydst_should_resize(int dir, int *total) |
| 402 | { |
| 403 | unsigned int cnt = xfrm_policy_count[dir]; |
| 404 | unsigned int hmask = xfrm_policy_bydst[dir].hmask; |
| 405 | |
| 406 | if (total) |
| 407 | *total += cnt; |
| 408 | |
| 409 | if ((hmask + 1) < xfrm_policy_hashmax && |
| 410 | cnt > hmask) |
| 411 | return 1; |
| 412 | |
| 413 | return 0; |
| 414 | } |
| 415 | |
| 416 | static inline int xfrm_byidx_should_resize(int total) |
| 417 | { |
| 418 | unsigned int hmask = xfrm_idx_hmask; |
| 419 | |
| 420 | if ((hmask + 1) < xfrm_policy_hashmax && |
| 421 | total > hmask) |
| 422 | return 1; |
| 423 | |
| 424 | return 0; |
| 425 | } |
| 426 | |
Jamal Hadi Salim | 5a6d341 | 2007-05-04 12:55:39 -0700 | [diff] [blame] | 427 | void xfrm_spd_getinfo(struct xfrmk_spdinfo *si) |
Jamal Hadi Salim | ecfd6b1 | 2007-04-28 21:20:32 -0700 | [diff] [blame] | 428 | { |
| 429 | read_lock_bh(&xfrm_policy_lock); |
| 430 | si->incnt = xfrm_policy_count[XFRM_POLICY_IN]; |
| 431 | si->outcnt = xfrm_policy_count[XFRM_POLICY_OUT]; |
| 432 | si->fwdcnt = xfrm_policy_count[XFRM_POLICY_FWD]; |
| 433 | si->inscnt = xfrm_policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX]; |
| 434 | si->outscnt = xfrm_policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX]; |
| 435 | si->fwdscnt = xfrm_policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX]; |
| 436 | si->spdhcnt = xfrm_idx_hmask; |
| 437 | si->spdhmcnt = xfrm_policy_hashmax; |
| 438 | read_unlock_bh(&xfrm_policy_lock); |
| 439 | } |
| 440 | EXPORT_SYMBOL(xfrm_spd_getinfo); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 441 | |
Jamal Hadi Salim | ecfd6b1 | 2007-04-28 21:20:32 -0700 | [diff] [blame] | 442 | static DEFINE_MUTEX(hash_resize_mutex); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 443 | static void xfrm_hash_resize(struct work_struct *__unused) |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 444 | { |
| 445 | int dir, total; |
| 446 | |
| 447 | mutex_lock(&hash_resize_mutex); |
| 448 | |
| 449 | total = 0; |
| 450 | for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) { |
| 451 | if (xfrm_bydst_should_resize(dir, &total)) |
| 452 | xfrm_bydst_resize(dir); |
| 453 | } |
| 454 | if (xfrm_byidx_should_resize(total)) |
| 455 | xfrm_byidx_resize(total); |
| 456 | |
| 457 | mutex_unlock(&hash_resize_mutex); |
| 458 | } |
| 459 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 460 | static DECLARE_WORK(xfrm_hash_work, xfrm_hash_resize); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 461 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | /* Generate new index... KAME seems to generate them ordered by cost |
| 463 | * of an absolute inpredictability of ordering of rules. This will not pass. */ |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 464 | static u32 xfrm_gen_index(u8 type, int dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | static u32 idx_generator; |
| 467 | |
| 468 | for (;;) { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 469 | struct hlist_node *entry; |
| 470 | struct hlist_head *list; |
| 471 | struct xfrm_policy *p; |
| 472 | u32 idx; |
| 473 | int found; |
| 474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | idx = (idx_generator | dir); |
| 476 | idx_generator += 8; |
| 477 | if (idx == 0) |
| 478 | idx = 8; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 479 | list = xfrm_policy_byidx + idx_hash(idx); |
| 480 | found = 0; |
| 481 | hlist_for_each_entry(p, entry, list, byidx) { |
| 482 | if (p->index == idx) { |
| 483 | found = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | break; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 485 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | } |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 487 | if (!found) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | return idx; |
| 489 | } |
| 490 | } |
| 491 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 492 | static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2) |
| 493 | { |
| 494 | u32 *p1 = (u32 *) s1; |
| 495 | u32 *p2 = (u32 *) s2; |
| 496 | int len = sizeof(struct xfrm_selector) / sizeof(u32); |
| 497 | int i; |
| 498 | |
| 499 | for (i = 0; i < len; i++) { |
| 500 | if (p1[i] != p2[i]) |
| 501 | return 1; |
| 502 | } |
| 503 | |
| 504 | return 0; |
| 505 | } |
| 506 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl) |
| 508 | { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 509 | struct xfrm_policy *pol; |
| 510 | struct xfrm_policy *delpol; |
| 511 | struct hlist_head *chain; |
Herbert Xu | a6c7ab5 | 2007-01-16 16:52:02 -0800 | [diff] [blame] | 512 | struct hlist_node *entry, *newpos; |
David S. Miller | 9b78a82 | 2005-12-22 07:39:48 -0800 | [diff] [blame] | 513 | struct dst_entry *gc_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | |
| 515 | write_lock_bh(&xfrm_policy_lock); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 516 | chain = policy_hash_bysel(&policy->selector, policy->family, dir); |
| 517 | delpol = NULL; |
| 518 | newpos = NULL; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 519 | hlist_for_each_entry(pol, entry, chain, bydst) { |
Herbert Xu | a6c7ab5 | 2007-01-16 16:52:02 -0800 | [diff] [blame] | 520 | if (pol->type == policy->type && |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 521 | !selector_cmp(&pol->selector, &policy->selector) && |
Herbert Xu | a6c7ab5 | 2007-01-16 16:52:02 -0800 | [diff] [blame] | 522 | xfrm_sec_ctx_match(pol->security, policy->security) && |
| 523 | !WARN_ON(delpol)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | if (excl) { |
| 525 | write_unlock_bh(&xfrm_policy_lock); |
| 526 | return -EEXIST; |
| 527 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | delpol = pol; |
| 529 | if (policy->priority > pol->priority) |
| 530 | continue; |
| 531 | } else if (policy->priority >= pol->priority) { |
Herbert Xu | a6c7ab5 | 2007-01-16 16:52:02 -0800 | [diff] [blame] | 532 | newpos = &pol->bydst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | continue; |
| 534 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | if (delpol) |
| 536 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | } |
| 538 | if (newpos) |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 539 | hlist_add_after(newpos, &policy->bydst); |
| 540 | else |
| 541 | hlist_add_head(&policy->bydst, chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | xfrm_pol_hold(policy); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 543 | xfrm_policy_count[dir]++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | atomic_inc(&flow_cache_genid); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 545 | if (delpol) { |
| 546 | hlist_del(&delpol->bydst); |
| 547 | hlist_del(&delpol->byidx); |
| 548 | xfrm_policy_count[dir]--; |
| 549 | } |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 550 | policy->index = delpol ? delpol->index : xfrm_gen_index(policy->type, dir); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 551 | hlist_add_head(&policy->byidx, xfrm_policy_byidx+idx_hash(policy->index)); |
James Morris | 9d729f7 | 2007-03-04 16:12:44 -0800 | [diff] [blame] | 552 | policy->curlft.add_time = get_seconds(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | policy->curlft.use_time = 0; |
| 554 | if (!mod_timer(&policy->timer, jiffies + HZ)) |
| 555 | xfrm_pol_hold(policy); |
| 556 | write_unlock_bh(&xfrm_policy_lock); |
| 557 | |
David S. Miller | 9b78a82 | 2005-12-22 07:39:48 -0800 | [diff] [blame] | 558 | if (delpol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | xfrm_policy_kill(delpol); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 560 | else if (xfrm_bydst_should_resize(dir, NULL)) |
| 561 | schedule_work(&xfrm_hash_work); |
David S. Miller | 9b78a82 | 2005-12-22 07:39:48 -0800 | [diff] [blame] | 562 | |
| 563 | read_lock_bh(&xfrm_policy_lock); |
| 564 | gc_list = NULL; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 565 | entry = &policy->bydst; |
| 566 | hlist_for_each_entry_continue(policy, entry, bydst) { |
David S. Miller | 9b78a82 | 2005-12-22 07:39:48 -0800 | [diff] [blame] | 567 | struct dst_entry *dst; |
| 568 | |
| 569 | write_lock(&policy->lock); |
| 570 | dst = policy->bundles; |
| 571 | if (dst) { |
| 572 | struct dst_entry *tail = dst; |
| 573 | while (tail->next) |
| 574 | tail = tail->next; |
| 575 | tail->next = gc_list; |
| 576 | gc_list = dst; |
| 577 | |
| 578 | policy->bundles = NULL; |
| 579 | } |
| 580 | write_unlock(&policy->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | } |
David S. Miller | 9b78a82 | 2005-12-22 07:39:48 -0800 | [diff] [blame] | 582 | read_unlock_bh(&xfrm_policy_lock); |
| 583 | |
| 584 | while (gc_list) { |
| 585 | struct dst_entry *dst = gc_list; |
| 586 | |
| 587 | gc_list = dst->next; |
| 588 | dst_free(dst); |
| 589 | } |
| 590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | return 0; |
| 592 | } |
| 593 | EXPORT_SYMBOL(xfrm_policy_insert); |
| 594 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 595 | struct xfrm_policy *xfrm_policy_bysel_ctx(u8 type, int dir, |
| 596 | struct xfrm_selector *sel, |
Eric Paris | ef41aaa | 2007-03-07 15:37:58 -0800 | [diff] [blame] | 597 | struct xfrm_sec_ctx *ctx, int delete, |
| 598 | int *err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 600 | struct xfrm_policy *pol, *ret; |
| 601 | struct hlist_head *chain; |
| 602 | struct hlist_node *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
Eric Paris | ef41aaa | 2007-03-07 15:37:58 -0800 | [diff] [blame] | 604 | *err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | write_lock_bh(&xfrm_policy_lock); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 606 | chain = policy_hash_bysel(sel, sel->family, dir); |
| 607 | ret = NULL; |
| 608 | hlist_for_each_entry(pol, entry, chain, bydst) { |
| 609 | if (pol->type == type && |
| 610 | !selector_cmp(sel, &pol->selector) && |
| 611 | xfrm_sec_ctx_match(ctx, pol->security)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | xfrm_pol_hold(pol); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 613 | if (delete) { |
Eric Paris | ef41aaa | 2007-03-07 15:37:58 -0800 | [diff] [blame] | 614 | *err = security_xfrm_policy_delete(pol); |
| 615 | if (*err) { |
| 616 | write_unlock_bh(&xfrm_policy_lock); |
| 617 | return pol; |
| 618 | } |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 619 | hlist_del(&pol->bydst); |
| 620 | hlist_del(&pol->byidx); |
| 621 | xfrm_policy_count[dir]--; |
| 622 | } |
| 623 | ret = pol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | break; |
| 625 | } |
| 626 | } |
| 627 | write_unlock_bh(&xfrm_policy_lock); |
| 628 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 629 | if (ret && delete) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | atomic_inc(&flow_cache_genid); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 631 | xfrm_policy_kill(ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | } |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 633 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | } |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 635 | EXPORT_SYMBOL(xfrm_policy_bysel_ctx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | |
Eric Paris | ef41aaa | 2007-03-07 15:37:58 -0800 | [diff] [blame] | 637 | struct xfrm_policy *xfrm_policy_byid(u8 type, int dir, u32 id, int delete, |
| 638 | int *err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 640 | struct xfrm_policy *pol, *ret; |
| 641 | struct hlist_head *chain; |
| 642 | struct hlist_node *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | |
Herbert Xu | b5505c6 | 2007-05-14 02:15:47 -0700 | [diff] [blame] | 644 | *err = -ENOENT; |
| 645 | if (xfrm_policy_id2dir(id) != dir) |
| 646 | return NULL; |
| 647 | |
Eric Paris | ef41aaa | 2007-03-07 15:37:58 -0800 | [diff] [blame] | 648 | *err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | write_lock_bh(&xfrm_policy_lock); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 650 | chain = xfrm_policy_byidx + idx_hash(id); |
| 651 | ret = NULL; |
| 652 | hlist_for_each_entry(pol, entry, chain, byidx) { |
| 653 | if (pol->type == type && pol->index == id) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | xfrm_pol_hold(pol); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 655 | if (delete) { |
Eric Paris | ef41aaa | 2007-03-07 15:37:58 -0800 | [diff] [blame] | 656 | *err = security_xfrm_policy_delete(pol); |
| 657 | if (*err) { |
| 658 | write_unlock_bh(&xfrm_policy_lock); |
| 659 | return pol; |
| 660 | } |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 661 | hlist_del(&pol->bydst); |
| 662 | hlist_del(&pol->byidx); |
| 663 | xfrm_policy_count[dir]--; |
| 664 | } |
| 665 | ret = pol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | break; |
| 667 | } |
| 668 | } |
| 669 | write_unlock_bh(&xfrm_policy_lock); |
| 670 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 671 | if (ret && delete) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | atomic_inc(&flow_cache_genid); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 673 | xfrm_policy_kill(ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | } |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 675 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | } |
| 677 | EXPORT_SYMBOL(xfrm_policy_byid); |
| 678 | |
Joy Latten | 4aa2e62 | 2007-06-04 19:05:57 -0400 | [diff] [blame] | 679 | #ifdef CONFIG_SECURITY_NETWORK_XFRM |
| 680 | static inline int |
| 681 | xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | { |
Joy Latten | 4aa2e62 | 2007-06-04 19:05:57 -0400 | [diff] [blame] | 683 | int dir, err = 0; |
| 684 | |
| 685 | for (dir = 0; dir < XFRM_POLICY_MAX; dir++) { |
| 686 | struct xfrm_policy *pol; |
| 687 | struct hlist_node *entry; |
| 688 | int i; |
| 689 | |
| 690 | hlist_for_each_entry(pol, entry, |
| 691 | &xfrm_policy_inexact[dir], bydst) { |
| 692 | if (pol->type != type) |
| 693 | continue; |
| 694 | err = security_xfrm_policy_delete(pol); |
| 695 | if (err) { |
Joy Latten | ab5f5e8 | 2007-09-17 11:51:22 -0700 | [diff] [blame] | 696 | xfrm_audit_policy_delete(pol, 0, |
| 697 | audit_info->loginuid, |
| 698 | audit_info->secid); |
Joy Latten | 4aa2e62 | 2007-06-04 19:05:57 -0400 | [diff] [blame] | 699 | return err; |
| 700 | } |
YOSHIFUJI Hideaki | 7dc12d6 | 2007-07-19 10:45:15 +0900 | [diff] [blame] | 701 | } |
Joy Latten | 4aa2e62 | 2007-06-04 19:05:57 -0400 | [diff] [blame] | 702 | for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) { |
| 703 | hlist_for_each_entry(pol, entry, |
| 704 | xfrm_policy_bydst[dir].table + i, |
| 705 | bydst) { |
| 706 | if (pol->type != type) |
| 707 | continue; |
| 708 | err = security_xfrm_policy_delete(pol); |
| 709 | if (err) { |
Joy Latten | ab5f5e8 | 2007-09-17 11:51:22 -0700 | [diff] [blame] | 710 | xfrm_audit_policy_delete(pol, 0, |
| 711 | audit_info->loginuid, |
| 712 | audit_info->secid); |
Joy Latten | 4aa2e62 | 2007-06-04 19:05:57 -0400 | [diff] [blame] | 713 | return err; |
| 714 | } |
| 715 | } |
| 716 | } |
| 717 | } |
| 718 | return err; |
| 719 | } |
| 720 | #else |
| 721 | static inline int |
| 722 | xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info) |
| 723 | { |
| 724 | return 0; |
| 725 | } |
| 726 | #endif |
| 727 | |
| 728 | int xfrm_policy_flush(u8 type, struct xfrm_audit *audit_info) |
| 729 | { |
| 730 | int dir, err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
| 732 | write_lock_bh(&xfrm_policy_lock); |
Joy Latten | 4aa2e62 | 2007-06-04 19:05:57 -0400 | [diff] [blame] | 733 | |
| 734 | err = xfrm_policy_flush_secctx_check(type, audit_info); |
| 735 | if (err) |
| 736 | goto out; |
| 737 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | for (dir = 0; dir < XFRM_POLICY_MAX; dir++) { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 739 | struct xfrm_policy *pol; |
| 740 | struct hlist_node *entry; |
David S. Miller | ae8c057 | 2006-10-03 16:00:26 -0700 | [diff] [blame] | 741 | int i, killed; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 742 | |
David S. Miller | ae8c057 | 2006-10-03 16:00:26 -0700 | [diff] [blame] | 743 | killed = 0; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 744 | again1: |
| 745 | hlist_for_each_entry(pol, entry, |
| 746 | &xfrm_policy_inexact[dir], bydst) { |
| 747 | if (pol->type != type) |
| 748 | continue; |
| 749 | hlist_del(&pol->bydst); |
| 750 | hlist_del(&pol->byidx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | write_unlock_bh(&xfrm_policy_lock); |
| 752 | |
Joy Latten | ab5f5e8 | 2007-09-17 11:51:22 -0700 | [diff] [blame] | 753 | xfrm_audit_policy_delete(pol, 1, audit_info->loginuid, |
| 754 | audit_info->secid); |
Joy Latten | 161a09e | 2006-11-27 13:11:54 -0600 | [diff] [blame] | 755 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 756 | xfrm_policy_kill(pol); |
David S. Miller | ae8c057 | 2006-10-03 16:00:26 -0700 | [diff] [blame] | 757 | killed++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | |
| 759 | write_lock_bh(&xfrm_policy_lock); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 760 | goto again1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | } |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 762 | |
| 763 | for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) { |
| 764 | again2: |
| 765 | hlist_for_each_entry(pol, entry, |
| 766 | xfrm_policy_bydst[dir].table + i, |
| 767 | bydst) { |
| 768 | if (pol->type != type) |
| 769 | continue; |
| 770 | hlist_del(&pol->bydst); |
| 771 | hlist_del(&pol->byidx); |
| 772 | write_unlock_bh(&xfrm_policy_lock); |
| 773 | |
Joy Latten | ab5f5e8 | 2007-09-17 11:51:22 -0700 | [diff] [blame] | 774 | xfrm_audit_policy_delete(pol, 1, |
| 775 | audit_info->loginuid, |
| 776 | audit_info->secid); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 777 | xfrm_policy_kill(pol); |
David S. Miller | ae8c057 | 2006-10-03 16:00:26 -0700 | [diff] [blame] | 778 | killed++; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 779 | |
| 780 | write_lock_bh(&xfrm_policy_lock); |
| 781 | goto again2; |
| 782 | } |
| 783 | } |
| 784 | |
David S. Miller | ae8c057 | 2006-10-03 16:00:26 -0700 | [diff] [blame] | 785 | xfrm_policy_count[dir] -= killed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |
| 787 | atomic_inc(&flow_cache_genid); |
Joy Latten | 4aa2e62 | 2007-06-04 19:05:57 -0400 | [diff] [blame] | 788 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | write_unlock_bh(&xfrm_policy_lock); |
Joy Latten | 4aa2e62 | 2007-06-04 19:05:57 -0400 | [diff] [blame] | 790 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | } |
| 792 | EXPORT_SYMBOL(xfrm_policy_flush); |
| 793 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 794 | int xfrm_policy_walk(u8 type, int (*func)(struct xfrm_policy *, int, int, void*), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | void *data) |
| 796 | { |
Jamal Hadi Salim | baf5d74 | 2006-12-04 20:02:37 -0800 | [diff] [blame] | 797 | struct xfrm_policy *pol, *last = NULL; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 798 | struct hlist_node *entry; |
Jamal Hadi Salim | baf5d74 | 2006-12-04 20:02:37 -0800 | [diff] [blame] | 799 | int dir, last_dir = 0, count, error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | |
| 801 | read_lock_bh(&xfrm_policy_lock); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 802 | count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
| 804 | for (dir = 0; dir < 2*XFRM_POLICY_MAX; dir++) { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 805 | struct hlist_head *table = xfrm_policy_bydst[dir].table; |
| 806 | int i; |
| 807 | |
| 808 | hlist_for_each_entry(pol, entry, |
| 809 | &xfrm_policy_inexact[dir], bydst) { |
| 810 | if (pol->type != type) |
| 811 | continue; |
Jamal Hadi Salim | baf5d74 | 2006-12-04 20:02:37 -0800 | [diff] [blame] | 812 | if (last) { |
| 813 | error = func(last, last_dir % XFRM_POLICY_MAX, |
| 814 | count, data); |
| 815 | if (error) |
| 816 | goto out; |
| 817 | } |
| 818 | last = pol; |
| 819 | last_dir = dir; |
| 820 | count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | } |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 822 | for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) { |
| 823 | hlist_for_each_entry(pol, entry, table + i, bydst) { |
| 824 | if (pol->type != type) |
| 825 | continue; |
Jamal Hadi Salim | baf5d74 | 2006-12-04 20:02:37 -0800 | [diff] [blame] | 826 | if (last) { |
| 827 | error = func(last, last_dir % XFRM_POLICY_MAX, |
| 828 | count, data); |
| 829 | if (error) |
| 830 | goto out; |
| 831 | } |
| 832 | last = pol; |
| 833 | last_dir = dir; |
| 834 | count++; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 835 | } |
| 836 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | } |
Jamal Hadi Salim | baf5d74 | 2006-12-04 20:02:37 -0800 | [diff] [blame] | 838 | if (count == 0) { |
| 839 | error = -ENOENT; |
| 840 | goto out; |
| 841 | } |
| 842 | error = func(last, last_dir % XFRM_POLICY_MAX, 0, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | out: |
| 844 | read_unlock_bh(&xfrm_policy_lock); |
| 845 | return error; |
| 846 | } |
| 847 | EXPORT_SYMBOL(xfrm_policy_walk); |
| 848 | |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 849 | /* |
| 850 | * Find policy to apply to this flow. |
| 851 | * |
| 852 | * Returns 0 if policy found, else an -errno. |
| 853 | */ |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 854 | static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl, |
| 855 | u8 type, u16 family, int dir) |
| 856 | { |
| 857 | struct xfrm_selector *sel = &pol->selector; |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 858 | int match, ret = -ESRCH; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 859 | |
| 860 | if (pol->family != family || |
| 861 | pol->type != type) |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 862 | return ret; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 863 | |
| 864 | match = xfrm_selector_match(sel, fl, family); |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 865 | if (match) |
| 866 | ret = security_xfrm_policy_lookup(pol, fl->secid, dir); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 867 | |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 868 | return ret; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 869 | } |
| 870 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 871 | static struct xfrm_policy *xfrm_policy_lookup_bytype(u8 type, struct flowi *fl, |
| 872 | u16 family, u8 dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | { |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 874 | int err; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 875 | struct xfrm_policy *pol, *ret; |
| 876 | xfrm_address_t *daddr, *saddr; |
| 877 | struct hlist_node *entry; |
| 878 | struct hlist_head *chain; |
David S. Miller | acba48e | 2006-08-25 15:46:46 -0700 | [diff] [blame] | 879 | u32 priority = ~0U; |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 880 | |
| 881 | daddr = xfrm_flowi_daddr(fl, family); |
| 882 | saddr = xfrm_flowi_saddr(fl, family); |
| 883 | if (unlikely(!daddr || !saddr)) |
| 884 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | |
| 886 | read_lock_bh(&xfrm_policy_lock); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 887 | chain = policy_hash_direct(daddr, saddr, family, dir); |
| 888 | ret = NULL; |
| 889 | hlist_for_each_entry(pol, entry, chain, bydst) { |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 890 | err = xfrm_policy_match(pol, fl, type, family, dir); |
| 891 | if (err) { |
| 892 | if (err == -ESRCH) |
| 893 | continue; |
| 894 | else { |
| 895 | ret = ERR_PTR(err); |
| 896 | goto fail; |
| 897 | } |
| 898 | } else { |
David S. Miller | acba48e | 2006-08-25 15:46:46 -0700 | [diff] [blame] | 899 | ret = pol; |
| 900 | priority = ret->priority; |
| 901 | break; |
| 902 | } |
| 903 | } |
| 904 | chain = &xfrm_policy_inexact[dir]; |
| 905 | hlist_for_each_entry(pol, entry, chain, bydst) { |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 906 | err = xfrm_policy_match(pol, fl, type, family, dir); |
| 907 | if (err) { |
| 908 | if (err == -ESRCH) |
| 909 | continue; |
| 910 | else { |
| 911 | ret = ERR_PTR(err); |
| 912 | goto fail; |
| 913 | } |
| 914 | } else if (pol->priority < priority) { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 915 | ret = pol; |
| 916 | break; |
| 917 | } |
| 918 | } |
David S. Miller | acba48e | 2006-08-25 15:46:46 -0700 | [diff] [blame] | 919 | if (ret) |
| 920 | xfrm_pol_hold(ret); |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 921 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | read_unlock_bh(&xfrm_policy_lock); |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 923 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 924 | return ret; |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 925 | } |
| 926 | |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 927 | static int xfrm_policy_lookup(struct flowi *fl, u16 family, u8 dir, |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 928 | void **objp, atomic_t **obj_refp) |
| 929 | { |
| 930 | struct xfrm_policy *pol; |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 931 | int err = 0; |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 932 | |
| 933 | #ifdef CONFIG_XFRM_SUB_POLICY |
| 934 | pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_SUB, fl, family, dir); |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 935 | if (IS_ERR(pol)) { |
| 936 | err = PTR_ERR(pol); |
| 937 | pol = NULL; |
| 938 | } |
| 939 | if (pol || err) |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 940 | goto end; |
| 941 | #endif |
| 942 | pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN, fl, family, dir); |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 943 | if (IS_ERR(pol)) { |
| 944 | err = PTR_ERR(pol); |
| 945 | pol = NULL; |
| 946 | } |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 947 | #ifdef CONFIG_XFRM_SUB_POLICY |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 948 | end: |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 949 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | if ((*objp = (void *) pol) != NULL) |
| 951 | *obj_refp = &pol->refcnt; |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 952 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | } |
| 954 | |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 955 | static inline int policy_to_flow_dir(int dir) |
| 956 | { |
| 957 | if (XFRM_POLICY_IN == FLOW_DIR_IN && |
YOSHIFUJI Hideaki | a716c11 | 2007-02-09 23:25:29 +0900 | [diff] [blame] | 958 | XFRM_POLICY_OUT == FLOW_DIR_OUT && |
| 959 | XFRM_POLICY_FWD == FLOW_DIR_FWD) |
| 960 | return dir; |
| 961 | switch (dir) { |
| 962 | default: |
| 963 | case XFRM_POLICY_IN: |
| 964 | return FLOW_DIR_IN; |
| 965 | case XFRM_POLICY_OUT: |
| 966 | return FLOW_DIR_OUT; |
| 967 | case XFRM_POLICY_FWD: |
| 968 | return FLOW_DIR_FWD; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 969 | } |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 970 | } |
| 971 | |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 972 | static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | { |
| 974 | struct xfrm_policy *pol; |
| 975 | |
| 976 | read_lock_bh(&xfrm_policy_lock); |
| 977 | if ((pol = sk->sk_policy[dir]) != NULL) { |
YOSHIFUJI Hideaki | a716c11 | 2007-02-09 23:25:29 +0900 | [diff] [blame] | 978 | int match = xfrm_selector_match(&pol->selector, fl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | sk->sk_family); |
YOSHIFUJI Hideaki | a716c11 | 2007-02-09 23:25:29 +0900 | [diff] [blame] | 980 | int err = 0; |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 981 | |
Venkat Yekkirala | 3bccfbc | 2006-10-05 15:42:35 -0500 | [diff] [blame] | 982 | if (match) { |
| 983 | err = security_xfrm_policy_lookup(pol, fl->secid, |
| 984 | policy_to_flow_dir(dir)); |
| 985 | if (!err) |
| 986 | xfrm_pol_hold(pol); |
| 987 | else if (err == -ESRCH) |
| 988 | pol = NULL; |
| 989 | else |
| 990 | pol = ERR_PTR(err); |
| 991 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | pol = NULL; |
| 993 | } |
| 994 | read_unlock_bh(&xfrm_policy_lock); |
| 995 | return pol; |
| 996 | } |
| 997 | |
| 998 | static void __xfrm_policy_link(struct xfrm_policy *pol, int dir) |
| 999 | { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1000 | struct hlist_head *chain = policy_hash_bysel(&pol->selector, |
| 1001 | pol->family, dir); |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1002 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1003 | hlist_add_head(&pol->bydst, chain); |
| 1004 | hlist_add_head(&pol->byidx, xfrm_policy_byidx+idx_hash(pol->index)); |
| 1005 | xfrm_policy_count[dir]++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | xfrm_pol_hold(pol); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1007 | |
| 1008 | if (xfrm_bydst_should_resize(dir, NULL)) |
| 1009 | schedule_work(&xfrm_hash_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | } |
| 1011 | |
| 1012 | static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol, |
| 1013 | int dir) |
| 1014 | { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1015 | if (hlist_unhashed(&pol->bydst)) |
| 1016 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1018 | hlist_del(&pol->bydst); |
| 1019 | hlist_del(&pol->byidx); |
| 1020 | xfrm_policy_count[dir]--; |
| 1021 | |
| 1022 | return pol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | } |
| 1024 | |
Herbert Xu | 4666faa | 2005-06-18 22:43:22 -0700 | [diff] [blame] | 1025 | int xfrm_policy_delete(struct xfrm_policy *pol, int dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | { |
| 1027 | write_lock_bh(&xfrm_policy_lock); |
| 1028 | pol = __xfrm_policy_unlink(pol, dir); |
| 1029 | write_unlock_bh(&xfrm_policy_lock); |
| 1030 | if (pol) { |
| 1031 | if (dir < XFRM_POLICY_MAX) |
| 1032 | atomic_inc(&flow_cache_genid); |
| 1033 | xfrm_policy_kill(pol); |
Herbert Xu | 4666faa | 2005-06-18 22:43:22 -0700 | [diff] [blame] | 1034 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | } |
Herbert Xu | 4666faa | 2005-06-18 22:43:22 -0700 | [diff] [blame] | 1036 | return -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | } |
David S. Miller | a70fcb0 | 2006-03-20 19:18:52 -0800 | [diff] [blame] | 1038 | EXPORT_SYMBOL(xfrm_policy_delete); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
| 1040 | int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol) |
| 1041 | { |
| 1042 | struct xfrm_policy *old_pol; |
| 1043 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1044 | #ifdef CONFIG_XFRM_SUB_POLICY |
| 1045 | if (pol && pol->type != XFRM_POLICY_TYPE_MAIN) |
| 1046 | return -EINVAL; |
| 1047 | #endif |
| 1048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | write_lock_bh(&xfrm_policy_lock); |
| 1050 | old_pol = sk->sk_policy[dir]; |
| 1051 | sk->sk_policy[dir] = pol; |
| 1052 | if (pol) { |
James Morris | 9d729f7 | 2007-03-04 16:12:44 -0800 | [diff] [blame] | 1053 | pol->curlft.add_time = get_seconds(); |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1054 | pol->index = xfrm_gen_index(pol->type, XFRM_POLICY_MAX+dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir); |
| 1056 | } |
| 1057 | if (old_pol) |
| 1058 | __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir); |
| 1059 | write_unlock_bh(&xfrm_policy_lock); |
| 1060 | |
| 1061 | if (old_pol) { |
| 1062 | xfrm_policy_kill(old_pol); |
| 1063 | } |
| 1064 | return 0; |
| 1065 | } |
| 1066 | |
| 1067 | static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir) |
| 1068 | { |
| 1069 | struct xfrm_policy *newp = xfrm_policy_alloc(GFP_ATOMIC); |
| 1070 | |
| 1071 | if (newp) { |
| 1072 | newp->selector = old->selector; |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1073 | if (security_xfrm_policy_clone(old, newp)) { |
| 1074 | kfree(newp); |
| 1075 | return NULL; /* ENOMEM */ |
| 1076 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | newp->lft = old->lft; |
| 1078 | newp->curlft = old->curlft; |
| 1079 | newp->action = old->action; |
| 1080 | newp->flags = old->flags; |
| 1081 | newp->xfrm_nr = old->xfrm_nr; |
| 1082 | newp->index = old->index; |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1083 | newp->type = old->type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | memcpy(newp->xfrm_vec, old->xfrm_vec, |
| 1085 | newp->xfrm_nr*sizeof(struct xfrm_tmpl)); |
| 1086 | write_lock_bh(&xfrm_policy_lock); |
| 1087 | __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir); |
| 1088 | write_unlock_bh(&xfrm_policy_lock); |
| 1089 | xfrm_pol_put(newp); |
| 1090 | } |
| 1091 | return newp; |
| 1092 | } |
| 1093 | |
| 1094 | int __xfrm_sk_clone_policy(struct sock *sk) |
| 1095 | { |
| 1096 | struct xfrm_policy *p0 = sk->sk_policy[0], |
| 1097 | *p1 = sk->sk_policy[1]; |
| 1098 | |
| 1099 | sk->sk_policy[0] = sk->sk_policy[1] = NULL; |
| 1100 | if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL) |
| 1101 | return -ENOMEM; |
| 1102 | if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL) |
| 1103 | return -ENOMEM; |
| 1104 | return 0; |
| 1105 | } |
| 1106 | |
Patrick McHardy | a1e59ab | 2006-09-19 12:57:34 -0700 | [diff] [blame] | 1107 | static int |
| 1108 | xfrm_get_saddr(xfrm_address_t *local, xfrm_address_t *remote, |
| 1109 | unsigned short family) |
| 1110 | { |
| 1111 | int err; |
| 1112 | struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family); |
| 1113 | |
| 1114 | if (unlikely(afinfo == NULL)) |
| 1115 | return -EINVAL; |
| 1116 | err = afinfo->get_saddr(local, remote); |
| 1117 | xfrm_policy_put_afinfo(afinfo); |
| 1118 | return err; |
| 1119 | } |
| 1120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | /* Resolve list of templates for the flow, given policy. */ |
| 1122 | |
| 1123 | static int |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1124 | xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl, |
| 1125 | struct xfrm_state **xfrm, |
| 1126 | unsigned short family) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | { |
| 1128 | int nx; |
| 1129 | int i, error; |
| 1130 | xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family); |
| 1131 | xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family); |
Patrick McHardy | a1e59ab | 2006-09-19 12:57:34 -0700 | [diff] [blame] | 1132 | xfrm_address_t tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | |
| 1134 | for (nx=0, i = 0; i < policy->xfrm_nr; i++) { |
| 1135 | struct xfrm_state *x; |
| 1136 | xfrm_address_t *remote = daddr; |
| 1137 | xfrm_address_t *local = saddr; |
| 1138 | struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i]; |
| 1139 | |
Joakim Koskela | 48b8d78 | 2007-07-26 00:08:42 -0700 | [diff] [blame] | 1140 | if (tmpl->mode == XFRM_MODE_TUNNEL || |
| 1141 | tmpl->mode == XFRM_MODE_BEET) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | remote = &tmpl->id.daddr; |
| 1143 | local = &tmpl->saddr; |
Miika Komu | 76b3f05 | 2006-11-30 16:40:43 -0800 | [diff] [blame] | 1144 | family = tmpl->encap_family; |
Patrick McHardy | a1e59ab | 2006-09-19 12:57:34 -0700 | [diff] [blame] | 1145 | if (xfrm_addr_any(local, family)) { |
| 1146 | error = xfrm_get_saddr(&tmp, remote, family); |
| 1147 | if (error) |
| 1148 | goto fail; |
| 1149 | local = &tmp; |
| 1150 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family); |
| 1154 | |
| 1155 | if (x && x->km.state == XFRM_STATE_VALID) { |
| 1156 | xfrm[nx++] = x; |
| 1157 | daddr = remote; |
| 1158 | saddr = local; |
| 1159 | continue; |
| 1160 | } |
| 1161 | if (x) { |
| 1162 | error = (x->km.state == XFRM_STATE_ERROR ? |
| 1163 | -EINVAL : -EAGAIN); |
| 1164 | xfrm_state_put(x); |
| 1165 | } |
| 1166 | |
| 1167 | if (!tmpl->optional) |
| 1168 | goto fail; |
| 1169 | } |
| 1170 | return nx; |
| 1171 | |
| 1172 | fail: |
| 1173 | for (nx--; nx>=0; nx--) |
| 1174 | xfrm_state_put(xfrm[nx]); |
| 1175 | return error; |
| 1176 | } |
| 1177 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1178 | static int |
| 1179 | xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl, |
| 1180 | struct xfrm_state **xfrm, |
| 1181 | unsigned short family) |
| 1182 | { |
Masahide NAKAMURA | 41a49cc | 2006-08-23 22:48:31 -0700 | [diff] [blame] | 1183 | struct xfrm_state *tp[XFRM_MAX_DEPTH]; |
| 1184 | struct xfrm_state **tpp = (npols > 1) ? tp : xfrm; |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1185 | int cnx = 0; |
| 1186 | int error; |
| 1187 | int ret; |
| 1188 | int i; |
| 1189 | |
| 1190 | for (i = 0; i < npols; i++) { |
| 1191 | if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) { |
| 1192 | error = -ENOBUFS; |
| 1193 | goto fail; |
| 1194 | } |
Masahide NAKAMURA | 41a49cc | 2006-08-23 22:48:31 -0700 | [diff] [blame] | 1195 | |
| 1196 | ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family); |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1197 | if (ret < 0) { |
| 1198 | error = ret; |
| 1199 | goto fail; |
| 1200 | } else |
| 1201 | cnx += ret; |
| 1202 | } |
| 1203 | |
Masahide NAKAMURA | 41a49cc | 2006-08-23 22:48:31 -0700 | [diff] [blame] | 1204 | /* found states are sorted for outbound processing */ |
| 1205 | if (npols > 1) |
| 1206 | xfrm_state_sort(xfrm, tpp, cnx, family); |
| 1207 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1208 | return cnx; |
| 1209 | |
| 1210 | fail: |
| 1211 | for (cnx--; cnx>=0; cnx--) |
Masahide NAKAMURA | 41a49cc | 2006-08-23 22:48:31 -0700 | [diff] [blame] | 1212 | xfrm_state_put(tpp[cnx]); |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1213 | return error; |
| 1214 | |
| 1215 | } |
| 1216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | /* Check that the bundle accepts the flow and its components are |
| 1218 | * still valid. |
| 1219 | */ |
| 1220 | |
| 1221 | static struct dst_entry * |
| 1222 | xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family) |
| 1223 | { |
| 1224 | struct dst_entry *x; |
| 1225 | struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family); |
| 1226 | if (unlikely(afinfo == NULL)) |
| 1227 | return ERR_PTR(-EINVAL); |
| 1228 | x = afinfo->find_bundle(fl, policy); |
| 1229 | xfrm_policy_put_afinfo(afinfo); |
| 1230 | return x; |
| 1231 | } |
| 1232 | |
| 1233 | /* Allocate chain of dst_entry's, attach known xfrm's, calculate |
| 1234 | * all the metrics... Shortly, bundle a bundle. |
| 1235 | */ |
| 1236 | |
| 1237 | static int |
| 1238 | xfrm_bundle_create(struct xfrm_policy *policy, struct xfrm_state **xfrm, int nx, |
| 1239 | struct flowi *fl, struct dst_entry **dst_p, |
| 1240 | unsigned short family) |
| 1241 | { |
| 1242 | int err; |
| 1243 | struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family); |
| 1244 | if (unlikely(afinfo == NULL)) |
| 1245 | return -EINVAL; |
| 1246 | err = afinfo->bundle_create(policy, xfrm, nx, fl, dst_p); |
| 1247 | xfrm_policy_put_afinfo(afinfo); |
| 1248 | return err; |
| 1249 | } |
| 1250 | |
Masahide NAKAMURA | 157bfc2 | 2007-04-30 00:33:35 -0700 | [diff] [blame] | 1251 | static int inline |
| 1252 | xfrm_dst_alloc_copy(void **target, void *src, int size) |
| 1253 | { |
| 1254 | if (!*target) { |
| 1255 | *target = kmalloc(size, GFP_ATOMIC); |
| 1256 | if (!*target) |
| 1257 | return -ENOMEM; |
| 1258 | } |
| 1259 | memcpy(*target, src, size); |
| 1260 | return 0; |
| 1261 | } |
| 1262 | |
| 1263 | static int inline |
| 1264 | xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel) |
| 1265 | { |
| 1266 | #ifdef CONFIG_XFRM_SUB_POLICY |
| 1267 | struct xfrm_dst *xdst = (struct xfrm_dst *)dst; |
| 1268 | return xfrm_dst_alloc_copy((void **)&(xdst->partner), |
| 1269 | sel, sizeof(*sel)); |
| 1270 | #else |
| 1271 | return 0; |
| 1272 | #endif |
| 1273 | } |
| 1274 | |
| 1275 | static int inline |
| 1276 | xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl) |
| 1277 | { |
| 1278 | #ifdef CONFIG_XFRM_SUB_POLICY |
| 1279 | struct xfrm_dst *xdst = (struct xfrm_dst *)dst; |
| 1280 | return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl)); |
| 1281 | #else |
| 1282 | return 0; |
| 1283 | #endif |
| 1284 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | |
| 1286 | static int stale_bundle(struct dst_entry *dst); |
| 1287 | |
| 1288 | /* Main function: finds/creates a bundle for given flow. |
| 1289 | * |
| 1290 | * At the moment we eat a raw IP route. Mostly to speed up lookups |
| 1291 | * on interfaces with disabled IPsec. |
| 1292 | */ |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 1293 | int __xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl, |
| 1294 | struct sock *sk, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | { |
| 1296 | struct xfrm_policy *policy; |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1297 | struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX]; |
| 1298 | int npols; |
| 1299 | int pol_dead; |
| 1300 | int xfrm_nr; |
| 1301 | int pi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | struct xfrm_state *xfrm[XFRM_MAX_DEPTH]; |
| 1303 | struct dst_entry *dst, *dst_orig = *dst_p; |
| 1304 | int nx = 0; |
| 1305 | int err; |
| 1306 | u32 genid; |
Patrick McHardy | 42cf93c | 2006-02-21 13:37:35 -0800 | [diff] [blame] | 1307 | u16 family; |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1308 | u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT); |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | restart: |
| 1311 | genid = atomic_read(&flow_cache_genid); |
| 1312 | policy = NULL; |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1313 | for (pi = 0; pi < ARRAY_SIZE(pols); pi++) |
| 1314 | pols[pi] = NULL; |
| 1315 | npols = 0; |
| 1316 | pol_dead = 0; |
| 1317 | xfrm_nr = 0; |
| 1318 | |
Thomas Graf | f7944fb | 2007-08-25 13:46:55 -0700 | [diff] [blame] | 1319 | if (sk && sk->sk_policy[XFRM_POLICY_OUT]) { |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1320 | policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl); |
Venkat Yekkirala | 3bccfbc | 2006-10-05 15:42:35 -0500 | [diff] [blame] | 1321 | if (IS_ERR(policy)) |
| 1322 | return PTR_ERR(policy); |
| 1323 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | |
| 1325 | if (!policy) { |
| 1326 | /* To accelerate a bit... */ |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1327 | if ((dst_orig->flags & DST_NOXFRM) || |
| 1328 | !xfrm_policy_count[XFRM_POLICY_OUT]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | return 0; |
| 1330 | |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1331 | policy = flow_cache_lookup(fl, dst_orig->ops->family, |
Patrick McHardy | 42cf93c | 2006-02-21 13:37:35 -0800 | [diff] [blame] | 1332 | dir, xfrm_policy_lookup); |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 1333 | if (IS_ERR(policy)) |
| 1334 | return PTR_ERR(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | } |
| 1336 | |
| 1337 | if (!policy) |
| 1338 | return 0; |
| 1339 | |
Patrick McHardy | 42cf93c | 2006-02-21 13:37:35 -0800 | [diff] [blame] | 1340 | family = dst_orig->ops->family; |
James Morris | 9d729f7 | 2007-03-04 16:12:44 -0800 | [diff] [blame] | 1341 | policy->curlft.use_time = get_seconds(); |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1342 | pols[0] = policy; |
| 1343 | npols ++; |
| 1344 | xfrm_nr += pols[0]->xfrm_nr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | |
| 1346 | switch (policy->action) { |
Herbert Xu | 5e5234f | 2007-11-30 00:50:31 +1100 | [diff] [blame^] | 1347 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | case XFRM_POLICY_BLOCK: |
| 1349 | /* Prohibit the flow */ |
Patrick McHardy | e104411 | 2005-09-08 15:11:55 -0700 | [diff] [blame] | 1350 | err = -EPERM; |
| 1351 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | |
| 1353 | case XFRM_POLICY_ALLOW: |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1354 | #ifndef CONFIG_XFRM_SUB_POLICY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | if (policy->xfrm_nr == 0) { |
| 1356 | /* Flow passes not transformed. */ |
| 1357 | xfrm_pol_put(policy); |
| 1358 | return 0; |
| 1359 | } |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1360 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | |
| 1362 | /* Try to find matching bundle. |
| 1363 | * |
| 1364 | * LATER: help from flow cache. It is optional, this |
| 1365 | * is required only for output policy. |
| 1366 | */ |
| 1367 | dst = xfrm_find_bundle(fl, policy, family); |
| 1368 | if (IS_ERR(dst)) { |
Patrick McHardy | e104411 | 2005-09-08 15:11:55 -0700 | [diff] [blame] | 1369 | err = PTR_ERR(dst); |
| 1370 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | } |
| 1372 | |
| 1373 | if (dst) |
| 1374 | break; |
| 1375 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1376 | #ifdef CONFIG_XFRM_SUB_POLICY |
| 1377 | if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) { |
| 1378 | pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN, |
| 1379 | fl, family, |
| 1380 | XFRM_POLICY_OUT); |
| 1381 | if (pols[1]) { |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 1382 | if (IS_ERR(pols[1])) { |
| 1383 | err = PTR_ERR(pols[1]); |
| 1384 | goto error; |
| 1385 | } |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1386 | if (pols[1]->action == XFRM_POLICY_BLOCK) { |
| 1387 | err = -EPERM; |
| 1388 | goto error; |
| 1389 | } |
| 1390 | npols ++; |
| 1391 | xfrm_nr += pols[1]->xfrm_nr; |
| 1392 | } |
| 1393 | } |
| 1394 | |
| 1395 | /* |
| 1396 | * Because neither flowi nor bundle information knows about |
| 1397 | * transformation template size. On more than one policy usage |
| 1398 | * we can realize whether all of them is bypass or not after |
| 1399 | * they are searched. See above not-transformed bypass |
| 1400 | * is surrounded by non-sub policy configuration, too. |
| 1401 | */ |
| 1402 | if (xfrm_nr == 0) { |
| 1403 | /* Flow passes not transformed. */ |
| 1404 | xfrm_pols_put(pols, npols); |
| 1405 | return 0; |
| 1406 | } |
| 1407 | |
| 1408 | #endif |
| 1409 | nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | |
| 1411 | if (unlikely(nx<0)) { |
| 1412 | err = nx; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 1413 | if (err == -EAGAIN && sysctl_xfrm_larval_drop) { |
| 1414 | /* EREMOTE tells the caller to generate |
| 1415 | * a one-shot blackhole route. |
| 1416 | */ |
| 1417 | xfrm_pol_put(policy); |
| 1418 | return -EREMOTE; |
| 1419 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | if (err == -EAGAIN && flags) { |
| 1421 | DECLARE_WAITQUEUE(wait, current); |
| 1422 | |
| 1423 | add_wait_queue(&km_waitq, &wait); |
| 1424 | set_current_state(TASK_INTERRUPTIBLE); |
| 1425 | schedule(); |
| 1426 | set_current_state(TASK_RUNNING); |
| 1427 | remove_wait_queue(&km_waitq, &wait); |
| 1428 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1429 | nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | |
| 1431 | if (nx == -EAGAIN && signal_pending(current)) { |
| 1432 | err = -ERESTART; |
| 1433 | goto error; |
| 1434 | } |
| 1435 | if (nx == -EAGAIN || |
| 1436 | genid != atomic_read(&flow_cache_genid)) { |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1437 | xfrm_pols_put(pols, npols); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | goto restart; |
| 1439 | } |
| 1440 | err = nx; |
| 1441 | } |
| 1442 | if (err < 0) |
| 1443 | goto error; |
| 1444 | } |
| 1445 | if (nx == 0) { |
| 1446 | /* Flow passes not transformed. */ |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1447 | xfrm_pols_put(pols, npols); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | return 0; |
| 1449 | } |
| 1450 | |
| 1451 | dst = dst_orig; |
| 1452 | err = xfrm_bundle_create(policy, xfrm, nx, fl, &dst, family); |
| 1453 | |
| 1454 | if (unlikely(err)) { |
| 1455 | int i; |
| 1456 | for (i=0; i<nx; i++) |
| 1457 | xfrm_state_put(xfrm[i]); |
| 1458 | goto error; |
| 1459 | } |
| 1460 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1461 | for (pi = 0; pi < npols; pi++) { |
| 1462 | read_lock_bh(&pols[pi]->lock); |
| 1463 | pol_dead |= pols[pi]->dead; |
| 1464 | read_unlock_bh(&pols[pi]->lock); |
| 1465 | } |
| 1466 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | write_lock_bh(&policy->lock); |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1468 | if (unlikely(pol_dead || stale_bundle(dst))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | /* Wow! While we worked on resolving, this |
| 1470 | * policy has gone. Retry. It is not paranoia, |
| 1471 | * we just cannot enlist new bundle to dead object. |
| 1472 | * We can't enlist stable bundles either. |
| 1473 | */ |
| 1474 | write_unlock_bh(&policy->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | if (dst) |
| 1476 | dst_free(dst); |
Herbert Xu | 00de651 | 2006-02-13 16:01:27 -0800 | [diff] [blame] | 1477 | |
| 1478 | err = -EHOSTUNREACH; |
| 1479 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | } |
Masahide NAKAMURA | 157bfc2 | 2007-04-30 00:33:35 -0700 | [diff] [blame] | 1481 | |
| 1482 | if (npols > 1) |
| 1483 | err = xfrm_dst_update_parent(dst, &pols[1]->selector); |
| 1484 | else |
| 1485 | err = xfrm_dst_update_origin(dst, fl); |
| 1486 | if (unlikely(err)) { |
| 1487 | write_unlock_bh(&policy->lock); |
| 1488 | if (dst) |
| 1489 | dst_free(dst); |
| 1490 | goto error; |
| 1491 | } |
| 1492 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | dst->next = policy->bundles; |
| 1494 | policy->bundles = dst; |
| 1495 | dst_hold(dst); |
| 1496 | write_unlock_bh(&policy->lock); |
| 1497 | } |
| 1498 | *dst_p = dst; |
| 1499 | dst_release(dst_orig); |
YOSHIFUJI Hideaki | a716c11 | 2007-02-09 23:25:29 +0900 | [diff] [blame] | 1500 | xfrm_pols_put(pols, npols); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | return 0; |
| 1502 | |
| 1503 | error: |
| 1504 | dst_release(dst_orig); |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1505 | xfrm_pols_put(pols, npols); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | *dst_p = NULL; |
| 1507 | return err; |
| 1508 | } |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 1509 | EXPORT_SYMBOL(__xfrm_lookup); |
| 1510 | |
| 1511 | int xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl, |
| 1512 | struct sock *sk, int flags) |
| 1513 | { |
| 1514 | int err = __xfrm_lookup(dst_p, fl, sk, flags); |
| 1515 | |
| 1516 | if (err == -EREMOTE) { |
| 1517 | dst_release(*dst_p); |
| 1518 | *dst_p = NULL; |
| 1519 | err = -EAGAIN; |
| 1520 | } |
| 1521 | |
| 1522 | return err; |
| 1523 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | EXPORT_SYMBOL(xfrm_lookup); |
| 1525 | |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1526 | static inline int |
| 1527 | xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl) |
| 1528 | { |
| 1529 | struct xfrm_state *x; |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1530 | |
| 1531 | if (!skb->sp || idx < 0 || idx >= skb->sp->len) |
| 1532 | return 0; |
| 1533 | x = skb->sp->xvec[idx]; |
| 1534 | if (!x->type->reject) |
| 1535 | return 0; |
Herbert Xu | 1ecafed | 2007-10-09 13:24:07 -0700 | [diff] [blame] | 1536 | return x->type->reject(x, skb, fl); |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1537 | } |
| 1538 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | /* When skb is transformed back to its "native" form, we have to |
| 1540 | * check policy restrictions. At the moment we make this in maximally |
| 1541 | * stupid way. Shame on me. :-) Of course, connected sockets must |
| 1542 | * have policy cached at them. |
| 1543 | */ |
| 1544 | |
| 1545 | static inline int |
YOSHIFUJI Hideaki | a716c11 | 2007-02-09 23:25:29 +0900 | [diff] [blame] | 1546 | xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | unsigned short family) |
| 1548 | { |
| 1549 | if (xfrm_state_kern(x)) |
Kazunori MIYAZAWA | 928ba41 | 2007-02-13 12:57:16 -0800 | [diff] [blame] | 1550 | return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | return x->id.proto == tmpl->id.proto && |
| 1552 | (x->id.spi == tmpl->id.spi || !tmpl->id.spi) && |
| 1553 | (x->props.reqid == tmpl->reqid || !tmpl->reqid) && |
| 1554 | x->props.mode == tmpl->mode && |
Masahide NAKAMURA | f3bd484 | 2006-08-23 18:00:48 -0700 | [diff] [blame] | 1555 | ((tmpl->aalgos & (1<<x->props.aalgo)) || |
| 1556 | !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) && |
Masahide NAKAMURA | 7e49e6d | 2006-09-22 15:05:15 -0700 | [diff] [blame] | 1557 | !(x->props.mode != XFRM_MODE_TRANSPORT && |
| 1558 | xfrm_state_addr_cmp(tmpl, x, family)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | } |
| 1560 | |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1561 | /* |
| 1562 | * 0 or more than 0 is returned when validation is succeeded (either bypass |
| 1563 | * because of optional transport mode, or next index of the mathced secpath |
| 1564 | * state with the template. |
| 1565 | * -1 is returned when no matching template is found. |
| 1566 | * Otherwise "-2 - errored_index" is returned. |
| 1567 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | static inline int |
| 1569 | xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start, |
| 1570 | unsigned short family) |
| 1571 | { |
| 1572 | int idx = start; |
| 1573 | |
| 1574 | if (tmpl->optional) { |
Masahide NAKAMURA | 7e49e6d | 2006-09-22 15:05:15 -0700 | [diff] [blame] | 1575 | if (tmpl->mode == XFRM_MODE_TRANSPORT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | return start; |
| 1577 | } else |
| 1578 | start = -1; |
| 1579 | for (; idx < sp->len; idx++) { |
Herbert Xu | dbe5b4a | 2006-04-01 00:54:16 -0800 | [diff] [blame] | 1580 | if (xfrm_state_ok(tmpl, sp->xvec[idx], family)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | return ++idx; |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1582 | if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) { |
| 1583 | if (start == -1) |
| 1584 | start = -2-idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | break; |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1586 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | } |
| 1588 | return start; |
| 1589 | } |
| 1590 | |
Patrick McHardy | 3e3850e | 2006-01-06 23:04:54 -0800 | [diff] [blame] | 1591 | int |
| 1592 | xfrm_decode_session(struct sk_buff *skb, struct flowi *fl, unsigned short family) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | { |
| 1594 | struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family); |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1595 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | |
| 1597 | if (unlikely(afinfo == NULL)) |
| 1598 | return -EAFNOSUPPORT; |
| 1599 | |
| 1600 | afinfo->decode_session(skb, fl); |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 1601 | err = security_xfrm_decode_session(skb, &fl->secid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | xfrm_policy_put_afinfo(afinfo); |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1603 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | } |
Patrick McHardy | 3e3850e | 2006-01-06 23:04:54 -0800 | [diff] [blame] | 1605 | EXPORT_SYMBOL(xfrm_decode_session); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1606 | |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1607 | static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | { |
| 1609 | for (; k < sp->len; k++) { |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1610 | if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) { |
James Morris | d1d9fac | 2006-09-01 00:32:12 -0700 | [diff] [blame] | 1611 | *idxp = k; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | return 1; |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1613 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | } |
| 1615 | |
| 1616 | return 0; |
| 1617 | } |
| 1618 | |
YOSHIFUJI Hideaki | a716c11 | 2007-02-09 23:25:29 +0900 | [diff] [blame] | 1619 | int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | unsigned short family) |
| 1621 | { |
| 1622 | struct xfrm_policy *pol; |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1623 | struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX]; |
| 1624 | int npols = 0; |
| 1625 | int xfrm_nr; |
| 1626 | int pi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | struct flowi fl; |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1628 | u8 fl_dir = policy_to_flow_dir(dir); |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1629 | int xerr_idx = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | |
Patrick McHardy | 3e3850e | 2006-01-06 23:04:54 -0800 | [diff] [blame] | 1631 | if (xfrm_decode_session(skb, &fl, family) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | return 0; |
Patrick McHardy | eb9c7eb | 2006-01-06 23:06:30 -0800 | [diff] [blame] | 1633 | nf_nat_decode_session(skb, &fl, family); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | |
| 1635 | /* First, check used SA against their selectors. */ |
| 1636 | if (skb->sp) { |
| 1637 | int i; |
| 1638 | |
| 1639 | for (i=skb->sp->len-1; i>=0; i--) { |
Herbert Xu | dbe5b4a | 2006-04-01 00:54:16 -0800 | [diff] [blame] | 1640 | struct xfrm_state *x = skb->sp->xvec[i]; |
| 1641 | if (!xfrm_selector_match(&x->sel, &fl, family)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | } |
| 1644 | } |
| 1645 | |
| 1646 | pol = NULL; |
Venkat Yekkirala | 3bccfbc | 2006-10-05 15:42:35 -0500 | [diff] [blame] | 1647 | if (sk && sk->sk_policy[dir]) { |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1648 | pol = xfrm_sk_policy_lookup(sk, dir, &fl); |
Venkat Yekkirala | 3bccfbc | 2006-10-05 15:42:35 -0500 | [diff] [blame] | 1649 | if (IS_ERR(pol)) |
| 1650 | return 0; |
| 1651 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | |
| 1653 | if (!pol) |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1654 | pol = flow_cache_lookup(&fl, family, fl_dir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | xfrm_policy_lookup); |
| 1656 | |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 1657 | if (IS_ERR(pol)) |
| 1658 | return 0; |
| 1659 | |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1660 | if (!pol) { |
James Morris | d1d9fac | 2006-09-01 00:32:12 -0700 | [diff] [blame] | 1661 | if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) { |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1662 | xfrm_secpath_reject(xerr_idx, skb, &fl); |
| 1663 | return 0; |
| 1664 | } |
| 1665 | return 1; |
| 1666 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | |
James Morris | 9d729f7 | 2007-03-04 16:12:44 -0800 | [diff] [blame] | 1668 | pol->curlft.use_time = get_seconds(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1670 | pols[0] = pol; |
| 1671 | npols ++; |
| 1672 | #ifdef CONFIG_XFRM_SUB_POLICY |
| 1673 | if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) { |
| 1674 | pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN, |
| 1675 | &fl, family, |
| 1676 | XFRM_POLICY_IN); |
| 1677 | if (pols[1]) { |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 1678 | if (IS_ERR(pols[1])) |
| 1679 | return 0; |
James Morris | 9d729f7 | 2007-03-04 16:12:44 -0800 | [diff] [blame] | 1680 | pols[1]->curlft.use_time = get_seconds(); |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1681 | npols ++; |
| 1682 | } |
| 1683 | } |
| 1684 | #endif |
| 1685 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | if (pol->action == XFRM_POLICY_ALLOW) { |
| 1687 | struct sec_path *sp; |
| 1688 | static struct sec_path dummy; |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1689 | struct xfrm_tmpl *tp[XFRM_MAX_DEPTH]; |
Masahide NAKAMURA | 41a49cc | 2006-08-23 22:48:31 -0700 | [diff] [blame] | 1690 | struct xfrm_tmpl *stp[XFRM_MAX_DEPTH]; |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1691 | struct xfrm_tmpl **tpp = tp; |
| 1692 | int ti = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | int i, k; |
| 1694 | |
| 1695 | if ((sp = skb->sp) == NULL) |
| 1696 | sp = &dummy; |
| 1697 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1698 | for (pi = 0; pi < npols; pi++) { |
| 1699 | if (pols[pi] != pol && |
| 1700 | pols[pi]->action != XFRM_POLICY_ALLOW) |
| 1701 | goto reject; |
| 1702 | if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) |
| 1703 | goto reject_error; |
| 1704 | for (i = 0; i < pols[pi]->xfrm_nr; i++) |
| 1705 | tpp[ti++] = &pols[pi]->xfrm_vec[i]; |
| 1706 | } |
| 1707 | xfrm_nr = ti; |
Masahide NAKAMURA | 41a49cc | 2006-08-23 22:48:31 -0700 | [diff] [blame] | 1708 | if (npols > 1) { |
| 1709 | xfrm_tmpl_sort(stp, tpp, xfrm_nr, family); |
| 1710 | tpp = stp; |
| 1711 | } |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | /* For each tunnel xfrm, find the first matching tmpl. |
| 1714 | * For each tmpl before that, find corresponding xfrm. |
| 1715 | * Order is _important_. Later we will implement |
| 1716 | * some barriers, but at the moment barriers |
| 1717 | * are implied between each two transformations. |
| 1718 | */ |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1719 | for (i = xfrm_nr-1, k = 0; i >= 0; i--) { |
| 1720 | k = xfrm_policy_ok(tpp[i], sp, k, family); |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1721 | if (k < 0) { |
James Morris | d1d9fac | 2006-09-01 00:32:12 -0700 | [diff] [blame] | 1722 | if (k < -1) |
| 1723 | /* "-2 - errored_index" returned */ |
| 1724 | xerr_idx = -(2+k); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | goto reject; |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1726 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | } |
| 1728 | |
James Morris | d1d9fac | 2006-09-01 00:32:12 -0700 | [diff] [blame] | 1729 | if (secpath_has_nontransport(sp, k, &xerr_idx)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | goto reject; |
| 1731 | |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1732 | xfrm_pols_put(pols, npols); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | return 1; |
| 1734 | } |
| 1735 | |
| 1736 | reject: |
Masahide NAKAMURA | df0ba92 | 2006-08-23 20:41:00 -0700 | [diff] [blame] | 1737 | xfrm_secpath_reject(xerr_idx, skb, &fl); |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1738 | reject_error: |
| 1739 | xfrm_pols_put(pols, npols); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | return 0; |
| 1741 | } |
| 1742 | EXPORT_SYMBOL(__xfrm_policy_check); |
| 1743 | |
| 1744 | int __xfrm_route_forward(struct sk_buff *skb, unsigned short family) |
| 1745 | { |
| 1746 | struct flowi fl; |
| 1747 | |
Patrick McHardy | 3e3850e | 2006-01-06 23:04:54 -0800 | [diff] [blame] | 1748 | if (xfrm_decode_session(skb, &fl, family) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | return 0; |
| 1750 | |
| 1751 | return xfrm_lookup(&skb->dst, &fl, NULL, 0) == 0; |
| 1752 | } |
| 1753 | EXPORT_SYMBOL(__xfrm_route_forward); |
| 1754 | |
David S. Miller | d49c73c | 2006-08-13 18:55:53 -0700 | [diff] [blame] | 1755 | /* Optimize later using cookies and generation ids. */ |
| 1756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie) |
| 1758 | { |
David S. Miller | d49c73c | 2006-08-13 18:55:53 -0700 | [diff] [blame] | 1759 | /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete |
| 1760 | * to "-1" to force all XFRM destinations to get validated by |
| 1761 | * dst_ops->check on every use. We do this because when a |
| 1762 | * normal route referenced by an XFRM dst is obsoleted we do |
| 1763 | * not go looking around for all parent referencing XFRM dsts |
| 1764 | * so that we can invalidate them. It is just too much work. |
| 1765 | * Instead we make the checks here on every use. For example: |
| 1766 | * |
| 1767 | * XFRM dst A --> IPv4 dst X |
| 1768 | * |
| 1769 | * X is the "xdst->route" of A (X is also the "dst->path" of A |
| 1770 | * in this example). If X is marked obsolete, "A" will not |
| 1771 | * notice. That's what we are validating here via the |
| 1772 | * stale_bundle() check. |
| 1773 | * |
| 1774 | * When a policy's bundle is pruned, we dst_free() the XFRM |
| 1775 | * dst which causes it's ->obsolete field to be set to a |
| 1776 | * positive non-zero integer. If an XFRM dst has been pruned |
| 1777 | * like this, we want to force a new route lookup. |
David S. Miller | 399c180 | 2005-12-19 14:23:23 -0800 | [diff] [blame] | 1778 | */ |
David S. Miller | d49c73c | 2006-08-13 18:55:53 -0700 | [diff] [blame] | 1779 | if (dst->obsolete < 0 && !stale_bundle(dst)) |
| 1780 | return dst; |
| 1781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | return NULL; |
| 1783 | } |
| 1784 | |
| 1785 | static int stale_bundle(struct dst_entry *dst) |
| 1786 | { |
Venkat Yekkirala | 5b368e6 | 2006-10-05 15:42:18 -0500 | [diff] [blame] | 1787 | return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | } |
| 1789 | |
Herbert Xu | aabc976 | 2005-05-03 16:27:10 -0700 | [diff] [blame] | 1790 | void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1792 | while ((dst = dst->child) && dst->xfrm && dst->dev == dev) { |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 1793 | dst->dev = init_net.loopback_dev; |
Daniel Lezcano | de3cb74 | 2007-09-25 19:16:28 -0700 | [diff] [blame] | 1794 | dev_hold(dst->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | dev_put(dev); |
| 1796 | } |
| 1797 | } |
Herbert Xu | aabc976 | 2005-05-03 16:27:10 -0700 | [diff] [blame] | 1798 | EXPORT_SYMBOL(xfrm_dst_ifdown); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1799 | |
| 1800 | static void xfrm_link_failure(struct sk_buff *skb) |
| 1801 | { |
| 1802 | /* Impossible. Such dst must be popped before reaches point of failure. */ |
| 1803 | return; |
| 1804 | } |
| 1805 | |
| 1806 | static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst) |
| 1807 | { |
| 1808 | if (dst) { |
| 1809 | if (dst->obsolete) { |
| 1810 | dst_release(dst); |
| 1811 | dst = NULL; |
| 1812 | } |
| 1813 | } |
| 1814 | return dst; |
| 1815 | } |
| 1816 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1817 | static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p) |
| 1818 | { |
| 1819 | struct dst_entry *dst, **dstp; |
| 1820 | |
| 1821 | write_lock(&pol->lock); |
| 1822 | dstp = &pol->bundles; |
| 1823 | while ((dst=*dstp) != NULL) { |
| 1824 | if (func(dst)) { |
| 1825 | *dstp = dst->next; |
| 1826 | dst->next = *gc_list_p; |
| 1827 | *gc_list_p = dst; |
| 1828 | } else { |
| 1829 | dstp = &dst->next; |
| 1830 | } |
| 1831 | } |
| 1832 | write_unlock(&pol->lock); |
| 1833 | } |
| 1834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | static void xfrm_prune_bundles(int (*func)(struct dst_entry *)) |
| 1836 | { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1837 | struct dst_entry *gc_list = NULL; |
| 1838 | int dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | |
| 1840 | read_lock_bh(&xfrm_policy_lock); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1841 | for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) { |
| 1842 | struct xfrm_policy *pol; |
| 1843 | struct hlist_node *entry; |
| 1844 | struct hlist_head *table; |
| 1845 | int i; |
Masahide NAKAMURA | 4e81bb8 | 2006-08-23 22:43:30 -0700 | [diff] [blame] | 1846 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1847 | hlist_for_each_entry(pol, entry, |
| 1848 | &xfrm_policy_inexact[dir], bydst) |
| 1849 | prune_one_bundle(pol, func, &gc_list); |
| 1850 | |
| 1851 | table = xfrm_policy_bydst[dir].table; |
| 1852 | for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) { |
| 1853 | hlist_for_each_entry(pol, entry, table + i, bydst) |
| 1854 | prune_one_bundle(pol, func, &gc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | } |
| 1856 | } |
| 1857 | read_unlock_bh(&xfrm_policy_lock); |
| 1858 | |
| 1859 | while (gc_list) { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 1860 | struct dst_entry *dst = gc_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | gc_list = dst->next; |
| 1862 | dst_free(dst); |
| 1863 | } |
| 1864 | } |
| 1865 | |
| 1866 | static int unused_bundle(struct dst_entry *dst) |
| 1867 | { |
| 1868 | return !atomic_read(&dst->__refcnt); |
| 1869 | } |
| 1870 | |
| 1871 | static void __xfrm_garbage_collect(void) |
| 1872 | { |
| 1873 | xfrm_prune_bundles(unused_bundle); |
| 1874 | } |
| 1875 | |
David S. Miller | 1c09539 | 2006-08-24 03:30:28 -0700 | [diff] [blame] | 1876 | static int xfrm_flush_bundles(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1877 | { |
| 1878 | xfrm_prune_bundles(stale_bundle); |
| 1879 | return 0; |
| 1880 | } |
| 1881 | |
| 1882 | void xfrm_init_pmtu(struct dst_entry *dst) |
| 1883 | { |
| 1884 | do { |
| 1885 | struct xfrm_dst *xdst = (struct xfrm_dst *)dst; |
| 1886 | u32 pmtu, route_mtu_cached; |
| 1887 | |
| 1888 | pmtu = dst_mtu(dst->child); |
| 1889 | xdst->child_mtu_cached = pmtu; |
| 1890 | |
| 1891 | pmtu = xfrm_state_mtu(dst->xfrm, pmtu); |
| 1892 | |
| 1893 | route_mtu_cached = dst_mtu(xdst->route); |
| 1894 | xdst->route_mtu_cached = route_mtu_cached; |
| 1895 | |
| 1896 | if (pmtu > route_mtu_cached) |
| 1897 | pmtu = route_mtu_cached; |
| 1898 | |
| 1899 | dst->metrics[RTAX_MTU-1] = pmtu; |
| 1900 | } while ((dst = dst->next)); |
| 1901 | } |
| 1902 | |
| 1903 | EXPORT_SYMBOL(xfrm_init_pmtu); |
| 1904 | |
| 1905 | /* Check that the bundle accepts the flow and its components are |
| 1906 | * still valid. |
| 1907 | */ |
| 1908 | |
Venkat Yekkirala | 5b368e6 | 2006-10-05 15:42:18 -0500 | [diff] [blame] | 1909 | int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first, |
| 1910 | struct flowi *fl, int family, int strict) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1911 | { |
| 1912 | struct dst_entry *dst = &first->u.dst; |
| 1913 | struct xfrm_dst *last; |
| 1914 | u32 mtu; |
| 1915 | |
Hideaki YOSHIFUJI | 92d63de | 2005-05-26 12:58:04 -0700 | [diff] [blame] | 1916 | if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | (dst->dev && !netif_running(dst->dev))) |
| 1918 | return 0; |
Masahide NAKAMURA | 157bfc2 | 2007-04-30 00:33:35 -0700 | [diff] [blame] | 1919 | #ifdef CONFIG_XFRM_SUB_POLICY |
| 1920 | if (fl) { |
| 1921 | if (first->origin && !flow_cache_uli_match(first->origin, fl)) |
| 1922 | return 0; |
| 1923 | if (first->partner && |
| 1924 | !xfrm_selector_match(first->partner, fl, family)) |
| 1925 | return 0; |
| 1926 | } |
| 1927 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | |
| 1929 | last = NULL; |
| 1930 | |
| 1931 | do { |
| 1932 | struct xfrm_dst *xdst = (struct xfrm_dst *)dst; |
| 1933 | |
| 1934 | if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family)) |
| 1935 | return 0; |
Venkat Yekkirala | 67f83cb | 2006-11-08 17:04:26 -0600 | [diff] [blame] | 1936 | if (fl && pol && |
| 1937 | !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl)) |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1938 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | if (dst->xfrm->km.state != XFRM_STATE_VALID) |
| 1940 | return 0; |
David S. Miller | 9d4a706 | 2006-08-24 03:18:09 -0700 | [diff] [blame] | 1941 | if (xdst->genid != dst->xfrm->genid) |
| 1942 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | |
Herbert Xu | 1bfcb10 | 2007-10-17 21:31:50 -0700 | [diff] [blame] | 1944 | if (strict && fl && |
Herbert Xu | 1399637 | 2007-10-17 21:35:51 -0700 | [diff] [blame] | 1945 | !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) && |
Masahide NAKAMURA | e53820d | 2006-08-23 19:12:01 -0700 | [diff] [blame] | 1946 | !xfrm_state_addr_flow_check(dst->xfrm, fl, family)) |
| 1947 | return 0; |
| 1948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | mtu = dst_mtu(dst->child); |
| 1950 | if (xdst->child_mtu_cached != mtu) { |
| 1951 | last = xdst; |
| 1952 | xdst->child_mtu_cached = mtu; |
| 1953 | } |
| 1954 | |
Hideaki YOSHIFUJI | 92d63de | 2005-05-26 12:58:04 -0700 | [diff] [blame] | 1955 | if (!dst_check(xdst->route, xdst->route_cookie)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | return 0; |
| 1957 | mtu = dst_mtu(xdst->route); |
| 1958 | if (xdst->route_mtu_cached != mtu) { |
| 1959 | last = xdst; |
| 1960 | xdst->route_mtu_cached = mtu; |
| 1961 | } |
| 1962 | |
| 1963 | dst = dst->child; |
| 1964 | } while (dst->xfrm); |
| 1965 | |
| 1966 | if (likely(!last)) |
| 1967 | return 1; |
| 1968 | |
| 1969 | mtu = last->child_mtu_cached; |
| 1970 | for (;;) { |
| 1971 | dst = &last->u.dst; |
| 1972 | |
| 1973 | mtu = xfrm_state_mtu(dst->xfrm, mtu); |
| 1974 | if (mtu > last->route_mtu_cached) |
| 1975 | mtu = last->route_mtu_cached; |
| 1976 | dst->metrics[RTAX_MTU-1] = mtu; |
| 1977 | |
| 1978 | if (last == first) |
| 1979 | break; |
| 1980 | |
Patrick McHardy | bd0bf07 | 2007-07-18 01:55:52 -0700 | [diff] [blame] | 1981 | last = (struct xfrm_dst *)last->u.dst.next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1982 | last->child_mtu_cached = mtu; |
| 1983 | } |
| 1984 | |
| 1985 | return 1; |
| 1986 | } |
| 1987 | |
| 1988 | EXPORT_SYMBOL(xfrm_bundle_ok); |
| 1989 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo) |
| 1991 | { |
| 1992 | int err = 0; |
| 1993 | if (unlikely(afinfo == NULL)) |
| 1994 | return -EINVAL; |
| 1995 | if (unlikely(afinfo->family >= NPROTO)) |
| 1996 | return -EAFNOSUPPORT; |
Ingo Molnar | e959d81 | 2006-04-28 15:32:29 -0700 | [diff] [blame] | 1997 | write_lock_bh(&xfrm_policy_afinfo_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1998 | if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL)) |
| 1999 | err = -ENOBUFS; |
| 2000 | else { |
| 2001 | struct dst_ops *dst_ops = afinfo->dst_ops; |
| 2002 | if (likely(dst_ops->kmem_cachep == NULL)) |
| 2003 | dst_ops->kmem_cachep = xfrm_dst_cache; |
| 2004 | if (likely(dst_ops->check == NULL)) |
| 2005 | dst_ops->check = xfrm_dst_check; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2006 | if (likely(dst_ops->negative_advice == NULL)) |
| 2007 | dst_ops->negative_advice = xfrm_negative_advice; |
| 2008 | if (likely(dst_ops->link_failure == NULL)) |
| 2009 | dst_ops->link_failure = xfrm_link_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | if (likely(afinfo->garbage_collect == NULL)) |
| 2011 | afinfo->garbage_collect = __xfrm_garbage_collect; |
| 2012 | xfrm_policy_afinfo[afinfo->family] = afinfo; |
| 2013 | } |
Ingo Molnar | e959d81 | 2006-04-28 15:32:29 -0700 | [diff] [blame] | 2014 | write_unlock_bh(&xfrm_policy_afinfo_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | return err; |
| 2016 | } |
| 2017 | EXPORT_SYMBOL(xfrm_policy_register_afinfo); |
| 2018 | |
| 2019 | int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo) |
| 2020 | { |
| 2021 | int err = 0; |
| 2022 | if (unlikely(afinfo == NULL)) |
| 2023 | return -EINVAL; |
| 2024 | if (unlikely(afinfo->family >= NPROTO)) |
| 2025 | return -EAFNOSUPPORT; |
Ingo Molnar | e959d81 | 2006-04-28 15:32:29 -0700 | [diff] [blame] | 2026 | write_lock_bh(&xfrm_policy_afinfo_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) { |
| 2028 | if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo)) |
| 2029 | err = -EINVAL; |
| 2030 | else { |
| 2031 | struct dst_ops *dst_ops = afinfo->dst_ops; |
| 2032 | xfrm_policy_afinfo[afinfo->family] = NULL; |
| 2033 | dst_ops->kmem_cachep = NULL; |
| 2034 | dst_ops->check = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | dst_ops->negative_advice = NULL; |
| 2036 | dst_ops->link_failure = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | afinfo->garbage_collect = NULL; |
| 2038 | } |
| 2039 | } |
Ingo Molnar | e959d81 | 2006-04-28 15:32:29 -0700 | [diff] [blame] | 2040 | write_unlock_bh(&xfrm_policy_afinfo_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | return err; |
| 2042 | } |
| 2043 | EXPORT_SYMBOL(xfrm_policy_unregister_afinfo); |
| 2044 | |
| 2045 | static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family) |
| 2046 | { |
| 2047 | struct xfrm_policy_afinfo *afinfo; |
| 2048 | if (unlikely(family >= NPROTO)) |
| 2049 | return NULL; |
| 2050 | read_lock(&xfrm_policy_afinfo_lock); |
| 2051 | afinfo = xfrm_policy_afinfo[family]; |
Herbert Xu | 546be24 | 2006-05-27 23:03:58 -0700 | [diff] [blame] | 2052 | if (unlikely(!afinfo)) |
| 2053 | read_unlock(&xfrm_policy_afinfo_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | return afinfo; |
| 2055 | } |
| 2056 | |
| 2057 | static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo) |
| 2058 | { |
Herbert Xu | 546be24 | 2006-05-27 23:03:58 -0700 | [diff] [blame] | 2059 | read_unlock(&xfrm_policy_afinfo_lock); |
| 2060 | } |
| 2061 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr) |
| 2063 | { |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 2064 | struct net_device *dev = ptr; |
| 2065 | |
| 2066 | if (dev->nd_net != &init_net) |
| 2067 | return NOTIFY_DONE; |
| 2068 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | switch (event) { |
| 2070 | case NETDEV_DOWN: |
| 2071 | xfrm_flush_bundles(); |
| 2072 | } |
| 2073 | return NOTIFY_DONE; |
| 2074 | } |
| 2075 | |
| 2076 | static struct notifier_block xfrm_dev_notifier = { |
| 2077 | xfrm_dev_event, |
| 2078 | NULL, |
| 2079 | 0 |
| 2080 | }; |
| 2081 | |
| 2082 | static void __init xfrm_policy_init(void) |
| 2083 | { |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 2084 | unsigned int hmask, sz; |
| 2085 | int dir; |
| 2086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache", |
| 2088 | sizeof(struct xfrm_dst), |
Alexey Dobriyan | e5d679f | 2006-08-26 19:25:52 -0700 | [diff] [blame] | 2089 | 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2090 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 2092 | hmask = 8 - 1; |
| 2093 | sz = (hmask+1) * sizeof(struct hlist_head); |
| 2094 | |
David S. Miller | 44e36b4 | 2006-08-24 04:50:50 -0700 | [diff] [blame] | 2095 | xfrm_policy_byidx = xfrm_hash_alloc(sz); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 2096 | xfrm_idx_hmask = hmask; |
| 2097 | if (!xfrm_policy_byidx) |
| 2098 | panic("XFRM: failed to allocate byidx hash\n"); |
| 2099 | |
| 2100 | for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) { |
| 2101 | struct xfrm_policy_hash *htab; |
| 2102 | |
| 2103 | INIT_HLIST_HEAD(&xfrm_policy_inexact[dir]); |
| 2104 | |
| 2105 | htab = &xfrm_policy_bydst[dir]; |
David S. Miller | 44e36b4 | 2006-08-24 04:50:50 -0700 | [diff] [blame] | 2106 | htab->table = xfrm_hash_alloc(sz); |
David S. Miller | 2518c7c | 2006-08-24 04:45:07 -0700 | [diff] [blame] | 2107 | htab->hmask = hmask; |
| 2108 | if (!htab->table) |
| 2109 | panic("XFRM: failed to allocate bydst hash\n"); |
| 2110 | } |
| 2111 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 2112 | INIT_WORK(&xfrm_policy_gc_work, xfrm_policy_gc_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | register_netdevice_notifier(&xfrm_dev_notifier); |
| 2114 | } |
| 2115 | |
| 2116 | void __init xfrm_init(void) |
| 2117 | { |
| 2118 | xfrm_state_init(); |
| 2119 | xfrm_policy_init(); |
| 2120 | xfrm_input_init(); |
| 2121 | } |
| 2122 | |
Joy Latten | ab5f5e8 | 2007-09-17 11:51:22 -0700 | [diff] [blame] | 2123 | #ifdef CONFIG_AUDITSYSCALL |
| 2124 | static inline void xfrm_audit_common_policyinfo(struct xfrm_policy *xp, |
| 2125 | struct audit_buffer *audit_buf) |
| 2126 | { |
| 2127 | if (xp->security) |
| 2128 | audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s", |
| 2129 | xp->security->ctx_alg, xp->security->ctx_doi, |
| 2130 | xp->security->ctx_str); |
| 2131 | |
| 2132 | switch(xp->selector.family) { |
| 2133 | case AF_INET: |
| 2134 | audit_log_format(audit_buf, " src=%u.%u.%u.%u dst=%u.%u.%u.%u", |
| 2135 | NIPQUAD(xp->selector.saddr.a4), |
| 2136 | NIPQUAD(xp->selector.daddr.a4)); |
| 2137 | break; |
| 2138 | case AF_INET6: |
| 2139 | { |
| 2140 | struct in6_addr saddr6, daddr6; |
| 2141 | |
| 2142 | memcpy(&saddr6, xp->selector.saddr.a6, |
| 2143 | sizeof(struct in6_addr)); |
| 2144 | memcpy(&daddr6, xp->selector.daddr.a6, |
| 2145 | sizeof(struct in6_addr)); |
| 2146 | audit_log_format(audit_buf, |
| 2147 | " src=" NIP6_FMT " dst=" NIP6_FMT, |
| 2148 | NIP6(saddr6), NIP6(daddr6)); |
| 2149 | } |
| 2150 | break; |
| 2151 | } |
| 2152 | } |
| 2153 | |
| 2154 | void |
| 2155 | xfrm_audit_policy_add(struct xfrm_policy *xp, int result, u32 auid, u32 sid) |
| 2156 | { |
| 2157 | struct audit_buffer *audit_buf; |
| 2158 | extern int audit_enabled; |
| 2159 | |
| 2160 | if (audit_enabled == 0) |
| 2161 | return; |
| 2162 | audit_buf = xfrm_audit_start(sid, auid); |
| 2163 | if (audit_buf == NULL) |
| 2164 | return; |
| 2165 | audit_log_format(audit_buf, " op=SPD-add res=%u", result); |
| 2166 | xfrm_audit_common_policyinfo(xp, audit_buf); |
| 2167 | audit_log_end(audit_buf); |
| 2168 | } |
| 2169 | EXPORT_SYMBOL_GPL(xfrm_audit_policy_add); |
| 2170 | |
| 2171 | void |
| 2172 | xfrm_audit_policy_delete(struct xfrm_policy *xp, int result, u32 auid, u32 sid) |
| 2173 | { |
| 2174 | struct audit_buffer *audit_buf; |
| 2175 | extern int audit_enabled; |
| 2176 | |
| 2177 | if (audit_enabled == 0) |
| 2178 | return; |
| 2179 | audit_buf = xfrm_audit_start(sid, auid); |
| 2180 | if (audit_buf == NULL) |
| 2181 | return; |
| 2182 | audit_log_format(audit_buf, " op=SPD-delete res=%u", result); |
| 2183 | xfrm_audit_common_policyinfo(xp, audit_buf); |
| 2184 | audit_log_end(audit_buf); |
| 2185 | } |
| 2186 | EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete); |
| 2187 | #endif |
| 2188 | |
Shinta Sugimoto | 80c9aba | 2007-02-08 13:11:42 -0800 | [diff] [blame] | 2189 | #ifdef CONFIG_XFRM_MIGRATE |
| 2190 | static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp, |
| 2191 | struct xfrm_selector *sel_tgt) |
| 2192 | { |
| 2193 | if (sel_cmp->proto == IPSEC_ULPROTO_ANY) { |
| 2194 | if (sel_tgt->family == sel_cmp->family && |
| 2195 | xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr, |
YOSHIFUJI Hideaki | a716c11 | 2007-02-09 23:25:29 +0900 | [diff] [blame] | 2196 | sel_cmp->family) == 0 && |
Shinta Sugimoto | 80c9aba | 2007-02-08 13:11:42 -0800 | [diff] [blame] | 2197 | xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr, |
| 2198 | sel_cmp->family) == 0 && |
| 2199 | sel_tgt->prefixlen_d == sel_cmp->prefixlen_d && |
| 2200 | sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) { |
| 2201 | return 1; |
| 2202 | } |
| 2203 | } else { |
| 2204 | if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) { |
| 2205 | return 1; |
| 2206 | } |
| 2207 | } |
| 2208 | return 0; |
| 2209 | } |
| 2210 | |
| 2211 | static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel, |
| 2212 | u8 dir, u8 type) |
| 2213 | { |
| 2214 | struct xfrm_policy *pol, *ret = NULL; |
| 2215 | struct hlist_node *entry; |
| 2216 | struct hlist_head *chain; |
| 2217 | u32 priority = ~0U; |
| 2218 | |
| 2219 | read_lock_bh(&xfrm_policy_lock); |
| 2220 | chain = policy_hash_direct(&sel->daddr, &sel->saddr, sel->family, dir); |
| 2221 | hlist_for_each_entry(pol, entry, chain, bydst) { |
| 2222 | if (xfrm_migrate_selector_match(sel, &pol->selector) && |
| 2223 | pol->type == type) { |
| 2224 | ret = pol; |
| 2225 | priority = ret->priority; |
| 2226 | break; |
| 2227 | } |
| 2228 | } |
| 2229 | chain = &xfrm_policy_inexact[dir]; |
| 2230 | hlist_for_each_entry(pol, entry, chain, bydst) { |
| 2231 | if (xfrm_migrate_selector_match(sel, &pol->selector) && |
| 2232 | pol->type == type && |
| 2233 | pol->priority < priority) { |
| 2234 | ret = pol; |
| 2235 | break; |
| 2236 | } |
| 2237 | } |
| 2238 | |
| 2239 | if (ret) |
| 2240 | xfrm_pol_hold(ret); |
| 2241 | |
| 2242 | read_unlock_bh(&xfrm_policy_lock); |
| 2243 | |
| 2244 | return ret; |
| 2245 | } |
| 2246 | |
| 2247 | static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t) |
| 2248 | { |
| 2249 | int match = 0; |
| 2250 | |
| 2251 | if (t->mode == m->mode && t->id.proto == m->proto && |
| 2252 | (m->reqid == 0 || t->reqid == m->reqid)) { |
| 2253 | switch (t->mode) { |
| 2254 | case XFRM_MODE_TUNNEL: |
| 2255 | case XFRM_MODE_BEET: |
| 2256 | if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr, |
| 2257 | m->old_family) == 0 && |
| 2258 | xfrm_addr_cmp(&t->saddr, &m->old_saddr, |
| 2259 | m->old_family) == 0) { |
| 2260 | match = 1; |
| 2261 | } |
| 2262 | break; |
| 2263 | case XFRM_MODE_TRANSPORT: |
| 2264 | /* in case of transport mode, template does not store |
| 2265 | any IP addresses, hence we just compare mode and |
| 2266 | protocol */ |
| 2267 | match = 1; |
| 2268 | break; |
| 2269 | default: |
| 2270 | break; |
| 2271 | } |
| 2272 | } |
| 2273 | return match; |
| 2274 | } |
| 2275 | |
| 2276 | /* update endpoint address(es) of template(s) */ |
| 2277 | static int xfrm_policy_migrate(struct xfrm_policy *pol, |
| 2278 | struct xfrm_migrate *m, int num_migrate) |
| 2279 | { |
| 2280 | struct xfrm_migrate *mp; |
| 2281 | struct dst_entry *dst; |
| 2282 | int i, j, n = 0; |
| 2283 | |
| 2284 | write_lock_bh(&pol->lock); |
| 2285 | if (unlikely(pol->dead)) { |
| 2286 | /* target policy has been deleted */ |
| 2287 | write_unlock_bh(&pol->lock); |
| 2288 | return -ENOENT; |
| 2289 | } |
| 2290 | |
| 2291 | for (i = 0; i < pol->xfrm_nr; i++) { |
| 2292 | for (j = 0, mp = m; j < num_migrate; j++, mp++) { |
| 2293 | if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i])) |
| 2294 | continue; |
| 2295 | n++; |
Herbert Xu | 1bfcb10 | 2007-10-17 21:31:50 -0700 | [diff] [blame] | 2296 | if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL && |
| 2297 | pol->xfrm_vec[i].mode != XFRM_MODE_BEET) |
Shinta Sugimoto | 80c9aba | 2007-02-08 13:11:42 -0800 | [diff] [blame] | 2298 | continue; |
| 2299 | /* update endpoints */ |
| 2300 | memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr, |
| 2301 | sizeof(pol->xfrm_vec[i].id.daddr)); |
| 2302 | memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr, |
| 2303 | sizeof(pol->xfrm_vec[i].saddr)); |
| 2304 | pol->xfrm_vec[i].encap_family = mp->new_family; |
| 2305 | /* flush bundles */ |
| 2306 | while ((dst = pol->bundles) != NULL) { |
| 2307 | pol->bundles = dst->next; |
| 2308 | dst_free(dst); |
| 2309 | } |
| 2310 | } |
| 2311 | } |
| 2312 | |
| 2313 | write_unlock_bh(&pol->lock); |
| 2314 | |
| 2315 | if (!n) |
| 2316 | return -ENODATA; |
| 2317 | |
| 2318 | return 0; |
| 2319 | } |
| 2320 | |
| 2321 | static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate) |
| 2322 | { |
| 2323 | int i, j; |
| 2324 | |
| 2325 | if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH) |
| 2326 | return -EINVAL; |
| 2327 | |
| 2328 | for (i = 0; i < num_migrate; i++) { |
| 2329 | if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr, |
| 2330 | m[i].old_family) == 0) && |
| 2331 | (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr, |
| 2332 | m[i].old_family) == 0)) |
| 2333 | return -EINVAL; |
| 2334 | if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) || |
| 2335 | xfrm_addr_any(&m[i].new_saddr, m[i].new_family)) |
| 2336 | return -EINVAL; |
| 2337 | |
| 2338 | /* check if there is any duplicated entry */ |
| 2339 | for (j = i + 1; j < num_migrate; j++) { |
| 2340 | if (!memcmp(&m[i].old_daddr, &m[j].old_daddr, |
| 2341 | sizeof(m[i].old_daddr)) && |
| 2342 | !memcmp(&m[i].old_saddr, &m[j].old_saddr, |
| 2343 | sizeof(m[i].old_saddr)) && |
| 2344 | m[i].proto == m[j].proto && |
| 2345 | m[i].mode == m[j].mode && |
| 2346 | m[i].reqid == m[j].reqid && |
| 2347 | m[i].old_family == m[j].old_family) |
| 2348 | return -EINVAL; |
| 2349 | } |
| 2350 | } |
| 2351 | |
| 2352 | return 0; |
| 2353 | } |
| 2354 | |
| 2355 | int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type, |
| 2356 | struct xfrm_migrate *m, int num_migrate) |
| 2357 | { |
| 2358 | int i, err, nx_cur = 0, nx_new = 0; |
| 2359 | struct xfrm_policy *pol = NULL; |
| 2360 | struct xfrm_state *x, *xc; |
| 2361 | struct xfrm_state *x_cur[XFRM_MAX_DEPTH]; |
| 2362 | struct xfrm_state *x_new[XFRM_MAX_DEPTH]; |
| 2363 | struct xfrm_migrate *mp; |
| 2364 | |
| 2365 | if ((err = xfrm_migrate_check(m, num_migrate)) < 0) |
| 2366 | goto out; |
| 2367 | |
| 2368 | /* Stage 1 - find policy */ |
| 2369 | if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) { |
| 2370 | err = -ENOENT; |
| 2371 | goto out; |
| 2372 | } |
| 2373 | |
| 2374 | /* Stage 2 - find and update state(s) */ |
| 2375 | for (i = 0, mp = m; i < num_migrate; i++, mp++) { |
| 2376 | if ((x = xfrm_migrate_state_find(mp))) { |
| 2377 | x_cur[nx_cur] = x; |
| 2378 | nx_cur++; |
| 2379 | if ((xc = xfrm_state_migrate(x, mp))) { |
| 2380 | x_new[nx_new] = xc; |
| 2381 | nx_new++; |
| 2382 | } else { |
| 2383 | err = -ENODATA; |
| 2384 | goto restore_state; |
| 2385 | } |
| 2386 | } |
| 2387 | } |
| 2388 | |
| 2389 | /* Stage 3 - update policy */ |
| 2390 | if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0) |
| 2391 | goto restore_state; |
| 2392 | |
| 2393 | /* Stage 4 - delete old state(s) */ |
| 2394 | if (nx_cur) { |
| 2395 | xfrm_states_put(x_cur, nx_cur); |
| 2396 | xfrm_states_delete(x_cur, nx_cur); |
| 2397 | } |
| 2398 | |
| 2399 | /* Stage 5 - announce */ |
| 2400 | km_migrate(sel, dir, type, m, num_migrate); |
| 2401 | |
| 2402 | xfrm_pol_put(pol); |
| 2403 | |
| 2404 | return 0; |
| 2405 | out: |
| 2406 | return err; |
| 2407 | |
| 2408 | restore_state: |
| 2409 | if (pol) |
| 2410 | xfrm_pol_put(pol); |
| 2411 | if (nx_cur) |
| 2412 | xfrm_states_put(x_cur, nx_cur); |
| 2413 | if (nx_new) |
| 2414 | xfrm_states_delete(x_new, nx_new); |
| 2415 | |
| 2416 | return err; |
| 2417 | } |
David S. Miller | e610e67 | 2007-02-08 13:29:15 -0800 | [diff] [blame] | 2418 | EXPORT_SYMBOL(xfrm_migrate); |
Shinta Sugimoto | 80c9aba | 2007-02-08 13:11:42 -0800 | [diff] [blame] | 2419 | #endif |