Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Feb 10-13, 2025
Register
Loading...
v5.9
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/* SCTP kernel implementation
  3 * (C) Copyright IBM Corp. 2001, 2004
  4 * Copyright (c) 1999-2000 Cisco, Inc.
  5 * Copyright (c) 1999-2001 Motorola, Inc.
  6 *
  7 * This file is part of the SCTP kernel implementation
  8 *
  9 * These functions handle output processing.
 10 *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 11 * Please send any bug reports or fixes you make to the
 12 * email address(es):
 13 *    lksctp developers <linux-sctp@vger.kernel.org>
 
 
 
 14 *
 15 * Written or modified by:
 16 *    La Monte H.P. Yarroll <piggy@acm.org>
 17 *    Karl Knutson          <karl@athena.chicago.il.us>
 18 *    Jon Grimm             <jgrimm@austin.ibm.com>
 19 *    Sridhar Samudrala     <sri@us.ibm.com>
 
 
 
 20 */
 21
 22#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 23
 24#include <linux/types.h>
 25#include <linux/kernel.h>
 26#include <linux/wait.h>
 27#include <linux/time.h>
 28#include <linux/ip.h>
 29#include <linux/ipv6.h>
 30#include <linux/init.h>
 31#include <linux/slab.h>
 32#include <net/inet_ecn.h>
 33#include <net/ip.h>
 34#include <net/icmp.h>
 35#include <net/net_namespace.h>
 36
 37#include <linux/socket.h> /* for sa_family_t */
 38#include <net/sock.h>
 39
 40#include <net/sctp/sctp.h>
 41#include <net/sctp/sm.h>
 42#include <net/sctp/checksum.h>
 43
 44/* Forward declarations for private helpers. */
 45static enum sctp_xmit __sctp_packet_append_chunk(struct sctp_packet *packet,
 46						 struct sctp_chunk *chunk);
 47static enum sctp_xmit sctp_packet_can_append_data(struct sctp_packet *packet,
 48						  struct sctp_chunk *chunk);
 49static void sctp_packet_append_data(struct sctp_packet *packet,
 50				    struct sctp_chunk *chunk);
 51static enum sctp_xmit sctp_packet_will_fit(struct sctp_packet *packet,
 52					   struct sctp_chunk *chunk,
 53					   u16 chunk_len);
 54
 55static void sctp_packet_reset(struct sctp_packet *packet)
 56{
 57	/* sctp_packet_transmit() relies on this to reset size to the
 58	 * current overhead after sending packets.
 59	 */
 60	packet->size = packet->overhead;
 61
 62	packet->has_cookie_echo = 0;
 63	packet->has_sack = 0;
 64	packet->has_data = 0;
 65	packet->has_auth = 0;
 66	packet->ipfragok = 0;
 67	packet->auth = NULL;
 68}
 69
 70/* Config a packet.
 71 * This appears to be a followup set of initializations.
 72 */
 73void sctp_packet_config(struct sctp_packet *packet, __u32 vtag,
 74			int ecn_capable)
 75{
 76	struct sctp_transport *tp = packet->transport;
 77	struct sctp_association *asoc = tp->asoc;
 78	struct sctp_sock *sp = NULL;
 79	struct sock *sk;
 80
 81	pr_debug("%s: packet:%p vtag:0x%x\n", __func__, packet, vtag);
 82	packet->vtag = vtag;
 83
 84	/* do the following jobs only once for a flush schedule */
 85	if (!sctp_packet_empty(packet))
 86		return;
 87
 88	/* set packet max_size with pathmtu, then calculate overhead */
 89	packet->max_size = tp->pathmtu;
 90
 91	if (asoc) {
 92		sk = asoc->base.sk;
 93		sp = sctp_sk(sk);
 94	}
 95	packet->overhead = sctp_mtu_payload(sp, 0, 0);
 96	packet->size = packet->overhead;
 97
 98	if (!asoc)
 99		return;
100
101	/* update dst or transport pathmtu if in need */
102	if (!sctp_transport_dst_check(tp)) {
103		sctp_transport_route(tp, NULL, sp);
104		if (asoc->param_flags & SPP_PMTUD_ENABLE)
105			sctp_assoc_sync_pmtu(asoc);
106	} else if (!sctp_transport_pmtu_check(tp)) {
107		if (asoc->param_flags & SPP_PMTUD_ENABLE)
108			sctp_assoc_sync_pmtu(asoc);
109	}
110
111	if (asoc->pmtu_pending) {
112		if (asoc->param_flags & SPP_PMTUD_ENABLE)
113			sctp_assoc_sync_pmtu(asoc);
114		asoc->pmtu_pending = 0;
115	}
116
117	/* If there a is a prepend chunk stick it on the list before
118	 * any other chunks get appended.
119	 */
120	if (ecn_capable) {
121		struct sctp_chunk *chunk = sctp_get_ecne_prepend(asoc);
122
 
 
 
123		if (chunk)
124			sctp_packet_append_chunk(packet, chunk);
125	}
126
127	if (!tp->dst)
128		return;
129
130	/* set packet max_size with gso_max_size if gso is enabled*/
131	rcu_read_lock();
132	if (__sk_dst_get(sk) != tp->dst) {
133		dst_hold(tp->dst);
134		sk_setup_caps(sk, tp->dst);
135	}
136	packet->max_size = sk_can_gso(sk) ? tp->dst->dev->gso_max_size
137					  : asoc->pathmtu;
138	rcu_read_unlock();
139}
140
141/* Initialize the packet structure. */
142void sctp_packet_init(struct sctp_packet *packet,
143		      struct sctp_transport *transport,
144		      __u16 sport, __u16 dport)
145{
146	pr_debug("%s: packet:%p transport:%p\n", __func__, packet, transport);
 
 
 
 
147
148	packet->transport = transport;
149	packet->source_port = sport;
150	packet->destination_port = dport;
151	INIT_LIST_HEAD(&packet->chunk_list);
152	/* The overhead will be calculated by sctp_packet_config() */
153	packet->overhead = 0;
 
 
 
 
 
 
154	sctp_packet_reset(packet);
155	packet->vtag = 0;
 
 
156}
157
158/* Free a packet.  */
159void sctp_packet_free(struct sctp_packet *packet)
160{
161	struct sctp_chunk *chunk, *tmp;
162
163	pr_debug("%s: packet:%p\n", __func__, packet);
164
165	list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
166		list_del_init(&chunk->list);
167		sctp_chunk_free(chunk);
168	}
 
 
 
