Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * xfrm6_policy.c: based on xfrm4_policy.c |
| 3 | * |
| 4 | * Authors: |
| 5 | * Mitsuru KANDA @USAGI |
| 6 | * Kazunori MIYAZAWA @USAGI |
| 7 | * Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 8 | * IPv6 support |
| 9 | * YOSHIFUJI Hideaki |
| 10 | * Split up af-specific portion |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 11 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | */ |
| 13 | |
Herbert Xu | 66cdb3c | 2007-11-13 21:37:28 -0800 | [diff] [blame] | 14 | #include <linux/err.h> |
| 15 | #include <linux/kernel.h> |
Herbert Xu | aabc976 | 2005-05-03 16:27:10 -0700 | [diff] [blame] | 16 | #include <linux/netdevice.h> |
| 17 | #include <net/addrconf.h> |
Herbert Xu | 45ff5a3 | 2007-11-13 21:35:32 -0800 | [diff] [blame] | 18 | #include <net/dst.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <net/xfrm.h> |
| 20 | #include <net/ip.h> |
| 21 | #include <net/ipv6.h> |
| 22 | #include <net/ip6_route.h> |
Masahide NAKAMURA | 59fbb3a | 2007-06-26 23:56:32 -0700 | [diff] [blame] | 23 | #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE) |
Masahide NAKAMURA | 2ce4272 | 2006-08-23 20:39:03 -0700 | [diff] [blame] | 24 | #include <net/mip6.h> |
| 25 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | static struct xfrm_policy_afinfo xfrm6_policy_afinfo; |
| 28 | |
Alexey Dobriyan | c5b3cf4 | 2008-11-25 17:51:25 -0800 | [diff] [blame] | 29 | static struct dst_entry *xfrm6_dst_lookup(struct net *net, int tos, |
David S. Miller | 5e6b930 | 2011-02-24 00:14:45 -0500 | [diff] [blame] | 30 | const xfrm_address_t *saddr, |
| 31 | const xfrm_address_t *daddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | { |
David S. Miller | 7e1dc7b | 2011-03-12 02:42:11 -0500 | [diff] [blame] | 33 | struct flowi6 fl6; |
Herbert Xu | 66cdb3c | 2007-11-13 21:37:28 -0800 | [diff] [blame] | 34 | struct dst_entry *dst; |
| 35 | int err; |
| 36 | |
David S. Miller | 7e1dc7b | 2011-03-12 02:42:11 -0500 | [diff] [blame] | 37 | memset(&fl6, 0, sizeof(fl6)); |
| 38 | memcpy(&fl6.daddr, daddr, sizeof(fl6.daddr)); |
Herbert Xu | 66cdb3c | 2007-11-13 21:37:28 -0800 | [diff] [blame] | 39 | if (saddr) |
David S. Miller | 7e1dc7b | 2011-03-12 02:42:11 -0500 | [diff] [blame] | 40 | memcpy(&fl6.saddr, saddr, sizeof(fl6.saddr)); |
Herbert Xu | 66cdb3c | 2007-11-13 21:37:28 -0800 | [diff] [blame] | 41 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 42 | dst = ip6_route_output(net, NULL, &fl6); |
Herbert Xu | 66cdb3c | 2007-11-13 21:37:28 -0800 | [diff] [blame] | 43 | |
| 44 | err = dst->error; |
| 45 | if (dst->error) { |
Ville Nuorvala | 4251320 | 2006-10-16 22:10:05 -0700 | [diff] [blame] | 46 | dst_release(dst); |
Herbert Xu | 66cdb3c | 2007-11-13 21:37:28 -0800 | [diff] [blame] | 47 | dst = ERR_PTR(err); |
| 48 | } |
| 49 | |
| 50 | return dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | } |
| 52 | |
Alexey Dobriyan | fbda33b | 2008-11-25 17:56:49 -0800 | [diff] [blame] | 53 | static int xfrm6_get_saddr(struct net *net, |
| 54 | xfrm_address_t *saddr, xfrm_address_t *daddr) |
Patrick McHardy | a1e59ab | 2006-09-19 12:57:34 -0700 | [diff] [blame] | 55 | { |
Herbert Xu | 66cdb3c | 2007-11-13 21:37:28 -0800 | [diff] [blame] | 56 | struct dst_entry *dst; |
Brian Haley | 191cd58 | 2008-08-14 15:33:21 -0700 | [diff] [blame] | 57 | struct net_device *dev; |
Patrick McHardy | a1e59ab | 2006-09-19 12:57:34 -0700 | [diff] [blame] | 58 | |
Alexey Dobriyan | fbda33b | 2008-11-25 17:56:49 -0800 | [diff] [blame] | 59 | dst = xfrm6_dst_lookup(net, 0, NULL, daddr); |
Herbert Xu | 66cdb3c | 2007-11-13 21:37:28 -0800 | [diff] [blame] | 60 | if (IS_ERR(dst)) |
| 61 | return -EHOSTUNREACH; |
| 62 | |
Brian Haley | 191cd58 | 2008-08-14 15:33:21 -0700 | [diff] [blame] | 63 | dev = ip6_dst_idev(dst)->dev; |
| 64 | ipv6_dev_get_saddr(dev_net(dev), dev, |
YOSHIFUJI Hideaki | 7cbca67 | 2008-03-25 09:37:42 +0900 | [diff] [blame] | 65 | (struct in6_addr *)&daddr->a6, 0, |
YOSHIFUJI Hideaki | 5e5f3f0 | 2008-03-03 21:44:34 +0900 | [diff] [blame] | 66 | (struct in6_addr *)&saddr->a6); |
Herbert Xu | 66cdb3c | 2007-11-13 21:37:28 -0800 | [diff] [blame] | 67 | dst_release(dst); |
| 68 | return 0; |
Patrick McHardy | a1e59ab | 2006-09-19 12:57:34 -0700 | [diff] [blame] | 69 | } |
| 70 | |
David S. Miller | 05d8402 | 2011-02-22 17:47:10 -0800 | [diff] [blame] | 71 | static int xfrm6_get_tos(const struct flowi *fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | return 0; |
Herbert Xu | 25ee328 | 2007-12-11 09:32:34 -0800 | [diff] [blame] | 74 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Masahide NAKAMURA | a1b0514 | 2007-12-20 20:41:12 -0800 | [diff] [blame] | 76 | static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst, |
| 77 | int nfheader_len) |
| 78 | { |
| 79 | if (dst->ops->family == AF_INET6) { |
| 80 | struct rt6_info *rt = (struct rt6_info*)dst; |
| 81 | if (rt->rt6i_node) |
| 82 | path->path_cookie = rt->rt6i_node->fn_sernum; |
| 83 | } |
| 84 | |
| 85 | path->u.rt6.rt6i_nfheader_len = nfheader_len; |
| 86 | |
| 87 | return 0; |
| 88 | } |
| 89 | |
Herbert Xu | 87c1e12 | 2010-03-02 02:51:56 +0000 | [diff] [blame] | 90 | static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, |
David S. Miller | 0c7b3ee | 2011-02-22 17:48:57 -0800 | [diff] [blame] | 91 | const struct flowi *fl) |
Herbert Xu | 25ee328 | 2007-12-11 09:32:34 -0800 | [diff] [blame] | 92 | { |
| 93 | struct rt6_info *rt = (struct rt6_info*)xdst->route; |
| 94 | |
| 95 | xdst->u.dst.dev = dev; |
| 96 | dev_hold(dev); |
| 97 | |
Nicolas Dichtel | bc8e4b9 | 2010-04-21 16:25:30 -0700 | [diff] [blame] | 98 | xdst->u.rt6.rt6i_idev = in6_dev_get(dev); |
Herbert Xu | 25ee328 | 2007-12-11 09:32:34 -0800 | [diff] [blame] | 99 | if (!xdst->u.rt6.rt6i_idev) |
| 100 | return -ENODEV; |
| 101 | |
David S. Miller | 7cc2edb | 2011-01-26 13:41:03 -0800 | [diff] [blame] | 102 | xdst->u.rt6.rt6i_peer = rt->rt6i_peer; |
| 103 | if (rt->rt6i_peer) |
| 104 | atomic_inc(&rt->rt6i_peer->refcnt); |
| 105 | |
Herbert Xu | 25ee328 | 2007-12-11 09:32:34 -0800 | [diff] [blame] | 106 | /* Sheit... I remember I did this right. Apparently, |
| 107 | * it was magically lost, so this code needs audit */ |
| 108 | xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST | |
| 109 | RTF_LOCAL); |
| 110 | xdst->u.rt6.rt6i_metric = rt->rt6i_metric; |
| 111 | xdst->u.rt6.rt6i_node = rt->rt6i_node; |
Masahide NAKAMURA | a1b0514 | 2007-12-20 20:41:12 -0800 | [diff] [blame] | 112 | if (rt->rt6i_node) |
| 113 | xdst->route_cookie = rt->rt6i_node->fn_sernum; |
Herbert Xu | 25ee328 | 2007-12-11 09:32:34 -0800 | [diff] [blame] | 114 | xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway; |
| 115 | xdst->u.rt6.rt6i_dst = rt->rt6i_dst; |
| 116 | xdst->u.rt6.rt6i_src = rt->rt6i_src; |
| 117 | |
| 118 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | static inline void |
Herbert Xu | d5422ef | 2007-12-12 10:44:16 -0800 | [diff] [blame] | 122 | _decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
David S. Miller | 7e1dc7b | 2011-03-12 02:42:11 -0500 | [diff] [blame] | 124 | struct flowi6 *fl6 = &fl->u.ip6; |
Nicolas Dichtel | 7e3a42a | 2008-11-01 21:12:07 -0700 | [diff] [blame] | 125 | int onlyproto = 0; |
Arnaldo Carvalho de Melo | cfe1fc7 | 2007-03-16 17:26:39 -0300 | [diff] [blame] | 126 | u16 offset = skb_network_header_len(skb); |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 127 | const struct ipv6hdr *hdr = ipv6_hdr(skb); |
YOSHIFUJI Hideaki | e3cae90 | 2006-04-18 14:46:52 -0700 | [diff] [blame] | 128 | struct ipv6_opt_hdr *exthdr; |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 129 | const unsigned char *nh = skb_network_header(skb); |
| 130 | u8 nexthdr = nh[IP6CB(skb)->nhoff]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
David S. Miller | 7e1dc7b | 2011-03-12 02:42:11 -0500 | [diff] [blame] | 132 | memset(fl6, 0, sizeof(struct flowi6)); |
| 133 | fl6->flowi6_mark = skb->mark; |
Peter Kosyh | 44b451f | 2010-07-02 07:47:55 +0000 | [diff] [blame] | 134 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 135 | fl6->daddr = reverse ? hdr->saddr : hdr->daddr; |
| 136 | fl6->saddr = reverse ? hdr->daddr : hdr->saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Wei Yongjun | 59cae00 | 2009-07-02 16:59:49 +0000 | [diff] [blame] | 138 | while (nh + offset + 1 < skb->data || |
| 139 | pskb_may_pull(skb, nh + offset + 1 - skb->data)) { |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 140 | nh = skb_network_header(skb); |
| 141 | exthdr = (struct ipv6_opt_hdr *)(nh + offset); |
YOSHIFUJI Hideaki | e3cae90 | 2006-04-18 14:46:52 -0700 | [diff] [blame] | 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | switch (nexthdr) { |
Nicolas Dichtel | 7e3a42a | 2008-11-01 21:12:07 -0700 | [diff] [blame] | 144 | case NEXTHDR_FRAGMENT: |
| 145 | onlyproto = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | case NEXTHDR_ROUTING: |
| 147 | case NEXTHDR_HOP: |
| 148 | case NEXTHDR_DEST: |
| 149 | offset += ipv6_optlen(exthdr); |
| 150 | nexthdr = exthdr->nexthdr; |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 151 | exthdr = (struct ipv6_opt_hdr *)(nh + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | break; |
| 153 | |
| 154 | case IPPROTO_UDP: |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 155 | case IPPROTO_UDPLITE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | case IPPROTO_TCP: |
| 157 | case IPPROTO_SCTP: |
Patrick McHardy | 9e99999 | 2005-12-19 14:03:46 -0800 | [diff] [blame] | 158 | case IPPROTO_DCCP: |
Wei Yongjun | 59cae00 | 2009-07-02 16:59:49 +0000 | [diff] [blame] | 159 | if (!onlyproto && (nh + offset + 4 < skb->data || |
| 160 | pskb_may_pull(skb, nh + offset + 4 - skb->data))) { |
Al Viro | 8c689a6 | 2006-11-08 00:20:21 -0800 | [diff] [blame] | 161 | __be16 *ports = (__be16 *)exthdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
David S. Miller | 1958b85 | 2011-03-12 16:36:19 -0500 | [diff] [blame] | 163 | fl6->fl6_sport = ports[!!reverse]; |
| 164 | fl6->fl6_dport = ports[!reverse]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
David S. Miller | 7e1dc7b | 2011-03-12 02:42:11 -0500 | [diff] [blame] | 166 | fl6->flowi6_proto = nexthdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | return; |
| 168 | |
| 169 | case IPPROTO_ICMPV6: |
Nicolas Dichtel | 7e3a42a | 2008-11-01 21:12:07 -0700 | [diff] [blame] | 170 | if (!onlyproto && pskb_may_pull(skb, nh + offset + 2 - skb->data)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | u8 *icmp = (u8 *)exthdr; |
| 172 | |
David S. Miller | 1958b85 | 2011-03-12 16:36:19 -0500 | [diff] [blame] | 173 | fl6->fl6_icmp_type = icmp[0]; |
| 174 | fl6->fl6_icmp_code = icmp[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | } |
David S. Miller | 7e1dc7b | 2011-03-12 02:42:11 -0500 | [diff] [blame] | 176 | fl6->flowi6_proto = nexthdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | return; |
| 178 | |
Masahide NAKAMURA | 59fbb3a | 2007-06-26 23:56:32 -0700 | [diff] [blame] | 179 | #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE) |
Masahide NAKAMURA | 2ce4272 | 2006-08-23 20:39:03 -0700 | [diff] [blame] | 180 | case IPPROTO_MH: |
Nicolas Dichtel | 7e3a42a | 2008-11-01 21:12:07 -0700 | [diff] [blame] | 181 | if (!onlyproto && pskb_may_pull(skb, nh + offset + 3 - skb->data)) { |
Masahide NAKAMURA | 2ce4272 | 2006-08-23 20:39:03 -0700 | [diff] [blame] | 182 | struct ip6_mh *mh; |
| 183 | mh = (struct ip6_mh *)exthdr; |
| 184 | |
David S. Miller | 1958b85 | 2011-03-12 16:36:19 -0500 | [diff] [blame] | 185 | fl6->fl6_mh_type = mh->ip6mh_type; |
Masahide NAKAMURA | 2ce4272 | 2006-08-23 20:39:03 -0700 | [diff] [blame] | 186 | } |
David S. Miller | 7e1dc7b | 2011-03-12 02:42:11 -0500 | [diff] [blame] | 187 | fl6->flowi6_proto = nexthdr; |
Masahide NAKAMURA | 2ce4272 | 2006-08-23 20:39:03 -0700 | [diff] [blame] | 188 | return; |
| 189 | #endif |
| 190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | /* XXX Why are there these headers? */ |
| 192 | case IPPROTO_AH: |
| 193 | case IPPROTO_ESP: |
| 194 | case IPPROTO_COMP: |
| 195 | default: |
David S. Miller | 1958b85 | 2011-03-12 16:36:19 -0500 | [diff] [blame] | 196 | fl6->fl6_ipsec_spi = 0; |
David S. Miller | 7e1dc7b | 2011-03-12 02:42:11 -0500 | [diff] [blame] | 197 | fl6->flowi6_proto = nexthdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | return; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 199 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | } |
| 202 | |
Daniel Lezcano | 569d364 | 2008-01-18 03:56:57 -0800 | [diff] [blame] | 203 | static inline int xfrm6_garbage_collect(struct dst_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | { |
Alexey Dobriyan | d7c7544 | 2010-01-24 22:47:53 -0800 | [diff] [blame] | 205 | struct net *net = container_of(ops, struct net, xfrm.xfrm6_dst_ops); |
| 206 | |
| 207 | xfrm6_policy_afinfo.garbage_collect(net); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 208 | return dst_entries_get_fast(ops) > ops->gc_thresh * 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | static void xfrm6_update_pmtu(struct dst_entry *dst, u32 mtu) |
| 212 | { |
| 213 | struct xfrm_dst *xdst = (struct xfrm_dst *)dst; |
| 214 | struct dst_entry *path = xdst->route; |
| 215 | |
| 216 | path->ops->update_pmtu(path, mtu); |
| 217 | } |
| 218 | |
Herbert Xu | aabc976 | 2005-05-03 16:27:10 -0700 | [diff] [blame] | 219 | static void xfrm6_dst_destroy(struct dst_entry *dst) |
| 220 | { |
| 221 | struct xfrm_dst *xdst = (struct xfrm_dst *)dst; |
| 222 | |
| 223 | if (likely(xdst->u.rt6.rt6i_idev)) |
| 224 | in6_dev_put(xdst->u.rt6.rt6i_idev); |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 225 | dst_destroy_metrics_generic(dst); |
David S. Miller | 7cc2edb | 2011-01-26 13:41:03 -0800 | [diff] [blame] | 226 | if (likely(xdst->u.rt6.rt6i_peer)) |
| 227 | inet_putpeer(xdst->u.rt6.rt6i_peer); |
Herbert Xu | aabc976 | 2005-05-03 16:27:10 -0700 | [diff] [blame] | 228 | xfrm_dst_destroy(xdst); |
| 229 | } |
| 230 | |
| 231 | static void xfrm6_dst_ifdown(struct dst_entry *dst, struct net_device *dev, |
| 232 | int unregister) |
| 233 | { |
| 234 | struct xfrm_dst *xdst; |
| 235 | |
| 236 | if (!unregister) |
| 237 | return; |
| 238 | |
| 239 | xdst = (struct xfrm_dst *)dst; |
| 240 | if (xdst->u.rt6.rt6i_idev->dev == dev) { |
Denis V. Lunev | 5a3e55d | 2007-12-07 00:38:10 -0800 | [diff] [blame] | 241 | struct inet6_dev *loopback_idev = |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 242 | in6_dev_get(dev_net(dev)->loopback_dev); |
Herbert Xu | aabc976 | 2005-05-03 16:27:10 -0700 | [diff] [blame] | 243 | BUG_ON(!loopback_idev); |
| 244 | |
| 245 | do { |
| 246 | in6_dev_put(xdst->u.rt6.rt6i_idev); |
| 247 | xdst->u.rt6.rt6i_idev = loopback_idev; |
| 248 | in6_dev_hold(loopback_idev); |
| 249 | xdst = (struct xfrm_dst *)xdst->u.dst.child; |
| 250 | } while (xdst->u.dst.xfrm); |
| 251 | |
| 252 | __in6_dev_put(loopback_idev); |
| 253 | } |
| 254 | |
| 255 | xfrm_dst_ifdown(dst, dev); |
| 256 | } |
| 257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | static struct dst_ops xfrm6_dst_ops = { |
| 259 | .family = AF_INET6, |
Harvey Harrison | 09640e6 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 260 | .protocol = cpu_to_be16(ETH_P_IPV6), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | .gc = xfrm6_garbage_collect, |
| 262 | .update_pmtu = xfrm6_update_pmtu, |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 263 | .cow_metrics = dst_cow_metrics_generic, |
Herbert Xu | aabc976 | 2005-05-03 16:27:10 -0700 | [diff] [blame] | 264 | .destroy = xfrm6_dst_destroy, |
| 265 | .ifdown = xfrm6_dst_ifdown, |
Herbert Xu | 862b82c | 2007-11-13 21:43:11 -0800 | [diff] [blame] | 266 | .local_out = __ip6_local_out, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | .gc_thresh = 1024, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | }; |
| 269 | |
| 270 | static struct xfrm_policy_afinfo xfrm6_policy_afinfo = { |
| 271 | .family = AF_INET6, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | .dst_ops = &xfrm6_dst_ops, |
| 273 | .dst_lookup = xfrm6_dst_lookup, |
Patrick McHardy | a1e59ab | 2006-09-19 12:57:34 -0700 | [diff] [blame] | 274 | .get_saddr = xfrm6_get_saddr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | .decode_session = _decode_session6, |
Herbert Xu | 25ee328 | 2007-12-11 09:32:34 -0800 | [diff] [blame] | 276 | .get_tos = xfrm6_get_tos, |
Masahide NAKAMURA | a1b0514 | 2007-12-20 20:41:12 -0800 | [diff] [blame] | 277 | .init_path = xfrm6_init_path, |
Herbert Xu | 25ee328 | 2007-12-11 09:32:34 -0800 | [diff] [blame] | 278 | .fill_dst = xfrm6_fill_dst, |
David S. Miller | 2774c13 | 2011-03-01 14:59:04 -0800 | [diff] [blame] | 279 | .blackhole_route = ip6_blackhole_route, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | }; |
| 281 | |
Daniel Lezcano | 0013cab | 2007-12-07 00:42:11 -0800 | [diff] [blame] | 282 | static int __init xfrm6_policy_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | { |
Daniel Lezcano | 0013cab | 2007-12-07 00:42:11 -0800 | [diff] [blame] | 284 | return xfrm_policy_register_afinfo(&xfrm6_policy_afinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | static void xfrm6_policy_fini(void) |
| 288 | { |
| 289 | xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo); |
| 290 | } |
| 291 | |
David S. Miller | db71789 | 2009-08-04 20:32:16 -0700 | [diff] [blame] | 292 | #ifdef CONFIG_SYSCTL |
Neil Horman | a44a4a0 | 2009-07-27 08:22:46 +0000 | [diff] [blame] | 293 | static struct ctl_table xfrm6_policy_table[] = { |
| 294 | { |
Neil Horman | a44a4a0 | 2009-07-27 08:22:46 +0000 | [diff] [blame] | 295 | .procname = "xfrm6_gc_thresh", |
Alexey Dobriyan | d7c7544 | 2010-01-24 22:47:53 -0800 | [diff] [blame] | 296 | .data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh, |
Neil Horman | a44a4a0 | 2009-07-27 08:22:46 +0000 | [diff] [blame] | 297 | .maxlen = sizeof(int), |
| 298 | .mode = 0644, |
| 299 | .proc_handler = proc_dointvec, |
| 300 | }, |
| 301 | { } |
| 302 | }; |
| 303 | |
| 304 | static struct ctl_table_header *sysctl_hdr; |
David S. Miller | db71789 | 2009-08-04 20:32:16 -0700 | [diff] [blame] | 305 | #endif |
Neil Horman | a44a4a0 | 2009-07-27 08:22:46 +0000 | [diff] [blame] | 306 | |
Daniel Lezcano | 0013cab | 2007-12-07 00:42:11 -0800 | [diff] [blame] | 307 | int __init xfrm6_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | { |
Daniel Lezcano | 0013cab | 2007-12-07 00:42:11 -0800 | [diff] [blame] | 309 | int ret; |
Neil Horman | a33bc5c | 2009-07-30 18:52:15 -0700 | [diff] [blame] | 310 | unsigned int gc_thresh; |
Daniel Lezcano | 0013cab | 2007-12-07 00:42:11 -0800 | [diff] [blame] | 311 | |
Neil Horman | a33bc5c | 2009-07-30 18:52:15 -0700 | [diff] [blame] | 312 | /* |
| 313 | * We need a good default value for the xfrm6 gc threshold. |
| 314 | * In ipv4 we set it to the route hash table size * 8, which |
| 315 | * is half the size of the maximaum route cache for ipv4. It |
| 316 | * would be good to do the same thing for v6, except the table is |
| 317 | * constructed differently here. Here each table for a net namespace |
| 318 | * can have FIB_TABLE_HASHSZ entries, so lets go with the same |
| 319 | * computation that we used for ipv4 here. Also, lets keep the initial |
| 320 | * gc_thresh to a minimum of 1024, since, the ipv6 route cache defaults |
| 321 | * to that as a minimum as well |
| 322 | */ |
| 323 | gc_thresh = FIB6_TABLE_HASHSZ * 8; |
| 324 | xfrm6_dst_ops.gc_thresh = (gc_thresh < 1024) ? 1024 : gc_thresh; |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 325 | dst_entries_init(&xfrm6_dst_ops); |
Alexey Dobriyan | d7c7544 | 2010-01-24 22:47:53 -0800 | [diff] [blame] | 326 | |
| 327 | ret = xfrm6_policy_init(); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 328 | if (ret) { |
| 329 | dst_entries_destroy(&xfrm6_dst_ops); |
Alexey Dobriyan | d7c7544 | 2010-01-24 22:47:53 -0800 | [diff] [blame] | 330 | goto out; |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 331 | } |
Alexey Dobriyan | d7c7544 | 2010-01-24 22:47:53 -0800 | [diff] [blame] | 332 | ret = xfrm6_state_init(); |
| 333 | if (ret) |
| 334 | goto out_policy; |
| 335 | |
David S. Miller | db71789 | 2009-08-04 20:32:16 -0700 | [diff] [blame] | 336 | #ifdef CONFIG_SYSCTL |
Neil Horman | a44a4a0 | 2009-07-27 08:22:46 +0000 | [diff] [blame] | 337 | sysctl_hdr = register_net_sysctl_table(&init_net, net_ipv6_ctl_path, |
| 338 | xfrm6_policy_table); |
David S. Miller | db71789 | 2009-08-04 20:32:16 -0700 | [diff] [blame] | 339 | #endif |
Daniel Lezcano | 0013cab | 2007-12-07 00:42:11 -0800 | [diff] [blame] | 340 | out: |
| 341 | return ret; |
| 342 | out_policy: |
| 343 | xfrm6_policy_fini(); |
| 344 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | void xfrm6_fini(void) |
| 348 | { |
David S. Miller | db71789 | 2009-08-04 20:32:16 -0700 | [diff] [blame] | 349 | #ifdef CONFIG_SYSCTL |
Neil Horman | a44a4a0 | 2009-07-27 08:22:46 +0000 | [diff] [blame] | 350 | if (sysctl_hdr) |
| 351 | unregister_net_sysctl_table(sysctl_hdr); |
David S. Miller | db71789 | 2009-08-04 20:32:16 -0700 | [diff] [blame] | 352 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | //xfrm6_input_fini(); |
| 354 | xfrm6_policy_fini(); |
| 355 | xfrm6_state_fini(); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 356 | dst_entries_destroy(&xfrm6_dst_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } |