treewide: use get_random_u32() when possible
[linux-block.git] / net / ipv6 / output_core.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
3c73a036
VY
2/*
3 * IPv6 library code, needed by static components when full IPv6 support is
4 * not configured or static. These functions are needed by GSO/GRO implementation.
5 */
6#include <linux/export.h>
5188cd44 7#include <net/ip.h>
3c73a036
VY
8#include <net/ipv6.h>
9#include <net/ip6_fib.h>
3ce9b35f 10#include <net/addrconf.h>
6dfac5c3 11#include <net/secure_seq.h>
a263653e 12#include <linux/netfilter.h>
3c73a036 13
df453700 14static u32 __ipv6_select_ident(struct net *net,
fd0273d7
MKL
15 const struct in6_addr *dst,
16 const struct in6_addr *src)
0508c07f 17{
62f20e06 18 u32 id;
0508c07f 19
62f20e06 20 do {
a251c17a 21 id = get_random_u32();
62f20e06 22 } while (!id);
0508c07f
VY
23
24 return id;
25}
26
0c19f846
WB
27/* This function exists only for tap drivers that must support broken
28 * clients requesting UFO without specifying an IPv6 fragment ID.
29 *
30 * This is similar to ipv6_select_ident() but we use an independent hash
31 * seed to limit information leakage.
32 *
33 * The network header must be set before calling this.
34 */
35__be32 ipv6_proxy_select_ident(struct net *net, struct sk_buff *skb)
36{
0c19f846
WB
37 struct in6_addr buf[2];
38 struct in6_addr *addrs;
39 u32 id;
40
41 addrs = skb_header_pointer(skb,
42 skb_network_offset(skb) +
43 offsetof(struct ipv6hdr, saddr),
44 sizeof(buf), buf);
45 if (!addrs)
46 return 0;
47
df453700 48 id = __ipv6_select_ident(net, &addrs[1], &addrs[0]);
0c19f846
WB
49 return htonl(id);
50}
51EXPORT_SYMBOL_GPL(ipv6_proxy_select_ident);
52
7f159867
ED
53__be32 ipv6_select_ident(struct net *net,
54 const struct in6_addr *daddr,
55 const struct in6_addr *saddr)
0508c07f 56{
0508c07f
VY
57 u32 id;
58
df453700 59 id = __ipv6_select_ident(net, daddr, saddr);
286c2349 60 return htonl(id);
0508c07f
VY
61}
62EXPORT_SYMBOL(ipv6_select_ident);
63
3c73a036
VY
64int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr)
65{
6399f1fa 66 unsigned int offset = sizeof(struct ipv6hdr);
29a3cad5
SH
67 unsigned int packet_len = skb_tail_pointer(skb) -
68 skb_network_header(skb);
3c73a036
VY
69 int found_rhdr = 0;
70 *nexthdr = &ipv6_hdr(skb)->nexthdr;
71
2423496a
CG
72 while (offset <= packet_len) {
73 struct ipv6_opt_hdr *exthdr;
3c73a036
VY
74
75 switch (**nexthdr) {
76
77 case NEXTHDR_HOP:
78 break;
79 case NEXTHDR_ROUTING:
80 found_rhdr = 1;
81 break;
82 case NEXTHDR_DEST:
83#if IS_ENABLED(CONFIG_IPV6_MIP6)
84 if (ipv6_find_tlv(skb, offset, IPV6_TLV_HAO) >= 0)
85 break;
86#endif
87 if (found_rhdr)
88 return offset;
89 break;
67ba4152 90 default:
3c73a036
VY
91 return offset;
92 }
93
2423496a
CG
94 if (offset + sizeof(struct ipv6_opt_hdr) > packet_len)
95 return -EINVAL;
96
3c73a036
VY
97 exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) +
98 offset);
3de33e1b
SB
99 offset += ipv6_optlen(exthdr);
100 if (offset > IPV6_MAXPLEN)
6399f1fa 101 return -EINVAL;
2423496a 102 *nexthdr = &exthdr->nexthdr;
3c73a036
VY
103 }
104
2423496a 105 return -EINVAL;
3c73a036
VY
106}
107EXPORT_SYMBOL(ip6_find_1stfragopt);
3ce9b35f
CW
108
109#if IS_ENABLED(CONFIG_IPV6)
110int ip6_dst_hoplimit(struct dst_entry *dst)
111{
112 int hoplimit = dst_metric_raw(dst, RTAX_HOPLIMIT);
113 if (hoplimit == 0) {
114 struct net_device *dev = dst->dev;
115 struct inet6_dev *idev;
116
117 rcu_read_lock();
118 idev = __in6_dev_get(dev);
119 if (idev)
120 hoplimit = idev->cnf.hop_limit;
121 else
122 hoplimit = dev_net(dev)->ipv6.devconf_all->hop_limit;
123 rcu_read_unlock();
124 }
125 return hoplimit;
126}
127EXPORT_SYMBOL(ip6_dst_hoplimit);
128#endif
788787b5 129
cf91a99d 130int __ip6_local_out(struct net *net, struct sock *sk, struct sk_buff *skb)
788787b5
CW
131{
132 int len;
133
134 len = skb->len - sizeof(struct ipv6hdr);
135 if (len > IPV6_MAXPLEN)
136 len = 0;
137 ipv6_hdr(skb)->payload_len = htons(len);
f6c20c59 138 IP6CB(skb)->nhoff = offsetof(struct ipv6hdr, nexthdr);
788787b5 139
a8e3e1a9
DA
140 /* if egress device is enslaved to an L3 master device pass the
141 * skb to its handler for processing
142 */
143 skb = l3mdev_ip6_out(sk, skb);
144 if (unlikely(!skb))
145 return 0;
146
b4e479a9
EC
147 skb->protocol = htons(ETH_P_IPV6);
148
29a26a56
EB
149 return nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT,
150 net, sk, skb, NULL, skb_dst(skb)->dev,
13206b6b 151 dst_output);
788787b5
CW
152}
153EXPORT_SYMBOL_GPL(__ip6_local_out);
154
33224b16 155int ip6_local_out(struct net *net, struct sock *sk, struct sk_buff *skb)
788787b5
CW
156{
157 int err;
158
cf91a99d 159 err = __ip6_local_out(net, sk, skb);
788787b5 160 if (likely(err == 1))
13206b6b 161 err = dst_output(net, sk, skb);
788787b5
CW
162
163 return err;
164}
165EXPORT_SYMBOL_GPL(ip6_local_out);