169}
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 */
178enum sctp_xmit sctp_packet_transmit_chunk(struct sctp_packet *packet,
179					  struct sctp_chunk *chunk,
180					  int one_packet, gfp_t gfp)
181{
182	enum sctp_xmit retval;
 
183
184	pr_debug("%s: packet:%p size:%zu chunk:%p size:%d\n", __func__,
185		 packet, packet->size, chunk, chunk->skb ? chunk->skb->len : -1);
186
187	switch ((retval = (sctp_packet_append_chunk(packet, chunk)))) {
188	case SCTP_XMIT_PMTU_FULL:
189		if (!packet->has_cookie_echo) {
190			int error = 0;
191
192			error = sctp_packet_transmit(packet, gfp);
193			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			 */
199			if (!one_packet)
200				retval = sctp_packet_append_chunk(packet,
201								  chunk);
202		}
203		break;
204
205	case SCTP_XMIT_RWND_FULL:
206	case SCTP_XMIT_OK:
207	case SCTP_XMIT_DELAY:
208		break;
209	}
210
211	return retval;
212}
213
214/* Try to bundle an auth chunk into the packet. */
215static enum sctp_xmit sctp_packet_bundle_auth(struct sctp_packet *pkt,
216					      struct sctp_chunk *chunk)
217{
218	struct sctp_association *asoc = pkt->transport->asoc;
219	enum sctp_xmit retval = SCTP_XMIT_OK;
220	struct sctp_chunk *auth;
 
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	 */
229	if (chunk->chunk_hdr->type == SCTP_CID_AUTH || pkt->has_auth)
230		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, chunk->shkey->key_id);
239	if (!auth)
240		return retval;
241
242	auth->shkey = chunk->shkey;
243	sctp_auth_shkey_hold(auth->shkey);
244
245	retval = __sctp_packet_append_chunk(pkt, auth);
246
247	if (retval != SCTP_XMIT_OK)
248		sctp_chunk_free(auth);
249
250	return retval;
251}
252
253/* Try to bundle a SACK with the packet. */
254static enum sctp_xmit sctp_packet_bundle_sack(struct sctp_packet *pkt,
255					      struct sctp_chunk *chunk)
256{
257	enum sctp_xmit retval = SCTP_XMIT_OK;
258
259	/* If sending DATA and haven't aleady bundled a SACK, try to
260	 * bundle one in to the packet.
261	 */
262	if (sctp_chunk_is_data(chunk) && !pkt->has_sack &&
263	    !pkt->has_cookie_echo) {
264		struct sctp_association *asoc;
265		struct timer_list *timer;
266		asoc = pkt->transport->asoc;
267		timer = &asoc->timers[SCTP_EVENT_TIMEOUT_SACK];
268
269		/* If the SACK timer is running, we have a pending SACK */
270		if (timer_pending(timer)) {
271			struct sctp_chunk *sack;
272
273			if (pkt->transport->sack_generation !=
274			    pkt->transport->asoc->peer.sack_generation)
275				return retval;
276
277			asoc->a_rwnd = asoc->rwnd;
278			sack = sctp_make_sack(asoc);
279			if (sack) {
280				retval = __sctp_packet_append_chunk(pkt, sack);
281				if (retval != SCTP_XMIT_OK) {
282					sctp_chunk_free(sack);
283					goto out;
284				}
285				SCTP_INC_STATS(asoc->base.net,
286					       SCTP_MIB_OUTCTRLCHUNKS);
287				asoc->stats.octrlchunks++;
288				asoc->peer.sack_needed = 0;
289				if (del_timer(timer))
290					sctp_association_put(asoc);
291			}
292		}
293	}
294out:
295	return retval;
296}
297
298
299/* Append a chunk to the offered packet reporting back any inability to do
300 * so.
301 */
302static enum sctp_xmit __sctp_packet_append_chunk(struct sctp_packet *packet,
303						 struct sctp_chunk *chunk)
304{
305	__u16 chunk_len = SCTP_PAD4(ntohs(chunk->chunk_hdr->length));
306	enum sctp_xmit retval = SCTP_XMIT_OK;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
307
308	/* Check to see if this chunk will fit into the packet */
309	retval = sctp_packet_will_fit(packet, chunk, chunk_len);
310	if (retval != SCTP_XMIT_OK)
311		goto finish;
312
313	/* We believe that this chunk is OK to add to the packet */
314	switch (chunk->chunk_hdr->type) {
315	case SCTP_CID_DATA:
316	case SCTP_CID_I_DATA:
317		/* Account for the data being in the packet */
318		sctp_packet_append_data(packet, chunk);
319		/* Disallow SACK bundling after DATA. */
320		packet->has_sack = 1;
321		/* Disallow AUTH bundling after DATA */
322		packet->has_auth = 1;
323		/* Let it be knows that packet has DATA in it */
324		packet->has_data = 1;
325		/* timestamp the chunk for rtx purposes */
326		chunk->sent_at = jiffies;
327		/* Mainly used for prsctp RTX policy */
328		chunk->sent_count++;
329		break;
330	case SCTP_CID_COOKIE_ECHO:
331		packet->has_cookie_echo = 1;
332		break;
333
334	case SCTP_CID_SACK:
335		packet->has_sack = 1;
336		if (chunk->asoc)
337			chunk->asoc->stats.osacks++;
338		break;
339
340	case SCTP_CID_AUTH:
341		packet->has_auth = 1;
342		packet->auth = chunk;
343		break;
344	}
345
346	/* It is OK to send this chunk.  */
347	list_add_tail(&chunk->list, &packet->chunk_list);
348	packet->size += chunk_len;
349	chunk->transport = packet->transport;
350finish:
351	return retval;
352}
353
354/* Append a chunk to the offered packet reporting back any inability to do
355 * so.
 
 
356 */
357enum sctp_xmit sctp_packet_append_chunk(struct sctp_packet *packet,
358					struct sctp_chunk *chunk)
359{
360	enum sctp_xmit retval = SCTP_XMIT_OK;
361
362	pr_debug("%s: packet:%p chunk:%p\n", __func__, packet, chunk);
363
364	/* Data chunks are special.  Before seeing what else we can
365	 * bundle into this packet, check to see if we are allowed to
366	 * send this DATA.
367	 */
368	if (sctp_chunk_is_data(chunk)) {
369		retval = sctp_packet_can_append_data(packet, chunk);
370		if (retval != SCTP_XMIT_OK)
371			goto finish;
372	}
373
374	/* Try to bundle AUTH chunk */
375	retval = sctp_packet_bundle_auth(packet, chunk);
376	if (retval != SCTP_XMIT_OK)
377		goto finish;
378
379	/* Try to bundle SACK chunk */
380	retval = sctp_packet_bundle_sack(packet, chunk);
381	if (retval != SCTP_XMIT_OK)
382		goto finish;
383
384	retval = __sctp_packet_append_chunk(packet, chunk);
385
386finish:
387	return retval;
388}
389
390static void sctp_packet_gso_append(struct sk_buff *head, struct sk_buff *skb)
391{
392	if (SCTP_OUTPUT_CB(head)->last == head)
393		skb_shinfo(head)->frag_list = skb;
394	else
395		SCTP_OUTPUT_CB(head)->last->next = skb;
396	SCTP_OUTPUT_CB(head)->last = skb;
397
398	head->truesize += skb->truesize;
399	head->data_len += skb->len;
400	head->len += skb->len;
401	refcount_add(skb->truesize, &head->sk->sk_wmem_alloc);
402
403	__skb_header_release(skb);
404}
405
406static int sctp_packet_pack(struct sctp_packet *packet,
407			    struct sk_buff *head, int gso, gfp_t gfp)
408{
409	struct sctp_transport *tp = packet->transport;
410	struct sctp_auth_chunk *auth = NULL;
411	struct sctp_chunk *chunk, *tmp;
412	int pkt_count = 0, pkt_size;
413	struct sock *sk = head->sk;
414	struct sk_buff *nskb;
415	int auth_len = 0;
416
417	if (gso) {
418		skb_shinfo(head)->gso_type = sk->sk_gso_type;
419		SCTP_OUTPUT_CB(head)->last = head;
420	} else {
421		nskb = head;
422		pkt_size = packet->size;
423		goto merge;
424	}
425
426	do {
427		/* calculate the pkt_size and alloc nskb */
428		pkt_size = packet->overhead;
429		list_for_each_entry_safe(chunk, tmp, &packet->chunk_list,
430					 list) {
431			int padded = SCTP_PAD4(chunk->skb->len);
432
433			if (chunk == packet->auth)
434				auth_len = padded;
435			else if (auth_len + padded + packet->overhead >
436				 tp->pathmtu)
437				return 0;
438			else if (pkt_size + padded > tp->pathmtu)
439				break;
440			pkt_size += padded;
441		}
442		nskb = alloc_skb(pkt_size + MAX_HEADER, gfp);
443		if (!nskb)
444			return 0;
445		skb_reserve(nskb, packet->overhead + MAX_HEADER);
446
447merge:
448		/* merge chunks into nskb and append nskb into head list */
449		pkt_size -= packet->overhead;
450		list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
451			int padding;
452
453			list_del_init(&chunk->list);
454			if (sctp_chunk_is_data(chunk)) {
455				if (!sctp_chunk_retransmitted(chunk) &&
456				    !tp->rto_pending) {
457					chunk->rtt_in_progress = 1;
458					tp->rto_pending = 1;
459				}
460			}
461
462			padding = SCTP_PAD4(chunk->skb->len) - chunk->skb->len;
463			if (padding)
464				skb_put_zero(chunk->skb, padding);
465
466			if (chunk == packet->auth)
467				auth = (struct sctp_auth_chunk *)
468							skb_tail_pointer(nskb);
469
470			skb_put_data(nskb, chunk->skb->data, chunk->skb->len);
471
472			pr_debug("*** Chunk:%p[%s] %s 0x%x, length:%d, chunk->skb->len:%d, rtt_in_progress:%d\n",
473				 chunk,
474				 sctp_cname(SCTP_ST_CHUNK(chunk->chunk_hdr->type)),
475				 chunk->has_tsn ? "TSN" : "No TSN",
476				 chunk->has_tsn ? ntohl(chunk->subh.data_hdr->tsn) : 0,
477				 ntohs(chunk->chunk_hdr->length), chunk->skb->len,
478				 chunk->rtt_in_progress);
479
480			pkt_size -= SCTP_PAD4(chunk->skb->len);
 
 
 
 
 
481
482			if (!sctp_chunk_is_data(chunk) && chunk != packet->auth)
483				sctp_chunk_free(chunk);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
485			if (!pkt_size)
486				break;
 
 
 
487		}
488
489		if (auth) {
490			sctp_auth_calculate_hmac(tp->asoc, nskb, auth,
491						 packet->auth->shkey, gfp);
492			/* free auth if no more chunks, or add it back */
493			if (list_empty(&packet->chunk_list))
494				sctp_chunk_free(packet->auth);
495			else
496				list_add(&packet->auth->list,
497					 &packet->chunk_list);
498		}
499
500		if (gso)
501			sctp_packet_gso_append(head, nskb);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
503		pkt_count++;
504	} while (!list_empty(&packet->chunk_list));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
506	if (gso) {
507		memset(head->cb, 0, max(sizeof(struct inet_skb_parm),
508					sizeof(struct inet6_skb_parm)));
509		skb_shinfo(head)->gso_segs = pkt_count;
510		skb_shinfo(head)->gso_size = GSO_BY_FRAGS;
511		rcu_read_lock();
512		if (skb_dst(head) != tp->dst) {
513			dst_hold(tp->dst);
514			sk_setup_caps(sk, tp->dst);
 
515		}
516		rcu_read_unlock();
517		goto chksum;
518	}
519
520	if (sctp_checksum_disable)
521		return 1;
 
 
 
 
 
 
 
 
 
 
 
