]>
Commit | Line | Data |
---|---|---|
e905a9ed | 1 | /* |
1da177e4 LT |
2 | * xfrm4_policy.c |
3 | * | |
4 | * Changes: | |
5 | * Kazunori MIYAZAWA @USAGI | |
6 | * YOSHIFUJI Hideaki @USAGI | |
7 | * Split up af-specific portion | |
e905a9ed | 8 | * |
1da177e4 LT |
9 | */ |
10 | ||
66cdb3ca HX |
11 | #include <linux/err.h> |
12 | #include <linux/kernel.h> | |
aabc9761 | 13 | #include <linux/inetdevice.h> |
45ff5a3f | 14 | #include <net/dst.h> |
1da177e4 LT |
15 | #include <net/xfrm.h> |
16 | #include <net/ip.h> | |
17 | ||
18 | static struct dst_ops xfrm4_dst_ops; | |
19 | static struct xfrm_policy_afinfo xfrm4_policy_afinfo; | |
20 | ||
66cdb3ca HX |
21 | static struct dst_entry *xfrm4_dst_lookup(int tos, xfrm_address_t *saddr, |
22 | xfrm_address_t *daddr) | |
1da177e4 | 23 | { |
66cdb3ca | 24 | struct flowi fl = { |
a1e59abf PM |
25 | .nl_u = { |
26 | .ip4_u = { | |
66cdb3ca | 27 | .tos = tos, |
a1e59abf PM |
28 | .daddr = daddr->a4, |
29 | }, | |
30 | }, | |
31 | }; | |
66cdb3ca HX |
32 | struct dst_entry *dst; |
33 | struct rtable *rt; | |
34 | int err; | |
a1e59abf | 35 | |
66cdb3ca HX |
36 | if (saddr) |
37 | fl.fl4_src = saddr->a4; | |
38 | ||
39 | err = __ip_route_output_key(&rt, &fl); | |
40 | dst = &rt->u.dst; | |
41 | if (err) | |
42 | dst = ERR_PTR(err); | |
43 | return dst; | |
44 | } | |
45 | ||
46 | static int xfrm4_get_saddr(xfrm_address_t *saddr, xfrm_address_t *daddr) | |
47 | { | |
48 | struct dst_entry *dst; | |
49 | struct rtable *rt; | |
50 | ||
51 | dst = xfrm4_dst_lookup(0, NULL, daddr); | |
52 | if (IS_ERR(dst)) | |
53 | return -EHOSTUNREACH; | |
54 | ||
55 | rt = (struct rtable *)dst; | |
56 | saddr->a4 = rt->rt_src; | |
57 | dst_release(dst); | |
58 | return 0; | |
a1e59abf PM |
59 | } |
60 | ||
1da177e4 LT |
61 | static struct dst_entry * |
62 | __xfrm4_find_bundle(struct flowi *fl, struct xfrm_policy *policy) | |
63 | { | |
64 | struct dst_entry *dst; | |
65 | ||
66 | read_lock_bh(&policy->lock); | |
67 | for (dst = policy->bundles; dst; dst = dst->next) { | |
68 | struct xfrm_dst *xdst = (struct xfrm_dst*)dst; | |
69 | if (xdst->u.rt.fl.oif == fl->oif && /*XXX*/ | |
70 | xdst->u.rt.fl.fl4_dst == fl->fl4_dst && | |
e905a9ed YH |
71 | xdst->u.rt.fl.fl4_src == fl->fl4_src && |
72 | xdst->u.rt.fl.fl4_tos == fl->fl4_tos && | |
5b368e61 | 73 | xfrm_bundle_ok(policy, xdst, fl, AF_INET, 0)) { |
1da177e4 LT |
74 | dst_clone(dst); |
75 | break; | |
76 | } | |
77 | } | |
78 | read_unlock_bh(&policy->lock); | |
79 | return dst; | |
80 | } | |
81 | ||
25ee3286 | 82 | static int xfrm4_get_tos(struct flowi *fl) |
1da177e4 | 83 | { |
25ee3286 HX |
84 | return fl->fl4_tos; |
85 | } | |
1da177e4 | 86 | |
25ee3286 HX |
87 | static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev) |
88 | { | |
89 | struct rtable *rt = (struct rtable *)xdst->route; | |
1da177e4 | 90 | |
25ee3286 | 91 | xdst->u.rt.fl = rt->fl; |
1da177e4 | 92 | |
25ee3286 HX |
93 | xdst->u.dst.dev = dev; |
94 | dev_hold(dev); | |
43372262 | 95 | |
25ee3286 HX |
96 | xdst->u.rt.idev = in_dev_get(dev); |
97 | if (!xdst->u.rt.idev) | |
98 | return -ENODEV; | |
1da177e4 | 99 | |
25ee3286 HX |
100 | xdst->u.rt.peer = rt->peer; |
101 | if (rt->peer) | |
102 | atomic_inc(&rt->peer->refcnt); | |
66cdb3ca | 103 | |
25ee3286 HX |
104 | /* Sheit... I remember I did this right. Apparently, |
105 | * it was magically lost, so this code needs audit */ | |
106 | xdst->u.rt.rt_flags = rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST | | |
107 | RTCF_LOCAL); | |
108 | xdst->u.rt.rt_type = rt->rt_type; | |
109 | xdst->u.rt.rt_src = rt->rt_src; | |
110 | xdst->u.rt.rt_dst = rt->rt_dst; | |
111 | xdst->u.rt.rt_gateway = rt->rt_gateway; | |
112 | xdst->u.rt.rt_spec_dst = rt->rt_spec_dst; | |
1da177e4 | 113 | |
1da177e4 | 114 | return 0; |
1da177e4 LT |
115 | } |
116 | ||
117 | static void | |
118 | _decode_session4(struct sk_buff *skb, struct flowi *fl) | |
119 | { | |
eddc9ec5 | 120 | struct iphdr *iph = ip_hdr(skb); |
d56f90a7 | 121 | u8 *xprth = skb_network_header(skb) + iph->ihl * 4; |
1da177e4 LT |
122 | |
123 | memset(fl, 0, sizeof(struct flowi)); | |
124 | if (!(iph->frag_off & htons(IP_MF | IP_OFFSET))) { | |
125 | switch (iph->protocol) { | |
126 | case IPPROTO_UDP: | |
ba4e58ec | 127 | case IPPROTO_UDPLITE: |
1da177e4 LT |
128 | case IPPROTO_TCP: |
129 | case IPPROTO_SCTP: | |
9e999993 | 130 | case IPPROTO_DCCP: |
1da177e4 | 131 | if (pskb_may_pull(skb, xprth + 4 - skb->data)) { |
8c689a6e | 132 | __be16 *ports = (__be16 *)xprth; |
1da177e4 LT |
133 | |
134 | fl->fl_ip_sport = ports[0]; | |
135 | fl->fl_ip_dport = ports[1]; | |
136 | } | |
137 | break; | |
138 | ||
139 | case IPPROTO_ICMP: | |
140 | if (pskb_may_pull(skb, xprth + 2 - skb->data)) { | |
141 | u8 *icmp = xprth; | |
142 | ||
143 | fl->fl_icmp_type = icmp[0]; | |
144 | fl->fl_icmp_code = icmp[1]; | |
145 | } | |
146 | break; | |
147 | ||
148 | case IPPROTO_ESP: | |
149 | if (pskb_may_pull(skb, xprth + 4 - skb->data)) { | |
4324a174 | 150 | __be32 *ehdr = (__be32 *)xprth; |
1da177e4 LT |
151 | |
152 | fl->fl_ipsec_spi = ehdr[0]; | |
153 | } | |
154 | break; | |
155 | ||
156 | case IPPROTO_AH: | |
157 | if (pskb_may_pull(skb, xprth + 8 - skb->data)) { | |
4324a174 | 158 | __be32 *ah_hdr = (__be32*)xprth; |
1da177e4 LT |
159 | |
160 | fl->fl_ipsec_spi = ah_hdr[1]; | |
161 | } | |
162 | break; | |
163 | ||
164 | case IPPROTO_COMP: | |
165 | if (pskb_may_pull(skb, xprth + 4 - skb->data)) { | |
4324a174 | 166 | __be16 *ipcomp_hdr = (__be16 *)xprth; |
1da177e4 | 167 | |
4195f814 | 168 | fl->fl_ipsec_spi = htonl(ntohs(ipcomp_hdr[1])); |
1da177e4 LT |
169 | } |
170 | break; | |
171 | default: | |
172 | fl->fl_ipsec_spi = 0; | |
173 | break; | |
3ff50b79 | 174 | } |
1da177e4 LT |
175 | } |
176 | fl->proto = iph->protocol; | |
177 | fl->fl4_dst = iph->daddr; | |
178 | fl->fl4_src = iph->saddr; | |
4da3089f | 179 | fl->fl4_tos = iph->tos; |
1da177e4 LT |
180 | } |
181 | ||
182 | static inline int xfrm4_garbage_collect(void) | |
183 | { | |
1da177e4 | 184 | xfrm4_policy_afinfo.garbage_collect(); |
1da177e4 LT |
185 | return (atomic_read(&xfrm4_dst_ops.entries) > xfrm4_dst_ops.gc_thresh*2); |
186 | } | |
187 | ||
188 | static void xfrm4_update_pmtu(struct dst_entry *dst, u32 mtu) | |
189 | { | |
190 | struct xfrm_dst *xdst = (struct xfrm_dst *)dst; | |
191 | struct dst_entry *path = xdst->route; | |
192 | ||
193 | path->ops->update_pmtu(path, mtu); | |
194 | } | |
195 | ||
aabc9761 HX |
196 | static void xfrm4_dst_destroy(struct dst_entry *dst) |
197 | { | |
198 | struct xfrm_dst *xdst = (struct xfrm_dst *)dst; | |
199 | ||
200 | if (likely(xdst->u.rt.idev)) | |
201 | in_dev_put(xdst->u.rt.idev); | |
ed3e37dd | 202 | if (likely(xdst->u.rt.peer)) |
26db1677 | 203 | inet_putpeer(xdst->u.rt.peer); |
aabc9761 HX |
204 | xfrm_dst_destroy(xdst); |
205 | } | |
206 | ||
207 | static void xfrm4_dst_ifdown(struct dst_entry *dst, struct net_device *dev, | |
208 | int unregister) | |
209 | { | |
210 | struct xfrm_dst *xdst; | |
211 | ||
212 | if (!unregister) | |
213 | return; | |
214 | ||
215 | xdst = (struct xfrm_dst *)dst; | |
216 | if (xdst->u.rt.idev->dev == dev) { | |
5a3e55d6 DL |
217 | struct in_device *loopback_idev = |
218 | in_dev_get(dev->nd_net->loopback_dev); | |
aabc9761 HX |
219 | BUG_ON(!loopback_idev); |
220 | ||
221 | do { | |
222 | in_dev_put(xdst->u.rt.idev); | |
223 | xdst->u.rt.idev = loopback_idev; | |
224 | in_dev_hold(loopback_idev); | |
225 | xdst = (struct xfrm_dst *)xdst->u.dst.child; | |
226 | } while (xdst->u.dst.xfrm); | |
227 | ||
228 | __in_dev_put(loopback_idev); | |
229 | } | |
230 | ||
231 | xfrm_dst_ifdown(dst, dev); | |
232 | } | |
233 | ||
1da177e4 LT |
234 | static struct dst_ops xfrm4_dst_ops = { |
235 | .family = AF_INET, | |
236 | .protocol = __constant_htons(ETH_P_IP), | |
237 | .gc = xfrm4_garbage_collect, | |
238 | .update_pmtu = xfrm4_update_pmtu, | |
aabc9761 HX |
239 | .destroy = xfrm4_dst_destroy, |
240 | .ifdown = xfrm4_dst_ifdown, | |
862b82c6 | 241 | .local_out = __ip_local_out, |
1da177e4 LT |
242 | .gc_thresh = 1024, |
243 | .entry_size = sizeof(struct xfrm_dst), | |
244 | }; | |
245 | ||
246 | static struct xfrm_policy_afinfo xfrm4_policy_afinfo = { | |
247 | .family = AF_INET, | |
1da177e4 LT |
248 | .dst_ops = &xfrm4_dst_ops, |
249 | .dst_lookup = xfrm4_dst_lookup, | |
a1e59abf | 250 | .get_saddr = xfrm4_get_saddr, |
1da177e4 | 251 | .find_bundle = __xfrm4_find_bundle, |
1da177e4 | 252 | .decode_session = _decode_session4, |
25ee3286 HX |
253 | .get_tos = xfrm4_get_tos, |
254 | .fill_dst = xfrm4_fill_dst, | |
1da177e4 LT |
255 | }; |
256 | ||
257 | static void __init xfrm4_policy_init(void) | |
258 | { | |
259 | xfrm_policy_register_afinfo(&xfrm4_policy_afinfo); | |
260 | } | |
261 | ||
262 | static void __exit xfrm4_policy_fini(void) | |
263 | { | |
264 | xfrm_policy_unregister_afinfo(&xfrm4_policy_afinfo); | |
265 | } | |
266 | ||
267 | void __init xfrm4_init(void) | |
268 | { | |
269 | xfrm4_state_init(); | |
270 | xfrm4_policy_init(); | |
271 | } | |
272 |