blob: f5320a87341e160d46b1160edf4c38b569e7e79b [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
David S. Miller3b55a532016-06-03 22:53:26 -0700184 pr_debug("%s: packet:%p size:%Zu chunk:%p size:%d\n", __func__,
Marcelo Ricardo Leitner942b3232016-06-02 15:05:44 -0300185 packet, packet->size, chunk, chunk->skb ? chunk->skb->len : -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 switch ((retval = (sctp_packet_append_chunk(packet, chunk)))) {
188 case SCTP_XMIT_PMTU_FULL:
189 if (!packet->has_cookie_echo) {
Xin Long64519442016-09-14 02:04:21 +0800190 int error = 0;
191
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300192 error = sctp_packet_transmit(packet, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (error < 0)
194 chunk->skb->sk->sk_err = -error;
195
196 /* If we have an empty packet, then we can NOT ever
197 * return PMTU_FULL.
198 */
Vlad Yasevich2e3216c2008-06-19 16:08:18 -0700199 if (!one_packet)
200 retval = sctp_packet_append_chunk(packet,
201 chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203 break;
204
205 case SCTP_XMIT_RWND_FULL:
206 case SCTP_XMIT_OK:
David Laight526cbef2014-07-22 08:59:14 +0000207 case SCTP_XMIT_DELAY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 return retval;
212}
213
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700214/* Try to bundle an auth chunk into the packet. */
215static sctp_xmit_t sctp_packet_bundle_auth(struct sctp_packet *pkt,
216 struct sctp_chunk *chunk)
217{
218 struct sctp_association *asoc = pkt->transport->asoc;
219 struct sctp_chunk *auth;
220 sctp_xmit_t retval = SCTP_XMIT_OK;
221
222 /* if we don't have an association, we can't do authentication */
223 if (!asoc)
224 return retval;
225
226 /* See if this is an auth chunk we are bundling or if
227 * auth is already bundled.
228 */
Vlad Yasevich4007cc82009-09-04 18:21:00 -0400229 if (chunk->chunk_hdr->type == SCTP_CID_AUTH || pkt->has_auth)
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700230 return retval;
231
232 /* if the peer did not request this chunk to be authenticated,
233 * don't do it
234 */
235 if (!chunk->auth)
236 return retval;
237
238 auth = sctp_make_auth(asoc);
239 if (!auth)
240 return retval;
241
Neil Hormaned106272012-07-02 09:59:24 +0000242 retval = __sctp_packet_append_chunk(pkt, auth);
243
244 if (retval != SCTP_XMIT_OK)
245 sctp_chunk_free(auth);
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700246
247 return retval;
248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/* Try to bundle a SACK with the packet. */
251static sctp_xmit_t sctp_packet_bundle_sack(struct sctp_packet *pkt,
252 struct sctp_chunk *chunk)
253{
254 sctp_xmit_t retval = SCTP_XMIT_OK;
255
256 /* If sending DATA and haven't aleady bundled a SACK, try to
257 * bundle one in to the packet.
258 */
259 if (sctp_chunk_is_data(chunk) && !pkt->has_sack &&
260 !pkt->has_cookie_echo) {
261 struct sctp_association *asoc;
Doug Grahamaf87b822009-07-29 12:05:57 -0400262 struct timer_list *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 asoc = pkt->transport->asoc;
Doug Grahamaf87b822009-07-29 12:05:57 -0400264 timer = &asoc->timers[SCTP_EVENT_TIMEOUT_SACK];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Doug Grahamaf87b822009-07-29 12:05:57 -0400266 /* If the SACK timer is running, we have a pending SACK */
267 if (timer_pending(timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct sctp_chunk *sack;
Neil Horman42448542012-06-30 03:04:26 +0000269
270 if (pkt->transport->sack_generation !=
271 pkt->transport->asoc->peer.sack_generation)
272 return retval;
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 asoc->a_rwnd = asoc->rwnd;
275 sack = sctp_make_sack(asoc);
276 if (sack) {
Neil Hormaned106272012-07-02 09:59:24 +0000277 retval = __sctp_packet_append_chunk(pkt, sack);
278 if (retval != SCTP_XMIT_OK) {
279 sctp_chunk_free(sack);
280 goto out;
281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 asoc->peer.sack_needed = 0;
Doug Grahamaf87b822009-07-29 12:05:57 -0400283 if (del_timer(timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 sctp_association_put(asoc);
285 }
286 }
287 }
Neil Hormaned106272012-07-02 09:59:24 +0000288out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return retval;
290}
291
Neil Hormaned106272012-07-02 09:59:24 +0000292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/* Append a chunk to the offered packet reporting back any inability to do
294 * so.
295 */
Neil Hormaned106272012-07-02 09:59:24 +0000296static sctp_xmit_t __sctp_packet_append_chunk(struct sctp_packet *packet,
297 struct sctp_chunk *chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 sctp_xmit_t retval = SCTP_XMIT_OK;
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300300 __u16 chunk_len = SCTP_PAD4(ntohs(chunk->chunk_hdr->length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400302 /* Check to see if this chunk will fit into the packet */
303 retval = sctp_packet_will_fit(packet, chunk, chunk_len);
304 if (retval != SCTP_XMIT_OK)
305 goto finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400307 /* We believe that this chunk is OK to add to the packet */
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700308 switch (chunk->chunk_hdr->type) {
wangweidongf7010e62013-12-23 12:16:52 +0800309 case SCTP_CID_DATA:
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400310 /* Account for the data being in the packet */
311 sctp_packet_append_data(packet, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /* Disallow SACK bundling after DATA. */
313 packet->has_sack = 1;
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700314 /* Disallow AUTH bundling after DATA */
315 packet->has_auth = 1;
316 /* Let it be knows that packet has DATA in it */
317 packet->has_data = 1;
Vlad Yasevich759af002009-01-22 14:53:01 -0800318 /* timestamp the chunk for rtx purposes */
319 chunk->sent_at = jiffies;
Xin Longa6c2f792016-07-09 19:47:43 +0800320 /* Mainly used for prsctp RTX policy */
321 chunk->sent_count++;
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700322 break;
wangweidongf7010e62013-12-23 12:16:52 +0800323 case SCTP_CID_COOKIE_ECHO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 packet->has_cookie_echo = 1;
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700325 break;
326
wangweidongf7010e62013-12-23 12:16:52 +0800327 case SCTP_CID_SACK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 packet->has_sack = 1;
Michele Baldessari196d6752012-12-01 04:49:42 +0000329 if (chunk->asoc)
330 chunk->asoc->stats.osacks++;
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700331 break;
332
wangweidongf7010e62013-12-23 12:16:52 +0800333 case SCTP_CID_AUTH:
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700334 packet->has_auth = 1;
335 packet->auth = chunk;
336 break;
337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /* It is OK to send this chunk. */
David S. Miller79af02c2005-07-08 21:47:49 -0700340 list_add_tail(&chunk->list, &packet->chunk_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 packet->size += chunk_len;
342 chunk->transport = packet->transport;
343finish:
344 return retval;
345}
346
Neil Hormaned106272012-07-02 09:59:24 +0000347/* Append a chunk to the offered packet reporting back any inability to do
348 * so.
349 */
350sctp_xmit_t sctp_packet_append_chunk(struct sctp_packet *packet,
351 struct sctp_chunk *chunk)
352{
353 sctp_xmit_t retval = SCTP_XMIT_OK;
354
Daniel Borkmannbb333812013-06-28 19:49:40 +0200355 pr_debug("%s: packet:%p chunk:%p\n", __func__, packet, chunk);
Neil Hormaned106272012-07-02 09:59:24 +0000356
357 /* Data chunks are special. Before seeing what else we can
358 * bundle into this packet, check to see if we are allowed to
359 * send this DATA.
360 */
361 if (sctp_chunk_is_data(chunk)) {
362 retval = sctp_packet_can_append_data(packet, chunk);
363 if (retval != SCTP_XMIT_OK)
364 goto finish;
365 }
366
367 /* Try to bundle AUTH chunk */
368 retval = sctp_packet_bundle_auth(packet, chunk);
369 if (retval != SCTP_XMIT_OK)
370 goto finish;
371
372 /* Try to bundle SACK chunk */
373 retval = sctp_packet_bundle_sack(packet, chunk);
374 if (retval != SCTP_XMIT_OK)
375 goto finish;
376
377 retval = __sctp_packet_append_chunk(packet, chunk);
378
379finish:
380 return retval;
381}
382
Thomas Graf4c3a5bd2012-09-03 04:27:42 +0000383static void sctp_packet_release_owner(struct sk_buff *skb)
384{
385 sk_free(skb->sk);
386}
387
388static void sctp_packet_set_owner_w(struct sk_buff *skb, struct sock *sk)
389{
390 skb_orphan(skb);
391 skb->sk = sk;
392 skb->destructor = sctp_packet_release_owner;
393
394 /*
395 * The data chunks have already been accounted for in sctp_sendmsg(),
396 * therefore only reserve a single byte to keep socket around until
397 * the packet has been transmitted.
398 */
399 atomic_inc(&sk->sk_wmem_alloc);
400}
401
Xin Longe4ff9522016-11-01 00:49:41 +0800402static int sctp_packet_pack(struct sctp_packet *packet,
403 struct sk_buff *head, int gso, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 struct sctp_transport *tp = packet->transport;
Xin Longe4ff9522016-11-01 00:49:41 +0800406 struct sctp_auth_chunk *auth = NULL;
David S. Miller79af02c2005-07-08 21:47:49 -0700407 struct sctp_chunk *chunk, *tmp;
Xin Longe4ff9522016-11-01 00:49:41 +0800408 int pkt_count = 0, pkt_size;
409 struct sock *sk = head->sk;
410 struct sk_buff *nskb;
Xin Longecc515d2016-10-24 01:01:09 +0800411 int auth_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300413 if (gso) {
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300414 skb_shinfo(head)->gso_type = sk->sk_gso_type;
Xin Longe4ff9522016-11-01 00:49:41 +0800415 NAPI_GRO_CB(head)->last = head;
416 } else {
417 nskb = head;
418 pkt_size = packet->size;
419 goto merge;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300422 do {
Xin Longe4ff9522016-11-01 00:49:41 +0800423 /* calculate the pkt_size and alloc nskb */
424 pkt_size = packet->overhead;
425 list_for_each_entry_safe(chunk, tmp, &packet->chunk_list,
426 list) {
427 int padded = SCTP_PAD4(chunk->skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Xin Longe4ff9522016-11-01 00:49:41 +0800429 if (chunk == packet->auth)
430 auth_len = padded;
431 else if (auth_len + padded + packet->overhead >
432 tp->pathmtu)
433 return 0;
434 else if (pkt_size + padded > tp->pathmtu)
435 break;
436 pkt_size += padded;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
Xin Longe4ff9522016-11-01 00:49:41 +0800438 nskb = alloc_skb(pkt_size + MAX_HEADER, gfp);
439 if (!nskb)
440 return 0;
441 skb_reserve(nskb, packet->overhead + MAX_HEADER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Xin Longe4ff9522016-11-01 00:49:41 +0800443merge:
444 /* merge chunks into nskb and append nskb into head list */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300445 pkt_size -= packet->overhead;
446 list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
Xin Longe4ff9522016-11-01 00:49:41 +0800447 int padding;
448
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300449 list_del_init(&chunk->list);
450 if (sctp_chunk_is_data(chunk)) {
Xin Longcc6ac9b2016-10-08 11:36:05 +0800451 if (!sctp_chunk_retransmitted(chunk) &&
452 !tp->rto_pending) {
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300453 chunk->rtt_in_progress = 1;
454 tp->rto_pending = 1;
455 }
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300456 }
457
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300458 padding = SCTP_PAD4(chunk->skb->len) - chunk->skb->len;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300459 if (padding)
460 memset(skb_put(chunk->skb, padding), 0, padding);
461
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300462 if (chunk == packet->auth)
Xin Longe4ff9522016-11-01 00:49:41 +0800463 auth = (struct sctp_auth_chunk *)
464 skb_tail_pointer(nskb);
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300465
Xin Longe4ff9522016-11-01 00:49:41 +0800466 memcpy(skb_put(nskb, chunk->skb->len), chunk->skb->data,
467 chunk->skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300469 pr_debug("*** Chunk:%p[%s] %s 0x%x, length:%d, chunk->skb->len:%d, rtt_in_progress:%d\n",
470 chunk,
471 sctp_cname(SCTP_ST_CHUNK(chunk->chunk_hdr->type)),
472 chunk->has_tsn ? "TSN" : "No TSN",
473 chunk->has_tsn ? ntohl(chunk->subh.data_hdr->tsn) : 0,
474 ntohs(chunk->chunk_hdr->length), chunk->skb->len,
475 chunk->rtt_in_progress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300477 pkt_size -= SCTP_PAD4(chunk->skb->len);
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300478
Marcelo Ricardo Leitnerf1533cc2016-07-07 09:39:29 -0300479 if (!sctp_chunk_is_data(chunk) && chunk != packet->auth)
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300480 sctp_chunk_free(chunk);
481
482 if (!pkt_size)
483 break;
484 }
485
Xin Longe4ff9522016-11-01 00:49:41 +0800486 if (auth) {
487 sctp_auth_calculate_hmac(tp->asoc, nskb, auth, gfp);
488 /* free auth if no more chunks, or add it back */
489 if (list_empty(&packet->chunk_list))
490 sctp_chunk_free(packet->auth);
491 else
Xin Long1aa25ec2016-07-30 13:58:35 +0800492 list_add(&packet->auth->list,
493 &packet->chunk_list);
Xin Longe4ff9522016-11-01 00:49:41 +0800494 }
495
496 if (gso) {
497 if (skb_gro_receive(&head, nskb)) {
498 kfree_skb(nskb);
499 return 0;
Marcelo Ricardo Leitnerf1533cc2016-07-07 09:39:29 -0300500 }
Xin Longe4ff9522016-11-01 00:49:41 +0800501 if (WARN_ON_ONCE(skb_shinfo(head)->gso_segs >=
502 sk->sk_gso_max_segs))
503 return 0;
Marcelo Ricardo Leitnerf1533cc2016-07-07 09:39:29 -0300504 }
505
Xin Longe4ff9522016-11-01 00:49:41 +0800506 pkt_count++;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300507 } while (!list_empty(&packet->chunk_list));
Vlad Yasevich4cd57c82007-09-16 19:32:45 -0700508
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300509 if (gso) {
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300510 memset(head->cb, 0, max(sizeof(struct inet_skb_parm),
511 sizeof(struct inet6_skb_parm)));
Xin Longe4ff9522016-11-01 00:49:41 +0800512 skb_shinfo(head)->gso_segs = pkt_count;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300513 skb_shinfo(head)->gso_size = GSO_BY_FRAGS;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300514 rcu_read_lock();
Xin Longe4ff9522016-11-01 00:49:41 +0800515 if (skb_dst(head) != tp->dst) {
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300516 dst_hold(tp->dst);
517 sk_setup_caps(sk, tp->dst);
518 }
519 rcu_read_unlock();
Xin Longe4ff9522016-11-01 00:49:41 +0800520 goto chksum;
521 }
522
523 if (sctp_checksum_disable)
524 return 1;
525
526 if (!(skb_dst(head)->dev->features & NETIF_F_SCTP_CRC) ||
527 dst_xfrm(skb_dst(head)) || packet->ipfragok) {
528 struct sctphdr *sh =
529 (struct sctphdr *)skb_transport_header(head);
530
531 sh->checksum = sctp_compute_cksum(head, 0);
532 } else {
533chksum:
534 head->ip_summed = CHECKSUM_PARTIAL;
535 head->csum_start = skb_transport_header(head) - head->head;
536 head->csum_offset = offsetof(struct sctphdr, checksum);
537 }
538
539 return pkt_count;
540}
541
542/* All packets are sent to the network through this function from
543 * sctp_outq_tail().
544 *
545 * The return value is always 0 for now.
546 */
547int sctp_packet_transmit(struct sctp_packet *packet, gfp_t gfp)
548{
549 struct sctp_transport *tp = packet->transport;
550 struct sctp_association *asoc = tp->asoc;
551 struct sctp_chunk *chunk, *tmp;
552 int pkt_count, gso = 0;
553 struct dst_entry *dst;
554 struct sk_buff *head;
555 struct sctphdr *sh;
556 struct sock *sk;
557
558 pr_debug("%s: packet:%p\n", __func__, packet);
559 if (list_empty(&packet->chunk_list))
560 return 0;
561 chunk = list_entry(packet->chunk_list.next, struct sctp_chunk, list);
562 sk = chunk->skb->sk;
563
564 /* check gso */
565 if (packet->size > tp->pathmtu && !packet->ipfragok) {
566 if (!sk_can_gso(sk)) {
567 pr_err_once("Trying to GSO but underlying device doesn't support it.");
568 goto out;
569 }
570 gso = 1;
571 }
572
573 /* alloc head skb */
574 head = alloc_skb((gso ? packet->overhead : packet->size) +
575 MAX_HEADER, gfp);
576 if (!head)
577 goto out;
578 skb_reserve(head, packet->overhead + MAX_HEADER);
579 sctp_packet_set_owner_w(head, sk);
580
581 /* set sctp header */
582 sh = (struct sctphdr *)skb_push(head, sizeof(struct sctphdr));
583 skb_reset_transport_header(head);
584 sh->source = htons(packet->source_port);
585 sh->dest = htons(packet->destination_port);
586 sh->vtag = htonl(packet->vtag);
587 sh->checksum = 0;
588
589 /* update dst if in need */
590 if (!sctp_transport_dst_check(tp)) {
591 sctp_transport_route(tp, NULL, sctp_sk(sk));
592 if (asoc && asoc->param_flags & SPP_PMTUD_ENABLE)
593 sctp_assoc_sync_pmtu(sk, asoc);
594 }
595 dst = dst_clone(tp->dst);
596 if (!dst) {
597 IP_INC_STATS(sock_net(sk), IPSTATS_MIB_OUTNOROUTES);
598 kfree_skb(head);
599 goto out;
600 }
601 skb_dst_set(head, dst);
602
603 /* pack up chunks */
604 pkt_count = sctp_packet_pack(packet, head, gso, gfp);
605 if (!pkt_count) {
606 kfree_skb(head);
607 goto out;
608 }
609 pr_debug("***sctp_transmit_packet*** skb->len:%d\n", head->len);
610
611 /* start autoclose timer */
612 if (packet->has_data && sctp_state(asoc, ESTABLISHED) &&
613 asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE]) {
614 struct timer_list *timer =
615 &asoc->timers[SCTP_EVENT_TIMEOUT_AUTOCLOSE];
616 unsigned long timeout =
617 asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE];
618
619 if (!mod_timer(timer, jiffies + timeout))
620 sctp_association_hold(asoc);
621 }
622
623 /* sctp xmit */
624 tp->af_specific->ecn_capable(sk);
625 if (asoc) {
626 asoc->stats.opackets += pkt_count;
627 if (asoc->peer.last_sent_to != tp)
628 asoc->peer.last_sent_to = tp;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300629 }
630 head->ignore_df = packet->ipfragok;
631 tp->af_specific->sctp_xmit(head, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Xin Longe4ff9522016-11-01 00:49:41 +0800633out:
David S. Miller79af02c2005-07-08 21:47:49 -0700634 list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
635 list_del_init(&chunk->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (!sctp_chunk_is_data(chunk))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900637 sctp_chunk_free(chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
Xin Long41001fa2016-09-14 02:04:23 +0800639 sctp_packet_reset(packet);
Xin Longe4ff9522016-11-01 00:49:41 +0800640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
643/********************************************************************
644 * 2nd Level Abstractions
645 ********************************************************************/
646
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400647/* This private function check to see if a chunk can be added */
648static sctp_xmit_t sctp_packet_can_append_data(struct sctp_packet *packet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 struct sctp_chunk *chunk)
650{
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400651 size_t datasize, rwnd, inflight, flight_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 struct sctp_transport *transport = packet->transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 struct sctp_association *asoc = transport->asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 struct sctp_outq *q = &asoc->outqueue;
655
656 /* RFC 2960 6.1 Transmission of DATA Chunks
657 *
658 * A) At any given time, the data sender MUST NOT transmit new data to
659 * any destination transport address if its peer's rwnd indicates
660 * that the peer has no buffer space (i.e. rwnd is 0, see Section
661 * 6.2.1). However, regardless of the value of rwnd (including if it
662 * is 0), the data sender can always have one DATA chunk in flight to
663 * the receiver if allowed by cwnd (see rule B below). This rule
664 * allows the sender to probe for a change in rwnd that the sender
665 * missed due to the SACK having been lost in transit from the data
666 * receiver to the data sender.
667 */
668
669 rwnd = asoc->peer.rwnd;
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400670 inflight = q->outstanding_bytes;
671 flight_size = transport->flight_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 datasize = sctp_data_size(chunk);
674
David Laight723189f2014-07-22 08:59:08 +0000675 if (datasize > rwnd && inflight > 0)
676 /* We have (at least) one data chunk in flight,
677 * so we can't fall back to rule 6.1 B).
678 */
679 return SCTP_XMIT_RWND_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 /* RFC 2960 6.1 Transmission of DATA Chunks
682 *
683 * B) At any given time, the sender MUST NOT transmit new data
684 * to a given transport address if it has cwnd or more bytes
685 * of data outstanding to that transport address.
686 */
687 /* RFC 7.2.4 & the Implementers Guide 2.8.
688 *
689 * 3) ...
690 * When a Fast Retransmit is being performed the sender SHOULD
691 * ignore the value of cwnd and SHOULD NOT delay retransmission.
692 */
David Laight723189f2014-07-22 08:59:08 +0000693 if (chunk->fast_retransmit != SCTP_NEED_FRTX &&
694 flight_size >= transport->cwnd)
695 return SCTP_XMIT_RWND_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 /* Nagle's algorithm to solve small-packet problem:
698 * Inhibit the sending of new chunks when new outgoing data arrives
699 * if any previously transmitted data on the connection remains
700 * unacknowledged.
701 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
David Laight723189f2014-07-22 08:59:08 +0000703 if (sctp_sk(asoc->base.sk)->nodelay)
704 /* Nagle disabled */
705 return SCTP_XMIT_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
David Laight723189f2014-07-22 08:59:08 +0000707 if (!sctp_packet_empty(packet))
708 /* Append to packet */
709 return SCTP_XMIT_OK;
710
711 if (inflight == 0)
712 /* Nothing unacked */
713 return SCTP_XMIT_OK;
714
715 if (!sctp_state(asoc, ESTABLISHED))
716 return SCTP_XMIT_OK;
717
718 /* Check whether this chunk and all the rest of pending data will fit
719 * or delay in hopes of bundling a full sized packet.
720 */
Marcelo Ricardo Leitnere43569e2016-04-01 14:05:48 -0300721 if (chunk->skb->len + q->out_qlen >
722 transport->pathmtu - packet->overhead - sizeof(sctp_data_chunk_t) - 4)
David Laight723189f2014-07-22 08:59:08 +0000723 /* Enough data queued to fill a packet */
724 return SCTP_XMIT_OK;
725
726 /* Don't delay large message writes that may have been fragmented */
727 if (!chunk->msg->can_delay)
728 return SCTP_XMIT_OK;
729
730 /* Defer until all data acked or packet full */
David Laight526cbef2014-07-22 08:59:14 +0000731 return SCTP_XMIT_DELAY;
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400732}
733
734/* This private function does management things when adding DATA chunk */
735static void sctp_packet_append_data(struct sctp_packet *packet,
736 struct sctp_chunk *chunk)
737{
738 struct sctp_transport *transport = packet->transport;
739 size_t datasize = sctp_data_size(chunk);
740 struct sctp_association *asoc = transport->asoc;
741 u32 rwnd = asoc->peer.rwnd;
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /* Keep track of how many bytes are in flight over this transport. */
744 transport->flight_size += datasize;
745
746 /* Keep track of how many bytes are in flight to the receiver. */
747 asoc->outqueue.outstanding_bytes += datasize;
748
Thomas Grafa76c0ad2011-12-19 04:11:40 +0000749 /* Update our view of the receiver's rwnd. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (datasize < rwnd)
751 rwnd -= datasize;
752 else
753 rwnd = 0;
754
755 asoc->peer.rwnd = rwnd;
Neil Hormand8dd1572009-11-23 15:54:00 -0500756 sctp_chunk_assign_tsn(chunk);
757 sctp_chunk_assign_ssn(chunk);
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400758}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400760static sctp_xmit_t sctp_packet_will_fit(struct sctp_packet *packet,
761 struct sctp_chunk *chunk,
762 u16 chunk_len)
763{
Marcelo Ricardo Leitner7303a142016-09-08 17:54:11 +0800764 size_t psize, pmtu, maxsize;
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400765 sctp_xmit_t retval = SCTP_XMIT_OK;
766
767 psize = packet->size;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300768 if (packet->transport->asoc)
769 pmtu = packet->transport->asoc->pathmtu;
770 else
771 pmtu = packet->transport->pathmtu;
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400772
773 /* Decide if we need to fragment or resubmit later. */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300774 if (psize + chunk_len > pmtu) {
775 /* It's OK to fragment at IP level if any one of the following
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400776 * is true:
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300777 * 1. The packet is empty (meaning this chunk is greater
778 * the MTU)
779 * 2. The packet doesn't have any data in it yet and data
780 * requires authentication.
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400781 */
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300782 if (sctp_packet_empty(packet) ||
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400783 (!packet->has_data && chunk->auth)) {
784 /* We no longer do re-fragmentation.
785 * Just fragment at the IP layer, if we
786 * actually hit this condition
787 */
788 packet->ipfragok = 1;
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300789 goto out;
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400790 }
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300791
Marcelo Ricardo Leitner7303a142016-09-08 17:54:11 +0800792 /* Similarly, if this chunk was built before a PMTU
793 * reduction, we have to fragment it at IP level now. So
794 * if the packet already contains something, we need to
795 * flush.
796 */
797 maxsize = pmtu - packet->overhead;
798 if (packet->auth)
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300799 maxsize -= SCTP_PAD4(packet->auth->skb->len);
Marcelo Ricardo Leitner7303a142016-09-08 17:54:11 +0800800 if (chunk_len > maxsize)
801 retval = SCTP_XMIT_PMTU_FULL;
802
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300803 /* It is also okay to fragment if the chunk we are
804 * adding is a control chunk, but only if current packet
805 * is not a GSO one otherwise it causes fragmentation of
806 * a large frame. So in this case we allow the
807 * fragmentation by forcing it to be in a new packet.
808 */
809 if (!sctp_chunk_is_data(chunk) && packet->has_data)
810 retval = SCTP_XMIT_PMTU_FULL;
811
812 if (psize + chunk_len > packet->max_size)
813 /* Hit GSO/PMTU limit, gotta flush */
814 retval = SCTP_XMIT_PMTU_FULL;
815
816 if (!packet->transport->burst_limited &&
817 psize + chunk_len > (packet->transport->cwnd >> 1))
818 /* Do not allow a single GSO packet to use more
819 * than half of cwnd.
820 */
821 retval = SCTP_XMIT_PMTU_FULL;
822
823 if (packet->transport->burst_limited &&
824 psize + chunk_len > (packet->transport->burst_limited >> 1))
825 /* Do not allow a single GSO packet to use more
826 * than half of original cwnd.
827 */
828 retval = SCTP_XMIT_PMTU_FULL;
829 /* Otherwise it will fit in the GSO packet */
Vlad Yaseviche83963b2009-08-07 10:43:07 -0400830 }
831
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -0300832out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return retval;
834}