522
523	if (!(skb_dst(head)->dev->features & NETIF_F_SCTP_CRC) ||
524	    dst_xfrm(skb_dst(head)) || packet->ipfragok) {
525		struct sctphdr *sh =
526			(struct sctphdr *)skb_transport_header(head);
527
528		sh->checksum = sctp_compute_cksum(head, 0);
529	} else {
530chksum:
531		head->ip_summed = CHECKSUM_PARTIAL;
532		head->csum_not_inet = 1;
533		head->csum_start = skb_transport_header(head) - head->head;
534		head->csum_offset = offsetof(struct sctphdr, checksum);
535	}
536
537	return pkt_count;
538}
539
540/* All packets are sent to the network through this function from
541 * sctp_outq_tail().
542 *
543 * The return value is always 0 for now.
544 */
545int sctp_packet_transmit(struct sctp_packet *packet, gfp_t gfp)
546{
547	struct sctp_transport *tp = packet->transport;
548	struct sctp_association *asoc = tp->asoc;
549	struct sctp_chunk *chunk, *tmp;
550	int pkt_count, gso = 0;
551	struct dst_entry *dst;
552	struct sk_buff *head;
553	struct sctphdr *sh;
554	struct sock *sk;
555
556	pr_debug("%s: packet:%p\n", __func__, packet);
557	if (list_empty(&packet->chunk_list))
558		return 0;
559	chunk = list_entry(packet->chunk_list.next, struct sctp_chunk, list);
560	sk = chunk->skb->sk;
561
562	/* check gso */
563	if (packet->size > tp->pathmtu && !packet->ipfragok) {
564		if (!sk_can_gso(sk)) {
565			pr_err_once("Trying to GSO but underlying device doesn't support it.");
566			goto out;
567		}
568		gso = 1;
569	}
570
571	/* alloc head skb */
572	head = alloc_skb((gso ? packet->overhead : packet->size) +
573			 MAX_HEADER, gfp);
574	if (!head)
575		goto out;
576	skb_reserve(head, packet->overhead + MAX_HEADER);
577	skb_set_owner_w(head, sk);
578
579	/* set sctp header */
580	sh = skb_push(head, sizeof(struct sctphdr));
581	skb_reset_transport_header(head);
582	sh->source = htons(packet->source_port);
583	sh->dest = htons(packet->destination_port);
584	sh->vtag = htonl(packet->vtag);
585	sh->checksum = 0;
586
587	/* drop packet if no dst */
588	dst = dst_clone(tp->dst);
589	if (!dst) {
590		IP_INC_STATS(sock_net(sk), IPSTATS_MIB_OUTNOROUTES);
591		kfree_skb(head);
592		goto out;
593	}
594	skb_dst_set(head, dst);
595
596	/* pack up chunks */
597	pkt_count = sctp_packet_pack(packet, head, gso, gfp);
598	if (!pkt_count) {
599		kfree_skb(head);
600		goto out;
601	}
602	pr_debug("***sctp_transmit_packet*** skb->len:%d\n", head->len);
603
604	/* start autoclose timer */
605	if (packet->has_data && sctp_state(asoc, ESTABLISHED) &&
606	    asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE]) {
607		struct timer_list *timer =
608			&asoc->timers[SCTP_EVENT_TIMEOUT_AUTOCLOSE];
609		unsigned long timeout =
610			asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE];
611
612		if (!mod_timer(timer, jiffies + timeout))
613			sctp_association_hold(asoc);
614	}
615
616	/* sctp xmit */
617	tp->af_specific->ecn_capable(sk);
618	if (asoc) {
619		asoc->stats.opackets += pkt_count;
620		if (asoc->peer.last_sent_to != tp)
621			asoc->peer.last_sent_to = tp;
622	}
623	head->ignore_df = packet->ipfragok;
624	if (tp->dst_pending_confirm)
625		skb_set_dst_pending_confirm(head, 1);
626	/* neighbour should be confirmed on successful transmission or
627	 * positive error
628	 */
629	if (tp->af_specific->sctp_xmit(head, tp) >= 0 &&
630	    tp->dst_pending_confirm)
631		tp->dst_pending_confirm = 0;
632
633out:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
634	list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
635		list_del_init(&chunk->list);
636		if (!sctp_chunk_is_data(chunk))
637			sctp_chunk_free(chunk);
638	}
639	sctp_packet_reset(packet);
640	return 0;
 
 
641}
642
643/********************************************************************
644 * 2nd Level Abstractions
645 ********************************************************************/
646
647/* This private function check to see if a chunk can be added */
648static enum sctp_xmit sctp_packet_can_append_data(struct sctp_packet *packet,
649						  struct sctp_chunk *chunk)
650{
 
651	size_t datasize, rwnd, inflight, flight_size;
652	struct sctp_transport *transport = packet->transport;
653	struct sctp_association *asoc = transport->asoc;
654	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;
670	inflight = q->outstanding_bytes;
671	flight_size = transport->flight_size;
672
673	datasize = sctp_data_size(chunk);
674
675	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;
 
 
 
 
680
681	/* 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	 */
693	if (chunk->fast_retransmit != SCTP_NEED_FRTX &&
694	    flight_size >= transport->cwnd)
695		return SCTP_XMIT_RWND_FULL;
 
 
696
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	 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
702
703	if ((sctp_sk(asoc->base.sk)->nodelay || inflight == 0) &&
704	    !asoc->force_delay)
705		/* Nothing unacked */
706		return SCTP_XMIT_OK;
707
708	if (!sctp_packet_empty(packet))
709		/* Append to packet */
710		return SCTP_XMIT_OK;
711
712	if (!sctp_state(asoc, ESTABLISHED))
713		return SCTP_XMIT_OK;
714
715	/* Check whether this chunk and all the rest of pending data will fit
716	 * or delay in hopes of bundling a full sized packet.
717	 */
718	if (chunk->skb->len + q->out_qlen > transport->pathmtu -
719	    packet->overhead - sctp_datachk_len(&chunk->asoc->stream) - 4)
720		/* Enough data queued to fill a packet */
721		return SCTP_XMIT_OK;
722
723	/* Don't delay large message writes that may have been fragmented */
724	if (!chunk->msg->can_delay)
725		return SCTP_XMIT_OK;
726
727	/* Defer until all data acked or packet full */
728	return SCTP_XMIT_DELAY;
729}
730
731/* This private function does management things when adding DATA chunk */
732static void sctp_packet_append_data(struct sctp_packet *packet,
733				struct sctp_chunk *chunk)
734{
735	struct sctp_transport *transport = packet->transport;
736	size_t datasize = sctp_data_size(chunk);
737	struct sctp_association *asoc = transport->asoc;
738	u32 rwnd = asoc->peer.rwnd;
739
740	/* Keep track of how many bytes are in flight over this transport. */
741	transport->flight_size += datasize;
742
743	/* Keep track of how many bytes are in flight to the receiver. */
744	asoc->outqueue.outstanding_bytes += datasize;
745
746	/* Update our view of the receiver's rwnd. */
747	if (datasize < rwnd)
748		rwnd -= datasize;
749	else
750		rwnd = 0;
751
752	asoc->peer.rwnd = rwnd;
 
 
 
753	sctp_chunk_assign_tsn(chunk);
754	asoc->stream.si->assign_number(chunk);
755}
756
757static enum sctp_xmit sctp_packet_will_fit(struct sctp_packet *packet,
758					   struct sctp_chunk *chunk,
759					   u16 chunk_len)
760{
761	enum sctp_xmit retval = SCTP_XMIT_OK;
762	size_t psize, pmtu, maxsize;
763
764	/* Don't bundle in this packet if this chunk's auth key doesn't
765	 * match other chunks already enqueued on this packet. Also,
766	 * don't bundle the chunk with auth key if other chunks in this
767	 * packet don't have auth key.
768	 */
769	if ((packet->auth && chunk->shkey != packet->auth->shkey) ||
770	    (!packet->auth && chunk->shkey &&
771	     chunk->chunk_hdr->type != SCTP_CID_AUTH))
772		return SCTP_XMIT_PMTU_FULL;
773
774	psize = packet->size;
775	if (packet->transport->asoc)
776		pmtu = packet->transport->asoc->pathmtu;
777	else
778		pmtu = packet->transport->pathmtu;
 
779
780	/* Decide if we need to fragment or resubmit later. */
781	if (psize + chunk_len > pmtu) {
782		/* It's OK to fragment at IP level if any one of the following
783		 * is true:
784		 *	1. The packet is empty (meaning this chunk is greater
785		 *	   the MTU)
786		 *	2. The packet doesn't have any data in it yet and data
787		 *	   requires authentication.
 
788		 */
789		if (sctp_packet_empty(packet) ||
790		    (!packet->has_data && chunk->auth)) {
791			/* We no longer do re-fragmentation.
792			 * Just fragment at the IP layer, if we
793			 * actually hit this condition
794			 */
795			packet->ipfragok = 1;
796			goto out;
797		}
798
799		/* Similarly, if this chunk was built before a PMTU
800		 * reduction, we have to fragment it at IP level now. So
801		 * if the packet already contains something, we need to
802		 * flush.
803		 */
804		maxsize = pmtu - packet->overhead;
805		if (packet->auth)
806			maxsize -= SCTP_PAD4(packet->auth->skb->len);
807		if (chunk_len > maxsize)
808			retval = SCTP_XMIT_PMTU_FULL;
809
810		/* It is also okay to fragment if the chunk we are
811		 * adding is a control chunk, but only if current packet
812		 * is not a GSO one otherwise it causes fragmentation of
813		 * a large frame. So in this case we allow the
814		 * fragmentation by forcing it to be in a new packet.
815		 */
816		if (!sctp_chunk_is_data(chunk) && packet->has_data)
817			retval = SCTP_XMIT_PMTU_FULL;
818
819		if (psize + chunk_len > packet->max_size)
820			/* Hit GSO/PMTU limit, gotta flush */
821			retval = SCTP_XMIT_PMTU_FULL;
822
823		if (!packet->transport->burst_limited &&
824		    psize + chunk_len > (packet->transport->cwnd >> 1))
825			/* Do not allow a single GSO packet to use more
826			 * than half of cwnd.
827			 */
828			retval = SCTP_XMIT_PMTU_FULL;
829
830		if (packet->transport->burst_limited &&
831		    psize + chunk_len > (packet->transport->burst_limited >> 1))
832			/* Do not allow a single GSO packet to use more
833			 * than half of original cwnd.
834			 */
835			retval = SCTP_XMIT_PMTU_FULL;
836		/* Otherwise it will fit in the GSO packet */
837	}
838
839out:
840	return retval;
841}
v3.5.6
 
  1/* SCTP kernel implementation
  2 * (C) Copyright IBM Corp. 2001, 2004
  3 * Copyright (c) 1999-2000 Cisco, Inc.
  4 * Copyright (c) 1999-2001 Motorola, Inc.
  5 *
  6 * This file is part of the SCTP kernel implementation
  7 *
  8 * These functions handle output processing.
  9 *
 10 * This SCTP implementation is free software;
 11 * 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 *
 16 * This SCTP implementation is distributed in the hope that it
 17 * 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
 23 * along with GNU CC; see the file COPYING.  If not, write to
 24 * the Free Software Foundation, 59 Temple Place - Suite 330,
 25 * Boston, MA 02111-1307, USA.
 26 *
 27 * Please send any bug reports or fixes you make to the
 28 * email address(es):
 29 *    lksctp developers <lksctp-developers@lists.sourceforge.net>
 30 *
 31 * Or submit a bug report through the following website:
 32 *    http://www.sf.net/projects/lksctp
 33 *
 34 * Written or modified by:
 35 *    La Monte H.P. Yarroll <piggy@acm.org>
 36 *    Karl Knutson          <karl@athena.chicago.il.us>
 37 *    Jon Grimm             <jgrimm@austin.ibm.com>
 38 *    Sridhar Samudrala     <sri@us.ibm.com>
 39 *
 40 * Any bugs reported given to us we will try to fix... any fixes shared will
 41 * be incorporated into the next SCTP release.
 42 */
 43
 44#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 45
 46#include <linux/types.h>
 47#include <linux/kernel.h>
 48#include <linux/wait.h>
 49#include <linux/time.h>
 50#include <linux/ip.h>
 51#include <linux/ipv6.h>
 52#include <linux/init.h>
 53#include <linux/slab.h>
 54#include <net/inet_ecn.h>
 55#include <net/ip.h>
 56#include <net/icmp.h>
 57#include <net/net_namespace.h>
 58
 59#include <linux/socket.h> /* for sa_family_t */
 60#include <net/sock.h>
 61
 62#include <net/sctp/sctp.h>
 63#include <net/sctp/sm.h>
 64#include <net/sctp/checksum.h>
 65
 66/* Forward declarations for private helpers. */
 67static sctp_xmit_t sctp_packet_can_append_data(struct sctp_packet *packet,
 68					   struct sctp_chunk *chunk);
 
 
 69static void sctp_packet_append_data(struct sctp_packet *packet,
 70					   struct sctp_chunk *chunk);
 71static sctp_xmit_t sctp_packet_will_fit(struct sctp_packet *packet,
 72					struct sctp_chunk *chunk,
 73					u16 chunk_len);
 74
 75static void sctp_packet_reset(struct sctp_packet *packet)
 76{
 
 
 
 77	packet->size = packet->overhead;
 
 78	packet->has_cookie_echo = 0;
 79	packet->has_sack = 0;
 80	packet->has_data = 0;
 81	packet->has_auth = 0;
 82	packet->ipfragok = 0;
 83	packet->auth = NULL;
 84}
 85
 86/* Config a packet.
 87 * This appears to be a followup set of initializations.
 88 */
 89struct sctp_packet *sctp_packet_config(struct sctp_packet *packet,
 90				       __u32 vtag, int ecn_capable)
 91{
 92	struct sctp_chunk *chunk = NULL;
 
 
 
 
 
 
 
 
 
 
 93
 94	SCTP_DEBUG_PRINTK("%s: packet:%p vtag:0x%x\n", __func__,
 95			  packet, vtag);
 96
 97	packet->vtag = vtag;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 98
 99	if (ecn_capable && sctp_packet_empty(packet)) {
100		chunk = sctp_get_ecne_prepend(packet->transport->asoc);
 
 
 
101
102		/* If there a is a prepend chunk stick it on the list before
103		 * any other chunks get appended.
104		 */
105		if (chunk)
106			sctp_packet_append_chunk(packet, chunk);
107	}
108
109	return packet;
 
 
 
 
 
 
 
 
 
 
 
110}
111
112/* Initialize the packet structure. */
113struct sctp_packet *sctp_packet_init(struct sctp_packet *packet,
114				     struct sctp_transport *transport,
115				     __u16 sport, __u16 dport)
116{
117	struct sctp_association *asoc = transport->asoc;
118	size_t overhead;
119
120	SCTP_DEBUG_PRINTK("%s: packet:%p transport:%p\n", __func__,
121			  packet, transport);
122
123	packet->transport = transport;
124	packet->source_port = sport;
125	packet->destination_port = dport;
126	INIT_LIST_HEAD(&packet->chunk_list);
127	if (asoc) {
128		struct sctp_sock *sp = sctp_sk(asoc->base.sk);
129		overhead = sp->pf->af->net_header_len;
130	} else {
131		overhead = sizeof(struct ipv6hdr);
132	}
133	overhead += sizeof(struct sctphdr);
134	packet->overhead = overhead;
135	sctp_packet_reset(packet);
136	packet->vtag = 0;
137	packet->malloced = 0;
138	return packet;
139}
140
141/* Free a packet.  */
142void sctp_packet_free(struct sctp_packet *packet)
143{
144	struct sctp_chunk *chunk, *tmp;
145
146	SCTP_DEBUG_PRINTK("%s: packet:%p\n", __func__, packet);
147
148	list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
149		list_del_init(&chunk->list);
150		sctp_chunk_free(chunk);
151	}
152
153	if (packet->malloced)
154		kfree(packet);
155}
156
157/* This routine tries to append the chunk to the offered packet. If adding
158 * the chunk causes the packet to exceed the path MTU and COOKIE_ECHO chunk
159 * is not present in the packet, it transmits the input packet.
160 * Data can be bundled with a packet containing a COOKIE_ECHO chunk as long
161 * as it can fit in the packet, but any more data that does not fit in this
162 * packet can be sent only after receiving the COOKIE_ACK.
163 */
164sctp_xmit_t sctp_packet_transmit_chunk(struct sctp_packet *packet,
165				       struct sctp_chunk *chunk,
166				       int one_packet)
167{
168	sctp_xmit_t retval;
169	int error = 0;
170
171	SCTP_DEBUG_PRINTK("%s: packet:%p chunk:%p\n", __func__,
172			  packet, chunk);
173
174	switch ((retval = (sctp_packet_append_chunk(packet, chunk)))) {
175	case SCTP_XMIT_PMTU_FULL:
176		if (!packet->has_cookie_echo) {
177			error = sctp_packet_transmit(packet);
 
 
178			if (error < 0)
179				chunk->skb->sk->sk_err = -error;
180
181			/* If we have an empty packet, then we can NOT ever
182			 * return PMTU_FULL.
183			 */
184			if (!one_packet)
185				retval = sctp_packet_append_chunk(packet,
186								  chunk);
187		}
188		break;
189
190	case SCTP_XMIT_RWND_FULL:
191	case SCTP_XMIT_OK:
192	case SCTP_XMIT_NAGLE_DELAY:
193		break;
194	}
195
196	return retval;
197}
198
199/* Try to bundle an auth chunk into the packet. */
200static sctp_xmit_t sctp_packet_bundle_auth(struct sctp_packet *pkt,
201					   struct sctp_chunk *chunk)
202{
203	struct sctp_association *asoc = pkt->transport->asoc;
 
204	struct sctp_chunk *auth;
205	sctp_xmit_t retval = SCTP_XMIT_OK;
206
207	/* if we don't have an association, we can't do authentication */
208	if (!asoc)
209		return retval;
210
211	/* See if this is an auth chunk we are bundling or if
212	 * auth is already bundled.
213	 */
214	if (chunk->chunk_hdr->type == SCTP_CID_AUTH || pkt->has_auth)
215		return retval;
216
217	/* if the peer did not request this chunk to be authenticated,
218	 * don't do it
219	 */
220	if (!chunk->auth)
221		return retval;
222
223	auth = sctp_make_auth(asoc);
224	if (!auth)
225		return retval;
226
227	retval = sctp_packet_append_chunk(pkt, auth);
 
 
 
 
 
 
228
229	return retval;
230}
231
232/* Try to bundle a SACK with the packet. */
233static sctp_xmit_t sctp_packet_bundle_sack(struct sctp_packet *pkt,
234					   struct sctp_chunk *chunk)
235{
236	sctp_xmit_t retval = SCTP_XMIT_OK;
237
238	/* If sending DATA and haven't aleady bundled a SACK, try to
239	 * bundle one in to the packet.
240	 */
241	if (sctp_chunk_is_data(chunk) && !pkt->has_sack &&
242	    !pkt->has_cookie_echo) {
243		struct sctp_association *asoc;
244		struct timer_list *timer;
245		asoc = pkt->transport->asoc;
246		timer = &asoc->timers[SCTP_EVENT_TIMEOUT_SACK];
247
248		/* If the SACK timer is running, we have a pending SACK */
249		if (timer_pending(timer)) {
250			struct sctp_chunk *sack;
251
252			if (pkt->transport->sack_generation !=
253			    pkt->transport->asoc->peer.sack_generation)
254				return retval;
255
256			asoc->a_rwnd = asoc->rwnd;
257			sack = sctp_make_sack(asoc);
258			if (sack) {
259				retval = sctp_packet_append_chunk(pkt, sack);
 
 
 
 
 
 
 
260				asoc->peer.sack_needed = 0;
261				if (del_timer(timer))
262					sctp_association_put(asoc);
263			}
264		}
265	}
 
266	return retval;
267}
268
 
