5 * Kazunori MIYAZAWA @USAGI
6 * YOSHIFUJI Hideaki @USAGI
7 * Split up af-specific portion
11 #include <linux/err.h>
12 #include <linux/kernel.h>
13 #include <linux/inetdevice.h>
14 #include <linux/if_tunnel.h>
19 static struct xfrm_policy_afinfo xfrm4_policy_afinfo
;
21 static struct dst_entry
*xfrm4_dst_lookup(struct net
*net
, int tos
,
22 xfrm_address_t
*saddr
,
23 xfrm_address_t
*daddr
)
29 struct dst_entry
*dst
;
34 fl
.fl4_src
= saddr
->a4
;
36 err
= __ip_route_output_key(net
, &rt
, &fl
);
43 static int xfrm4_get_saddr(struct net
*net
,
44 xfrm_address_t
*saddr
, xfrm_address_t
*daddr
)
46 struct dst_entry
*dst
;
49 dst
= xfrm4_dst_lookup(net
, 0, NULL
, daddr
);
53 rt
= (struct rtable
*)dst
;
54 saddr
->a4
= rt
->rt_src
;
59 static int xfrm4_get_tos(struct flowi
*fl
)
61 return IPTOS_RT_MASK
& fl
->fl4_tos
; /* Strip ECN bits */
64 static int xfrm4_init_path(struct xfrm_dst
*path
, struct dst_entry
*dst
,
70 static int xfrm4_fill_dst(struct xfrm_dst
*xdst
, struct net_device
*dev
,
73 struct rtable
*rt
= (struct rtable
*)xdst
->route
;
77 xdst
->u
.dst
.dev
= dev
;
80 xdst
->u
.rt
.peer
= rt
->peer
;
82 atomic_inc(&rt
->peer
->refcnt
);
84 /* Sheit... I remember I did this right. Apparently,
85 * it was magically lost, so this code needs audit */
86 xdst
->u
.rt
.rt_flags
= rt
->rt_flags
& (RTCF_BROADCAST
| RTCF_MULTICAST
|
88 xdst
->u
.rt
.rt_type
= rt
->rt_type
;
89 xdst
->u
.rt
.rt_src
= rt
->rt_src
;
90 xdst
->u
.rt
.rt_dst
= rt
->rt_dst
;
91 xdst
->u
.rt
.rt_gateway
= rt
->rt_gateway
;
92 xdst
->u
.rt
.rt_spec_dst
= rt
->rt_spec_dst
;
98 _decode_session4(struct sk_buff
*skb
, struct flowi
*fl
, int reverse
)
100 struct iphdr
*iph
= ip_hdr(skb
);
101 u8
*xprth
= skb_network_header(skb
) + iph
->ihl
* 4;
103 memset(fl
, 0, sizeof(struct flowi
));
104 fl
->mark
= skb
->mark
;
106 if (!(iph
->frag_off
& htons(IP_MF
| IP_OFFSET
))) {
107 switch (iph
->protocol
) {
109 case IPPROTO_UDPLITE
:
113 if (xprth
+ 4 < skb
->data
||
114 pskb_may_pull(skb
, xprth
+ 4 - skb
->data
)) {
115 __be16
*ports
= (__be16
*)xprth
;
117 fl
->fl_ip_sport
= ports
[!!reverse
];
118 fl
->fl_ip_dport
= ports
[!reverse
];
123 if (pskb_may_pull(skb
, xprth
+ 2 - skb
->data
)) {
126 fl
->fl_icmp_type
= icmp
[0];
127 fl
->fl_icmp_code
= icmp
[1];
132 if (pskb_may_pull(skb
, xprth
+ 4 - skb
->data
)) {
133 __be32
*ehdr
= (__be32
*)xprth
;
135 fl
->fl_ipsec_spi
= ehdr
[0];
140 if (pskb_may_pull(skb
, xprth
+ 8 - skb
->data
)) {
141 __be32
*ah_hdr
= (__be32
*)xprth
;
143 fl
->fl_ipsec_spi
= ah_hdr
[1];
148 if (pskb_may_pull(skb
, xprth
+ 4 - skb
->data
)) {
149 __be16
*ipcomp_hdr
= (__be16
*)xprth
;
151 fl
->fl_ipsec_spi
= htonl(ntohs(ipcomp_hdr
[1]));
156 if (pskb_may_pull(skb
, xprth
+ 12 - skb
->data
)) {
157 __be16
*greflags
= (__be16
*)xprth
;
158 __be32
*gre_hdr
= (__be32
*)xprth
;
160 if (greflags
[0] & GRE_KEY
) {
161 if (greflags
[0] & GRE_CSUM
)
163 fl
->fl_gre_key
= gre_hdr
[1];
169 fl
->fl_ipsec_spi
= 0;
173 fl
->proto
= iph
->protocol
;
174 fl
->fl4_dst
= reverse
? iph
->saddr
: iph
->daddr
;
175 fl
->fl4_src
= reverse
? iph
->daddr
: iph
->saddr
;
176 fl
->fl4_tos
= iph
->tos
;
179 static inline int xfrm4_garbage_collect(struct dst_ops
*ops
)
181 struct net
*net
= container_of(ops
, struct net
, xfrm
.xfrm4_dst_ops
);
183 xfrm4_policy_afinfo
.garbage_collect(net
);
184 return (dst_entries_get_slow(ops
) > ops
->gc_thresh
* 2);
187 static void xfrm4_update_pmtu(struct dst_entry
*dst
, u32 mtu
)
189 struct xfrm_dst
*xdst
= (struct xfrm_dst
*)dst
;
190 struct dst_entry
*path
= xdst
->route
;
192 path
->ops
->update_pmtu(path
, mtu
);
195 static void xfrm4_dst_destroy(struct dst_entry
*dst
)
197 struct xfrm_dst
*xdst
= (struct xfrm_dst
*)dst
;
199 if (likely(xdst
->u
.rt
.peer
))
200 inet_putpeer(xdst
->u
.rt
.peer
);
201 xfrm_dst_destroy(xdst
);
204 static void xfrm4_dst_ifdown(struct dst_entry
*dst
, struct net_device
*dev
,
210 xfrm_dst_ifdown(dst
, dev
);
213 static struct dst_ops xfrm4_dst_ops
= {
215 .protocol
= cpu_to_be16(ETH_P_IP
),
216 .gc
= xfrm4_garbage_collect
,
217 .update_pmtu
= xfrm4_update_pmtu
,
218 .destroy
= xfrm4_dst_destroy
,
219 .ifdown
= xfrm4_dst_ifdown
,
220 .local_out
= __ip_local_out
,
224 static struct xfrm_policy_afinfo xfrm4_policy_afinfo
= {
226 .dst_ops
= &xfrm4_dst_ops
,
227 .dst_lookup
= xfrm4_dst_lookup
,
228 .get_saddr
= xfrm4_get_saddr
,
229 .decode_session
= _decode_session4
,
230 .get_tos
= xfrm4_get_tos
,
231 .init_path
= xfrm4_init_path
,
232 .fill_dst
= xfrm4_fill_dst
,
236 static struct ctl_table xfrm4_policy_table
[] = {
238 .procname
= "xfrm4_gc_thresh",
239 .data
= &init_net
.xfrm
.xfrm4_dst_ops
.gc_thresh
,
240 .maxlen
= sizeof(int),
242 .proc_handler
= proc_dointvec
,
247 static struct ctl_table_header
*sysctl_hdr
;
250 static void __init
xfrm4_policy_init(void)
252 xfrm_policy_register_afinfo(&xfrm4_policy_afinfo
);
255 static void __exit
xfrm4_policy_fini(void)
259 unregister_net_sysctl_table(sysctl_hdr
);
261 xfrm_policy_unregister_afinfo(&xfrm4_policy_afinfo
);
264 void __init
xfrm4_init(int rt_max_size
)
267 * Select a default value for the gc_thresh based on the main route
268 * table hash size. It seems to me the worst case scenario is when
269 * we have ipsec operating in transport mode, in which we create a
270 * dst_entry per socket. The xfrm gc algorithm starts trying to remove
271 * entries at gc_thresh, and prevents new allocations as 2*gc_thresh
272 * so lets set an initial xfrm gc_thresh value at the rt_max_size/2.
273 * That will let us store an ipsec connection per route table entry,
274 * and start cleaning when were 1/2 full
276 xfrm4_dst_ops
.gc_thresh
= rt_max_size
/2;
277 dst_entries_init(&xfrm4_dst_ops
);
282 sysctl_hdr
= register_net_sysctl_table(&init_net
, net_ipv4_ctl_path
,