blob: ca907f2f5e5ae1311fde4d8e936096c05235b31e [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 * Copyright (c) 2001 Intel Corp.
6 * Copyright (c) 2001 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
8 *
9 * These functions manipulate an sctp event. The struct ulpevent is used
10 * to carry notifications and data to the ULP (sockets).
Vlad Yasevich60c778b2008-01-11 09:57:09 -050011 *
12 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * you can redistribute it and/or modify it under the terms of
14 * the GNU General Public License as published by
15 * the Free Software Foundation; either version 2, or (at your option)
16 * any later version.
17 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050018 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
20 * ************************
21 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 * See the GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with GNU CC; see the file COPYING. If not, write to
26 * the Free Software Foundation, 59 Temple Place - Suite 330,
27 * Boston, MA 02111-1307, USA.
28 *
29 * Please send any bug reports or fixes you make to the
30 * email address(es):
31 * lksctp developers <lksctp-developers@lists.sourceforge.net>
32 *
33 * Or submit a bug report through the following website:
34 * http://www.sf.net/projects/lksctp
35 *
36 * Written or modified by:
37 * Jon Grimm <jgrimm@us.ibm.com>
38 * La Monte H.P. Yarroll <piggy@acm.org>
39 * Ardelle Fan <ardelle.fan@intel.com>
40 * Sridhar Samudrala <sri@us.ibm.com>
41 *
42 * 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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/types.h>
48#include <linux/skbuff.h>
49#include <net/sctp/structs.h>
50#include <net/sctp/sctp.h>
51#include <net/sctp/sm.h>
52
53static void sctp_ulpevent_receive_data(struct sctp_ulpevent *event,
54 struct sctp_association *asoc);
55static void sctp_ulpevent_release_data(struct sctp_ulpevent *event);
Tsutomu Fujiid7c2c9e2006-06-17 22:58:28 -070056static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* Initialize an ULP event from an given skb. */
Vlad Yasevich331c4ee2006-10-09 21:34:04 -070060SCTP_STATIC void sctp_ulpevent_init(struct sctp_ulpevent *event,
61 int msg_flags,
62 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 memset(event, 0, sizeof(struct sctp_ulpevent));
65 event->msg_flags = msg_flags;
Vlad Yasevich331c4ee2006-10-09 21:34:04 -070066 event->rmem_len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69/* Create a new sctp_ulpevent. */
70SCTP_STATIC struct sctp_ulpevent *sctp_ulpevent_new(int size, int msg_flags,
Al Virodd0fc662005-10-07 07:46:04 +010071 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
73 struct sctp_ulpevent *event;
74 struct sk_buff *skb;
75
76 skb = alloc_skb(size, gfp);
77 if (!skb)
78 goto fail;
79
80 event = sctp_skb2event(skb);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -070081 sctp_ulpevent_init(event, msg_flags, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 return event;
84
85fail:
86 return NULL;
87}
88
89/* Is this a MSG_NOTIFICATION? */
90int sctp_ulpevent_is_notification(const struct sctp_ulpevent *event)
91{
92 return MSG_NOTIFICATION == (event->msg_flags & MSG_NOTIFICATION);
93}
94
95/* Hold the association in case the msg_name needs read out of
96 * the association.
97 */
98static inline void sctp_ulpevent_set_owner(struct sctp_ulpevent *event,
99 const struct sctp_association *asoc)
100{
101 struct sk_buff *skb;
102
103 /* Cast away the const, as we are just wanting to
104 * bump the reference count.
105 */
106 sctp_association_hold((struct sctp_association *)asoc);
107 skb = sctp_event2skb(event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 event->asoc = (struct sctp_association *)asoc;
Vlad Yasevich331c4ee2006-10-09 21:34:04 -0700109 atomic_add(event->rmem_len, &event->asoc->rmem_alloc);
110 sctp_skb_set_owner_r(skb, asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113/* A simple destructor to give up the reference to the association. */
114static inline void sctp_ulpevent_release_owner(struct sctp_ulpevent *event)
115{
Neil Horman049b3ff2005-11-11 16:08:24 -0800116 struct sctp_association *asoc = event->asoc;
Neil Horman049b3ff2005-11-11 16:08:24 -0800117
Vlad Yasevich331c4ee2006-10-09 21:34:04 -0700118 atomic_sub(event->rmem_len, &asoc->rmem_alloc);
Neil Horman049b3ff2005-11-11 16:08:24 -0800119 sctp_association_put(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122/* Create and initialize an SCTP_ASSOC_CHANGE event.
123 *
124 * 5.3.1.1 SCTP_ASSOC_CHANGE
125 *
126 * Communication notifications inform the ULP that an SCTP association
127 * has either begun or ended. The identifier for a new association is
128 * provided by this notification.
129 *
130 * Note: There is no field checking here. If a field is unused it will be
131 * zero'd out.
132 */
133struct sctp_ulpevent *sctp_ulpevent_make_assoc_change(
134 const struct sctp_association *asoc,
135 __u16 flags, __u16 state, __u16 error, __u16 outbound,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700136 __u16 inbound, struct sctp_chunk *chunk, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 struct sctp_ulpevent *event;
139 struct sctp_assoc_change *sac;
140 struct sk_buff *skb;
141
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700142 /* If the lower layer passed in the chunk, it will be
143 * an ABORT, so we need to include it in the sac_info.
144 */
145 if (chunk) {
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700146 /* Copy the chunk data to a new skb and reserve enough
147 * head room to use as notification.
148 */
149 skb = skb_copy_expand(chunk->skb,
150 sizeof(struct sctp_assoc_change), 0, gfp);
151
152 if (!skb)
153 goto fail;
154
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700155 /* Embed the event fields inside the cloned skb. */
156 event = sctp_skb2event(skb);
157 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
158
159 /* Include the notification structure */
160 sac = (struct sctp_assoc_change *)
161 skb_push(skb, sizeof(struct sctp_assoc_change));
162
163 /* Trim the buffer to the right length. */
164 skb_trim(skb, sizeof(struct sctp_assoc_change) +
Vlad Yasevichac40e412007-05-09 13:52:35 -0700165 ntohs(chunk->chunk_hdr->length) -
166 sizeof(sctp_chunkhdr_t));
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700167 } else {
168 event = sctp_ulpevent_new(sizeof(struct sctp_assoc_change),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 MSG_NOTIFICATION, gfp);
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700170 if (!event)
171 goto fail;
172
173 skb = sctp_event2skb(event);
174 sac = (struct sctp_assoc_change *) skb_put(skb,
175 sizeof(struct sctp_assoc_change));
176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 /* Socket Extensions for SCTP
179 * 5.3.1.1 SCTP_ASSOC_CHANGE
180 *
181 * sac_type:
182 * It should be SCTP_ASSOC_CHANGE.
183 */
184 sac->sac_type = SCTP_ASSOC_CHANGE;
185
186 /* Socket Extensions for SCTP
187 * 5.3.1.1 SCTP_ASSOC_CHANGE
188 *
189 * sac_state: 32 bits (signed integer)
190 * This field holds one of a number of values that communicate the
191 * event that happened to the association.
192 */
193 sac->sac_state = state;
194
195 /* Socket Extensions for SCTP
196 * 5.3.1.1 SCTP_ASSOC_CHANGE
197 *
198 * sac_flags: 16 bits (unsigned integer)
199 * Currently unused.
200 */
201 sac->sac_flags = 0;
202
203 /* Socket Extensions for SCTP
204 * 5.3.1.1 SCTP_ASSOC_CHANGE
205 *
206 * sac_length: sizeof (__u32)
207 * This field is the total length of the notification data, including
208 * the notification header.
209 */
Vlad Yasevichb90a1372008-02-14 10:18:20 -0500210 sac->sac_length = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 /* Socket Extensions for SCTP
213 * 5.3.1.1 SCTP_ASSOC_CHANGE
214 *
215 * sac_error: 32 bits (signed integer)
216 *
217 * If the state was reached due to a error condition (e.g.
218 * COMMUNICATION_LOST) any relevant error information is available in
219 * this field. This corresponds to the protocol error codes defined in
220 * [SCTP].
221 */
222 sac->sac_error = error;
223
224 /* Socket Extensions for SCTP
225 * 5.3.1.1 SCTP_ASSOC_CHANGE
226 *
227 * sac_outbound_streams: 16 bits (unsigned integer)
228 * sac_inbound_streams: 16 bits (unsigned integer)
229 *
230 * The maximum number of streams allowed in each direction are
231 * available in sac_outbound_streams and sac_inbound streams.
232 */
233 sac->sac_outbound_streams = outbound;
234 sac->sac_inbound_streams = inbound;
235
236 /* Socket Extensions for SCTP
237 * 5.3.1.1 SCTP_ASSOC_CHANGE
238 *
239 * sac_assoc_id: sizeof (sctp_assoc_t)
240 *
241 * The association id field, holds the identifier for the association.
242 * All notifications for a given association have the same association
243 * identifier. For TCP style socket, this field is ignored.
244 */
245 sctp_ulpevent_set_owner(event, asoc);
246 sac->sac_assoc_id = sctp_assoc2id(asoc);
247
248 return event;
249
250fail:
251 return NULL;
252}
253
254/* Create and initialize an SCTP_PEER_ADDR_CHANGE event.
255 *
256 * Socket Extensions for SCTP - draft-01
257 * 5.3.1.2 SCTP_PEER_ADDR_CHANGE
258 *
259 * When a destination address on a multi-homed peer encounters a change
260 * an interface details event is sent.
261 */
262struct sctp_ulpevent *sctp_ulpevent_make_peer_addr_change(
263 const struct sctp_association *asoc,
264 const struct sockaddr_storage *aaddr,
Al Virodd0fc662005-10-07 07:46:04 +0100265 int flags, int state, int error, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 struct sctp_ulpevent *event;
268 struct sctp_paddr_change *spc;
269 struct sk_buff *skb;
270
271 event = sctp_ulpevent_new(sizeof(struct sctp_paddr_change),
272 MSG_NOTIFICATION, gfp);
273 if (!event)
274 goto fail;
275
276 skb = sctp_event2skb(event);
277 spc = (struct sctp_paddr_change *)
278 skb_put(skb, sizeof(struct sctp_paddr_change));
279
280 /* Sockets API Extensions for SCTP
281 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
282 *
283 * spc_type:
284 *
285 * It should be SCTP_PEER_ADDR_CHANGE.
286 */
287 spc->spc_type = SCTP_PEER_ADDR_CHANGE;
288
289 /* Sockets API Extensions for SCTP
290 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
291 *
292 * spc_length: sizeof (__u32)
293 *
294 * This field is the total length of the notification data, including
295 * the notification header.
296 */
297 spc->spc_length = sizeof(struct sctp_paddr_change);
298
299 /* Sockets API Extensions for SCTP
300 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
301 *
302 * spc_flags: 16 bits (unsigned integer)
303 * Currently unused.
304 */
305 spc->spc_flags = 0;
306
307 /* Sockets API Extensions for SCTP
308 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
309 *
310 * spc_state: 32 bits (signed integer)
311 *
312 * This field holds one of a number of values that communicate the
313 * event that happened to the address.
314 */
315 spc->spc_state = state;
316
317 /* Sockets API Extensions for SCTP
318 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
319 *
320 * spc_error: 32 bits (signed integer)
321 *
322 * If the state was reached due to any error condition (e.g.
323 * ADDRESS_UNREACHABLE) any relevant error information is available in
324 * this field.
325 */
326 spc->spc_error = error;
327
328 /* Socket Extensions for SCTP
329 * 5.3.1.1 SCTP_ASSOC_CHANGE
330 *
331 * spc_assoc_id: sizeof (sctp_assoc_t)
332 *
333 * The association id field, holds the identifier for the association.
334 * All notifications for a given association have the same association
335 * identifier. For TCP style socket, this field is ignored.
336 */
337 sctp_ulpevent_set_owner(event, asoc);
338 spc->spc_assoc_id = sctp_assoc2id(asoc);
339
340 /* Sockets API Extensions for SCTP
341 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
342 *
343 * spc_aaddr: sizeof (struct sockaddr_storage)
344 *
345 * The affected address field, holds the remote peer's address that is
346 * encountering the change of state.
347 */
348 memcpy(&spc->spc_aaddr, aaddr, sizeof(struct sockaddr_storage));
349
350 /* Map ipv4 address into v4-mapped-on-v6 address. */
351 sctp_get_pf_specific(asoc->base.sk->sk_family)->addr_v4map(
352 sctp_sk(asoc->base.sk),
353 (union sctp_addr *)&spc->spc_aaddr);
354
355 return event;
356
357fail:
358 return NULL;
359}
360
361/* Create and initialize an SCTP_REMOTE_ERROR notification.
362 *
363 * Note: This assumes that the chunk->skb->data already points to the
364 * operation error payload.
365 *
366 * Socket Extensions for SCTP - draft-01
367 * 5.3.1.3 SCTP_REMOTE_ERROR
368 *
369 * A remote peer may send an Operational Error message to its peer.
370 * This message indicates a variety of error conditions on an
371 * association. The entire error TLV as it appears on the wire is
372 * included in a SCTP_REMOTE_ERROR event. Please refer to the SCTP
373 * specification [SCTP] and any extensions for a list of possible
374 * error formats.
375 */
Daniel Borkmannb3b3ba52014-07-12 20:30:35 +0200376struct sctp_ulpevent *
377sctp_ulpevent_make_remote_error(const struct sctp_association *asoc,
378 struct sctp_chunk *chunk, __u16 flags,
379 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 struct sctp_ulpevent *event;
382 struct sctp_remote_error *sre;
383 struct sk_buff *skb;
384 sctp_errhdr_t *ch;
Al Viro9f81bcd2006-11-20 17:26:34 -0800385 __be16 cause;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 int elen;
387
388 ch = (sctp_errhdr_t *)(chunk->skb->data);
389 cause = ch->cause;
390 elen = WORD_ROUND(ntohs(ch->length)) - sizeof(sctp_errhdr_t);
391
392 /* Pull off the ERROR header. */
393 skb_pull(chunk->skb, sizeof(sctp_errhdr_t));
394
395 /* Copy the skb to a new skb with room for us to prepend
396 * notification with.
397 */
Daniel Borkmannb3b3ba52014-07-12 20:30:35 +0200398 skb = skb_copy_expand(chunk->skb, sizeof(*sre), 0, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 /* Pull off the rest of the cause TLV from the chunk. */
401 skb_pull(chunk->skb, elen);
402 if (!skb)
403 goto fail;
404
405 /* Embed the event fields inside the cloned skb. */
406 event = sctp_skb2event(skb);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -0700407 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Daniel Borkmannb3b3ba52014-07-12 20:30:35 +0200409 sre = (struct sctp_remote_error *) skb_push(skb, sizeof(*sre));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* Trim the buffer to the right length. */
Daniel Borkmannb3b3ba52014-07-12 20:30:35 +0200412 skb_trim(skb, sizeof(*sre) + elen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Daniel Borkmannb3b3ba52014-07-12 20:30:35 +0200414 /* RFC6458, Section 6.1.3. SCTP_REMOTE_ERROR */
415 memset(sre, 0, sizeof(*sre));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 sre->sre_type = SCTP_REMOTE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 sre->sre_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 sre->sre_length = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 sre->sre_error = cause;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 sctp_ulpevent_set_owner(event, asoc);
421 sre->sre_assoc_id = sctp_assoc2id(asoc);
422
423 return event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424fail:
425 return NULL;
426}
427
428/* Create and initialize a SCTP_SEND_FAILED notification.
429 *
430 * Socket Extensions for SCTP - draft-01
431 * 5.3.1.4 SCTP_SEND_FAILED
432 */
433struct sctp_ulpevent *sctp_ulpevent_make_send_failed(
434 const struct sctp_association *asoc, struct sctp_chunk *chunk,
Al Virodd0fc662005-10-07 07:46:04 +0100435 __u16 flags, __u32 error, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct sctp_ulpevent *event;
438 struct sctp_send_failed *ssf;
439 struct sk_buff *skb;
440
441 /* Pull off any padding. */
442 int len = ntohs(chunk->chunk_hdr->length);
443
444 /* Make skb with more room so we can prepend notification. */
445 skb = skb_copy_expand(chunk->skb,
446 sizeof(struct sctp_send_failed), /* headroom */
447 0, /* tailroom */
448 gfp);
449 if (!skb)
450 goto fail;
451
452 /* Pull off the common chunk header and DATA header. */
453 skb_pull(skb, sizeof(struct sctp_data_chunk));
454 len -= sizeof(struct sctp_data_chunk);
455
456 /* Embed the event fields inside the cloned skb. */
457 event = sctp_skb2event(skb);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -0700458 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 ssf = (struct sctp_send_failed *)
461 skb_push(skb, sizeof(struct sctp_send_failed));
462
463 /* Socket Extensions for SCTP
464 * 5.3.1.4 SCTP_SEND_FAILED
465 *
466 * ssf_type:
467 * It should be SCTP_SEND_FAILED.
468 */
469 ssf->ssf_type = SCTP_SEND_FAILED;
470
471 /* Socket Extensions for SCTP
472 * 5.3.1.4 SCTP_SEND_FAILED
473 *
474 * ssf_flags: 16 bits (unsigned integer)
475 * The flag value will take one of the following values
476 *
477 * SCTP_DATA_UNSENT - Indicates that the data was never put on
478 * the wire.
479 *
480 * SCTP_DATA_SENT - Indicates that the data was put on the wire.
481 * Note that this does not necessarily mean that the
482 * data was (or was not) successfully delivered.
483 */
484 ssf->ssf_flags = flags;
485
486 /* Socket Extensions for SCTP
487 * 5.3.1.4 SCTP_SEND_FAILED
488 *
489 * ssf_length: sizeof (__u32)
490 * This field is the total length of the notification data, including
491 * the notification header.
492 */
493 ssf->ssf_length = sizeof(struct sctp_send_failed) + len;
494 skb_trim(skb, ssf->ssf_length);
495
496 /* Socket Extensions for SCTP
497 * 5.3.1.4 SCTP_SEND_FAILED
498 *
499 * ssf_error: 16 bits (unsigned integer)
500 * This value represents the reason why the send failed, and if set,
501 * will be a SCTP protocol error code as defined in [SCTP] section
502 * 3.3.10.
503 */
504 ssf->ssf_error = error;
505
506 /* Socket Extensions for SCTP
507 * 5.3.1.4 SCTP_SEND_FAILED
508 *
509 * ssf_info: sizeof (struct sctp_sndrcvinfo)
510 * The original send information associated with the undelivered
511 * message.
512 */
513 memcpy(&ssf->ssf_info, &chunk->sinfo, sizeof(struct sctp_sndrcvinfo));
514
515 /* Per TSVWG discussion with Randy. Allow the application to
Lucas De Marchie9c54992011-04-26 23:28:26 -0700516 * reassemble a fragmented message.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 */
518 ssf->ssf_info.sinfo_flags = chunk->chunk_hdr->flags;
519
520 /* Socket Extensions for SCTP
521 * 5.3.1.4 SCTP_SEND_FAILED
522 *
523 * ssf_assoc_id: sizeof (sctp_assoc_t)
524 * The association id field, sf_assoc_id, holds the identifier for the
525 * association. All notifications for a given association have the
526 * same association identifier. For TCP style socket, this field is
527 * ignored.
528 */
529 sctp_ulpevent_set_owner(event, asoc);
530 ssf->ssf_assoc_id = sctp_assoc2id(asoc);
531 return event;
532
533fail:
534 return NULL;
535}
536
537/* Create and initialize a SCTP_SHUTDOWN_EVENT notification.
538 *
539 * Socket Extensions for SCTP - draft-01
540 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
541 */
542struct sctp_ulpevent *sctp_ulpevent_make_shutdown_event(
543 const struct sctp_association *asoc,
Al Virodd0fc662005-10-07 07:46:04 +0100544 __u16 flags, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 struct sctp_ulpevent *event;
547 struct sctp_shutdown_event *sse;
548 struct sk_buff *skb;
549
550 event = sctp_ulpevent_new(sizeof(struct sctp_shutdown_event),
551 MSG_NOTIFICATION, gfp);
552 if (!event)
553 goto fail;
554
555 skb = sctp_event2skb(event);
556 sse = (struct sctp_shutdown_event *)
557 skb_put(skb, sizeof(struct sctp_shutdown_event));
558
559 /* Socket Extensions for SCTP
560 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
561 *
562 * sse_type
563 * It should be SCTP_SHUTDOWN_EVENT
564 */
565 sse->sse_type = SCTP_SHUTDOWN_EVENT;
566
567 /* Socket Extensions for SCTP
568 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
569 *
570 * sse_flags: 16 bits (unsigned integer)
571 * Currently unused.
572 */
573 sse->sse_flags = 0;
574
575 /* Socket Extensions for SCTP
576 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
577 *
578 * sse_length: sizeof (__u32)
579 * This field is the total length of the notification data, including
580 * the notification header.
581 */
582 sse->sse_length = sizeof(struct sctp_shutdown_event);
583
584 /* Socket Extensions for SCTP
585 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
586 *
587 * sse_assoc_id: sizeof (sctp_assoc_t)
588 * The association id field, holds the identifier for the association.
589 * All notifications for a given association have the same association
590 * identifier. For TCP style socket, this field is ignored.
591 */
592 sctp_ulpevent_set_owner(event, asoc);
593 sse->sse_assoc_id = sctp_assoc2id(asoc);
594
595 return event;
596
597fail:
598 return NULL;
599}
600
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800601/* Create and initialize a SCTP_ADAPTATION_INDICATION notification.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 *
603 * Socket Extensions for SCTP
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800604 * 5.3.1.6 SCTP_ADAPTATION_INDICATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800606struct sctp_ulpevent *sctp_ulpevent_make_adaptation_indication(
Al Virodd0fc662005-10-07 07:46:04 +0100607 const struct sctp_association *asoc, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
609 struct sctp_ulpevent *event;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800610 struct sctp_adaptation_event *sai;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 struct sk_buff *skb;
612
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800613 event = sctp_ulpevent_new(sizeof(struct sctp_adaptation_event),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 MSG_NOTIFICATION, gfp);
615 if (!event)
616 goto fail;
617
618 skb = sctp_event2skb(event);
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800619 sai = (struct sctp_adaptation_event *)
620 skb_put(skb, sizeof(struct sctp_adaptation_event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800622 sai->sai_type = SCTP_ADAPTATION_INDICATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 sai->sai_flags = 0;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800624 sai->sai_length = sizeof(struct sctp_adaptation_event);
625 sai->sai_adaptation_ind = asoc->peer.adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 sctp_ulpevent_set_owner(event, asoc);
627 sai->sai_assoc_id = sctp_assoc2id(asoc);
628
629 return event;
630
631fail:
632 return NULL;
633}
634
635/* A message has been received. Package this message as a notification
636 * to pass it to the upper layers. Go ahead and calculate the sndrcvinfo
637 * even if filtered out later.
638 *
639 * Socket Extensions for SCTP
640 * 5.2.2 SCTP Header Information Structure (SCTP_SNDRCV)
641 */
642struct sctp_ulpevent *sctp_ulpevent_make_rcvmsg(struct sctp_association *asoc,
643 struct sctp_chunk *chunk,
Al Virodd0fc662005-10-07 07:46:04 +0100644 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 struct sctp_ulpevent *event = NULL;
647 struct sk_buff *skb;
648 size_t padding, len;
Neil Horman4d93df02007-08-15 16:07:44 -0700649 int rx_count;
650
651 /*
652 * check to see if we need to make space for this
653 * new skb, expand the rcvbuffer if needed, or drop
654 * the frame
655 */
656 if (asoc->ep->rcvbuf_policy)
657 rx_count = atomic_read(&asoc->rmem_alloc);
658 else
659 rx_count = atomic_read(&asoc->base.sk->sk_rmem_alloc);
660
661 if (rx_count >= asoc->base.sk->sk_rcvbuf) {
662
663 if ((asoc->base.sk->sk_userlocks & SOCK_RCVBUF_LOCK) ||
Mel Gormanc76562b2012-07-31 16:44:41 -0700664 (!sk_rmem_schedule(asoc->base.sk, chunk->skb,
665 chunk->skb->truesize)))
Neil Horman4d93df02007-08-15 16:07:44 -0700666 goto fail;
667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 /* Clone the original skb, sharing the data. */
670 skb = skb_clone(chunk->skb, gfp);
671 if (!skb)
672 goto fail;
673
Vlad Yasevich3888e9e2008-07-08 02:28:39 -0700674 /* Now that all memory allocations for this chunk succeeded, we
675 * can mark it as received so the tsn_map is updated correctly.
676 */
Vlad Yasevich8e1ee182008-10-08 14:18:39 -0700677 if (sctp_tsnmap_mark(&asoc->peer.tsn_map,
Neil Horman42448542012-06-30 03:04:26 +0000678 ntohl(chunk->subh.data_hdr->tsn),
679 chunk->transport))
Vlad Yasevich8e1ee182008-10-08 14:18:39 -0700680 goto fail_mark;
Vlad Yasevich3888e9e2008-07-08 02:28:39 -0700681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /* First calculate the padding, so we don't inadvertently
683 * pass up the wrong length to the user.
684 *
685 * RFC 2960 - Section 3.2 Chunk Field Descriptions
686 *
687 * The total length of a chunk(including Type, Length and Value fields)
688 * MUST be a multiple of 4 bytes. If the length of the chunk is not a
689 * multiple of 4 bytes, the sender MUST pad the chunk with all zero
690 * bytes and this padding is not included in the chunk length field.
691 * The sender should never pad with more than 3 bytes. The receiver
692 * MUST ignore the padding bytes.
693 */
694 len = ntohs(chunk->chunk_hdr->length);
695 padding = WORD_ROUND(len) - len;
696
697 /* Fixup cloned skb with just this chunks data. */
698 skb_trim(skb, chunk->chunk_end - padding - skb->data);
699
700 /* Embed the event fields inside the cloned skb. */
701 event = sctp_skb2event(skb);
702
Vlad Yasevich331c4ee2006-10-09 21:34:04 -0700703 /* Initialize event with flags 0 and correct length
704 * Since this is a clone of the original skb, only account for
705 * the data of this chunk as other chunks will be accounted separately.
706 */
707 sctp_ulpevent_init(event, 0, skb->len + sizeof(struct sk_buff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 sctp_ulpevent_receive_data(event, asoc);
710
711 event->stream = ntohs(chunk->subh.data_hdr->stream);
712 event->ssn = ntohs(chunk->subh.data_hdr->ssn);
713 event->ppid = chunk->subh.data_hdr->ppid;
714 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) {
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -0700715 event->flags |= SCTP_UNORDERED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 event->cumtsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
717 }
718 event->tsn = ntohl(chunk->subh.data_hdr->tsn);
719 event->msg_flags |= chunk->chunk_hdr->flags;
720 event->iif = sctp_chunk_iif(chunk);
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return event;
Vlad Yasevich8e1ee182008-10-08 14:18:39 -0700723
724fail_mark:
725 kfree_skb(skb);
726fail:
727 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730/* Create a partial delivery related event.
731 *
732 * 5.3.1.7 SCTP_PARTIAL_DELIVERY_EVENT
733 *
734 * When a receiver is engaged in a partial delivery of a
735 * message this notification will be used to indicate
736 * various events.
737 */
738struct sctp_ulpevent *sctp_ulpevent_make_pdapi(
Alexey Dobriyan3182cd82005-07-11 20:57:47 -0700739 const struct sctp_association *asoc, __u32 indication,
Al Virodd0fc662005-10-07 07:46:04 +0100740 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 struct sctp_ulpevent *event;
743 struct sctp_pdapi_event *pd;
744 struct sk_buff *skb;
745
746 event = sctp_ulpevent_new(sizeof(struct sctp_pdapi_event),
747 MSG_NOTIFICATION, gfp);
748 if (!event)
749 goto fail;
750
751 skb = sctp_event2skb(event);
752 pd = (struct sctp_pdapi_event *)
753 skb_put(skb, sizeof(struct sctp_pdapi_event));
754
755 /* pdapi_type
756 * It should be SCTP_PARTIAL_DELIVERY_EVENT
757 *
758 * pdapi_flags: 16 bits (unsigned integer)
759 * Currently unused.
760 */
761 pd->pdapi_type = SCTP_PARTIAL_DELIVERY_EVENT;
762 pd->pdapi_flags = 0;
763
764 /* pdapi_length: 32 bits (unsigned integer)
765 *
766 * This field is the total length of the notification data, including
767 * the notification header. It will generally be sizeof (struct
768 * sctp_pdapi_event).
769 */
770 pd->pdapi_length = sizeof(struct sctp_pdapi_event);
771
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900772 /* pdapi_indication: 32 bits (unsigned integer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 *
774 * This field holds the indication being sent to the application.
775 */
776 pd->pdapi_indication = indication;
777
778 /* pdapi_assoc_id: sizeof (sctp_assoc_t)
779 *
780 * The association id field, holds the identifier for the association.
781 */
782 sctp_ulpevent_set_owner(event, asoc);
783 pd->pdapi_assoc_id = sctp_assoc2id(asoc);
784
785 return event;
786fail:
787 return NULL;
788}
789
Vlad Yasevich65b07e52007-09-16 19:34:00 -0700790struct sctp_ulpevent *sctp_ulpevent_make_authkey(
791 const struct sctp_association *asoc, __u16 key_id,
792 __u32 indication, gfp_t gfp)
793{
794 struct sctp_ulpevent *event;
795 struct sctp_authkey_event *ak;
796 struct sk_buff *skb;
797
798 event = sctp_ulpevent_new(sizeof(struct sctp_authkey_event),
799 MSG_NOTIFICATION, gfp);
800 if (!event)
801 goto fail;
802
803 skb = sctp_event2skb(event);
804 ak = (struct sctp_authkey_event *)
805 skb_put(skb, sizeof(struct sctp_authkey_event));
806
Wei Yongjunee916fd2011-04-17 17:28:01 +0000807 ak->auth_type = SCTP_AUTHENTICATION_EVENT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -0700808 ak->auth_flags = 0;
809 ak->auth_length = sizeof(struct sctp_authkey_event);
810
811 ak->auth_keynumber = key_id;
812 ak->auth_altkeynumber = 0;
813 ak->auth_indication = indication;
814
815 /*
816 * The association id field, holds the identifier for the association.
817 */
818 sctp_ulpevent_set_owner(event, asoc);
819 ak->auth_assoc_id = sctp_assoc2id(asoc);
820
821 return event;
822fail:
823 return NULL;
824}
825
Wei Yongjune1cdd552011-04-17 17:29:03 +0000826/*
827 * Socket Extensions for SCTP
828 * 6.3.10. SCTP_SENDER_DRY_EVENT
829 */
830struct sctp_ulpevent *sctp_ulpevent_make_sender_dry_event(
831 const struct sctp_association *asoc, gfp_t gfp)
832{
833 struct sctp_ulpevent *event;
834 struct sctp_sender_dry_event *sdry;
835 struct sk_buff *skb;
836
837 event = sctp_ulpevent_new(sizeof(struct sctp_sender_dry_event),
838 MSG_NOTIFICATION, gfp);
839 if (!event)
840 return NULL;
841
842 skb = sctp_event2skb(event);
843 sdry = (struct sctp_sender_dry_event *)
844 skb_put(skb, sizeof(struct sctp_sender_dry_event));
845
846 sdry->sender_dry_type = SCTP_SENDER_DRY_EVENT;
847 sdry->sender_dry_flags = 0;
848 sdry->sender_dry_length = sizeof(struct sctp_sender_dry_event);
849 sctp_ulpevent_set_owner(event, asoc);
850 sdry->sender_dry_assoc_id = sctp_assoc2id(asoc);
851
852 return event;
853}
Vlad Yasevich65b07e52007-09-16 19:34:00 -0700854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855/* Return the notification type, assuming this is a notification
856 * event.
857 */
858__u16 sctp_ulpevent_get_notification_type(const struct sctp_ulpevent *event)
859{
860 union sctp_notification *notification;
861 struct sk_buff *skb;
862
Vlad Yasevichab38fb02008-04-12 18:40:06 -0700863 skb = sctp_event2skb(event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 notification = (union sctp_notification *) skb->data;
865 return notification->sn_header.sn_type;
866}
867
Daniel Borkmannb3b3ba52014-07-12 20:30:35 +0200868/* RFC6458, Section 5.3.2. SCTP Header Information Structure
869 * (SCTP_SNDRCV, DEPRECATED)
870 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871void sctp_ulpevent_read_sndrcvinfo(const struct sctp_ulpevent *event,
872 struct msghdr *msghdr)
873{
874 struct sctp_sndrcvinfo sinfo;
875
876 if (sctp_ulpevent_is_notification(event))
877 return;
878
Daniel Borkmannb3b3ba52014-07-12 20:30:35 +0200879 memset(&sinfo, 0, sizeof(sinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 sinfo.sinfo_stream = event->stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 sinfo.sinfo_ssn = event->ssn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 sinfo.sinfo_ppid = event->ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 sinfo.sinfo_flags = event->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 sinfo.sinfo_tsn = event->tsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 sinfo.sinfo_cumtsn = event->cumtsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 sinfo.sinfo_assoc_id = sctp_assoc2id(event->asoc);
Daniel Borkmannb3b3ba52014-07-12 20:30:35 +0200887 /* Context value that is set via SCTP_CONTEXT socket option. */
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -0800888 sinfo.sinfo_context = event->asoc->default_rcv_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 /* These fields are not used while receiving. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 sinfo.sinfo_timetolive = 0;
891
892 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_SNDRCV,
Daniel Borkmannb3b3ba52014-07-12 20:30:35 +0200893 sizeof(sinfo), &sinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
896/* Do accounting for bytes received and hold a reference to the association
897 * for each skb.
898 */
899static void sctp_ulpevent_receive_data(struct sctp_ulpevent *event,
900 struct sctp_association *asoc)
901{
902 struct sk_buff *skb, *frag;
903
904 skb = sctp_event2skb(event);
905 /* Set the owner and charge rwnd for bytes received. */
906 sctp_ulpevent_set_owner(event, asoc);
907 sctp_assoc_rwnd_decrease(asoc, skb_headlen(skb));
908
909 if (!skb->data_len)
910 return;
911
912 /* Note: Not clearing the entire event struct as this is just a
913 * fragment of the real event. However, we still need to do rwnd
914 * accounting.
915 * In general, the skb passed from IP can have only 1 level of
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900916 * fragments. But we allow multiple levels of fragments.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 */
David S. Miller1b003be2009-06-09 00:22:35 -0700918 skb_walk_frags(skb, frag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 sctp_ulpevent_receive_data(sctp_skb2event(frag), asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
922/* Do accounting for bytes just read by user and release the references to
923 * the association.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900924 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925static void sctp_ulpevent_release_data(struct sctp_ulpevent *event)
926{
927 struct sk_buff *skb, *frag;
Tsutomu Fujiid7c2c9e2006-06-17 22:58:28 -0700928 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /* Current stack structures assume that the rcv buffer is
931 * per socket. For UDP style sockets this is not true as
932 * multiple associations may be on a single UDP-style socket.
933 * Use the local private area of the skb to track the owning
934 * association.
935 */
936
937 skb = sctp_event2skb(event);
Tsutomu Fujiid7c2c9e2006-06-17 22:58:28 -0700938 len = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 if (!skb->data_len)
941 goto done;
942
943 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -0700944 skb_walk_frags(skb, frag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /* NOTE: skb_shinfos are recursive. Although IP returns
946 * skb's with only 1 level of fragments, SCTP reassembly can
947 * increase the levels.
948 */
Tsutomu Fujiid7c2c9e2006-06-17 22:58:28 -0700949 sctp_ulpevent_release_frag_data(sctp_skb2event(frag));
950 }
951
952done:
953 sctp_assoc_rwnd_increase(event->asoc, len);
954 sctp_ulpevent_release_owner(event);
955}
956
957static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event)
958{
959 struct sk_buff *skb, *frag;
960
961 skb = sctp_event2skb(event);
962
963 if (!skb->data_len)
964 goto done;
965
966 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -0700967 skb_walk_frags(skb, frag) {
Tsutomu Fujiid7c2c9e2006-06-17 22:58:28 -0700968 /* NOTE: skb_shinfos are recursive. Although IP returns
969 * skb's with only 1 level of fragments, SCTP reassembly can
970 * increase the levels.
971 */
972 sctp_ulpevent_release_frag_data(sctp_skb2event(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
975done:
976 sctp_ulpevent_release_owner(event);
977}
978
979/* Free a ulpevent that has an owner. It includes releasing the reference
980 * to the owner, updating the rwnd in case of a DATA event and freeing the
981 * skb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 */
983void sctp_ulpevent_free(struct sctp_ulpevent *event)
984{
985 if (sctp_ulpevent_is_notification(event))
986 sctp_ulpevent_release_owner(event);
987 else
988 sctp_ulpevent_release_data(event);
989
990 kfree_skb(sctp_event2skb(event));
991}
992
993/* Purge the skb lists holding ulpevents. */
Thomas Grafcd4fcc72011-07-08 04:37:46 +0000994unsigned int sctp_queue_purge_ulpevents(struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
996 struct sk_buff *skb;
Thomas Grafcd4fcc72011-07-08 04:37:46 +0000997 unsigned int data_unread = 0;
998
999 while ((skb = skb_dequeue(list)) != NULL) {
1000 struct sctp_ulpevent *event = sctp_skb2event(skb);
1001
1002 if (!sctp_ulpevent_is_notification(event))
1003 data_unread += skb->len;
1004
1005 sctp_ulpevent_free(event);
1006 }
1007
1008 return data_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}