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 * Copyright (c) 2001 Intel Corp.
6 * Copyright (c) 2001 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
9 * These functions manipulate an sctp event. The struct ulpevent is used
10 * to carry notifications and data to the ULP (sockets).
12 * This SCTP implementation is free software;
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)
18 * This SCTP implementation is distributed in the hope that it
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.
24 * You should have received a copy of the GNU General Public License
25 * along with GNU CC; see the file COPYING. If not, see
26 * <http://www.gnu.org/licenses/>.
28 * Please send any bug reports or fixes you make to the
30 * lksctp developers <linux-sctp@vger.kernel.org>
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>
39 #include <linux/slab.h>
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>
46 static void sctp_ulpevent_receive_data(struct sctp_ulpevent
*event
,
47 struct sctp_association
*asoc
);
48 static void sctp_ulpevent_release_data(struct sctp_ulpevent
*event
);
49 static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent
*event
);
52 /* Initialize an ULP event from an given skb. */
53 static void sctp_ulpevent_init(struct sctp_ulpevent
*event
,
57 memset(event
, 0, sizeof(struct sctp_ulpevent
));
58 event
->msg_flags
= msg_flags
;
59 event
->rmem_len
= len
;
62 /* Create a new sctp_ulpevent. */
63 static struct sctp_ulpevent
*sctp_ulpevent_new(int size
, __u16 msg_flags
,
66 struct sctp_ulpevent
*event
;
69 skb
= alloc_skb(size
, gfp
);
73 event
= sctp_skb2event(skb
);
74 sctp_ulpevent_init(event
, msg_flags
, skb
->truesize
);
82 /* Is this a MSG_NOTIFICATION? */
83 int sctp_ulpevent_is_notification(const struct sctp_ulpevent
*event
)
85 return MSG_NOTIFICATION
== (event
->msg_flags
& MSG_NOTIFICATION
);
88 /* Hold the association in case the msg_name needs read out of
91 static inline void sctp_ulpevent_set_owner(struct sctp_ulpevent
*event
,
92 const struct sctp_association
*asoc
)
94 struct sctp_chunk
*chunk
= event
->chunk
;
97 /* Cast away the const, as we are just wanting to
98 * bump the reference count.
100 sctp_association_hold((struct sctp_association
*)asoc
);
101 skb
= sctp_event2skb(event
);
102 event
->asoc
= (struct sctp_association
*)asoc
;
103 atomic_add(event
->rmem_len
, &event
->asoc
->rmem_alloc
);
104 sctp_skb_set_owner_r(skb
, asoc
->base
.sk
);
105 if (chunk
&& chunk
->head_skb
&& !chunk
->head_skb
->sk
)
106 chunk
->head_skb
->sk
= asoc
->base
.sk
;
109 /* A simple destructor to give up the reference to the association. */
110 static inline void sctp_ulpevent_release_owner(struct sctp_ulpevent
*event
)
112 struct sctp_association
*asoc
= event
->asoc
;
114 atomic_sub(event
->rmem_len
, &asoc
->rmem_alloc
);
115 sctp_association_put(asoc
);
118 /* Create and initialize an SCTP_ASSOC_CHANGE event.
120 * 5.3.1.1 SCTP_ASSOC_CHANGE
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.
126 * Note: There is no field checking here. If a field is unused it will be
129 struct sctp_ulpevent
*sctp_ulpevent_make_assoc_change(
130 const struct sctp_association
*asoc
,
131 __u16 flags
, __u16 state
, __u16 error
, __u16 outbound
,
132 __u16 inbound
, struct sctp_chunk
*chunk
, gfp_t gfp
)
134 struct sctp_ulpevent
*event
;
135 struct sctp_assoc_change
*sac
;
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.
142 /* Copy the chunk data to a new skb and reserve enough
143 * head room to use as notification.
145 skb
= skb_copy_expand(chunk
->skb
,
146 sizeof(struct sctp_assoc_change
), 0, gfp
);
151 /* Embed the event fields inside the cloned skb. */
152 event
= sctp_skb2event(skb
);
153 sctp_ulpevent_init(event
, MSG_NOTIFICATION
, skb
->truesize
);
155 /* Include the notification structure */
156 sac
= (struct sctp_assoc_change
*)
157 skb_push(skb
, sizeof(struct sctp_assoc_change
));
159 /* Trim the buffer to the right length. */
160 skb_trim(skb
, sizeof(struct sctp_assoc_change
) +
161 ntohs(chunk
->chunk_hdr
->length
) -
162 sizeof(sctp_chunkhdr_t
));
164 event
= sctp_ulpevent_new(sizeof(struct sctp_assoc_change
),
165 MSG_NOTIFICATION
, gfp
);
169 skb
= sctp_event2skb(event
);
170 sac
= (struct sctp_assoc_change
*) skb_put(skb
,
171 sizeof(struct sctp_assoc_change
));
174 /* Socket Extensions for SCTP
175 * 5.3.1.1 SCTP_ASSOC_CHANGE
178 * It should be SCTP_ASSOC_CHANGE.
180 sac
->sac_type
= SCTP_ASSOC_CHANGE
;
182 /* Socket Extensions for SCTP
183 * 5.3.1.1 SCTP_ASSOC_CHANGE
185 * sac_state: 32 bits (signed integer)
186 * This field holds one of a number of values that communicate the
187 * event that happened to the association.
189 sac
->sac_state
= state
;
191 /* Socket Extensions for SCTP
192 * 5.3.1.1 SCTP_ASSOC_CHANGE
194 * sac_flags: 16 bits (unsigned integer)
199 /* Socket Extensions for SCTP
200 * 5.3.1.1 SCTP_ASSOC_CHANGE
202 * sac_length: sizeof (__u32)
203 * This field is the total length of the notification data, including
204 * the notification header.
206 sac
->sac_length
= skb
->len
;
208 /* Socket Extensions for SCTP
209 * 5.3.1.1 SCTP_ASSOC_CHANGE
211 * sac_error: 32 bits (signed integer)
213 * If the state was reached due to a error condition (e.g.
214 * COMMUNICATION_LOST) any relevant error information is available in
215 * this field. This corresponds to the protocol error codes defined in
218 sac
->sac_error
= error
;
220 /* Socket Extensions for SCTP
221 * 5.3.1.1 SCTP_ASSOC_CHANGE
223 * sac_outbound_streams: 16 bits (unsigned integer)
224 * sac_inbound_streams: 16 bits (unsigned integer)
226 * The maximum number of streams allowed in each direction are
227 * available in sac_outbound_streams and sac_inbound streams.
229 sac
->sac_outbound_streams
= outbound
;
230 sac
->sac_inbound_streams
= inbound
;
232 /* Socket Extensions for SCTP
233 * 5.3.1.1 SCTP_ASSOC_CHANGE
235 * sac_assoc_id: sizeof (sctp_assoc_t)
237 * The association id field, holds the identifier for the association.
238 * All notifications for a given association have the same association
239 * identifier. For TCP style socket, this field is ignored.
241 sctp_ulpevent_set_owner(event
, asoc
);
242 sac
->sac_assoc_id
= sctp_assoc2id(asoc
);
250 /* Create and initialize an SCTP_PEER_ADDR_CHANGE event.
252 * Socket Extensions for SCTP - draft-01
253 * 5.3.1.2 SCTP_PEER_ADDR_CHANGE
255 * When a destination address on a multi-homed peer encounters a change
256 * an interface details event is sent.
258 struct sctp_ulpevent
*sctp_ulpevent_make_peer_addr_change(
259 const struct sctp_association
*asoc
,
260 const struct sockaddr_storage
*aaddr
,
261 int flags
, int state
, int error
, gfp_t gfp
)
263 struct sctp_ulpevent
*event
;
264 struct sctp_paddr_change
*spc
;
267 event
= sctp_ulpevent_new(sizeof(struct sctp_paddr_change
),
268 MSG_NOTIFICATION
, gfp
);
272 skb
= sctp_event2skb(event
);
273 spc
= (struct sctp_paddr_change
*)
274 skb_put(skb
, sizeof(struct sctp_paddr_change
));
276 /* Sockets API Extensions for SCTP
277 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
281 * It should be SCTP_PEER_ADDR_CHANGE.
283 spc
->spc_type
= SCTP_PEER_ADDR_CHANGE
;
285 /* Sockets API Extensions for SCTP
286 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
288 * spc_length: sizeof (__u32)
290 * This field is the total length of the notification data, including
291 * the notification header.
293 spc
->spc_length
= sizeof(struct sctp_paddr_change
);
295 /* Sockets API Extensions for SCTP
296 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
298 * spc_flags: 16 bits (unsigned integer)
303 /* Sockets API Extensions for SCTP
304 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
306 * spc_state: 32 bits (signed integer)
308 * This field holds one of a number of values that communicate the
309 * event that happened to the address.
311 spc
->spc_state
= state
;
313 /* Sockets API Extensions for SCTP
314 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
316 * spc_error: 32 bits (signed integer)
318 * If the state was reached due to any error condition (e.g.
319 * ADDRESS_UNREACHABLE) any relevant error information is available in
322 spc
->spc_error
= error
;
324 /* Socket Extensions for SCTP
325 * 5.3.1.1 SCTP_ASSOC_CHANGE
327 * spc_assoc_id: sizeof (sctp_assoc_t)
329 * The association id field, holds the identifier for the association.
330 * All notifications for a given association have the same association
331 * identifier. For TCP style socket, this field is ignored.
333 sctp_ulpevent_set_owner(event
, asoc
);
334 spc
->spc_assoc_id
= sctp_assoc2id(asoc
);
336 /* Sockets API Extensions for SCTP
337 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
339 * spc_aaddr: sizeof (struct sockaddr_storage)
341 * The affected address field, holds the remote peer's address that is
342 * encountering the change of state.
344 memcpy(&spc
->spc_aaddr
, aaddr
, sizeof(struct sockaddr_storage
));
346 /* Map ipv4 address into v4-mapped-on-v6 address. */
347 sctp_get_pf_specific(asoc
->base
.sk
->sk_family
)->addr_to_user(
348 sctp_sk(asoc
->base
.sk
),
349 (union sctp_addr
*)&spc
->spc_aaddr
);
357 /* Create and initialize an SCTP_REMOTE_ERROR notification.
359 * Note: This assumes that the chunk->skb->data already points to the
360 * operation error payload.
362 * Socket Extensions for SCTP - draft-01
363 * 5.3.1.3 SCTP_REMOTE_ERROR
365 * A remote peer may send an Operational Error message to its peer.
366 * This message indicates a variety of error conditions on an
367 * association. The entire error TLV as it appears on the wire is
368 * included in a SCTP_REMOTE_ERROR event. Please refer to the SCTP
369 * specification [SCTP] and any extensions for a list of possible
372 struct sctp_ulpevent
*
373 sctp_ulpevent_make_remote_error(const struct sctp_association
*asoc
,
374 struct sctp_chunk
*chunk
, __u16 flags
,
377 struct sctp_ulpevent
*event
;
378 struct sctp_remote_error
*sre
;
384 ch
= (sctp_errhdr_t
*)(chunk
->skb
->data
);
386 elen
= WORD_ROUND(ntohs(ch
->length
)) - sizeof(sctp_errhdr_t
);
388 /* Pull off the ERROR header. */
389 skb_pull(chunk
->skb
, sizeof(sctp_errhdr_t
));
391 /* Copy the skb to a new skb with room for us to prepend
394 skb
= skb_copy_expand(chunk
->skb
, sizeof(*sre
), 0, gfp
);
396 /* Pull off the rest of the cause TLV from the chunk. */
397 skb_pull(chunk
->skb
, elen
);
401 /* Embed the event fields inside the cloned skb. */
402 event
= sctp_skb2event(skb
);
403 sctp_ulpevent_init(event
, MSG_NOTIFICATION
, skb
->truesize
);
405 sre
= (struct sctp_remote_error
*) skb_push(skb
, sizeof(*sre
));
407 /* Trim the buffer to the right length. */
408 skb_trim(skb
, sizeof(*sre
) + elen
);
410 /* RFC6458, Section 6.1.3. SCTP_REMOTE_ERROR */
411 memset(sre
, 0, sizeof(*sre
));
412 sre
->sre_type
= SCTP_REMOTE_ERROR
;
414 sre
->sre_length
= skb
->len
;
415 sre
->sre_error
= cause
;
416 sctp_ulpevent_set_owner(event
, asoc
);
417 sre
->sre_assoc_id
= sctp_assoc2id(asoc
);
424 /* Create and initialize a SCTP_SEND_FAILED notification.
426 * Socket Extensions for SCTP - draft-01
427 * 5.3.1.4 SCTP_SEND_FAILED
429 struct sctp_ulpevent
*sctp_ulpevent_make_send_failed(
430 const struct sctp_association
*asoc
, struct sctp_chunk
*chunk
,
431 __u16 flags
, __u32 error
, gfp_t gfp
)
433 struct sctp_ulpevent
*event
;
434 struct sctp_send_failed
*ssf
;
437 /* Pull off any padding. */
438 int len
= ntohs(chunk
->chunk_hdr
->length
);
440 /* Make skb with more room so we can prepend notification. */
441 skb
= skb_copy_expand(chunk
->skb
,
442 sizeof(struct sctp_send_failed
), /* headroom */
448 /* Pull off the common chunk header and DATA header. */
449 skb_pull(skb
, sizeof(struct sctp_data_chunk
));
450 len
-= sizeof(struct sctp_data_chunk
);
452 /* Embed the event fields inside the cloned skb. */
453 event
= sctp_skb2event(skb
);
454 sctp_ulpevent_init(event
, MSG_NOTIFICATION
, skb
->truesize
);
456 ssf
= (struct sctp_send_failed
*)
457 skb_push(skb
, sizeof(struct sctp_send_failed
));
459 /* Socket Extensions for SCTP
460 * 5.3.1.4 SCTP_SEND_FAILED
463 * It should be SCTP_SEND_FAILED.
465 ssf
->ssf_type
= SCTP_SEND_FAILED
;
467 /* Socket Extensions for SCTP
468 * 5.3.1.4 SCTP_SEND_FAILED
470 * ssf_flags: 16 bits (unsigned integer)
471 * The flag value will take one of the following values
473 * SCTP_DATA_UNSENT - Indicates that the data was never put on
476 * SCTP_DATA_SENT - Indicates that the data was put on the wire.
477 * Note that this does not necessarily mean that the
478 * data was (or was not) successfully delivered.
480 ssf
->ssf_flags
= flags
;
482 /* Socket Extensions for SCTP
483 * 5.3.1.4 SCTP_SEND_FAILED
485 * ssf_length: sizeof (__u32)
486 * This field is the total length of the notification data, including
487 * the notification header.
489 ssf
->ssf_length
= sizeof(struct sctp_send_failed
) + len
;
490 skb_trim(skb
, ssf
->ssf_length
);
492 /* Socket Extensions for SCTP
493 * 5.3.1.4 SCTP_SEND_FAILED
495 * ssf_error: 16 bits (unsigned integer)
496 * This value represents the reason why the send failed, and if set,
497 * will be a SCTP protocol error code as defined in [SCTP] section
500 ssf
->ssf_error
= error
;
502 /* Socket Extensions for SCTP
503 * 5.3.1.4 SCTP_SEND_FAILED
505 * ssf_info: sizeof (struct sctp_sndrcvinfo)
506 * The original send information associated with the undelivered
509 memcpy(&ssf
->ssf_info
, &chunk
->sinfo
, sizeof(struct sctp_sndrcvinfo
));
511 /* Per TSVWG discussion with Randy. Allow the application to
512 * reassemble a fragmented message.
514 ssf
->ssf_info
.sinfo_flags
= chunk
->chunk_hdr
->flags
;
516 /* Socket Extensions for SCTP
517 * 5.3.1.4 SCTP_SEND_FAILED
519 * ssf_assoc_id: sizeof (sctp_assoc_t)
520 * The association id field, sf_assoc_id, holds the identifier for the
521 * association. All notifications for a given association have the
522 * same association identifier. For TCP style socket, this field is
525 sctp_ulpevent_set_owner(event
, asoc
);
526 ssf
->ssf_assoc_id
= sctp_assoc2id(asoc
);
533 /* Create and initialize a SCTP_SHUTDOWN_EVENT notification.
535 * Socket Extensions for SCTP - draft-01
536 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
538 struct sctp_ulpevent
*sctp_ulpevent_make_shutdown_event(
539 const struct sctp_association
*asoc
,
540 __u16 flags
, gfp_t gfp
)
542 struct sctp_ulpevent
*event
;
543 struct sctp_shutdown_event
*sse
;
546 event
= sctp_ulpevent_new(sizeof(struct sctp_shutdown_event
),
547 MSG_NOTIFICATION
, gfp
);
551 skb
= sctp_event2skb(event
);
552 sse
= (struct sctp_shutdown_event
*)
553 skb_put(skb
, sizeof(struct sctp_shutdown_event
));
555 /* Socket Extensions for SCTP
556 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
559 * It should be SCTP_SHUTDOWN_EVENT
561 sse
->sse_type
= SCTP_SHUTDOWN_EVENT
;
563 /* Socket Extensions for SCTP
564 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
566 * sse_flags: 16 bits (unsigned integer)
571 /* Socket Extensions for SCTP
572 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
574 * sse_length: sizeof (__u32)
575 * This field is the total length of the notification data, including
576 * the notification header.
578 sse
->sse_length
= sizeof(struct sctp_shutdown_event
);
580 /* Socket Extensions for SCTP
581 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
583 * sse_assoc_id: sizeof (sctp_assoc_t)
584 * The association id field, holds the identifier for the association.
585 * All notifications for a given association have the same association
586 * identifier. For TCP style socket, this field is ignored.
588 sctp_ulpevent_set_owner(event
, asoc
);
589 sse
->sse_assoc_id
= sctp_assoc2id(asoc
);
597 /* Create and initialize a SCTP_ADAPTATION_INDICATION notification.
599 * Socket Extensions for SCTP
600 * 5.3.1.6 SCTP_ADAPTATION_INDICATION
602 struct sctp_ulpevent
*sctp_ulpevent_make_adaptation_indication(
603 const struct sctp_association
*asoc
, gfp_t gfp
)
605 struct sctp_ulpevent
*event
;
606 struct sctp_adaptation_event
*sai
;
609 event
= sctp_ulpevent_new(sizeof(struct sctp_adaptation_event
),
610 MSG_NOTIFICATION
, gfp
);
614 skb
= sctp_event2skb(event
);
615 sai
= (struct sctp_adaptation_event
*)
616 skb_put(skb
, sizeof(struct sctp_adaptation_event
));
618 sai
->sai_type
= SCTP_ADAPTATION_INDICATION
;
620 sai
->sai_length
= sizeof(struct sctp_adaptation_event
);
621 sai
->sai_adaptation_ind
= asoc
->peer
.adaptation_ind
;
622 sctp_ulpevent_set_owner(event
, asoc
);
623 sai
->sai_assoc_id
= sctp_assoc2id(asoc
);
631 /* A message has been received. Package this message as a notification
632 * to pass it to the upper layers. Go ahead and calculate the sndrcvinfo
633 * even if filtered out later.
635 * Socket Extensions for SCTP
636 * 5.2.2 SCTP Header Information Structure (SCTP_SNDRCV)
638 struct sctp_ulpevent
*sctp_ulpevent_make_rcvmsg(struct sctp_association
*asoc
,
639 struct sctp_chunk
*chunk
,
642 struct sctp_ulpevent
*event
= NULL
;
648 * check to see if we need to make space for this
649 * new skb, expand the rcvbuffer if needed, or drop
652 if (asoc
->ep
->rcvbuf_policy
)
653 rx_count
= atomic_read(&asoc
->rmem_alloc
);
655 rx_count
= atomic_read(&asoc
->base
.sk
->sk_rmem_alloc
);
657 if (rx_count
>= asoc
->base
.sk
->sk_rcvbuf
) {
659 if ((asoc
->base
.sk
->sk_userlocks
& SOCK_RCVBUF_LOCK
) ||
660 (!sk_rmem_schedule(asoc
->base
.sk
, chunk
->skb
,
661 chunk
->skb
->truesize
)))
665 /* Clone the original skb, sharing the data. */
666 skb
= skb_clone(chunk
->skb
, gfp
);
670 /* Now that all memory allocations for this chunk succeeded, we
671 * can mark it as received so the tsn_map is updated correctly.
673 if (sctp_tsnmap_mark(&asoc
->peer
.tsn_map
,
674 ntohl(chunk
->subh
.data_hdr
->tsn
),
678 /* First calculate the padding, so we don't inadvertently
679 * pass up the wrong length to the user.
681 * RFC 2960 - Section 3.2 Chunk Field Descriptions
683 * The total length of a chunk(including Type, Length and Value fields)
684 * MUST be a multiple of 4 bytes. If the length of the chunk is not a
685 * multiple of 4 bytes, the sender MUST pad the chunk with all zero
686 * bytes and this padding is not included in the chunk length field.
687 * The sender should never pad with more than 3 bytes. The receiver
688 * MUST ignore the padding bytes.
690 len
= ntohs(chunk
->chunk_hdr
->length
);
691 padding
= WORD_ROUND(len
) - len
;
693 /* Fixup cloned skb with just this chunks data. */
694 skb_trim(skb
, chunk
->chunk_end
- padding
- skb
->data
);
696 /* Embed the event fields inside the cloned skb. */
697 event
= sctp_skb2event(skb
);
699 /* Initialize event with flags 0 and correct length
700 * Since this is a clone of the original skb, only account for
701 * the data of this chunk as other chunks will be accounted separately.
703 sctp_ulpevent_init(event
, 0, skb
->len
+ sizeof(struct sk_buff
));
705 /* And hold the chunk as we need it for getting the IP headers
708 sctp_chunk_hold(chunk
);
709 event
->chunk
= chunk
;
711 sctp_ulpevent_receive_data(event
, asoc
);
713 event
->stream
= ntohs(chunk
->subh
.data_hdr
->stream
);
714 event
->ssn
= ntohs(chunk
->subh
.data_hdr
->ssn
);
715 event
->ppid
= chunk
->subh
.data_hdr
->ppid
;
716 if (chunk
->chunk_hdr
->flags
& SCTP_DATA_UNORDERED
) {
717 event
->flags
|= SCTP_UNORDERED
;
718 event
->cumtsn
= sctp_tsnmap_get_ctsn(&asoc
->peer
.tsn_map
);
720 event
->tsn
= ntohl(chunk
->subh
.data_hdr
->tsn
);
721 event
->msg_flags
|= chunk
->chunk_hdr
->flags
;
726 sctp_chunk_put(chunk
);
732 /* Create a partial delivery related event.
734 * 5.3.1.7 SCTP_PARTIAL_DELIVERY_EVENT
736 * When a receiver is engaged in a partial delivery of a
737 * message this notification will be used to indicate
740 struct sctp_ulpevent
*sctp_ulpevent_make_pdapi(
741 const struct sctp_association
*asoc
, __u32 indication
,
744 struct sctp_ulpevent
*event
;
745 struct sctp_pdapi_event
*pd
;
748 event
= sctp_ulpevent_new(sizeof(struct sctp_pdapi_event
),
749 MSG_NOTIFICATION
, gfp
);
753 skb
= sctp_event2skb(event
);
754 pd
= (struct sctp_pdapi_event
*)
755 skb_put(skb
, sizeof(struct sctp_pdapi_event
));
758 * It should be SCTP_PARTIAL_DELIVERY_EVENT
760 * pdapi_flags: 16 bits (unsigned integer)
763 pd
->pdapi_type
= SCTP_PARTIAL_DELIVERY_EVENT
;
766 /* pdapi_length: 32 bits (unsigned integer)
768 * This field is the total length of the notification data, including
769 * the notification header. It will generally be sizeof (struct
772 pd
->pdapi_length
= sizeof(struct sctp_pdapi_event
);
774 /* pdapi_indication: 32 bits (unsigned integer)
776 * This field holds the indication being sent to the application.
778 pd
->pdapi_indication
= indication
;
780 /* pdapi_assoc_id: sizeof (sctp_assoc_t)
782 * The association id field, holds the identifier for the association.
784 sctp_ulpevent_set_owner(event
, asoc
);
785 pd
->pdapi_assoc_id
= sctp_assoc2id(asoc
);
792 struct sctp_ulpevent
*sctp_ulpevent_make_authkey(
793 const struct sctp_association
*asoc
, __u16 key_id
,
794 __u32 indication
, gfp_t gfp
)
796 struct sctp_ulpevent
*event
;
797 struct sctp_authkey_event
*ak
;
800 event
= sctp_ulpevent_new(sizeof(struct sctp_authkey_event
),
801 MSG_NOTIFICATION
, gfp
);
805 skb
= sctp_event2skb(event
);
806 ak
= (struct sctp_authkey_event
*)
807 skb_put(skb
, sizeof(struct sctp_authkey_event
));
809 ak
->auth_type
= SCTP_AUTHENTICATION_EVENT
;
811 ak
->auth_length
= sizeof(struct sctp_authkey_event
);
813 ak
->auth_keynumber
= key_id
;
814 ak
->auth_altkeynumber
= 0;
815 ak
->auth_indication
= indication
;
818 * The association id field, holds the identifier for the association.
820 sctp_ulpevent_set_owner(event
, asoc
);
821 ak
->auth_assoc_id
= sctp_assoc2id(asoc
);
829 * Socket Extensions for SCTP
830 * 6.3.10. SCTP_SENDER_DRY_EVENT
832 struct sctp_ulpevent
*sctp_ulpevent_make_sender_dry_event(
833 const struct sctp_association
*asoc
, gfp_t gfp
)
835 struct sctp_ulpevent
*event
;
836 struct sctp_sender_dry_event
*sdry
;
839 event
= sctp_ulpevent_new(sizeof(struct sctp_sender_dry_event
),
840 MSG_NOTIFICATION
, gfp
);
844 skb
= sctp_event2skb(event
);
845 sdry
= (struct sctp_sender_dry_event
*)
846 skb_put(skb
, sizeof(struct sctp_sender_dry_event
));
848 sdry
->sender_dry_type
= SCTP_SENDER_DRY_EVENT
;
849 sdry
->sender_dry_flags
= 0;
850 sdry
->sender_dry_length
= sizeof(struct sctp_sender_dry_event
);
851 sctp_ulpevent_set_owner(event
, asoc
);
852 sdry
->sender_dry_assoc_id
= sctp_assoc2id(asoc
);
857 /* Return the notification type, assuming this is a notification
860 __u16
sctp_ulpevent_get_notification_type(const struct sctp_ulpevent
*event
)
862 union sctp_notification
*notification
;
865 skb
= sctp_event2skb(event
);
866 notification
= (union sctp_notification
*) skb
->data
;
867 return notification
->sn_header
.sn_type
;
870 /* RFC6458, Section 5.3.2. SCTP Header Information Structure
871 * (SCTP_SNDRCV, DEPRECATED)
873 void sctp_ulpevent_read_sndrcvinfo(const struct sctp_ulpevent
*event
,
874 struct msghdr
*msghdr
)
876 struct sctp_sndrcvinfo sinfo
;
878 if (sctp_ulpevent_is_notification(event
))
881 memset(&sinfo
, 0, sizeof(sinfo
));
882 sinfo
.sinfo_stream
= event
->stream
;
883 sinfo
.sinfo_ssn
= event
->ssn
;
884 sinfo
.sinfo_ppid
= event
->ppid
;
885 sinfo
.sinfo_flags
= event
->flags
;
886 sinfo
.sinfo_tsn
= event
->tsn
;
887 sinfo
.sinfo_cumtsn
= event
->cumtsn
;
888 sinfo
.sinfo_assoc_id
= sctp_assoc2id(event
->asoc
);
889 /* Context value that is set via SCTP_CONTEXT socket option. */
890 sinfo
.sinfo_context
= event
->asoc
->default_rcv_context
;
891 /* These fields are not used while receiving. */
892 sinfo
.sinfo_timetolive
= 0;
894 put_cmsg(msghdr
, IPPROTO_SCTP
, SCTP_SNDRCV
,
895 sizeof(sinfo
), &sinfo
);
898 /* RFC6458, Section 5.3.5 SCTP Receive Information Structure
901 void sctp_ulpevent_read_rcvinfo(const struct sctp_ulpevent
*event
,
902 struct msghdr
*msghdr
)
904 struct sctp_rcvinfo rinfo
;
906 if (sctp_ulpevent_is_notification(event
))
909 memset(&rinfo
, 0, sizeof(struct sctp_rcvinfo
));
910 rinfo
.rcv_sid
= event
->stream
;
911 rinfo
.rcv_ssn
= event
->ssn
;
912 rinfo
.rcv_ppid
= event
->ppid
;
913 rinfo
.rcv_flags
= event
->flags
;
914 rinfo
.rcv_tsn
= event
->tsn
;
915 rinfo
.rcv_cumtsn
= event
->cumtsn
;
916 rinfo
.rcv_assoc_id
= sctp_assoc2id(event
->asoc
);
917 rinfo
.rcv_context
= event
->asoc
->default_rcv_context
;
919 put_cmsg(msghdr
, IPPROTO_SCTP
, SCTP_RCVINFO
,
920 sizeof(rinfo
), &rinfo
);
923 /* RFC6458, Section 5.3.6. SCTP Next Receive Information Structure
926 static void __sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent
*event
,
927 struct msghdr
*msghdr
,
928 const struct sk_buff
*skb
)
930 struct sctp_nxtinfo nxtinfo
;
932 memset(&nxtinfo
, 0, sizeof(nxtinfo
));
933 nxtinfo
.nxt_sid
= event
->stream
;
934 nxtinfo
.nxt_ppid
= event
->ppid
;
935 nxtinfo
.nxt_flags
= event
->flags
;
936 if (sctp_ulpevent_is_notification(event
))
937 nxtinfo
.nxt_flags
|= SCTP_NOTIFICATION
;
938 nxtinfo
.nxt_length
= skb
->len
;
939 nxtinfo
.nxt_assoc_id
= sctp_assoc2id(event
->asoc
);
941 put_cmsg(msghdr
, IPPROTO_SCTP
, SCTP_NXTINFO
,
942 sizeof(nxtinfo
), &nxtinfo
);
945 void sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent
*event
,
946 struct msghdr
*msghdr
,
952 skb
= sctp_skb_recv_datagram(sk
, MSG_PEEK
, 1, &err
);
954 __sctp_ulpevent_read_nxtinfo(sctp_skb2event(skb
),
956 /* Just release refcount here. */
961 /* Do accounting for bytes received and hold a reference to the association
964 static void sctp_ulpevent_receive_data(struct sctp_ulpevent
*event
,
965 struct sctp_association
*asoc
)
967 struct sk_buff
*skb
, *frag
;
969 skb
= sctp_event2skb(event
);
970 /* Set the owner and charge rwnd for bytes received. */
971 sctp_ulpevent_set_owner(event
, asoc
);
972 sctp_assoc_rwnd_decrease(asoc
, skb_headlen(skb
));
977 /* Note: Not clearing the entire event struct as this is just a
978 * fragment of the real event. However, we still need to do rwnd
980 * In general, the skb passed from IP can have only 1 level of
981 * fragments. But we allow multiple levels of fragments.
983 skb_walk_frags(skb
, frag
)
984 sctp_ulpevent_receive_data(sctp_skb2event(frag
), asoc
);
987 /* Do accounting for bytes just read by user and release the references to
990 static void sctp_ulpevent_release_data(struct sctp_ulpevent
*event
)
992 struct sk_buff
*skb
, *frag
;
995 /* Current stack structures assume that the rcv buffer is
996 * per socket. For UDP style sockets this is not true as
997 * multiple associations may be on a single UDP-style socket.
998 * Use the local private area of the skb to track the owning
1002 skb
= sctp_event2skb(event
);
1008 /* Don't forget the fragments. */
1009 skb_walk_frags(skb
, frag
) {
1010 /* NOTE: skb_shinfos are recursive. Although IP returns
1011 * skb's with only 1 level of fragments, SCTP reassembly can
1012 * increase the levels.
1014 sctp_ulpevent_release_frag_data(sctp_skb2event(frag
));
1018 sctp_assoc_rwnd_increase(event
->asoc
, len
);
1019 sctp_chunk_put(event
->chunk
);
1020 sctp_ulpevent_release_owner(event
);
1023 static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent
*event
)
1025 struct sk_buff
*skb
, *frag
;
1027 skb
= sctp_event2skb(event
);
1032 /* Don't forget the fragments. */
1033 skb_walk_frags(skb
, frag
) {
1034 /* NOTE: skb_shinfos are recursive. Although IP returns
1035 * skb's with only 1 level of fragments, SCTP reassembly can
1036 * increase the levels.
1038 sctp_ulpevent_release_frag_data(sctp_skb2event(frag
));
1042 sctp_chunk_put(event
->chunk
);
1043 sctp_ulpevent_release_owner(event
);
1046 /* Free a ulpevent that has an owner. It includes releasing the reference
1047 * to the owner, updating the rwnd in case of a DATA event and freeing the
1050 void sctp_ulpevent_free(struct sctp_ulpevent
*event
)
1052 if (sctp_ulpevent_is_notification(event
))
1053 sctp_ulpevent_release_owner(event
);
1055 sctp_ulpevent_release_data(event
);
1057 kfree_skb(sctp_event2skb(event
));
1060 /* Purge the skb lists holding ulpevents. */
1061 unsigned int sctp_queue_purge_ulpevents(struct sk_buff_head
*list
)
1063 struct sk_buff
*skb
;
1064 unsigned int data_unread
= 0;
1066 while ((skb
= skb_dequeue(list
)) != NULL
) {
1067 struct sctp_ulpevent
*event
= sctp_skb2event(skb
);
1069 if (!sctp_ulpevent_is_notification(event
))
1070 data_unread
+= skb
->len
;
1072 sctp_ulpevent_free(event
);