269/* Append a chunk to the offered packet reporting back any inability to do
270 * so.
271 */
272sctp_xmit_t sctp_packet_append_chunk(struct sctp_packet *packet,
273				     struct sctp_chunk *chunk)
274{
275	sctp_xmit_t retval = SCTP_XMIT_OK;
276	__u16 chunk_len = WORD_ROUND(ntohs(chunk->chunk_hdr->length));
277
278	SCTP_DEBUG_PRINTK("%s: packet:%p chunk:%p\n", __func__, packet,
279			  chunk);
280
281	/* Data chunks are special.  Before seeing what else we can
282	 * bundle into this packet, check to see if we are allowed to
283	 * send this DATA.
284	 */
285	if (sctp_chunk_is_data(chunk)) {
286		retval = sctp_packet_can_append_data(packet, chunk);
287		if (retval != SCTP_XMIT_OK)
288			goto finish;
289	}
290
291	/* Try to bundle AUTH chunk */
292	retval = sctp_packet_bundle_auth(packet, chunk);
293	if (retval != SCTP_XMIT_OK)
294		goto finish;
295
296	/* Try to bundle SACK chunk */
297	retval = sctp_packet_bundle_sack(packet, chunk);
298	if (retval != SCTP_XMIT_OK)
299		goto finish;
300
301	/* 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;
305
306	/* We believe that this chunk is OK to add to the packet */
307	switch (chunk->chunk_hdr->type) {
308	    case SCTP_CID_DATA:
 
309		/* Account for the data being in the packet */
310		sctp_packet_append_data(packet, chunk);
311		/* Disallow SACK bundling after DATA. */
312		packet->has_sack = 1;
313		/* 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;
317		/* timestamp the chunk for rtx purposes */
318		chunk->sent_at = jiffies;
 
 
319		break;
320	    case SCTP_CID_COOKIE_ECHO:
321		packet->has_cookie_echo = 1;
322		break;
323
324	    case SCTP_CID_SACK:
325		packet->has_sack = 1;
 
 
326		break;
327
328	    case SCTP_CID_AUTH:
329		packet->has_auth = 1;
330		packet->auth = chunk;
331		break;
332	}
333
334	/* It is OK to send this chunk.  */
335	list_add_tail(&chunk->list, &packet->chunk_list);
336	packet->size += chunk_len;
337	chunk->transport = packet->transport;
338finish:
339	return retval;
340}
341
342/* All packets are sent to the network through this function from
343 * sctp_outq_tail().
344 *
345 * The return value is a normal kernel error return value.
346 */
347int sctp_packet_transmit(struct sctp_packet *packet)
 
