blob: 2e9223bb1b3a47386e8164a5a63400899fbf301f [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05006 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * These functions handle output processing.
9 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050010 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * you can redistribute it and/or modify it under the terms of
12 * the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050016 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
18 * ************************
19 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 * See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
Jeff Kirsher4b2f13a2013-12-06 06:28:48 -080023 * along with GNU CC; see the file COPYING. If not, see
24 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 *
26 * Please send any bug reports or fixes you make to the
27 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020028 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * Written or modified by:
31 * La Monte H.P. Yarroll <piggy@acm.org>
32 * Karl Knutson <karl@athena.chicago.il.us>
33 * Jon Grimm <jgrimm@austin.ibm.com>
34 * Sridhar Samudrala <sri@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36
Joe Perches145ce502010-08-24 13:21:08 +000037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/types.h>
40#include <linux/kernel.h>
41#include <linux/wait.h>
42#include <linux/time.h>
43#include <linux/ip.h>
44#include <linux/ipv6.h>
45#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <net/inet_ecn.h>
Vlad Yasevich8d2f9e812009-03-21 13:41:09 -070048#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <net/icmp.h>
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -070050#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/socket.h> /* for sa_family_t */
53#include <net/sock.h>
54
55#include <net/sctp/sctp.h>
56#include <net/sctp/sm.h>
Vlad Yasevich9ad09772007-12-16 14:06:41 -080057#include <net/sctp/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/* Forward declarations for private helpers. */
Neil Hormaned106272012-07-02 09:59:24 +000060static sctp_xmit_t __sctp_packet_append_chunk(struct sctp_packet *packet,
61 struct sctp_chunk *chunk);
Vlad Yaseviche83963b2009-08-07 10:43:07 -040062static sctp_xmit_t sctp_packet_can_append_data(struct sctp_packet *packet,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 struct sctp_chunk *chunk);
Vlad Yaseviche83963b2009-08-07 10:43:07 -040064static void sctp_packet_append_data(struct sctp_packet *packet,
65 struct sctp_chunk *chunk);
66static sctp_xmit_t sctp_packet_will_fit(struct sctp_packet *packet,
67 struct sctp_chunk *chunk,
68 u16 chunk_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Wei Yongjunbe297142009-09-04 14:34:06 +080070static void sctp_packet_reset(struct sctp_packet *packet)
71{
72 packet->size = packet->overhead;
73 packet->has_cookie_echo = 0;
74 packet->has_sack = 0;
75 packet->has_data = 0;
76 packet->has_auth = 0;
77 packet->ipfragok = 0;
78 packet->auth = NULL;
79}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* Config a packet.
82 * This appears to be a followup set of initializations.
83 */
84struct sctp_packet *sctp_packet_config(struct sctp_packet *packet,
85 __u32 vtag, int ecn_capable)
86{
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -030087 struct sctp_transport *tp = packet->transport;
88 struct sctp_association *asoc = tp->asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Daniel Borkmannbb333812013-06-28 19:49:40 +020090 pr_debug("%s: packet:%p vtag:0x%x\n", __func__, packet, vtag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 packet->vtag = vtag;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -030094 if (asoc && tp->dst) {
95 struct sock *sk = asoc->base.sk;
96
97 rcu_read_lock();
98 if (__sk_dst_get(sk) != tp->dst) {
99 dst_hold(tp->dst);
100 sk_setup_caps(sk, tp->dst);
101 }
102
103 if (sk_can_gso(sk)) {
104 struct net_device *dev = tp->dst->dev;
105
106 packet->max_size = dev->gso_max_size;
107 } else {
108 packet->max_size = asoc->pathmtu;
109 }
110 rcu_read_unlock();
111
112 } else {
113 packet->max_size = tp->pathmtu;
114 }
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (ecn_capable && sctp_packet_empty(packet)) {
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300117 struct sctp_chunk *chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 /* If there a is a prepend chunk stick it on the list before
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900120 * any other chunks get appended.
121 */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300122 chunk = sctp_get_ecne_prepend(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (chunk)
124 sctp_packet_append_chunk(packet, chunk);
125 }
126
127 return packet;
128}
129
130/* Initialize the packet structure. */
131struct sctp_packet *sctp_packet_init(struct sctp_packet *packet,
132 struct sctp_transport *transport,
133 __u16 sport, __u16 dport)
134{
135 struct sctp_association *asoc = transport->asoc;
136 size_t overhead;
137
Daniel Borkmannbb333812013-06-28 19:49:40 +0200138 pr_debug("%s: packet:%p transport:%p\n", __func__, packet, transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 packet->transport = transport;
141 packet->source_port = sport;
142 packet->destination_port = dport;
David S. Miller79af02c2005-07-08 21:47:49 -0700143 INIT_LIST_HEAD(&packet->chunk_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900145 struct sctp_sock *sp = sctp_sk(asoc->base.sk);
146 overhead = sp->pf->af->net_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 } else {
148 overhead = sizeof(struct ipv6hdr);
149 }
150 overhead += sizeof(struct sctphdr);
151 packet->overhead = overhead;
Wei Yongjunbe297142009-09-04 14:34:06 +0800152 sctp_packet_reset(packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 packet->vtag = 0;
Daniel Borkmann3e3251b2013-04-18 21:59:37 +0000154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return packet;
156}
157
158/* Free a packet. */
159void sctp_packet_free(struct sctp_packet *packet)
160{
David S. Miller79af02c2005-07-08 21:47:49 -0700161 struct sctp_chunk *chunk, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Daniel Borkmannbb333812013-06-28 19:49:40 +0200163 pr_debug("%s: packet:%p\n", __func__, packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
David S. Miller79af02c2005-07-08 21:47:49 -0700165 list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
166 list_del_init(&chunk->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 sctp_chunk_free(chunk);
David S. Miller79af02c2005-07-08 21:47:49 -0700168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
171/* This routine tries to append the chunk to the offered packet. If adding
172 * the chunk causes the packet to exceed the path MTU and COOKIE_ECHO chunk
173 * is not present in the packet, it transmits the input packet.
174 * Data can be bundled with a packet containing a COOKIE_ECHO chunk as long
175 * as it can fit in the packet, but any more data that does not fit in this
176 * packet can be sent only after receiving the COOKIE_ACK.
177 */
178sctp_xmit_t sctp_packet_transmit_chunk(struct sctp_packet *packet,
Vlad Yasevich2e3216c2008-06-19 16:08:18 -0700179 struct sctp_chunk *chunk,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300180 int one_packet, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 sctp_xmit_t retval;
183 int error = 0;
184
David S. Miller3b55a532016-06-03 22:53:26 -0700185 pr_debug("%s: packet:%p size:%Zu chunk:%p size:%d\n", __func__,
Marcelo Ricardo Leitner942b3232016-06-02 15:05:44 -0300186 packet, packet->size, chunk, chunk->skb ? chunk->skb->len : -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 switch ((retval = (sctp_packet_append_chunk(packet, chunk)))) {
189 case SCTP_XMIT_PMTU_FULL:
190 if (!packet->has_cookie_echo) {
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300191 error = sctp_packet_transmit(packet, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (error < 0)
193 chunk->skb->sk->sk_err = -error;
194
195 /* If we have an empty packet, then we can NOT ever
196 * return PMTU_FULL.
197 */
Vlad Yasevich2e3216c2008-06-19 16:08:18 -0700198 if (!one_packet)
199 retval = sctp_packet_append_chunk(packet,
200 chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202 break;
203
204 case SCTP_XMIT_RWND_FULL:
205 case SCTP_XMIT_OK:
David Laight526cbef2014-07-22 08:59:14 +0000206 case SCTP_XMIT_DELAY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 return retval;
211}
212
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700213/* Try to bundle an auth chunk into the packet. */
214static sctp_xmit_t sctp_packet_bundle_auth(struct sctp_packet *pkt,
215 struct sctp_chunk *chunk)
216{
217 struct sctp_association *asoc = pkt->transport->asoc;
218 struct sctp_chunk *auth;
219 sctp_xmit_t retval = SCTP_XMIT_OK;
220
221 /* if we don't have an association, we can't do authentication */
222 if (!asoc)
223 return retval;
224
225 /* See if this is an auth chunk we are bundling or if
226 * auth is already bundled.
227 */
Vlad Yasevich4007cc82009-09-04 18:21:00 -0400228 if (chunk->chunk_hdr->type == SCTP_CID_AUTH || pkt->has_auth)
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700229 return retval;
230
231 /* if the peer did not request this chunk to be authenticated,
232 * don't do it
233 */
234 if (!chunk->auth)
235 return retval;
236
237 auth = sctp_make_auth(asoc);
238 if (!auth)
239 return retval;
240
Neil Hormaned106272012-07-02 09:59:24 +0000241 retval = __sctp_packet_append_chunk(pkt, auth);
242
243 if (retval != SCTP_XMIT_OK)
244 sctp_chunk_free(auth);
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700245
246 return retval;
247}
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/* Try to bundle a SACK with the packet. */
250static sctp_xmit_t sctp_packet_bundle_sack(struct sctp_packet *pkt,
251 struct sctp_chunk *chunk)
252{
253 sctp_xmit_t retval = SCTP_XMIT_OK;
254
255 /* If sending DATA and haven't aleady bundled a SACK, try to
256 * bundle one in to the packet.
257 */
258 if (sctp_chunk_is_data(chunk) && !pkt->has_sack &&
259 !pkt->has_cookie_echo) {
260 struct sctp_association *asoc;
Doug Grahamaf87b822009-07-29 12:05:57 -0400261 struct timer_list *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 asoc = pkt->transport->asoc;
Doug Grahamaf87b822009-07-29 12:05:57 -0400263 timer = &asoc->timers[SCTP_EVENT_TIMEOUT_SACK];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Doug Grahamaf87b822009-07-29 12:05:57 -0400265 /* If the SACK timer is running, we have a pending SACK */
266 if (timer_pending(timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 struct sctp_chunk *sack;
Neil Horman42448542012-06-30 03:04:26 +0000268
269 if (pkt->transport->sack_generation !=
270 pkt->transport->asoc->peer.sack_generation)
271 return retval;
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 asoc->a_rwnd = asoc->rwnd;
274 sack = sctp_make_sack(asoc);
275 if (sack) {
Neil Hormaned106272012-07-02 09:59:24 +0000276 retval = __sctp_packet_append_chunk(pkt, sack);
277 if (retval != SCTP_XMIT_OK) {
278 sctp_chunk_free(sack);
279 goto out;
280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 asoc->peer.sack_needed = 0;
Doug Grahamaf87b822009-07-29 12:05:57 -0400282 if (del_timer(timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 sctp_association_put(asoc);
284 }
285 }
286 }
Neil Hormaned106272012-07-02 09:59:24 +0000287out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return retval;
289}
290
Neil Hormaned106272012-07-02 09:59:24 +0000291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/* Append a chunk to the offered packet reporting back any inability to do
293 * so.
294 */
Neil Hormaned106272012-07-02 09:59:24 +0000295static sctp_xmit_t __sctp_packet_append_chunk(struct sctp_packet *packet,
296 struct sctp_chunk *chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 sctp_xmit_t retval = SCTP_XMIT_OK;
299 __u16 chunk_len = WORD_ROUND(ntohs(chunk->chunk_hdr->length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400301 /* Check to see if this chunk will fit into the packet */
302 retval = sctp_packet_will_fit(packet, chunk, chunk_len);
303 if (retval != SCTP_XMIT_OK)
304 goto finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400306 /* We believe that this chunk is OK to add to the packet */
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700307 switch (chunk->chunk_hdr->type) {
wangweidongf7010e62013-12-23 12:16:52 +0800308 case SCTP_CID_DATA:
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400309 /* Account for the data being in the packet */
310 sctp_packet_append_data(packet, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 /* Disallow SACK bundling after DATA. */
312 packet->has_sack = 1;
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700313 /* Disallow AUTH bundling after DATA */
314 packet->has_auth = 1;
315 /* Let it be knows that packet has DATA in it */
316 packet->has_data = 1;
Vlad Yasevich759af002009-01-22 14:53:01 -0800317 /* timestamp the chunk for rtx purposes */
318 chunk->sent_at = jiffies;
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700319 break;
wangweidongf7010e62013-12-23 12:16:52 +0800320 case SCTP_CID_COOKIE_ECHO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 packet->has_cookie_echo = 1;
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700322 break;
323
wangweidongf7010e62013-12-23 12:16:52 +0800324 case SCTP_CID_SACK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 packet->has_sack = 1;
Michele Baldessari196d6752012-12-01 04:49:42 +0000326 if (chunk->asoc)
327 chunk->asoc->stats.osacks++;
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700328 break;
329
wangweidongf7010e62013-12-23 12:16:52 +0800330 case SCTP_CID_AUTH:
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700331 packet->has_auth = 1;
332 packet->auth = chunk;
333 break;
334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* It is OK to send this chunk. */
David S. Miller79af02c2005-07-08 21:47:49 -0700337 list_add_tail(&chunk->list, &packet->chunk_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 packet->size += chunk_len;
339 chunk->transport = packet->transport;
340finish:
341 return retval;
342}
343
Neil Hormaned106272012-07-02 09:59:24 +0000344/* Append a chunk to the offered packet reporting back any inability to do
345 * so.
346 */
347sctp_xmit_t sctp_packet_append_chunk(struct sctp_packet *packet,
348 struct sctp_chunk *chunk)
349{
350 sctp_xmit_t retval = SCTP_XMIT_OK;
351
Daniel Borkmannbb333812013-06-28 19:49:40 +0200352 pr_debug("%s: packet:%p chunk:%p\n", __func__, packet, chunk);
Neil Hormaned106272012-07-02 09:59:24 +0000353
354 /* Data chunks are special. Before seeing what else we can
355 * bundle into this packet, check to see if we are allowed to
356 * send this DATA.
357 */
358 if (sctp_chunk_is_data(chunk)) {
359 retval = sctp_packet_can_append_data(packet, chunk);
360 if (retval != SCTP_XMIT_OK)
361 goto finish;
362 }
363
364 /* Try to bundle AUTH chunk */
365 retval = sctp_packet_bundle_auth(packet, chunk);
366 if (retval != SCTP_XMIT_OK)
367 goto finish;
368
369 /* Try to bundle SACK chunk */
370 retval = sctp_packet_bundle_sack(packet, chunk);
371 if (retval != SCTP_XMIT_OK)
372 goto finish;
373
374 retval = __sctp_packet_append_chunk(packet, chunk);
375
376finish:
377 return retval;
378}
379
Thomas Graf4c3a5bd2012-09-03 04:27:42 +0000380static void sctp_packet_release_owner(struct sk_buff *skb)
381{
382 sk_free(skb->sk);
383}
384
385static void sctp_packet_set_owner_w(struct sk_buff *skb, struct sock *sk)
386{
387 skb_orphan(skb);
388 skb->sk = sk;
389 skb->destructor = sctp_packet_release_owner;
390
391 /*
392 * The data chunks have already been accounted for in sctp_sendmsg(),
393 * therefore only reserve a single byte to keep socket around until
394 * the packet has been transmitted.
395 */
396 atomic_inc(&sk->sk_wmem_alloc);
397}
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/* All packets are sent to the network through this function from
400 * sctp_outq_tail().
401 *
402 * The return value is a normal kernel error return value.
403 */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300404int sctp_packet_transmit(struct sctp_packet *packet, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 struct sctp_transport *tp = packet->transport;
407 struct sctp_association *asoc = tp->asoc;
408 struct sctphdr *sh;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300409 struct sk_buff *nskb = NULL, *head = NULL;
David S. Miller79af02c2005-07-08 21:47:49 -0700410 struct sctp_chunk *chunk, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct sock *sk;
412 int err = 0;
413 int padding; /* How much padding do we need? */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300414 int pkt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 __u8 has_data = 0;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300416 int gso = 0;
417 int pktcount = 0;
wangweidong04388162013-12-26 13:55:56 +0800418 struct dst_entry *dst;
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700419 unsigned char *auth = NULL; /* pointer to auth in skb data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Daniel Borkmannbb333812013-06-28 19:49:40 +0200421 pr_debug("%s: packet:%p\n", __func__, packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 /* Do NOT generate a chunkless packet. */
David S. Miller79af02c2005-07-08 21:47:49 -0700424 if (list_empty(&packet->chunk_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return err;
426
427 /* Set up convenience variables... */
David S. Miller79af02c2005-07-08 21:47:49 -0700428 chunk = list_entry(packet->chunk_list.next, struct sctp_chunk, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 sk = chunk->skb->sk;
430
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300431 /* Allocate the head skb, or main one if not in GSO */
432 if (packet->size > tp->pathmtu && !packet->ipfragok) {
433 if (sk_can_gso(sk)) {
434 gso = 1;
435 pkt_size = packet->overhead;
436 } else {
437 /* If this happens, we trash this packet and try
438 * to build a new one, hopefully correct this
439 * time. Application may notice this error.
440 */
441 pr_err_once("Trying to GSO but underlying device doesn't support it.");
442 goto nomem;
443 }
444 } else {
445 pkt_size = packet->size;
446 }
447 head = alloc_skb(pkt_size + MAX_HEADER, gfp);
448 if (!head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 goto nomem;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300450 if (gso) {
451 NAPI_GRO_CB(head)->last = head;
452 skb_shinfo(head)->gso_type = sk->sk_gso_type;
453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 /* Make sure the outbound skb has enough header room reserved. */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300456 skb_reserve(head, packet->overhead + MAX_HEADER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 /* Set the owning socket so that we know where to get the
459 * destination IP address.
460 */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300461 sctp_packet_set_owner_w(head, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Nicolas Dichtele0268862012-05-04 05:24:54 +0000463 if (!sctp_transport_dst_check(tp)) {
Sridhar Samudrala503b55f2006-06-17 22:57:28 -0700464 sctp_transport_route(tp, NULL, sctp_sk(sk));
465 if (asoc && (asoc->param_flags & SPP_PMTUD_ENABLE)) {
David S. Miller02f3d4c2012-07-16 03:57:14 -0700466 sctp_assoc_sync_pmtu(sk, asoc);
Sridhar Samudrala503b55f2006-06-17 22:57:28 -0700467 }
468 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000469 dst = dst_clone(tp->dst);
Wei Yongjunff0ac742009-06-28 22:49:37 +0000470 if (!dst)
Sridhar Samudrala503b55f2006-06-17 22:57:28 -0700471 goto no_route;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300472 skb_dst_set(head, dst);
Sridhar Samudrala503b55f2006-06-17 22:57:28 -0700473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 /* Build the SCTP header. */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300475 sh = (struct sctphdr *)skb_push(head, sizeof(struct sctphdr));
476 skb_reset_transport_header(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 sh->source = htons(packet->source_port);
478 sh->dest = htons(packet->destination_port);
479
480 /* From 6.8 Adler-32 Checksum Calculation:
481 * After the packet is constructed (containing the SCTP common
482 * header and one or more control or DATA chunks), the
483 * transmitter shall:
484 *
485 * 1) Fill in the proper Verification Tag in the SCTP common
486 * header and initialize the checksum field to 0's.
487 */
488 sh->vtag = htonl(packet->vtag);
489 sh->checksum = 0;
490
Daniel Borkmannbb333812013-06-28 19:49:40 +0200491 pr_debug("***sctp_transmit_packet***\n");
492
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300493 do {
494 /* Set up convenience variables... */
495 chunk = list_entry(packet->chunk_list.next, struct sctp_chunk, list);
496 pktcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300498 /* Calculate packet size, so it fits in PMTU. Leave
499 * other chunks for the next packets.
500 */
501 if (gso) {
502 pkt_size = packet->overhead;
503 list_for_each_entry(chunk, &packet->chunk_list, list) {
504 int padded = WORD_ROUND(chunk->skb->len);
505
506 if (pkt_size + padded > tp->pathmtu)
507 break;
508 pkt_size += padded;
Neil Hormand8dd1572009-11-23 15:54:00 -0500509 }
Xufeng Zhang6eabca52013-11-25 11:26:57 +0800510
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300511 /* Allocate a new skb. */
512 nskb = alloc_skb(pkt_size + MAX_HEADER, gfp);
513 if (!nskb)
514 goto nomem;
515
516 /* Make sure the outbound skb has enough header
517 * room reserved.
518 */
519 skb_reserve(nskb, packet->overhead + MAX_HEADER);
520 } else {
521 nskb = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300524 /**
525 * 3.2 Chunk Field Descriptions
526 *
527 * The total length of a chunk (including Type, Length and
528 * Value fields) MUST be a multiple of 4 bytes. If the length
529 * of the chunk is not a multiple of 4 bytes, the sender MUST
530 * pad the chunk with all zero bytes and this padding is not
531 * included in the chunk length field. The sender should
532 * never pad with more than 3 bytes.
533 *
534 * [This whole comment explains WORD_ROUND() below.]
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700535 */
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700536
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300537 pkt_size -= packet->overhead;
538 list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
539 list_del_init(&chunk->list);
540 if (sctp_chunk_is_data(chunk)) {
541 /* 6.3.1 C4) When data is in flight and when allowed
542 * by rule C5, a new RTT measurement MUST be made each
543 * round trip. Furthermore, new RTT measurements
544 * SHOULD be made no more than once per round-trip
545 * for a given destination transport address.
546 */
547
548 if (!chunk->resent && !tp->rto_pending) {
549 chunk->rtt_in_progress = 1;
550 tp->rto_pending = 1;
551 }
552
553 has_data = 1;
554 }
555
556 padding = WORD_ROUND(chunk->skb->len) - chunk->skb->len;
557 if (padding)
558 memset(skb_put(chunk->skb, padding), 0, padding);
559
560 /* if this is the auth chunk that we are adding,
561 * store pointer where it will be added and put
562 * the auth into the packet.
563 */
564 if (chunk == packet->auth)
565 auth = skb_tail_pointer(nskb);
566
567 memcpy(skb_put(nskb, chunk->skb->len),
Sridhar Samudrala503b55f2006-06-17 22:57:28 -0700568 chunk->skb->data, chunk->skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300570 pr_debug("*** Chunk:%p[%s] %s 0x%x, length:%d, chunk->skb->len:%d, rtt_in_progress:%d\n",
571 chunk,
572 sctp_cname(SCTP_ST_CHUNK(chunk->chunk_hdr->type)),
573 chunk->has_tsn ? "TSN" : "No TSN",
574 chunk->has_tsn ? ntohl(chunk->subh.data_hdr->tsn) : 0,
575 ntohs(chunk->chunk_hdr->length), chunk->skb->len,
576 chunk->rtt_in_progress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300578 /* If this is a control chunk, this is our last
579 * reference. Free data chunks after they've been
580 * acknowledged or have failed.
581 * Re-queue auth chunks if needed.
582 */
583 pkt_size -= WORD_ROUND(chunk->skb->len);
584
Marcelo Ricardo Leitnerf1533cc2016-07-07 09:39:29 -0300585 if (!sctp_chunk_is_data(chunk) && chunk != packet->auth)
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300586 sctp_chunk_free(chunk);
587
588 if (!pkt_size)
589 break;
590 }
591
592 /* SCTP-AUTH, Section 6.2
593 * The sender MUST calculate the MAC as described in RFC2104 [2]
594 * using the hash function H as described by the MAC Identifier and
595 * the shared association key K based on the endpoint pair shared key
596 * described by the shared key identifier. The 'data' used for the
597 * computation of the AUTH-chunk is given by the AUTH chunk with its
598 * HMAC field set to zero (as shown in Figure 6) followed by all
599 * chunks that are placed after the AUTH chunk in the SCTP packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300601 if (auth)
602 sctp_auth_calculate_hmac(asoc, nskb,
603 (struct sctp_auth_chunk *)auth,
604 gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Marcelo Ricardo Leitnerf1533cc2016-07-07 09:39:29 -0300606 if (packet->auth) {
607 if (!list_empty(&packet->chunk_list)) {
608 /* We will generate more packets, so re-queue
609 * auth chunk.
610 */
611 list_add(&chunk->list, &packet->chunk_list);
612 } else {
613 sctp_chunk_free(packet->auth);
614 packet->auth = NULL;
615 }
616 }
617
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300618 if (!gso)
619 break;
620
621 if (skb_gro_receive(&head, nskb))
622 goto nomem;
623 nskb = NULL;
624 if (WARN_ON_ONCE(skb_shinfo(head)->gso_segs >=
625 sk->sk_gso_max_segs))
626 goto nomem;
627 } while (!list_empty(&packet->chunk_list));
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700628
629 /* 2) Calculate the Adler-32 checksum of the whole packet,
630 * including the SCTP common header and all the
631 * chunks.
632 *
633 * Note: Adler-32 is no longer applicable, as has been replaced
634 * by CRC32-C as described in <draft-ietf-tsvwg-sctpcsum-02.txt>.
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300635 *
636 * If it's a GSO packet, it's postponed to sctp_skb_segment.
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700637 */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300638 if (!sctp_checksum_disable || gso) {
639 if (!gso && (!(dst->dev->features & NETIF_F_SCTP_CRC) ||
640 dst_xfrm(dst) || packet->ipfragok)) {
641 sh->checksum = sctp_compute_cksum(head, 0);
Michał Mirosławb73c43f2011-07-13 14:10:29 +0000642 } else {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300643 /* no need to seed pseudo checksum for SCTP */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300644 head->ip_summed = CHECKSUM_PARTIAL;
645 head->csum_start = skb_transport_header(head) - head->head;
646 head->csum_offset = offsetof(struct sctphdr, checksum);
Jesse Brandeburg8dc92f72009-04-27 22:35:52 +0000647 }
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /* IP layer ECN support
651 * From RFC 2481
652 * "The ECN-Capable Transport (ECT) bit would be set by the
653 * data sender to indicate that the end-points of the
654 * transport protocol are ECN-capable."
655 *
656 * Now setting the ECT bit all the time, as it should not cause
657 * any problems protocol-wise even if our peer ignores it.
658 *
659 * Note: The works for IPv6 layer checks this bit too later
660 * in transmission. See IP6_ECN_flow_xmit().
661 */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300662 tp->af_specific->ecn_capable(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 /* Set up the IP options. */
665 /* BUG: not implemented
666 * For v4 this all lives somewhere in sk->sk_opt...
667 */
668
669 /* Dump that on IP! */
Michele Baldessari196d6752012-12-01 04:49:42 +0000670 if (asoc) {
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300671 asoc->stats.opackets += pktcount;
Michele Baldessari196d6752012-12-01 04:49:42 +0000672 if (asoc->peer.last_sent_to != tp)
673 /* Considering the multiple CPU scenario, this is a
674 * "correcter" place for last_sent_to. --xguo
675 */
676 asoc->peer.last_sent_to = tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678
679 if (has_data) {
680 struct timer_list *timer;
681 unsigned long timeout;
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 /* Restart the AUTOCLOSE timer when sending data. */
Neil Horman9f70f462013-12-10 06:48:15 -0500684 if (sctp_state(asoc, ESTABLISHED) &&
685 asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 timer = &asoc->timers[SCTP_EVENT_TIMEOUT_AUTOCLOSE];
687 timeout = asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE];
688
689 if (!mod_timer(timer, jiffies + timeout))
690 sctp_association_hold(asoc);
691 }
692 }
693
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300694 pr_debug("***sctp_transmit_packet*** skb->len:%d\n", head->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300696 if (gso) {
697 /* Cleanup our debris for IP stacks */
698 memset(head->cb, 0, max(sizeof(struct inet_skb_parm),
699 sizeof(struct inet6_skb_parm)));
700
701 skb_shinfo(head)->gso_segs = pktcount;
702 skb_shinfo(head)->gso_size = GSO_BY_FRAGS;
703
704 /* We have to refresh this in case we are xmiting to
705 * more than one transport at a time
706 */
707 rcu_read_lock();
708 if (__sk_dst_get(sk) != tp->dst) {
709 dst_hold(tp->dst);
710 sk_setup_caps(sk, tp->dst);
711 }
712 rcu_read_unlock();
713 }
714 head->ignore_df = packet->ipfragok;
715 tp->af_specific->sctp_xmit(head, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717out:
Wei Yongjund521c082009-09-02 13:05:33 +0800718 sctp_packet_reset(packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return err;
720no_route:
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300721 kfree_skb(head);
722 if (nskb != head)
723 kfree_skb(nskb);
Alexander Sverdlin29c4afc2015-06-29 10:41:03 +0200724
725 if (asoc)
726 IP_INC_STATS(sock_net(asoc->base.sk), IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 /* FIXME: Returning the 'err' will effect all the associations
729 * associated with a socket, although only one of the paths of the
730 * association is unreachable.
731 * The real failure of a transport or association can be passed on
732 * to the user via notifications. So setting this error may not be
733 * required.
734 */
735 /* err = -EHOSTUNREACH; */
736err:
737 /* Control chunks are unreliable so just drop them. DATA chunks
738 * will get resent or dropped later.
739 */
740
David S. Miller79af02c2005-07-08 21:47:49 -0700741 list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
742 list_del_init(&chunk->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (!sctp_chunk_is_data(chunk))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900744 sctp_chunk_free(chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746 goto out;
747nomem:
Marcelo Ricardo Leitnerf1533cc2016-07-07 09:39:29 -0300748 if (packet->auth && list_empty(&packet->auth->list))
749 sctp_chunk_free(packet->auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 err = -ENOMEM;
751 goto err;
752}
753
754/********************************************************************
755 * 2nd Level Abstractions
756 ********************************************************************/
757
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400758/* This private function check to see if a chunk can be added */
759static sctp_xmit_t sctp_packet_can_append_data(struct sctp_packet *packet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 struct sctp_chunk *chunk)
761{
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400762 size_t datasize, rwnd, inflight, flight_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 struct sctp_transport *transport = packet->transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 struct sctp_association *asoc = transport->asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 struct sctp_outq *q = &asoc->outqueue;
766
767 /* RFC 2960 6.1 Transmission of DATA Chunks
768 *
769 * A) At any given time, the data sender MUST NOT transmit new data to
770 * any destination transport address if its peer's rwnd indicates
771 * that the peer has no buffer space (i.e. rwnd is 0, see Section
772 * 6.2.1). However, regardless of the value of rwnd (including if it
773 * is 0), the data sender can always have one DATA chunk in flight to
774 * the receiver if allowed by cwnd (see rule B below). This rule
775 * allows the sender to probe for a change in rwnd that the sender
776 * missed due to the SACK having been lost in transit from the data
777 * receiver to the data sender.
778 */
779
780 rwnd = asoc->peer.rwnd;
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400781 inflight = q->outstanding_bytes;
782 flight_size = transport->flight_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 datasize = sctp_data_size(chunk);
785
David Laight723189f2014-07-22 08:59:08 +0000786 if (datasize > rwnd && inflight > 0)
787 /* We have (at least) one data chunk in flight,
788 * so we can't fall back to rule 6.1 B).
789 */
790 return SCTP_XMIT_RWND_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /* RFC 2960 6.1 Transmission of DATA Chunks
793 *
794 * B) At any given time, the sender MUST NOT transmit new data
795 * to a given transport address if it has cwnd or more bytes
796 * of data outstanding to that transport address.
797 */
798 /* RFC 7.2.4 & the Implementers Guide 2.8.
799 *
800 * 3) ...
801 * When a Fast Retransmit is being performed the sender SHOULD
802 * ignore the value of cwnd and SHOULD NOT delay retransmission.
803 */
David Laight723189f2014-07-22 08:59:08 +0000804 if (chunk->fast_retransmit != SCTP_NEED_FRTX &&
805 flight_size >= transport->cwnd)
806 return SCTP_XMIT_RWND_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /* Nagle's algorithm to solve small-packet problem:
809 * Inhibit the sending of new chunks when new outgoing data arrives
810 * if any previously transmitted data on the connection remains
811 * unacknowledged.
812 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
David Laight723189f2014-07-22 08:59:08 +0000814 if (sctp_sk(asoc->base.sk)->nodelay)
815 /* Nagle disabled */
816 return SCTP_XMIT_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
David Laight723189f2014-07-22 08:59:08 +0000818 if (!sctp_packet_empty(packet))
819 /* Append to packet */
820 return SCTP_XMIT_OK;
821
822 if (inflight == 0)
823 /* Nothing unacked */
824 return SCTP_XMIT_OK;
825
826 if (!sctp_state(asoc, ESTABLISHED))
827 return SCTP_XMIT_OK;
828
829 /* Check whether this chunk and all the rest of pending data will fit
830 * or delay in hopes of bundling a full sized packet.
831 */
Marcelo Ricardo Leitnere43569e2016-04-01 14:05:48 -0300832 if (chunk->skb->len + q->out_qlen >
833 transport->pathmtu - packet->overhead - sizeof(sctp_data_chunk_t) - 4)
David Laight723189f2014-07-22 08:59:08 +0000834 /* Enough data queued to fill a packet */
835 return SCTP_XMIT_OK;
836
837 /* Don't delay large message writes that may have been fragmented */
838 if (!chunk->msg->can_delay)
839 return SCTP_XMIT_OK;
840
841 /* Defer until all data acked or packet full */
David Laight526cbef2014-07-22 08:59:14 +0000842 return SCTP_XMIT_DELAY;
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400843}
844
845/* This private function does management things when adding DATA chunk */
846static void sctp_packet_append_data(struct sctp_packet *packet,
847 struct sctp_chunk *chunk)
848{
849 struct sctp_transport *transport = packet->transport;
850 size_t datasize = sctp_data_size(chunk);
851 struct sctp_association *asoc = transport->asoc;
852 u32 rwnd = asoc->peer.rwnd;
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /* Keep track of how many bytes are in flight over this transport. */
855 transport->flight_size += datasize;
856
857 /* Keep track of how many bytes are in flight to the receiver. */
858 asoc->outqueue.outstanding_bytes += datasize;
859
Thomas Grafa76c0ad2011-12-19 04:11:40 +0000860 /* Update our view of the receiver's rwnd. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (datasize < rwnd)
862 rwnd -= datasize;
863 else
864 rwnd = 0;
865
866 asoc->peer.rwnd = rwnd;
867 /* Has been accepted for transmission. */
868 if (!asoc->peer.prsctp_capable)
869 chunk->msg->can_abandon = 0;
Neil Hormand8dd1572009-11-23 15:54:00 -0500870 sctp_chunk_assign_tsn(chunk);
871 sctp_chunk_assign_ssn(chunk);
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400872}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400874static sctp_xmit_t sctp_packet_will_fit(struct sctp_packet *packet,
875 struct sctp_chunk *chunk,
876 u16 chunk_len)
877{
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300878 size_t psize, pmtu;
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400879 sctp_xmit_t retval = SCTP_XMIT_OK;
880
881 psize = packet->size;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300882 if (packet->transport->asoc)
883 pmtu = packet->transport->asoc->pathmtu;
884 else
885 pmtu = packet->transport->pathmtu;
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400886
887 /* Decide if we need to fragment or resubmit later. */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300888 if (psize + chunk_len > pmtu) {
889 /* It's OK to fragment at IP level if any one of the following
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400890 * is true:
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300891 * 1. The packet is empty (meaning this chunk is greater
892 * the MTU)
893 * 2. The packet doesn't have any data in it yet and data
894 * requires authentication.
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400895 */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300896 if (sctp_packet_empty(packet) ||
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400897 (!packet->has_data && chunk->auth)) {
898 /* We no longer do re-fragmentation.
899 * Just fragment at the IP layer, if we
900 * actually hit this condition
901 */
902 packet->ipfragok = 1;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300903 goto out;
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400904 }
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300905
906 /* It is also okay to fragment if the chunk we are
907 * adding is a control chunk, but only if current packet
908 * is not a GSO one otherwise it causes fragmentation of
909 * a large frame. So in this case we allow the
910 * fragmentation by forcing it to be in a new packet.
911 */
912 if (!sctp_chunk_is_data(chunk) && packet->has_data)
913 retval = SCTP_XMIT_PMTU_FULL;
914
915 if (psize + chunk_len > packet->max_size)
916 /* Hit GSO/PMTU limit, gotta flush */
917 retval = SCTP_XMIT_PMTU_FULL;
918
919 if (!packet->transport->burst_limited &&
920 psize + chunk_len > (packet->transport->cwnd >> 1))
921 /* Do not allow a single GSO packet to use more
922 * than half of cwnd.
923 */
924 retval = SCTP_XMIT_PMTU_FULL;
925
926 if (packet->transport->burst_limited &&
927 psize + chunk_len > (packet->transport->burst_limited >> 1))
928 /* Do not allow a single GSO packet to use more
929 * than half of original cwnd.
930 */
931 retval = SCTP_XMIT_PMTU_FULL;
932 /* Otherwise it will fit in the GSO packet */
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400933 }
934
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300935out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return retval;
937}