blob: 4655ca25f80826cdb8b19d3a08b3d0ca6a443972 [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
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700137 /* Data for care-of address */
138 xfrm_address_t *coaddr;
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* IPComp needs an IPIP tunnel for handling uncompressed packets */
141 struct xfrm_state *tunnel;
142
143 /* If a tunnel, number of users + 1 */
144 atomic_t tunnel_users;
145
146 /* State for replay detection */
147 struct xfrm_replay_state replay;
148
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800149 /* Replay detection state at the time we sent the last notification */
150 struct xfrm_replay_state preplay;
151
Jamal Hadi Salim27170962006-04-14 15:03:05 -0700152 /* internal flag that only holds state for delayed aevent at the
153 * moment
154 */
155 u32 xflags;
156
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800157 /* Replay detection notification settings */
158 u32 replay_maxage;
159 u32 replay_maxdiff;
160
161 /* Replay detection notification timer */
162 struct timer_list rtimer;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* Statistics */
165 struct xfrm_stats stats;
166
167 struct xfrm_lifetime_cur curlft;
168 struct timer_list timer;
169
Masahide NAKAMURA9afaca02006-08-23 18:20:16 -0700170 /* Last used time */
171 u64 lastused;
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 /* Reference to data common to all the instances of this
174 * transformer. */
175 struct xfrm_type *type;
Herbert Xub59f45d2006-05-27 23:05:54 -0700176 struct xfrm_mode *mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Trent Jaegerdf718372005-12-13 23:12:27 -0800178 /* Security context */
179 struct xfrm_sec_ctx *security;
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* Private data of this transformer, format is opaque,
182 * interpreted by xfrm_type methods. */
183 void *data;
184};
185
Jamal Hadi Salim27170962006-04-14 15:03:05 -0700186/* xflags - make enum if more show up */
187#define XFRM_TIME_DEFER 1
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189enum {
190 XFRM_STATE_VOID,
191 XFRM_STATE_ACQ,
192 XFRM_STATE_VALID,
193 XFRM_STATE_ERROR,
194 XFRM_STATE_EXPIRED,
195 XFRM_STATE_DEAD
196};
197
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700198/* callback structure passed from either netlink or pfkey */
199struct km_event
200{
Herbert Xubf088672005-06-18 22:44:00 -0700201 union {
202 u32 hard;
203 u32 proto;
204 u32 byid;
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800205 u32 aevent;
Herbert Xubf088672005-06-18 22:44:00 -0700206 } data;
207
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700208 u32 seq;
209 u32 pid;
210 u32 event;
211};
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213struct xfrm_type;
214struct xfrm_dst;
215struct xfrm_policy_afinfo {
216 unsigned short family;
Herbert Xu73654d62006-05-27 23:06:33 -0700217 struct xfrm_type *type_map[IPPROTO_MAX];
Herbert Xub59f45d2006-05-27 23:05:54 -0700218 struct xfrm_mode *mode_map[XFRM_MODE_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 struct dst_ops *dst_ops;
220 void (*garbage_collect)(void);
221 int (*dst_lookup)(struct xfrm_dst **dst, struct flowi *fl);
222 struct dst_entry *(*find_bundle)(struct flowi *fl, struct xfrm_policy *policy);
223 int (*bundle_create)(struct xfrm_policy *policy,
224 struct xfrm_state **xfrm,
225 int nx,
226 struct flowi *fl,
227 struct dst_entry **dst_p);
228 void (*decode_session)(struct sk_buff *skb,
229 struct flowi *fl);
230};
231
232extern int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo);
233extern int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700234extern void km_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c);
235extern void km_state_notify(struct xfrm_state *x, struct km_event *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236#define XFRM_ACQ_EXPIRES 30
237
238struct xfrm_tmpl;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -0800239extern int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -0800240extern void km_state_expired(struct xfrm_state *x, int hard, u32 pid);
241extern int __xfrm_state_delete(struct xfrm_state *x);
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243struct xfrm_state_afinfo {
244 unsigned short family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 struct list_head *state_bydst;
Masahide NAKAMURA6c44e6b2006-08-23 17:53:57 -0700246 struct list_head *state_bysrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 struct list_head *state_byspi;
Herbert Xud094cd82005-06-20 13:19:41 -0700248 int (*init_flags)(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 void (*init_tempsel)(struct xfrm_state *x, struct flowi *fl,
250 struct xfrm_tmpl *tmpl,
251 xfrm_address_t *daddr, xfrm_address_t *saddr);
252 struct xfrm_state *(*state_lookup)(xfrm_address_t *daddr, u32 spi, u8 proto);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700253 struct xfrm_state *(*state_lookup_byaddr)(xfrm_address_t *daddr, xfrm_address_t *saddr, u8 proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 struct xfrm_state *(*find_acq)(u8 mode, u32 reqid, u8 proto,
255 xfrm_address_t *daddr, xfrm_address_t *saddr,
256 int create);
257};
258
259extern int xfrm_state_register_afinfo(struct xfrm_state_afinfo *afinfo);
260extern int xfrm_state_unregister_afinfo(struct xfrm_state_afinfo *afinfo);
261
262extern void xfrm_state_delete_tunnel(struct xfrm_state *x);
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264struct xfrm_type
265{
266 char *description;
267 struct module *owner;
268 __u8 proto;
Masahide NAKAMURA1b5c2292006-08-23 18:11:50 -0700269 __u8 flags;
270#define XFRM_TYPE_NON_FRAGMENT 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Herbert Xu72cb6962005-06-20 13:18:08 -0700272 int (*init_state)(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 void (*destructor)(struct xfrm_state *);
Herbert Xue6956332006-04-01 00:52:46 -0800274 int (*input)(struct xfrm_state *, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 int (*output)(struct xfrm_state *, struct sk_buff *pskb);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -0700276 int (*reject)(struct xfrm_state *, struct sk_buff *, struct flowi *);
Masahide NAKAMURAaee5adb2006-08-23 17:57:28 -0700277 int (*hdr_offset)(struct xfrm_state *, struct sk_buff *, u8 **);
Masahide NAKAMURA99505a82006-08-23 18:10:33 -0700278 xfrm_address_t *(*local_addr)(struct xfrm_state *, xfrm_address_t *);
279 xfrm_address_t *(*remote_addr)(struct xfrm_state *, xfrm_address_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* Estimate maximal size of result of transformation of a dgram */
281 u32 (*get_max_size)(struct xfrm_state *, int size);
282};
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284extern int xfrm_register_type(struct xfrm_type *type, unsigned short family);
285extern int xfrm_unregister_type(struct xfrm_type *type, unsigned short family);
286extern struct xfrm_type *xfrm_get_type(u8 proto, unsigned short family);
287extern void xfrm_put_type(struct xfrm_type *type);
288
Herbert Xub59f45d2006-05-27 23:05:54 -0700289struct xfrm_mode {
290 int (*input)(struct xfrm_state *x, struct sk_buff *skb);
291 int (*output)(struct sk_buff *skb);
292
293 struct module *owner;
294 unsigned int encap;
295};
296
297extern int xfrm_register_mode(struct xfrm_mode *mode, int family);
298extern int xfrm_unregister_mode(struct xfrm_mode *mode, int family);
299extern struct xfrm_mode *xfrm_get_mode(unsigned int encap, int family);
300extern void xfrm_put_mode(struct xfrm_mode *mode);
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302struct xfrm_tmpl
303{
304/* id in template is interpreted as:
305 * daddr - destination of tunnel, may be zero for transport mode.
306 * spi - zero to acquire spi. Not zero if spi is static, then
307 * daddr must be fixed too.
308 * proto - AH/ESP/IPCOMP
309 */
310 struct xfrm_id id;
311
312/* Source address of tunnel. Ignored, if it is not a tunnel. */
313 xfrm_address_t saddr;
314
315 __u32 reqid;
316
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700317/* Mode: transport, tunnel etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 __u8 mode;
319
320/* Sharing mode: unique, this session only, this user only etc. */
321 __u8 share;
322
323/* May skip this transfomration if no SA is found */
324 __u8 optional;
325
326/* Bit mask of algos allowed for acquisition */
327 __u32 aalgos;
328 __u32 ealgos;
329 __u32 calgos;
330};
331
Masahide NAKAMURA622dc822006-08-23 17:52:01 -0700332#define XFRM_MAX_DEPTH 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334struct xfrm_policy
335{
336 struct xfrm_policy *next;
337 struct list_head list;
338
339 /* This lock only affects elements except for entry. */
340 rwlock_t lock;
341 atomic_t refcnt;
342 struct timer_list timer;
343
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700344 u8 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 u32 priority;
346 u32 index;
347 struct xfrm_selector selector;
348 struct xfrm_lifetime_cfg lft;
349 struct xfrm_lifetime_cur curlft;
350 struct dst_entry *bundles;
351 __u16 family;
352 __u8 action;
353 __u8 flags;
354 __u8 dead;
355 __u8 xfrm_nr;
Trent Jaegerdf718372005-12-13 23:12:27 -0800356 struct xfrm_sec_ctx *security;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct xfrm_tmpl xfrm_vec[XFRM_MAX_DEPTH];
358};
359
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800360#define XFRM_KM_TIMEOUT 30
361/* which seqno */
362#define XFRM_REPLAY_SEQ 1
363#define XFRM_REPLAY_OSEQ 2
364#define XFRM_REPLAY_SEQ_MASK 3
365/* what happened */
366#define XFRM_REPLAY_UPDATE XFRM_AE_CR
367#define XFRM_REPLAY_TIMEOUT XFRM_AE_CE
368
369/* default aevent timeout in units of 100ms */
370#define XFRM_AE_ETIME 10
371/* Async Event timer multiplier */
372#define XFRM_AE_ETH_M 10
373/* default seq threshold size */
374#define XFRM_AE_SEQT_SIZE 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376struct xfrm_mgr
377{
378 struct list_head list;
379 char *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700380 int (*notify)(struct xfrm_state *x, struct km_event *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 int (*acquire)(struct xfrm_state *x, struct xfrm_tmpl *, struct xfrm_policy *xp, int dir);
Venkat Yekkiralacb969f02006-07-24 23:32:20 -0700382 struct xfrm_policy *(*compile_policy)(struct sock *sk, int opt, u8 *data, int len, int *dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 int (*new_mapping)(struct xfrm_state *x, xfrm_address_t *ipaddr, u16 sport);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700384 int (*notify_policy)(struct xfrm_policy *x, int dir, struct km_event *c);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -0700385 int (*report)(u8 proto, struct xfrm_selector *sel, xfrm_address_t *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386};
387
388extern int xfrm_register_km(struct xfrm_mgr *km);
389extern int xfrm_unregister_km(struct xfrm_mgr *km);
390
391
392extern struct xfrm_policy *xfrm_policy_list[XFRM_POLICY_MAX*2];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700393#ifdef CONFIG_XFRM_SUB_POLICY
394extern struct xfrm_policy *xfrm_policy_list_sub[XFRM_POLICY_MAX*2];
395
396static inline int xfrm_policy_lists_empty(int dir)
397{
398 return (!xfrm_policy_list[dir] && !xfrm_policy_list_sub[dir]);
399}
400#else
401static inline int xfrm_policy_lists_empty(int dir)
402{
403 return (!xfrm_policy_list[dir]);
404}
405#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407static inline void xfrm_pol_hold(struct xfrm_policy *policy)
408{
409 if (likely(policy != NULL))
410 atomic_inc(&policy->refcnt);
411}
412
413extern void __xfrm_policy_destroy(struct xfrm_policy *policy);
414
415static inline void xfrm_pol_put(struct xfrm_policy *policy)
416{
417 if (atomic_dec_and_test(&policy->refcnt))
418 __xfrm_policy_destroy(policy);
419}
420
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700421#ifdef CONFIG_XFRM_SUB_POLICY
422static inline void xfrm_pols_put(struct xfrm_policy **pols, int npols)
423{
424 int i;
425 for (i = npols - 1; i >= 0; --i)
426 xfrm_pol_put(pols[i]);
427}
428#else
429static inline void xfrm_pols_put(struct xfrm_policy **pols, int npols)
430{
431 xfrm_pol_put(pols[0]);
432}
433#endif
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#define XFRM_DST_HSIZE 1024
436
437static __inline__
438unsigned __xfrm4_dst_hash(xfrm_address_t *addr)
439{
440 unsigned h;
441 h = ntohl(addr->a4);
442 h = (h ^ (h>>16)) % XFRM_DST_HSIZE;
443 return h;
444}
445
446static __inline__
447unsigned __xfrm6_dst_hash(xfrm_address_t *addr)
448{
449 unsigned h;
450 h = ntohl(addr->a6[2]^addr->a6[3]);
451 h = (h ^ (h>>16)) % XFRM_DST_HSIZE;
452 return h;
453}
454
455static __inline__
456unsigned xfrm_dst_hash(xfrm_address_t *addr, unsigned short family)
457{
458 switch (family) {
459 case AF_INET:
460 return __xfrm4_dst_hash(addr);
461 case AF_INET6:
462 return __xfrm6_dst_hash(addr);
463 }
464 return 0;
465}
466
467static __inline__
Masahide NAKAMURA6c44e6b2006-08-23 17:53:57 -0700468unsigned __xfrm4_src_hash(xfrm_address_t *addr)
469{
470 return __xfrm4_dst_hash(addr);
471}
472
473static __inline__
474unsigned __xfrm6_src_hash(xfrm_address_t *addr)
475{
476 return __xfrm6_dst_hash(addr);
477}
478
479static __inline__
480unsigned xfrm_src_hash(xfrm_address_t *addr, unsigned short family)
481{
482 switch (family) {
483 case AF_INET:
484 return __xfrm4_src_hash(addr);
485 case AF_INET6:
486 return __xfrm6_src_hash(addr);
487 }
488 return 0;
489}
490
491static __inline__
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492unsigned __xfrm4_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto)
493{
494 unsigned h;
495 h = ntohl(addr->a4^spi^proto);
496 h = (h ^ (h>>10) ^ (h>>20)) % XFRM_DST_HSIZE;
497 return h;
498}
499
500static __inline__
501unsigned __xfrm6_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto)
502{
503 unsigned h;
504 h = ntohl(addr->a6[2]^addr->a6[3]^spi^proto);
505 h = (h ^ (h>>10) ^ (h>>20)) % XFRM_DST_HSIZE;
506 return h;
507}
508
509static __inline__
510unsigned xfrm_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto, unsigned short family)
511{
512 switch (family) {
513 case AF_INET:
514 return __xfrm4_spi_hash(addr, spi, proto);
515 case AF_INET6:
516 return __xfrm6_spi_hash(addr, spi, proto);
517 }
518 return 0; /*XXX*/
519}
520
521extern void __xfrm_state_destroy(struct xfrm_state *);
522
Herbert Xu21380b82006-02-22 14:47:13 -0800523static inline void __xfrm_state_put(struct xfrm_state *x)
524{
525 atomic_dec(&x->refcnt);
526}
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528static inline void xfrm_state_put(struct xfrm_state *x)
529{
530 if (atomic_dec_and_test(&x->refcnt))
531 __xfrm_state_destroy(x);
532}
533
534static inline void xfrm_state_hold(struct xfrm_state *x)
535{
536 atomic_inc(&x->refcnt);
537}
538
539static __inline__ int addr_match(void *token1, void *token2, int prefixlen)
540{
541 __u32 *a1 = token1;
542 __u32 *a2 = token2;
543 int pdw;
544 int pbi;
545
546 pdw = prefixlen >> 5; /* num of whole __u32 in prefix */
547 pbi = prefixlen & 0x1f; /* num of bits in incomplete u32 in prefix */
548
549 if (pdw)
550 if (memcmp(a1, a2, pdw << 2))
551 return 0;
552
553 if (pbi) {
554 __u32 mask;
555
556 mask = htonl((0xffffffff) << (32 - pbi));
557
558 if ((a1[pdw] ^ a2[pdw]) & mask)
559 return 0;
560 }
561
562 return 1;
563}
564
565static __inline__
566u16 xfrm_flowi_sport(struct flowi *fl)
567{
568 u16 port;
569 switch(fl->proto) {
570 case IPPROTO_TCP:
571 case IPPROTO_UDP:
572 case IPPROTO_SCTP:
573 port = fl->fl_ip_sport;
574 break;
575 case IPPROTO_ICMP:
576 case IPPROTO_ICMPV6:
577 port = htons(fl->fl_icmp_type);
578 break;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700579#ifdef CONFIG_IPV6_MIP6
580 case IPPROTO_MH:
581 port = htons(fl->fl_mh_type);
582 break;
583#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 default:
585 port = 0; /*XXX*/
586 }
587 return port;
588}
589
590static __inline__
591u16 xfrm_flowi_dport(struct flowi *fl)
592{
593 u16 port;
594 switch(fl->proto) {
595 case IPPROTO_TCP:
596 case IPPROTO_UDP:
597 case IPPROTO_SCTP:
598 port = fl->fl_ip_dport;
599 break;
600 case IPPROTO_ICMP:
601 case IPPROTO_ICMPV6:
602 port = htons(fl->fl_icmp_code);
603 break;
604 default:
605 port = 0; /*XXX*/
606 }
607 return port;
608}
609
610static inline int
611__xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl)
612{
613 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
614 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
615 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
616 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
617 (fl->proto == sel->proto || !sel->proto) &&
618 (fl->oif == sel->ifindex || !sel->ifindex);
619}
620
621static inline int
622__xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl)
623{
624 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
625 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
626 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
627 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
628 (fl->proto == sel->proto || !sel->proto) &&
629 (fl->oif == sel->ifindex || !sel->ifindex);
630}
631
632static inline int
633xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl,
634 unsigned short family)
635{
636 switch (family) {
637 case AF_INET:
638 return __xfrm4_selector_match(sel, fl);
639 case AF_INET6:
640 return __xfrm6_selector_match(sel, fl);
641 }
642 return 0;
643}
644
Trent Jaegerdf718372005-12-13 23:12:27 -0800645#ifdef CONFIG_SECURITY_NETWORK_XFRM
646/* If neither has a context --> match
647 * Otherwise, both must have a context and the sids, doi, alg must match
648 */
649static inline int xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2)
650{
651 return ((!s1 && !s2) ||
652 (s1 && s2 &&
653 (s1->ctx_sid == s2->ctx_sid) &&
654 (s1->ctx_doi == s2->ctx_doi) &&
655 (s1->ctx_alg == s2->ctx_alg)));
656}
657#else
658static inline int xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2)
659{
660 return 1;
661}
662#endif
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664/* A struct encoding bundle of transformations to apply to some set of flow.
665 *
666 * dst->child points to the next element of bundle.
667 * dst->xfrm points to an instanse of transformer.
668 *
669 * Due to unfortunate limitations of current routing cache, which we
670 * have no time to fix, it mirrors struct rtable and bound to the same
671 * routing key, including saddr,daddr. However, we can have many of
672 * bundles differing by session id. All the bundles grow from a parent
673 * policy rule.
674 */
675struct xfrm_dst
676{
677 union {
678 struct xfrm_dst *next;
679 struct dst_entry dst;
680 struct rtable rt;
681 struct rt6_info rt6;
682 } u;
683 struct dst_entry *route;
684 u32 route_mtu_cached;
685 u32 child_mtu_cached;
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -0700686 u32 route_cookie;
687 u32 path_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688};
689
Herbert Xuaabc9762005-05-03 16:27:10 -0700690static inline void xfrm_dst_destroy(struct xfrm_dst *xdst)
691{
692 dst_release(xdst->route);
693 if (likely(xdst->u.dst.xfrm))
694 xfrm_state_put(xdst->u.dst.xfrm);
695}
696
697extern void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev);
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699struct sec_path
700{
701 atomic_t refcnt;
702 int len;
Herbert Xudbe5b4a2006-04-01 00:54:16 -0800703 struct xfrm_state *xvec[XFRM_MAX_DEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704};
705
706static inline struct sec_path *
707secpath_get(struct sec_path *sp)
708{
709 if (sp)
710 atomic_inc(&sp->refcnt);
711 return sp;
712}
713
714extern void __secpath_destroy(struct sec_path *sp);
715
716static inline void
717secpath_put(struct sec_path *sp)
718{
719 if (sp && atomic_dec_and_test(&sp->refcnt))
720 __secpath_destroy(sp);
721}
722
723extern struct sec_path *secpath_dup(struct sec_path *src);
724
725static inline void
726secpath_reset(struct sk_buff *skb)
727{
728#ifdef CONFIG_XFRM
729 secpath_put(skb->sp);
730 skb->sp = NULL;
731#endif
732}
733
734static inline int
735__xfrm4_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x)
736{
737 return (tmpl->saddr.a4 &&
738 tmpl->saddr.a4 != x->props.saddr.a4);
739}
740
741static inline int
742__xfrm6_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x)
743{
744 return (!ipv6_addr_any((struct in6_addr*)&tmpl->saddr) &&
745 ipv6_addr_cmp((struct in6_addr *)&tmpl->saddr, (struct in6_addr*)&x->props.saddr));
746}
747
748static inline int
749xfrm_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x, unsigned short family)
750{
751 switch (family) {
752 case AF_INET:
753 return __xfrm4_state_addr_cmp(tmpl, x);
754 case AF_INET6:
755 return __xfrm6_state_addr_cmp(tmpl, x);
756 }
757 return !0;
758}
759
760#ifdef CONFIG_XFRM
761
762extern int __xfrm_policy_check(struct sock *, int dir, struct sk_buff *skb, unsigned short family);
763
764static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family)
765{
766 if (sk && sk->sk_policy[XFRM_POLICY_IN])
767 return __xfrm_policy_check(sk, dir, skb, family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700768
769 return (xfrm_policy_lists_empty(dir) && !skb->sp) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 (skb->dst->flags & DST_NOPOLICY) ||
771 __xfrm_policy_check(sk, dir, skb, family);
772}
773
774static inline int xfrm4_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
775{
776 return xfrm_policy_check(sk, dir, skb, AF_INET);
777}
778
779static inline int xfrm6_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
780{
781 return xfrm_policy_check(sk, dir, skb, AF_INET6);
782}
783
Patrick McHardy3e3850e2006-01-06 23:04:54 -0800784extern int xfrm_decode_session(struct sk_buff *skb, struct flowi *fl, unsigned short family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785extern int __xfrm_route_forward(struct sk_buff *skb, unsigned short family);
786
787static inline int xfrm_route_forward(struct sk_buff *skb, unsigned short family)
788{
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700789 return xfrm_policy_lists_empty(XFRM_POLICY_OUT) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 (skb->dst->flags & DST_NOXFRM) ||
791 __xfrm_route_forward(skb, family);
792}
793
794static inline int xfrm4_route_forward(struct sk_buff *skb)
795{
796 return xfrm_route_forward(skb, AF_INET);
797}
798
799static inline int xfrm6_route_forward(struct sk_buff *skb)
800{
801 return xfrm_route_forward(skb, AF_INET6);
802}
803
804extern int __xfrm_sk_clone_policy(struct sock *sk);
805
806static inline int xfrm_sk_clone_policy(struct sock *sk)
807{
808 if (unlikely(sk->sk_policy[0] || sk->sk_policy[1]))
809 return __xfrm_sk_clone_policy(sk);
810 return 0;
811}
812
Herbert Xu4666faa2005-06-18 22:43:22 -0700813extern int xfrm_policy_delete(struct xfrm_policy *pol, int dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815static inline void xfrm_sk_free_policy(struct sock *sk)
816{
817 if (unlikely(sk->sk_policy[0] != NULL)) {
818 xfrm_policy_delete(sk->sk_policy[0], XFRM_POLICY_MAX);
819 sk->sk_policy[0] = NULL;
820 }
821 if (unlikely(sk->sk_policy[1] != NULL)) {
822 xfrm_policy_delete(sk->sk_policy[1], XFRM_POLICY_MAX+1);
823 sk->sk_policy[1] = NULL;
824 }
825}
826
827#else
828
829static inline void xfrm_sk_free_policy(struct sock *sk) {}
830static inline int xfrm_sk_clone_policy(struct sock *sk) { return 0; }
831static inline int xfrm6_route_forward(struct sk_buff *skb) { return 1; }
832static inline int xfrm4_route_forward(struct sk_buff *skb) { return 1; }
833static inline int xfrm6_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
834{
835 return 1;
836}
837static inline int xfrm4_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
838{
839 return 1;
840}
841static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family)
842{
843 return 1;
844}
845#endif
846
847static __inline__
848xfrm_address_t *xfrm_flowi_daddr(struct flowi *fl, unsigned short family)
849{
850 switch (family){
851 case AF_INET:
852 return (xfrm_address_t *)&fl->fl4_dst;
853 case AF_INET6:
854 return (xfrm_address_t *)&fl->fl6_dst;
855 }
856 return NULL;
857}
858
859static __inline__
860xfrm_address_t *xfrm_flowi_saddr(struct flowi *fl, unsigned short family)
861{
862 switch (family){
863 case AF_INET:
864 return (xfrm_address_t *)&fl->fl4_src;
865 case AF_INET6:
866 return (xfrm_address_t *)&fl->fl6_src;
867 }
868 return NULL;
869}
870
871static __inline__ int
872__xfrm4_state_addr_check(struct xfrm_state *x,
873 xfrm_address_t *daddr, xfrm_address_t *saddr)
874{
875 if (daddr->a4 == x->id.daddr.a4 &&
876 (saddr->a4 == x->props.saddr.a4 || !saddr->a4 || !x->props.saddr.a4))
877 return 1;
878 return 0;
879}
880
881static __inline__ int
882__xfrm6_state_addr_check(struct xfrm_state *x,
883 xfrm_address_t *daddr, xfrm_address_t *saddr)
884{
885 if (!ipv6_addr_cmp((struct in6_addr *)daddr, (struct in6_addr *)&x->id.daddr) &&
886 (!ipv6_addr_cmp((struct in6_addr *)saddr, (struct in6_addr *)&x->props.saddr)||
887 ipv6_addr_any((struct in6_addr *)saddr) ||
888 ipv6_addr_any((struct in6_addr *)&x->props.saddr)))
889 return 1;
890 return 0;
891}
892
893static __inline__ int
894xfrm_state_addr_check(struct xfrm_state *x,
895 xfrm_address_t *daddr, xfrm_address_t *saddr,
896 unsigned short family)
897{
898 switch (family) {
899 case AF_INET:
900 return __xfrm4_state_addr_check(x, daddr, saddr);
901 case AF_INET6:
902 return __xfrm6_state_addr_check(x, daddr, saddr);
903 }
904 return 0;
905}
906
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -0700907static __inline__ int
908xfrm_state_addr_flow_check(struct xfrm_state *x, struct flowi *fl,
909 unsigned short family)
910{
911 switch (family) {
912 case AF_INET:
913 return __xfrm4_state_addr_check(x,
914 (xfrm_address_t *)&fl->fl4_dst,
915 (xfrm_address_t *)&fl->fl4_src);
916 case AF_INET6:
917 return __xfrm6_state_addr_check(x,
918 (xfrm_address_t *)&fl->fl6_dst,
919 (xfrm_address_t *)&fl->fl6_src);
920 }
921 return 0;
922}
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924static inline int xfrm_state_kern(struct xfrm_state *x)
925{
926 return atomic_read(&x->tunnel_users);
927}
928
Masahide NAKAMURA57947082006-09-22 15:06:24 -0700929static inline int xfrm_id_proto_match(u8 proto, u8 userproto)
930{
Masahide NAKAMURAdc00a522006-08-23 17:49:52 -0700931 return (!userproto || proto == userproto ||
932 (userproto == IPSEC_PROTO_ANY && (proto == IPPROTO_AH ||
933 proto == IPPROTO_ESP ||
934 proto == IPPROTO_COMP)));
Masahide NAKAMURA57947082006-09-22 15:06:24 -0700935}
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937/*
938 * xfrm algorithm information
939 */
940struct xfrm_algo_auth_info {
941 u16 icv_truncbits;
942 u16 icv_fullbits;
943};
944
945struct xfrm_algo_encr_info {
946 u16 blockbits;
947 u16 defkeybits;
948};
949
950struct xfrm_algo_comp_info {
951 u16 threshold;
952};
953
954struct xfrm_algo_desc {
955 char *name;
Herbert Xu04ff1262006-08-13 08:50:00 +1000956 char *compat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 u8 available:1;
958 union {
959 struct xfrm_algo_auth_info auth;
960 struct xfrm_algo_encr_info encr;
961 struct xfrm_algo_comp_info comp;
962 } uinfo;
963 struct sadb_alg desc;
964};
965
966/* XFRM tunnel handlers. */
967struct xfrm_tunnel {
968 int (*handler)(struct sk_buff *skb);
Herbert Xud2acc342006-03-28 01:12:13 -0800969 int (*err_handler)(struct sk_buff *skb, __u32 info);
970
971 struct xfrm_tunnel *next;
972 int priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973};
974
975struct xfrm6_tunnel {
Herbert Xud2acc342006-03-28 01:12:13 -0800976 int (*handler)(struct sk_buff *skb);
977 int (*err_handler)(struct sk_buff *skb, struct inet6_skb_parm *opt,
978 int type, int code, int offset, __u32 info);
979
980 struct xfrm6_tunnel *next;
981 int priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982};
983
984extern void xfrm_init(void);
985extern void xfrm4_init(void);
986extern void xfrm6_init(void);
987extern void xfrm6_fini(void);
988extern void xfrm_state_init(void);
989extern void xfrm4_state_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990extern void xfrm6_state_init(void);
991extern void xfrm6_state_fini(void);
992
993extern int xfrm_state_walk(u8 proto, int (*func)(struct xfrm_state *, int, void*), void *);
994extern struct xfrm_state *xfrm_state_alloc(void);
995extern struct xfrm_state *xfrm_state_find(xfrm_address_t *daddr, xfrm_address_t *saddr,
996 struct flowi *fl, struct xfrm_tmpl *tmpl,
997 struct xfrm_policy *pol, int *err,
998 unsigned short family);
999extern int xfrm_state_check_expire(struct xfrm_state *x);
1000extern void xfrm_state_insert(struct xfrm_state *x);
1001extern int xfrm_state_add(struct xfrm_state *x);
1002extern int xfrm_state_update(struct xfrm_state *x);
1003extern struct xfrm_state *xfrm_state_lookup(xfrm_address_t *daddr, u32 spi, u8 proto, unsigned short family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001004extern struct xfrm_state *xfrm_state_lookup_byaddr(xfrm_address_t *daddr, xfrm_address_t *saddr, u8 proto, unsigned short family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005extern struct xfrm_state *xfrm_find_acq_byseq(u32 seq);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001006extern int xfrm_state_delete(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007extern void xfrm_state_flush(u8 proto);
1008extern int xfrm_replay_check(struct xfrm_state *x, u32 seq);
1009extern void xfrm_replay_advance(struct xfrm_state *x, u32 seq);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08001010extern void xfrm_replay_notify(struct xfrm_state *x, int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011extern int xfrm_state_check(struct xfrm_state *x, struct sk_buff *skb);
1012extern int xfrm_state_mtu(struct xfrm_state *x, int mtu);
Herbert Xu72cb6962005-06-20 13:18:08 -07001013extern int xfrm_init_state(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014extern int xfrm4_rcv(struct sk_buff *skb);
1015extern int xfrm4_output(struct sk_buff *skb);
1016extern int xfrm4_tunnel_register(struct xfrm_tunnel *handler);
1017extern int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler);
Herbert Xud2acc342006-03-28 01:12:13 -08001018extern int xfrm6_rcv_spi(struct sk_buff *skb, u32 spi);
Patrick McHardy951dbc82006-01-06 23:02:34 -08001019extern int xfrm6_rcv(struct sk_buff **pskb);
Masahide NAKAMURAfbd9a5b2006-08-23 18:08:21 -07001020extern int xfrm6_input_addr(struct sk_buff *skb, xfrm_address_t *daddr,
1021 xfrm_address_t *saddr, u8 proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022extern int xfrm6_tunnel_register(struct xfrm6_tunnel *handler);
1023extern int xfrm6_tunnel_deregister(struct xfrm6_tunnel *handler);
1024extern u32 xfrm6_tunnel_alloc_spi(xfrm_address_t *saddr);
1025extern void xfrm6_tunnel_free_spi(xfrm_address_t *saddr);
1026extern u32 xfrm6_tunnel_spi_lookup(xfrm_address_t *saddr);
1027extern int xfrm6_output(struct sk_buff *skb);
Masahide NAKAMURAaee5adb2006-08-23 17:57:28 -07001028extern int xfrm6_find_1stfragopt(struct xfrm_state *x, struct sk_buff *skb,
1029 u8 **prevhdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031#ifdef CONFIG_XFRM
1032extern int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type);
1033extern int xfrm_user_policy(struct sock *sk, int optname, u8 __user *optval, int optlen);
1034extern int xfrm_dst_lookup(struct xfrm_dst **dst, struct flowi *fl, unsigned short family);
1035#else
1036static inline int xfrm_user_policy(struct sock *sk, int optname, u8 __user *optval, int optlen)
1037{
1038 return -ENOPROTOOPT;
1039}
1040
1041static inline int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type)
1042{
1043 /* should not happen */
1044 kfree_skb(skb);
1045 return 0;
1046}
1047static inline int xfrm_dst_lookup(struct xfrm_dst **dst, struct flowi *fl, unsigned short family)
1048{
1049 return -EINVAL;
1050}
1051#endif
1052
Al Virodd0fc662005-10-07 07:46:04 +01001053struct xfrm_policy *xfrm_policy_alloc(gfp_t gfp);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001054extern int xfrm_policy_walk(u8 type, int (*func)(struct xfrm_policy *, int, int, void*), void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001056struct xfrm_policy *xfrm_policy_bysel_ctx(u8 type, int dir,
1057 struct xfrm_selector *sel,
Trent Jaegerdf718372005-12-13 23:12:27 -08001058 struct xfrm_sec_ctx *ctx, int delete);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001059struct xfrm_policy *xfrm_policy_byid(u8, int dir, u32 id, int delete);
1060void xfrm_policy_flush(u8 type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061u32 xfrm_get_acqseq(void);
1062void xfrm_alloc_spi(struct xfrm_state *x, u32 minspi, u32 maxspi);
1063struct xfrm_state * xfrm_find_acq(u8 mode, u32 reqid, u8 proto,
1064 xfrm_address_t *daddr, xfrm_address_t *saddr,
1065 int create, unsigned short family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001066extern void xfrm_policy_flush(u8 type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067extern int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol);
1068extern int xfrm_flush_bundles(void);
David S. Miller399c1802005-12-19 14:23:23 -08001069extern void xfrm_flush_all_bundles(void);
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07001070extern int xfrm_bundle_ok(struct xfrm_dst *xdst, struct flowi *fl, int family, int strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071extern void xfrm_init_pmtu(struct dst_entry *dst);
1072
1073extern wait_queue_head_t km_waitq;
1074extern int km_new_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, u16 sport);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001075extern void km_policy_expired(struct xfrm_policy *pol, int dir, int hard, u32 pid);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07001076extern int km_report(u8 proto, struct xfrm_selector *sel, xfrm_address_t *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078extern void xfrm_input_init(void);
1079extern int xfrm_parse_spi(struct sk_buff *skb, u8 nexthdr, u32 *spi, u32 *seq);
1080
1081extern void xfrm_probe_algs(void);
1082extern int xfrm_count_auth_supported(void);
1083extern int xfrm_count_enc_supported(void);
1084extern struct xfrm_algo_desc *xfrm_aalg_get_byidx(unsigned int idx);
1085extern struct xfrm_algo_desc *xfrm_ealg_get_byidx(unsigned int idx);
1086extern struct xfrm_algo_desc *xfrm_aalg_get_byid(int alg_id);
1087extern struct xfrm_algo_desc *xfrm_ealg_get_byid(int alg_id);
1088extern struct xfrm_algo_desc *xfrm_calg_get_byid(int alg_id);
1089extern struct xfrm_algo_desc *xfrm_aalg_get_byname(char *name, int probe);
1090extern struct xfrm_algo_desc *xfrm_ealg_get_byname(char *name, int probe);
1091extern struct xfrm_algo_desc *xfrm_calg_get_byname(char *name, int probe);
1092
Herbert Xu07d4ee52006-08-20 14:24:50 +10001093struct hash_desc;
Herbert Xu9409f382006-08-06 19:49:12 +10001094struct scatterlist;
Herbert Xu07d4ee52006-08-20 14:24:50 +10001095typedef int (icv_update_fn_t)(struct hash_desc *, struct scatterlist *,
1096 unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Herbert Xu07d4ee52006-08-20 14:24:50 +10001098extern int skb_icv_walk(const struct sk_buff *skb, struct hash_desc *tfm,
1099 int offset, int len, icv_update_fn_t icv_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101static inline int xfrm_addr_cmp(xfrm_address_t *a, xfrm_address_t *b,
1102 int family)
1103{
1104 switch (family) {
1105 default:
1106 case AF_INET:
1107 return a->a4 - b->a4;
1108 case AF_INET6:
1109 return ipv6_addr_cmp((struct in6_addr *)a,
1110 (struct in6_addr *)b);
1111 }
1112}
1113
Herbert Xu77d8d7a2005-10-05 12:15:12 -07001114static inline int xfrm_policy_id2dir(u32 index)
1115{
1116 return index & 7;
1117}
1118
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08001119static inline int xfrm_aevent_is_on(void)
1120{
Patrick McHardybe336902006-03-20 22:40:54 -08001121 struct sock *nlsk;
1122 int ret = 0;
1123
1124 rcu_read_lock();
1125 nlsk = rcu_dereference(xfrm_nl);
1126 if (nlsk)
1127 ret = netlink_has_listeners(nlsk, XFRMNLGRP_AEVENTS);
1128 rcu_read_unlock();
1129 return ret;
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08001130}
1131
1132static inline void xfrm_aevent_doreplay(struct xfrm_state *x)
1133{
1134 if (xfrm_aevent_is_on())
1135 xfrm_replay_notify(x, XFRM_REPLAY_UPDATE);
1136}
1137
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139#endif /* _NET_XFRM_H */