348{
349	struct sctp_transport *tp = packet->transport;
350	struct sctp_association *asoc = tp->asoc;
351	struct sctphdr *sh;
352	struct sk_buff *nskb;
353	struct sctp_chunk *chunk, *tmp;
354	struct sock *sk;
355	int err = 0;
356	int padding;		/* How much padding do we need?  */
357	__u8 has_data = 0;
358	struct dst_entry *dst = tp->dst;
359	unsigned char *auth = NULL;	/* pointer to auth in skb data */
360	__u32 cksum_buf_len = sizeof(struct sctphdr);
 
 
 
 
 
 
 
 
 
 
 
361
362	SCTP_DEBUG_PRINTK("%s: packet:%p\n", __func__, packet);
363
364	/* Do NOT generate a chunkless packet. */
365	if (list_empty(&packet->chunk_list))
366		return err;
367
368	/* Set up convenience variables... */
369	chunk = list_entry(packet->chunk_list.next, struct sctp_chunk, list);
370	sk = chunk->skb->sk;
 
 
 
 
371
372	/* Allocate the new skb.  */
373	nskb = alloc_skb(packet->size + LL_MAX_HEADER, GFP_ATOMIC);
374	if (!nskb)
375		goto nomem;
376
377	/* Make sure the outbound skb has enough header room reserved. */
378	skb_reserve(nskb, packet->overhead + LL_MAX_HEADER);
379
380	/* Set the owning socket so that we know where to get the
381	 * destination IP address.
382	 */
383	skb_set_owner_w(nskb, sk);
 
 
 
 
 
 
384
385	if (!sctp_transport_dst_check(tp)) {
386		sctp_transport_route(tp, NULL, sctp_sk(sk));
387		if (asoc && (asoc->param_flags & SPP_PMTUD_ENABLE)) {
388			sctp_assoc_sync_pmtu(asoc);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389		}
390	}
391	dst = dst_clone(tp->dst);
392	skb_dst_set(nskb, dst);
393	if (!dst)
394		goto no_route;
395
396	/* Build the SCTP header.  */
397	sh = (struct sctphdr *)skb_push(nskb, sizeof(struct sctphdr));
398	skb_reset_transport_header(nskb);
399	sh->source = htons(packet->source_port);
400	sh->dest   = htons(packet->destination_port);
 
 
 
 
 
 
 
 
401
402	/* From 6.8 Adler-32 Checksum Calculation:
403	 * After the packet is constructed (containing the SCTP common
404	 * header and one or more control or DATA chunks), the
405	 * transmitter shall:
406	 *
407	 * 1) Fill in the proper Verification Tag in the SCTP common
408	 *    header and initialize the checksum field to 0's.
409	 */
410	sh->vtag     = htonl(packet->vtag);
411	sh->checksum = 0;
 
 
 
 
 
 
 
412
413	/**
414	 * 6.10 Bundling
415	 *
416	 *    An endpoint bundles chunks by simply including multiple
417	 *    chunks in one outbound SCTP packet.  ...
418	 */
419
420	/**
421	 * 3.2  Chunk Field Descriptions
422	 *
423	 * The total length of a chunk (including Type, Length and
424	 * Value fields) MUST be a multiple of 4 bytes.  If the length
425	 * of the chunk is not a multiple of 4 bytes, the sender MUST
426	 * pad the chunk with all zero bytes and this padding is not
427	 * included in the chunk length field.  The sender should
428	 * never pad with more than 3 bytes.
429	 *
430	 * [This whole comment explains WORD_ROUND() below.]
431	 */
432	SCTP_DEBUG_PRINTK("***sctp_transmit_packet***\n");
433	list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
434		list_del_init(&chunk->list);
435		if (sctp_chunk_is_data(chunk)) {
436			/* 6.3.1 C4) When data is in flight and when allowed
437			 * by rule C5, a new RTT measurement MUST be made each
438			 * round trip.  Furthermore, new RTT measurements
439			 * SHOULD be made no more than once per round-trip
440			 * for a given destination transport address.
441			 */
442
443			if (!tp->rto_pending) {
444				chunk->rtt_in_progress = 1;
445				tp->rto_pending = 1;
446			}
447			has_data = 1;
448		}
449
450		padding = WORD_ROUND(chunk->skb->len) - chunk->skb->len;
451		if (padding)
452			memset(skb_put(chunk->skb, padding), 0, padding);
453
454		/* if this is the auth chunk that we are adding,
455		 * store pointer where it will be added and put
456		 * the auth into the packet.
457		 */
458		if (chunk == packet->auth)
459			auth = skb_tail_pointer(nskb);
460
461		cksum_buf_len += chunk->skb->len;
462		memcpy(skb_put(nskb, chunk->skb->len),
463			       chunk->skb->data, chunk->skb->len);
464
465		SCTP_DEBUG_PRINTK("%s %p[%s] %s 0x%x, %s %d, %s %d, %s %d\n",
466				  "*** Chunk", chunk,
467				  sctp_cname(SCTP_ST_CHUNK(
468					  chunk->chunk_hdr->type)),
469				  chunk->has_tsn ? "TSN" : "No TSN",
470				  chunk->has_tsn ?
471				  ntohl(chunk->subh.data_hdr->tsn) : 0,
472				  "length", ntohs(chunk->chunk_hdr->length),
473				  "chunk->skb->len", chunk->skb->len,
474				  "rtt_in_progress", chunk->rtt_in_progress);
475
476		/*
477		 * If this is a control chunk, this is our last
478		 * reference. Free data chunks after they've been
479		 * acknowledged or have failed.
480		 */
481		if (!sctp_chunk_is_data(chunk))
482			sctp_chunk_free(chunk);
483	}
484
485	/* SCTP-AUTH, Section 6.2
486	 *    The sender MUST calculate the MAC as described in RFC2104 [2]
487	 *    using the hash function H as described by the MAC Identifier and
488	 *    the shared association key K based on the endpoint pair shared key
489	 *    described by the shared key identifier.  The 'data' used for the
490	 *    computation of the AUTH-chunk is given by the AUTH chunk with its
491	 *    HMAC field set to zero (as shown in Figure 6) followed by all
492	 *    chunks that are placed after the AUTH chunk in the SCTP packet.
493	 */
494	if (auth)
495		sctp_auth_calculate_hmac(asoc, nskb,
496					(struct sctp_auth_chunk *)auth,
497					GFP_ATOMIC);
498
499	/* 2) Calculate the Adler-32 checksum of the whole packet,
500	 *    including the SCTP common header and all the
501	 *    chunks.
502	 *
503	 * Note: Adler-32 is no longer applicable, as has been replaced
504	 * by CRC32-C as described in <draft-ietf-tsvwg-sctpcsum-02.txt>.
505	 */
506	if (!sctp_checksum_disable) {
507		if (!(dst->dev->features & NETIF_F_SCTP_CSUM)) {
508			__u32 crc32 = sctp_start_cksum((__u8 *)sh, cksum_buf_len);
509
510			/* 3) Put the resultant value into the checksum field in the
511			 *    common header, and leave the rest of the bits unchanged.
512			 */
513			sh->checksum = sctp_end_cksum(crc32);
514		} else {
515			/* no need to seed pseudo checksum for SCTP */
516			nskb->ip_summed = CHECKSUM_PARTIAL;
517			nskb->csum_start = (skb_transport_header(nskb) -
518			                    nskb->head);
519			nskb->csum_offset = offsetof(struct sctphdr, checksum);
520		}
 
 
521	}
522
523	/* IP layer ECN support
524	 * From RFC 2481
525	 *  "The ECN-Capable Transport (ECT) bit would be set by the
526	 *   data sender to indicate that the end-points of the
527	 *   transport protocol are ECN-capable."
528	 *
529	 * Now setting the ECT bit all the time, as it should not cause
530	 * any problems protocol-wise even if our peer ignores it.
531	 *
532	 * Note: The works for IPv6 layer checks this bit too later
533	 * in transmission.  See IP6_ECN_flow_xmit().
534	 */
535	(*tp->af_specific->ecn_capable)(nskb->sk);
536
537	/* Set up the IP options.  */
538	/* BUG: not implemented
539	 * For v4 this all lives somewhere in sk->sk_opt...
540	 */
541
542	/* Dump that on IP!  */
543	if (asoc && asoc->peer.last_sent_to != tp) {
544		/* Considering the multiple CPU scenario, this is a
545		 * "correcter" place for last_sent_to.  --xguo
546		 */
547		asoc->peer.last_sent_to = tp;
 
548	}
549
550	if (has_data) {
551		struct timer_list *timer;
552		unsigned long timeout;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
554		/* Restart the AUTOCLOSE timer when sending data. */
555		if (sctp_state(asoc, ESTABLISHED) && asoc->autoclose) {
556			timer = &asoc->timers[SCTP_EVENT_TIMEOUT_AUTOCLOSE];
557			timeout = asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE];
 
558
559			if (!mod_timer(timer, jiffies + timeout))
560				sctp_association_hold(asoc);
 
 
 
561		}
 
