Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * xfrm4_input.c |
| 3 | * |
| 4 | * Changes: |
| 5 | * YOSHIFUJI Hideaki @USAGI |
| 6 | * Split up af-specific portion |
| 7 | * Derek Atkins <derek@ihtfp.com> |
| 8 | * Add Encapsulation support |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/string.h> |
Patrick McHardy | b05e106 | 2006-01-06 23:03:34 -0800 | [diff] [blame] | 14 | #include <linux/netfilter.h> |
| 15 | #include <linux/netfilter_ipv4.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <net/ip.h> |
| 17 | #include <net/xfrm.h> |
| 18 | |
Herbert Xu | 227620e | 2007-11-13 21:41:28 -0800 | [diff] [blame^] | 19 | int xfrm4_extract_input(struct xfrm_state *x, struct sk_buff *skb) |
| 20 | { |
| 21 | return xfrm4_extract_header(skb); |
| 22 | } |
| 23 | |
Patrick McHardy | b05e106 | 2006-01-06 23:03:34 -0800 | [diff] [blame] | 24 | #ifdef CONFIG_NETFILTER |
| 25 | static inline int xfrm4_rcv_encap_finish(struct sk_buff *skb) |
| 26 | { |
Patrick McHardy | b05e106 | 2006-01-06 23:03:34 -0800 | [diff] [blame] | 27 | if (skb->dst == NULL) { |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 28 | const struct iphdr *iph = ip_hdr(skb); |
| 29 | |
Patrick McHardy | b05e106 | 2006-01-06 23:03:34 -0800 | [diff] [blame] | 30 | if (ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 31 | skb->dev)) |
Patrick McHardy | b05e106 | 2006-01-06 23:03:34 -0800 | [diff] [blame] | 32 | goto drop; |
| 33 | } |
| 34 | return dst_input(skb); |
| 35 | drop: |
| 36 | kfree_skb(skb); |
| 37 | return NET_RX_DROP; |
| 38 | } |
| 39 | #endif |
| 40 | |
Herbert Xu | c4541b4 | 2007-10-17 21:28:53 -0700 | [diff] [blame] | 41 | int xfrm4_rcv_encap(struct sk_buff *skb, int nexthdr, __be32 spi, |
| 42 | int encap_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { |
Herbert Xu | c4541b4 | 2007-10-17 21:28:53 -0700 | [diff] [blame] | 44 | int err; |
| 45 | __be32 seq; |
Herbert Xu | dbe5b4a | 2006-04-01 00:54:16 -0800 | [diff] [blame] | 46 | struct xfrm_state *xfrm_vec[XFRM_MAX_DEPTH]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | struct xfrm_state *x; |
| 48 | int xfrm_nr = 0; |
| 49 | int decaps = 0; |
Herbert Xu | 631a669 | 2007-10-10 15:46:21 -0700 | [diff] [blame] | 50 | unsigned int nhoff = offsetof(struct iphdr, protocol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Herbert Xu | c4541b4 | 2007-10-17 21:28:53 -0700 | [diff] [blame] | 52 | seq = 0; |
| 53 | if (!spi && (err = xfrm_parse_spi(skb, nexthdr, &spi, &seq)) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | goto drop; |
| 55 | |
| 56 | do { |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 57 | const struct iphdr *iph = ip_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | if (xfrm_nr == XFRM_MAX_DEPTH) |
| 60 | goto drop; |
| 61 | |
Kazunori MIYAZAWA | c0d5640 | 2007-02-13 12:54:47 -0800 | [diff] [blame] | 62 | x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, spi, |
Herbert Xu | c4541b4 | 2007-10-17 21:28:53 -0700 | [diff] [blame] | 63 | nexthdr, AF_INET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | if (x == NULL) |
| 65 | goto drop; |
| 66 | |
| 67 | spin_lock(&x->lock); |
| 68 | if (unlikely(x->km.state != XFRM_STATE_VALID)) |
| 69 | goto drop_unlock; |
| 70 | |
Herbert Xu | 8bf4b8a | 2006-04-04 12:51:05 -0700 | [diff] [blame] | 71 | if ((x->encap ? x->encap->encap_type : 0) != encap_type) |
Herbert Xu | e695633 | 2006-04-01 00:52:46 -0800 | [diff] [blame] | 72 | goto drop_unlock; |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | if (x->props.replay_window && xfrm_replay_check(x, seq)) |
| 75 | goto drop_unlock; |
| 76 | |
| 77 | if (xfrm_state_check_expire(x)) |
| 78 | goto drop_unlock; |
| 79 | |
Herbert Xu | 631a669 | 2007-10-10 15:46:21 -0700 | [diff] [blame] | 80 | nexthdr = x->type->input(x, skb); |
| 81 | if (nexthdr <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | goto drop_unlock; |
| 83 | |
Herbert Xu | 631a669 | 2007-10-10 15:46:21 -0700 | [diff] [blame] | 84 | skb_network_header(skb)[nhoff] = nexthdr; |
| 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | /* only the first xfrm gets the encap type */ |
| 87 | encap_type = 0; |
| 88 | |
| 89 | if (x->props.replay_window) |
| 90 | xfrm_replay_advance(x, seq); |
| 91 | |
| 92 | x->curlft.bytes += skb->len; |
| 93 | x->curlft.packets++; |
| 94 | |
| 95 | spin_unlock(&x->lock); |
| 96 | |
Herbert Xu | dbe5b4a | 2006-04-01 00:54:16 -0800 | [diff] [blame] | 97 | xfrm_vec[xfrm_nr++] = x; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
Herbert Xu | 227620e | 2007-11-13 21:41:28 -0800 | [diff] [blame^] | 99 | if (x->inner_mode->input(x, skb)) |
Herbert Xu | b59f45d | 2006-05-27 23:05:54 -0700 | [diff] [blame] | 100 | goto drop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Herbert Xu | 1399637 | 2007-10-17 21:35:51 -0700 | [diff] [blame] | 102 | if (x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | decaps = 1; |
| 104 | break; |
| 105 | } |
| 106 | |
Herbert Xu | c4541b4 | 2007-10-17 21:28:53 -0700 | [diff] [blame] | 107 | err = xfrm_parse_spi(skb, nexthdr, &spi, &seq); |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 108 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | goto drop; |
| 110 | } while (!err); |
| 111 | |
| 112 | /* Allocate new secpath or COW existing one. */ |
| 113 | |
| 114 | if (!skb->sp || atomic_read(&skb->sp->refcnt) != 1) { |
| 115 | struct sec_path *sp; |
| 116 | sp = secpath_dup(skb->sp); |
| 117 | if (!sp) |
| 118 | goto drop; |
| 119 | if (skb->sp) |
| 120 | secpath_put(skb->sp); |
| 121 | skb->sp = sp; |
| 122 | } |
| 123 | if (xfrm_nr + skb->sp->len > XFRM_MAX_DEPTH) |
| 124 | goto drop; |
| 125 | |
Herbert Xu | dbe5b4a | 2006-04-01 00:54:16 -0800 | [diff] [blame] | 126 | memcpy(skb->sp->xvec + skb->sp->len, xfrm_vec, |
| 127 | xfrm_nr * sizeof(xfrm_vec[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | skb->sp->len += xfrm_nr; |
| 129 | |
Patrick McHardy | b05e106 | 2006-01-06 23:03:34 -0800 | [diff] [blame] | 130 | nf_reset(skb); |
| 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | if (decaps) { |
Kazunori MIYAZAWA | f282d45 | 2007-05-29 13:03:17 -0700 | [diff] [blame] | 133 | dst_release(skb->dst); |
| 134 | skb->dst = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | netif_rx(skb); |
| 136 | return 0; |
| 137 | } else { |
Patrick McHardy | b05e106 | 2006-01-06 23:03:34 -0800 | [diff] [blame] | 138 | #ifdef CONFIG_NETFILTER |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 139 | __skb_push(skb, skb->data - skb_network_header(skb)); |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 140 | ip_hdr(skb)->tot_len = htons(skb->len); |
| 141 | ip_send_check(ip_hdr(skb)); |
Patrick McHardy | b05e106 | 2006-01-06 23:03:34 -0800 | [diff] [blame] | 142 | |
| 143 | NF_HOOK(PF_INET, NF_IP_PRE_ROUTING, skb, skb->dev, NULL, |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 144 | xfrm4_rcv_encap_finish); |
Patrick McHardy | b05e106 | 2006-01-06 23:03:34 -0800 | [diff] [blame] | 145 | return 0; |
| 146 | #else |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 147 | return -ip_hdr(skb)->protocol; |
Patrick McHardy | b05e106 | 2006-01-06 23:03:34 -0800 | [diff] [blame] | 148 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | drop_unlock: |
| 152 | spin_unlock(&x->lock); |
| 153 | xfrm_state_put(x); |
| 154 | drop: |
| 155 | while (--xfrm_nr >= 0) |
Herbert Xu | dbe5b4a | 2006-04-01 00:54:16 -0800 | [diff] [blame] | 156 | xfrm_state_put(xfrm_vec[xfrm_nr]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | kfree_skb(skb); |
| 159 | return 0; |
| 160 | } |
Herbert Xu | c4541b4 | 2007-10-17 21:28:53 -0700 | [diff] [blame] | 161 | EXPORT_SYMBOL(xfrm4_rcv_encap); |
James Chapman | 067b207 | 2007-07-05 17:08:05 -0700 | [diff] [blame] | 162 | |
| 163 | /* If it's a keepalive packet, then just eat it. |
| 164 | * If it's an encapsulated packet, then pass it to the |
| 165 | * IPsec xfrm input. |
| 166 | * Returns 0 if skb passed to xfrm or was dropped. |
| 167 | * Returns >0 if skb should be passed to UDP. |
| 168 | * Returns <0 if skb should be resubmitted (-ret is protocol) |
| 169 | */ |
| 170 | int xfrm4_udp_encap_rcv(struct sock *sk, struct sk_buff *skb) |
| 171 | { |
| 172 | struct udp_sock *up = udp_sk(sk); |
| 173 | struct udphdr *uh; |
| 174 | struct iphdr *iph; |
| 175 | int iphlen, len; |
| 176 | int ret; |
| 177 | |
| 178 | __u8 *udpdata; |
| 179 | __be32 *udpdata32; |
| 180 | __u16 encap_type = up->encap_type; |
| 181 | |
| 182 | /* if this is not encapsulated socket, then just return now */ |
| 183 | if (!encap_type) |
| 184 | return 1; |
| 185 | |
| 186 | /* If this is a paged skb, make sure we pull up |
| 187 | * whatever data we need to look at. */ |
| 188 | len = skb->len - sizeof(struct udphdr); |
| 189 | if (!pskb_may_pull(skb, sizeof(struct udphdr) + min(len, 8))) |
| 190 | return 1; |
| 191 | |
| 192 | /* Now we can get the pointers */ |
| 193 | uh = udp_hdr(skb); |
| 194 | udpdata = (__u8 *)uh + sizeof(struct udphdr); |
| 195 | udpdata32 = (__be32 *)udpdata; |
| 196 | |
| 197 | switch (encap_type) { |
| 198 | default: |
| 199 | case UDP_ENCAP_ESPINUDP: |
| 200 | /* Check if this is a keepalive packet. If so, eat it. */ |
| 201 | if (len == 1 && udpdata[0] == 0xff) { |
| 202 | goto drop; |
| 203 | } else if (len > sizeof(struct ip_esp_hdr) && udpdata32[0] != 0) { |
| 204 | /* ESP Packet without Non-ESP header */ |
| 205 | len = sizeof(struct udphdr); |
| 206 | } else |
| 207 | /* Must be an IKE packet.. pass it through */ |
| 208 | return 1; |
| 209 | break; |
| 210 | case UDP_ENCAP_ESPINUDP_NON_IKE: |
| 211 | /* Check if this is a keepalive packet. If so, eat it. */ |
| 212 | if (len == 1 && udpdata[0] == 0xff) { |
| 213 | goto drop; |
| 214 | } else if (len > 2 * sizeof(u32) + sizeof(struct ip_esp_hdr) && |
| 215 | udpdata32[0] == 0 && udpdata32[1] == 0) { |
| 216 | |
| 217 | /* ESP Packet with Non-IKE marker */ |
| 218 | len = sizeof(struct udphdr) + 2 * sizeof(u32); |
| 219 | } else |
| 220 | /* Must be an IKE packet.. pass it through */ |
| 221 | return 1; |
| 222 | break; |
| 223 | } |
| 224 | |
| 225 | /* At this point we are sure that this is an ESPinUDP packet, |
| 226 | * so we need to remove 'len' bytes from the packet (the UDP |
| 227 | * header and optional ESP marker bytes) and then modify the |
| 228 | * protocol to ESP, and then call into the transform receiver. |
| 229 | */ |
| 230 | if (skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) |
| 231 | goto drop; |
| 232 | |
| 233 | /* Now we can update and verify the packet length... */ |
| 234 | iph = ip_hdr(skb); |
| 235 | iphlen = iph->ihl << 2; |
| 236 | iph->tot_len = htons(ntohs(iph->tot_len) - len); |
| 237 | if (skb->len < iphlen + len) { |
| 238 | /* packet is too small!?! */ |
| 239 | goto drop; |
| 240 | } |
| 241 | |
| 242 | /* pull the data buffer up to the ESP header and set the |
| 243 | * transport header to point to ESP. Keep UDP on the stack |
| 244 | * for later. |
| 245 | */ |
| 246 | __skb_pull(skb, len); |
| 247 | skb_reset_transport_header(skb); |
| 248 | |
James Chapman | 067b207 | 2007-07-05 17:08:05 -0700 | [diff] [blame] | 249 | /* process ESP */ |
Herbert Xu | c4541b4 | 2007-10-17 21:28:53 -0700 | [diff] [blame] | 250 | ret = xfrm4_rcv_encap(skb, IPPROTO_ESP, 0, encap_type); |
James Chapman | 067b207 | 2007-07-05 17:08:05 -0700 | [diff] [blame] | 251 | return ret; |
| 252 | |
| 253 | drop: |
| 254 | kfree_skb(skb); |
| 255 | return 0; |
| 256 | } |
| 257 | |
| 258 | int xfrm4_rcv(struct sk_buff *skb) |
| 259 | { |
Herbert Xu | c4541b4 | 2007-10-17 21:28:53 -0700 | [diff] [blame] | 260 | return xfrm4_rcv_spi(skb, ip_hdr(skb)->protocol, 0); |
James Chapman | 067b207 | 2007-07-05 17:08:05 -0700 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | EXPORT_SYMBOL(xfrm4_rcv); |