Vlad Yasevich | 3c73a03 | 2012-11-15 08:49:20 +0000 | [diff] [blame] | 1 | /* |
| 2 | * IPv6 library code, needed by static components when full IPv6 support is |
| 3 | * not configured or static. These functions are needed by GSO/GRO implementation. |
| 4 | */ |
| 5 | #include <linux/export.h> |
Ben Hutchings | 5188cd4 | 2014-10-30 18:27:17 +0000 | [diff] [blame] | 6 | #include <net/ip.h> |
Vlad Yasevich | 3c73a03 | 2012-11-15 08:49:20 +0000 | [diff] [blame] | 7 | #include <net/ipv6.h> |
| 8 | #include <net/ip6_fib.h> |
Cong Wang | 3ce9b35 | 2013-08-31 13:44:28 +0800 | [diff] [blame] | 9 | #include <net/addrconf.h> |
Hannes Frederic Sowa | 6dfac5c | 2014-03-30 18:28:03 +0200 | [diff] [blame] | 10 | #include <net/secure_seq.h> |
Pablo Neira Ayuso | a263653 | 2015-06-17 10:28:27 -0500 | [diff] [blame] | 11 | #include <linux/netfilter.h> |
Vlad Yasevich | 3c73a03 | 2012-11-15 08:49:20 +0000 | [diff] [blame] | 12 | |
Hannes Frederic Sowa | 5a352dd | 2015-03-25 17:07:45 +0100 | [diff] [blame] | 13 | static u32 __ipv6_select_ident(struct net *net, u32 hashrnd, |
Martin KaFai Lau | fd0273d | 2015-05-22 20:55:57 -0700 | [diff] [blame] | 14 | const struct in6_addr *dst, |
| 15 | const struct in6_addr *src) |
Vlad Yasevich | 0508c07 | 2015-02-03 16:36:15 -0500 | [diff] [blame] | 16 | { |
| 17 | u32 hash, id; |
| 18 | |
| 19 | hash = __ipv6_addr_jhash(dst, hashrnd); |
| 20 | hash = __ipv6_addr_jhash(src, hash); |
Hannes Frederic Sowa | 5a352dd | 2015-03-25 17:07:45 +0100 | [diff] [blame] | 21 | hash ^= net_hash_mix(net); |
Vlad Yasevich | 0508c07 | 2015-02-03 16:36:15 -0500 | [diff] [blame] | 22 | |
| 23 | /* Treat id of 0 as unset and if we get 0 back from ip_idents_reserve, |
| 24 | * set the hight order instead thus minimizing possible future |
| 25 | * collisions. |
| 26 | */ |
| 27 | id = ip_idents_reserve(hash, 1); |
| 28 | if (unlikely(!id)) |
| 29 | id = 1 << 31; |
| 30 | |
| 31 | return id; |
| 32 | } |
| 33 | |
Ben Hutchings | 5188cd4 | 2014-10-30 18:27:17 +0000 | [diff] [blame] | 34 | /* This function exists only for tap drivers that must support broken |
| 35 | * clients requesting UFO without specifying an IPv6 fragment ID. |
| 36 | * |
| 37 | * This is similar to ipv6_select_ident() but we use an independent hash |
| 38 | * seed to limit information leakage. |
| 39 | * |
| 40 | * The network header must be set before calling this. |
| 41 | */ |
Hannes Frederic Sowa | 5a352dd | 2015-03-25 17:07:45 +0100 | [diff] [blame] | 42 | void ipv6_proxy_select_ident(struct net *net, struct sk_buff *skb) |
Ben Hutchings | 5188cd4 | 2014-10-30 18:27:17 +0000 | [diff] [blame] | 43 | { |
| 44 | static u32 ip6_proxy_idents_hashrnd __read_mostly; |
| 45 | struct in6_addr buf[2]; |
| 46 | struct in6_addr *addrs; |
Vlad Yasevich | 0508c07 | 2015-02-03 16:36:15 -0500 | [diff] [blame] | 47 | u32 id; |
Ben Hutchings | 5188cd4 | 2014-10-30 18:27:17 +0000 | [diff] [blame] | 48 | |
| 49 | addrs = skb_header_pointer(skb, |
| 50 | skb_network_offset(skb) + |
| 51 | offsetof(struct ipv6hdr, saddr), |
| 52 | sizeof(buf), buf); |
| 53 | if (!addrs) |
| 54 | return; |
| 55 | |
| 56 | net_get_random_once(&ip6_proxy_idents_hashrnd, |
| 57 | sizeof(ip6_proxy_idents_hashrnd)); |
| 58 | |
Hannes Frederic Sowa | 5a352dd | 2015-03-25 17:07:45 +0100 | [diff] [blame] | 59 | id = __ipv6_select_ident(net, ip6_proxy_idents_hashrnd, |
Vlad Yasevich | 0508c07 | 2015-02-03 16:36:15 -0500 | [diff] [blame] | 60 | &addrs[1], &addrs[0]); |
Vlad Yasevich | 51f3077 | 2015-02-09 09:38:20 -0500 | [diff] [blame] | 61 | skb_shinfo(skb)->ip6_frag_id = htonl(id); |
Ben Hutchings | 5188cd4 | 2014-10-30 18:27:17 +0000 | [diff] [blame] | 62 | } |
| 63 | EXPORT_SYMBOL_GPL(ipv6_proxy_select_ident); |
| 64 | |
Eric Dumazet | 7f15986 | 2015-05-25 16:02:21 -0700 | [diff] [blame] | 65 | __be32 ipv6_select_ident(struct net *net, |
| 66 | const struct in6_addr *daddr, |
| 67 | const struct in6_addr *saddr) |
Vlad Yasevich | 0508c07 | 2015-02-03 16:36:15 -0500 | [diff] [blame] | 68 | { |
| 69 | static u32 ip6_idents_hashrnd __read_mostly; |
| 70 | u32 id; |
| 71 | |
| 72 | net_get_random_once(&ip6_idents_hashrnd, sizeof(ip6_idents_hashrnd)); |
| 73 | |
Martin KaFai Lau | fd0273d | 2015-05-22 20:55:57 -0700 | [diff] [blame] | 74 | id = __ipv6_select_ident(net, ip6_idents_hashrnd, daddr, saddr); |
Martin KaFai Lau | 286c234 | 2015-05-22 20:55:56 -0700 | [diff] [blame] | 75 | return htonl(id); |
Vlad Yasevich | 0508c07 | 2015-02-03 16:36:15 -0500 | [diff] [blame] | 76 | } |
| 77 | EXPORT_SYMBOL(ipv6_select_ident); |
| 78 | |
Vlad Yasevich | 3c73a03 | 2012-11-15 08:49:20 +0000 | [diff] [blame] | 79 | int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr) |
| 80 | { |
| 81 | u16 offset = sizeof(struct ipv6hdr); |
| 82 | struct ipv6_opt_hdr *exthdr = |
| 83 | (struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1); |
Simon Horman | 29a3cad | 2013-05-28 20:34:26 +0000 | [diff] [blame] | 84 | unsigned int packet_len = skb_tail_pointer(skb) - |
| 85 | skb_network_header(skb); |
Vlad Yasevich | 3c73a03 | 2012-11-15 08:49:20 +0000 | [diff] [blame] | 86 | int found_rhdr = 0; |
| 87 | *nexthdr = &ipv6_hdr(skb)->nexthdr; |
| 88 | |
| 89 | while (offset + 1 <= packet_len) { |
| 90 | |
| 91 | switch (**nexthdr) { |
| 92 | |
| 93 | case NEXTHDR_HOP: |
| 94 | break; |
| 95 | case NEXTHDR_ROUTING: |
| 96 | found_rhdr = 1; |
| 97 | break; |
| 98 | case NEXTHDR_DEST: |
| 99 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
| 100 | if (ipv6_find_tlv(skb, offset, IPV6_TLV_HAO) >= 0) |
| 101 | break; |
| 102 | #endif |
| 103 | if (found_rhdr) |
| 104 | return offset; |
| 105 | break; |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 106 | default: |
Vlad Yasevich | 3c73a03 | 2012-11-15 08:49:20 +0000 | [diff] [blame] | 107 | return offset; |
| 108 | } |
| 109 | |
| 110 | offset += ipv6_optlen(exthdr); |
| 111 | *nexthdr = &exthdr->nexthdr; |
| 112 | exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) + |
| 113 | offset); |
| 114 | } |
| 115 | |
| 116 | return offset; |
| 117 | } |
| 118 | EXPORT_SYMBOL(ip6_find_1stfragopt); |
Cong Wang | 3ce9b35 | 2013-08-31 13:44:28 +0800 | [diff] [blame] | 119 | |
| 120 | #if IS_ENABLED(CONFIG_IPV6) |
| 121 | int ip6_dst_hoplimit(struct dst_entry *dst) |
| 122 | { |
| 123 | int hoplimit = dst_metric_raw(dst, RTAX_HOPLIMIT); |
| 124 | if (hoplimit == 0) { |
| 125 | struct net_device *dev = dst->dev; |
| 126 | struct inet6_dev *idev; |
| 127 | |
| 128 | rcu_read_lock(); |
| 129 | idev = __in6_dev_get(dev); |
| 130 | if (idev) |
| 131 | hoplimit = idev->cnf.hop_limit; |
| 132 | else |
| 133 | hoplimit = dev_net(dev)->ipv6.devconf_all->hop_limit; |
| 134 | rcu_read_unlock(); |
| 135 | } |
| 136 | return hoplimit; |
| 137 | } |
| 138 | EXPORT_SYMBOL(ip6_dst_hoplimit); |
| 139 | #endif |
Cong Wang | 788787b | 2013-08-31 13:44:29 +0800 | [diff] [blame] | 140 | |
David Miller | 79b16aa | 2015-04-05 22:19:09 -0400 | [diff] [blame] | 141 | static int __ip6_local_out_sk(struct sock *sk, struct sk_buff *skb) |
Cong Wang | 788787b | 2013-08-31 13:44:29 +0800 | [diff] [blame] | 142 | { |
| 143 | int len; |
| 144 | |
| 145 | len = skb->len - sizeof(struct ipv6hdr); |
| 146 | if (len > IPV6_MAXPLEN) |
| 147 | len = 0; |
| 148 | ipv6_hdr(skb)->payload_len = htons(len); |
huizhang | f6c20c5 | 2014-06-09 12:37:25 +0800 | [diff] [blame] | 149 | IP6CB(skb)->nhoff = offsetof(struct ipv6hdr, nexthdr); |
Cong Wang | 788787b | 2013-08-31 13:44:29 +0800 | [diff] [blame] | 150 | |
David Miller | 79b16aa | 2015-04-05 22:19:09 -0400 | [diff] [blame] | 151 | return nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, sk, skb, |
David Miller | 7026b1d | 2015-04-05 22:19:04 -0400 | [diff] [blame] | 152 | NULL, skb_dst(skb)->dev, dst_output_sk); |
Cong Wang | 788787b | 2013-08-31 13:44:29 +0800 | [diff] [blame] | 153 | } |
David Miller | 79b16aa | 2015-04-05 22:19:09 -0400 | [diff] [blame] | 154 | |
| 155 | int __ip6_local_out(struct sk_buff *skb) |
| 156 | { |
| 157 | return __ip6_local_out_sk(skb->sk, skb); |
| 158 | } |
Cong Wang | 788787b | 2013-08-31 13:44:29 +0800 | [diff] [blame] | 159 | EXPORT_SYMBOL_GPL(__ip6_local_out); |
| 160 | |
David Miller | 79b16aa | 2015-04-05 22:19:09 -0400 | [diff] [blame] | 161 | int ip6_local_out_sk(struct sock *sk, struct sk_buff *skb) |
Cong Wang | 788787b | 2013-08-31 13:44:29 +0800 | [diff] [blame] | 162 | { |
| 163 | int err; |
| 164 | |
David Miller | 79b16aa | 2015-04-05 22:19:09 -0400 | [diff] [blame] | 165 | err = __ip6_local_out_sk(sk, skb); |
Cong Wang | 788787b | 2013-08-31 13:44:29 +0800 | [diff] [blame] | 166 | if (likely(err == 1)) |
David Miller | 79b16aa | 2015-04-05 22:19:09 -0400 | [diff] [blame] | 167 | err = dst_output_sk(sk, skb); |
Cong Wang | 788787b | 2013-08-31 13:44:29 +0800 | [diff] [blame] | 168 | |
| 169 | return err; |
| 170 | } |
David Miller | 79b16aa | 2015-04-05 22:19:09 -0400 | [diff] [blame] | 171 | EXPORT_SYMBOL_GPL(ip6_local_out_sk); |
| 172 | |
| 173 | int ip6_local_out(struct sk_buff *skb) |
| 174 | { |
| 175 | return ip6_local_out_sk(skb->sk, skb); |
| 176 | } |
Cong Wang | 788787b | 2013-08-31 13:44:29 +0800 | [diff] [blame] | 177 | EXPORT_SYMBOL_GPL(ip6_local_out); |