blob: ef0e2326496b20db674d5ceb6960443ac6ef782d [file] [log] [blame]
Vlad Yasevich3c73a032012-11-15 08:49:20 +00001/*
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 Hutchings5188cd42014-10-30 18:27:17 +00006#include <net/ip.h>
Vlad Yasevich3c73a032012-11-15 08:49:20 +00007#include <net/ipv6.h>
8#include <net/ip6_fib.h>
Cong Wang3ce9b352013-08-31 13:44:28 +08009#include <net/addrconf.h>
Hannes Frederic Sowa6dfac5c2014-03-30 18:28:03 +020010#include <net/secure_seq.h>
Vlad Yasevich3c73a032012-11-15 08:49:20 +000011
Hannes Frederic Sowa5a352dd2015-03-25 17:07:45 +010012static u32 __ipv6_select_ident(struct net *net, u32 hashrnd,
13 struct in6_addr *dst, struct in6_addr *src)
Vlad Yasevich0508c072015-02-03 16:36:15 -050014{
15 u32 hash, id;
16
17 hash = __ipv6_addr_jhash(dst, hashrnd);
18 hash = __ipv6_addr_jhash(src, hash);
Hannes Frederic Sowa5a352dd2015-03-25 17:07:45 +010019 hash ^= net_hash_mix(net);
Vlad Yasevich0508c072015-02-03 16:36:15 -050020
21 /* Treat id of 0 as unset and if we get 0 back from ip_idents_reserve,
22 * set the hight order instead thus minimizing possible future
23 * collisions.
24 */
25 id = ip_idents_reserve(hash, 1);
26 if (unlikely(!id))
27 id = 1 << 31;
28
29 return id;
30}
31
Ben Hutchings5188cd42014-10-30 18:27:17 +000032/* This function exists only for tap drivers that must support broken
33 * clients requesting UFO without specifying an IPv6 fragment ID.
34 *
35 * This is similar to ipv6_select_ident() but we use an independent hash
36 * seed to limit information leakage.
37 *
38 * The network header must be set before calling this.
39 */
Hannes Frederic Sowa5a352dd2015-03-25 17:07:45 +010040void ipv6_proxy_select_ident(struct net *net, struct sk_buff *skb)
Ben Hutchings5188cd42014-10-30 18:27:17 +000041{
42 static u32 ip6_proxy_idents_hashrnd __read_mostly;
43 struct in6_addr buf[2];
44 struct in6_addr *addrs;
Vlad Yasevich0508c072015-02-03 16:36:15 -050045 u32 id;
Ben Hutchings5188cd42014-10-30 18:27:17 +000046
47 addrs = skb_header_pointer(skb,
48 skb_network_offset(skb) +
49 offsetof(struct ipv6hdr, saddr),
50 sizeof(buf), buf);
51 if (!addrs)
52 return;
53
54 net_get_random_once(&ip6_proxy_idents_hashrnd,
55 sizeof(ip6_proxy_idents_hashrnd));
56
Hannes Frederic Sowa5a352dd2015-03-25 17:07:45 +010057 id = __ipv6_select_ident(net, ip6_proxy_idents_hashrnd,
Vlad Yasevich0508c072015-02-03 16:36:15 -050058 &addrs[1], &addrs[0]);
Vlad Yasevich51f30772015-02-09 09:38:20 -050059 skb_shinfo(skb)->ip6_frag_id = htonl(id);
Ben Hutchings5188cd42014-10-30 18:27:17 +000060}
61EXPORT_SYMBOL_GPL(ipv6_proxy_select_ident);
62
Martin KaFai Lau286c2342015-05-22 20:55:56 -070063u32 ipv6_select_ident(struct net *net, struct rt6_info *rt)
Vlad Yasevich0508c072015-02-03 16:36:15 -050064{
65 static u32 ip6_idents_hashrnd __read_mostly;
66 u32 id;
67
68 net_get_random_once(&ip6_idents_hashrnd, sizeof(ip6_idents_hashrnd));
69
Hannes Frederic Sowa5a352dd2015-03-25 17:07:45 +010070 id = __ipv6_select_ident(net, ip6_idents_hashrnd, &rt->rt6i_dst.addr,
Vlad Yasevich0508c072015-02-03 16:36:15 -050071 &rt->rt6i_src.addr);
Martin KaFai Lau286c2342015-05-22 20:55:56 -070072 return htonl(id);
Vlad Yasevich0508c072015-02-03 16:36:15 -050073}
74EXPORT_SYMBOL(ipv6_select_ident);
75
Vlad Yasevich3c73a032012-11-15 08:49:20 +000076int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr)
77{
78 u16 offset = sizeof(struct ipv6hdr);
79 struct ipv6_opt_hdr *exthdr =
80 (struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1);
Simon Horman29a3cad2013-05-28 20:34:26 +000081 unsigned int packet_len = skb_tail_pointer(skb) -
82 skb_network_header(skb);
Vlad Yasevich3c73a032012-11-15 08:49:20 +000083 int found_rhdr = 0;
84 *nexthdr = &ipv6_hdr(skb)->nexthdr;
85
86 while (offset + 1 <= packet_len) {
87
88 switch (**nexthdr) {
89
90 case NEXTHDR_HOP:
91 break;
92 case NEXTHDR_ROUTING:
93 found_rhdr = 1;
94 break;
95 case NEXTHDR_DEST:
96#if IS_ENABLED(CONFIG_IPV6_MIP6)
97 if (ipv6_find_tlv(skb, offset, IPV6_TLV_HAO) >= 0)
98 break;
99#endif
100 if (found_rhdr)
101 return offset;
102 break;
Ian Morris67ba4152014-08-24 21:53:10 +0100103 default:
Vlad Yasevich3c73a032012-11-15 08:49:20 +0000104 return offset;
105 }
106
107 offset += ipv6_optlen(exthdr);
108 *nexthdr = &exthdr->nexthdr;
109 exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) +
110 offset);
111 }
112
113 return offset;
114}
115EXPORT_SYMBOL(ip6_find_1stfragopt);
Cong Wang3ce9b352013-08-31 13:44:28 +0800116
117#if IS_ENABLED(CONFIG_IPV6)
118int ip6_dst_hoplimit(struct dst_entry *dst)
119{
120 int hoplimit = dst_metric_raw(dst, RTAX_HOPLIMIT);
121 if (hoplimit == 0) {
122 struct net_device *dev = dst->dev;
123 struct inet6_dev *idev;
124
125 rcu_read_lock();
126 idev = __in6_dev_get(dev);
127 if (idev)
128 hoplimit = idev->cnf.hop_limit;
129 else
130 hoplimit = dev_net(dev)->ipv6.devconf_all->hop_limit;
131 rcu_read_unlock();
132 }
133 return hoplimit;
134}
135EXPORT_SYMBOL(ip6_dst_hoplimit);
136#endif
Cong Wang788787b2013-08-31 13:44:29 +0800137
David Miller79b16aa2015-04-05 22:19:09 -0400138static int __ip6_local_out_sk(struct sock *sk, struct sk_buff *skb)
Cong Wang788787b2013-08-31 13:44:29 +0800139{
140 int len;
141
142 len = skb->len - sizeof(struct ipv6hdr);
143 if (len > IPV6_MAXPLEN)
144 len = 0;
145 ipv6_hdr(skb)->payload_len = htons(len);
huizhangf6c20c52014-06-09 12:37:25 +0800146 IP6CB(skb)->nhoff = offsetof(struct ipv6hdr, nexthdr);
Cong Wang788787b2013-08-31 13:44:29 +0800147
David Miller79b16aa2015-04-05 22:19:09 -0400148 return nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, sk, skb,
David Miller7026b1d2015-04-05 22:19:04 -0400149 NULL, skb_dst(skb)->dev, dst_output_sk);
Cong Wang788787b2013-08-31 13:44:29 +0800150}
David Miller79b16aa2015-04-05 22:19:09 -0400151
152int __ip6_local_out(struct sk_buff *skb)
153{
154 return __ip6_local_out_sk(skb->sk, skb);
155}
Cong Wang788787b2013-08-31 13:44:29 +0800156EXPORT_SYMBOL_GPL(__ip6_local_out);
157
David Miller79b16aa2015-04-05 22:19:09 -0400158int ip6_local_out_sk(struct sock *sk, struct sk_buff *skb)
Cong Wang788787b2013-08-31 13:44:29 +0800159{
160 int err;
161
David Miller79b16aa2015-04-05 22:19:09 -0400162 err = __ip6_local_out_sk(sk, skb);
Cong Wang788787b2013-08-31 13:44:29 +0800163 if (likely(err == 1))
David Miller79b16aa2015-04-05 22:19:09 -0400164 err = dst_output_sk(sk, skb);
Cong Wang788787b2013-08-31 13:44:29 +0800165
166 return err;
167}
David Miller79b16aa2015-04-05 22:19:09 -0400168EXPORT_SYMBOL_GPL(ip6_local_out_sk);
169
170int ip6_local_out(struct sk_buff *skb)
171{
172 return ip6_local_out_sk(skb->sk, skb);
173}
Cong Wang788787b2013-08-31 13:44:29 +0800174EXPORT_SYMBOL_GPL(ip6_local_out);