Diego Beltrami | 0a69452 | 2006-10-03 23:47:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * xfrm4_mode_beet.c - BEET mode encapsulation for IPv4. |
| 3 | * |
| 4 | * Copyright (c) 2006 Diego Beltrami <diego.beltrami@gmail.com> |
| 5 | * Miika Komu <miika@iki.fi> |
| 6 | * Herbert Xu <herbert@gondor.apana.org.au> |
| 7 | * Abhinav Pathak <abhinav.pathak@hiit.fi> |
| 8 | * Jeff Ahrenholz <ahrenholz@gmail.com> |
| 9 | */ |
| 10 | |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/skbuff.h> |
| 15 | #include <linux/stringify.h> |
| 16 | #include <net/dst.h> |
| 17 | #include <net/ip.h> |
| 18 | #include <net/xfrm.h> |
| 19 | |
| 20 | /* Add encapsulation header. |
| 21 | * |
| 22 | * The top IP header will be constructed per draft-nikander-esp-beet-mode-06.txt. |
| 23 | * The following fields in it shall be filled in by x->type->output: |
| 24 | * tot_len |
| 25 | * check |
| 26 | * |
| 27 | * On exit, skb->h will be set to the start of the payload to be processed |
| 28 | * by x->type->output and skb->nh will be set to the top IP header. |
| 29 | */ |
| 30 | static int xfrm4_beet_output(struct xfrm_state *x, struct sk_buff *skb) |
| 31 | { |
| 32 | struct iphdr *iph, *top_iph = NULL; |
| 33 | int hdrlen, optlen; |
| 34 | |
| 35 | iph = skb->nh.iph; |
| 36 | skb->h.ipiph = iph; |
| 37 | |
| 38 | hdrlen = 0; |
| 39 | optlen = iph->ihl * 4 - sizeof(*iph); |
| 40 | if (unlikely(optlen)) |
| 41 | hdrlen += IPV4_BEET_PHMAXLEN - (optlen & 4); |
| 42 | |
| 43 | skb->nh.raw = skb_push(skb, x->props.header_len + hdrlen); |
| 44 | top_iph = skb->nh.iph; |
Patrick McHardy | c5027c9 | 2007-04-05 15:54:02 -0700 | [diff] [blame] | 45 | skb->h.raw += sizeof(*iph) - hdrlen; |
Diego Beltrami | 0a69452 | 2006-10-03 23:47:05 -0700 | [diff] [blame] | 46 | |
Patrick McHardy | c5027c9 | 2007-04-05 15:54:02 -0700 | [diff] [blame] | 47 | memmove(top_iph, iph, sizeof(*iph)); |
Diego Beltrami | 0a69452 | 2006-10-03 23:47:05 -0700 | [diff] [blame] | 48 | if (unlikely(optlen)) { |
| 49 | struct ip_beet_phdr *ph; |
| 50 | |
| 51 | BUG_ON(optlen < 0); |
| 52 | |
| 53 | ph = (struct ip_beet_phdr *)skb->h.raw; |
| 54 | ph->padlen = 4 - (optlen & 4); |
| 55 | ph->hdrlen = (optlen + ph->padlen + sizeof(*ph)) / 8; |
| 56 | ph->nexthdr = top_iph->protocol; |
Patrick McHardy | 04fef98 | 2007-04-05 15:54:39 -0700 | [diff] [blame] | 57 | if (ph->padlen) |
| 58 | memset(ph + 1, IPOPT_NOP, ph->padlen); |
Diego Beltrami | 0a69452 | 2006-10-03 23:47:05 -0700 | [diff] [blame] | 59 | |
| 60 | top_iph->protocol = IPPROTO_BEETPH; |
| 61 | top_iph->ihl = sizeof(struct iphdr) / 4; |
| 62 | } |
| 63 | |
| 64 | top_iph->saddr = x->props.saddr.a4; |
| 65 | top_iph->daddr = x->id.daddr.a4; |
| 66 | |
| 67 | return 0; |
| 68 | } |
| 69 | |
| 70 | static int xfrm4_beet_input(struct xfrm_state *x, struct sk_buff *skb) |
| 71 | { |
| 72 | struct iphdr *iph = skb->nh.iph; |
| 73 | int phlen = 0; |
| 74 | int optlen = 0; |
| 75 | __u8 ph_nexthdr = 0, protocol = 0; |
| 76 | int err = -EINVAL; |
| 77 | |
| 78 | protocol = iph->protocol; |
| 79 | |
| 80 | if (unlikely(iph->protocol == IPPROTO_BEETPH)) { |
| 81 | struct ip_beet_phdr *ph = (struct ip_beet_phdr*)(iph + 1); |
| 82 | |
| 83 | if (!pskb_may_pull(skb, sizeof(*ph))) |
| 84 | goto out; |
| 85 | |
Patrick McHardy | d4b1e84 | 2007-04-05 15:59:41 -0700 | [diff] [blame^] | 86 | phlen = sizeof(*ph) + ph->padlen; |
| 87 | optlen = ph->hdrlen * 8 - phlen; |
Diego Beltrami | 0a69452 | 2006-10-03 23:47:05 -0700 | [diff] [blame] | 88 | if (optlen < 0 || optlen & 3 || optlen > 250) |
| 89 | goto out; |
| 90 | |
Patrick McHardy | d4b1e84 | 2007-04-05 15:59:41 -0700 | [diff] [blame^] | 91 | if (!pskb_may_pull(skb, phlen + optlen)) |
Diego Beltrami | 0a69452 | 2006-10-03 23:47:05 -0700 | [diff] [blame] | 92 | goto out; |
| 93 | |
| 94 | ph_nexthdr = ph->nexthdr; |
| 95 | } |
| 96 | |
Patrick McHardy | d4b1e84 | 2007-04-05 15:59:41 -0700 | [diff] [blame^] | 97 | skb->nh.raw = skb->data + (phlen - sizeof(*iph)); |
| 98 | memmove(skb->nh.raw, iph, sizeof(*iph)); |
| 99 | skb->h.raw = skb->data + (phlen + optlen); |
Diego Beltrami | 0a69452 | 2006-10-03 23:47:05 -0700 | [diff] [blame] | 100 | |
| 101 | iph = skb->nh.iph; |
| 102 | iph->ihl = (sizeof(*iph) + optlen) / 4; |
Patrick McHardy | d4b1e84 | 2007-04-05 15:59:41 -0700 | [diff] [blame^] | 103 | iph->tot_len = htons(skb->len + iph->ihl * 4); |
Diego Beltrami | 0a69452 | 2006-10-03 23:47:05 -0700 | [diff] [blame] | 104 | iph->daddr = x->sel.daddr.a4; |
| 105 | iph->saddr = x->sel.saddr.a4; |
| 106 | if (ph_nexthdr) |
| 107 | iph->protocol = ph_nexthdr; |
| 108 | else |
| 109 | iph->protocol = protocol; |
| 110 | iph->check = 0; |
| 111 | iph->check = ip_fast_csum(skb->nh.raw, iph->ihl); |
| 112 | err = 0; |
| 113 | out: |
| 114 | return err; |
| 115 | } |
| 116 | |
| 117 | static struct xfrm_mode xfrm4_beet_mode = { |
| 118 | .input = xfrm4_beet_input, |
| 119 | .output = xfrm4_beet_output, |
| 120 | .owner = THIS_MODULE, |
| 121 | .encap = XFRM_MODE_BEET, |
| 122 | }; |
| 123 | |
| 124 | static int __init xfrm4_beet_init(void) |
| 125 | { |
| 126 | return xfrm_register_mode(&xfrm4_beet_mode, AF_INET); |
| 127 | } |
| 128 | |
| 129 | static void __exit xfrm4_beet_exit(void) |
| 130 | { |
| 131 | int err; |
| 132 | |
| 133 | err = xfrm_unregister_mode(&xfrm4_beet_mode, AF_INET); |
| 134 | BUG_ON(err); |
| 135 | } |
| 136 | |
| 137 | module_init(xfrm4_beet_init); |
| 138 | module_exit(xfrm4_beet_exit); |
| 139 | MODULE_LICENSE("GPL"); |
| 140 | MODULE_ALIAS_XFRM_MODE(AF_INET, XFRM_MODE_BEET); |