blob: ccb6dc48d15b6ecf123887cd23d00ffec1ec3c4a [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (c) 1999-2000 Cisco, Inc.
3 * Copyright (c) 1999-2001 Motorola, Inc.
4 * Copyright (c) 2002 International Business Machines, Corp.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05006 * This file is part of the SCTP kernel implementation
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * These functions are the methods for accessing the SCTP inqueue.
9 *
10 * An SCTP inqueue is a queue into which you push SCTP packets
11 * (which might be bundles or fragments of chunks) and out of which you
12 * pop SCTP whole chunks.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090013 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050014 * This SCTP implementation is free software;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090015 * you can redistribute it and/or modify it under the terms of
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * the GNU General Public License as published by
17 * the Free Software Foundation; either version 2, or (at your option)
18 * any later version.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090019 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050020 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
22 * ************************
23 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
24 * See the GNU General Public License for more details.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090025 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * You should have received a copy of the GNU General Public License
27 * along with GNU CC; see the file COPYING. If not, write to
28 * the Free Software Foundation, 59 Temple Place - Suite 330,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090029 * Boston, MA 02111-1307, USA.
30 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * Please send any bug reports or fixes you make to the
32 * email address(es):
33 * lksctp developers <lksctp-developers@lists.sourceforge.net>
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090034 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * Or submit a bug report through the following website:
36 * http://www.sf.net/projects/lksctp
37 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090038 * Written or modified by:
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * La Monte H.P. Yarroll <piggy@acm.org>
40 * Karl Knutson <karl@athena.chicago.il.us>
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090041 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * Any bugs reported given to us we will try to fix... any fixes shared will
43 * be incorporated into the next SCTP release.
44 */
45
46#include <net/sctp/sctp.h>
47#include <net/sctp/sm.h>
48#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/* Initialize an SCTP inqueue. */
52void sctp_inq_init(struct sctp_inq *queue)
53{
David S. Miller79af02c2005-07-08 21:47:49 -070054 INIT_LIST_HEAD(&queue->in_chunk_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 queue->in_progress = NULL;
56
57 /* Create a task for delivering data. */
David Howellsc4028952006-11-22 14:57:56 +000058 INIT_WORK(&queue->immediate, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 queue->malloced = 0;
61}
62
63/* Release the memory associated with an SCTP inqueue. */
64void sctp_inq_free(struct sctp_inq *queue)
65{
David S. Miller79af02c2005-07-08 21:47:49 -070066 struct sctp_chunk *chunk, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 /* Empty the queue. */
David S. Miller79af02c2005-07-08 21:47:49 -070069 list_for_each_entry_safe(chunk, tmp, &queue->in_chunk_list, list) {
70 list_del_init(&chunk->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 sctp_chunk_free(chunk);
David S. Miller79af02c2005-07-08 21:47:49 -070072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 /* If there is a packet which is currently being worked on,
75 * free it as well.
76 */
Sridhar Samudrala7a48f922006-01-17 11:51:28 -080077 if (queue->in_progress) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 sctp_chunk_free(queue->in_progress);
Sridhar Samudrala7a48f922006-01-17 11:51:28 -080079 queue->in_progress = NULL;
80 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 if (queue->malloced) {
83 /* Dump the master memory segment. */
84 kfree(queue);
85 }
86}
87
88/* Put a new packet in an SCTP inqueue.
89 * We assume that packet->sctp_hdr is set and in host byte order.
90 */
Sridhar Samudralaac0b0462006-08-22 00:15:33 -070091void sctp_inq_push(struct sctp_inq *q, struct sctp_chunk *chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
93 /* Directly call the packet handling routine. */
Vlad Yasevich027f6e12007-11-07 11:39:27 -050094 if (chunk->rcvr->dead) {
95 sctp_chunk_free(chunk);
96 return;
97 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 /* We are now calling this either from the soft interrupt
100 * or from the backlog processing.
101 * Eventually, we should clean up inqueue to not rely
102 * on the BH related data structures.
103 */
Sridhar Samudralaac0b0462006-08-22 00:15:33 -0700104 list_add_tail(&chunk->list, &q->in_chunk_list);
David Howellsc4028952006-11-22 14:57:56 +0000105 q->immediate.func(&q->immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700108/* Peek at the next chunk on the inqeue. */
109struct sctp_chunkhdr *sctp_inq_peek(struct sctp_inq *queue)
110{
111 struct sctp_chunk *chunk;
112 sctp_chunkhdr_t *ch = NULL;
113
114 chunk = queue->in_progress;
115 /* If there is no more chunks in this packet, say so */
116 if (chunk->singleton ||
117 chunk->end_of_packet ||
118 chunk->pdiscard)
119 return NULL;
120
121 ch = (sctp_chunkhdr_t *)chunk->chunk_end;
122
123 return ch;
124}
125
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/* Extract a chunk from an SCTP inqueue.
128 *
129 * WARNING: If you need to put the chunk on another queue, you need to
130 * make a shallow copy (clone) of it.
131 */
132struct sctp_chunk *sctp_inq_pop(struct sctp_inq *queue)
133{
134 struct sctp_chunk *chunk;
135 sctp_chunkhdr_t *ch = NULL;
136
137 /* The assumption is that we are safe to process the chunks
138 * at this time.
139 */
140
141 if ((chunk = queue->in_progress)) {
142 /* There is a packet that we have been working on.
143 * Any post processing work to do before we move on?
144 */
145 if (chunk->singleton ||
146 chunk->end_of_packet ||
147 chunk->pdiscard) {
148 sctp_chunk_free(chunk);
149 chunk = queue->in_progress = NULL;
150 } else {
151 /* Nothing to do. Next chunk in the packet, please. */
152 ch = (sctp_chunkhdr_t *) chunk->chunk_end;
153
154 /* Force chunk->skb->data to chunk->chunk_end. */
155 skb_pull(chunk->skb,
156 chunk->chunk_end - chunk->skb->data);
Vlad Yasevicha09c8382007-09-05 15:53:58 -0400157
158 /* Verify that we have at least chunk headers
159 * worth of buffer left.
160 */
161 if (skb_headlen(chunk->skb) < sizeof(sctp_chunkhdr_t)) {
162 sctp_chunk_free(chunk);
163 chunk = queue->in_progress = NULL;
164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166 }
167
168 /* Do we need to take the next packet out of the queue to process? */
169 if (!chunk) {
David S. Miller79af02c2005-07-08 21:47:49 -0700170 struct list_head *entry;
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* Is the queue empty? */
David S. Miller79af02c2005-07-08 21:47:49 -0700173 if (list_empty(&queue->in_chunk_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return NULL;
175
David S. Miller79af02c2005-07-08 21:47:49 -0700176 entry = queue->in_chunk_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 chunk = queue->in_progress =
David S. Miller79af02c2005-07-08 21:47:49 -0700178 list_entry(entry, struct sctp_chunk, list);
179 list_del_init(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 /* This is the first chunk in the packet. */
182 chunk->singleton = 1;
183 ch = (sctp_chunkhdr_t *) chunk->skb->data;
Neil Horman7c3ceb4f2006-05-05 17:02:09 -0700184 chunk->data_accepted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900187 chunk->chunk_hdr = ch;
188 chunk->chunk_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 /* In the unlikely case of an IP reassembly, the skb could be
190 * non-linear. If so, update chunk_end so that it doesn't go past
191 * the skb->tail.
192 */
193 if (unlikely(skb_is_nonlinear(chunk->skb))) {
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700194 if (chunk->chunk_end > skb_tail_pointer(chunk->skb))
195 chunk->chunk_end = skb_tail_pointer(chunk->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197 skb_pull(chunk->skb, sizeof(sctp_chunkhdr_t));
198 chunk->subh.v = NULL; /* Subheader is no longer valid. */
199
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700200 if (chunk->chunk_end < skb_tail_pointer(chunk->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /* This is not a singleton */
202 chunk->singleton = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700203 } else if (chunk->chunk_end > skb_tail_pointer(chunk->skb)) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900204 /* RFC 2960, Section 6.10 Bundling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 *
206 * Partial chunks MUST NOT be placed in an SCTP packet.
207 * If the receiver detects a partial chunk, it MUST drop
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900208 * the chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 *
210 * Since the end of the chunk is past the end of our buffer
211 * (which contains the whole packet, we can freely discard
212 * the whole packet.
213 */
214 sctp_chunk_free(chunk);
215 chunk = queue->in_progress = NULL;
216
217 return NULL;
218 } else {
219 /* We are at the end of the packet, so mark the chunk
220 * in case we need to send a SACK.
221 */
222 chunk->end_of_packet = 1;
223 }
224
225 SCTP_DEBUG_PRINTK("+++sctp_inq_pop+++ chunk %p[%s],"
226 " length %d, skb->len %d\n",chunk,
227 sctp_cname(SCTP_ST_CHUNK(chunk->chunk_hdr->type)),
228 ntohs(chunk->chunk_hdr->length), chunk->skb->len);
229 return chunk;
230}
231
232/* Set a top-half handler.
233 *
234 * Originally, we the top-half handler was scheduled as a BH. We now
235 * call the handler directly in sctp_inq_push() at a time that
236 * we know we are lock safe.
237 * The intent is that this routine will pull stuff out of the
238 * inqueue and process it.
239 */
David Howellsc4028952006-11-22 14:57:56 +0000240void sctp_inq_set_th_handler(struct sctp_inq *q, work_func_t callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
David Howellsc4028952006-11-22 14:57:56 +0000242 INIT_WORK(&q->immediate, callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244