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.
5 #include <linux/export.h>
7 #include <net/ip6_fib.h>
8 #include <net/addrconf.h>
10 void ipv6_select_ident(struct frag_hdr
*fhdr
, struct rt6_info
*rt
)
12 static atomic_t ipv6_fragmentation_id
;
15 #if IS_ENABLED(CONFIG_IPV6)
16 if (rt
&& !(rt
->dst
.flags
& DST_NOPEER
)) {
17 struct inet_peer
*peer
;
20 net
= dev_net(rt
->dst
.dev
);
21 peer
= inet_getpeer_v6(net
->ipv6
.peers
, &rt
->rt6i_dst
.addr
, 1);
23 fhdr
->identification
= htonl(inet_getid(peer
, 0));
30 old
= atomic_read(&ipv6_fragmentation_id
);
34 } while (atomic_cmpxchg(&ipv6_fragmentation_id
, old
, new) != old
);
35 fhdr
->identification
= htonl(new);
37 EXPORT_SYMBOL(ipv6_select_ident
);
39 int ip6_find_1stfragopt(struct sk_buff
*skb
, u8
**nexthdr
)
41 u16 offset
= sizeof(struct ipv6hdr
);
42 struct ipv6_opt_hdr
*exthdr
=
43 (struct ipv6_opt_hdr
*)(ipv6_hdr(skb
) + 1);
44 unsigned int packet_len
= skb_tail_pointer(skb
) -
45 skb_network_header(skb
);
47 *nexthdr
= &ipv6_hdr(skb
)->nexthdr
;
49 while (offset
+ 1 <= packet_len
) {
59 #if IS_ENABLED(CONFIG_IPV6_MIP6)
60 if (ipv6_find_tlv(skb
, offset
, IPV6_TLV_HAO
) >= 0)
70 offset
+= ipv6_optlen(exthdr
);
71 *nexthdr
= &exthdr
->nexthdr
;
72 exthdr
= (struct ipv6_opt_hdr
*)(skb_network_header(skb
) +
78 EXPORT_SYMBOL(ip6_find_1stfragopt
);
80 #if IS_ENABLED(CONFIG_IPV6)
81 int ip6_dst_hoplimit(struct dst_entry
*dst
)
83 int hoplimit
= dst_metric_raw(dst
, RTAX_HOPLIMIT
);
85 struct net_device
*dev
= dst
->dev
;
86 struct inet6_dev
*idev
;
89 idev
= __in6_dev_get(dev
);
91 hoplimit
= idev
->cnf
.hop_limit
;
93 hoplimit
= dev_net(dev
)->ipv6
.devconf_all
->hop_limit
;
98 EXPORT_SYMBOL(ip6_dst_hoplimit
);
101 int __ip6_local_out(struct sk_buff
*skb
)
105 len
= skb
->len
- sizeof(struct ipv6hdr
);
106 if (len
> IPV6_MAXPLEN
)
108 ipv6_hdr(skb
)->payload_len
= htons(len
);
110 return nf_hook(NFPROTO_IPV6
, NF_INET_LOCAL_OUT
, skb
, NULL
,
111 skb_dst(skb
)->dev
, dst_output
);
113 EXPORT_SYMBOL_GPL(__ip6_local_out
);
115 int ip6_local_out(struct sk_buff
*skb
)
119 err
= __ip6_local_out(skb
);
120 if (likely(err
== 1))
121 err
= dst_output(skb
);
125 EXPORT_SYMBOL_GPL(ip6_local_out
);