blob: 88145e3348d05ea3b3f2b7b2a1f14193f993a223 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _NET_XFRM_H
2#define _NET_XFRM_H
3
Herbert Xuaabc9762005-05-03 16:27:10 -07004#include <linux/compiler.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -02005#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/xfrm.h>
7#include <linux/spinlock.h>
8#include <linux/list.h>
9#include <linux/skbuff.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020010#include <linux/socket.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/pfkeyv2.h>
Masahide NAKAMURA57947082006-09-22 15:06:24 -070012#include <linux/ipsec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/in6.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080014#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <net/sock.h>
17#include <net/dst.h>
18#include <net/route.h>
19#include <net/ipv6.h>
20#include <net/ip6_fib.h>
21
22#define XFRM_ALIGN8(len) (((len) + 7) & ~7)
Herbert Xub59f45d2006-05-27 23:05:54 -070023#define MODULE_ALIAS_XFRM_MODE(family, encap) \
24 MODULE_ALIAS("xfrm-mode-" __stringify(family) "-" __stringify(encap))
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -080026extern struct sock *xfrm_nl;
27extern u32 sysctl_xfrm_aevent_etime;
28extern u32 sysctl_xfrm_aevent_rseqth;
29
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080030extern struct mutex xfrm_cfg_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/* Organization of SPD aka "XFRM rules"
33 ------------------------------------
34
35 Basic objects:
36 - policy rule, struct xfrm_policy (=SPD entry)
37 - bundle of transformations, struct dst_entry == struct xfrm_dst (=SA bundle)
38 - instance of a transformer, struct xfrm_state (=SA)
39 - template to clone xfrm_state, struct xfrm_tmpl
40
41 SPD is plain linear list of xfrm_policy rules, ordered by priority.
42 (To be compatible with existing pfkeyv2 implementations,
43 many rules with priority of 0x7fffffff are allowed to exist and
44 such rules are ordered in an unpredictable way, thanks to bsd folks.)
45
46 Lookup is plain linear search until the first match with selector.
47
48 If "action" is "block", then we prohibit the flow, otherwise:
49 if "xfrms_nr" is zero, the flow passes untransformed. Otherwise,
50 policy entry has list of up to XFRM_MAX_DEPTH transformations,
51 described by templates xfrm_tmpl. Each template is resolved
52 to a complete xfrm_state (see below) and we pack bundle of transformations
53 to a dst_entry returned to requestor.
54
55 dst -. xfrm .-> xfrm_state #1
56 |---. child .-> dst -. xfrm .-> xfrm_state #2
57 |---. child .-> dst -. xfrm .-> xfrm_state #3
58 |---. child .-> NULL
59
60 Bundles are cached at xrfm_policy struct (field ->bundles).
61
62
63 Resolution of xrfm_tmpl
64 -----------------------
65 Template contains:
66 1. ->mode Mode: transport or tunnel
67 2. ->id.proto Protocol: AH/ESP/IPCOMP
68 3. ->id.daddr Remote tunnel endpoint, ignored for transport mode.
69 Q: allow to resolve security gateway?
70 4. ->id.spi If not zero, static SPI.
71 5. ->saddr Local tunnel endpoint, ignored for transport mode.
72 6. ->algos List of allowed algos. Plain bitmask now.
73 Q: ealgos, aalgos, calgos. What a mess...
74 7. ->share Sharing mode.
75 Q: how to implement private sharing mode? To add struct sock* to
76 flow id?
77
78 Having this template we search through SAD searching for entries
79 with appropriate mode/proto/algo, permitted by selector.
80 If no appropriate entry found, it is requested from key manager.
81
82 PROBLEMS:
83 Q: How to find all the bundles referring to a physical path for
84 PMTU discovery? Seems, dst should contain list of all parents...
85 and enter to infinite locking hierarchy disaster.
86 No! It is easier, we will not search for them, let them find us.
87 We add genid to each dst plus pointer to genid of raw IP route,
88 pmtu disc will update pmtu on raw IP route and increase its genid.
89 dst_check() will see this for top level and trigger resyncing
90 metrics. Plus, it will be made via sk->sk_dst_cache. Solved.
91 */
92
93/* Full description of state of transformer. */
94struct xfrm_state
95{
96 /* Note: bydst is re-used during gc */
97 struct list_head bydst;
Masahide NAKAMURA6c44e6b2006-08-23 17:53:57 -070098 struct list_head bysrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 struct list_head byspi;
100
101 atomic_t refcnt;
102 spinlock_t lock;
103
104 struct xfrm_id id;
105 struct xfrm_selector sel;
106
107 /* Key manger bits */
108 struct {
109 u8 state;
110 u8 dying;
111 u32 seq;
112 } km;
113
114 /* Parameters of this state. */
115 struct {
116 u32 reqid;
117 u8 mode;
118 u8 replay_window;
119 u8 aalgo, ealgo, calgo;
120 u8 flags;
121 u16 family;
122 xfrm_address_t saddr;
123 int header_len;
124 int trailer_len;
125 } props;
126
127 struct xfrm_lifetime_cfg lft;
128
129 /* Data for transformer */
130 struct xfrm_algo *aalg;
131 struct xfrm_algo *ealg;
132 struct xfrm_algo *calg;
133
134 /* Data for encapsulator */
135 struct xfrm_encap_tmpl *encap;
136
137 /* IPComp needs an IPIP tunnel for handling uncompressed packets */
138 struct xfrm_state *tunnel;
139
140 /* If a tunnel, number of users + 1 */
141 atomic_t tunnel_users;
142
143 /* State for replay detection */
144 struct xfrm_replay_state replay;
145
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800146 /* Replay detection state at the time we sent the last notification */
147 struct xfrm_replay_state preplay;
148
Jamal Hadi Salim27170962006-04-14 15:03:05 -0700149 /* internal flag that only holds state for delayed aevent at the
150 * moment
151 */
152 u32 xflags;
153
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800154 /* Replay detection notification settings */
155 u32 replay_maxage;
156 u32 replay_maxdiff;
157
158 /* Replay detection notification timer */
159 struct timer_list rtimer;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 /* Statistics */
162 struct xfrm_stats stats;
163
164 struct xfrm_lifetime_cur curlft;
165 struct timer_list timer;
166
167 /* Reference to data common to all the instances of this
168 * transformer. */
169 struct xfrm_type *type;
Herbert Xub59f45d2006-05-27 23:05:54 -0700170 struct xfrm_mode *mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Trent Jaegerdf718372005-12-13 23:12:27 -0800172 /* Security context */
173 struct xfrm_sec_ctx *security;
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /* Private data of this transformer, format is opaque,
176 * interpreted by xfrm_type methods. */
177 void *data;
178};
179
Jamal Hadi Salim27170962006-04-14 15:03:05 -0700180/* xflags - make enum if more show up */
181#define XFRM_TIME_DEFER 1
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183enum {
184 XFRM_STATE_VOID,
185 XFRM_STATE_ACQ,
186 XFRM_STATE_VALID,
187 XFRM_STATE_ERROR,
188 XFRM_STATE_EXPIRED,
189 XFRM_STATE_DEAD
190};
191
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700192/* callback structure passed from either netlink or pfkey */
193struct km_event
194{
Herbert Xubf088672005-06-18 22:44:00 -0700195 union {
196 u32 hard;
197 u32 proto;
198 u32 byid;
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800199 u32 aevent;
Herbert Xubf088672005-06-18 22:44:00 -0700200 } data;
201
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700202 u32 seq;
203 u32 pid;
204 u32 event;
205};
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207struct xfrm_type;
208struct xfrm_dst;
209struct xfrm_policy_afinfo {
210 unsigned short family;
Herbert Xu73654d62006-05-27 23:06:33 -0700211 struct xfrm_type *type_map[IPPROTO_MAX];
Herbert Xub59f45d2006-05-27 23:05:54 -0700212 struct xfrm_mode *mode_map[XFRM_MODE_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 struct dst_ops *dst_ops;
214 void (*garbage_collect)(void);
215 int (*dst_lookup)(struct xfrm_dst **dst, struct flowi *fl);
216 struct dst_entry *(*find_bundle)(struct flowi *fl, struct xfrm_policy *policy);
217 int (*bundle_create)(struct xfrm_policy *policy,
218 struct xfrm_state **xfrm,
219 int nx,
220 struct flowi *fl,
221 struct dst_entry **dst_p);
222 void (*decode_session)(struct sk_buff *skb,
223 struct flowi *fl);
224};
225
226extern int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo);
227extern int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700228extern void km_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c);
229extern void km_state_notify(struct xfrm_state *x, struct km_event *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#define XFRM_ACQ_EXPIRES 30
231
232struct xfrm_tmpl;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -0800233extern int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -0800234extern void km_state_expired(struct xfrm_state *x, int hard, u32 pid);
235extern int __xfrm_state_delete(struct xfrm_state *x);
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237struct xfrm_state_afinfo {
238 unsigned short family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 struct list_head *state_bydst;
Masahide NAKAMURA6c44e6b2006-08-23 17:53:57 -0700240 struct list_head *state_bysrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 struct list_head *state_byspi;
Herbert Xud094cd82005-06-20 13:19:41 -0700242 int (*init_flags)(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 void (*init_tempsel)(struct xfrm_state *x, struct flowi *fl,
244 struct xfrm_tmpl *tmpl,
245 xfrm_address_t *daddr, xfrm_address_t *saddr);
246 struct xfrm_state *(*state_lookup)(xfrm_address_t *daddr, u32 spi, u8 proto);
247 struct xfrm_state *(*find_acq)(u8 mode, u32 reqid, u8 proto,
248 xfrm_address_t *daddr, xfrm_address_t *saddr,
249 int create);
250};
251
252extern int xfrm_state_register_afinfo(struct xfrm_state_afinfo *afinfo);
253extern int xfrm_state_unregister_afinfo(struct xfrm_state_afinfo *afinfo);
254
255extern void xfrm_state_delete_tunnel(struct xfrm_state *x);
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257struct xfrm_type
258{
259 char *description;
260 struct module *owner;
261 __u8 proto;
262
Herbert Xu72cb6962005-06-20 13:18:08 -0700263 int (*init_state)(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 void (*destructor)(struct xfrm_state *);
Herbert Xue6956332006-04-01 00:52:46 -0800265 int (*input)(struct xfrm_state *, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int (*output)(struct xfrm_state *, struct sk_buff *pskb);
267 /* Estimate maximal size of result of transformation of a dgram */
268 u32 (*get_max_size)(struct xfrm_state *, int size);
269};
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271extern int xfrm_register_type(struct xfrm_type *type, unsigned short family);
272extern int xfrm_unregister_type(struct xfrm_type *type, unsigned short family);
273extern struct xfrm_type *xfrm_get_type(u8 proto, unsigned short family);
274extern void xfrm_put_type(struct xfrm_type *type);
275
Herbert Xub59f45d2006-05-27 23:05:54 -0700276struct xfrm_mode {
277 int (*input)(struct xfrm_state *x, struct sk_buff *skb);
278 int (*output)(struct sk_buff *skb);
279
280 struct module *owner;
281 unsigned int encap;
282};
283
284extern int xfrm_register_mode(struct xfrm_mode *mode, int family);
285extern int xfrm_unregister_mode(struct xfrm_mode *mode, int family);
286extern struct xfrm_mode *xfrm_get_mode(unsigned int encap, int family);
287extern void xfrm_put_mode(struct xfrm_mode *mode);
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289struct xfrm_tmpl
290{
291/* id in template is interpreted as:
292 * daddr - destination of tunnel, may be zero for transport mode.
293 * spi - zero to acquire spi. Not zero if spi is static, then
294 * daddr must be fixed too.
295 * proto - AH/ESP/IPCOMP
296 */
297 struct xfrm_id id;
298
299/* Source address of tunnel. Ignored, if it is not a tunnel. */
300 xfrm_address_t saddr;
301
302 __u32 reqid;
303
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700304/* Mode: transport, tunnel etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 __u8 mode;
306
307/* Sharing mode: unique, this session only, this user only etc. */
308 __u8 share;
309
310/* May skip this transfomration if no SA is found */
311 __u8 optional;
312
313/* Bit mask of algos allowed for acquisition */
314 __u32 aalgos;
315 __u32 ealgos;
316 __u32 calgos;
317};
318
Masahide NAKAMURA622dc822006-08-23 17:52:01 -0700319#define XFRM_MAX_DEPTH 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321struct xfrm_policy
322{
323 struct xfrm_policy *next;
324 struct list_head list;
325
326 /* This lock only affects elements except for entry. */
327 rwlock_t lock;
328 atomic_t refcnt;
329 struct timer_list timer;
330
331 u32 priority;
332 u32 index;
333 struct xfrm_selector selector;
334 struct xfrm_lifetime_cfg lft;
335 struct xfrm_lifetime_cur curlft;
336 struct dst_entry *bundles;
337 __u16 family;
338 __u8 action;
339 __u8 flags;
340 __u8 dead;
341 __u8 xfrm_nr;
Trent Jaegerdf718372005-12-13 23:12:27 -0800342 struct xfrm_sec_ctx *security;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 struct xfrm_tmpl xfrm_vec[XFRM_MAX_DEPTH];
344};
345
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800346#define XFRM_KM_TIMEOUT 30
347/* which seqno */
348#define XFRM_REPLAY_SEQ 1
349#define XFRM_REPLAY_OSEQ 2
350#define XFRM_REPLAY_SEQ_MASK 3
351/* what happened */
352#define XFRM_REPLAY_UPDATE XFRM_AE_CR
353#define XFRM_REPLAY_TIMEOUT XFRM_AE_CE
354
355/* default aevent timeout in units of 100ms */
356#define XFRM_AE_ETIME 10
357/* Async Event timer multiplier */
358#define XFRM_AE_ETH_M 10
359/* default seq threshold size */
360#define XFRM_AE_SEQT_SIZE 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362struct xfrm_mgr
363{
364 struct list_head list;
365 char *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700366 int (*notify)(struct xfrm_state *x, struct km_event *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 int (*acquire)(struct xfrm_state *x, struct xfrm_tmpl *, struct xfrm_policy *xp, int dir);
Venkat Yekkiralacb969f02006-07-24 23:32:20 -0700368 struct xfrm_policy *(*compile_policy)(struct sock *sk, int opt, u8 *data, int len, int *dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 int (*new_mapping)(struct xfrm_state *x, xfrm_address_t *ipaddr, u16 sport);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700370 int (*notify_policy)(struct xfrm_policy *x, int dir, struct km_event *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371};
372
373extern int xfrm_register_km(struct xfrm_mgr *km);
374extern int xfrm_unregister_km(struct xfrm_mgr *km);
375
376
377extern struct xfrm_policy *xfrm_policy_list[XFRM_POLICY_MAX*2];
378
379static inline void xfrm_pol_hold(struct xfrm_policy *policy)
380{
381 if (likely(policy != NULL))
382 atomic_inc(&policy->refcnt);
383}
384
385extern void __xfrm_policy_destroy(struct xfrm_policy *policy);
386
387static inline void xfrm_pol_put(struct xfrm_policy *policy)
388{
389 if (atomic_dec_and_test(&policy->refcnt))
390 __xfrm_policy_destroy(policy);
391}
392
393#define XFRM_DST_HSIZE 1024
394
395static __inline__
396unsigned __xfrm4_dst_hash(xfrm_address_t *addr)
397{
398 unsigned h;
399 h = ntohl(addr->a4);
400 h = (h ^ (h>>16)) % XFRM_DST_HSIZE;
401 return h;
402}
403
404static __inline__
405unsigned __xfrm6_dst_hash(xfrm_address_t *addr)
406{
407 unsigned h;
408 h = ntohl(addr->a6[2]^addr->a6[3]);
409 h = (h ^ (h>>16)) % XFRM_DST_HSIZE;
410 return h;
411}
412
413static __inline__
414unsigned xfrm_dst_hash(xfrm_address_t *addr, unsigned short family)
415{
416 switch (family) {
417 case AF_INET:
418 return __xfrm4_dst_hash(addr);
419 case AF_INET6:
420 return __xfrm6_dst_hash(addr);
421 }
422 return 0;
423}
424
425static __inline__
Masahide NAKAMURA6c44e6b2006-08-23 17:53:57 -0700426unsigned __xfrm4_src_hash(xfrm_address_t *addr)
427{
428 return __xfrm4_dst_hash(addr);
429}
430
431static __inline__
432unsigned __xfrm6_src_hash(xfrm_address_t *addr)
433{
434 return __xfrm6_dst_hash(addr);
435}
436
437static __inline__
438unsigned xfrm_src_hash(xfrm_address_t *addr, unsigned short family)
439{
440 switch (family) {
441 case AF_INET:
442 return __xfrm4_src_hash(addr);
443 case AF_INET6:
444 return __xfrm6_src_hash(addr);
445 }
446 return 0;
447}
448
449static __inline__
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450unsigned __xfrm4_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto)
451{
452 unsigned h;
453 h = ntohl(addr->a4^spi^proto);
454 h = (h ^ (h>>10) ^ (h>>20)) % XFRM_DST_HSIZE;
455 return h;
456}
457
458static __inline__
459unsigned __xfrm6_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto)
460{
461 unsigned h;
462 h = ntohl(addr->a6[2]^addr->a6[3]^spi^proto);
463 h = (h ^ (h>>10) ^ (h>>20)) % XFRM_DST_HSIZE;
464 return h;
465}
466
467static __inline__
468unsigned xfrm_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto, unsigned short family)
469{
470 switch (family) {
471 case AF_INET:
472 return __xfrm4_spi_hash(addr, spi, proto);
473 case AF_INET6:
474 return __xfrm6_spi_hash(addr, spi, proto);
475 }
476 return 0; /*XXX*/
477}
478
479extern void __xfrm_state_destroy(struct xfrm_state *);
480
Herbert Xu21380b82006-02-22 14:47:13 -0800481static inline void __xfrm_state_put(struct xfrm_state *x)
482{
483 atomic_dec(&x->refcnt);
484}
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486static inline void xfrm_state_put(struct xfrm_state *x)
487{
488 if (atomic_dec_and_test(&x->refcnt))
489 __xfrm_state_destroy(x);
490}
491
492static inline void xfrm_state_hold(struct xfrm_state *x)
493{
494 atomic_inc(&x->refcnt);
495}
496
497static __inline__ int addr_match(void *token1, void *token2, int prefixlen)
498{
499 __u32 *a1 = token1;
500 __u32 *a2 = token2;
501 int pdw;
502 int pbi;
503
504 pdw = prefixlen >> 5; /* num of whole __u32 in prefix */
505 pbi = prefixlen & 0x1f; /* num of bits in incomplete u32 in prefix */
506
507 if (pdw)
508 if (memcmp(a1, a2, pdw << 2))
509 return 0;
510
511 if (pbi) {
512 __u32 mask;
513
514 mask = htonl((0xffffffff) << (32 - pbi));
515
516 if ((a1[pdw] ^ a2[pdw]) & mask)
517 return 0;
518 }
519
520 return 1;
521}
522
523static __inline__
524u16 xfrm_flowi_sport(struct flowi *fl)
525{
526 u16 port;
527 switch(fl->proto) {
528 case IPPROTO_TCP:
529 case IPPROTO_UDP:
530 case IPPROTO_SCTP:
531 port = fl->fl_ip_sport;
532 break;
533 case IPPROTO_ICMP:
534 case IPPROTO_ICMPV6:
535 port = htons(fl->fl_icmp_type);
536 break;
537 default:
538 port = 0; /*XXX*/
539 }
540 return port;
541}
542
543static __inline__
544u16 xfrm_flowi_dport(struct flowi *fl)
545{
546 u16 port;
547 switch(fl->proto) {
548 case IPPROTO_TCP:
549 case IPPROTO_UDP:
550 case IPPROTO_SCTP:
551 port = fl->fl_ip_dport;
552 break;
553 case IPPROTO_ICMP:
554 case IPPROTO_ICMPV6:
555 port = htons(fl->fl_icmp_code);
556 break;
557 default:
558 port = 0; /*XXX*/
559 }
560 return port;
561}
562
563static inline int
564__xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl)
565{
566 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
567 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
568 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
569 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
570 (fl->proto == sel->proto || !sel->proto) &&
571 (fl->oif == sel->ifindex || !sel->ifindex);
572}
573
574static inline int
575__xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl)
576{
577 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
578 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
579 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
580 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
581 (fl->proto == sel->proto || !sel->proto) &&
582 (fl->oif == sel->ifindex || !sel->ifindex);
583}
584
585static inline int
586xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl,
587 unsigned short family)
588{
589 switch (family) {
590 case AF_INET:
591 return __xfrm4_selector_match(sel, fl);
592 case AF_INET6:
593 return __xfrm6_selector_match(sel, fl);
594 }
595 return 0;
596}
597
Trent Jaegerdf718372005-12-13 23:12:27 -0800598#ifdef CONFIG_SECURITY_NETWORK_XFRM
599/* If neither has a context --> match
600 * Otherwise, both must have a context and the sids, doi, alg must match
601 */
602static inline int xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2)
603{
604 return ((!s1 && !s2) ||
605 (s1 && s2 &&
606 (s1->ctx_sid == s2->ctx_sid) &&
607 (s1->ctx_doi == s2->ctx_doi) &&
608 (s1->ctx_alg == s2->ctx_alg)));
609}
610#else
611static inline int xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2)
612{
613 return 1;
614}
615#endif
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/* A struct encoding bundle of transformations to apply to some set of flow.
618 *
619 * dst->child points to the next element of bundle.
620 * dst->xfrm points to an instanse of transformer.
621 *
622 * Due to unfortunate limitations of current routing cache, which we
623 * have no time to fix, it mirrors struct rtable and bound to the same
624 * routing key, including saddr,daddr. However, we can have many of
625 * bundles differing by session id. All the bundles grow from a parent
626 * policy rule.
627 */
628struct xfrm_dst
629{
630 union {
631 struct xfrm_dst *next;
632 struct dst_entry dst;
633 struct rtable rt;
634 struct rt6_info rt6;
635 } u;
636 struct dst_entry *route;
637 u32 route_mtu_cached;
638 u32 child_mtu_cached;
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -0700639 u32 route_cookie;
640 u32 path_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641};
642
Herbert Xuaabc9762005-05-03 16:27:10 -0700643static inline void xfrm_dst_destroy(struct xfrm_dst *xdst)
644{
645 dst_release(xdst->route);
646 if (likely(xdst->u.dst.xfrm))
647 xfrm_state_put(xdst->u.dst.xfrm);
648}
649
650extern void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev);
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652struct sec_path
653{
654 atomic_t refcnt;
655 int len;
Herbert Xudbe5b4a2006-04-01 00:54:16 -0800656 struct xfrm_state *xvec[XFRM_MAX_DEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657};
658
659static inline struct sec_path *
660secpath_get(struct sec_path *sp)
661{
662 if (sp)
663 atomic_inc(&sp->refcnt);
664 return sp;
665}
666
667extern void __secpath_destroy(struct sec_path *sp);
668
669static inline void
670secpath_put(struct sec_path *sp)
671{
672 if (sp && atomic_dec_and_test(&sp->refcnt))
673 __secpath_destroy(sp);
674}
675
676extern struct sec_path *secpath_dup(struct sec_path *src);
677
678static inline void
679secpath_reset(struct sk_buff *skb)
680{
681#ifdef CONFIG_XFRM
682 secpath_put(skb->sp);
683 skb->sp = NULL;
684#endif
685}
686
687static inline int
688__xfrm4_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x)
689{
690 return (tmpl->saddr.a4 &&
691 tmpl->saddr.a4 != x->props.saddr.a4);
692}
693
694static inline int
695__xfrm6_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x)
696{
697 return (!ipv6_addr_any((struct in6_addr*)&tmpl->saddr) &&
698 ipv6_addr_cmp((struct in6_addr *)&tmpl->saddr, (struct in6_addr*)&x->props.saddr));
699}
700
701static inline int
702xfrm_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x, unsigned short family)
703{
704 switch (family) {
705 case AF_INET:
706 return __xfrm4_state_addr_cmp(tmpl, x);
707 case AF_INET6:
708 return __xfrm6_state_addr_cmp(tmpl, x);
709 }
710 return !0;
711}
712
713#ifdef CONFIG_XFRM
714
715extern int __xfrm_policy_check(struct sock *, int dir, struct sk_buff *skb, unsigned short family);
716
717static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family)
718{
719 if (sk && sk->sk_policy[XFRM_POLICY_IN])
720 return __xfrm_policy_check(sk, dir, skb, family);
721
722 return (!xfrm_policy_list[dir] && !skb->sp) ||
723 (skb->dst->flags & DST_NOPOLICY) ||
724 __xfrm_policy_check(sk, dir, skb, family);
725}
726
727static inline int xfrm4_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
728{
729 return xfrm_policy_check(sk, dir, skb, AF_INET);
730}
731
732static inline int xfrm6_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
733{
734 return xfrm_policy_check(sk, dir, skb, AF_INET6);
735}
736
Patrick McHardy3e3850e2006-01-06 23:04:54 -0800737extern int xfrm_decode_session(struct sk_buff *skb, struct flowi *fl, unsigned short family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738extern int __xfrm_route_forward(struct sk_buff *skb, unsigned short family);
739
740static inline int xfrm_route_forward(struct sk_buff *skb, unsigned short family)
741{
742 return !xfrm_policy_list[XFRM_POLICY_OUT] ||
743 (skb->dst->flags & DST_NOXFRM) ||
744 __xfrm_route_forward(skb, family);
745}
746
747static inline int xfrm4_route_forward(struct sk_buff *skb)
748{
749 return xfrm_route_forward(skb, AF_INET);
750}
751
752static inline int xfrm6_route_forward(struct sk_buff *skb)
753{
754 return xfrm_route_forward(skb, AF_INET6);
755}
756
757extern int __xfrm_sk_clone_policy(struct sock *sk);
758
759static inline int xfrm_sk_clone_policy(struct sock *sk)
760{
761 if (unlikely(sk->sk_policy[0] || sk->sk_policy[1]))
762 return __xfrm_sk_clone_policy(sk);
763 return 0;
764}
765
Herbert Xu4666faa2005-06-18 22:43:22 -0700766extern int xfrm_policy_delete(struct xfrm_policy *pol, int dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768static inline void xfrm_sk_free_policy(struct sock *sk)
769{
770 if (unlikely(sk->sk_policy[0] != NULL)) {
771 xfrm_policy_delete(sk->sk_policy[0], XFRM_POLICY_MAX);
772 sk->sk_policy[0] = NULL;
773 }
774 if (unlikely(sk->sk_policy[1] != NULL)) {
775 xfrm_policy_delete(sk->sk_policy[1], XFRM_POLICY_MAX+1);
776 sk->sk_policy[1] = NULL;
777 }
778}
779
780#else
781
782static inline void xfrm_sk_free_policy(struct sock *sk) {}
783static inline int xfrm_sk_clone_policy(struct sock *sk) { return 0; }
784static inline int xfrm6_route_forward(struct sk_buff *skb) { return 1; }
785static inline int xfrm4_route_forward(struct sk_buff *skb) { return 1; }
786static inline int xfrm6_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
787{
788 return 1;
789}
790static inline int xfrm4_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
791{
792 return 1;
793}
794static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family)
795{
796 return 1;
797}
798#endif
799
800static __inline__
801xfrm_address_t *xfrm_flowi_daddr(struct flowi *fl, unsigned short family)
802{
803 switch (family){
804 case AF_INET:
805 return (xfrm_address_t *)&fl->fl4_dst;
806 case AF_INET6:
807 return (xfrm_address_t *)&fl->fl6_dst;
808 }
809 return NULL;
810}
811
812static __inline__
813xfrm_address_t *xfrm_flowi_saddr(struct flowi *fl, unsigned short family)
814{
815 switch (family){
816 case AF_INET:
817 return (xfrm_address_t *)&fl->fl4_src;
818 case AF_INET6:
819 return (xfrm_address_t *)&fl->fl6_src;
820 }
821 return NULL;
822}
823
824static __inline__ int
825__xfrm4_state_addr_check(struct xfrm_state *x,
826 xfrm_address_t *daddr, xfrm_address_t *saddr)
827{
828 if (daddr->a4 == x->id.daddr.a4 &&
829 (saddr->a4 == x->props.saddr.a4 || !saddr->a4 || !x->props.saddr.a4))
830 return 1;
831 return 0;
832}
833
834static __inline__ int
835__xfrm6_state_addr_check(struct xfrm_state *x,
836 xfrm_address_t *daddr, xfrm_address_t *saddr)
837{
838 if (!ipv6_addr_cmp((struct in6_addr *)daddr, (struct in6_addr *)&x->id.daddr) &&
839 (!ipv6_addr_cmp((struct in6_addr *)saddr, (struct in6_addr *)&x->props.saddr)||
840 ipv6_addr_any((struct in6_addr *)saddr) ||
841 ipv6_addr_any((struct in6_addr *)&x->props.saddr)))
842 return 1;
843 return 0;
844}
845
846static __inline__ int
847xfrm_state_addr_check(struct xfrm_state *x,
848 xfrm_address_t *daddr, xfrm_address_t *saddr,
849 unsigned short family)
850{
851 switch (family) {
852 case AF_INET:
853 return __xfrm4_state_addr_check(x, daddr, saddr);
854 case AF_INET6:
855 return __xfrm6_state_addr_check(x, daddr, saddr);
856 }
857 return 0;
858}
859
860static inline int xfrm_state_kern(struct xfrm_state *x)
861{
862 return atomic_read(&x->tunnel_users);
863}
864
Masahide NAKAMURA57947082006-09-22 15:06:24 -0700865static inline int xfrm_id_proto_match(u8 proto, u8 userproto)
866{
Masahide NAKAMURAdc00a522006-08-23 17:49:52 -0700867 return (!userproto || proto == userproto ||
868 (userproto == IPSEC_PROTO_ANY && (proto == IPPROTO_AH ||
869 proto == IPPROTO_ESP ||
870 proto == IPPROTO_COMP)));
Masahide NAKAMURA57947082006-09-22 15:06:24 -0700871}
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873/*
874 * xfrm algorithm information
875 */
876struct xfrm_algo_auth_info {
877 u16 icv_truncbits;
878 u16 icv_fullbits;
879};
880
881struct xfrm_algo_encr_info {
882 u16 blockbits;
883 u16 defkeybits;
884};
885
886struct xfrm_algo_comp_info {
887 u16 threshold;
888};
889
890struct xfrm_algo_desc {
891 char *name;
Herbert Xu04ff1262006-08-13 08:50:00 +1000892 char *compat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 u8 available:1;
894 union {
895 struct xfrm_algo_auth_info auth;
896 struct xfrm_algo_encr_info encr;
897 struct xfrm_algo_comp_info comp;
898 } uinfo;
899 struct sadb_alg desc;
900};
901
902/* XFRM tunnel handlers. */
903struct xfrm_tunnel {
904 int (*handler)(struct sk_buff *skb);
Herbert Xud2acc342006-03-28 01:12:13 -0800905 int (*err_handler)(struct sk_buff *skb, __u32 info);
906
907 struct xfrm_tunnel *next;
908 int priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909};
910
911struct xfrm6_tunnel {
Herbert Xud2acc342006-03-28 01:12:13 -0800912 int (*handler)(struct sk_buff *skb);
913 int (*err_handler)(struct sk_buff *skb, struct inet6_skb_parm *opt,
914 int type, int code, int offset, __u32 info);
915
916 struct xfrm6_tunnel *next;
917 int priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918};
919
920extern void xfrm_init(void);
921extern void xfrm4_init(void);
922extern void xfrm6_init(void);
923extern void xfrm6_fini(void);
924extern void xfrm_state_init(void);
925extern void xfrm4_state_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926extern void xfrm6_state_init(void);
927extern void xfrm6_state_fini(void);
928
929extern int xfrm_state_walk(u8 proto, int (*func)(struct xfrm_state *, int, void*), void *);
930extern struct xfrm_state *xfrm_state_alloc(void);
931extern struct xfrm_state *xfrm_state_find(xfrm_address_t *daddr, xfrm_address_t *saddr,
932 struct flowi *fl, struct xfrm_tmpl *tmpl,
933 struct xfrm_policy *pol, int *err,
934 unsigned short family);
935extern int xfrm_state_check_expire(struct xfrm_state *x);
936extern void xfrm_state_insert(struct xfrm_state *x);
937extern int xfrm_state_add(struct xfrm_state *x);
938extern int xfrm_state_update(struct xfrm_state *x);
939extern struct xfrm_state *xfrm_state_lookup(xfrm_address_t *daddr, u32 spi, u8 proto, unsigned short family);
940extern struct xfrm_state *xfrm_find_acq_byseq(u32 seq);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700941extern int xfrm_state_delete(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942extern void xfrm_state_flush(u8 proto);
943extern int xfrm_replay_check(struct xfrm_state *x, u32 seq);
944extern void xfrm_replay_advance(struct xfrm_state *x, u32 seq);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800945extern void xfrm_replay_notify(struct xfrm_state *x, int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946extern int xfrm_state_check(struct xfrm_state *x, struct sk_buff *skb);
947extern int xfrm_state_mtu(struct xfrm_state *x, int mtu);
Herbert Xu72cb6962005-06-20 13:18:08 -0700948extern int xfrm_init_state(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949extern int xfrm4_rcv(struct sk_buff *skb);
950extern int xfrm4_output(struct sk_buff *skb);
951extern int xfrm4_tunnel_register(struct xfrm_tunnel *handler);
952extern int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler);
Herbert Xud2acc342006-03-28 01:12:13 -0800953extern int xfrm6_rcv_spi(struct sk_buff *skb, u32 spi);
Patrick McHardy951dbc82006-01-06 23:02:34 -0800954extern int xfrm6_rcv(struct sk_buff **pskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955extern int xfrm6_tunnel_register(struct xfrm6_tunnel *handler);
956extern int xfrm6_tunnel_deregister(struct xfrm6_tunnel *handler);
957extern u32 xfrm6_tunnel_alloc_spi(xfrm_address_t *saddr);
958extern void xfrm6_tunnel_free_spi(xfrm_address_t *saddr);
959extern u32 xfrm6_tunnel_spi_lookup(xfrm_address_t *saddr);
960extern int xfrm6_output(struct sk_buff *skb);
961
962#ifdef CONFIG_XFRM
963extern int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type);
964extern int xfrm_user_policy(struct sock *sk, int optname, u8 __user *optval, int optlen);
965extern int xfrm_dst_lookup(struct xfrm_dst **dst, struct flowi *fl, unsigned short family);
966#else
967static inline int xfrm_user_policy(struct sock *sk, int optname, u8 __user *optval, int optlen)
968{
969 return -ENOPROTOOPT;
970}
971
972static inline int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type)
973{
974 /* should not happen */
975 kfree_skb(skb);
976 return 0;
977}
978static inline int xfrm_dst_lookup(struct xfrm_dst **dst, struct flowi *fl, unsigned short family)
979{
980 return -EINVAL;
981}
982#endif
983
Al Virodd0fc662005-10-07 07:46:04 +0100984struct xfrm_policy *xfrm_policy_alloc(gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985extern int xfrm_policy_walk(int (*func)(struct xfrm_policy *, int, int, void*), void *);
986int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl);
Trent Jaegerdf718372005-12-13 23:12:27 -0800987struct xfrm_policy *xfrm_policy_bysel_ctx(int dir, struct xfrm_selector *sel,
988 struct xfrm_sec_ctx *ctx, int delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989struct xfrm_policy *xfrm_policy_byid(int dir, u32 id, int delete);
990void xfrm_policy_flush(void);
991u32 xfrm_get_acqseq(void);
992void xfrm_alloc_spi(struct xfrm_state *x, u32 minspi, u32 maxspi);
993struct xfrm_state * xfrm_find_acq(u8 mode, u32 reqid, u8 proto,
994 xfrm_address_t *daddr, xfrm_address_t *saddr,
995 int create, unsigned short family);
996extern void xfrm_policy_flush(void);
997extern int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol);
998extern int xfrm_flush_bundles(void);
David S. Miller399c1802005-12-19 14:23:23 -0800999extern void xfrm_flush_all_bundles(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000extern int xfrm_bundle_ok(struct xfrm_dst *xdst, struct flowi *fl, int family);
1001extern void xfrm_init_pmtu(struct dst_entry *dst);
1002
1003extern wait_queue_head_t km_waitq;
1004extern int km_new_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, u16 sport);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001005extern void km_policy_expired(struct xfrm_policy *pol, int dir, int hard, u32 pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007extern void xfrm_input_init(void);
1008extern int xfrm_parse_spi(struct sk_buff *skb, u8 nexthdr, u32 *spi, u32 *seq);
1009
1010extern void xfrm_probe_algs(void);
1011extern int xfrm_count_auth_supported(void);
1012extern int xfrm_count_enc_supported(void);
1013extern struct xfrm_algo_desc *xfrm_aalg_get_byidx(unsigned int idx);
1014extern struct xfrm_algo_desc *xfrm_ealg_get_byidx(unsigned int idx);
1015extern struct xfrm_algo_desc *xfrm_aalg_get_byid(int alg_id);
1016extern struct xfrm_algo_desc *xfrm_ealg_get_byid(int alg_id);
1017extern struct xfrm_algo_desc *xfrm_calg_get_byid(int alg_id);
1018extern struct xfrm_algo_desc *xfrm_aalg_get_byname(char *name, int probe);
1019extern struct xfrm_algo_desc *xfrm_ealg_get_byname(char *name, int probe);
1020extern struct xfrm_algo_desc *xfrm_calg_get_byname(char *name, int probe);
1021
Herbert Xu07d4ee52006-08-20 14:24:50 +10001022struct hash_desc;
Herbert Xu9409f382006-08-06 19:49:12 +10001023struct scatterlist;
Herbert Xu07d4ee52006-08-20 14:24:50 +10001024typedef int (icv_update_fn_t)(struct hash_desc *, struct scatterlist *,
1025 unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Herbert Xu07d4ee52006-08-20 14:24:50 +10001027extern int skb_icv_walk(const struct sk_buff *skb, struct hash_desc *tfm,
1028 int offset, int len, icv_update_fn_t icv_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030static inline int xfrm_addr_cmp(xfrm_address_t *a, xfrm_address_t *b,
1031 int family)
1032{
1033 switch (family) {
1034 default:
1035 case AF_INET:
1036 return a->a4 - b->a4;
1037 case AF_INET6:
1038 return ipv6_addr_cmp((struct in6_addr *)a,
1039 (struct in6_addr *)b);
1040 }
1041}
1042
Herbert Xu77d8d7a2005-10-05 12:15:12 -07001043static inline int xfrm_policy_id2dir(u32 index)
1044{
1045 return index & 7;
1046}
1047
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08001048static inline int xfrm_aevent_is_on(void)
1049{
Patrick McHardybe336902006-03-20 22:40:54 -08001050 struct sock *nlsk;
1051 int ret = 0;
1052
1053 rcu_read_lock();
1054 nlsk = rcu_dereference(xfrm_nl);
1055 if (nlsk)
1056 ret = netlink_has_listeners(nlsk, XFRMNLGRP_AEVENTS);
1057 rcu_read_unlock();
1058 return ret;
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08001059}
1060
1061static inline void xfrm_aevent_doreplay(struct xfrm_state *x)
1062{
1063 if (xfrm_aevent_is_on())
1064 xfrm_replay_notify(x, XFRM_REPLAY_UPDATE);
1065}
1066
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068#endif /* _NET_XFRM_H */