562	}
563
564	SCTP_DEBUG_PRINTK("***sctp_transmit_packet*** skb len %d\n",
565			  nskb->len);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
566
567	nskb->local_df = packet->ipfragok;
568	(*tp->af_specific->sctp_xmit)(nskb, tp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
569
570out:
571	sctp_packet_reset(packet);
572	return err;
573no_route:
574	kfree_skb(nskb);
575	IP_INC_STATS_BH(&init_net, IPSTATS_MIB_OUTNOROUTES);
576
577	/* FIXME: Returning the 'err' will effect all the associations
578	 * associated with a socket, although only one of the paths of the
579	 * association is unreachable.
580	 * The real failure of a transport or association can be passed on
581	 * to the user via notifications. So setting this error may not be
582	 * required.
583	 */
584	 /* err = -EHOSTUNREACH; */
585err:
586	/* Control chunks are unreliable so just drop them.  DATA chunks
587	 * will get resent or dropped later.
588	 */
589
590	list_for_each_entry_safe(chunk, tmp, &packet->chunk_list, list) {
591		list_del_init(&chunk->list);
592		if (!sctp_chunk_is_data(chunk))
593			sctp_chunk_free(chunk);
594	}
595	goto out;
596nomem:
597	err = -ENOMEM;
598	goto err;
599}
600
601/********************************************************************
602 * 2nd Level Abstractions
603 ********************************************************************/
604
605/* This private function check to see if a chunk can be added */
606static sctp_xmit_t sctp_packet_can_append_data(struct sctp_packet *packet,
607					   struct sctp_chunk *chunk)
608{
609	sctp_xmit_t retval = SCTP_XMIT_OK;
610	size_t datasize, rwnd, inflight, flight_size;
611	struct sctp_transport *transport = packet->transport;
612	struct sctp_association *asoc = transport->asoc;
613	struct sctp_outq *q = &asoc->outqueue;
614
615	/* RFC 2960 6.1  Transmission of DATA Chunks
616	 *
617	 * A) At any given time, the data sender MUST NOT transmit new data to
618	 * any destination transport address if its peer's rwnd indicates
619	 * that the peer has no buffer space (i.e. rwnd is 0, see Section
620	 * 6.2.1).  However, regardless of the value of rwnd (including if it
621	 * is 0), the data sender can always have one DATA chunk in flight to
622	 * the receiver if allowed by cwnd (see rule B below).  This rule
623	 * allows the sender to probe for a change in rwnd that the sender
624	 * missed due to the SACK having been lost in transit from the data
625	 * receiver to the data sender.
626	 */
627
628	rwnd = asoc->peer.rwnd;
629	inflight = q->outstanding_bytes;
630	flight_size = transport->flight_size;
631
632	datasize = sctp_data_size(chunk);
633
634	if (datasize > rwnd) {
635		if (inflight > 0) {
636			/* We have (at least) one data chunk in flight,
637			 * so we can't fall back to rule 6.1 B).
638			 */
639			retval = SCTP_XMIT_RWND_FULL;
640			goto finish;
641		}
642	}
643
644	/* RFC 2960 6.1  Transmission of DATA Chunks
645	 *
646	 * B) At any given time, the sender MUST NOT transmit new data
647	 * to a given transport address if it has cwnd or more bytes
648	 * of data outstanding to that transport address.
649	 */
650	/* RFC 7.2.4 & the Implementers Guide 2.8.
651	 *
652	 * 3) ...
653	 *    When a Fast Retransmit is being performed the sender SHOULD
654	 *    ignore the value of cwnd and SHOULD NOT delay retransmission.
655	 */
656	if (chunk->fast_retransmit != SCTP_NEED_FRTX)
657		if (flight_size >= transport->cwnd) {
658			retval = SCTP_XMIT_RWND_FULL;
659			goto finish;
660		}
661
662	/* Nagle's algorithm to solve small-packet problem:
663	 * Inhibit the sending of new chunks when new outgoing data arrives
664	 * if any previously transmitted data on the connection remains
665	 * unacknowledged.
666	 */
667	if (!sctp_sk(asoc->base.sk)->nodelay && sctp_packet_empty(packet) &&
668	    inflight && sctp_state(asoc, ESTABLISHED)) {
669		unsigned int max = transport->pathmtu - packet->overhead;
670		unsigned int len = chunk->skb->len + q->out_qlen;
671
672		/* Check whether this chunk and all the rest of pending
673		 * data will fit or delay in hopes of bundling a full
674		 * sized packet.
675		 * Don't delay large message writes that may have been
676		 * fragmeneted into small peices.
677		 */
678		if ((len < max) && chunk->msg->can_delay) {
679			retval = SCTP_XMIT_NAGLE_DELAY;
680			goto finish;
681		}
682	}
683
684finish:
685	return retval;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
686}
687
688/* This private function does management things when adding DATA chunk */
689static void sctp_packet_append_data(struct sctp_packet *packet,
690				struct sctp_chunk *chunk)
691{
692	struct sctp_transport *transport = packet->transport;
693	size_t datasize = sctp_data_size(chunk);
694	struct sctp_association *asoc = transport->asoc;
695	u32 rwnd = asoc->peer.rwnd;
696
697	/* Keep track of how many bytes are in flight over this transport. */
698	transport->flight_size += datasize;
699
700	/* Keep track of how many bytes are in flight to the receiver. */
701	asoc->outqueue.outstanding_bytes += datasize;
702
703	/* Update our view of the receiver's rwnd. */
704	if (datasize < rwnd)
705		rwnd -= datasize;
706	else
707		rwnd = 0;
708
709	asoc->peer.rwnd = rwnd;
710	/* Has been accepted for transmission. */
711	if (!asoc->peer.prsctp_capable)
712		chunk->msg->can_abandon = 0;
713	sctp_chunk_assign_tsn(chunk);
714	sctp_chunk_assign_ssn(chunk);
715}
716
717static sctp_xmit_t sctp_packet_will_fit(struct sctp_packet *packet,
718					struct sctp_chunk *chunk,
719					u16 chunk_len)
720{
721	size_t psize;
722	size_t pmtu;
723	int too_big;
724	sctp_xmit_t retval = SCTP_XMIT_OK;
 
 
 
 
 
 
 
 
725
726	psize = packet->size;
727	pmtu  = ((packet->transport->asoc) ?
728		(packet->transport->asoc->pathmtu) :
729		(packet->transport->pathmtu));
730
731	too_big = (psize + chunk_len > pmtu);
732
733	/* Decide if we need to fragment or resubmit later. */
734	if (too_big) {
735		/* It's OK to fragmet at IP level if any one of the following
736		 * is true:
737		 * 	1. The packet is empty (meaning this chunk is greater
738		 * 	   the MTU)
739		 * 	2. The chunk we are adding is a control chunk
740		 * 	3. The packet doesn't have any data in it yet and data
741		 * 	requires authentication.
742		 */
743		if (sctp_packet_empty(packet) || !sctp_chunk_is_data(chunk) ||
744		    (!packet->has_data && chunk->auth)) {
745			/* We no longer do re-fragmentation.
746			 * Just fragment at the IP layer, if we
747			 * actually hit this condition
748			 */
749			packet->ipfragok = 1;
750		} else {
 
 
 
 
 
 
 
 
 
 
 
751			retval = SCTP_XMIT_PMTU_FULL;
752		}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753	}
754
 
755	return retval;
756}