]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/sctp/ulpevent.c
networking: make skb_put & friends return void pointers
[mirror_ubuntu-artful-kernel.git] / net / sctp / ulpevent.c
CommitLineData
60c778b2 1/* SCTP kernel implementation
1da177e4
LT
2 * (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).
60c778b2
VY
11 *
12 * This SCTP implementation is free software;
1da177e4
LT
13 * 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 *
60c778b2 18 * This SCTP implementation is distributed in the hope that it
1da177e4
LT
19 * 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
4b2f13a2
JK
25 * along with GNU CC; see the file COPYING. If not, see
26 * <http://www.gnu.org/licenses/>.
1da177e4
LT
27 *
28 * Please send any bug reports or fixes you make to the
29 * email address(es):
91705c61 30 * lksctp developers <linux-sctp@vger.kernel.org>
1da177e4 31 *
1da177e4
LT
32 * Written or modified by:
33 * Jon Grimm <jgrimm@us.ibm.com>
34 * La Monte H.P. Yarroll <piggy@acm.org>
35 * Ardelle Fan <ardelle.fan@intel.com>
36 * Sridhar Samudrala <sri@us.ibm.com>
1da177e4
LT
37 */
38
5a0e3ad6 39#include <linux/slab.h>
1da177e4
LT
40#include <linux/types.h>
41#include <linux/skbuff.h>
42#include <net/sctp/structs.h>
43#include <net/sctp/sctp.h>
44#include <net/sctp/sm.h>
45
46static void sctp_ulpevent_receive_data(struct sctp_ulpevent *event,
47 struct sctp_association *asoc);
48static void sctp_ulpevent_release_data(struct sctp_ulpevent *event);
d7c2c9e3
TF
49static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event);
50
1da177e4 51
1da177e4 52/* Initialize an ULP event from an given skb. */
dda91928 53static void sctp_ulpevent_init(struct sctp_ulpevent *event,
f5d258e6 54 __u16 msg_flags,
dda91928 55 unsigned int len)
1da177e4
LT
56{
57 memset(event, 0, sizeof(struct sctp_ulpevent));
58 event->msg_flags = msg_flags;
331c4ee7 59 event->rmem_len = len;
1da177e4
LT
60}
61
62/* Create a new sctp_ulpevent. */
f5d258e6 63static struct sctp_ulpevent *sctp_ulpevent_new(int size, __u16 msg_flags,
dda91928 64 gfp_t gfp)
1da177e4
LT
65{
66 struct sctp_ulpevent *event;
67 struct sk_buff *skb;
68
69 skb = alloc_skb(size, gfp);
70 if (!skb)
71 goto fail;
72
73 event = sctp_skb2event(skb);
331c4ee7 74 sctp_ulpevent_init(event, msg_flags, skb->truesize);
1da177e4
LT
75
76 return event;
77
78fail:
79 return NULL;
80}
81
82/* Is this a MSG_NOTIFICATION? */
83int sctp_ulpevent_is_notification(const struct sctp_ulpevent *event)
84{
85 return MSG_NOTIFICATION == (event->msg_flags & MSG_NOTIFICATION);
86}
87
88/* Hold the association in case the msg_name needs read out of
89 * the association.
90 */
91static inline void sctp_ulpevent_set_owner(struct sctp_ulpevent *event,
92 const struct sctp_association *asoc)
93{
52253db9 94 struct sctp_chunk *chunk = event->chunk;
1da177e4
LT
95 struct sk_buff *skb;
96
97 /* Cast away the const, as we are just wanting to
98 * bump the reference count.
99 */
100 sctp_association_hold((struct sctp_association *)asoc);
101 skb = sctp_event2skb(event);
1da177e4 102 event->asoc = (struct sctp_association *)asoc;
331c4ee7
VY
103 atomic_add(event->rmem_len, &event->asoc->rmem_alloc);
104 sctp_skb_set_owner_r(skb, asoc->base.sk);
52253db9
MRL
105 if (chunk && chunk->head_skb && !chunk->head_skb->sk)
106 chunk->head_skb->sk = asoc->base.sk;
1da177e4
LT
107}
108
109/* A simple destructor to give up the reference to the association. */
110static inline void sctp_ulpevent_release_owner(struct sctp_ulpevent *event)
111{
049b3ff5 112 struct sctp_association *asoc = event->asoc;
049b3ff5 113
331c4ee7 114 atomic_sub(event->rmem_len, &asoc->rmem_alloc);
049b3ff5 115 sctp_association_put(asoc);
1da177e4
LT
116}
117
118/* Create and initialize an SCTP_ASSOC_CHANGE event.
119 *
120 * 5.3.1.1 SCTP_ASSOC_CHANGE
121 *
122 * Communication notifications inform the ULP that an SCTP association
123 * has either begun or ended. The identifier for a new association is
124 * provided by this notification.
125 *
126 * Note: There is no field checking here. If a field is unused it will be
127 * zero'd out.
128 */
129struct sctp_ulpevent *sctp_ulpevent_make_assoc_change(
130 const struct sctp_association *asoc,
131 __u16 flags, __u16 state, __u16 error, __u16 outbound,
a5a35e76 132 __u16 inbound, struct sctp_chunk *chunk, gfp_t gfp)
1da177e4
LT
133{
134 struct sctp_ulpevent *event;
135 struct sctp_assoc_change *sac;
136 struct sk_buff *skb;
137
a5a35e76
VY
138 /* If the lower layer passed in the chunk, it will be
139 * an ABORT, so we need to include it in the sac_info.
140 */
141 if (chunk) {
a5a35e76
VY
142 /* Copy the chunk data to a new skb and reserve enough
143 * head room to use as notification.
144 */
145 skb = skb_copy_expand(chunk->skb,
146 sizeof(struct sctp_assoc_change), 0, gfp);
147
148 if (!skb)
149 goto fail;
150
a5a35e76
VY
151 /* Embed the event fields inside the cloned skb. */
152 event = sctp_skb2event(skb);
153 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
154
155 /* Include the notification structure */
156 sac = (struct sctp_assoc_change *)
157 skb_push(skb, sizeof(struct sctp_assoc_change));
158
159 /* Trim the buffer to the right length. */
160 skb_trim(skb, sizeof(struct sctp_assoc_change) +
ac40e41f
VY
161 ntohs(chunk->chunk_hdr->length) -
162 sizeof(sctp_chunkhdr_t));
a5a35e76
VY
163 } else {
164 event = sctp_ulpevent_new(sizeof(struct sctp_assoc_change),
1da177e4 165 MSG_NOTIFICATION, gfp);
a5a35e76
VY
166 if (!event)
167 goto fail;
168
169 skb = sctp_event2skb(event);
4df864c1 170 sac = skb_put(skb, sizeof(struct sctp_assoc_change));
a5a35e76 171 }
1da177e4
LT
172
173 /* Socket Extensions for SCTP
174 * 5.3.1.1 SCTP_ASSOC_CHANGE
175 *
176 * sac_type:
177 * It should be SCTP_ASSOC_CHANGE.
178 */
179 sac->sac_type = SCTP_ASSOC_CHANGE;
180
181 /* Socket Extensions for SCTP
182 * 5.3.1.1 SCTP_ASSOC_CHANGE
183 *
184 * sac_state: 32 bits (signed integer)
185 * This field holds one of a number of values that communicate the
186 * event that happened to the association.
187 */
188 sac->sac_state = state;
189
190 /* Socket Extensions for SCTP
191 * 5.3.1.1 SCTP_ASSOC_CHANGE
192 *
193 * sac_flags: 16 bits (unsigned integer)
194 * Currently unused.
195 */
196 sac->sac_flags = 0;
197
198 /* Socket Extensions for SCTP
199 * 5.3.1.1 SCTP_ASSOC_CHANGE
200 *
201 * sac_length: sizeof (__u32)
202 * This field is the total length of the notification data, including
203 * the notification header.
204 */
b90a137d 205 sac->sac_length = skb->len;
1da177e4
LT
206
207 /* Socket Extensions for SCTP
208 * 5.3.1.1 SCTP_ASSOC_CHANGE
209 *
210 * sac_error: 32 bits (signed integer)
211 *
212 * If the state was reached due to a error condition (e.g.
213 * COMMUNICATION_LOST) any relevant error information is available in
214 * this field. This corresponds to the protocol error codes defined in
215 * [SCTP].
216 */
217 sac->sac_error = error;
218
219 /* Socket Extensions for SCTP
220 * 5.3.1.1 SCTP_ASSOC_CHANGE
221 *
222 * sac_outbound_streams: 16 bits (unsigned integer)
223 * sac_inbound_streams: 16 bits (unsigned integer)
224 *
225 * The maximum number of streams allowed in each direction are
226 * available in sac_outbound_streams and sac_inbound streams.
227 */
228 sac->sac_outbound_streams = outbound;
229 sac->sac_inbound_streams = inbound;
230
231 /* Socket Extensions for SCTP
232 * 5.3.1.1 SCTP_ASSOC_CHANGE
233 *
234 * sac_assoc_id: sizeof (sctp_assoc_t)
235 *
236 * The association id field, holds the identifier for the association.
237 * All notifications for a given association have the same association
238 * identifier. For TCP style socket, this field is ignored.
239 */
240 sctp_ulpevent_set_owner(event, asoc);
241 sac->sac_assoc_id = sctp_assoc2id(asoc);
242
243 return event;
244
245fail:
246 return NULL;
247}
248
249/* Create and initialize an SCTP_PEER_ADDR_CHANGE event.
250 *
251 * Socket Extensions for SCTP - draft-01
252 * 5.3.1.2 SCTP_PEER_ADDR_CHANGE
253 *
254 * When a destination address on a multi-homed peer encounters a change
255 * an interface details event is sent.
256 */
257struct sctp_ulpevent *sctp_ulpevent_make_peer_addr_change(
258 const struct sctp_association *asoc,
259 const struct sockaddr_storage *aaddr,
dd0fc66f 260 int flags, int state, int error, gfp_t gfp)
1da177e4
LT
261{
262 struct sctp_ulpevent *event;
263 struct sctp_paddr_change *spc;
264 struct sk_buff *skb;
265
266 event = sctp_ulpevent_new(sizeof(struct sctp_paddr_change),
267 MSG_NOTIFICATION, gfp);
268 if (!event)
269 goto fail;
270
271 skb = sctp_event2skb(event);
4df864c1 272 spc = skb_put(skb, sizeof(struct sctp_paddr_change));
1da177e4
LT
273
274 /* Sockets API Extensions for SCTP
275 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
276 *
277 * spc_type:
278 *
279 * It should be SCTP_PEER_ADDR_CHANGE.
280 */
281 spc->spc_type = SCTP_PEER_ADDR_CHANGE;
282
283 /* Sockets API Extensions for SCTP
284 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
285 *
286 * spc_length: sizeof (__u32)
287 *
288 * This field is the total length of the notification data, including
289 * the notification header.
290 */
291 spc->spc_length = sizeof(struct sctp_paddr_change);
292
293 /* Sockets API Extensions for SCTP
294 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
295 *
296 * spc_flags: 16 bits (unsigned integer)
297 * Currently unused.
298 */
299 spc->spc_flags = 0;
300
301 /* Sockets API Extensions for SCTP
302 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
303 *
304 * spc_state: 32 bits (signed integer)
305 *
306 * This field holds one of a number of values that communicate the
307 * event that happened to the address.
308 */
309 spc->spc_state = state;
310
311 /* Sockets API Extensions for SCTP
312 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
313 *
314 * spc_error: 32 bits (signed integer)
315 *
316 * If the state was reached due to any error condition (e.g.
317 * ADDRESS_UNREACHABLE) any relevant error information is available in
318 * this field.
319 */
320 spc->spc_error = error;
321
322 /* Socket Extensions for SCTP
323 * 5.3.1.1 SCTP_ASSOC_CHANGE
324 *
325 * spc_assoc_id: sizeof (sctp_assoc_t)
326 *
327 * The association id field, holds the identifier for the association.
328 * All notifications for a given association have the same association
329 * identifier. For TCP style socket, this field is ignored.
330 */
331 sctp_ulpevent_set_owner(event, asoc);
332 spc->spc_assoc_id = sctp_assoc2id(asoc);
333
334 /* Sockets API Extensions for SCTP
335 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
336 *
337 * spc_aaddr: sizeof (struct sockaddr_storage)
338 *
339 * The affected address field, holds the remote peer's address that is
340 * encountering the change of state.
341 */
342 memcpy(&spc->spc_aaddr, aaddr, sizeof(struct sockaddr_storage));
343
344 /* Map ipv4 address into v4-mapped-on-v6 address. */
299ee123 345 sctp_get_pf_specific(asoc->base.sk->sk_family)->addr_to_user(
1da177e4
LT
346 sctp_sk(asoc->base.sk),
347 (union sctp_addr *)&spc->spc_aaddr);
348
349 return event;
350
351fail:
352 return NULL;
353}
354
355/* Create and initialize an SCTP_REMOTE_ERROR notification.
356 *
357 * Note: This assumes that the chunk->skb->data already points to the
358 * operation error payload.
359 *
360 * Socket Extensions for SCTP - draft-01
361 * 5.3.1.3 SCTP_REMOTE_ERROR
362 *
363 * A remote peer may send an Operational Error message to its peer.
364 * This message indicates a variety of error conditions on an
365 * association. The entire error TLV as it appears on the wire is
366 * included in a SCTP_REMOTE_ERROR event. Please refer to the SCTP
367 * specification [SCTP] and any extensions for a list of possible
368 * error formats.
369 */
8f2e5ae4
DB
370struct sctp_ulpevent *
371sctp_ulpevent_make_remote_error(const struct sctp_association *asoc,
372 struct sctp_chunk *chunk, __u16 flags,
373 gfp_t gfp)
1da177e4
LT
374{
375 struct sctp_ulpevent *event;
376 struct sctp_remote_error *sre;
377 struct sk_buff *skb;
378 sctp_errhdr_t *ch;
9f81bcd9 379 __be16 cause;
1da177e4
LT
380 int elen;
381
382 ch = (sctp_errhdr_t *)(chunk->skb->data);
383 cause = ch->cause;
e2f036a9 384 elen = SCTP_PAD4(ntohs(ch->length)) - sizeof(sctp_errhdr_t);
1da177e4
LT
385
386 /* Pull off the ERROR header. */
387 skb_pull(chunk->skb, sizeof(sctp_errhdr_t));
388
389 /* Copy the skb to a new skb with room for us to prepend
390 * notification with.
391 */
8f2e5ae4 392 skb = skb_copy_expand(chunk->skb, sizeof(*sre), 0, gfp);
1da177e4
LT
393
394 /* Pull off the rest of the cause TLV from the chunk. */
395 skb_pull(chunk->skb, elen);
396 if (!skb)
397 goto fail;
398
399 /* Embed the event fields inside the cloned skb. */
400 event = sctp_skb2event(skb);
331c4ee7 401 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
1da177e4 402
8f2e5ae4 403 sre = (struct sctp_remote_error *) skb_push(skb, sizeof(*sre));
1da177e4
LT
404
405 /* Trim the buffer to the right length. */
8f2e5ae4 406 skb_trim(skb, sizeof(*sre) + elen);
1da177e4 407
8f2e5ae4
DB
408 /* RFC6458, Section 6.1.3. SCTP_REMOTE_ERROR */
409 memset(sre, 0, sizeof(*sre));
1da177e4 410 sre->sre_type = SCTP_REMOTE_ERROR;
1da177e4 411 sre->sre_flags = 0;
1da177e4 412 sre->sre_length = skb->len;
1da177e4 413 sre->sre_error = cause;
1da177e4
LT
414 sctp_ulpevent_set_owner(event, asoc);
415 sre->sre_assoc_id = sctp_assoc2id(asoc);
416
417 return event;
1da177e4
LT
418fail:
419 return NULL;
420}
421
422/* Create and initialize a SCTP_SEND_FAILED notification.
423 *
424 * Socket Extensions for SCTP - draft-01
425 * 5.3.1.4 SCTP_SEND_FAILED
426 */
427struct sctp_ulpevent *sctp_ulpevent_make_send_failed(
428 const struct sctp_association *asoc, struct sctp_chunk *chunk,
dd0fc66f 429 __u16 flags, __u32 error, gfp_t gfp)
1da177e4
LT
430{
431 struct sctp_ulpevent *event;
432 struct sctp_send_failed *ssf;
433 struct sk_buff *skb;
434
435 /* Pull off any padding. */
436 int len = ntohs(chunk->chunk_hdr->length);
437
438 /* Make skb with more room so we can prepend notification. */
439 skb = skb_copy_expand(chunk->skb,
440 sizeof(struct sctp_send_failed), /* headroom */
441 0, /* tailroom */
442 gfp);
443 if (!skb)
444 goto fail;
445
446 /* Pull off the common chunk header and DATA header. */
447 skb_pull(skb, sizeof(struct sctp_data_chunk));
448 len -= sizeof(struct sctp_data_chunk);
449
450 /* Embed the event fields inside the cloned skb. */
451 event = sctp_skb2event(skb);
331c4ee7 452 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
1da177e4
LT
453
454 ssf = (struct sctp_send_failed *)
455 skb_push(skb, sizeof(struct sctp_send_failed));
456
457 /* Socket Extensions for SCTP
458 * 5.3.1.4 SCTP_SEND_FAILED
459 *
460 * ssf_type:
461 * It should be SCTP_SEND_FAILED.
462 */
463 ssf->ssf_type = SCTP_SEND_FAILED;
464
465 /* Socket Extensions for SCTP
466 * 5.3.1.4 SCTP_SEND_FAILED
467 *
468 * ssf_flags: 16 bits (unsigned integer)
469 * The flag value will take one of the following values
470 *
471 * SCTP_DATA_UNSENT - Indicates that the data was never put on
472 * the wire.
473 *
474 * SCTP_DATA_SENT - Indicates that the data was put on the wire.
475 * Note that this does not necessarily mean that the
476 * data was (or was not) successfully delivered.
477 */
478 ssf->ssf_flags = flags;
479
480 /* Socket Extensions for SCTP
481 * 5.3.1.4 SCTP_SEND_FAILED
482 *
483 * ssf_length: sizeof (__u32)
484 * This field is the total length of the notification data, including
485 * the notification header.
486 */
487 ssf->ssf_length = sizeof(struct sctp_send_failed) + len;
488 skb_trim(skb, ssf->ssf_length);
489
490 /* Socket Extensions for SCTP
491 * 5.3.1.4 SCTP_SEND_FAILED
492 *
493 * ssf_error: 16 bits (unsigned integer)
494 * This value represents the reason why the send failed, and if set,
495 * will be a SCTP protocol error code as defined in [SCTP] section
496 * 3.3.10.
497 */
498 ssf->ssf_error = error;
499
500 /* Socket Extensions for SCTP
501 * 5.3.1.4 SCTP_SEND_FAILED
502 *
503 * ssf_info: sizeof (struct sctp_sndrcvinfo)
504 * The original send information associated with the undelivered
505 * message.
506 */
507 memcpy(&ssf->ssf_info, &chunk->sinfo, sizeof(struct sctp_sndrcvinfo));
508
509 /* Per TSVWG discussion with Randy. Allow the application to
e9c54999 510 * reassemble a fragmented message.
1da177e4
LT
511 */
512 ssf->ssf_info.sinfo_flags = chunk->chunk_hdr->flags;
513
514 /* Socket Extensions for SCTP
515 * 5.3.1.4 SCTP_SEND_FAILED
516 *
517 * ssf_assoc_id: sizeof (sctp_assoc_t)
518 * The association id field, sf_assoc_id, holds the identifier for the
519 * association. All notifications for a given association have the
520 * same association identifier. For TCP style socket, this field is
521 * ignored.
522 */
523 sctp_ulpevent_set_owner(event, asoc);
524 ssf->ssf_assoc_id = sctp_assoc2id(asoc);
525 return event;
526
527fail:
528 return NULL;
529}
530
531/* Create and initialize a SCTP_SHUTDOWN_EVENT notification.
532 *
533 * Socket Extensions for SCTP - draft-01
534 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
535 */
536struct sctp_ulpevent *sctp_ulpevent_make_shutdown_event(
537 const struct sctp_association *asoc,
dd0fc66f 538 __u16 flags, gfp_t gfp)
1da177e4
LT
539{
540 struct sctp_ulpevent *event;
541 struct sctp_shutdown_event *sse;
542 struct sk_buff *skb;
543
544 event = sctp_ulpevent_new(sizeof(struct sctp_shutdown_event),
545 MSG_NOTIFICATION, gfp);
546 if (!event)
547 goto fail;
548
549 skb = sctp_event2skb(event);
4df864c1 550 sse = skb_put(skb, sizeof(struct sctp_shutdown_event));
1da177e4
LT
551
552 /* Socket Extensions for SCTP
553 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
554 *
555 * sse_type
556 * It should be SCTP_SHUTDOWN_EVENT
557 */
558 sse->sse_type = SCTP_SHUTDOWN_EVENT;
559
560 /* Socket Extensions for SCTP
561 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
562 *
563 * sse_flags: 16 bits (unsigned integer)
564 * Currently unused.
565 */
566 sse->sse_flags = 0;
567
568 /* Socket Extensions for SCTP
569 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
570 *
571 * sse_length: sizeof (__u32)
572 * This field is the total length of the notification data, including
573 * the notification header.
574 */
575 sse->sse_length = sizeof(struct sctp_shutdown_event);
576
577 /* Socket Extensions for SCTP
578 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
579 *
580 * sse_assoc_id: sizeof (sctp_assoc_t)
581 * The association id field, holds the identifier for the association.
582 * All notifications for a given association have the same association
583 * identifier. For TCP style socket, this field is ignored.
584 */
585 sctp_ulpevent_set_owner(event, asoc);
586 sse->sse_assoc_id = sctp_assoc2id(asoc);
587
588 return event;
589
590fail:
591 return NULL;
592}
593
0f3fffd8 594/* Create and initialize a SCTP_ADAPTATION_INDICATION notification.
1da177e4
LT
595 *
596 * Socket Extensions for SCTP
0f3fffd8 597 * 5.3.1.6 SCTP_ADAPTATION_INDICATION
1da177e4 598 */
0f3fffd8 599struct sctp_ulpevent *sctp_ulpevent_make_adaptation_indication(
dd0fc66f 600 const struct sctp_association *asoc, gfp_t gfp)
1da177e4
LT
601{
602 struct sctp_ulpevent *event;
0f3fffd8 603 struct sctp_adaptation_event *sai;
1da177e4
LT
604 struct sk_buff *skb;
605
0f3fffd8 606 event = sctp_ulpevent_new(sizeof(struct sctp_adaptation_event),
1da177e4
LT
607 MSG_NOTIFICATION, gfp);
608 if (!event)
609 goto fail;
610
611 skb = sctp_event2skb(event);
4df864c1 612 sai = skb_put(skb, sizeof(struct sctp_adaptation_event));
1da177e4 613
0f3fffd8 614 sai->sai_type = SCTP_ADAPTATION_INDICATION;
1da177e4 615 sai->sai_flags = 0;
0f3fffd8
ISJ
616 sai->sai_length = sizeof(struct sctp_adaptation_event);
617 sai->sai_adaptation_ind = asoc->peer.adaptation_ind;
1da177e4
LT
618 sctp_ulpevent_set_owner(event, asoc);
619 sai->sai_assoc_id = sctp_assoc2id(asoc);
620
621 return event;
622
623fail:
624 return NULL;
625}
626
627/* A message has been received. Package this message as a notification
628 * to pass it to the upper layers. Go ahead and calculate the sndrcvinfo
629 * even if filtered out later.
630 *
631 * Socket Extensions for SCTP
632 * 5.2.2 SCTP Header Information Structure (SCTP_SNDRCV)
633 */
634struct sctp_ulpevent *sctp_ulpevent_make_rcvmsg(struct sctp_association *asoc,
635 struct sctp_chunk *chunk,
dd0fc66f 636 gfp_t gfp)
1da177e4
LT
637{
638 struct sctp_ulpevent *event = NULL;
639 struct sk_buff *skb;
640 size_t padding, len;
4d93df0a
NH
641 int rx_count;
642
643 /*
644 * check to see if we need to make space for this
645 * new skb, expand the rcvbuffer if needed, or drop
646 * the frame
647 */
648 if (asoc->ep->rcvbuf_policy)
649 rx_count = atomic_read(&asoc->rmem_alloc);
650 else
651 rx_count = atomic_read(&asoc->base.sk->sk_rmem_alloc);
652
653 if (rx_count >= asoc->base.sk->sk_rcvbuf) {
654
655 if ((asoc->base.sk->sk_userlocks & SOCK_RCVBUF_LOCK) ||
c76562b6
MG
656 (!sk_rmem_schedule(asoc->base.sk, chunk->skb,
657 chunk->skb->truesize)))
4d93df0a
NH
658 goto fail;
659 }
1da177e4
LT
660
661 /* Clone the original skb, sharing the data. */
662 skb = skb_clone(chunk->skb, gfp);
663 if (!skb)
664 goto fail;
665
3888e9ef
VY
666 /* Now that all memory allocations for this chunk succeeded, we
667 * can mark it as received so the tsn_map is updated correctly.
668 */
8e1ee18c 669 if (sctp_tsnmap_mark(&asoc->peer.tsn_map,
4244854d
NH
670 ntohl(chunk->subh.data_hdr->tsn),
671 chunk->transport))
8e1ee18c 672 goto fail_mark;
3888e9ef 673
1da177e4
LT
674 /* First calculate the padding, so we don't inadvertently
675 * pass up the wrong length to the user.
676 *
677 * RFC 2960 - Section 3.2 Chunk Field Descriptions
678 *
679 * The total length of a chunk(including Type, Length and Value fields)
680 * MUST be a multiple of 4 bytes. If the length of the chunk is not a
681 * multiple of 4 bytes, the sender MUST pad the chunk with all zero
682 * bytes and this padding is not included in the chunk length field.
683 * The sender should never pad with more than 3 bytes. The receiver
684 * MUST ignore the padding bytes.
685 */
686 len = ntohs(chunk->chunk_hdr->length);
e2f036a9 687 padding = SCTP_PAD4(len) - len;
1da177e4
LT
688
689 /* Fixup cloned skb with just this chunks data. */
690 skb_trim(skb, chunk->chunk_end - padding - skb->data);
691
692 /* Embed the event fields inside the cloned skb. */
693 event = sctp_skb2event(skb);
694
331c4ee7
VY
695 /* Initialize event with flags 0 and correct length
696 * Since this is a clone of the original skb, only account for
697 * the data of this chunk as other chunks will be accounted separately.
698 */
699 sctp_ulpevent_init(event, 0, skb->len + sizeof(struct sk_buff));
1da177e4 700
1f45f78f
MRL
701 /* And hold the chunk as we need it for getting the IP headers
702 * later in recvmsg
703 */
704 sctp_chunk_hold(chunk);
705 event->chunk = chunk;
706
1fe323aa
XL
707 sctp_ulpevent_receive_data(event, asoc);
708
1da177e4
LT
709 event->stream = ntohs(chunk->subh.data_hdr->stream);
710 event->ssn = ntohs(chunk->subh.data_hdr->ssn);
711 event->ppid = chunk->subh.data_hdr->ppid;
712 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) {
eaa5c54d 713 event->flags |= SCTP_UNORDERED;
1da177e4
LT
714 event->cumtsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
715 }
716 event->tsn = ntohl(chunk->subh.data_hdr->tsn);
717 event->msg_flags |= chunk->chunk_hdr->flags;
1da177e4 718
1da177e4 719 return event;
8e1ee18c
VY
720
721fail_mark:
1f45f78f 722 sctp_chunk_put(chunk);
8e1ee18c
VY
723 kfree_skb(skb);
724fail:
725 return NULL;
1da177e4
LT
726}
727
728/* Create a partial delivery related event.
729 *
730 * 5.3.1.7 SCTP_PARTIAL_DELIVERY_EVENT
731 *
732 * When a receiver is engaged in a partial delivery of a
733 * message this notification will be used to indicate
734 * various events.
735 */
736struct sctp_ulpevent *sctp_ulpevent_make_pdapi(
3182cd84 737 const struct sctp_association *asoc, __u32 indication,
dd0fc66f 738 gfp_t gfp)
1da177e4
LT
739{
740 struct sctp_ulpevent *event;
741 struct sctp_pdapi_event *pd;
742 struct sk_buff *skb;
743
744 event = sctp_ulpevent_new(sizeof(struct sctp_pdapi_event),
745 MSG_NOTIFICATION, gfp);
746 if (!event)
747 goto fail;
748
749 skb = sctp_event2skb(event);
4df864c1 750 pd = skb_put(skb, sizeof(struct sctp_pdapi_event));
1da177e4
LT
751
752 /* pdapi_type
753 * It should be SCTP_PARTIAL_DELIVERY_EVENT
754 *
755 * pdapi_flags: 16 bits (unsigned integer)
756 * Currently unused.
757 */
758 pd->pdapi_type = SCTP_PARTIAL_DELIVERY_EVENT;
759 pd->pdapi_flags = 0;
760
761 /* pdapi_length: 32 bits (unsigned integer)
762 *
763 * This field is the total length of the notification data, including
764 * the notification header. It will generally be sizeof (struct
765 * sctp_pdapi_event).
766 */
767 pd->pdapi_length = sizeof(struct sctp_pdapi_event);
768
d808ad9a 769 /* pdapi_indication: 32 bits (unsigned integer)
1da177e4
LT
770 *
771 * This field holds the indication being sent to the application.
772 */
773 pd->pdapi_indication = indication;
774
775 /* pdapi_assoc_id: sizeof (sctp_assoc_t)
776 *
777 * The association id field, holds the identifier for the association.
778 */
779 sctp_ulpevent_set_owner(event, asoc);
780 pd->pdapi_assoc_id = sctp_assoc2id(asoc);
781
782 return event;
783fail:
784 return NULL;
785}
786
65b07e5d
VY
787struct sctp_ulpevent *sctp_ulpevent_make_authkey(
788 const struct sctp_association *asoc, __u16 key_id,
789 __u32 indication, gfp_t gfp)
790{
791 struct sctp_ulpevent *event;
792 struct sctp_authkey_event *ak;
793 struct sk_buff *skb;
794
795 event = sctp_ulpevent_new(sizeof(struct sctp_authkey_event),
796 MSG_NOTIFICATION, gfp);
797 if (!event)
798 goto fail;
799
800 skb = sctp_event2skb(event);
4df864c1 801 ak = skb_put(skb, sizeof(struct sctp_authkey_event));
65b07e5d 802
ee916fd0 803 ak->auth_type = SCTP_AUTHENTICATION_EVENT;
65b07e5d
VY
804 ak->auth_flags = 0;
805 ak->auth_length = sizeof(struct sctp_authkey_event);
806
807 ak->auth_keynumber = key_id;
808 ak->auth_altkeynumber = 0;
809 ak->auth_indication = indication;
810
811 /*
812 * The association id field, holds the identifier for the association.
813 */
814 sctp_ulpevent_set_owner(event, asoc);
815 ak->auth_assoc_id = sctp_assoc2id(asoc);
816
817 return event;
818fail:
819 return NULL;
820}
821
e1cdd553
WY
822/*
823 * Socket Extensions for SCTP
824 * 6.3.10. SCTP_SENDER_DRY_EVENT
825 */
826struct sctp_ulpevent *sctp_ulpevent_make_sender_dry_event(
827 const struct sctp_association *asoc, gfp_t gfp)
828{
829 struct sctp_ulpevent *event;
830 struct sctp_sender_dry_event *sdry;
831 struct sk_buff *skb;
832
833 event = sctp_ulpevent_new(sizeof(struct sctp_sender_dry_event),
834 MSG_NOTIFICATION, gfp);
835 if (!event)
836 return NULL;
837
838 skb = sctp_event2skb(event);
4df864c1 839 sdry = skb_put(skb, sizeof(struct sctp_sender_dry_event));
e1cdd553
WY
840
841 sdry->sender_dry_type = SCTP_SENDER_DRY_EVENT;
842 sdry->sender_dry_flags = 0;
843 sdry->sender_dry_length = sizeof(struct sctp_sender_dry_event);
844 sctp_ulpevent_set_owner(event, asoc);
845 sdry->sender_dry_assoc_id = sctp_assoc2id(asoc);
846
847 return event;
848}
65b07e5d 849
35ea82d6
XL
850struct sctp_ulpevent *sctp_ulpevent_make_stream_reset_event(
851 const struct sctp_association *asoc, __u16 flags, __u16 stream_num,
852 __u16 *stream_list, gfp_t gfp)
853{
854 struct sctp_stream_reset_event *sreset;
855 struct sctp_ulpevent *event;
856 struct sk_buff *skb;
857 int length, i;
858
859 length = sizeof(struct sctp_stream_reset_event) + 2 * stream_num;
860 event = sctp_ulpevent_new(length, MSG_NOTIFICATION, gfp);
861 if (!event)
862 return NULL;
863
864 skb = sctp_event2skb(event);
4df864c1 865 sreset = skb_put(skb, length);
35ea82d6
XL
866
867 sreset->strreset_type = SCTP_STREAM_RESET_EVENT;
868 sreset->strreset_flags = flags;
869 sreset->strreset_length = length;
870 sctp_ulpevent_set_owner(event, asoc);
871 sreset->strreset_assoc_id = sctp_assoc2id(asoc);
872
873 for (i = 0; i < stream_num; i++)
874 sreset->strreset_stream_list[i] = ntohs(stream_list[i]);
875
876 return event;
877}
878
c95129d1
XL
879struct sctp_ulpevent *sctp_ulpevent_make_assoc_reset_event(
880 const struct sctp_association *asoc, __u16 flags, __u32 local_tsn,
881 __u32 remote_tsn, gfp_t gfp)
882{
883 struct sctp_assoc_reset_event *areset;
884 struct sctp_ulpevent *event;
885 struct sk_buff *skb;
886
887 event = sctp_ulpevent_new(sizeof(struct sctp_assoc_reset_event),
888 MSG_NOTIFICATION, gfp);
889 if (!event)
890 return NULL;
891
892 skb = sctp_event2skb(event);
4df864c1 893 areset = skb_put(skb, sizeof(struct sctp_assoc_reset_event));
c95129d1
XL
894
895 areset->assocreset_type = SCTP_ASSOC_RESET_EVENT;
896 areset->assocreset_flags = flags;
897 areset->assocreset_length = sizeof(struct sctp_assoc_reset_event);
898 sctp_ulpevent_set_owner(event, asoc);
899 areset->assocreset_assoc_id = sctp_assoc2id(asoc);
900 areset->assocreset_local_tsn = local_tsn;
901 areset->assocreset_remote_tsn = remote_tsn;
902
903 return event;
904}
905
b444153f
XL
906struct sctp_ulpevent *sctp_ulpevent_make_stream_change_event(
907 const struct sctp_association *asoc, __u16 flags,
908 __u32 strchange_instrms, __u32 strchange_outstrms, gfp_t gfp)
909{
910 struct sctp_stream_change_event *schange;
911 struct sctp_ulpevent *event;
912 struct sk_buff *skb;
913
914 event = sctp_ulpevent_new(sizeof(struct sctp_stream_change_event),
915 MSG_NOTIFICATION, gfp);
916 if (!event)
917 return NULL;
918
919 skb = sctp_event2skb(event);
4df864c1 920 schange = skb_put(skb, sizeof(struct sctp_stream_change_event));
b444153f
XL
921
922 schange->strchange_type = SCTP_STREAM_CHANGE_EVENT;
923 schange->strchange_flags = flags;
924 schange->strchange_length = sizeof(struct sctp_stream_change_event);
925 sctp_ulpevent_set_owner(event, asoc);
926 schange->strchange_assoc_id = sctp_assoc2id(asoc);
927 schange->strchange_instrms = strchange_instrms;
928 schange->strchange_outstrms = strchange_outstrms;
929
930 return event;
931}
932
1da177e4
LT
933/* Return the notification type, assuming this is a notification
934 * event.
935 */
936__u16 sctp_ulpevent_get_notification_type(const struct sctp_ulpevent *event)
937{
938 union sctp_notification *notification;
939 struct sk_buff *skb;
940
ab38fb04 941 skb = sctp_event2skb(event);
1da177e4
LT
942 notification = (union sctp_notification *) skb->data;
943 return notification->sn_header.sn_type;
944}
945
8f2e5ae4
DB
946/* RFC6458, Section 5.3.2. SCTP Header Information Structure
947 * (SCTP_SNDRCV, DEPRECATED)
948 */
1da177e4
LT
949void sctp_ulpevent_read_sndrcvinfo(const struct sctp_ulpevent *event,
950 struct msghdr *msghdr)
951{
952 struct sctp_sndrcvinfo sinfo;
953
954 if (sctp_ulpevent_is_notification(event))
955 return;
956
8f2e5ae4 957 memset(&sinfo, 0, sizeof(sinfo));
1da177e4 958 sinfo.sinfo_stream = event->stream;
1da177e4 959 sinfo.sinfo_ssn = event->ssn;
1da177e4 960 sinfo.sinfo_ppid = event->ppid;
1da177e4 961 sinfo.sinfo_flags = event->flags;
1da177e4 962 sinfo.sinfo_tsn = event->tsn;
1da177e4 963 sinfo.sinfo_cumtsn = event->cumtsn;
1da177e4 964 sinfo.sinfo_assoc_id = sctp_assoc2id(event->asoc);
8f2e5ae4 965 /* Context value that is set via SCTP_CONTEXT socket option. */
6ab792f5 966 sinfo.sinfo_context = event->asoc->default_rcv_context;
1da177e4 967 /* These fields are not used while receiving. */
1da177e4
LT
968 sinfo.sinfo_timetolive = 0;
969
970 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_SNDRCV,
8f2e5ae4 971 sizeof(sinfo), &sinfo);
1da177e4
LT
972}
973
0d3a421d
GOV
974/* RFC6458, Section 5.3.5 SCTP Receive Information Structure
975 * (SCTP_SNDRCV)
976 */
977void sctp_ulpevent_read_rcvinfo(const struct sctp_ulpevent *event,
978 struct msghdr *msghdr)
979{
980 struct sctp_rcvinfo rinfo;
981
982 if (sctp_ulpevent_is_notification(event))
983 return;
984
985 memset(&rinfo, 0, sizeof(struct sctp_rcvinfo));
986 rinfo.rcv_sid = event->stream;
987 rinfo.rcv_ssn = event->ssn;
988 rinfo.rcv_ppid = event->ppid;
989 rinfo.rcv_flags = event->flags;
990 rinfo.rcv_tsn = event->tsn;
991 rinfo.rcv_cumtsn = event->cumtsn;
992 rinfo.rcv_assoc_id = sctp_assoc2id(event->asoc);
993 rinfo.rcv_context = event->asoc->default_rcv_context;
994
995 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_RCVINFO,
996 sizeof(rinfo), &rinfo);
997}
998
2347c80f
GOV
999/* RFC6458, Section 5.3.6. SCTP Next Receive Information Structure
1000 * (SCTP_NXTINFO)
1001 */
1002static void __sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent *event,
1003 struct msghdr *msghdr,
1004 const struct sk_buff *skb)
1005{
1006 struct sctp_nxtinfo nxtinfo;
1007
1008 memset(&nxtinfo, 0, sizeof(nxtinfo));
1009 nxtinfo.nxt_sid = event->stream;
1010 nxtinfo.nxt_ppid = event->ppid;
1011 nxtinfo.nxt_flags = event->flags;
1012 if (sctp_ulpevent_is_notification(event))
1013 nxtinfo.nxt_flags |= SCTP_NOTIFICATION;
1014 nxtinfo.nxt_length = skb->len;
1015 nxtinfo.nxt_assoc_id = sctp_assoc2id(event->asoc);
1016
1017 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_NXTINFO,
1018 sizeof(nxtinfo), &nxtinfo);
1019}
1020
1021void sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent *event,
1022 struct msghdr *msghdr,
1023 struct sock *sk)
1024{
1025 struct sk_buff *skb;
1026 int err;
1027
1028 skb = sctp_skb_recv_datagram(sk, MSG_PEEK, 1, &err);
1029 if (skb != NULL) {
1030 __sctp_ulpevent_read_nxtinfo(sctp_skb2event(skb),
1031 msghdr, skb);
1032 /* Just release refcount here. */
1033 kfree_skb(skb);
1034 }
1035}
1036
1da177e4
LT
1037/* Do accounting for bytes received and hold a reference to the association
1038 * for each skb.
1039 */
1040static void sctp_ulpevent_receive_data(struct sctp_ulpevent *event,
1041 struct sctp_association *asoc)
1042{
1043 struct sk_buff *skb, *frag;
1044
1045 skb = sctp_event2skb(event);
1046 /* Set the owner and charge rwnd for bytes received. */
1047 sctp_ulpevent_set_owner(event, asoc);
362d5204 1048 sctp_assoc_rwnd_decrease(asoc, skb_headlen(skb));
1da177e4
LT
1049
1050 if (!skb->data_len)
1051 return;
1052
1053 /* Note: Not clearing the entire event struct as this is just a
1054 * fragment of the real event. However, we still need to do rwnd
1055 * accounting.
1056 * In general, the skb passed from IP can have only 1 level of
d808ad9a 1057 * fragments. But we allow multiple levels of fragments.
1da177e4 1058 */
1b003be3 1059 skb_walk_frags(skb, frag)
1da177e4 1060 sctp_ulpevent_receive_data(sctp_skb2event(frag), asoc);
1da177e4
LT
1061}
1062
1063/* Do accounting for bytes just read by user and release the references to
1064 * the association.
d808ad9a 1065 */
1da177e4
LT
1066static void sctp_ulpevent_release_data(struct sctp_ulpevent *event)
1067{
1068 struct sk_buff *skb, *frag;
d7c2c9e3 1069 unsigned int len;
1da177e4
LT
1070
1071 /* Current stack structures assume that the rcv buffer is
1072 * per socket. For UDP style sockets this is not true as
1073 * multiple associations may be on a single UDP-style socket.
1074 * Use the local private area of the skb to track the owning
1075 * association.
1076 */
1077
1078 skb = sctp_event2skb(event);
d7c2c9e3
TF
1079 len = skb->len;
1080
1081 if (!skb->data_len)
1082 goto done;
1083
1084 /* Don't forget the fragments. */
1b003be3 1085 skb_walk_frags(skb, frag) {
d7c2c9e3
TF
1086 /* NOTE: skb_shinfos are recursive. Although IP returns
1087 * skb's with only 1 level of fragments, SCTP reassembly can
1088 * increase the levels.
1089 */
1090 sctp_ulpevent_release_frag_data(sctp_skb2event(frag));
1091 }
1092
1093done:
362d5204 1094 sctp_assoc_rwnd_increase(event->asoc, len);
1f45f78f 1095 sctp_chunk_put(event->chunk);
d7c2c9e3
TF
1096 sctp_ulpevent_release_owner(event);
1097}
1098
1099static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event)
1100{
1101 struct sk_buff *skb, *frag;
1102
1103 skb = sctp_event2skb(event);
1da177e4
LT
1104
1105 if (!skb->data_len)
1106 goto done;
1107
1108 /* Don't forget the fragments. */
1b003be3 1109 skb_walk_frags(skb, frag) {
1da177e4
LT
1110 /* NOTE: skb_shinfos are recursive. Although IP returns
1111 * skb's with only 1 level of fragments, SCTP reassembly can
1112 * increase the levels.
1113 */
d7c2c9e3 1114 sctp_ulpevent_release_frag_data(sctp_skb2event(frag));
1da177e4
LT
1115 }
1116
1117done:
1f45f78f 1118 sctp_chunk_put(event->chunk);
1da177e4
LT
1119 sctp_ulpevent_release_owner(event);
1120}
1121
1122/* Free a ulpevent that has an owner. It includes releasing the reference
1123 * to the owner, updating the rwnd in case of a DATA event and freeing the
1124 * skb.
1da177e4
LT
1125 */
1126void sctp_ulpevent_free(struct sctp_ulpevent *event)
1127{
1128 if (sctp_ulpevent_is_notification(event))
1129 sctp_ulpevent_release_owner(event);
1130 else
1131 sctp_ulpevent_release_data(event);
1132
1133 kfree_skb(sctp_event2skb(event));
1134}
1135
1136/* Purge the skb lists holding ulpevents. */
cd4fcc70 1137unsigned int sctp_queue_purge_ulpevents(struct sk_buff_head *list)
1da177e4
LT
1138{
1139 struct sk_buff *skb;
cd4fcc70
TG
1140 unsigned int data_unread = 0;
1141
1142 while ((skb = skb_dequeue(list)) != NULL) {
1143 struct sctp_ulpevent *event = sctp_skb2event(skb);
1144
1145 if (!sctp_ulpevent_is_notification(event))
1146 data_unread += skb->len;
1147
1148 sctp_ulpevent_free(event);
1149 }
1150
1151 return data_unread;
1da177e4 1152}