Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * INET An implementation of the TCP/IP protocol suite for the LINUX |
| 4 | * operating system. INET is implemented using the BSD Socket |
| 5 | * interface as the means of communication with the user level. |
| 6 | * |
| 7 | * The Internet Protocol (IP) output module. |
| 8 | * |
Jesper Juhl | 02c30a8 | 2005-05-05 16:16:16 -0700 | [diff] [blame] | 9 | * Authors: Ross Biro |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> |
| 11 | * Donald Becker, <becker@super.org> |
| 12 | * Alan Cox, <Alan.Cox@linux.org> |
| 13 | * Richard Underwood |
| 14 | * Stefan Becker, <stefanb@yello.ping.de> |
| 15 | * Jorge Cwik, <jorge@laser.satlink.net> |
| 16 | * Arnt Gulbrandsen, <agulbra@nvg.unit.no> |
| 17 | * Hirokazu Takahashi, <taka@valinux.co.jp> |
| 18 | * |
| 19 | * See ip_input.c for original log |
| 20 | * |
| 21 | * Fixes: |
| 22 | * Alan Cox : Missing nonblock feature in ip_build_xmit. |
| 23 | * Mike Kilburn : htons() missing in ip_build_xmit. |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 24 | * Bradford Johnson: Fix faulty handling of some frames when |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | * no route is found. |
| 26 | * Alexander Demenshin: Missing sk/skb free in ip_queue_xmit |
| 27 | * (in case if packet not accepted by |
| 28 | * output firewall rules) |
| 29 | * Mike McLagan : Routing by source |
| 30 | * Alexey Kuznetsov: use new route cache |
| 31 | * Andi Kleen: Fix broken PMTU recovery and remove |
| 32 | * some redundant tests. |
| 33 | * Vitaly E. Lavrov : Transparent proxy revived after year coma. |
| 34 | * Andi Kleen : Replace ip_reply with ip_send_reply. |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 35 | * Andi Kleen : Split fast and slow ip_build_xmit path |
| 36 | * for decreased register pressure on x86 |
| 37 | * and more readibility. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | * Marc Boucher : When call_out_firewall returns FW_QUEUE, |
| 39 | * silently drop skb instead of failing with -EPERM. |
| 40 | * Detlev Wengorz : Copy protocol for fragments. |
| 41 | * Hirokazu Takahashi: HW checksumming for outgoing UDP |
| 42 | * datagrams. |
| 43 | * Hirokazu Takahashi: sendfile() on UDP works now. |
| 44 | */ |
| 45 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 46 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/module.h> |
| 48 | #include <linux/types.h> |
| 49 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <linux/mm.h> |
| 51 | #include <linux/string.h> |
| 52 | #include <linux/errno.h> |
Al Viro | a1f8e7f7 | 2006-10-19 16:08:53 -0400 | [diff] [blame] | 53 | #include <linux/highmem.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 54 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | #include <linux/socket.h> |
| 57 | #include <linux/sockios.h> |
| 58 | #include <linux/in.h> |
| 59 | #include <linux/inet.h> |
| 60 | #include <linux/netdevice.h> |
| 61 | #include <linux/etherdevice.h> |
| 62 | #include <linux/proc_fs.h> |
| 63 | #include <linux/stat.h> |
| 64 | #include <linux/init.h> |
| 65 | |
| 66 | #include <net/snmp.h> |
| 67 | #include <net/ip.h> |
| 68 | #include <net/protocol.h> |
| 69 | #include <net/route.h> |
Patrick McHardy | cfacb05 | 2006-01-08 22:36:54 -0800 | [diff] [blame] | 70 | #include <net/xfrm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | #include <linux/skbuff.h> |
| 72 | #include <net/sock.h> |
| 73 | #include <net/arp.h> |
| 74 | #include <net/icmp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | #include <net/checksum.h> |
| 76 | #include <net/inetpeer.h> |
Roopa Prabhu | 14972cb | 2016-08-24 20:10:43 -0700 | [diff] [blame] | 77 | #include <net/lwtunnel.h> |
Daniel Mack | 33b4867 | 2016-11-23 16:52:29 +0100 | [diff] [blame] | 78 | #include <linux/bpf-cgroup.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #include <linux/igmp.h> |
| 80 | #include <linux/netfilter_ipv4.h> |
| 81 | #include <linux/netfilter_bridge.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #include <linux/netlink.h> |
Arnaldo Carvalho de Melo | 6cbb0df | 2005-08-09 19:49:02 -0700 | [diff] [blame] | 83 | #include <linux/tcp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 85 | static int |
| 86 | ip_fragment(struct net *net, struct sock *sk, struct sk_buff *skb, |
| 87 | unsigned int mtu, |
| 88 | int (*output)(struct net *, struct sock *, struct sk_buff *)); |
Andy Zhou | 49d16b2 | 2015-05-15 14:15:37 -0700 | [diff] [blame] | 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | /* Generate a checksum for an outgoing IP datagram. */ |
Denis Efremov | 2fbd967 | 2013-05-08 23:19:42 +0000 | [diff] [blame] | 91 | void ip_send_check(struct iphdr *iph) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
| 93 | iph->check = 0; |
| 94 | iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl); |
| 95 | } |
Eric Dumazet | 4bc2f18 | 2010-07-09 21:22:10 +0000 | [diff] [blame] | 96 | EXPORT_SYMBOL(ip_send_check); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Eric W. Biederman | cf91a99 | 2015-10-07 16:48:45 -0500 | [diff] [blame] | 98 | int __ip_local_out(struct net *net, struct sock *sk, struct sk_buff *skb) |
Herbert Xu | c439cb2 | 2008-01-11 19:14:00 -0800 | [diff] [blame] | 99 | { |
| 100 | struct iphdr *iph = ip_hdr(skb); |
| 101 | |
| 102 | iph->tot_len = htons(skb->len); |
| 103 | ip_send_check(iph); |
David Ahern | a8e3e1a | 2016-09-10 12:09:53 -0700 | [diff] [blame] | 104 | |
| 105 | /* if egress device is enslaved to an L3 master device pass the |
| 106 | * skb to its handler for processing |
| 107 | */ |
| 108 | skb = l3mdev_ip_out(sk, skb); |
| 109 | if (unlikely(!skb)) |
| 110 | return 0; |
| 111 | |
Eli Cooper | f418043 | 2016-12-01 10:05:10 +0800 | [diff] [blame] | 112 | skb->protocol = htons(ETH_P_IP); |
| 113 | |
Eric W. Biederman | 29a26a5 | 2015-09-15 20:04:16 -0500 | [diff] [blame] | 114 | return nf_hook(NFPROTO_IPV4, NF_INET_LOCAL_OUT, |
| 115 | net, sk, skb, NULL, skb_dst(skb)->dev, |
Eric W. Biederman | 13206b6 | 2015-10-07 16:48:35 -0500 | [diff] [blame] | 116 | dst_output); |
David Miller | 7026b1d | 2015-04-05 22:19:04 -0400 | [diff] [blame] | 117 | } |
| 118 | |
Eric W. Biederman | 33224b1 | 2015-10-07 16:48:46 -0500 | [diff] [blame] | 119 | int ip_local_out(struct net *net, struct sock *sk, struct sk_buff *skb) |
Herbert Xu | c439cb2 | 2008-01-11 19:14:00 -0800 | [diff] [blame] | 120 | { |
| 121 | int err; |
| 122 | |
Eric W. Biederman | cf91a99 | 2015-10-07 16:48:45 -0500 | [diff] [blame] | 123 | err = __ip_local_out(net, sk, skb); |
Herbert Xu | c439cb2 | 2008-01-11 19:14:00 -0800 | [diff] [blame] | 124 | if (likely(err == 1)) |
Eric W. Biederman | 13206b6 | 2015-10-07 16:48:35 -0500 | [diff] [blame] | 125 | err = dst_output(net, sk, skb); |
Herbert Xu | c439cb2 | 2008-01-11 19:14:00 -0800 | [diff] [blame] | 126 | |
| 127 | return err; |
| 128 | } |
Eric W. Biederman | e2cb77d | 2015-10-07 16:48:38 -0500 | [diff] [blame] | 129 | EXPORT_SYMBOL_GPL(ip_local_out); |
Herbert Xu | c439cb2 | 2008-01-11 19:14:00 -0800 | [diff] [blame] | 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | static inline int ip_select_ttl(struct inet_sock *inet, struct dst_entry *dst) |
| 132 | { |
| 133 | int ttl = inet->uc_ttl; |
| 134 | |
| 135 | if (ttl < 0) |
David S. Miller | 323e126 | 2010-12-12 21:55:08 -0800 | [diff] [blame] | 136 | ttl = ip4_dst_hoplimit(dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | return ttl; |
| 138 | } |
| 139 | |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 140 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | * Add an ip header to a skbuff and send it out. |
| 142 | * |
| 143 | */ |
Eric Dumazet | cfe673b | 2015-09-25 07:39:16 -0700 | [diff] [blame] | 144 | int ip_build_and_send_pkt(struct sk_buff *skb, const struct sock *sk, |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 145 | __be32 saddr, __be32 daddr, struct ip_options_rcu *opt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | { |
| 147 | struct inet_sock *inet = inet_sk(sk); |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 148 | struct rtable *rt = skb_rtable(skb); |
Eric W. Biederman | 77589ce | 2015-10-07 16:48:42 -0500 | [diff] [blame] | 149 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | struct iphdr *iph; |
| 151 | |
| 152 | /* Build the IP header. */ |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 153 | skb_push(skb, sizeof(struct iphdr) + (opt ? opt->opt.optlen : 0)); |
Arnaldo Carvalho de Melo | 8856dfa | 2007-03-10 19:40:39 -0300 | [diff] [blame] | 154 | skb_reset_network_header(skb); |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 155 | iph = ip_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | iph->version = 4; |
| 157 | iph->ihl = 5; |
| 158 | iph->tos = inet->tos; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 159 | iph->ttl = ip_select_ttl(inet, &rt->dst); |
David S. Miller | dd927a2 | 2011-05-04 12:03:30 -0700 | [diff] [blame] | 160 | iph->daddr = (opt && opt->opt.srr ? opt->opt.faddr : daddr); |
| 161 | iph->saddr = saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | iph->protocol = sk->sk_protocol; |
Eric Dumazet | cfe673b | 2015-09-25 07:39:16 -0700 | [diff] [blame] | 163 | if (ip_dont_fragment(sk, &rt->dst)) { |
| 164 | iph->frag_off = htons(IP_DF); |
| 165 | iph->id = 0; |
| 166 | } else { |
| 167 | iph->frag_off = 0; |
Eric W. Biederman | 77589ce | 2015-10-07 16:48:42 -0500 | [diff] [blame] | 168 | __ip_select_ident(net, iph, 1); |
Eric Dumazet | cfe673b | 2015-09-25 07:39:16 -0700 | [diff] [blame] | 169 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 171 | if (opt && opt->opt.optlen) { |
| 172 | iph->ihl += opt->opt.optlen>>2; |
| 173 | ip_options_build(skb, &opt->opt, daddr, rt, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
| 176 | skb->priority = sk->sk_priority; |
Jamal Hadi Salim | e05a90e | 2017-07-03 09:51:50 -0400 | [diff] [blame] | 177 | if (!skb->mark) |
| 178 | skb->mark = sk->sk_mark; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
| 180 | /* Send it out. */ |
Eric W. Biederman | 33224b1 | 2015-10-07 16:48:46 -0500 | [diff] [blame] | 181 | return ip_local_out(net, skb->sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | } |
Arnaldo Carvalho de Melo | d8c97a9 | 2005-08-09 20:12:12 -0700 | [diff] [blame] | 183 | EXPORT_SYMBOL_GPL(ip_build_and_send_pkt); |
| 184 | |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 185 | static int ip_finish_output2(struct net *net, struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 187 | struct dst_entry *dst = skb_dst(skb); |
Mitsuru Chinen | 80787eb | 2007-04-30 00:48:20 -0700 | [diff] [blame] | 188 | struct rtable *rt = (struct rtable *)dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | struct net_device *dev = dst->dev; |
Chuck Lever | c2636b4 | 2007-10-23 21:07:32 -0700 | [diff] [blame] | 190 | unsigned int hh_len = LL_RESERVED_SPACE(dev); |
David S. Miller | f6b72b62 | 2011-07-14 07:53:20 -0700 | [diff] [blame] | 191 | struct neighbour *neigh; |
David Ahern | 5c9f7c1 | 2019-04-05 16:30:34 -0700 | [diff] [blame] | 192 | bool is_v6gw = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
Neil Horman | edf391f | 2009-04-27 02:45:02 -0700 | [diff] [blame] | 194 | if (rt->rt_type == RTN_MULTICAST) { |
Eric W. Biederman | 4ba1bf4 | 2015-09-15 20:04:01 -0500 | [diff] [blame] | 195 | IP_UPD_PO_STATS(net, IPSTATS_MIB_OUTMCAST, skb->len); |
Neil Horman | edf391f | 2009-04-27 02:45:02 -0700 | [diff] [blame] | 196 | } else if (rt->rt_type == RTN_BROADCAST) |
Eric W. Biederman | 4ba1bf4 | 2015-09-15 20:04:01 -0500 | [diff] [blame] | 197 | IP_UPD_PO_STATS(net, IPSTATS_MIB_OUTBCAST, skb->len); |
Mitsuru Chinen | 80787eb | 2007-04-30 00:48:20 -0700 | [diff] [blame] | 198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | /* Be paranoid, rather than too clever. */ |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 200 | if (unlikely(skb_headroom(skb) < hh_len && dev->header_ops)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | struct sk_buff *skb2; |
| 202 | |
| 203 | skb2 = skb_realloc_headroom(skb, LL_RESERVED_SPACE(dev)); |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 204 | if (!skb2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | kfree_skb(skb); |
| 206 | return -ENOMEM; |
| 207 | } |
| 208 | if (skb->sk) |
| 209 | skb_set_owner_w(skb2, skb->sk); |
Eric Dumazet | 5d0ba55 | 2012-06-04 01:17:19 +0000 | [diff] [blame] | 210 | consume_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | skb = skb2; |
| 212 | } |
| 213 | |
Roopa Prabhu | 14972cb | 2016-08-24 20:10:43 -0700 | [diff] [blame] | 214 | if (lwtunnel_xmit_redirect(dst->lwtstate)) { |
| 215 | int res = lwtunnel_xmit(skb); |
| 216 | |
| 217 | if (res < 0 || res == LWTUNNEL_XMIT_DONE) |
| 218 | return res; |
| 219 | } |
| 220 | |
David S. Miller | a263b30 | 2012-07-02 02:02:15 -0700 | [diff] [blame] | 221 | rcu_read_lock_bh(); |
David Ahern | 5c9f7c1 | 2019-04-05 16:30:34 -0700 | [diff] [blame] | 222 | neigh = ip_neigh_for_gw(rt, skb, &is_v6gw); |
Vasiliy Kulikov | 9871f1a | 2012-08-06 03:55:29 +0000 | [diff] [blame] | 223 | if (!IS_ERR(neigh)) { |
Julian Anastasov | 4ff0620 | 2017-02-06 23:14:12 +0200 | [diff] [blame] | 224 | int res; |
| 225 | |
| 226 | sock_confirm_neigh(skb, neigh); |
David Ahern | 5c9f7c1 | 2019-04-05 16:30:34 -0700 | [diff] [blame] | 227 | /* if crossing protocols, can not use the cached header */ |
| 228 | res = neigh_output(neigh, skb, is_v6gw); |
David S. Miller | a263b30 | 2012-07-02 02:02:15 -0700 | [diff] [blame] | 229 | rcu_read_unlock_bh(); |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 230 | return res; |
| 231 | } |
David S. Miller | a263b30 | 2012-07-02 02:02:15 -0700 | [diff] [blame] | 232 | rcu_read_unlock_bh(); |
David S. Miller | 05e3aa0 | 2011-07-16 17:26:00 -0700 | [diff] [blame] | 233 | |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 234 | net_dbg_ratelimited("%s: No header cache and no neighbour!\n", |
| 235 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | kfree_skb(skb); |
| 237 | return -EINVAL; |
| 238 | } |
| 239 | |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 240 | static int ip_finish_output_gso(struct net *net, struct sock *sk, |
| 241 | struct sk_buff *skb, unsigned int mtu) |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 242 | { |
Jason A. Donenfeld | 88bebdf | 2020-01-13 18:42:31 -0500 | [diff] [blame] | 243 | struct sk_buff *segs, *nskb; |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 244 | netdev_features_t features; |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 245 | int ret = 0; |
| 246 | |
Lance Richardson | 9ee6c5d | 2016-11-02 16:36:17 -0400 | [diff] [blame] | 247 | /* common case: seglen is <= mtu |
Shmulik Ladkani | 359ebda | 2016-07-18 14:49:33 +0300 | [diff] [blame] | 248 | */ |
Daniel Axtens | 779b793 | 2018-03-01 17:13:37 +1100 | [diff] [blame] | 249 | if (skb_gso_validate_network_len(skb, mtu)) |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 250 | return ip_finish_output2(net, sk, skb); |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 251 | |
Lance Richardson | 0ace81e | 2016-11-09 15:04:39 -0500 | [diff] [blame] | 252 | /* Slowpath - GSO segment length exceeds the egress MTU. |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 253 | * |
Lance Richardson | 0ace81e | 2016-11-09 15:04:39 -0500 | [diff] [blame] | 254 | * This can happen in several cases: |
| 255 | * - Forwarding of a TCP GRO skb, when DF flag is not set. |
| 256 | * - Forwarding of an skb that arrived on a virtualization interface |
| 257 | * (virtio-net/vhost/tap) with TSO/GSO size set by other network |
| 258 | * stack. |
| 259 | * - Local GSO skb transmitted on an NETIF_F_TSO tunnel stacked over an |
| 260 | * interface with a smaller MTU. |
| 261 | * - Arriving GRO skb (or GSO skb in a virtualized environment) that is |
| 262 | * bridged to a NETIF_F_TSO tunnel stacked over an interface with an |
| 263 | * insufficent MTU. |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 264 | */ |
| 265 | features = netif_skb_features(skb); |
Cambda Zhu | a08e7fd | 2020-03-26 15:33:14 +0800 | [diff] [blame] | 266 | BUILD_BUG_ON(sizeof(*IPCB(skb)) > SKB_GSO_CB_OFFSET); |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 267 | segs = skb_gso_segment(skb, features & ~NETIF_F_GSO_MASK); |
Florian Westphal | 330966e | 2014-10-20 13:49:17 +0200 | [diff] [blame] | 268 | if (IS_ERR_OR_NULL(segs)) { |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 269 | kfree_skb(skb); |
| 270 | return -ENOMEM; |
| 271 | } |
| 272 | |
| 273 | consume_skb(skb); |
| 274 | |
Jason A. Donenfeld | 88bebdf | 2020-01-13 18:42:31 -0500 | [diff] [blame] | 275 | skb_list_walk_safe(segs, segs, nskb) { |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 276 | int err; |
| 277 | |
David S. Miller | a8305bf | 2018-07-29 20:42:53 -0700 | [diff] [blame] | 278 | skb_mark_not_on_list(segs); |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 279 | err = ip_fragment(net, sk, segs, mtu, ip_finish_output2); |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 280 | |
| 281 | if (err && ret == 0) |
| 282 | ret = err; |
Jason A. Donenfeld | 88bebdf | 2020-01-13 18:42:31 -0500 | [diff] [blame] | 283 | } |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 284 | |
| 285 | return ret; |
| 286 | } |
| 287 | |
brakmo | 956fe21 | 2019-05-28 16:59:38 -0700 | [diff] [blame] | 288 | static int __ip_finish_output(struct net *net, struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
Florian Westphal | c5501eb | 2015-05-22 16:32:50 +0200 | [diff] [blame] | 290 | unsigned int mtu; |
| 291 | |
Patrick McHardy | 5c901da | 2006-01-06 23:05:36 -0800 | [diff] [blame] | 292 | #if defined(CONFIG_NETFILTER) && defined(CONFIG_XFRM) |
| 293 | /* Policy lookup after SNAT yielded a new policy */ |
Ian Morris | 00db412 | 2015-04-03 09:17:27 +0100 | [diff] [blame] | 294 | if (skb_dst(skb)->xfrm) { |
Patrick McHardy | 48d5cad | 2006-02-15 15:10:22 -0800 | [diff] [blame] | 295 | IPCB(skb)->flags |= IPSKB_REROUTED; |
Eric W. Biederman | 13206b6 | 2015-10-07 16:48:35 -0500 | [diff] [blame] | 296 | return dst_output(net, sk, skb); |
Patrick McHardy | 48d5cad | 2006-02-15 15:10:22 -0800 | [diff] [blame] | 297 | } |
Patrick McHardy | 5c901da | 2006-01-06 23:05:36 -0800 | [diff] [blame] | 298 | #endif |
Shmulik Ladkani | fedbb6b4 | 2016-06-29 21:47:03 +0300 | [diff] [blame] | 299 | mtu = ip_skb_dst_mtu(sk, skb); |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 300 | if (skb_is_gso(skb)) |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 301 | return ip_finish_output_gso(net, sk, skb, mtu); |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 302 | |
Florian Westphal | d6b915e | 2015-05-22 16:32:51 +0200 | [diff] [blame] | 303 | if (skb->len > mtu || (IPCB(skb)->flags & IPSKB_FRAG_PMTU)) |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 304 | return ip_fragment(net, sk, skb, mtu, ip_finish_output2); |
Florian Westphal | c7ba65d | 2014-05-05 15:00:43 +0200 | [diff] [blame] | 305 | |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 306 | return ip_finish_output2(net, sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | } |
| 308 | |
brakmo | 956fe21 | 2019-05-28 16:59:38 -0700 | [diff] [blame] | 309 | static int ip_finish_output(struct net *net, struct sock *sk, struct sk_buff *skb) |
| 310 | { |
| 311 | int ret; |
| 312 | |
| 313 | ret = BPF_CGROUP_RUN_PROG_INET_EGRESS(sk, skb); |
| 314 | switch (ret) { |
| 315 | case NET_XMIT_SUCCESS: |
| 316 | return __ip_finish_output(net, sk, skb); |
| 317 | case NET_XMIT_CN: |
| 318 | return __ip_finish_output(net, sk, skb) ? : ret; |
| 319 | default: |
| 320 | kfree_skb(skb); |
| 321 | return ret; |
| 322 | } |
| 323 | } |
| 324 | |
Daniel Mack | 33b4867 | 2016-11-23 16:52:29 +0100 | [diff] [blame] | 325 | static int ip_mc_finish_output(struct net *net, struct sock *sk, |
| 326 | struct sk_buff *skb) |
| 327 | { |
Stephen Suryaputra | 5b18f12 | 2019-06-26 02:21:16 -0400 | [diff] [blame] | 328 | struct rtable *new_rt; |
David S. Miller | d96ff26 | 2019-06-27 21:06:39 -0700 | [diff] [blame] | 329 | bool do_cn = false; |
| 330 | int ret, err; |
Daniel Mack | 33b4867 | 2016-11-23 16:52:29 +0100 | [diff] [blame] | 331 | |
| 332 | ret = BPF_CGROUP_RUN_PROG_INET_EGRESS(sk, skb); |
brakmo | 956fe21 | 2019-05-28 16:59:38 -0700 | [diff] [blame] | 333 | switch (ret) { |
brakmo | 956fe21 | 2019-05-28 16:59:38 -0700 | [diff] [blame] | 334 | case NET_XMIT_CN: |
David S. Miller | d96ff26 | 2019-06-27 21:06:39 -0700 | [diff] [blame] | 335 | do_cn = true; |
Joe Perches | a8eceea | 2020-03-12 15:50:22 -0700 | [diff] [blame] | 336 | fallthrough; |
David S. Miller | d96ff26 | 2019-06-27 21:06:39 -0700 | [diff] [blame] | 337 | case NET_XMIT_SUCCESS: |
| 338 | break; |
brakmo | 956fe21 | 2019-05-28 16:59:38 -0700 | [diff] [blame] | 339 | default: |
Daniel Mack | 33b4867 | 2016-11-23 16:52:29 +0100 | [diff] [blame] | 340 | kfree_skb(skb); |
| 341 | return ret; |
| 342 | } |
| 343 | |
Stephen Suryaputra | 5b18f12 | 2019-06-26 02:21:16 -0400 | [diff] [blame] | 344 | /* Reset rt_iif so that inet_iif() will return skb->skb_iif. Setting |
| 345 | * this to non-zero causes ipi_ifindex in in_pktinfo to be overwritten, |
| 346 | * see ipv4_pktinfo_prepare(). |
| 347 | */ |
| 348 | new_rt = rt_dst_clone(net->loopback_dev, skb_rtable(skb)); |
| 349 | if (new_rt) { |
| 350 | new_rt->rt_iif = 0; |
| 351 | skb_dst_drop(skb); |
| 352 | skb_dst_set(skb, &new_rt->dst); |
| 353 | } |
| 354 | |
David S. Miller | d96ff26 | 2019-06-27 21:06:39 -0700 | [diff] [blame] | 355 | err = dev_loopback_xmit(net, sk, skb); |
| 356 | return (do_cn && err) ? ret : err; |
Daniel Mack | 33b4867 | 2016-11-23 16:52:29 +0100 | [diff] [blame] | 357 | } |
| 358 | |
Eric W. Biederman | ede2059 | 2015-10-07 16:48:47 -0500 | [diff] [blame] | 359 | int ip_mc_output(struct net *net, struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | { |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 361 | struct rtable *rt = skb_rtable(skb); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 362 | struct net_device *dev = rt->dst.dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
| 364 | /* |
| 365 | * If the indicated interface is up and running, send the packet. |
| 366 | */ |
Eric W. Biederman | 88f5cc2 | 2015-09-15 20:03:57 -0500 | [diff] [blame] | 367 | IP_UPD_PO_STATS(net, IPSTATS_MIB_OUT, skb->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
| 369 | skb->dev = dev; |
| 370 | skb->protocol = htons(ETH_P_IP); |
| 371 | |
| 372 | /* |
| 373 | * Multicasts are looped back for other local users |
| 374 | */ |
| 375 | |
| 376 | if (rt->rt_flags&RTCF_MULTICAST) { |
Octavian Purdila | 7ad6848 | 2010-01-06 20:37:01 -0800 | [diff] [blame] | 377 | if (sk_mc_loop(sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | #ifdef CONFIG_IP_MROUTE |
| 379 | /* Small optimization: do not loopback not local frames, |
| 380 | which returned after forwarding; they will be dropped |
| 381 | by ip_mr_input in any case. |
| 382 | Note, that local frames are looped back to be delivered |
| 383 | to local recipients. |
| 384 | |
| 385 | This check is duplicated in ip_mr_input at the moment. |
| 386 | */ |
Joe Perches | 9d4fb27 | 2009-11-23 10:41:23 -0800 | [diff] [blame] | 387 | && |
| 388 | ((rt->rt_flags & RTCF_LOCAL) || |
| 389 | !(IPCB(skb)->flags & IPSKB_FORWARDED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | #endif |
Joe Perches | 9d4fb27 | 2009-11-23 10:41:23 -0800 | [diff] [blame] | 391 | ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC); |
| 393 | if (newskb) |
Jan Engelhardt | 9bbc768 | 2010-03-23 04:07:29 +0100 | [diff] [blame] | 394 | NF_HOOK(NFPROTO_IPV4, NF_INET_POST_ROUTING, |
Eric W. Biederman | 29a26a5 | 2015-09-15 20:04:16 -0500 | [diff] [blame] | 395 | net, sk, newskb, NULL, newskb->dev, |
Daniel Mack | 33b4867 | 2016-11-23 16:52:29 +0100 | [diff] [blame] | 396 | ip_mc_finish_output); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | /* Multicasts with ttl 0 must not go beyond the host */ |
| 400 | |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 401 | if (ip_hdr(skb)->ttl == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | kfree_skb(skb); |
| 403 | return 0; |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | if (rt->rt_flags&RTCF_BROADCAST) { |
| 408 | struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC); |
| 409 | if (newskb) |
Eric W. Biederman | 29a26a5 | 2015-09-15 20:04:16 -0500 | [diff] [blame] | 410 | NF_HOOK(NFPROTO_IPV4, NF_INET_POST_ROUTING, |
| 411 | net, sk, newskb, NULL, newskb->dev, |
Daniel Mack | 33b4867 | 2016-11-23 16:52:29 +0100 | [diff] [blame] | 412 | ip_mc_finish_output); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | } |
| 414 | |
Eric W. Biederman | 29a26a5 | 2015-09-15 20:04:16 -0500 | [diff] [blame] | 415 | return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING, |
| 416 | net, sk, skb, NULL, skb->dev, |
| 417 | ip_finish_output, |
Patrick McHardy | 48d5cad | 2006-02-15 15:10:22 -0800 | [diff] [blame] | 418 | !(IPCB(skb)->flags & IPSKB_REROUTED)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | } |
| 420 | |
Eric W. Biederman | ede2059 | 2015-10-07 16:48:47 -0500 | [diff] [blame] | 421 | int ip_output(struct net *net, struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | { |
Phil Sutter | 28f8bfd | 2019-11-12 17:14:37 +0100 | [diff] [blame] | 423 | struct net_device *dev = skb_dst(skb)->dev, *indev = skb->dev; |
Patrick McHardy | 1bd9bef | 2006-01-05 12:20:59 -0800 | [diff] [blame] | 424 | |
Eric W. Biederman | 88f5cc2 | 2015-09-15 20:03:57 -0500 | [diff] [blame] | 425 | IP_UPD_PO_STATS(net, IPSTATS_MIB_OUT, skb->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
Patrick McHardy | 1bd9bef | 2006-01-05 12:20:59 -0800 | [diff] [blame] | 427 | skb->dev = dev; |
| 428 | skb->protocol = htons(ETH_P_IP); |
| 429 | |
Eric W. Biederman | 29a26a5 | 2015-09-15 20:04:16 -0500 | [diff] [blame] | 430 | return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING, |
Phil Sutter | 28f8bfd | 2019-11-12 17:14:37 +0100 | [diff] [blame] | 431 | net, sk, skb, indev, dev, |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 432 | ip_finish_output, |
Patrick McHardy | 48d5cad | 2006-02-15 15:10:22 -0800 | [diff] [blame] | 433 | !(IPCB(skb)->flags & IPSKB_REROUTED)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | } |
| 435 | |
Eric Dumazet | 84f9307 | 2011-11-30 19:00:53 +0000 | [diff] [blame] | 436 | /* |
| 437 | * copy saddr and daddr, possibly using 64bit load/stores |
| 438 | * Equivalent to : |
| 439 | * iph->saddr = fl4->saddr; |
| 440 | * iph->daddr = fl4->daddr; |
| 441 | */ |
| 442 | static void ip_copy_addrs(struct iphdr *iph, const struct flowi4 *fl4) |
| 443 | { |
| 444 | BUILD_BUG_ON(offsetof(typeof(*fl4), daddr) != |
| 445 | offsetof(typeof(*fl4), saddr) + sizeof(fl4->saddr)); |
| 446 | memcpy(&iph->saddr, &fl4->saddr, |
| 447 | sizeof(fl4->saddr) + sizeof(fl4->daddr)); |
| 448 | } |
| 449 | |
Eric Dumazet | b0270e9 | 2014-04-15 12:58:34 -0400 | [diff] [blame] | 450 | /* Note: skb->sk can be different from sk, in case of tunnels */ |
Xin Long | 69b9e1e | 2018-07-02 18:21:11 +0800 | [diff] [blame] | 451 | int __ip_queue_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl, |
| 452 | __u8 tos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | struct inet_sock *inet = inet_sk(sk); |
Eric W. Biederman | 77589ce | 2015-10-07 16:48:42 -0500 | [diff] [blame] | 455 | struct net *net = sock_net(sk); |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 456 | struct ip_options_rcu *inet_opt; |
David S. Miller | b57ae01 | 2011-05-06 16:24:06 -0700 | [diff] [blame] | 457 | struct flowi4 *fl4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | struct rtable *rt; |
| 459 | struct iphdr *iph; |
Eric Dumazet | ab6e3fe | 2010-05-10 11:31:49 +0000 | [diff] [blame] | 460 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
| 462 | /* Skip all of this if the packet is already routed, |
| 463 | * f.e. by something like SCTP. |
| 464 | */ |
Eric Dumazet | ab6e3fe | 2010-05-10 11:31:49 +0000 | [diff] [blame] | 465 | rcu_read_lock(); |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 466 | inet_opt = rcu_dereference(inet->inet_opt); |
David S. Miller | ea4fc0d | 2011-05-06 22:30:20 -0700 | [diff] [blame] | 467 | fl4 = &fl->u.ip4; |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 468 | rt = skb_rtable(skb); |
Ian Morris | 00db412 | 2015-04-03 09:17:27 +0100 | [diff] [blame] | 469 | if (rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | goto packet_routed; |
| 471 | |
| 472 | /* Make sure we can route this packet. */ |
| 473 | rt = (struct rtable *)__sk_dst_check(sk, 0); |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 474 | if (!rt) { |
Al Viro | 3ca3c68 | 2006-09-27 18:28:07 -0700 | [diff] [blame] | 475 | __be32 daddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
| 477 | /* Use correct destination address if we have options. */ |
Eric Dumazet | c720c7e8 | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 478 | daddr = inet->inet_daddr; |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 479 | if (inet_opt && inet_opt->opt.srr) |
| 480 | daddr = inet_opt->opt.faddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 482 | /* If this fails, retransmit mechanism of transport layer will |
| 483 | * keep trying until route appears or the connection times |
| 484 | * itself out. |
| 485 | */ |
Eric W. Biederman | 77589ce | 2015-10-07 16:48:42 -0500 | [diff] [blame] | 486 | rt = ip_route_output_ports(net, fl4, sk, |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 487 | daddr, inet->inet_saddr, |
| 488 | inet->inet_dport, |
| 489 | inet->inet_sport, |
| 490 | sk->sk_protocol, |
Xin Long | 69b9e1e | 2018-07-02 18:21:11 +0800 | [diff] [blame] | 491 | RT_CONN_FLAGS_TOS(sk, tos), |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 492 | sk->sk_bound_dev_if); |
| 493 | if (IS_ERR(rt)) |
| 494 | goto no_route; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 495 | sk_setup_caps(sk, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | } |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 497 | skb_dst_set_noref(skb, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
| 499 | packet_routed: |
David Ahern | 77d5bc7 | 2019-09-17 10:39:49 -0700 | [diff] [blame] | 500 | if (inet_opt && inet_opt->opt.is_strictroute && rt->rt_uses_gateway) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | goto no_route; |
| 502 | |
| 503 | /* OK, we know where to send it, allocate and build IP header. */ |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 504 | skb_push(skb, sizeof(struct iphdr) + (inet_opt ? inet_opt->opt.optlen : 0)); |
Arnaldo Carvalho de Melo | 8856dfa | 2007-03-10 19:40:39 -0300 | [diff] [blame] | 505 | skb_reset_network_header(skb); |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 506 | iph = ip_hdr(skb); |
Xin Long | 69b9e1e | 2018-07-02 18:21:11 +0800 | [diff] [blame] | 507 | *((__be16 *)iph) = htons((4 << 12) | (5 << 8) | (tos & 0xff)); |
WANG Cong | 60ff746 | 2014-05-04 16:39:18 -0700 | [diff] [blame] | 508 | if (ip_dont_fragment(sk, &rt->dst) && !skb->ignore_df) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | iph->frag_off = htons(IP_DF); |
| 510 | else |
| 511 | iph->frag_off = 0; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 512 | iph->ttl = ip_select_ttl(inet, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | iph->protocol = sk->sk_protocol; |
Eric Dumazet | 84f9307 | 2011-11-30 19:00:53 +0000 | [diff] [blame] | 514 | ip_copy_addrs(iph, fl4); |
| 515 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | /* Transport layer set skb->h.foo itself. */ |
| 517 | |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 518 | if (inet_opt && inet_opt->opt.optlen) { |
| 519 | iph->ihl += inet_opt->opt.optlen >> 2; |
| 520 | ip_options_build(skb, &inet_opt->opt, inet->inet_daddr, rt, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | } |
| 522 | |
Eric W. Biederman | 77589ce | 2015-10-07 16:48:42 -0500 | [diff] [blame] | 523 | ip_select_ident_segs(net, skb, sk, |
Hannes Frederic Sowa | b6a7719 | 2015-03-25 17:07:44 +0100 | [diff] [blame] | 524 | skb_shinfo(skb)->gso_segs ?: 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
Eric Dumazet | b0270e9 | 2014-04-15 12:58:34 -0400 | [diff] [blame] | 526 | /* TODO : should we use skb->sk here instead of sk ? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | skb->priority = sk->sk_priority; |
Laszlo Attila Toth | 4a19ec5 | 2008-01-30 19:08:16 -0800 | [diff] [blame] | 528 | skb->mark = sk->sk_mark; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Eric W. Biederman | 33224b1 | 2015-10-07 16:48:46 -0500 | [diff] [blame] | 530 | res = ip_local_out(net, sk, skb); |
Eric Dumazet | ab6e3fe | 2010-05-10 11:31:49 +0000 | [diff] [blame] | 531 | rcu_read_unlock(); |
| 532 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
| 534 | no_route: |
Eric Dumazet | ab6e3fe | 2010-05-10 11:31:49 +0000 | [diff] [blame] | 535 | rcu_read_unlock(); |
Eric W. Biederman | 77589ce | 2015-10-07 16:48:42 -0500 | [diff] [blame] | 536 | IP_INC_STATS(net, IPSTATS_MIB_OUTNOROUTES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | kfree_skb(skb); |
| 538 | return -EHOSTUNREACH; |
| 539 | } |
Xin Long | 69b9e1e | 2018-07-02 18:21:11 +0800 | [diff] [blame] | 540 | EXPORT_SYMBOL(__ip_queue_xmit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
Eric Dumazet | 05e22e8 | 2020-06-19 12:12:34 -0700 | [diff] [blame] | 542 | int ip_queue_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl) |
| 543 | { |
| 544 | return __ip_queue_xmit(sk, skb, fl, inet_sk(sk)->tos); |
| 545 | } |
| 546 | EXPORT_SYMBOL(ip_queue_xmit); |
| 547 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | static void ip_copy_metadata(struct sk_buff *to, struct sk_buff *from) |
| 549 | { |
| 550 | to->pkt_type = from->pkt_type; |
| 551 | to->priority = from->priority; |
| 552 | to->protocol = from->protocol; |
Shmulik Ladkani | d2f0c96 | 2019-04-29 16:39:30 +0300 | [diff] [blame] | 553 | to->skb_iif = from->skb_iif; |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 554 | skb_dst_drop(to); |
Eric Dumazet | fe76cda | 2010-07-01 23:48:22 +0000 | [diff] [blame] | 555 | skb_dst_copy(to, from); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | to->dev = from->dev; |
Thomas Graf | 82e91ff | 2006-11-09 15:19:14 -0800 | [diff] [blame] | 557 | to->mark = from->mark; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | |
Paolo Abeni | 3dd1c9a | 2018-07-23 16:50:48 +0200 | [diff] [blame] | 559 | skb_copy_hash(to, from); |
| 560 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | #ifdef CONFIG_NET_SCHED |
| 562 | to->tc_index = from->tc_index; |
| 563 | #endif |
Yasuyuki Kozakai | e7ac05f | 2007-03-14 16:44:01 -0700 | [diff] [blame] | 564 | nf_copy(to, from); |
Florian Westphal | df5042f | 2018-12-18 17:15:16 +0100 | [diff] [blame] | 565 | skb_ext_copy(to, from); |
Javier Martinez Canillas | 6ca40d4 | 2016-09-09 08:43:16 -0400 | [diff] [blame] | 566 | #if IS_ENABLED(CONFIG_IP_VS) |
Julian Anastasov | c98d80e | 2005-10-22 13:39:21 +0300 | [diff] [blame] | 567 | to->ipvs_property = from->ipvs_property; |
| 568 | #endif |
James Morris | 984bc16 | 2006-06-09 00:29:17 -0700 | [diff] [blame] | 569 | skb_copy_secmark(to, from); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } |
| 571 | |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 572 | static int ip_fragment(struct net *net, struct sock *sk, struct sk_buff *skb, |
Florian Westphal | c5501eb | 2015-05-22 16:32:50 +0200 | [diff] [blame] | 573 | unsigned int mtu, |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 574 | int (*output)(struct net *, struct sock *, struct sk_buff *)) |
Andy Zhou | 49d16b2 | 2015-05-15 14:15:37 -0700 | [diff] [blame] | 575 | { |
| 576 | struct iphdr *iph = ip_hdr(skb); |
Andy Zhou | 49d16b2 | 2015-05-15 14:15:37 -0700 | [diff] [blame] | 577 | |
Florian Westphal | d6b915e | 2015-05-22 16:32:51 +0200 | [diff] [blame] | 578 | if ((iph->frag_off & htons(IP_DF)) == 0) |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 579 | return ip_do_fragment(net, sk, skb, output); |
Florian Westphal | d6b915e | 2015-05-22 16:32:51 +0200 | [diff] [blame] | 580 | |
| 581 | if (unlikely(!skb->ignore_df || |
Andy Zhou | 49d16b2 | 2015-05-15 14:15:37 -0700 | [diff] [blame] | 582 | (IPCB(skb)->frag_max_size && |
| 583 | IPCB(skb)->frag_max_size > mtu))) { |
Eric W. Biederman | 9479b0a | 2015-09-15 20:04:00 -0500 | [diff] [blame] | 584 | IP_INC_STATS(net, IPSTATS_MIB_FRAGFAILS); |
Andy Zhou | 49d16b2 | 2015-05-15 14:15:37 -0700 | [diff] [blame] | 585 | icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, |
| 586 | htonl(mtu)); |
| 587 | kfree_skb(skb); |
| 588 | return -EMSGSIZE; |
| 589 | } |
| 590 | |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 591 | return ip_do_fragment(net, sk, skb, output); |
Andy Zhou | 49d16b2 | 2015-05-15 14:15:37 -0700 | [diff] [blame] | 592 | } |
| 593 | |
Pablo Neira Ayuso | c8b17be | 2019-05-29 13:25:31 +0200 | [diff] [blame] | 594 | void ip_fraglist_init(struct sk_buff *skb, struct iphdr *iph, |
| 595 | unsigned int hlen, struct ip_fraglist_iter *iter) |
| 596 | { |
| 597 | unsigned int first_len = skb_pagelen(skb); |
| 598 | |
Eric Dumazet | b703414 | 2019-06-02 11:24:18 -0700 | [diff] [blame] | 599 | iter->frag = skb_shinfo(skb)->frag_list; |
Pablo Neira Ayuso | c8b17be | 2019-05-29 13:25:31 +0200 | [diff] [blame] | 600 | skb_frag_list_init(skb); |
| 601 | |
| 602 | iter->offset = 0; |
| 603 | iter->iph = iph; |
| 604 | iter->hlen = hlen; |
| 605 | |
| 606 | skb->data_len = first_len - skb_headlen(skb); |
| 607 | skb->len = first_len; |
| 608 | iph->tot_len = htons(first_len); |
| 609 | iph->frag_off = htons(IP_MF); |
| 610 | ip_send_check(iph); |
| 611 | } |
| 612 | EXPORT_SYMBOL(ip_fraglist_init); |
| 613 | |
Pablo Neira Ayuso | 19c3401 | 2019-05-29 13:25:35 +0200 | [diff] [blame] | 614 | static void ip_fraglist_ipcb_prepare(struct sk_buff *skb, |
| 615 | struct ip_fraglist_iter *iter) |
| 616 | { |
| 617 | struct sk_buff *to = iter->frag; |
| 618 | |
| 619 | /* Copy the flags to each fragment. */ |
| 620 | IPCB(to)->flags = IPCB(skb)->flags; |
| 621 | |
| 622 | if (iter->offset == 0) |
| 623 | ip_options_fragment(to); |
| 624 | } |
| 625 | |
Pablo Neira Ayuso | c8b17be | 2019-05-29 13:25:31 +0200 | [diff] [blame] | 626 | void ip_fraglist_prepare(struct sk_buff *skb, struct ip_fraglist_iter *iter) |
| 627 | { |
| 628 | unsigned int hlen = iter->hlen; |
| 629 | struct iphdr *iph = iter->iph; |
| 630 | struct sk_buff *frag; |
| 631 | |
| 632 | frag = iter->frag; |
| 633 | frag->ip_summed = CHECKSUM_NONE; |
| 634 | skb_reset_transport_header(frag); |
| 635 | __skb_push(frag, hlen); |
| 636 | skb_reset_network_header(frag); |
| 637 | memcpy(skb_network_header(frag), iph, hlen); |
| 638 | iter->iph = ip_hdr(frag); |
| 639 | iph = iter->iph; |
| 640 | iph->tot_len = htons(frag->len); |
| 641 | ip_copy_metadata(frag, skb); |
Pablo Neira Ayuso | c8b17be | 2019-05-29 13:25:31 +0200 | [diff] [blame] | 642 | iter->offset += skb->len - hlen; |
| 643 | iph->frag_off = htons(iter->offset >> 3); |
| 644 | if (frag->next) |
| 645 | iph->frag_off |= htons(IP_MF); |
| 646 | /* Ready, complete checksum */ |
| 647 | ip_send_check(iph); |
| 648 | } |
| 649 | EXPORT_SYMBOL(ip_fraglist_prepare); |
| 650 | |
Pablo Neira Ayuso | 065ff79 | 2019-05-29 13:25:33 +0200 | [diff] [blame] | 651 | void ip_frag_init(struct sk_buff *skb, unsigned int hlen, |
Eric Dumazet | e7a409c | 2019-10-19 09:26:37 -0700 | [diff] [blame] | 652 | unsigned int ll_rs, unsigned int mtu, bool DF, |
Pablo Neira Ayuso | 065ff79 | 2019-05-29 13:25:33 +0200 | [diff] [blame] | 653 | struct ip_frag_state *state) |
| 654 | { |
| 655 | struct iphdr *iph = ip_hdr(skb); |
| 656 | |
Eric Dumazet | e7a409c | 2019-10-19 09:26:37 -0700 | [diff] [blame] | 657 | state->DF = DF; |
Pablo Neira Ayuso | 065ff79 | 2019-05-29 13:25:33 +0200 | [diff] [blame] | 658 | state->hlen = hlen; |
| 659 | state->ll_rs = ll_rs; |
| 660 | state->mtu = mtu; |
| 661 | |
| 662 | state->left = skb->len - hlen; /* Space per frame */ |
| 663 | state->ptr = hlen; /* Where to start from */ |
| 664 | |
| 665 | state->offset = (ntohs(iph->frag_off) & IP_OFFSET) << 3; |
| 666 | state->not_last_frag = iph->frag_off & htons(IP_MF); |
| 667 | } |
| 668 | EXPORT_SYMBOL(ip_frag_init); |
| 669 | |
Pablo Neira Ayuso | 19c3401 | 2019-05-29 13:25:35 +0200 | [diff] [blame] | 670 | static void ip_frag_ipcb(struct sk_buff *from, struct sk_buff *to, |
| 671 | bool first_frag, struct ip_frag_state *state) |
| 672 | { |
| 673 | /* Copy the flags to each fragment. */ |
| 674 | IPCB(to)->flags = IPCB(from)->flags; |
| 675 | |
Pablo Neira Ayuso | 19c3401 | 2019-05-29 13:25:35 +0200 | [diff] [blame] | 676 | /* ANK: dirty, but effective trick. Upgrade options only if |
| 677 | * the segment to be fragmented was THE FIRST (otherwise, |
| 678 | * options are already fixed) and make it ONCE |
| 679 | * on the initial skb, so that all the following fragments |
| 680 | * will inherit fixed options. |
| 681 | */ |
| 682 | if (first_frag) |
| 683 | ip_options_fragment(from); |
| 684 | } |
| 685 | |
Pablo Neira Ayuso | 065ff79 | 2019-05-29 13:25:33 +0200 | [diff] [blame] | 686 | struct sk_buff *ip_frag_next(struct sk_buff *skb, struct ip_frag_state *state) |
| 687 | { |
| 688 | unsigned int len = state->left; |
| 689 | struct sk_buff *skb2; |
| 690 | struct iphdr *iph; |
| 691 | |
| 692 | len = state->left; |
| 693 | /* IF: it doesn't fit, use 'mtu' - the data space left */ |
| 694 | if (len > state->mtu) |
| 695 | len = state->mtu; |
| 696 | /* IF: we are not sending up to and including the packet end |
| 697 | then align the next start on an eight byte boundary */ |
| 698 | if (len < state->left) { |
| 699 | len &= ~7; |
| 700 | } |
| 701 | |
| 702 | /* Allocate buffer */ |
| 703 | skb2 = alloc_skb(len + state->hlen + state->ll_rs, GFP_ATOMIC); |
| 704 | if (!skb2) |
| 705 | return ERR_PTR(-ENOMEM); |
| 706 | |
| 707 | /* |
| 708 | * Set up data on packet |
| 709 | */ |
| 710 | |
| 711 | ip_copy_metadata(skb2, skb); |
| 712 | skb_reserve(skb2, state->ll_rs); |
| 713 | skb_put(skb2, len + state->hlen); |
| 714 | skb_reset_network_header(skb2); |
| 715 | skb2->transport_header = skb2->network_header + state->hlen; |
| 716 | |
| 717 | /* |
| 718 | * Charge the memory for the fragment to any owner |
| 719 | * it might possess |
| 720 | */ |
| 721 | |
| 722 | if (skb->sk) |
| 723 | skb_set_owner_w(skb2, skb->sk); |
| 724 | |
| 725 | /* |
| 726 | * Copy the packet header into the new buffer. |
| 727 | */ |
| 728 | |
| 729 | skb_copy_from_linear_data(skb, skb_network_header(skb2), state->hlen); |
| 730 | |
| 731 | /* |
| 732 | * Copy a block of the IP datagram. |
| 733 | */ |
| 734 | if (skb_copy_bits(skb, state->ptr, skb_transport_header(skb2), len)) |
| 735 | BUG(); |
| 736 | state->left -= len; |
| 737 | |
| 738 | /* |
| 739 | * Fill in the new header fields. |
| 740 | */ |
| 741 | iph = ip_hdr(skb2); |
| 742 | iph->frag_off = htons((state->offset >> 3)); |
Eric Dumazet | e7a409c | 2019-10-19 09:26:37 -0700 | [diff] [blame] | 743 | if (state->DF) |
| 744 | iph->frag_off |= htons(IP_DF); |
Pablo Neira Ayuso | 065ff79 | 2019-05-29 13:25:33 +0200 | [diff] [blame] | 745 | |
Pablo Neira Ayuso | 065ff79 | 2019-05-29 13:25:33 +0200 | [diff] [blame] | 746 | /* |
| 747 | * Added AC : If we are fragmenting a fragment that's not the |
| 748 | * last fragment then keep MF on each bit |
| 749 | */ |
| 750 | if (state->left > 0 || state->not_last_frag) |
| 751 | iph->frag_off |= htons(IP_MF); |
| 752 | state->ptr += len; |
| 753 | state->offset += len; |
| 754 | |
| 755 | iph->tot_len = htons(len + state->hlen); |
| 756 | |
| 757 | ip_send_check(iph); |
| 758 | |
| 759 | return skb2; |
| 760 | } |
| 761 | EXPORT_SYMBOL(ip_frag_next); |
| 762 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | /* |
| 764 | * This IP datagram is too large to be sent in one piece. Break it up into |
| 765 | * smaller pieces (each of size equal to IP header plus |
| 766 | * a block of the data of the original IP data part) that will yet fit in a |
| 767 | * single device frame, and queue such a frame for sending. |
| 768 | */ |
| 769 | |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 770 | int ip_do_fragment(struct net *net, struct sock *sk, struct sk_buff *skb, |
| 771 | int (*output)(struct net *, struct sock *, struct sk_buff *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | { |
| 773 | struct iphdr *iph; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | struct sk_buff *skb2; |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 775 | struct rtable *rt = skb_rtable(skb); |
Pablo Neira Ayuso | 065ff79 | 2019-05-29 13:25:33 +0200 | [diff] [blame] | 776 | unsigned int mtu, hlen, ll_rs; |
Pablo Neira Ayuso | c8b17be | 2019-05-29 13:25:31 +0200 | [diff] [blame] | 777 | struct ip_fraglist_iter iter; |
Eric Dumazet | 9669fff | 2019-10-16 18:00:56 -0700 | [diff] [blame] | 778 | ktime_t tstamp = skb->tstamp; |
Pablo Neira Ayuso | 065ff79 | 2019-05-29 13:25:33 +0200 | [diff] [blame] | 779 | struct ip_frag_state state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | int err = 0; |
| 781 | |
Hannes Frederic Sowa | dbd3393 | 2015-10-27 22:40:40 +0100 | [diff] [blame] | 782 | /* for offloaded checksums cleanup checksum before fragmentation */ |
| 783 | if (skb->ip_summed == CHECKSUM_PARTIAL && |
| 784 | (err = skb_checksum_help(skb))) |
| 785 | goto fail; |
| 786 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | /* |
| 788 | * Point into the IP datagram header. |
| 789 | */ |
| 790 | |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 791 | iph = ip_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
Shmulik Ladkani | fedbb6b4 | 2016-06-29 21:47:03 +0300 | [diff] [blame] | 793 | mtu = ip_skb_dst_mtu(sk, skb); |
Florian Westphal | d6b915e | 2015-05-22 16:32:51 +0200 | [diff] [blame] | 794 | if (IPCB(skb)->frag_max_size && IPCB(skb)->frag_max_size < mtu) |
| 795 | mtu = IPCB(skb)->frag_max_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | |
| 797 | /* |
| 798 | * Setup starting values. |
| 799 | */ |
| 800 | |
| 801 | hlen = iph->ihl * 4; |
Hannes Frederic Sowa | f87c10a | 2014-01-09 10:01:15 +0100 | [diff] [blame] | 802 | mtu = mtu - hlen; /* Size of data space */ |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 803 | IPCB(skb)->flags |= IPSKB_FRAG_COMPLETE; |
Vasily Averin | 254d900 | 2017-07-14 12:04:16 +0300 | [diff] [blame] | 804 | ll_rs = LL_RESERVED_SPACE(rt->dst.dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | |
| 806 | /* When frag_list is given, use it. First, check its validity: |
| 807 | * some transformers could create wrong frag_list or break existing |
| 808 | * one, it is not prohibited. In this case fall back to copying. |
| 809 | * |
| 810 | * LATER: this step can be merged to real generation of fragments, |
| 811 | * we can switch to copy when see the first bad fragment. |
| 812 | */ |
David S. Miller | 21dc330 | 2010-08-23 00:13:46 -0700 | [diff] [blame] | 813 | if (skb_has_frag_list(skb)) { |
Eric Dumazet | 3d13008 | 2010-09-21 08:47:45 +0000 | [diff] [blame] | 814 | struct sk_buff *frag, *frag2; |
Alexey Dobriyan | c72d8cd | 2016-11-19 04:08:08 +0300 | [diff] [blame] | 815 | unsigned int first_len = skb_pagelen(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | |
| 817 | if (first_len - hlen > mtu || |
| 818 | ((first_len - hlen) & 7) || |
Paul Gortmaker | 56f8a75 | 2011-06-21 20:33:34 -0700 | [diff] [blame] | 819 | ip_is_fragment(iph) || |
Vasily Averin | 254d900 | 2017-07-14 12:04:16 +0300 | [diff] [blame] | 820 | skb_cloned(skb) || |
| 821 | skb_headroom(skb) < ll_rs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | goto slow_path; |
| 823 | |
David S. Miller | d7fcf1a | 2009-06-09 00:19:37 -0700 | [diff] [blame] | 824 | skb_walk_frags(skb, frag) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | /* Correct geometry. */ |
| 826 | if (frag->len > mtu || |
| 827 | ((frag->len & 7) && frag->next) || |
Vasily Averin | 254d900 | 2017-07-14 12:04:16 +0300 | [diff] [blame] | 828 | skb_headroom(frag) < hlen + ll_rs) |
Eric Dumazet | 3d13008 | 2010-09-21 08:47:45 +0000 | [diff] [blame] | 829 | goto slow_path_clean; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | |
| 831 | /* Partially cloned skb? */ |
| 832 | if (skb_shared(frag)) |
Eric Dumazet | 3d13008 | 2010-09-21 08:47:45 +0000 | [diff] [blame] | 833 | goto slow_path_clean; |
Herbert Xu | 2fdba6b | 2005-05-18 22:52:33 -0700 | [diff] [blame] | 834 | |
| 835 | BUG_ON(frag->sk); |
| 836 | if (skb->sk) { |
Herbert Xu | 2fdba6b | 2005-05-18 22:52:33 -0700 | [diff] [blame] | 837 | frag->sk = skb->sk; |
| 838 | frag->destructor = sock_wfree; |
Herbert Xu | 2fdba6b | 2005-05-18 22:52:33 -0700 | [diff] [blame] | 839 | } |
Eric Dumazet | 3d13008 | 2010-09-21 08:47:45 +0000 | [diff] [blame] | 840 | skb->truesize -= frag->truesize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | /* Everything is OK. Generate! */ |
Pablo Neira Ayuso | c8b17be | 2019-05-29 13:25:31 +0200 | [diff] [blame] | 844 | ip_fraglist_init(skb, iph, hlen, &iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
| 846 | for (;;) { |
| 847 | /* Prepare header of the next frame, |
| 848 | * before previous one went down. */ |
Pablo Neira Ayuso | 19c3401 | 2019-05-29 13:25:35 +0200 | [diff] [blame] | 849 | if (iter.frag) { |
| 850 | ip_fraglist_ipcb_prepare(skb, &iter); |
Pablo Neira Ayuso | c8b17be | 2019-05-29 13:25:31 +0200 | [diff] [blame] | 851 | ip_fraglist_prepare(skb, &iter); |
Pablo Neira Ayuso | 19c3401 | 2019-05-29 13:25:35 +0200 | [diff] [blame] | 852 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
Eric Dumazet | 9669fff | 2019-10-16 18:00:56 -0700 | [diff] [blame] | 854 | skb->tstamp = tstamp; |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 855 | err = output(net, sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | |
Wei Dong | dafee49 | 2006-08-02 13:41:21 -0700 | [diff] [blame] | 857 | if (!err) |
Eric W. Biederman | 26a949d | 2015-09-15 20:03:59 -0500 | [diff] [blame] | 858 | IP_INC_STATS(net, IPSTATS_MIB_FRAGCREATES); |
Pablo Neira Ayuso | c8b17be | 2019-05-29 13:25:31 +0200 | [diff] [blame] | 859 | if (err || !iter.frag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | break; |
| 861 | |
Pablo Neira Ayuso | c8b17be | 2019-05-29 13:25:31 +0200 | [diff] [blame] | 862 | skb = ip_fraglist_next(&iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | } |
| 864 | |
| 865 | if (err == 0) { |
Eric W. Biederman | 26a949d | 2015-09-15 20:03:59 -0500 | [diff] [blame] | 866 | IP_INC_STATS(net, IPSTATS_MIB_FRAGOKS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | return 0; |
| 868 | } |
| 869 | |
Eric Dumazet | b703414 | 2019-06-02 11:24:18 -0700 | [diff] [blame] | 870 | kfree_skb_list(iter.frag); |
Pablo Neira Ayuso | 942f146 | 2019-04-04 13:54:20 +0200 | [diff] [blame] | 871 | |
Eric W. Biederman | 26a949d | 2015-09-15 20:03:59 -0500 | [diff] [blame] | 872 | IP_INC_STATS(net, IPSTATS_MIB_FRAGFAILS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | return err; |
Eric Dumazet | 3d13008 | 2010-09-21 08:47:45 +0000 | [diff] [blame] | 874 | |
| 875 | slow_path_clean: |
| 876 | skb_walk_frags(skb, frag2) { |
| 877 | if (frag2 == frag) |
| 878 | break; |
| 879 | frag2->sk = NULL; |
| 880 | frag2->destructor = NULL; |
| 881 | skb->truesize += frag2->truesize; |
| 882 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | } |
| 884 | |
| 885 | slow_path: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | /* |
| 887 | * Fragment the datagram. |
| 888 | */ |
| 889 | |
Eric Dumazet | e7a409c | 2019-10-19 09:26:37 -0700 | [diff] [blame] | 890 | ip_frag_init(skb, hlen, ll_rs, mtu, IPCB(skb)->flags & IPSKB_FRAG_PMTU, |
| 891 | &state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | |
| 893 | /* |
| 894 | * Keep copying data until we run out. |
| 895 | */ |
| 896 | |
Pablo Neira Ayuso | 065ff79 | 2019-05-29 13:25:33 +0200 | [diff] [blame] | 897 | while (state.left > 0) { |
Pablo Neira Ayuso | 19c3401 | 2019-05-29 13:25:35 +0200 | [diff] [blame] | 898 | bool first_frag = (state.offset == 0); |
| 899 | |
Pablo Neira Ayuso | 065ff79 | 2019-05-29 13:25:33 +0200 | [diff] [blame] | 900 | skb2 = ip_frag_next(skb, &state); |
| 901 | if (IS_ERR(skb2)) { |
| 902 | err = PTR_ERR(skb2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | goto fail; |
| 904 | } |
Pablo Neira Ayuso | 19c3401 | 2019-05-29 13:25:35 +0200 | [diff] [blame] | 905 | ip_frag_ipcb(skb, skb2, first_frag, &state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | |
| 907 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | * Put this fragment into the sending queue. |
| 909 | */ |
Eric Dumazet | 9669fff | 2019-10-16 18:00:56 -0700 | [diff] [blame] | 910 | skb2->tstamp = tstamp; |
Eric W. Biederman | 694869b | 2015-06-12 21:55:31 -0500 | [diff] [blame] | 911 | err = output(net, sk, skb2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | if (err) |
| 913 | goto fail; |
Wei Dong | dafee49 | 2006-08-02 13:41:21 -0700 | [diff] [blame] | 914 | |
Eric W. Biederman | 26a949d | 2015-09-15 20:03:59 -0500 | [diff] [blame] | 915 | IP_INC_STATS(net, IPSTATS_MIB_FRAGCREATES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | } |
Eric Dumazet | 5d0ba55 | 2012-06-04 01:17:19 +0000 | [diff] [blame] | 917 | consume_skb(skb); |
Eric W. Biederman | 26a949d | 2015-09-15 20:03:59 -0500 | [diff] [blame] | 918 | IP_INC_STATS(net, IPSTATS_MIB_FRAGOKS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | return err; |
| 920 | |
| 921 | fail: |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 922 | kfree_skb(skb); |
Eric W. Biederman | 26a949d | 2015-09-15 20:03:59 -0500 | [diff] [blame] | 923 | IP_INC_STATS(net, IPSTATS_MIB_FRAGFAILS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | return err; |
| 925 | } |
Andy Zhou | 49d16b2 | 2015-05-15 14:15:37 -0700 | [diff] [blame] | 926 | EXPORT_SYMBOL(ip_do_fragment); |
Patrick McHardy | 2e2f7ae | 2006-04-04 13:42:35 -0700 | [diff] [blame] | 927 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | int |
| 929 | ip_generic_getfrag(void *from, char *to, int offset, int len, int odd, struct sk_buff *skb) |
| 930 | { |
Al Viro | f69e6d1 | 2014-11-24 13:23:40 -0500 | [diff] [blame] | 931 | struct msghdr *msg = from; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | |
Patrick McHardy | 84fa793 | 2006-08-29 16:44:56 -0700 | [diff] [blame] | 933 | if (skb->ip_summed == CHECKSUM_PARTIAL) { |
Al Viro | 0b62fca | 2016-11-03 18:17:31 -0400 | [diff] [blame] | 934 | if (!copy_from_iter_full(to, len, &msg->msg_iter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | return -EFAULT; |
| 936 | } else { |
Al Viro | 44bb936 | 2006-11-14 21:36:14 -0800 | [diff] [blame] | 937 | __wsum csum = 0; |
Al Viro | 0b62fca | 2016-11-03 18:17:31 -0400 | [diff] [blame] | 938 | if (!csum_and_copy_from_iter_full(to, len, &csum, &msg->msg_iter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | return -EFAULT; |
| 940 | skb->csum = csum_block_add(skb->csum, csum, odd); |
| 941 | } |
| 942 | return 0; |
| 943 | } |
Eric Dumazet | 4bc2f18 | 2010-07-09 21:22:10 +0000 | [diff] [blame] | 944 | EXPORT_SYMBOL(ip_generic_getfrag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | |
Al Viro | 44bb936 | 2006-11-14 21:36:14 -0800 | [diff] [blame] | 946 | static inline __wsum |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | csum_page(struct page *page, int offset, int copy) |
| 948 | { |
| 949 | char *kaddr; |
Al Viro | 44bb936 | 2006-11-14 21:36:14 -0800 | [diff] [blame] | 950 | __wsum csum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | kaddr = kmap(page); |
| 952 | csum = csum_partial(kaddr + offset, copy, 0); |
| 953 | kunmap(page); |
| 954 | return csum; |
| 955 | } |
| 956 | |
David S. Miller | f5fca60 | 2011-05-08 17:24:10 -0700 | [diff] [blame] | 957 | static int __ip_append_data(struct sock *sk, |
| 958 | struct flowi4 *fl4, |
| 959 | struct sk_buff_head *queue, |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 960 | struct inet_cork *cork, |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 961 | struct page_frag *pfrag, |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 962 | int getfrag(void *from, char *to, int offset, |
| 963 | int len, int odd, struct sk_buff *skb), |
| 964 | void *from, int length, int transhdrlen, |
| 965 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | { |
| 967 | struct inet_sock *inet = inet_sk(sk); |
Willem de Bruijn | b5947e5 | 2018-11-30 15:32:39 -0500 | [diff] [blame] | 968 | struct ubuf_info *uarg = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | struct sk_buff *skb; |
| 970 | |
Herbert Xu | 07df529 | 2011-03-01 23:00:58 -0800 | [diff] [blame] | 971 | struct ip_options *opt = cork->opt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | int hh_len; |
| 973 | int exthdrlen; |
| 974 | int mtu; |
| 975 | int copy; |
| 976 | int err; |
| 977 | int offset = 0; |
Hannes Frederic Sowa | daba287 | 2013-10-27 17:29:11 +0100 | [diff] [blame] | 978 | unsigned int maxfraglen, fragheaderlen, maxnonfragsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | int csummode = CHECKSUM_NONE; |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 980 | struct rtable *rt = (struct rtable *)cork->dst; |
Eric Dumazet | 694aba6 | 2018-03-31 13:16:25 -0700 | [diff] [blame] | 981 | unsigned int wmem_alloc_delta = 0; |
Willem de Bruijn | 100f6d8 | 2019-05-30 18:01:21 -0400 | [diff] [blame] | 982 | bool paged, extra_uref = false; |
Willem de Bruijn | 09c2d25 | 2014-08-04 22:11:47 -0400 | [diff] [blame] | 983 | u32 tskey = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | |
Steffen Klassert | 96d7303 | 2011-06-05 20:48:47 +0000 | [diff] [blame] | 985 | skb = skb_peek_tail(queue); |
| 986 | |
| 987 | exthdrlen = !skb ? rt->dst.header_len : 0; |
Willem de Bruijn | bec1f6f | 2018-04-26 13:42:17 -0400 | [diff] [blame] | 988 | mtu = cork->gso_size ? IP_MAX_MTU : cork->fragsize; |
Willem de Bruijn | 15e36f5 | 2018-04-26 13:42:19 -0400 | [diff] [blame] | 989 | paged = !!cork->gso_size; |
Willem de Bruijn | bec1f6f | 2018-04-26 13:42:17 -0400 | [diff] [blame] | 990 | |
Willem de Bruijn | 09c2d25 | 2014-08-04 22:11:47 -0400 | [diff] [blame] | 991 | if (cork->tx_flags & SKBTX_ANY_SW_TSTAMP && |
| 992 | sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) |
| 993 | tskey = sk->sk_tskey++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 995 | hh_len = LL_RESERVED_SPACE(rt->dst.dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | |
| 997 | fragheaderlen = sizeof(struct iphdr) + (opt ? opt->optlen : 0); |
| 998 | maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen; |
WANG Cong | 60ff746 | 2014-05-04 16:39:18 -0700 | [diff] [blame] | 999 | maxnonfragsize = ip_sk_ignore_df(sk) ? 0xFFFF : mtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | |
Hannes Frederic Sowa | daba287 | 2013-10-27 17:29:11 +0100 | [diff] [blame] | 1001 | if (cork->length + length > maxnonfragsize - fragheaderlen) { |
David S. Miller | f5fca60 | 2011-05-08 17:24:10 -0700 | [diff] [blame] | 1002 | ip_local_error(sk, EMSGSIZE, fl4->daddr, inet->inet_dport, |
Hannes Frederic Sowa | 61e7f09 | 2013-12-19 02:13:36 +0100 | [diff] [blame] | 1003 | mtu - (opt ? opt->optlen : 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | return -EMSGSIZE; |
| 1005 | } |
| 1006 | |
| 1007 | /* |
| 1008 | * transhdrlen > 0 means that this is the first fragment and we wish |
| 1009 | * it won't be fragmented in the future. |
| 1010 | */ |
| 1011 | if (transhdrlen && |
| 1012 | length + fragheaderlen <= mtu && |
Tom Herbert | c8cd098 | 2015-12-14 11:19:44 -0800 | [diff] [blame] | 1013 | rt->dst.dev->features & (NETIF_F_HW_CSUM | NETIF_F_IP_CSUM) && |
Willem de Bruijn | bec1f6f | 2018-04-26 13:42:17 -0400 | [diff] [blame] | 1014 | (!(flags & MSG_MORE) || cork->gso_size) && |
Jacek Kalwas | cd027a5 | 2018-04-12 12:03:13 -0700 | [diff] [blame] | 1015 | (!exthdrlen || (rt->dst.dev->features & NETIF_F_HW_ESP_TX_CSUM))) |
Patrick McHardy | 84fa793 | 2006-08-29 16:44:56 -0700 | [diff] [blame] | 1016 | csummode = CHECKSUM_PARTIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
Willem de Bruijn | b5947e5 | 2018-11-30 15:32:39 -0500 | [diff] [blame] | 1018 | if (flags & MSG_ZEROCOPY && length && sock_flag(sk, SOCK_ZEROCOPY)) { |
| 1019 | uarg = sock_zerocopy_realloc(sk, length, skb_zcopy(skb)); |
| 1020 | if (!uarg) |
| 1021 | return -ENOBUFS; |
Willem de Bruijn | 522924b | 2019-06-07 17:57:48 -0400 | [diff] [blame] | 1022 | extra_uref = !skb_zcopy(skb); /* only ref on new uarg */ |
Willem de Bruijn | b5947e5 | 2018-11-30 15:32:39 -0500 | [diff] [blame] | 1023 | if (rt->dst.dev->features & NETIF_F_SG && |
| 1024 | csummode == CHECKSUM_PARTIAL) { |
| 1025 | paged = true; |
| 1026 | } else { |
| 1027 | uarg->zerocopy = 0; |
Willem de Bruijn | 52900d2 | 2018-11-30 15:32:40 -0500 | [diff] [blame] | 1028 | skb_zcopy_set(skb, uarg, &extra_uref); |
Willem de Bruijn | b5947e5 | 2018-11-30 15:32:39 -0500 | [diff] [blame] | 1029 | } |
| 1030 | } |
| 1031 | |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1032 | cork->length += length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | |
| 1034 | /* So, what's going on in the loop below? |
| 1035 | * |
| 1036 | * We use calculated fragment length to generate chained skb, |
| 1037 | * each of segments is IP fragment ready for sending to network after |
| 1038 | * adding appropriate IP header. |
| 1039 | */ |
| 1040 | |
Herbert Xu | 26cde9f | 2010-06-15 01:52:25 +0000 | [diff] [blame] | 1041 | if (!skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | goto alloc_new_skb; |
| 1043 | |
| 1044 | while (length > 0) { |
| 1045 | /* Check if the remaining data fits into current packet. */ |
| 1046 | copy = mtu - skb->len; |
| 1047 | if (copy < length) |
| 1048 | copy = maxfraglen - skb->len; |
| 1049 | if (copy <= 0) { |
| 1050 | char *data; |
| 1051 | unsigned int datalen; |
| 1052 | unsigned int fraglen; |
| 1053 | unsigned int fraggap; |
| 1054 | unsigned int alloclen; |
Willem de Bruijn | aba3693 | 2018-11-24 14:21:16 -0500 | [diff] [blame] | 1055 | unsigned int pagedlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | struct sk_buff *skb_prev; |
| 1057 | alloc_new_skb: |
| 1058 | skb_prev = skb; |
| 1059 | if (skb_prev) |
| 1060 | fraggap = skb_prev->len - maxfraglen; |
| 1061 | else |
| 1062 | fraggap = 0; |
| 1063 | |
| 1064 | /* |
| 1065 | * If remaining data exceeds the mtu, |
| 1066 | * we know we need more fragment(s). |
| 1067 | */ |
| 1068 | datalen = length + fraggap; |
| 1069 | if (datalen > mtu - fragheaderlen) |
| 1070 | datalen = maxfraglen - fragheaderlen; |
| 1071 | fraglen = datalen + fragheaderlen; |
Willem de Bruijn | aba3693 | 2018-11-24 14:21:16 -0500 | [diff] [blame] | 1072 | pagedlen = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1074 | if ((flags & MSG_MORE) && |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1075 | !(rt->dst.dev->features&NETIF_F_SG)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | alloclen = mtu; |
Willem de Bruijn | 15e36f5 | 2018-04-26 13:42:19 -0400 | [diff] [blame] | 1077 | else if (!paged) |
Eric Dumazet | 59104f0 | 2010-09-20 20:16:27 +0000 | [diff] [blame] | 1078 | alloclen = fraglen; |
Willem de Bruijn | 15e36f5 | 2018-04-26 13:42:19 -0400 | [diff] [blame] | 1079 | else { |
| 1080 | alloclen = min_t(int, fraglen, MAX_HEADER); |
| 1081 | pagedlen = fraglen - alloclen; |
| 1082 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | |
Steffen Klassert | 353e5c9 | 2011-06-22 01:05:37 +0000 | [diff] [blame] | 1084 | alloclen += exthdrlen; |
| 1085 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | /* The last fragment gets additional space at tail. |
| 1087 | * Note, with MSG_MORE we overallocate on fragments, |
| 1088 | * because we have no idea what fragment will be |
| 1089 | * the last. |
| 1090 | */ |
Steffen Klassert | 33f99dc | 2011-06-22 01:04:37 +0000 | [diff] [blame] | 1091 | if (datalen == length + fraggap) |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1092 | alloclen += rt->dst.trailer_len; |
Steffen Klassert | 33f99dc | 2011-06-22 01:04:37 +0000 | [diff] [blame] | 1093 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | if (transhdrlen) { |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1095 | skb = sock_alloc_send_skb(sk, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | alloclen + hh_len + 15, |
| 1097 | (flags & MSG_DONTWAIT), &err); |
| 1098 | } else { |
| 1099 | skb = NULL; |
Eric Dumazet | 694aba6 | 2018-03-31 13:16:25 -0700 | [diff] [blame] | 1100 | if (refcount_read(&sk->sk_wmem_alloc) + wmem_alloc_delta <= |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | 2 * sk->sk_sndbuf) |
Eric Dumazet | 694aba6 | 2018-03-31 13:16:25 -0700 | [diff] [blame] | 1102 | skb = alloc_skb(alloclen + hh_len + 15, |
| 1103 | sk->sk_allocation); |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1104 | if (unlikely(!skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | err = -ENOBUFS; |
| 1106 | } |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1107 | if (!skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | goto error; |
| 1109 | |
| 1110 | /* |
| 1111 | * Fill in the control structures |
| 1112 | */ |
| 1113 | skb->ip_summed = csummode; |
| 1114 | skb->csum = 0; |
| 1115 | skb_reserve(skb, hh_len); |
Willem de Bruijn | 11878b4 | 2014-07-14 17:55:06 -0400 | [diff] [blame] | 1116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | /* |
| 1118 | * Find where to start putting bytes. |
| 1119 | */ |
Willem de Bruijn | 15e36f5 | 2018-04-26 13:42:19 -0400 | [diff] [blame] | 1120 | data = skb_put(skb, fraglen + exthdrlen - pagedlen); |
Arnaldo Carvalho de Melo | c14d245 | 2007-03-11 22:39:41 -0300 | [diff] [blame] | 1121 | skb_set_network_header(skb, exthdrlen); |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 1122 | skb->transport_header = (skb->network_header + |
| 1123 | fragheaderlen); |
Steffen Klassert | 353e5c9 | 2011-06-22 01:05:37 +0000 | [diff] [blame] | 1124 | data += fragheaderlen + exthdrlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | |
| 1126 | if (fraggap) { |
| 1127 | skb->csum = skb_copy_and_csum_bits( |
| 1128 | skb_prev, maxfraglen, |
Al Viro | 8d5930d | 2020-07-10 20:07:10 -0400 | [diff] [blame] | 1129 | data + transhdrlen, fraggap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | skb_prev->csum = csum_sub(skb_prev->csum, |
| 1131 | skb->csum); |
| 1132 | data += fraggap; |
Herbert Xu | e9fa4f7 | 2006-08-13 20:12:58 -0700 | [diff] [blame] | 1133 | pskb_trim_unique(skb_prev, maxfraglen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | } |
| 1135 | |
Willem de Bruijn | 15e36f5 | 2018-04-26 13:42:19 -0400 | [diff] [blame] | 1136 | copy = datalen - transhdrlen - fraggap - pagedlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | if (copy > 0 && getfrag(from, data + transhdrlen, offset, copy, fraggap, skb) < 0) { |
| 1138 | err = -EFAULT; |
| 1139 | kfree_skb(skb); |
| 1140 | goto error; |
| 1141 | } |
| 1142 | |
| 1143 | offset += copy; |
Willem de Bruijn | 15e36f5 | 2018-04-26 13:42:19 -0400 | [diff] [blame] | 1144 | length -= copy + transhdrlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | transhdrlen = 0; |
| 1146 | exthdrlen = 0; |
| 1147 | csummode = CHECKSUM_NONE; |
| 1148 | |
Willem de Bruijn | 52900d2 | 2018-11-30 15:32:40 -0500 | [diff] [blame] | 1149 | /* only the initial fragment is time stamped */ |
| 1150 | skb_shinfo(skb)->tx_flags = cork->tx_flags; |
| 1151 | cork->tx_flags = 0; |
| 1152 | skb_shinfo(skb)->tskey = tskey; |
| 1153 | tskey = 0; |
| 1154 | skb_zcopy_set(skb, uarg, &extra_uref); |
| 1155 | |
Julian Anastasov | 0dec879 | 2017-02-06 23:14:16 +0200 | [diff] [blame] | 1156 | if ((flags & MSG_CONFIRM) && !skb_prev) |
| 1157 | skb_set_dst_pending_confirm(skb, 1); |
| 1158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | /* |
| 1160 | * Put the packet on the pending queue. |
| 1161 | */ |
Eric Dumazet | 694aba6 | 2018-03-31 13:16:25 -0700 | [diff] [blame] | 1162 | if (!skb->destructor) { |
| 1163 | skb->destructor = sock_wfree; |
| 1164 | skb->sk = sk; |
| 1165 | wmem_alloc_delta += skb->truesize; |
| 1166 | } |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1167 | __skb_queue_tail(queue, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | continue; |
| 1169 | } |
| 1170 | |
| 1171 | if (copy > length) |
| 1172 | copy = length; |
| 1173 | |
Willem de Bruijn | 113f99c | 2018-05-17 13:13:29 -0400 | [diff] [blame] | 1174 | if (!(rt->dst.dev->features&NETIF_F_SG) && |
| 1175 | skb_tailroom(skb) >= copy) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | unsigned int off; |
| 1177 | |
| 1178 | off = skb->len; |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1179 | if (getfrag(from, skb_put(skb, copy), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | offset, copy, off, skb) < 0) { |
| 1181 | __skb_trim(skb, off); |
| 1182 | err = -EFAULT; |
| 1183 | goto error; |
| 1184 | } |
Willem de Bruijn | b5947e5 | 2018-11-30 15:32:39 -0500 | [diff] [blame] | 1185 | } else if (!uarg || !uarg->zerocopy) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | int i = skb_shinfo(skb)->nr_frags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1188 | err = -ENOMEM; |
| 1189 | if (!sk_page_frag_refill(sk, pfrag)) |
| 1190 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1192 | if (!skb_can_coalesce(skb, i, pfrag->page, |
| 1193 | pfrag->offset)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | err = -EMSGSIZE; |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1195 | if (i == MAX_SKB_FRAGS) |
| 1196 | goto error; |
| 1197 | |
| 1198 | __skb_fill_page_desc(skb, i, pfrag->page, |
| 1199 | pfrag->offset, 0); |
| 1200 | skb_shinfo(skb)->nr_frags = ++i; |
| 1201 | get_page(pfrag->page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | } |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1203 | copy = min_t(int, copy, pfrag->size - pfrag->offset); |
| 1204 | if (getfrag(from, |
| 1205 | page_address(pfrag->page) + pfrag->offset, |
| 1206 | offset, copy, skb->len, skb) < 0) |
| 1207 | goto error_efault; |
| 1208 | |
| 1209 | pfrag->offset += copy; |
| 1210 | skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | skb->len += copy; |
| 1212 | skb->data_len += copy; |
Herbert Xu | f945fa7 | 2008-01-22 22:39:26 -0800 | [diff] [blame] | 1213 | skb->truesize += copy; |
Eric Dumazet | 694aba6 | 2018-03-31 13:16:25 -0700 | [diff] [blame] | 1214 | wmem_alloc_delta += copy; |
Willem de Bruijn | b5947e5 | 2018-11-30 15:32:39 -0500 | [diff] [blame] | 1215 | } else { |
| 1216 | err = skb_zerocopy_iter_dgram(skb, from, copy); |
| 1217 | if (err < 0) |
| 1218 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | } |
| 1220 | offset += copy; |
| 1221 | length -= copy; |
| 1222 | } |
| 1223 | |
Paolo Abeni | 9e8445a | 2018-04-04 14:30:01 +0200 | [diff] [blame] | 1224 | if (wmem_alloc_delta) |
| 1225 | refcount_add(wmem_alloc_delta, &sk->sk_wmem_alloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | return 0; |
| 1227 | |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1228 | error_efault: |
| 1229 | err = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | error: |
Willem de Bruijn | 97ef7b4 | 2018-12-08 06:22:46 -0500 | [diff] [blame] | 1231 | if (uarg) |
| 1232 | sock_zerocopy_put_abort(uarg, extra_uref); |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1233 | cork->length -= length; |
Pavel Emelyanov | 5e38e27 | 2008-07-16 20:19:49 -0700 | [diff] [blame] | 1234 | IP_INC_STATS(sock_net(sk), IPSTATS_MIB_OUTDISCARDS); |
Eric Dumazet | 694aba6 | 2018-03-31 13:16:25 -0700 | [diff] [blame] | 1235 | refcount_add(wmem_alloc_delta, &sk->sk_wmem_alloc); |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1236 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | } |
| 1238 | |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1239 | static int ip_setup_cork(struct sock *sk, struct inet_cork *cork, |
| 1240 | struct ipcm_cookie *ipc, struct rtable **rtp) |
| 1241 | { |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 1242 | struct ip_options_rcu *opt; |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1243 | struct rtable *rt; |
| 1244 | |
Gao Feng | 9783ccd | 2018-04-16 10:16:45 +0800 | [diff] [blame] | 1245 | rt = *rtp; |
| 1246 | if (unlikely(!rt)) |
| 1247 | return -EFAULT; |
| 1248 | |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1249 | /* |
| 1250 | * setup for corking. |
| 1251 | */ |
| 1252 | opt = ipc->opt; |
| 1253 | if (opt) { |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1254 | if (!cork->opt) { |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1255 | cork->opt = kmalloc(sizeof(struct ip_options) + 40, |
| 1256 | sk->sk_allocation); |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1257 | if (unlikely(!cork->opt)) |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1258 | return -ENOBUFS; |
| 1259 | } |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 1260 | memcpy(cork->opt, &opt->opt, sizeof(struct ip_options) + opt->opt.optlen); |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1261 | cork->flags |= IPCORK_OPT; |
| 1262 | cork->addr = ipc->addr; |
| 1263 | } |
Gao Feng | 9783ccd | 2018-04-16 10:16:45 +0800 | [diff] [blame] | 1264 | |
Hannes Frederic Sowa | 482fc60 | 2013-11-05 02:24:17 +0100 | [diff] [blame] | 1265 | cork->fragsize = ip_sk_use_pmtu(sk) ? |
Eric Dumazet | 501a90c | 2019-12-05 20:43:46 -0800 | [diff] [blame] | 1266 | dst_mtu(&rt->dst) : READ_ONCE(rt->dst.dev->mtu); |
| 1267 | |
| 1268 | if (!inetdev_valid_mtu(cork->fragsize)) |
| 1269 | return -ENETUNREACH; |
Willem de Bruijn | bec1f6f | 2018-04-26 13:42:17 -0400 | [diff] [blame] | 1270 | |
Willem de Bruijn | fbf4781 | 2018-07-06 10:12:59 -0400 | [diff] [blame] | 1271 | cork->gso_size = ipc->gso_size; |
Eric Dumazet | 501a90c | 2019-12-05 20:43:46 -0800 | [diff] [blame] | 1272 | |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1273 | cork->dst = &rt->dst; |
Eric Dumazet | 501a90c | 2019-12-05 20:43:46 -0800 | [diff] [blame] | 1274 | /* We stole this route, caller should not release it. */ |
| 1275 | *rtp = NULL; |
| 1276 | |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1277 | cork->length = 0; |
Francesco Fusco | aa66158 | 2013-09-24 15:43:09 +0200 | [diff] [blame] | 1278 | cork->ttl = ipc->ttl; |
| 1279 | cork->tos = ipc->tos; |
Willem de Bruijn | c6af0c2 | 2019-09-11 15:50:51 -0400 | [diff] [blame] | 1280 | cork->mark = ipc->sockc.mark; |
Francesco Fusco | aa66158 | 2013-09-24 15:43:09 +0200 | [diff] [blame] | 1281 | cork->priority = ipc->priority; |
Jesus Sanchez-Palencia | bc969a9 | 2018-07-03 15:42:49 -0700 | [diff] [blame] | 1282 | cork->transmit_time = ipc->sockc.transmit_time; |
Willem de Bruijn | 678ca42 | 2018-07-06 10:12:58 -0400 | [diff] [blame] | 1283 | cork->tx_flags = 0; |
| 1284 | sock_tx_timestamp(sk, ipc->sockc.tsflags, &cork->tx_flags); |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1285 | |
| 1286 | return 0; |
| 1287 | } |
| 1288 | |
| 1289 | /* |
| 1290 | * ip_append_data() and ip_append_page() can make one large IP datagram |
| 1291 | * from many pieces of data. Each pieces will be holded on the socket |
| 1292 | * until ip_push_pending_frames() is called. Each piece can be a page |
| 1293 | * or non-page data. |
| 1294 | * |
| 1295 | * Not only UDP, other transport protocols - e.g. raw sockets - can use |
| 1296 | * this interface potentially. |
| 1297 | * |
| 1298 | * LATER: length must be adjusted by pad at tail, when it is required. |
| 1299 | */ |
David S. Miller | f5fca60 | 2011-05-08 17:24:10 -0700 | [diff] [blame] | 1300 | int ip_append_data(struct sock *sk, struct flowi4 *fl4, |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1301 | int getfrag(void *from, char *to, int offset, int len, |
| 1302 | int odd, struct sk_buff *skb), |
| 1303 | void *from, int length, int transhdrlen, |
| 1304 | struct ipcm_cookie *ipc, struct rtable **rtp, |
| 1305 | unsigned int flags) |
| 1306 | { |
| 1307 | struct inet_sock *inet = inet_sk(sk); |
| 1308 | int err; |
| 1309 | |
| 1310 | if (flags&MSG_PROBE) |
| 1311 | return 0; |
| 1312 | |
| 1313 | if (skb_queue_empty(&sk->sk_write_queue)) { |
David S. Miller | bdc712b | 2011-05-06 15:02:07 -0700 | [diff] [blame] | 1314 | err = ip_setup_cork(sk, &inet->cork.base, ipc, rtp); |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1315 | if (err) |
| 1316 | return err; |
| 1317 | } else { |
| 1318 | transhdrlen = 0; |
| 1319 | } |
| 1320 | |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1321 | return __ip_append_data(sk, fl4, &sk->sk_write_queue, &inet->cork.base, |
| 1322 | sk_page_frag(sk), getfrag, |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1323 | from, length, transhdrlen, flags); |
| 1324 | } |
| 1325 | |
David S. Miller | f5fca60 | 2011-05-08 17:24:10 -0700 | [diff] [blame] | 1326 | ssize_t ip_append_page(struct sock *sk, struct flowi4 *fl4, struct page *page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | int offset, size_t size, int flags) |
| 1328 | { |
| 1329 | struct inet_sock *inet = inet_sk(sk); |
| 1330 | struct sk_buff *skb; |
| 1331 | struct rtable *rt; |
| 1332 | struct ip_options *opt = NULL; |
David S. Miller | bdc712b | 2011-05-06 15:02:07 -0700 | [diff] [blame] | 1333 | struct inet_cork *cork; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | int hh_len; |
| 1335 | int mtu; |
| 1336 | int len; |
| 1337 | int err; |
Hannes Frederic Sowa | daba287 | 2013-10-27 17:29:11 +0100 | [diff] [blame] | 1338 | unsigned int maxfraglen, fragheaderlen, fraggap, maxnonfragsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | |
| 1340 | if (inet->hdrincl) |
| 1341 | return -EPERM; |
| 1342 | |
| 1343 | if (flags&MSG_PROBE) |
| 1344 | return 0; |
| 1345 | |
| 1346 | if (skb_queue_empty(&sk->sk_write_queue)) |
| 1347 | return -EINVAL; |
| 1348 | |
David S. Miller | bdc712b | 2011-05-06 15:02:07 -0700 | [diff] [blame] | 1349 | cork = &inet->cork.base; |
| 1350 | rt = (struct rtable *)cork->dst; |
| 1351 | if (cork->flags & IPCORK_OPT) |
| 1352 | opt = cork->opt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1354 | if (!(rt->dst.dev->features&NETIF_F_SG)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | return -EOPNOTSUPP; |
| 1356 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1357 | hh_len = LL_RESERVED_SPACE(rt->dst.dev); |
Willem de Bruijn | bec1f6f | 2018-04-26 13:42:17 -0400 | [diff] [blame] | 1358 | mtu = cork->gso_size ? IP_MAX_MTU : cork->fragsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | |
| 1360 | fragheaderlen = sizeof(struct iphdr) + (opt ? opt->optlen : 0); |
| 1361 | maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen; |
WANG Cong | 60ff746 | 2014-05-04 16:39:18 -0700 | [diff] [blame] | 1362 | maxnonfragsize = ip_sk_ignore_df(sk) ? 0xFFFF : mtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | |
Hannes Frederic Sowa | daba287 | 2013-10-27 17:29:11 +0100 | [diff] [blame] | 1364 | if (cork->length + size > maxnonfragsize - fragheaderlen) { |
Hannes Frederic Sowa | 61e7f09 | 2013-12-19 02:13:36 +0100 | [diff] [blame] | 1365 | ip_local_error(sk, EMSGSIZE, fl4->daddr, inet->inet_dport, |
| 1366 | mtu - (opt ? opt->optlen : 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | return -EMSGSIZE; |
| 1368 | } |
| 1369 | |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1370 | skb = skb_peek_tail(&sk->sk_write_queue); |
| 1371 | if (!skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | return -EINVAL; |
| 1373 | |
Hannes Frederic Sowa | a8c4a25 | 2016-02-22 18:43:25 +0100 | [diff] [blame] | 1374 | cork->length += size; |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 1375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | while (size > 0) { |
Willem de Bruijn | ab2fb7e | 2017-08-22 11:39:57 -0400 | [diff] [blame] | 1377 | /* Check if the remaining data fits into current packet. */ |
| 1378 | len = mtu - skb->len; |
| 1379 | if (len < size) |
| 1380 | len = maxfraglen - skb->len; |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 1381 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | if (len <= 0) { |
| 1383 | struct sk_buff *skb_prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | int alloclen; |
| 1385 | |
| 1386 | skb_prev = skb; |
Jayachandran C | 0d0d2bb | 2005-10-13 11:43:02 -0700 | [diff] [blame] | 1387 | fraggap = skb_prev->len - maxfraglen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | |
| 1389 | alloclen = fragheaderlen + hh_len + fraggap + 15; |
| 1390 | skb = sock_wmalloc(sk, alloclen, 1, sk->sk_allocation); |
| 1391 | if (unlikely(!skb)) { |
| 1392 | err = -ENOBUFS; |
| 1393 | goto error; |
| 1394 | } |
| 1395 | |
| 1396 | /* |
| 1397 | * Fill in the control structures |
| 1398 | */ |
| 1399 | skb->ip_summed = CHECKSUM_NONE; |
| 1400 | skb->csum = 0; |
| 1401 | skb_reserve(skb, hh_len); |
| 1402 | |
| 1403 | /* |
| 1404 | * Find where to start putting bytes. |
| 1405 | */ |
Arnaldo Carvalho de Melo | 967b05f | 2007-03-13 13:51:52 -0300 | [diff] [blame] | 1406 | skb_put(skb, fragheaderlen + fraggap); |
Arnaldo Carvalho de Melo | 2ca9e6f | 2007-03-10 19:15:25 -0300 | [diff] [blame] | 1407 | skb_reset_network_header(skb); |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 1408 | skb->transport_header = (skb->network_header + |
| 1409 | fragheaderlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | if (fraggap) { |
Arnaldo Carvalho de Melo | 967b05f | 2007-03-13 13:51:52 -0300 | [diff] [blame] | 1411 | skb->csum = skb_copy_and_csum_bits(skb_prev, |
| 1412 | maxfraglen, |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 1413 | skb_transport_header(skb), |
Al Viro | 8d5930d | 2020-07-10 20:07:10 -0400 | [diff] [blame] | 1414 | fraggap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | skb_prev->csum = csum_sub(skb_prev->csum, |
| 1416 | skb->csum); |
Herbert Xu | e9fa4f7 | 2006-08-13 20:12:58 -0700 | [diff] [blame] | 1417 | pskb_trim_unique(skb_prev, maxfraglen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | } |
| 1419 | |
| 1420 | /* |
| 1421 | * Put the packet on the pending queue. |
| 1422 | */ |
| 1423 | __skb_queue_tail(&sk->sk_write_queue, skb); |
| 1424 | continue; |
| 1425 | } |
| 1426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | if (len > size) |
| 1428 | len = size; |
Hannes Frederic Sowa | be12a1f | 2015-05-21 16:59:58 +0200 | [diff] [blame] | 1429 | |
| 1430 | if (skb_append_pagefrags(skb, page, offset, len)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | err = -EMSGSIZE; |
| 1432 | goto error; |
| 1433 | } |
| 1434 | |
| 1435 | if (skb->ip_summed == CHECKSUM_NONE) { |
Al Viro | 44bb936 | 2006-11-14 21:36:14 -0800 | [diff] [blame] | 1436 | __wsum csum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | csum = csum_page(page, offset, len); |
| 1438 | skb->csum = csum_block_add(skb->csum, csum, skb->len); |
| 1439 | } |
| 1440 | |
| 1441 | skb->len += len; |
| 1442 | skb->data_len += len; |
David S. Miller | 1e34a11 | 2008-01-22 23:44:31 -0800 | [diff] [blame] | 1443 | skb->truesize += len; |
Reshetova, Elena | 14afee4 | 2017-06-30 13:08:00 +0300 | [diff] [blame] | 1444 | refcount_add(len, &sk->sk_wmem_alloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | offset += len; |
| 1446 | size -= len; |
| 1447 | } |
| 1448 | return 0; |
| 1449 | |
| 1450 | error: |
David S. Miller | bdc712b | 2011-05-06 15:02:07 -0700 | [diff] [blame] | 1451 | cork->length -= size; |
Pavel Emelyanov | 5e38e27 | 2008-07-16 20:19:49 -0700 | [diff] [blame] | 1452 | IP_INC_STATS(sock_net(sk), IPSTATS_MIB_OUTDISCARDS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | return err; |
| 1454 | } |
| 1455 | |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1456 | static void ip_cork_release(struct inet_cork *cork) |
Pavel Emelyanov | 429f08e | 2007-11-05 21:03:24 -0800 | [diff] [blame] | 1457 | { |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1458 | cork->flags &= ~IPCORK_OPT; |
| 1459 | kfree(cork->opt); |
| 1460 | cork->opt = NULL; |
| 1461 | dst_release(cork->dst); |
| 1462 | cork->dst = NULL; |
Pavel Emelyanov | 429f08e | 2007-11-05 21:03:24 -0800 | [diff] [blame] | 1463 | } |
| 1464 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | /* |
| 1466 | * Combined all pending IP fragments on the socket as one IP datagram |
| 1467 | * and push them out. |
| 1468 | */ |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1469 | struct sk_buff *__ip_make_skb(struct sock *sk, |
David S. Miller | 77968b7 | 2011-05-08 17:12:19 -0700 | [diff] [blame] | 1470 | struct flowi4 *fl4, |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1471 | struct sk_buff_head *queue, |
| 1472 | struct inet_cork *cork) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | { |
| 1474 | struct sk_buff *skb, *tmp_skb; |
| 1475 | struct sk_buff **tail_skb; |
| 1476 | struct inet_sock *inet = inet_sk(sk); |
Pavel Emelyanov | 0388b00 | 2008-07-14 23:00:43 -0700 | [diff] [blame] | 1477 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | struct ip_options *opt = NULL; |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1479 | struct rtable *rt = (struct rtable *)cork->dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | struct iphdr *iph; |
Alexey Dobriyan | 76ab608 | 2006-01-06 13:24:29 -0800 | [diff] [blame] | 1481 | __be16 df = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | __u8 ttl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 1484 | skb = __skb_dequeue(queue); |
| 1485 | if (!skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | goto out; |
| 1487 | tail_skb = &(skb_shinfo(skb)->frag_list); |
| 1488 | |
| 1489 | /* move skb->data to ip header from ext header */ |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 1490 | if (skb->data < skb_network_header(skb)) |
Arnaldo Carvalho de Melo | bbe735e | 2007-03-10 22:16:10 -0300 | [diff] [blame] | 1491 | __skb_pull(skb, skb_network_offset(skb)); |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1492 | while ((tmp_skb = __skb_dequeue(queue)) != NULL) { |
Arnaldo Carvalho de Melo | cfe1fc7 | 2007-03-16 17:26:39 -0300 | [diff] [blame] | 1493 | __skb_pull(tmp_skb, skb_network_header_len(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | *tail_skb = tmp_skb; |
| 1495 | tail_skb = &(tmp_skb->next); |
| 1496 | skb->len += tmp_skb->len; |
| 1497 | skb->data_len += tmp_skb->len; |
| 1498 | skb->truesize += tmp_skb->truesize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | tmp_skb->destructor = NULL; |
| 1500 | tmp_skb->sk = NULL; |
| 1501 | } |
| 1502 | |
| 1503 | /* Unless user demanded real pmtu discovery (IP_PMTUDISC_DO), we allow |
| 1504 | * to fragment the frame generated here. No matter, what transforms |
| 1505 | * how transforms change size of the packet, it will come out. |
| 1506 | */ |
WANG Cong | 60ff746 | 2014-05-04 16:39:18 -0700 | [diff] [blame] | 1507 | skb->ignore_df = ip_sk_ignore_df(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | |
| 1509 | /* DF bit is set when we want to see DF on outgoing frames. |
WANG Cong | 60ff746 | 2014-05-04 16:39:18 -0700 | [diff] [blame] | 1510 | * If ignore_df is set too, we still allow to fragment this frame |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | * locally. */ |
Hannes Frederic Sowa | 482fc60 | 2013-11-05 02:24:17 +0100 | [diff] [blame] | 1512 | if (inet->pmtudisc == IP_PMTUDISC_DO || |
| 1513 | inet->pmtudisc == IP_PMTUDISC_PROBE || |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1514 | (skb->len <= dst_mtu(&rt->dst) && |
| 1515 | ip_dont_fragment(sk, &rt->dst))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | df = htons(IP_DF); |
| 1517 | |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1518 | if (cork->flags & IPCORK_OPT) |
| 1519 | opt = cork->opt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | |
Francesco Fusco | aa66158 | 2013-09-24 15:43:09 +0200 | [diff] [blame] | 1521 | if (cork->ttl != 0) |
| 1522 | ttl = cork->ttl; |
| 1523 | else if (rt->rt_type == RTN_MULTICAST) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | ttl = inet->mc_ttl; |
| 1525 | else |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1526 | ttl = ip_select_ttl(inet, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | |
Ansis Atteka | 749154a | 2013-09-18 15:29:52 -0700 | [diff] [blame] | 1528 | iph = ip_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | iph->version = 4; |
| 1530 | iph->ihl = 5; |
Francesco Fusco | aa66158 | 2013-09-24 15:43:09 +0200 | [diff] [blame] | 1531 | iph->tos = (cork->tos != -1) ? cork->tos : inet->tos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | iph->frag_off = df; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | iph->ttl = ttl; |
| 1534 | iph->protocol = sk->sk_protocol; |
Eric Dumazet | 84f9307 | 2011-11-30 19:00:53 +0000 | [diff] [blame] | 1535 | ip_copy_addrs(iph, fl4); |
Hannes Frederic Sowa | b6a7719 | 2015-03-25 17:07:44 +0100 | [diff] [blame] | 1536 | ip_select_ident(net, skb, sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | |
David S. Miller | 22f728f | 2011-05-13 17:21:27 -0400 | [diff] [blame] | 1538 | if (opt) { |
| 1539 | iph->ihl += opt->optlen>>2; |
| 1540 | ip_options_build(skb, opt, cork->addr, rt, 0); |
| 1541 | } |
| 1542 | |
Francesco Fusco | aa66158 | 2013-09-24 15:43:09 +0200 | [diff] [blame] | 1543 | skb->priority = (cork->tos != -1) ? cork->priority: sk->sk_priority; |
Willem de Bruijn | c6af0c2 | 2019-09-11 15:50:51 -0400 | [diff] [blame] | 1544 | skb->mark = cork->mark; |
Jesus Sanchez-Palencia | bc969a9 | 2018-07-03 15:42:49 -0700 | [diff] [blame] | 1545 | skb->tstamp = cork->transmit_time; |
Eric Dumazet | a21bba9 | 2008-11-24 16:07:50 -0800 | [diff] [blame] | 1546 | /* |
| 1547 | * Steal rt from cork.dst to avoid a pair of atomic_inc/atomic_dec |
| 1548 | * on dst refcount |
| 1549 | */ |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1550 | cork->dst = NULL; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1551 | skb_dst_set(skb, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 1553 | if (iph->protocol == IPPROTO_ICMP) |
Pavel Emelyanov | 0388b00 | 2008-07-14 23:00:43 -0700 | [diff] [blame] | 1554 | icmp_out_count(net, ((struct icmphdr *) |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 1555 | skb_transport_header(skb))->type); |
| 1556 | |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1557 | ip_cork_release(cork); |
| 1558 | out: |
| 1559 | return skb; |
| 1560 | } |
| 1561 | |
Eric Dumazet | b5ec8ee | 2012-08-10 02:22:47 +0000 | [diff] [blame] | 1562 | int ip_send_skb(struct net *net, struct sk_buff *skb) |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1563 | { |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1564 | int err; |
| 1565 | |
Eric W. Biederman | 33224b1 | 2015-10-07 16:48:46 -0500 | [diff] [blame] | 1566 | err = ip_local_out(net, skb->sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | if (err) { |
| 1568 | if (err > 0) |
Eric Dumazet | 6ce9e7b | 2009-09-02 18:05:33 -0700 | [diff] [blame] | 1569 | err = net_xmit_errno(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | if (err) |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1571 | IP_INC_STATS(net, IPSTATS_MIB_OUTDISCARDS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | } |
| 1573 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | } |
| 1576 | |
David S. Miller | 77968b7 | 2011-05-08 17:12:19 -0700 | [diff] [blame] | 1577 | int ip_push_pending_frames(struct sock *sk, struct flowi4 *fl4) |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1578 | { |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1579 | struct sk_buff *skb; |
| 1580 | |
David S. Miller | 77968b7 | 2011-05-08 17:12:19 -0700 | [diff] [blame] | 1581 | skb = ip_finish_skb(sk, fl4); |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1582 | if (!skb) |
| 1583 | return 0; |
| 1584 | |
| 1585 | /* Netfilter gets whole the not fragmented skb. */ |
Eric Dumazet | b5ec8ee | 2012-08-10 02:22:47 +0000 | [diff] [blame] | 1586 | return ip_send_skb(sock_net(sk), skb); |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1587 | } |
| 1588 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | /* |
| 1590 | * Throw away all pending data on the socket. |
| 1591 | */ |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1592 | static void __ip_flush_pending_frames(struct sock *sk, |
| 1593 | struct sk_buff_head *queue, |
| 1594 | struct inet_cork *cork) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | struct sk_buff *skb; |
| 1597 | |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1598 | while ((skb = __skb_dequeue_tail(queue)) != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | kfree_skb(skb); |
| 1600 | |
Herbert Xu | 1470ddf | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1601 | ip_cork_release(cork); |
| 1602 | } |
| 1603 | |
| 1604 | void ip_flush_pending_frames(struct sock *sk) |
| 1605 | { |
David S. Miller | bdc712b | 2011-05-06 15:02:07 -0700 | [diff] [blame] | 1606 | __ip_flush_pending_frames(sk, &sk->sk_write_queue, &inet_sk(sk)->cork.base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | } |
| 1608 | |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1609 | struct sk_buff *ip_make_skb(struct sock *sk, |
David S. Miller | 77968b7 | 2011-05-08 17:12:19 -0700 | [diff] [blame] | 1610 | struct flowi4 *fl4, |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1611 | int getfrag(void *from, char *to, int offset, |
| 1612 | int len, int odd, struct sk_buff *skb), |
| 1613 | void *from, int length, int transhdrlen, |
| 1614 | struct ipcm_cookie *ipc, struct rtable **rtp, |
Willem de Bruijn | 1cd7884 | 2018-04-26 13:42:15 -0400 | [diff] [blame] | 1615 | struct inet_cork *cork, unsigned int flags) |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1616 | { |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1617 | struct sk_buff_head queue; |
| 1618 | int err; |
| 1619 | |
| 1620 | if (flags & MSG_PROBE) |
| 1621 | return NULL; |
| 1622 | |
| 1623 | __skb_queue_head_init(&queue); |
| 1624 | |
Willem de Bruijn | 1cd7884 | 2018-04-26 13:42:15 -0400 | [diff] [blame] | 1625 | cork->flags = 0; |
| 1626 | cork->addr = 0; |
| 1627 | cork->opt = NULL; |
| 1628 | err = ip_setup_cork(sk, cork, ipc, rtp); |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1629 | if (err) |
| 1630 | return ERR_PTR(err); |
| 1631 | |
Willem de Bruijn | 1cd7884 | 2018-04-26 13:42:15 -0400 | [diff] [blame] | 1632 | err = __ip_append_data(sk, fl4, &queue, cork, |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1633 | ¤t->task_frag, getfrag, |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1634 | from, length, transhdrlen, flags); |
| 1635 | if (err) { |
Willem de Bruijn | 1cd7884 | 2018-04-26 13:42:15 -0400 | [diff] [blame] | 1636 | __ip_flush_pending_frames(sk, &queue, cork); |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1637 | return ERR_PTR(err); |
| 1638 | } |
| 1639 | |
Willem de Bruijn | 1cd7884 | 2018-04-26 13:42:15 -0400 | [diff] [blame] | 1640 | return __ip_make_skb(sk, fl4, &queue, cork); |
Herbert Xu | 1c32c5a | 2011-03-01 02:36:47 +0000 | [diff] [blame] | 1641 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | |
| 1643 | /* |
| 1644 | * Fetch data from kernel space and fill in checksum if needed. |
| 1645 | */ |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1646 | static int ip_reply_glue_bits(void *dptr, char *to, int offset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | int len, int odd, struct sk_buff *skb) |
| 1648 | { |
Al Viro | 5084205 | 2006-11-14 21:36:34 -0800 | [diff] [blame] | 1649 | __wsum csum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | |
Al Viro | cc44c17 | 2020-07-11 00:12:07 -0400 | [diff] [blame^] | 1651 | csum = csum_partial_copy_nocheck(dptr+offset, to, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | skb->csum = csum_block_add(skb->csum, csum, odd); |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1653 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | } |
| 1655 | |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1656 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | * Generic function to send a packet as reply to another packet. |
Eric Dumazet | be9f4a4 | 2012-07-19 07:34:03 +0000 | [diff] [blame] | 1658 | * Used to send some TCP resets/acks so far. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | */ |
Eric Dumazet | bdbbb85 | 2015-01-29 21:35:05 -0800 | [diff] [blame] | 1660 | void ip_send_unicast_reply(struct sock *sk, struct sk_buff *skb, |
Eric Dumazet | 24a2d43 | 2014-09-27 09:50:55 -0700 | [diff] [blame] | 1661 | const struct ip_options *sopt, |
| 1662 | __be32 daddr, __be32 saddr, |
| 1663 | const struct ip_reply_arg *arg, |
Eric Dumazet | d6fb396 | 2019-06-13 21:22:35 -0700 | [diff] [blame] | 1664 | unsigned int len, u64 transmit_time) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | { |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 1666 | struct ip_options_data replyopts; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | struct ipcm_cookie ipc; |
David S. Miller | 77968b7 | 2011-05-08 17:12:19 -0700 | [diff] [blame] | 1668 | struct flowi4 fl4; |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 1669 | struct rtable *rt = skb_rtable(skb); |
Eric Dumazet | bdbbb85 | 2015-01-29 21:35:05 -0800 | [diff] [blame] | 1670 | struct net *net = sock_net(sk); |
Eric Dumazet | be9f4a4 | 2012-07-19 07:34:03 +0000 | [diff] [blame] | 1671 | struct sk_buff *nskb; |
Vasily Averin | 4062090 | 2014-10-15 16:24:02 +0400 | [diff] [blame] | 1672 | int err; |
David Ahern | f7ba868 | 2015-08-13 14:59:08 -0600 | [diff] [blame] | 1673 | int oif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | |
Paolo Abeni | 91ed1e6 | 2017-08-03 18:07:06 +0200 | [diff] [blame] | 1675 | if (__ip_options_echo(net, &replyopts.opt.opt, skb, sopt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | return; |
| 1677 | |
Willem de Bruijn | 3517820 | 2018-07-06 10:12:54 -0400 | [diff] [blame] | 1678 | ipcm_init(&ipc); |
David S. Miller | 0a5ebb8 | 2011-05-09 13:22:43 -0700 | [diff] [blame] | 1679 | ipc.addr = daddr; |
Eric Dumazet | d6fb396 | 2019-06-13 21:22:35 -0700 | [diff] [blame] | 1680 | ipc.sockc.transmit_time = transmit_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 1682 | if (replyopts.opt.opt.optlen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | ipc.opt = &replyopts.opt; |
| 1684 | |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 1685 | if (replyopts.opt.opt.srr) |
| 1686 | daddr = replyopts.opt.opt.faddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | } |
| 1688 | |
David Ahern | f7ba868 | 2015-08-13 14:59:08 -0600 | [diff] [blame] | 1689 | oif = arg->bound_dev_if; |
David Ahern | 9b6c14d | 2016-11-09 09:07:26 -0800 | [diff] [blame] | 1690 | if (!oif && netif_index_is_l3_master(net, skb->skb_iif)) |
| 1691 | oif = skb->skb_iif; |
David Ahern | f7ba868 | 2015-08-13 14:59:08 -0600 | [diff] [blame] | 1692 | |
| 1693 | flowi4_init_output(&fl4, oif, |
Jon Maxwell | 0048369 | 2018-05-10 16:53:51 +1000 | [diff] [blame] | 1694 | IP4_REPLY_MARK(net, skb->mark) ?: sk->sk_mark, |
Eric Dumazet | 66b13d9 | 2011-10-24 03:06:21 -0400 | [diff] [blame] | 1695 | RT_TOS(arg->tos), |
Eric Dumazet | be9f4a4 | 2012-07-19 07:34:03 +0000 | [diff] [blame] | 1696 | RT_SCOPE_UNIVERSE, ip_hdr(skb)->protocol, |
David S. Miller | 77968b7 | 2011-05-08 17:12:19 -0700 | [diff] [blame] | 1697 | ip_reply_arg_flowi_flags(arg), |
David S. Miller | 70e7341 | 2012-06-28 03:21:41 -0700 | [diff] [blame] | 1698 | daddr, saddr, |
Lorenzo Colitti | e2d118a | 2016-11-04 02:23:43 +0900 | [diff] [blame] | 1699 | tcp_hdr(skb)->source, tcp_hdr(skb)->dest, |
| 1700 | arg->uid); |
David S. Miller | 77968b7 | 2011-05-08 17:12:19 -0700 | [diff] [blame] | 1701 | security_skb_classify_flow(skb, flowi4_to_flowi(&fl4)); |
Eric Dumazet | be9f4a4 | 2012-07-19 07:34:03 +0000 | [diff] [blame] | 1702 | rt = ip_route_output_key(net, &fl4); |
David S. Miller | 77968b7 | 2011-05-08 17:12:19 -0700 | [diff] [blame] | 1703 | if (IS_ERR(rt)) |
| 1704 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | |
Eric Dumazet | bdbbb85 | 2015-01-29 21:35:05 -0800 | [diff] [blame] | 1706 | inet_sk(sk)->tos = arg->tos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 1708 | sk->sk_protocol = ip_hdr(skb)->protocol; |
Patrick McHardy | f0e48db | 2007-06-04 21:32:46 -0700 | [diff] [blame] | 1709 | sk->sk_bound_dev_if = arg->bound_dev_if; |
Eric Dumazet | be9f4a4 | 2012-07-19 07:34:03 +0000 | [diff] [blame] | 1710 | sk->sk_sndbuf = sysctl_wmem_default; |
Willem de Bruijn | 0da7536 | 2020-07-01 16:00:06 -0400 | [diff] [blame] | 1711 | ipc.sockc.mark = fl4.flowi4_mark; |
Vasily Averin | 4062090 | 2014-10-15 16:24:02 +0400 | [diff] [blame] | 1712 | err = ip_append_data(sk, &fl4, ip_reply_glue_bits, arg->iov->iov_base, |
| 1713 | len, 0, &ipc, &rt, MSG_DONTWAIT); |
| 1714 | if (unlikely(err)) { |
| 1715 | ip_flush_pending_frames(sk); |
| 1716 | goto out; |
| 1717 | } |
| 1718 | |
Eric Dumazet | be9f4a4 | 2012-07-19 07:34:03 +0000 | [diff] [blame] | 1719 | nskb = skb_peek(&sk->sk_write_queue); |
| 1720 | if (nskb) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | if (arg->csumoffset >= 0) |
Eric Dumazet | be9f4a4 | 2012-07-19 07:34:03 +0000 | [diff] [blame] | 1722 | *((__sum16 *)skb_transport_header(nskb) + |
| 1723 | arg->csumoffset) = csum_fold(csum_add(nskb->csum, |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 1724 | arg->csum)); |
Eric Dumazet | be9f4a4 | 2012-07-19 07:34:03 +0000 | [diff] [blame] | 1725 | nskb->ip_summed = CHECKSUM_NONE; |
David S. Miller | 77968b7 | 2011-05-08 17:12:19 -0700 | [diff] [blame] | 1726 | ip_push_pending_frames(sk, &fl4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | } |
Vasily Averin | 4062090 | 2014-10-15 16:24:02 +0400 | [diff] [blame] | 1728 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | ip_rt_put(rt); |
| 1730 | } |
| 1731 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | void __init ip_init(void) |
| 1733 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | ip_rt_init(); |
| 1735 | inet_initpeers(); |
| 1736 | |
WANG Cong | 72c1d3b | 2014-01-10 16:09:45 -0800 | [diff] [blame] | 1737 | #if defined(CONFIG_IP_MULTICAST) |
| 1738 | igmp_mc_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | #endif |
| 1740 | } |