blob: 30a940b147b0a8ac48fa43dc3b1018ee627574cd [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/crypto.h>
12#include <linux/pfkeyv2.h>
13#include <linux/in6.h>
14
15#include <net/sock.h>
16#include <net/dst.h>
17#include <net/route.h>
18#include <net/ipv6.h>
19#include <net/ip6_fib.h>
20
21#define XFRM_ALIGN8(len) (((len) + 7) & ~7)
22
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -080023extern struct sock *xfrm_nl;
24extern u32 sysctl_xfrm_aevent_etime;
25extern u32 sysctl_xfrm_aevent_rseqth;
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027extern struct semaphore xfrm_cfg_sem;
28
29/* Organization of SPD aka "XFRM rules"
30 ------------------------------------
31
32 Basic objects:
33 - policy rule, struct xfrm_policy (=SPD entry)
34 - bundle of transformations, struct dst_entry == struct xfrm_dst (=SA bundle)
35 - instance of a transformer, struct xfrm_state (=SA)
36 - template to clone xfrm_state, struct xfrm_tmpl
37
38 SPD is plain linear list of xfrm_policy rules, ordered by priority.
39 (To be compatible with existing pfkeyv2 implementations,
40 many rules with priority of 0x7fffffff are allowed to exist and
41 such rules are ordered in an unpredictable way, thanks to bsd folks.)
42
43 Lookup is plain linear search until the first match with selector.
44
45 If "action" is "block", then we prohibit the flow, otherwise:
46 if "xfrms_nr" is zero, the flow passes untransformed. Otherwise,
47 policy entry has list of up to XFRM_MAX_DEPTH transformations,
48 described by templates xfrm_tmpl. Each template is resolved
49 to a complete xfrm_state (see below) and we pack bundle of transformations
50 to a dst_entry returned to requestor.
51
52 dst -. xfrm .-> xfrm_state #1
53 |---. child .-> dst -. xfrm .-> xfrm_state #2
54 |---. child .-> dst -. xfrm .-> xfrm_state #3
55 |---. child .-> NULL
56
57 Bundles are cached at xrfm_policy struct (field ->bundles).
58
59
60 Resolution of xrfm_tmpl
61 -----------------------
62 Template contains:
63 1. ->mode Mode: transport or tunnel
64 2. ->id.proto Protocol: AH/ESP/IPCOMP
65 3. ->id.daddr Remote tunnel endpoint, ignored for transport mode.
66 Q: allow to resolve security gateway?
67 4. ->id.spi If not zero, static SPI.
68 5. ->saddr Local tunnel endpoint, ignored for transport mode.
69 6. ->algos List of allowed algos. Plain bitmask now.
70 Q: ealgos, aalgos, calgos. What a mess...
71 7. ->share Sharing mode.
72 Q: how to implement private sharing mode? To add struct sock* to
73 flow id?
74
75 Having this template we search through SAD searching for entries
76 with appropriate mode/proto/algo, permitted by selector.
77 If no appropriate entry found, it is requested from key manager.
78
79 PROBLEMS:
80 Q: How to find all the bundles referring to a physical path for
81 PMTU discovery? Seems, dst should contain list of all parents...
82 and enter to infinite locking hierarchy disaster.
83 No! It is easier, we will not search for them, let them find us.
84 We add genid to each dst plus pointer to genid of raw IP route,
85 pmtu disc will update pmtu on raw IP route and increase its genid.
86 dst_check() will see this for top level and trigger resyncing
87 metrics. Plus, it will be made via sk->sk_dst_cache. Solved.
88 */
89
90/* Full description of state of transformer. */
91struct xfrm_state
92{
93 /* Note: bydst is re-used during gc */
94 struct list_head bydst;
95 struct list_head byspi;
96
97 atomic_t refcnt;
98 spinlock_t lock;
99
100 struct xfrm_id id;
101 struct xfrm_selector sel;
102
103 /* Key manger bits */
104 struct {
105 u8 state;
106 u8 dying;
107 u32 seq;
108 } km;
109
110 /* Parameters of this state. */
111 struct {
112 u32 reqid;
113 u8 mode;
114 u8 replay_window;
115 u8 aalgo, ealgo, calgo;
116 u8 flags;
117 u16 family;
118 xfrm_address_t saddr;
119 int header_len;
120 int trailer_len;
121 } props;
122
123 struct xfrm_lifetime_cfg lft;
124
125 /* Data for transformer */
126 struct xfrm_algo *aalg;
127 struct xfrm_algo *ealg;
128 struct xfrm_algo *calg;
129
130 /* Data for encapsulator */
131 struct xfrm_encap_tmpl *encap;
132
133 /* IPComp needs an IPIP tunnel for handling uncompressed packets */
134 struct xfrm_state *tunnel;
135
136 /* If a tunnel, number of users + 1 */
137 atomic_t tunnel_users;
138
139 /* State for replay detection */
140 struct xfrm_replay_state replay;
141
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800142 /* Replay detection state at the time we sent the last notification */
143 struct xfrm_replay_state preplay;
144
145 /* Replay detection notification settings */
146 u32 replay_maxage;
147 u32 replay_maxdiff;
148
149 /* Replay detection notification timer */
150 struct timer_list rtimer;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 /* Statistics */
153 struct xfrm_stats stats;
154
155 struct xfrm_lifetime_cur curlft;
156 struct timer_list timer;
157
158 /* Reference to data common to all the instances of this
159 * transformer. */
160 struct xfrm_type *type;
161
Trent Jaegerdf718372005-12-13 23:12:27 -0800162 /* Security context */
163 struct xfrm_sec_ctx *security;
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /* Private data of this transformer, format is opaque,
166 * interpreted by xfrm_type methods. */
167 void *data;
168};
169
170enum {
171 XFRM_STATE_VOID,
172 XFRM_STATE_ACQ,
173 XFRM_STATE_VALID,
174 XFRM_STATE_ERROR,
175 XFRM_STATE_EXPIRED,
176 XFRM_STATE_DEAD
177};
178
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700179/* callback structure passed from either netlink or pfkey */
180struct km_event
181{
Herbert Xubf088672005-06-18 22:44:00 -0700182 union {
183 u32 hard;
184 u32 proto;
185 u32 byid;
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800186 u32 aevent;
Herbert Xubf088672005-06-18 22:44:00 -0700187 } data;
188
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700189 u32 seq;
190 u32 pid;
191 u32 event;
192};
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194struct xfrm_type;
195struct xfrm_dst;
196struct xfrm_policy_afinfo {
197 unsigned short family;
198 rwlock_t lock;
199 struct xfrm_type_map *type_map;
200 struct dst_ops *dst_ops;
201 void (*garbage_collect)(void);
202 int (*dst_lookup)(struct xfrm_dst **dst, struct flowi *fl);
203 struct dst_entry *(*find_bundle)(struct flowi *fl, struct xfrm_policy *policy);
204 int (*bundle_create)(struct xfrm_policy *policy,
205 struct xfrm_state **xfrm,
206 int nx,
207 struct flowi *fl,
208 struct dst_entry **dst_p);
209 void (*decode_session)(struct sk_buff *skb,
210 struct flowi *fl);
211};
212
213extern int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo);
214extern int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700215extern void km_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c);
216extern void km_state_notify(struct xfrm_state *x, struct km_event *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#define XFRM_ACQ_EXPIRES 30
218
219struct xfrm_tmpl;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -0800220extern int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221struct xfrm_state_afinfo {
222 unsigned short family;
223 rwlock_t lock;
224 struct list_head *state_bydst;
225 struct list_head *state_byspi;
Herbert Xud094cd82005-06-20 13:19:41 -0700226 int (*init_flags)(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 void (*init_tempsel)(struct xfrm_state *x, struct flowi *fl,
228 struct xfrm_tmpl *tmpl,
229 xfrm_address_t *daddr, xfrm_address_t *saddr);
230 struct xfrm_state *(*state_lookup)(xfrm_address_t *daddr, u32 spi, u8 proto);
231 struct xfrm_state *(*find_acq)(u8 mode, u32 reqid, u8 proto,
232 xfrm_address_t *daddr, xfrm_address_t *saddr,
233 int create);
234};
235
236extern int xfrm_state_register_afinfo(struct xfrm_state_afinfo *afinfo);
237extern int xfrm_state_unregister_afinfo(struct xfrm_state_afinfo *afinfo);
238
239extern void xfrm_state_delete_tunnel(struct xfrm_state *x);
240
241struct xfrm_decap_state;
242struct xfrm_type
243{
244 char *description;
245 struct module *owner;
246 __u8 proto;
247
Herbert Xu72cb6962005-06-20 13:18:08 -0700248 int (*init_state)(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 void (*destructor)(struct xfrm_state *);
250 int (*input)(struct xfrm_state *, struct xfrm_decap_state *, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 int (*output)(struct xfrm_state *, struct sk_buff *pskb);
252 /* Estimate maximal size of result of transformation of a dgram */
253 u32 (*get_max_size)(struct xfrm_state *, int size);
254};
255
256struct xfrm_type_map {
257 rwlock_t lock;
258 struct xfrm_type *map[256];
259};
260
261extern int xfrm_register_type(struct xfrm_type *type, unsigned short family);
262extern int xfrm_unregister_type(struct xfrm_type *type, unsigned short family);
263extern struct xfrm_type *xfrm_get_type(u8 proto, unsigned short family);
264extern void xfrm_put_type(struct xfrm_type *type);
265
266struct xfrm_tmpl
267{
268/* id in template is interpreted as:
269 * daddr - destination of tunnel, may be zero for transport mode.
270 * spi - zero to acquire spi. Not zero if spi is static, then
271 * daddr must be fixed too.
272 * proto - AH/ESP/IPCOMP
273 */
274 struct xfrm_id id;
275
276/* Source address of tunnel. Ignored, if it is not a tunnel. */
277 xfrm_address_t saddr;
278
279 __u32 reqid;
280
281/* Mode: transport/tunnel */
282 __u8 mode;
283
284/* Sharing mode: unique, this session only, this user only etc. */
285 __u8 share;
286
287/* May skip this transfomration if no SA is found */
288 __u8 optional;
289
290/* Bit mask of algos allowed for acquisition */
291 __u32 aalgos;
292 __u32 ealgos;
293 __u32 calgos;
294};
295
296#define XFRM_MAX_DEPTH 4
297
298struct xfrm_policy
299{
300 struct xfrm_policy *next;
301 struct list_head list;
302
303 /* This lock only affects elements except for entry. */
304 rwlock_t lock;
305 atomic_t refcnt;
306 struct timer_list timer;
307
308 u32 priority;
309 u32 index;
310 struct xfrm_selector selector;
311 struct xfrm_lifetime_cfg lft;
312 struct xfrm_lifetime_cur curlft;
313 struct dst_entry *bundles;
314 __u16 family;
315 __u8 action;
316 __u8 flags;
317 __u8 dead;
318 __u8 xfrm_nr;
Trent Jaegerdf718372005-12-13 23:12:27 -0800319 struct xfrm_sec_ctx *security;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 struct xfrm_tmpl xfrm_vec[XFRM_MAX_DEPTH];
321};
322
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800323#define XFRM_KM_TIMEOUT 30
324/* which seqno */
325#define XFRM_REPLAY_SEQ 1
326#define XFRM_REPLAY_OSEQ 2
327#define XFRM_REPLAY_SEQ_MASK 3
328/* what happened */
329#define XFRM_REPLAY_UPDATE XFRM_AE_CR
330#define XFRM_REPLAY_TIMEOUT XFRM_AE_CE
331
332/* default aevent timeout in units of 100ms */
333#define XFRM_AE_ETIME 10
334/* Async Event timer multiplier */
335#define XFRM_AE_ETH_M 10
336/* default seq threshold size */
337#define XFRM_AE_SEQT_SIZE 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339struct xfrm_mgr
340{
341 struct list_head list;
342 char *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700343 int (*notify)(struct xfrm_state *x, struct km_event *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 int (*acquire)(struct xfrm_state *x, struct xfrm_tmpl *, struct xfrm_policy *xp, int dir);
345 struct xfrm_policy *(*compile_policy)(u16 family, int opt, u8 *data, int len, int *dir);
346 int (*new_mapping)(struct xfrm_state *x, xfrm_address_t *ipaddr, u16 sport);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700347 int (*notify_policy)(struct xfrm_policy *x, int dir, struct km_event *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348};
349
350extern int xfrm_register_km(struct xfrm_mgr *km);
351extern int xfrm_unregister_km(struct xfrm_mgr *km);
352
353
354extern struct xfrm_policy *xfrm_policy_list[XFRM_POLICY_MAX*2];
355
356static inline void xfrm_pol_hold(struct xfrm_policy *policy)
357{
358 if (likely(policy != NULL))
359 atomic_inc(&policy->refcnt);
360}
361
362extern void __xfrm_policy_destroy(struct xfrm_policy *policy);
363
364static inline void xfrm_pol_put(struct xfrm_policy *policy)
365{
366 if (atomic_dec_and_test(&policy->refcnt))
367 __xfrm_policy_destroy(policy);
368}
369
370#define XFRM_DST_HSIZE 1024
371
372static __inline__
373unsigned __xfrm4_dst_hash(xfrm_address_t *addr)
374{
375 unsigned h;
376 h = ntohl(addr->a4);
377 h = (h ^ (h>>16)) % XFRM_DST_HSIZE;
378 return h;
379}
380
381static __inline__
382unsigned __xfrm6_dst_hash(xfrm_address_t *addr)
383{
384 unsigned h;
385 h = ntohl(addr->a6[2]^addr->a6[3]);
386 h = (h ^ (h>>16)) % XFRM_DST_HSIZE;
387 return h;
388}
389
390static __inline__
391unsigned xfrm_dst_hash(xfrm_address_t *addr, unsigned short family)
392{
393 switch (family) {
394 case AF_INET:
395 return __xfrm4_dst_hash(addr);
396 case AF_INET6:
397 return __xfrm6_dst_hash(addr);
398 }
399 return 0;
400}
401
402static __inline__
403unsigned __xfrm4_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto)
404{
405 unsigned h;
406 h = ntohl(addr->a4^spi^proto);
407 h = (h ^ (h>>10) ^ (h>>20)) % XFRM_DST_HSIZE;
408 return h;
409}
410
411static __inline__
412unsigned __xfrm6_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto)
413{
414 unsigned h;
415 h = ntohl(addr->a6[2]^addr->a6[3]^spi^proto);
416 h = (h ^ (h>>10) ^ (h>>20)) % XFRM_DST_HSIZE;
417 return h;
418}
419
420static __inline__
421unsigned xfrm_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto, unsigned short family)
422{
423 switch (family) {
424 case AF_INET:
425 return __xfrm4_spi_hash(addr, spi, proto);
426 case AF_INET6:
427 return __xfrm6_spi_hash(addr, spi, proto);
428 }
429 return 0; /*XXX*/
430}
431
432extern void __xfrm_state_destroy(struct xfrm_state *);
433
Herbert Xu21380b82006-02-22 14:47:13 -0800434static inline void __xfrm_state_put(struct xfrm_state *x)
435{
436 atomic_dec(&x->refcnt);
437}
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static inline void xfrm_state_put(struct xfrm_state *x)
440{
441 if (atomic_dec_and_test(&x->refcnt))
442 __xfrm_state_destroy(x);
443}
444
445static inline void xfrm_state_hold(struct xfrm_state *x)
446{
447 atomic_inc(&x->refcnt);
448}
449
450static __inline__ int addr_match(void *token1, void *token2, int prefixlen)
451{
452 __u32 *a1 = token1;
453 __u32 *a2 = token2;
454 int pdw;
455 int pbi;
456
457 pdw = prefixlen >> 5; /* num of whole __u32 in prefix */
458 pbi = prefixlen & 0x1f; /* num of bits in incomplete u32 in prefix */
459
460 if (pdw)
461 if (memcmp(a1, a2, pdw << 2))
462 return 0;
463
464 if (pbi) {
465 __u32 mask;
466
467 mask = htonl((0xffffffff) << (32 - pbi));
468
469 if ((a1[pdw] ^ a2[pdw]) & mask)
470 return 0;
471 }
472
473 return 1;
474}
475
476static __inline__
477u16 xfrm_flowi_sport(struct flowi *fl)
478{
479 u16 port;
480 switch(fl->proto) {
481 case IPPROTO_TCP:
482 case IPPROTO_UDP:
483 case IPPROTO_SCTP:
484 port = fl->fl_ip_sport;
485 break;
486 case IPPROTO_ICMP:
487 case IPPROTO_ICMPV6:
488 port = htons(fl->fl_icmp_type);
489 break;
490 default:
491 port = 0; /*XXX*/
492 }
493 return port;
494}
495
496static __inline__
497u16 xfrm_flowi_dport(struct flowi *fl)
498{
499 u16 port;
500 switch(fl->proto) {
501 case IPPROTO_TCP:
502 case IPPROTO_UDP:
503 case IPPROTO_SCTP:
504 port = fl->fl_ip_dport;
505 break;
506 case IPPROTO_ICMP:
507 case IPPROTO_ICMPV6:
508 port = htons(fl->fl_icmp_code);
509 break;
510 default:
511 port = 0; /*XXX*/
512 }
513 return port;
514}
515
516static inline int
517__xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl)
518{
519 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
520 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
521 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
522 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
523 (fl->proto == sel->proto || !sel->proto) &&
524 (fl->oif == sel->ifindex || !sel->ifindex);
525}
526
527static inline int
528__xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl)
529{
530 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
531 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
532 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
533 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
534 (fl->proto == sel->proto || !sel->proto) &&
535 (fl->oif == sel->ifindex || !sel->ifindex);
536}
537
538static inline int
539xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl,
540 unsigned short family)
541{
542 switch (family) {
543 case AF_INET:
544 return __xfrm4_selector_match(sel, fl);
545 case AF_INET6:
546 return __xfrm6_selector_match(sel, fl);
547 }
548 return 0;
549}
550
Trent Jaegerdf718372005-12-13 23:12:27 -0800551#ifdef CONFIG_SECURITY_NETWORK_XFRM
552/* If neither has a context --> match
553 * Otherwise, both must have a context and the sids, doi, alg must match
554 */
555static inline int xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2)
556{
557 return ((!s1 && !s2) ||
558 (s1 && s2 &&
559 (s1->ctx_sid == s2->ctx_sid) &&
560 (s1->ctx_doi == s2->ctx_doi) &&
561 (s1->ctx_alg == s2->ctx_alg)));
562}
563#else
564static inline int xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2)
565{
566 return 1;
567}
568#endif
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570/* A struct encoding bundle of transformations to apply to some set of flow.
571 *
572 * dst->child points to the next element of bundle.
573 * dst->xfrm points to an instanse of transformer.
574 *
575 * Due to unfortunate limitations of current routing cache, which we
576 * have no time to fix, it mirrors struct rtable and bound to the same
577 * routing key, including saddr,daddr. However, we can have many of
578 * bundles differing by session id. All the bundles grow from a parent
579 * policy rule.
580 */
581struct xfrm_dst
582{
583 union {
584 struct xfrm_dst *next;
585 struct dst_entry dst;
586 struct rtable rt;
587 struct rt6_info rt6;
588 } u;
589 struct dst_entry *route;
590 u32 route_mtu_cached;
591 u32 child_mtu_cached;
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -0700592 u32 route_cookie;
593 u32 path_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594};
595
Herbert Xuaabc9762005-05-03 16:27:10 -0700596static inline void xfrm_dst_destroy(struct xfrm_dst *xdst)
597{
598 dst_release(xdst->route);
599 if (likely(xdst->u.dst.xfrm))
600 xfrm_state_put(xdst->u.dst.xfrm);
601}
602
603extern void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev);
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/* Decapsulation state, used by the input to store data during
606 * decapsulation procedure, to be used later (during the policy
607 * check
608 */
609struct xfrm_decap_state {
610 char decap_data[20];
611 __u16 decap_type;
612};
613
614struct sec_decap_state {
615 struct xfrm_state *xvec;
616 struct xfrm_decap_state decap;
617};
618
619struct sec_path
620{
621 atomic_t refcnt;
622 int len;
623 struct sec_decap_state x[XFRM_MAX_DEPTH];
624};
625
626static inline struct sec_path *
627secpath_get(struct sec_path *sp)
628{
629 if (sp)
630 atomic_inc(&sp->refcnt);
631 return sp;
632}
633
634extern void __secpath_destroy(struct sec_path *sp);
635
636static inline void
637secpath_put(struct sec_path *sp)
638{
639 if (sp && atomic_dec_and_test(&sp->refcnt))
640 __secpath_destroy(sp);
641}
642
643extern struct sec_path *secpath_dup(struct sec_path *src);
644
645static inline void
646secpath_reset(struct sk_buff *skb)
647{
648#ifdef CONFIG_XFRM
649 secpath_put(skb->sp);
650 skb->sp = NULL;
651#endif
652}
653
654static inline int
655__xfrm4_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x)
656{
657 return (tmpl->saddr.a4 &&
658 tmpl->saddr.a4 != x->props.saddr.a4);
659}
660
661static inline int
662__xfrm6_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x)
663{
664 return (!ipv6_addr_any((struct in6_addr*)&tmpl->saddr) &&
665 ipv6_addr_cmp((struct in6_addr *)&tmpl->saddr, (struct in6_addr*)&x->props.saddr));
666}
667
668static inline int
669xfrm_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x, unsigned short family)
670{
671 switch (family) {
672 case AF_INET:
673 return __xfrm4_state_addr_cmp(tmpl, x);
674 case AF_INET6:
675 return __xfrm6_state_addr_cmp(tmpl, x);
676 }
677 return !0;
678}
679
680#ifdef CONFIG_XFRM
681
682extern int __xfrm_policy_check(struct sock *, int dir, struct sk_buff *skb, unsigned short family);
683
684static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family)
685{
686 if (sk && sk->sk_policy[XFRM_POLICY_IN])
687 return __xfrm_policy_check(sk, dir, skb, family);
688
689 return (!xfrm_policy_list[dir] && !skb->sp) ||
690 (skb->dst->flags & DST_NOPOLICY) ||
691 __xfrm_policy_check(sk, dir, skb, family);
692}
693
694static inline int xfrm4_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
695{
696 return xfrm_policy_check(sk, dir, skb, AF_INET);
697}
698
699static inline int xfrm6_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
700{
701 return xfrm_policy_check(sk, dir, skb, AF_INET6);
702}
703
Patrick McHardy3e3850e2006-01-06 23:04:54 -0800704extern int xfrm_decode_session(struct sk_buff *skb, struct flowi *fl, unsigned short family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705extern int __xfrm_route_forward(struct sk_buff *skb, unsigned short family);
706
707static inline int xfrm_route_forward(struct sk_buff *skb, unsigned short family)
708{
709 return !xfrm_policy_list[XFRM_POLICY_OUT] ||
710 (skb->dst->flags & DST_NOXFRM) ||
711 __xfrm_route_forward(skb, family);
712}
713
714static inline int xfrm4_route_forward(struct sk_buff *skb)
715{
716 return xfrm_route_forward(skb, AF_INET);
717}
718
719static inline int xfrm6_route_forward(struct sk_buff *skb)
720{
721 return xfrm_route_forward(skb, AF_INET6);
722}
723
724extern int __xfrm_sk_clone_policy(struct sock *sk);
725
726static inline int xfrm_sk_clone_policy(struct sock *sk)
727{
728 if (unlikely(sk->sk_policy[0] || sk->sk_policy[1]))
729 return __xfrm_sk_clone_policy(sk);
730 return 0;
731}
732
Herbert Xu4666faa2005-06-18 22:43:22 -0700733extern int xfrm_policy_delete(struct xfrm_policy *pol, int dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735static inline void xfrm_sk_free_policy(struct sock *sk)
736{
737 if (unlikely(sk->sk_policy[0] != NULL)) {
738 xfrm_policy_delete(sk->sk_policy[0], XFRM_POLICY_MAX);
739 sk->sk_policy[0] = NULL;
740 }
741 if (unlikely(sk->sk_policy[1] != NULL)) {
742 xfrm_policy_delete(sk->sk_policy[1], XFRM_POLICY_MAX+1);
743 sk->sk_policy[1] = NULL;
744 }
745}
746
747#else
748
749static inline void xfrm_sk_free_policy(struct sock *sk) {}
750static inline int xfrm_sk_clone_policy(struct sock *sk) { return 0; }
751static inline int xfrm6_route_forward(struct sk_buff *skb) { return 1; }
752static inline int xfrm4_route_forward(struct sk_buff *skb) { return 1; }
753static inline int xfrm6_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
754{
755 return 1;
756}
757static inline int xfrm4_policy_check(struct sock *sk, int dir, struct sk_buff *skb)
758{
759 return 1;
760}
761static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family)
762{
763 return 1;
764}
765#endif
766
767static __inline__
768xfrm_address_t *xfrm_flowi_daddr(struct flowi *fl, unsigned short family)
769{
770 switch (family){
771 case AF_INET:
772 return (xfrm_address_t *)&fl->fl4_dst;
773 case AF_INET6:
774 return (xfrm_address_t *)&fl->fl6_dst;
775 }
776 return NULL;
777}
778
779static __inline__
780xfrm_address_t *xfrm_flowi_saddr(struct flowi *fl, unsigned short family)
781{
782 switch (family){
783 case AF_INET:
784 return (xfrm_address_t *)&fl->fl4_src;
785 case AF_INET6:
786 return (xfrm_address_t *)&fl->fl6_src;
787 }
788 return NULL;
789}
790
791static __inline__ int
792__xfrm4_state_addr_check(struct xfrm_state *x,
793 xfrm_address_t *daddr, xfrm_address_t *saddr)
794{
795 if (daddr->a4 == x->id.daddr.a4 &&
796 (saddr->a4 == x->props.saddr.a4 || !saddr->a4 || !x->props.saddr.a4))
797 return 1;
798 return 0;
799}
800
801static __inline__ int
802__xfrm6_state_addr_check(struct xfrm_state *x,
803 xfrm_address_t *daddr, xfrm_address_t *saddr)
804{
805 if (!ipv6_addr_cmp((struct in6_addr *)daddr, (struct in6_addr *)&x->id.daddr) &&
806 (!ipv6_addr_cmp((struct in6_addr *)saddr, (struct in6_addr *)&x->props.saddr)||
807 ipv6_addr_any((struct in6_addr *)saddr) ||
808 ipv6_addr_any((struct in6_addr *)&x->props.saddr)))
809 return 1;
810 return 0;
811}
812
813static __inline__ int
814xfrm_state_addr_check(struct xfrm_state *x,
815 xfrm_address_t *daddr, xfrm_address_t *saddr,
816 unsigned short family)
817{
818 switch (family) {
819 case AF_INET:
820 return __xfrm4_state_addr_check(x, daddr, saddr);
821 case AF_INET6:
822 return __xfrm6_state_addr_check(x, daddr, saddr);
823 }
824 return 0;
825}
826
827static inline int xfrm_state_kern(struct xfrm_state *x)
828{
829 return atomic_read(&x->tunnel_users);
830}
831
832/*
833 * xfrm algorithm information
834 */
835struct xfrm_algo_auth_info {
836 u16 icv_truncbits;
837 u16 icv_fullbits;
838};
839
840struct xfrm_algo_encr_info {
841 u16 blockbits;
842 u16 defkeybits;
843};
844
845struct xfrm_algo_comp_info {
846 u16 threshold;
847};
848
849struct xfrm_algo_desc {
850 char *name;
851 u8 available:1;
852 union {
853 struct xfrm_algo_auth_info auth;
854 struct xfrm_algo_encr_info encr;
855 struct xfrm_algo_comp_info comp;
856 } uinfo;
857 struct sadb_alg desc;
858};
859
860/* XFRM tunnel handlers. */
861struct xfrm_tunnel {
862 int (*handler)(struct sk_buff *skb);
Patrick McHardy03037702005-07-19 14:03:34 -0700863 void (*err_handler)(struct sk_buff *skb, __u32 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864};
865
866struct xfrm6_tunnel {
Patrick McHardy951dbc82006-01-06 23:02:34 -0800867 int (*handler)(struct sk_buff **pskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 void (*err_handler)(struct sk_buff *skb, struct inet6_skb_parm *opt,
869 int type, int code, int offset, __u32 info);
870};
871
872extern void xfrm_init(void);
873extern void xfrm4_init(void);
874extern void xfrm6_init(void);
875extern void xfrm6_fini(void);
876extern void xfrm_state_init(void);
877extern void xfrm4_state_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878extern void xfrm6_state_init(void);
879extern void xfrm6_state_fini(void);
880
881extern int xfrm_state_walk(u8 proto, int (*func)(struct xfrm_state *, int, void*), void *);
882extern struct xfrm_state *xfrm_state_alloc(void);
883extern struct xfrm_state *xfrm_state_find(xfrm_address_t *daddr, xfrm_address_t *saddr,
884 struct flowi *fl, struct xfrm_tmpl *tmpl,
885 struct xfrm_policy *pol, int *err,
886 unsigned short family);
887extern int xfrm_state_check_expire(struct xfrm_state *x);
888extern void xfrm_state_insert(struct xfrm_state *x);
889extern int xfrm_state_add(struct xfrm_state *x);
890extern int xfrm_state_update(struct xfrm_state *x);
891extern struct xfrm_state *xfrm_state_lookup(xfrm_address_t *daddr, u32 spi, u8 proto, unsigned short family);
892extern struct xfrm_state *xfrm_find_acq_byseq(u32 seq);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700893extern int xfrm_state_delete(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894extern void xfrm_state_flush(u8 proto);
895extern int xfrm_replay_check(struct xfrm_state *x, u32 seq);
896extern void xfrm_replay_advance(struct xfrm_state *x, u32 seq);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800897extern void xfrm_replay_notify(struct xfrm_state *x, int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898extern int xfrm_state_check(struct xfrm_state *x, struct sk_buff *skb);
899extern int xfrm_state_mtu(struct xfrm_state *x, int mtu);
Herbert Xu72cb6962005-06-20 13:18:08 -0700900extern int xfrm_init_state(struct xfrm_state *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901extern int xfrm4_rcv(struct sk_buff *skb);
902extern int xfrm4_output(struct sk_buff *skb);
903extern int xfrm4_tunnel_register(struct xfrm_tunnel *handler);
904extern int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler);
Patrick McHardy951dbc82006-01-06 23:02:34 -0800905extern int xfrm6_rcv_spi(struct sk_buff **pskb, u32 spi);
906extern int xfrm6_rcv(struct sk_buff **pskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907extern int xfrm6_tunnel_register(struct xfrm6_tunnel *handler);
908extern int xfrm6_tunnel_deregister(struct xfrm6_tunnel *handler);
909extern u32 xfrm6_tunnel_alloc_spi(xfrm_address_t *saddr);
910extern void xfrm6_tunnel_free_spi(xfrm_address_t *saddr);
911extern u32 xfrm6_tunnel_spi_lookup(xfrm_address_t *saddr);
912extern int xfrm6_output(struct sk_buff *skb);
913
914#ifdef CONFIG_XFRM
915extern int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type);
916extern int xfrm_user_policy(struct sock *sk, int optname, u8 __user *optval, int optlen);
917extern int xfrm_dst_lookup(struct xfrm_dst **dst, struct flowi *fl, unsigned short family);
918#else
919static inline int xfrm_user_policy(struct sock *sk, int optname, u8 __user *optval, int optlen)
920{
921 return -ENOPROTOOPT;
922}
923
924static inline int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type)
925{
926 /* should not happen */
927 kfree_skb(skb);
928 return 0;
929}
930static inline int xfrm_dst_lookup(struct xfrm_dst **dst, struct flowi *fl, unsigned short family)
931{
932 return -EINVAL;
933}
934#endif
935
Al Virodd0fc662005-10-07 07:46:04 +0100936struct xfrm_policy *xfrm_policy_alloc(gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937extern int xfrm_policy_walk(int (*func)(struct xfrm_policy *, int, int, void*), void *);
938int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl);
Trent Jaegerdf718372005-12-13 23:12:27 -0800939struct xfrm_policy *xfrm_policy_bysel_ctx(int dir, struct xfrm_selector *sel,
940 struct xfrm_sec_ctx *ctx, int delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941struct xfrm_policy *xfrm_policy_byid(int dir, u32 id, int delete);
942void xfrm_policy_flush(void);
943u32 xfrm_get_acqseq(void);
944void xfrm_alloc_spi(struct xfrm_state *x, u32 minspi, u32 maxspi);
945struct xfrm_state * xfrm_find_acq(u8 mode, u32 reqid, u8 proto,
946 xfrm_address_t *daddr, xfrm_address_t *saddr,
947 int create, unsigned short family);
948extern void xfrm_policy_flush(void);
949extern int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol);
950extern int xfrm_flush_bundles(void);
David S. Miller399c1802005-12-19 14:23:23 -0800951extern void xfrm_flush_all_bundles(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952extern int xfrm_bundle_ok(struct xfrm_dst *xdst, struct flowi *fl, int family);
953extern void xfrm_init_pmtu(struct dst_entry *dst);
954
955extern wait_queue_head_t km_waitq;
956extern int km_new_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, u16 sport);
957extern void km_policy_expired(struct xfrm_policy *pol, int dir, int hard);
958
959extern void xfrm_input_init(void);
960extern int xfrm_parse_spi(struct sk_buff *skb, u8 nexthdr, u32 *spi, u32 *seq);
961
962extern void xfrm_probe_algs(void);
963extern int xfrm_count_auth_supported(void);
964extern int xfrm_count_enc_supported(void);
965extern struct xfrm_algo_desc *xfrm_aalg_get_byidx(unsigned int idx);
966extern struct xfrm_algo_desc *xfrm_ealg_get_byidx(unsigned int idx);
967extern struct xfrm_algo_desc *xfrm_aalg_get_byid(int alg_id);
968extern struct xfrm_algo_desc *xfrm_ealg_get_byid(int alg_id);
969extern struct xfrm_algo_desc *xfrm_calg_get_byid(int alg_id);
970extern struct xfrm_algo_desc *xfrm_aalg_get_byname(char *name, int probe);
971extern struct xfrm_algo_desc *xfrm_ealg_get_byname(char *name, int probe);
972extern struct xfrm_algo_desc *xfrm_calg_get_byname(char *name, int probe);
973
974struct crypto_tfm;
975typedef void (icv_update_fn_t)(struct crypto_tfm *, struct scatterlist *, unsigned int);
976
977extern void skb_icv_walk(const struct sk_buff *skb, struct crypto_tfm *tfm,
978 int offset, int len, icv_update_fn_t icv_update);
979
980static inline int xfrm_addr_cmp(xfrm_address_t *a, xfrm_address_t *b,
981 int family)
982{
983 switch (family) {
984 default:
985 case AF_INET:
986 return a->a4 - b->a4;
987 case AF_INET6:
988 return ipv6_addr_cmp((struct in6_addr *)a,
989 (struct in6_addr *)b);
990 }
991}
992
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700993static inline int xfrm_policy_id2dir(u32 index)
994{
995 return index & 7;
996}
997
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -0800998static inline int xfrm_aevent_is_on(void)
999{
1000 return netlink_has_listeners(xfrm_nl,XFRMNLGRP_AEVENTS);
1001}
1002
1003static inline void xfrm_aevent_doreplay(struct xfrm_state *x)
1004{
1005 if (xfrm_aevent_is_on())
1006 xfrm_replay_notify(x, XFRM_REPLAY_UPDATE);
1007}
1008
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010#endif /* _NET_XFRM_H */