Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Extension Header handling for IPv6 |
| 3 | * Linux INET6 implementation |
| 4 | * |
| 5 | * Authors: |
| 6 | * Pedro Roque <roque@di.fc.ul.pt> |
| 7 | * Andi Kleen <ak@muc.de> |
| 8 | * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> |
| 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License |
| 12 | * as published by the Free Software Foundation; either version |
| 13 | * 2 of the License, or (at your option) any later version. |
| 14 | */ |
| 15 | |
| 16 | /* Changes: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 17 | * yoshfuji : ensure not to overrun while parsing |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | * tlv options. |
| 19 | * Mitsuru KANDA @USAGI and: Remove ipv6_parse_exthdrs(). |
| 20 | * YOSHIFUJI Hideaki @USAGI Register inbound extension header |
| 21 | * handlers as inet6_protocol{}. |
| 22 | */ |
| 23 | |
| 24 | #include <linux/errno.h> |
| 25 | #include <linux/types.h> |
| 26 | #include <linux/socket.h> |
| 27 | #include <linux/sockios.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/net.h> |
| 29 | #include <linux/netdevice.h> |
| 30 | #include <linux/in6.h> |
| 31 | #include <linux/icmpv6.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 33 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Herbert Xu | 352e512 | 2007-11-13 21:34:06 -0800 | [diff] [blame] | 35 | #include <net/dst.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <net/sock.h> |
| 37 | #include <net/snmp.h> |
| 38 | |
| 39 | #include <net/ipv6.h> |
| 40 | #include <net/protocol.h> |
| 41 | #include <net/transp_v6.h> |
| 42 | #include <net/rawv6.h> |
| 43 | #include <net/ndisc.h> |
| 44 | #include <net/ip6_route.h> |
| 45 | #include <net/addrconf.h> |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 46 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 47 | #include <net/xfrm.h> |
| 48 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | #include <asm/uaccess.h> |
Vlad Yasevich | 2207afc | 2012-11-15 08:49:19 +0000 | [diff] [blame] | 51 | #include "ip6_offload.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | /* |
| 54 | * Parsing tlv encoded headers. |
| 55 | * |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 56 | * Parsing function "func" returns true, if parsing succeed |
| 57 | * and false, if it failed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | * It MUST NOT touch skb->h. |
| 59 | */ |
| 60 | |
| 61 | struct tlvtype_proc { |
| 62 | int type; |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 63 | bool (*func)(struct sk_buff *skb, int offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | /********************* |
| 67 | Generic functions |
| 68 | *********************/ |
| 69 | |
| 70 | /* An unknown option is detected, decide what to do */ |
| 71 | |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 72 | static bool ip6_tlvopt_unknown(struct sk_buff *skb, int optoff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 74 | switch ((skb_network_header(skb)[optoff] & 0xC0) >> 6) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | case 0: /* ignore */ |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 76 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
| 78 | case 1: /* drop packet */ |
| 79 | break; |
| 80 | |
| 81 | case 3: /* Send ICMP if not a multicast address and drop packet */ |
| 82 | /* Actually, it is redundant check. icmp_send |
| 83 | will recheck in any case. |
| 84 | */ |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 85 | if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | break; |
| 87 | case 2: /* send ICMP PARM PROB regardless and drop packet */ |
| 88 | icmpv6_param_prob(skb, ICMPV6_UNK_OPTION, optoff); |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 89 | return false; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 90 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | kfree_skb(skb); |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 93 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | /* Parse tlv encoded option header (hop-by-hop or destination) */ |
| 97 | |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 98 | static bool ip6_parse_tlv(const struct tlvtype_proc *procs, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 100 | const struct tlvtype_proc *curr; |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 101 | const unsigned char *nh = skb_network_header(skb); |
Arnaldo Carvalho de Melo | cfe1fc7 | 2007-03-16 17:26:39 -0300 | [diff] [blame] | 102 | int off = skb_network_header_len(skb); |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 103 | int len = (skb_transport_header(skb)[1] + 1) << 3; |
Eldad Zack | 9b905fe | 2012-05-20 01:59:33 +0000 | [diff] [blame] | 104 | int padlen = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Arnaldo Carvalho de Melo | ea2ae17 | 2007-04-25 17:55:53 -0700 | [diff] [blame] | 106 | if (skb_transport_offset(skb) + len > skb_headlen(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | goto bad; |
| 108 | |
| 109 | off += 2; |
| 110 | len -= 2; |
| 111 | |
| 112 | while (len > 0) { |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 113 | int optlen = nh[off + 1] + 2; |
Eldad Zack | c1412fc | 2012-04-12 17:36:17 -0400 | [diff] [blame] | 114 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 116 | switch (nh[off]) { |
Eldad Zack | 1de5a71 | 2012-05-17 06:00:25 +0000 | [diff] [blame] | 117 | case IPV6_TLV_PAD1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | optlen = 1; |
Eldad Zack | 9b905fe | 2012-05-20 01:59:33 +0000 | [diff] [blame] | 119 | padlen++; |
| 120 | if (padlen > 7) |
| 121 | goto bad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | break; |
| 123 | |
| 124 | case IPV6_TLV_PADN: |
Eldad Zack | c1412fc | 2012-04-12 17:36:17 -0400 | [diff] [blame] | 125 | /* RFC 2460 states that the purpose of PadN is |
| 126 | * to align the containing header to multiples |
| 127 | * of 8. 7 is therefore the highest valid value. |
| 128 | * See also RFC 4942, Section 2.1.9.5. |
| 129 | */ |
Eldad Zack | 9b905fe | 2012-05-20 01:59:33 +0000 | [diff] [blame] | 130 | padlen += optlen; |
| 131 | if (padlen > 7) |
Eldad Zack | c1412fc | 2012-04-12 17:36:17 -0400 | [diff] [blame] | 132 | goto bad; |
| 133 | /* RFC 4942 recommends receiving hosts to |
| 134 | * actively check PadN payload to contain |
| 135 | * only zeroes. |
| 136 | */ |
| 137 | for (i = 2; i < optlen; i++) { |
| 138 | if (nh[off + i] != 0) |
| 139 | goto bad; |
| 140 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | break; |
| 142 | |
| 143 | default: /* Other TLV code so scan list */ |
| 144 | if (optlen > len) |
| 145 | goto bad; |
| 146 | for (curr=procs; curr->type >= 0; curr++) { |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 147 | if (curr->type == nh[off]) { |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 148 | /* type specific length/alignment |
| 149 | checks will be performed in the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | func(). */ |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 151 | if (curr->func(skb, off) == false) |
| 152 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | break; |
| 154 | } |
| 155 | } |
| 156 | if (curr->type < 0) { |
Herbert Xu | e5bbef2 | 2007-10-15 12:50:28 -0700 | [diff] [blame] | 157 | if (ip6_tlvopt_unknown(skb, off) == 0) |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 158 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
Eldad Zack | 9b905fe | 2012-05-20 01:59:33 +0000 | [diff] [blame] | 160 | padlen = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | break; |
| 162 | } |
| 163 | off += optlen; |
| 164 | len -= optlen; |
| 165 | } |
Eldad Zack | 9b905fe | 2012-05-20 01:59:33 +0000 | [diff] [blame] | 166 | /* This case will not be caught by above check since its padding |
| 167 | * length is smaller than 7: |
| 168 | * 1 byte NH + 1 byte Length + 6 bytes Padding |
| 169 | */ |
| 170 | if ((padlen == 6) && ((off - skb_network_header_len(skb)) == 8)) |
| 171 | goto bad; |
| 172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | if (len == 0) |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 174 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | bad: |
| 176 | kfree_skb(skb); |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 177 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | /***************************** |
| 181 | Destination options header. |
| 182 | *****************************/ |
| 183 | |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 184 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 185 | static bool ipv6_dest_hao(struct sk_buff *skb, int optoff) |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 186 | { |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 187 | struct ipv6_destopt_hao *hao; |
| 188 | struct inet6_skb_parm *opt = IP6CB(skb); |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 189 | struct ipv6hdr *ipv6h = ipv6_hdr(skb); |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 190 | struct in6_addr tmp_addr; |
| 191 | int ret; |
| 192 | |
| 193 | if (opt->dsthao) { |
| 194 | LIMIT_NETDEBUG(KERN_DEBUG "hao duplicated\n"); |
| 195 | goto discard; |
| 196 | } |
| 197 | opt->dsthao = opt->dst1; |
| 198 | opt->dst1 = 0; |
| 199 | |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 200 | hao = (struct ipv6_destopt_hao *)(skb_network_header(skb) + optoff); |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 201 | |
| 202 | if (hao->length != 16) { |
| 203 | LIMIT_NETDEBUG( |
| 204 | KERN_DEBUG "hao invalid option length = %d\n", hao->length); |
| 205 | goto discard; |
| 206 | } |
| 207 | |
| 208 | if (!(ipv6_addr_type(&hao->addr) & IPV6_ADDR_UNICAST)) { |
| 209 | LIMIT_NETDEBUG( |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 210 | KERN_DEBUG "hao is not an unicast addr: %pI6\n", &hao->addr); |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 211 | goto discard; |
| 212 | } |
| 213 | |
| 214 | ret = xfrm6_input_addr(skb, (xfrm_address_t *)&ipv6h->daddr, |
| 215 | (xfrm_address_t *)&hao->addr, IPPROTO_DSTOPTS); |
| 216 | if (unlikely(ret < 0)) |
| 217 | goto discard; |
| 218 | |
| 219 | if (skb_cloned(skb)) { |
Herbert Xu | 65c8846 | 2007-10-15 01:29:10 -0700 | [diff] [blame] | 220 | if (pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 221 | goto discard; |
| 222 | |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 223 | /* update all variable using below by copied skbuff */ |
Herbert Xu | 65c8846 | 2007-10-15 01:29:10 -0700 | [diff] [blame] | 224 | hao = (struct ipv6_destopt_hao *)(skb_network_header(skb) + |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 225 | optoff); |
Herbert Xu | 65c8846 | 2007-10-15 01:29:10 -0700 | [diff] [blame] | 226 | ipv6h = ipv6_hdr(skb); |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | if (skb->ip_summed == CHECKSUM_COMPLETE) |
| 230 | skb->ip_summed = CHECKSUM_NONE; |
| 231 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 232 | tmp_addr = ipv6h->saddr; |
| 233 | ipv6h->saddr = hao->addr; |
| 234 | hao->addr = tmp_addr; |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 235 | |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 236 | if (skb->tstamp.tv64 == 0) |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 237 | __net_timestamp(skb); |
| 238 | |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 239 | return true; |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 240 | |
| 241 | discard: |
| 242 | kfree_skb(skb); |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 243 | return false; |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 244 | } |
| 245 | #endif |
| 246 | |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 247 | static const struct tlvtype_proc tlvprocdestopt_lst[] = { |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 248 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 249 | { |
| 250 | .type = IPV6_TLV_HAO, |
| 251 | .func = ipv6_dest_hao, |
| 252 | }, |
| 253 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | {-1, NULL} |
| 255 | }; |
| 256 | |
Herbert Xu | e5bbef2 | 2007-10-15 12:50:28 -0700 | [diff] [blame] | 257 | static int ipv6_destopt_rcv(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | struct inet6_skb_parm *opt = IP6CB(skb); |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 260 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 261 | __u16 dstbuf; |
| 262 | #endif |
Eric Dumazet | 897dc80 | 2011-07-28 04:00:35 +0000 | [diff] [blame] | 263 | struct dst_entry *dst = skb_dst(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
Arnaldo Carvalho de Melo | ea2ae17 | 2007-04-25 17:55:53 -0700 | [diff] [blame] | 265 | if (!pskb_may_pull(skb, skb_transport_offset(skb) + 8) || |
| 266 | !pskb_may_pull(skb, (skb_transport_offset(skb) + |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 267 | ((skb_transport_header(skb)[1] + 1) << 3)))) { |
Eric Dumazet | 897dc80 | 2011-07-28 04:00:35 +0000 | [diff] [blame] | 268 | IP6_INC_STATS_BH(dev_net(dst->dev), ip6_dst_idev(dst), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 269 | IPSTATS_MIB_INHDRERRORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | kfree_skb(skb); |
| 271 | return -1; |
| 272 | } |
| 273 | |
Arnaldo Carvalho de Melo | cfe1fc7 | 2007-03-16 17:26:39 -0300 | [diff] [blame] | 274 | opt->lastopt = opt->dst1 = skb_network_header_len(skb); |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 275 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 276 | dstbuf = opt->dst1; |
| 277 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
Herbert Xu | e5bbef2 | 2007-10-15 12:50:28 -0700 | [diff] [blame] | 279 | if (ip6_parse_tlv(tlvprocdestopt_lst, skb)) { |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 280 | skb->transport_header += (skb_transport_header(skb)[1] + 1) << 3; |
Masahide NAKAMURA | dc435e6 | 2006-08-31 15:18:49 -0700 | [diff] [blame] | 281 | opt = IP6CB(skb); |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 282 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 283 | opt->nhoff = dstbuf; |
| 284 | #else |
Patrick McHardy | 951dbc8 | 2006-01-06 23:02:34 -0800 | [diff] [blame] | 285 | opt->nhoff = opt->dst1; |
Masahide NAKAMURA | a831f5b | 2006-08-23 19:24:48 -0700 | [diff] [blame] | 286 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | return 1; |
| 288 | } |
| 289 | |
Denis V. Lunev | 483a47d | 2008-10-08 11:09:27 -0700 | [diff] [blame] | 290 | IP6_INC_STATS_BH(dev_net(dst->dev), |
| 291 | ip6_dst_idev(dst), IPSTATS_MIB_INHDRERRORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | return -1; |
| 293 | } |
| 294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | /******************************** |
| 296 | Routing header. |
| 297 | ********************************/ |
| 298 | |
Eric Dumazet | f6bc7d9 | 2010-06-14 04:39:27 +0000 | [diff] [blame] | 299 | /* called with rcu_read_lock() */ |
Herbert Xu | e5bbef2 | 2007-10-15 12:50:28 -0700 | [diff] [blame] | 300 | static int ipv6_rthdr_rcv(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | struct inet6_skb_parm *opt = IP6CB(skb); |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 303 | struct in6_addr *addr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | struct in6_addr daddr; |
YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 305 | struct inet6_dev *idev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | int n, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | struct ipv6_rt_hdr *hdr; |
| 308 | struct rt0_hdr *rthdr; |
Denis V. Lunev | 483a47d | 2008-10-08 11:09:27 -0700 | [diff] [blame] | 309 | struct net *net = dev_net(skb->dev); |
| 310 | int accept_source_route = net->ipv6.devconf_all->accept_source_route; |
YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 311 | |
Eric Dumazet | f6bc7d9 | 2010-06-14 04:39:27 +0000 | [diff] [blame] | 312 | idev = __in6_dev_get(skb->dev); |
| 313 | if (idev && accept_source_route > idev->cnf.accept_source_route) |
| 314 | accept_source_route = idev->cnf.accept_source_route; |
YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 315 | |
Arnaldo Carvalho de Melo | ea2ae17 | 2007-04-25 17:55:53 -0700 | [diff] [blame] | 316 | if (!pskb_may_pull(skb, skb_transport_offset(skb) + 8) || |
| 317 | !pskb_may_pull(skb, (skb_transport_offset(skb) + |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 318 | ((skb_transport_header(skb)[1] + 1) << 3)))) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 319 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 320 | IPSTATS_MIB_INHDRERRORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | kfree_skb(skb); |
| 322 | return -1; |
| 323 | } |
| 324 | |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 325 | hdr = (struct ipv6_rt_hdr *)skb_transport_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 327 | if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | skb->pkt_type != PACKET_HOST) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 329 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 330 | IPSTATS_MIB_INADDRERRORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | kfree_skb(skb); |
| 332 | return -1; |
| 333 | } |
| 334 | |
| 335 | looped_back: |
| 336 | if (hdr->segments_left == 0) { |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 337 | switch (hdr->type) { |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 338 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 339 | case IPV6_SRCRT_TYPE_2: |
| 340 | /* Silently discard type 2 header unless it was |
| 341 | * processed by own |
| 342 | */ |
| 343 | if (!addr) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 344 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 345 | IPSTATS_MIB_INADDRERRORS); |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 346 | kfree_skb(skb); |
| 347 | return -1; |
| 348 | } |
| 349 | break; |
| 350 | #endif |
| 351 | default: |
| 352 | break; |
| 353 | } |
| 354 | |
Arnaldo Carvalho de Melo | cfe1fc7 | 2007-03-16 17:26:39 -0300 | [diff] [blame] | 355 | opt->lastopt = opt->srcrt = skb_network_header_len(skb); |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 356 | skb->transport_header += (hdr->hdrlen + 1) << 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | opt->dst0 = opt->dst1; |
| 358 | opt->dst1 = 0; |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 359 | opt->nhoff = (&hdr->nexthdr) - skb_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | return 1; |
| 361 | } |
| 362 | |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 363 | switch (hdr->type) { |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 364 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 365 | case IPV6_SRCRT_TYPE_2: |
YOSHIFUJI Hideaki | c382bb9 | 2007-07-10 22:47:58 -0700 | [diff] [blame] | 366 | if (accept_source_route < 0) |
| 367 | goto unknown_rh; |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 368 | /* Silently discard invalid RTH type 2 */ |
| 369 | if (hdr->hdrlen != 2 || hdr->segments_left != 1) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 370 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 371 | IPSTATS_MIB_INHDRERRORS); |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 372 | kfree_skb(skb); |
| 373 | return -1; |
| 374 | } |
| 375 | break; |
| 376 | #endif |
YOSHIFUJI Hideaki | c382bb9 | 2007-07-10 22:47:58 -0700 | [diff] [blame] | 377 | default: |
| 378 | goto unknown_rh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | /* |
| 382 | * This is the routing header forwarding algorithm from |
| 383 | * RFC 2460, page 16. |
| 384 | */ |
| 385 | |
| 386 | n = hdr->hdrlen >> 1; |
| 387 | |
| 388 | if (hdr->segments_left > n) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 389 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 390 | IPSTATS_MIB_INHDRERRORS); |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 391 | icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, |
| 392 | ((&hdr->segments_left) - |
| 393 | skb_network_header(skb))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | return -1; |
| 395 | } |
| 396 | |
| 397 | /* We are about to mangle packet header. Be careful! |
| 398 | Do not damage packets queued somewhere. |
| 399 | */ |
| 400 | if (skb_cloned(skb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | /* the copy is a forwarded packet */ |
Herbert Xu | 65c8846 | 2007-10-15 01:29:10 -0700 | [diff] [blame] | 402 | if (pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 403 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 404 | IPSTATS_MIB_OUTDISCARDS); |
| 405 | kfree_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | return -1; |
| 407 | } |
Herbert Xu | 65c8846 | 2007-10-15 01:29:10 -0700 | [diff] [blame] | 408 | hdr = (struct ipv6_rt_hdr *)skb_transport_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | } |
| 410 | |
Patrick McHardy | 84fa793 | 2006-08-29 16:44:56 -0700 | [diff] [blame] | 411 | if (skb->ip_summed == CHECKSUM_COMPLETE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | skb->ip_summed = CHECKSUM_NONE; |
| 413 | |
| 414 | i = n - --hdr->segments_left; |
| 415 | |
| 416 | rthdr = (struct rt0_hdr *) hdr; |
| 417 | addr = rthdr->addr; |
| 418 | addr += i - 1; |
| 419 | |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 420 | switch (hdr->type) { |
Amerigo Wang | 07a9362 | 2012-10-29 16:23:10 +0000 | [diff] [blame] | 421 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 422 | case IPV6_SRCRT_TYPE_2: |
| 423 | if (xfrm6_input_addr(skb, (xfrm_address_t *)addr, |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 424 | (xfrm_address_t *)&ipv6_hdr(skb)->saddr, |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 425 | IPPROTO_ROUTING) < 0) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 426 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 427 | IPSTATS_MIB_INADDRERRORS); |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 428 | kfree_skb(skb); |
| 429 | return -1; |
| 430 | } |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 431 | if (!ipv6_chk_home_addr(dev_net(skb_dst(skb)->dev), addr)) { |
| 432 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 433 | IPSTATS_MIB_INADDRERRORS); |
Masahide NAKAMURA | 65d4ed9 | 2006-08-23 19:16:22 -0700 | [diff] [blame] | 434 | kfree_skb(skb); |
| 435 | return -1; |
| 436 | } |
| 437 | break; |
| 438 | #endif |
| 439 | default: |
| 440 | break; |
| 441 | } |
| 442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | if (ipv6_addr_is_multicast(addr)) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 444 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 445 | IPSTATS_MIB_INADDRERRORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | kfree_skb(skb); |
| 447 | return -1; |
| 448 | } |
| 449 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 450 | daddr = *addr; |
| 451 | *addr = ipv6_hdr(skb)->daddr; |
| 452 | ipv6_hdr(skb)->daddr = daddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 454 | skb_dst_drop(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | ip6_route_input(skb); |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 456 | if (skb_dst(skb)->error) { |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 457 | skb_push(skb, skb->data - skb_network_header(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | dst_input(skb); |
| 459 | return -1; |
| 460 | } |
| 461 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 462 | if (skb_dst(skb)->dev->flags&IFF_LOOPBACK) { |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 463 | if (ipv6_hdr(skb)->hop_limit <= 1) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 464 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 465 | IPSTATS_MIB_INHDRERRORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT, |
Alexey Dobriyan | 3ffe533 | 2010-02-18 08:25:24 +0000 | [diff] [blame] | 467 | 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | kfree_skb(skb); |
| 469 | return -1; |
| 470 | } |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 471 | ipv6_hdr(skb)->hop_limit--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | goto looped_back; |
| 473 | } |
| 474 | |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 475 | skb_push(skb, skb->data - skb_network_header(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | dst_input(skb); |
| 477 | return -1; |
YOSHIFUJI Hideaki | c382bb9 | 2007-07-10 22:47:58 -0700 | [diff] [blame] | 478 | |
| 479 | unknown_rh: |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 480 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_INHDRERRORS); |
YOSHIFUJI Hideaki | c382bb9 | 2007-07-10 22:47:58 -0700 | [diff] [blame] | 481 | icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, |
| 482 | (&hdr->type) - skb_network_header(skb)); |
| 483 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | } |
| 485 | |
Alexey Dobriyan | 41135cc | 2009-09-14 12:22:28 +0000 | [diff] [blame] | 486 | static const struct inet6_protocol rthdr_protocol = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | .handler = ipv6_rthdr_rcv, |
Vlad Yasevich | 2207afc | 2012-11-15 08:49:19 +0000 | [diff] [blame] | 488 | .flags = INET6_PROTO_NOPOLICY, |
Vlad Yasevich | 8ca896c | 2012-11-15 08:49:13 +0000 | [diff] [blame] | 489 | }; |
| 490 | |
Alexey Dobriyan | 41135cc | 2009-09-14 12:22:28 +0000 | [diff] [blame] | 491 | static const struct inet6_protocol destopt_protocol = { |
Daniel Lezcano | 248b238 | 2007-12-11 02:23:54 -0800 | [diff] [blame] | 492 | .handler = ipv6_destopt_rcv, |
Vlad Yasevich | 2207afc | 2012-11-15 08:49:19 +0000 | [diff] [blame] | 493 | .flags = INET6_PROTO_NOPOLICY, |
Vlad Yasevich | 8ca896c | 2012-11-15 08:49:13 +0000 | [diff] [blame] | 494 | }; |
| 495 | |
Alexey Dobriyan | 41135cc | 2009-09-14 12:22:28 +0000 | [diff] [blame] | 496 | static const struct inet6_protocol nodata_protocol = { |
Daniel Lezcano | 248b238 | 2007-12-11 02:23:54 -0800 | [diff] [blame] | 497 | .handler = dst_discard, |
| 498 | .flags = INET6_PROTO_NOPOLICY, |
| 499 | }; |
| 500 | |
| 501 | int __init ipv6_exthdrs_init(void) |
| 502 | { |
| 503 | int ret; |
| 504 | |
Vlad Yasevich | 3336288 | 2012-11-15 08:49:15 +0000 | [diff] [blame] | 505 | ret = ipv6_exthdrs_offload_init(); |
Daniel Lezcano | 248b238 | 2007-12-11 02:23:54 -0800 | [diff] [blame] | 506 | if (ret) |
| 507 | goto out; |
| 508 | |
Vlad Yasevich | 3336288 | 2012-11-15 08:49:15 +0000 | [diff] [blame] | 509 | ret = inet6_add_protocol(&rthdr_protocol, IPPROTO_ROUTING); |
| 510 | if (ret) |
| 511 | goto out_offload; |
| 512 | |
Daniel Lezcano | 248b238 | 2007-12-11 02:23:54 -0800 | [diff] [blame] | 513 | ret = inet6_add_protocol(&destopt_protocol, IPPROTO_DSTOPTS); |
| 514 | if (ret) |
| 515 | goto out_rthdr; |
| 516 | |
| 517 | ret = inet6_add_protocol(&nodata_protocol, IPPROTO_NONE); |
| 518 | if (ret) |
| 519 | goto out_destopt; |
| 520 | |
| 521 | out: |
| 522 | return ret; |
Daniel Lezcano | 248b238 | 2007-12-11 02:23:54 -0800 | [diff] [blame] | 523 | out_destopt: |
| 524 | inet6_del_protocol(&destopt_protocol, IPPROTO_DSTOPTS); |
Vlad Yasevich | 3336288 | 2012-11-15 08:49:15 +0000 | [diff] [blame] | 525 | out_rthdr: |
| 526 | inet6_del_protocol(&rthdr_protocol, IPPROTO_ROUTING); |
| 527 | out_offload: |
| 528 | ipv6_exthdrs_offload_exit(); |
Daniel Lezcano | 248b238 | 2007-12-11 02:23:54 -0800 | [diff] [blame] | 529 | goto out; |
| 530 | }; |
| 531 | |
| 532 | void ipv6_exthdrs_exit(void) |
| 533 | { |
Vlad Yasevich | 2207afc | 2012-11-15 08:49:19 +0000 | [diff] [blame] | 534 | ipv6_exthdrs_offload_exit(); |
Daniel Lezcano | 248b238 | 2007-12-11 02:23:54 -0800 | [diff] [blame] | 535 | inet6_del_protocol(&nodata_protocol, IPPROTO_NONE); |
| 536 | inet6_del_protocol(&destopt_protocol, IPPROTO_DSTOPTS); |
| 537 | inet6_del_protocol(&rthdr_protocol, IPPROTO_ROUTING); |
| 538 | } |
| 539 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | /********************************** |
| 541 | Hop-by-hop options. |
| 542 | **********************************/ |
| 543 | |
YOSHIFUJI Hideaki | e76b2b2 | 2007-05-09 14:01:59 -0700 | [diff] [blame] | 544 | /* |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 545 | * Note: we cannot rely on skb_dst(skb) before we assign it in ip6_route_input(). |
YOSHIFUJI Hideaki | e76b2b2 | 2007-05-09 14:01:59 -0700 | [diff] [blame] | 546 | */ |
| 547 | static inline struct inet6_dev *ipv6_skb_idev(struct sk_buff *skb) |
| 548 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 549 | return skb_dst(skb) ? ip6_dst_idev(skb_dst(skb)) : __in6_dev_get(skb->dev); |
YOSHIFUJI Hideaki | e76b2b2 | 2007-05-09 14:01:59 -0700 | [diff] [blame] | 550 | } |
| 551 | |
David S. Miller | 2570a4f | 2010-01-13 17:27:37 -0800 | [diff] [blame] | 552 | static inline struct net *ipv6_skb_net(struct sk_buff *skb) |
| 553 | { |
| 554 | return skb_dst(skb) ? dev_net(skb_dst(skb)->dev) : dev_net(skb->dev); |
| 555 | } |
| 556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | /* Router Alert as of RFC 2711 */ |
| 558 | |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 559 | static bool ipv6_hop_ra(struct sk_buff *skb, int optoff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | { |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 561 | const unsigned char *nh = skb_network_header(skb); |
Masahide NAKAMURA | a80ff03 | 2006-08-23 19:19:50 -0700 | [diff] [blame] | 562 | |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 563 | if (nh[optoff + 1] == 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | IP6CB(skb)->ra = optoff; |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 565 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | } |
Patrick McHardy | 64ce207 | 2005-08-09 20:50:53 -0700 | [diff] [blame] | 567 | LIMIT_NETDEBUG(KERN_DEBUG "ipv6_hop_ra: wrong RA length %d\n", |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 568 | nh[optoff + 1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | kfree_skb(skb); |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 570 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } |
| 572 | |
| 573 | /* Jumbo payload */ |
| 574 | |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 575 | static bool ipv6_hop_jumbo(struct sk_buff *skb, int optoff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | { |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 577 | const unsigned char *nh = skb_network_header(skb); |
David S. Miller | 2570a4f | 2010-01-13 17:27:37 -0800 | [diff] [blame] | 578 | struct net *net = ipv6_skb_net(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | u32 pkt_len; |
| 580 | |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 581 | if (nh[optoff + 1] != 4 || (optoff & 3) != 2) { |
Patrick McHardy | 64ce207 | 2005-08-09 20:50:53 -0700 | [diff] [blame] | 582 | LIMIT_NETDEBUG(KERN_DEBUG "ipv6_hop_jumbo: wrong jumbo opt length/alignment %d\n", |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 583 | nh[optoff+1]); |
Denis V. Lunev | 483a47d | 2008-10-08 11:09:27 -0700 | [diff] [blame] | 584 | IP6_INC_STATS_BH(net, ipv6_skb_idev(skb), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 585 | IPSTATS_MIB_INHDRERRORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | goto drop; |
| 587 | } |
| 588 | |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 589 | pkt_len = ntohl(*(__be32 *)(nh + optoff + 2)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | if (pkt_len <= IPV6_MAXPLEN) { |
Denis V. Lunev | 483a47d | 2008-10-08 11:09:27 -0700 | [diff] [blame] | 591 | IP6_INC_STATS_BH(net, ipv6_skb_idev(skb), |
| 592 | IPSTATS_MIB_INHDRERRORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, optoff+2); |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 594 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 596 | if (ipv6_hdr(skb)->payload_len) { |
Denis V. Lunev | 483a47d | 2008-10-08 11:09:27 -0700 | [diff] [blame] | 597 | IP6_INC_STATS_BH(net, ipv6_skb_idev(skb), |
| 598 | IPSTATS_MIB_INHDRERRORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, optoff); |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 600 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | if (pkt_len > skb->len - sizeof(struct ipv6hdr)) { |
Denis V. Lunev | 483a47d | 2008-10-08 11:09:27 -0700 | [diff] [blame] | 604 | IP6_INC_STATS_BH(net, ipv6_skb_idev(skb), |
| 605 | IPSTATS_MIB_INTRUNCATEDPKTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | goto drop; |
| 607 | } |
Stephen Hemminger | 42ca89c | 2005-09-08 12:57:43 -0700 | [diff] [blame] | 608 | |
| 609 | if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr))) |
| 610 | goto drop; |
| 611 | |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 612 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
| 614 | drop: |
| 615 | kfree_skb(skb); |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 616 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | } |
| 618 | |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 619 | static const struct tlvtype_proc tlvprochopopt_lst[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | { |
| 621 | .type = IPV6_TLV_ROUTERALERT, |
| 622 | .func = ipv6_hop_ra, |
| 623 | }, |
| 624 | { |
| 625 | .type = IPV6_TLV_JUMBO, |
| 626 | .func = ipv6_hop_jumbo, |
| 627 | }, |
| 628 | { -1, } |
| 629 | }; |
| 630 | |
Herbert Xu | e5bbef2 | 2007-10-15 12:50:28 -0700 | [diff] [blame] | 631 | int ipv6_parse_hopopts(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | { |
Patrick McHardy | 951dbc8 | 2006-01-06 23:02:34 -0800 | [diff] [blame] | 633 | struct inet6_skb_parm *opt = IP6CB(skb); |
| 634 | |
YOSHIFUJI Hideaki | ec67009 | 2006-04-18 14:46:26 -0700 | [diff] [blame] | 635 | /* |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 636 | * skb_network_header(skb) is equal to skb->data, and |
Arnaldo Carvalho de Melo | cfe1fc7 | 2007-03-16 17:26:39 -0300 | [diff] [blame] | 637 | * skb_network_header_len(skb) is always equal to |
YOSHIFUJI Hideaki | ec67009 | 2006-04-18 14:46:26 -0700 | [diff] [blame] | 638 | * sizeof(struct ipv6hdr) by definition of |
| 639 | * hop-by-hop options. |
| 640 | */ |
| 641 | if (!pskb_may_pull(skb, sizeof(struct ipv6hdr) + 8) || |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 642 | !pskb_may_pull(skb, (sizeof(struct ipv6hdr) + |
| 643 | ((skb_transport_header(skb)[1] + 1) << 3)))) { |
YOSHIFUJI Hideaki | ec67009 | 2006-04-18 14:46:26 -0700 | [diff] [blame] | 644 | kfree_skb(skb); |
| 645 | return -1; |
| 646 | } |
| 647 | |
Patrick McHardy | 951dbc8 | 2006-01-06 23:02:34 -0800 | [diff] [blame] | 648 | opt->hop = sizeof(struct ipv6hdr); |
Herbert Xu | e5bbef2 | 2007-10-15 12:50:28 -0700 | [diff] [blame] | 649 | if (ip6_parse_tlv(tlvprochopopt_lst, skb)) { |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 650 | skb->transport_header += (skb_transport_header(skb)[1] + 1) << 3; |
Masahide NAKAMURA | dc435e6 | 2006-08-31 15:18:49 -0700 | [diff] [blame] | 651 | opt = IP6CB(skb); |
Patrick McHardy | 951dbc8 | 2006-01-06 23:02:34 -0800 | [diff] [blame] | 652 | opt->nhoff = sizeof(struct ipv6hdr); |
YOSHIFUJI Hideaki | b809739 | 2006-04-18 14:48:45 -0700 | [diff] [blame] | 653 | return 1; |
Patrick McHardy | 951dbc8 | 2006-01-06 23:02:34 -0800 | [diff] [blame] | 654 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | return -1; |
| 656 | } |
| 657 | |
| 658 | /* |
| 659 | * Creating outbound headers. |
| 660 | * |
| 661 | * "build" functions work when skb is filled from head to tail (datagram) |
| 662 | * "push" functions work when headers are added from tail to head (tcp) |
| 663 | * |
| 664 | * In both cases we assume, that caller reserved enough room |
| 665 | * for headers. |
| 666 | */ |
| 667 | |
| 668 | static void ipv6_push_rthdr(struct sk_buff *skb, u8 *proto, |
| 669 | struct ipv6_rt_hdr *opt, |
| 670 | struct in6_addr **addr_p) |
| 671 | { |
| 672 | struct rt0_hdr *phdr, *ihdr; |
| 673 | int hops; |
| 674 | |
| 675 | ihdr = (struct rt0_hdr *) opt; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 676 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | phdr = (struct rt0_hdr *) skb_push(skb, (ihdr->rt_hdr.hdrlen + 1) << 3); |
| 678 | memcpy(phdr, ihdr, sizeof(struct rt0_hdr)); |
| 679 | |
| 680 | hops = ihdr->rt_hdr.hdrlen >> 1; |
| 681 | |
| 682 | if (hops > 1) |
| 683 | memcpy(phdr->addr, ihdr->addr + 1, |
| 684 | (hops - 1) * sizeof(struct in6_addr)); |
| 685 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 686 | phdr->addr[hops - 1] = **addr_p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | *addr_p = ihdr->addr; |
| 688 | |
| 689 | phdr->rt_hdr.nexthdr = *proto; |
| 690 | *proto = NEXTHDR_ROUTING; |
| 691 | } |
| 692 | |
| 693 | static void ipv6_push_exthdr(struct sk_buff *skb, u8 *proto, u8 type, struct ipv6_opt_hdr *opt) |
| 694 | { |
| 695 | struct ipv6_opt_hdr *h = (struct ipv6_opt_hdr *)skb_push(skb, ipv6_optlen(opt)); |
| 696 | |
| 697 | memcpy(h, opt, ipv6_optlen(opt)); |
| 698 | h->nexthdr = *proto; |
| 699 | *proto = type; |
| 700 | } |
| 701 | |
| 702 | void ipv6_push_nfrag_opts(struct sk_buff *skb, struct ipv6_txoptions *opt, |
| 703 | u8 *proto, |
| 704 | struct in6_addr **daddr) |
| 705 | { |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 706 | if (opt->srcrt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | ipv6_push_rthdr(skb, proto, opt->srcrt, daddr); |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 708 | /* |
| 709 | * IPV6_RTHDRDSTOPTS is ignored |
| 710 | * unless IPV6_RTHDR is set (RFC3542). |
| 711 | */ |
| 712 | if (opt->dst0opt) |
| 713 | ipv6_push_exthdr(skb, proto, NEXTHDR_DEST, opt->dst0opt); |
| 714 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | if (opt->hopopt) |
| 716 | ipv6_push_exthdr(skb, proto, NEXTHDR_HOP, opt->hopopt); |
| 717 | } |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 718 | EXPORT_SYMBOL(ipv6_push_nfrag_opts); |
| 719 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | void ipv6_push_frag_opts(struct sk_buff *skb, struct ipv6_txoptions *opt, u8 *proto) |
| 721 | { |
| 722 | if (opt->dst1opt) |
| 723 | ipv6_push_exthdr(skb, proto, NEXTHDR_DEST, opt->dst1opt); |
| 724 | } |
| 725 | |
| 726 | struct ipv6_txoptions * |
| 727 | ipv6_dup_options(struct sock *sk, struct ipv6_txoptions *opt) |
| 728 | { |
| 729 | struct ipv6_txoptions *opt2; |
| 730 | |
| 731 | opt2 = sock_kmalloc(sk, opt->tot_len, GFP_ATOMIC); |
| 732 | if (opt2) { |
Eldad Zack | ac3c817 | 2012-04-01 07:49:04 +0000 | [diff] [blame] | 733 | long dif = (char *)opt2 - (char *)opt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | memcpy(opt2, opt, opt->tot_len); |
| 735 | if (opt2->hopopt) |
Eldad Zack | ac3c817 | 2012-04-01 07:49:04 +0000 | [diff] [blame] | 736 | *((char **)&opt2->hopopt) += dif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | if (opt2->dst0opt) |
Eldad Zack | ac3c817 | 2012-04-01 07:49:04 +0000 | [diff] [blame] | 738 | *((char **)&opt2->dst0opt) += dif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | if (opt2->dst1opt) |
Eldad Zack | ac3c817 | 2012-04-01 07:49:04 +0000 | [diff] [blame] | 740 | *((char **)&opt2->dst1opt) += dif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | if (opt2->srcrt) |
Eldad Zack | ac3c817 | 2012-04-01 07:49:04 +0000 | [diff] [blame] | 742 | *((char **)&opt2->srcrt) += dif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | } |
| 744 | return opt2; |
| 745 | } |
Arnaldo Carvalho de Melo | 3cf3dc6 | 2005-12-13 23:23:20 -0800 | [diff] [blame] | 746 | EXPORT_SYMBOL_GPL(ipv6_dup_options); |
| 747 | |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 748 | static int ipv6_renew_option(void *ohdr, |
| 749 | struct ipv6_opt_hdr __user *newopt, int newoptlen, |
| 750 | int inherit, |
| 751 | struct ipv6_opt_hdr **hdr, |
| 752 | char **p) |
| 753 | { |
| 754 | if (inherit) { |
| 755 | if (ohdr) { |
| 756 | memcpy(*p, ohdr, ipv6_optlen((struct ipv6_opt_hdr *)ohdr)); |
| 757 | *hdr = (struct ipv6_opt_hdr *)*p; |
Joe Perches | e319269 | 2012-06-03 17:41:40 +0000 | [diff] [blame] | 758 | *p += CMSG_ALIGN(ipv6_optlen(*hdr)); |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 759 | } |
| 760 | } else { |
| 761 | if (newopt) { |
| 762 | if (copy_from_user(*p, newopt, newoptlen)) |
| 763 | return -EFAULT; |
| 764 | *hdr = (struct ipv6_opt_hdr *)*p; |
Joe Perches | e319269 | 2012-06-03 17:41:40 +0000 | [diff] [blame] | 765 | if (ipv6_optlen(*hdr) > newoptlen) |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 766 | return -EINVAL; |
| 767 | *p += CMSG_ALIGN(newoptlen); |
| 768 | } |
| 769 | } |
| 770 | return 0; |
| 771 | } |
| 772 | |
| 773 | struct ipv6_txoptions * |
| 774 | ipv6_renew_options(struct sock *sk, struct ipv6_txoptions *opt, |
| 775 | int newtype, |
| 776 | struct ipv6_opt_hdr __user *newopt, int newoptlen) |
| 777 | { |
| 778 | int tot_len = 0; |
| 779 | char *p; |
| 780 | struct ipv6_txoptions *opt2; |
| 781 | int err; |
| 782 | |
YOSHIFUJI Hideaki | 99c7bc0 | 2006-08-31 14:52:17 -0700 | [diff] [blame] | 783 | if (opt) { |
| 784 | if (newtype != IPV6_HOPOPTS && opt->hopopt) |
| 785 | tot_len += CMSG_ALIGN(ipv6_optlen(opt->hopopt)); |
| 786 | if (newtype != IPV6_RTHDRDSTOPTS && opt->dst0opt) |
| 787 | tot_len += CMSG_ALIGN(ipv6_optlen(opt->dst0opt)); |
| 788 | if (newtype != IPV6_RTHDR && opt->srcrt) |
| 789 | tot_len += CMSG_ALIGN(ipv6_optlen(opt->srcrt)); |
| 790 | if (newtype != IPV6_DSTOPTS && opt->dst1opt) |
| 791 | tot_len += CMSG_ALIGN(ipv6_optlen(opt->dst1opt)); |
| 792 | } |
| 793 | |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 794 | if (newopt && newoptlen) |
| 795 | tot_len += CMSG_ALIGN(newoptlen); |
| 796 | |
| 797 | if (!tot_len) |
| 798 | return NULL; |
| 799 | |
YOSHIFUJI Hideaki | 8b8aa4b | 2005-11-20 12:18:17 +0900 | [diff] [blame] | 800 | tot_len += sizeof(*opt2); |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 801 | opt2 = sock_kmalloc(sk, tot_len, GFP_ATOMIC); |
| 802 | if (!opt2) |
| 803 | return ERR_PTR(-ENOBUFS); |
| 804 | |
| 805 | memset(opt2, 0, tot_len); |
| 806 | |
| 807 | opt2->tot_len = tot_len; |
| 808 | p = (char *)(opt2 + 1); |
| 809 | |
YOSHIFUJI Hideaki | 99c7bc0 | 2006-08-31 14:52:17 -0700 | [diff] [blame] | 810 | err = ipv6_renew_option(opt ? opt->hopopt : NULL, newopt, newoptlen, |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 811 | newtype != IPV6_HOPOPTS, |
| 812 | &opt2->hopopt, &p); |
| 813 | if (err) |
| 814 | goto out; |
| 815 | |
YOSHIFUJI Hideaki | 99c7bc0 | 2006-08-31 14:52:17 -0700 | [diff] [blame] | 816 | err = ipv6_renew_option(opt ? opt->dst0opt : NULL, newopt, newoptlen, |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 817 | newtype != IPV6_RTHDRDSTOPTS, |
| 818 | &opt2->dst0opt, &p); |
| 819 | if (err) |
| 820 | goto out; |
| 821 | |
YOSHIFUJI Hideaki | 99c7bc0 | 2006-08-31 14:52:17 -0700 | [diff] [blame] | 822 | err = ipv6_renew_option(opt ? opt->srcrt : NULL, newopt, newoptlen, |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 823 | newtype != IPV6_RTHDR, |
YOSHIFUJI Hideaki | 99c7bc0 | 2006-08-31 14:52:17 -0700 | [diff] [blame] | 824 | (struct ipv6_opt_hdr **)&opt2->srcrt, &p); |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 825 | if (err) |
| 826 | goto out; |
| 827 | |
YOSHIFUJI Hideaki | 99c7bc0 | 2006-08-31 14:52:17 -0700 | [diff] [blame] | 828 | err = ipv6_renew_option(opt ? opt->dst1opt : NULL, newopt, newoptlen, |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 829 | newtype != IPV6_DSTOPTS, |
| 830 | &opt2->dst1opt, &p); |
| 831 | if (err) |
| 832 | goto out; |
| 833 | |
| 834 | opt2->opt_nflen = (opt2->hopopt ? ipv6_optlen(opt2->hopopt) : 0) + |
| 835 | (opt2->dst0opt ? ipv6_optlen(opt2->dst0opt) : 0) + |
| 836 | (opt2->srcrt ? ipv6_optlen(opt2->srcrt) : 0); |
| 837 | opt2->opt_flen = (opt2->dst1opt ? ipv6_optlen(opt2->dst1opt) : 0); |
| 838 | |
| 839 | return opt2; |
| 840 | out: |
YOSHIFUJI Hideaki | 8b8aa4b | 2005-11-20 12:18:17 +0900 | [diff] [blame] | 841 | sock_kfree_s(sk, opt2, opt2->tot_len); |
YOSHIFUJI Hideaki | 333fad5 | 2005-09-08 09:59:17 +0900 | [diff] [blame] | 842 | return ERR_PTR(err); |
| 843 | } |
| 844 | |
YOSHIFUJI Hideaki | df9890c | 2005-11-20 12:23:18 +0900 | [diff] [blame] | 845 | struct ipv6_txoptions *ipv6_fixup_options(struct ipv6_txoptions *opt_space, |
| 846 | struct ipv6_txoptions *opt) |
| 847 | { |
| 848 | /* |
| 849 | * ignore the dest before srcrt unless srcrt is being included. |
| 850 | * --yoshfuji |
| 851 | */ |
| 852 | if (opt && opt->dst0opt && !opt->srcrt) { |
| 853 | if (opt_space != opt) { |
| 854 | memcpy(opt_space, opt, sizeof(*opt_space)); |
| 855 | opt = opt_space; |
| 856 | } |
| 857 | opt->opt_nflen -= ipv6_optlen(opt->dst0opt); |
| 858 | opt->dst0opt = NULL; |
| 859 | } |
| 860 | |
| 861 | return opt; |
| 862 | } |
Chris Elston | a495f83 | 2012-04-29 21:48:53 +0000 | [diff] [blame] | 863 | EXPORT_SYMBOL_GPL(ipv6_fixup_options); |
YOSHIFUJI Hideaki | df9890c | 2005-11-20 12:23:18 +0900 | [diff] [blame] | 864 | |
Arnaud Ebalard | 20c59de | 2010-06-01 21:35:01 +0000 | [diff] [blame] | 865 | /** |
| 866 | * fl6_update_dst - update flowi destination address with info given |
| 867 | * by srcrt option, if any. |
| 868 | * |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 869 | * @fl6: flowi6 for which daddr is to be updated |
Arnaud Ebalard | 20c59de | 2010-06-01 21:35:01 +0000 | [diff] [blame] | 870 | * @opt: struct ipv6_txoptions in which to look for srcrt opt |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 871 | * @orig: copy of original daddr address if modified |
Arnaud Ebalard | 20c59de | 2010-06-01 21:35:01 +0000 | [diff] [blame] | 872 | * |
| 873 | * Returns NULL if no txoptions or no srcrt, otherwise returns orig |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 874 | * and initial value of fl6->daddr set in orig |
Arnaud Ebalard | 20c59de | 2010-06-01 21:35:01 +0000 | [diff] [blame] | 875 | */ |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 876 | struct in6_addr *fl6_update_dst(struct flowi6 *fl6, |
Arnaud Ebalard | 20c59de | 2010-06-01 21:35:01 +0000 | [diff] [blame] | 877 | const struct ipv6_txoptions *opt, |
| 878 | struct in6_addr *orig) |
| 879 | { |
| 880 | if (!opt || !opt->srcrt) |
| 881 | return NULL; |
| 882 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 883 | *orig = fl6->daddr; |
| 884 | fl6->daddr = *((struct rt0_hdr *)opt->srcrt)->addr; |
Arnaud Ebalard | 20c59de | 2010-06-01 21:35:01 +0000 | [diff] [blame] | 885 | return orig; |
| 886 | } |
Arnaud Ebalard | 20c59de | 2010-06-01 21:35:01 +0000 | [diff] [blame] | 887 | EXPORT_SYMBOL_GPL(fl6_update_dst); |