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
, int 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
)
96 /* Cast away the const, as we are just wanting to
97 * bump the reference count.
99 sctp_association_hold((struct sctp_association
*)asoc
);
100 skb
= sctp_event2skb(event
);
101 event
->asoc
= (struct sctp_association
*)asoc
;
102 atomic_add(event
->rmem_len
, &event
->asoc
->rmem_alloc
);
103 sctp_skb_set_owner_r(skb
, asoc
->base
.sk
);
106 /* A simple destructor to give up the reference to the association. */
107 static inline void sctp_ulpevent_release_owner(struct sctp_ulpevent
*event
)
109 struct sctp_association
*asoc
= event
->asoc
;
111 atomic_sub(event
->rmem_len
, &asoc
->rmem_alloc
);
112 sctp_association_put(asoc
);
115 /* Create and initialize an SCTP_ASSOC_CHANGE event.
117 * 5.3.1.1 SCTP_ASSOC_CHANGE
119 * Communication notifications inform the ULP that an SCTP association
120 * has either begun or ended. The identifier for a new association is
121 * provided by this notification.
123 * Note: There is no field checking here. If a field is unused it will be
126 struct sctp_ulpevent
*sctp_ulpevent_make_assoc_change(
127 const struct sctp_association
*asoc
,
128 __u16 flags
, __u16 state
, __u16 error
, __u16 outbound
,
129 __u16 inbound
, struct sctp_chunk
*chunk
, gfp_t gfp
)
131 struct sctp_ulpevent
*event
;
132 struct sctp_assoc_change
*sac
;
135 /* If the lower layer passed in the chunk, it will be
136 * an ABORT, so we need to include it in the sac_info.
139 /* Copy the chunk data to a new skb and reserve enough
140 * head room to use as notification.
142 skb
= skb_copy_expand(chunk
->skb
,
143 sizeof(struct sctp_assoc_change
), 0, gfp
);
148 /* Embed the event fields inside the cloned skb. */
149 event
= sctp_skb2event(skb
);
150 sctp_ulpevent_init(event
, MSG_NOTIFICATION
, skb
->truesize
);
152 /* Include the notification structure */
153 sac
= (struct sctp_assoc_change
*)
154 skb_push(skb
, sizeof(struct sctp_assoc_change
));
156 /* Trim the buffer to the right length. */
157 skb_trim(skb
, sizeof(struct sctp_assoc_change
) +
158 ntohs(chunk
->chunk_hdr
->length
) -
159 sizeof(sctp_chunkhdr_t
));
161 event
= sctp_ulpevent_new(sizeof(struct sctp_assoc_change
),
162 MSG_NOTIFICATION
, gfp
);
166 skb
= sctp_event2skb(event
);
167 sac
= (struct sctp_assoc_change
*) skb_put(skb
,
168 sizeof(struct sctp_assoc_change
));
171 /* Socket Extensions for SCTP
172 * 5.3.1.1 SCTP_ASSOC_CHANGE
175 * It should be SCTP_ASSOC_CHANGE.
177 sac
->sac_type
= SCTP_ASSOC_CHANGE
;
179 /* Socket Extensions for SCTP
180 * 5.3.1.1 SCTP_ASSOC_CHANGE
182 * sac_state: 32 bits (signed integer)
183 * This field holds one of a number of values that communicate the
184 * event that happened to the association.
186 sac
->sac_state
= state
;
188 /* Socket Extensions for SCTP
189 * 5.3.1.1 SCTP_ASSOC_CHANGE
191 * sac_flags: 16 bits (unsigned integer)
196 /* Socket Extensions for SCTP
197 * 5.3.1.1 SCTP_ASSOC_CHANGE
199 * sac_length: sizeof (__u32)
200 * This field is the total length of the notification data, including
201 * the notification header.
203 sac
->sac_length
= skb
->len
;
205 /* Socket Extensions for SCTP
206 * 5.3.1.1 SCTP_ASSOC_CHANGE
208 * sac_error: 32 bits (signed integer)
210 * If the state was reached due to a error condition (e.g.
211 * COMMUNICATION_LOST) any relevant error information is available in
212 * this field. This corresponds to the protocol error codes defined in
215 sac
->sac_error
= error
;
217 /* Socket Extensions for SCTP
218 * 5.3.1.1 SCTP_ASSOC_CHANGE
220 * sac_outbound_streams: 16 bits (unsigned integer)
221 * sac_inbound_streams: 16 bits (unsigned integer)
223 * The maximum number of streams allowed in each direction are
224 * available in sac_outbound_streams and sac_inbound streams.
226 sac
->sac_outbound_streams
= outbound
;
227 sac
->sac_inbound_streams
= inbound
;
229 /* Socket Extensions for SCTP
230 * 5.3.1.1 SCTP_ASSOC_CHANGE
232 * sac_assoc_id: sizeof (sctp_assoc_t)
234 * The association id field, holds the identifier for the association.
235 * All notifications for a given association have the same association
236 * identifier. For TCP style socket, this field is ignored.
238 sctp_ulpevent_set_owner(event
, asoc
);
239 sac
->sac_assoc_id
= sctp_assoc2id(asoc
);
247 /* Create and initialize an SCTP_PEER_ADDR_CHANGE event.
249 * Socket Extensions for SCTP - draft-01
250 * 5.3.1.2 SCTP_PEER_ADDR_CHANGE
252 * When a destination address on a multi-homed peer encounters a change
253 * an interface details event is sent.
255 struct sctp_ulpevent
*sctp_ulpevent_make_peer_addr_change(
256 const struct sctp_association
*asoc
,
257 const struct sockaddr_storage
*aaddr
,
258 int flags
, int state
, int error
, gfp_t gfp
)
260 struct sctp_ulpevent
*event
;
261 struct sctp_paddr_change
*spc
;
264 event
= sctp_ulpevent_new(sizeof(struct sctp_paddr_change
),
265 MSG_NOTIFICATION
, gfp
);
269 skb
= sctp_event2skb(event
);
270 spc
= (struct sctp_paddr_change
*)
271 skb_put(skb
, sizeof(struct sctp_paddr_change
));
273 /* Sockets API Extensions for SCTP
274 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
278 * It should be SCTP_PEER_ADDR_CHANGE.
280 spc
->spc_type
= SCTP_PEER_ADDR_CHANGE
;
282 /* Sockets API Extensions for SCTP
283 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
285 * spc_length: sizeof (__u32)
287 * This field is the total length of the notification data, including
288 * the notification header.
290 spc
->spc_length
= sizeof(struct sctp_paddr_change
);
292 /* Sockets API Extensions for SCTP
293 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
295 * spc_flags: 16 bits (unsigned integer)
300 /* Sockets API Extensions for SCTP
301 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
303 * spc_state: 32 bits (signed integer)
305 * This field holds one of a number of values that communicate the
306 * event that happened to the address.
308 spc
->spc_state
= state
;
310 /* Sockets API Extensions for SCTP
311 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
313 * spc_error: 32 bits (signed integer)
315 * If the state was reached due to any error condition (e.g.
316 * ADDRESS_UNREACHABLE) any relevant error information is available in
319 spc
->spc_error
= error
;
321 /* Socket Extensions for SCTP
322 * 5.3.1.1 SCTP_ASSOC_CHANGE
324 * spc_assoc_id: sizeof (sctp_assoc_t)
326 * The association id field, holds the identifier for the association.
327 * All notifications for a given association have the same association
328 * identifier. For TCP style socket, this field is ignored.
330 sctp_ulpevent_set_owner(event
, asoc
);
331 spc
->spc_assoc_id
= sctp_assoc2id(asoc
);
333 /* Sockets API Extensions for SCTP
334 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
336 * spc_aaddr: sizeof (struct sockaddr_storage)
338 * The affected address field, holds the remote peer's address that is
339 * encountering the change of state.
341 memcpy(&spc
->spc_aaddr
, aaddr
, sizeof(struct sockaddr_storage
));
343 /* Map ipv4 address into v4-mapped-on-v6 address. */
344 sctp_get_pf_specific(asoc
->base
.sk
->sk_family
)->addr_v4map(
345 sctp_sk(asoc
->base
.sk
),
346 (union sctp_addr
*)&spc
->spc_aaddr
);
354 /* Create and initialize an SCTP_REMOTE_ERROR notification.
356 * Note: This assumes that the chunk->skb->data already points to the
357 * operation error payload.
359 * Socket Extensions for SCTP - draft-01
360 * 5.3.1.3 SCTP_REMOTE_ERROR
362 * A remote peer may send an Operational Error message to its peer.
363 * This message indicates a variety of error conditions on an
364 * association. The entire error TLV as it appears on the wire is
365 * included in a SCTP_REMOTE_ERROR event. Please refer to the SCTP
366 * specification [SCTP] and any extensions for a list of possible
369 struct sctp_ulpevent
*sctp_ulpevent_make_remote_error(
370 const struct sctp_association
*asoc
, struct sctp_chunk
*chunk
,
371 __u16 flags
, gfp_t gfp
)
373 struct sctp_ulpevent
*event
;
374 struct sctp_remote_error
*sre
;
380 ch
= (sctp_errhdr_t
*)(chunk
->skb
->data
);
382 elen
= WORD_ROUND(ntohs(ch
->length
)) - sizeof(sctp_errhdr_t
);
384 /* Pull off the ERROR header. */
385 skb_pull(chunk
->skb
, sizeof(sctp_errhdr_t
));
387 /* Copy the skb to a new skb with room for us to prepend
390 skb
= skb_copy_expand(chunk
->skb
, sizeof(struct sctp_remote_error
),
393 /* Pull off the rest of the cause TLV from the chunk. */
394 skb_pull(chunk
->skb
, elen
);
398 /* Embed the event fields inside the cloned skb. */
399 event
= sctp_skb2event(skb
);
400 sctp_ulpevent_init(event
, MSG_NOTIFICATION
, skb
->truesize
);
402 sre
= (struct sctp_remote_error
*)
403 skb_push(skb
, sizeof(struct sctp_remote_error
));
405 /* Trim the buffer to the right length. */
406 skb_trim(skb
, sizeof(struct sctp_remote_error
) + elen
);
408 /* Socket Extensions for SCTP
409 * 5.3.1.3 SCTP_REMOTE_ERROR
412 * It should be SCTP_REMOTE_ERROR.
414 sre
->sre_type
= SCTP_REMOTE_ERROR
;
417 * Socket Extensions for SCTP
418 * 5.3.1.3 SCTP_REMOTE_ERROR
420 * sre_flags: 16 bits (unsigned integer)
425 /* Socket Extensions for SCTP
426 * 5.3.1.3 SCTP_REMOTE_ERROR
428 * sre_length: sizeof (__u32)
430 * This field is the total length of the notification data,
431 * including the notification header.
433 sre
->sre_length
= skb
->len
;
435 /* Socket Extensions for SCTP
436 * 5.3.1.3 SCTP_REMOTE_ERROR
438 * sre_error: 16 bits (unsigned integer)
439 * This value represents one of the Operational Error causes defined in
440 * the SCTP specification, in network byte order.
442 sre
->sre_error
= cause
;
444 /* Socket Extensions for SCTP
445 * 5.3.1.3 SCTP_REMOTE_ERROR
447 * sre_assoc_id: sizeof (sctp_assoc_t)
449 * The association id field, holds the identifier for the association.
450 * All notifications for a given association have the same association
451 * identifier. For TCP style socket, this field is ignored.
453 sctp_ulpevent_set_owner(event
, asoc
);
454 sre
->sre_assoc_id
= sctp_assoc2id(asoc
);
462 /* Create and initialize a SCTP_SEND_FAILED notification.
464 * Socket Extensions for SCTP - draft-01
465 * 5.3.1.4 SCTP_SEND_FAILED
467 struct sctp_ulpevent
*sctp_ulpevent_make_send_failed(
468 const struct sctp_association
*asoc
, struct sctp_chunk
*chunk
,
469 __u16 flags
, __u32 error
, gfp_t gfp
)
471 struct sctp_ulpevent
*event
;
472 struct sctp_send_failed
*ssf
;
475 /* Pull off any padding. */
476 int len
= ntohs(chunk
->chunk_hdr
->length
);
478 /* Make skb with more room so we can prepend notification. */
479 skb
= skb_copy_expand(chunk
->skb
,
480 sizeof(struct sctp_send_failed
), /* headroom */
486 /* Pull off the common chunk header and DATA header. */
487 skb_pull(skb
, sizeof(struct sctp_data_chunk
));
488 len
-= sizeof(struct sctp_data_chunk
);
490 /* Embed the event fields inside the cloned skb. */
491 event
= sctp_skb2event(skb
);
492 sctp_ulpevent_init(event
, MSG_NOTIFICATION
, skb
->truesize
);
494 ssf
= (struct sctp_send_failed
*)
495 skb_push(skb
, sizeof(struct sctp_send_failed
));
497 /* Socket Extensions for SCTP
498 * 5.3.1.4 SCTP_SEND_FAILED
501 * It should be SCTP_SEND_FAILED.
503 ssf
->ssf_type
= SCTP_SEND_FAILED
;
505 /* Socket Extensions for SCTP
506 * 5.3.1.4 SCTP_SEND_FAILED
508 * ssf_flags: 16 bits (unsigned integer)
509 * The flag value will take one of the following values
511 * SCTP_DATA_UNSENT - Indicates that the data was never put on
514 * SCTP_DATA_SENT - Indicates that the data was put on the wire.
515 * Note that this does not necessarily mean that the
516 * data was (or was not) successfully delivered.
518 ssf
->ssf_flags
= flags
;
520 /* Socket Extensions for SCTP
521 * 5.3.1.4 SCTP_SEND_FAILED
523 * ssf_length: sizeof (__u32)
524 * This field is the total length of the notification data, including
525 * the notification header.
527 ssf
->ssf_length
= sizeof(struct sctp_send_failed
) + len
;
528 skb_trim(skb
, ssf
->ssf_length
);
530 /* Socket Extensions for SCTP
531 * 5.3.1.4 SCTP_SEND_FAILED
533 * ssf_error: 16 bits (unsigned integer)
534 * This value represents the reason why the send failed, and if set,
535 * will be a SCTP protocol error code as defined in [SCTP] section
538 ssf
->ssf_error
= error
;
540 /* Socket Extensions for SCTP
541 * 5.3.1.4 SCTP_SEND_FAILED
543 * ssf_info: sizeof (struct sctp_sndrcvinfo)
544 * The original send information associated with the undelivered
547 memcpy(&ssf
->ssf_info
, &chunk
->sinfo
, sizeof(struct sctp_sndrcvinfo
));
549 /* Per TSVWG discussion with Randy. Allow the application to
550 * reassemble a fragmented message.
552 ssf
->ssf_info
.sinfo_flags
= chunk
->chunk_hdr
->flags
;
554 /* Socket Extensions for SCTP
555 * 5.3.1.4 SCTP_SEND_FAILED
557 * ssf_assoc_id: sizeof (sctp_assoc_t)
558 * The association id field, sf_assoc_id, holds the identifier for the
559 * association. All notifications for a given association have the
560 * same association identifier. For TCP style socket, this field is
563 sctp_ulpevent_set_owner(event
, asoc
);
564 ssf
->ssf_assoc_id
= sctp_assoc2id(asoc
);
571 /* Create and initialize a SCTP_SHUTDOWN_EVENT notification.
573 * Socket Extensions for SCTP - draft-01
574 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
576 struct sctp_ulpevent
*sctp_ulpevent_make_shutdown_event(
577 const struct sctp_association
*asoc
,
578 __u16 flags
, gfp_t gfp
)
580 struct sctp_ulpevent
*event
;
581 struct sctp_shutdown_event
*sse
;
584 event
= sctp_ulpevent_new(sizeof(struct sctp_shutdown_event
),
585 MSG_NOTIFICATION
, gfp
);
589 skb
= sctp_event2skb(event
);
590 sse
= (struct sctp_shutdown_event
*)
591 skb_put(skb
, sizeof(struct sctp_shutdown_event
));
593 /* Socket Extensions for SCTP
594 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
597 * It should be SCTP_SHUTDOWN_EVENT
599 sse
->sse_type
= SCTP_SHUTDOWN_EVENT
;
601 /* Socket Extensions for SCTP
602 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
604 * sse_flags: 16 bits (unsigned integer)
609 /* Socket Extensions for SCTP
610 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
612 * sse_length: sizeof (__u32)
613 * This field is the total length of the notification data, including
614 * the notification header.
616 sse
->sse_length
= sizeof(struct sctp_shutdown_event
);
618 /* Socket Extensions for SCTP
619 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
621 * sse_assoc_id: sizeof (sctp_assoc_t)
622 * The association id field, holds the identifier for the association.
623 * All notifications for a given association have the same association
624 * identifier. For TCP style socket, this field is ignored.
626 sctp_ulpevent_set_owner(event
, asoc
);
627 sse
->sse_assoc_id
= sctp_assoc2id(asoc
);
635 /* Create and initialize a SCTP_ADAPTATION_INDICATION notification.
637 * Socket Extensions for SCTP
638 * 5.3.1.6 SCTP_ADAPTATION_INDICATION
640 struct sctp_ulpevent
*sctp_ulpevent_make_adaptation_indication(
641 const struct sctp_association
*asoc
, gfp_t gfp
)
643 struct sctp_ulpevent
*event
;
644 struct sctp_adaptation_event
*sai
;
647 event
= sctp_ulpevent_new(sizeof(struct sctp_adaptation_event
),
648 MSG_NOTIFICATION
, gfp
);
652 skb
= sctp_event2skb(event
);
653 sai
= (struct sctp_adaptation_event
*)
654 skb_put(skb
, sizeof(struct sctp_adaptation_event
));
656 sai
->sai_type
= SCTP_ADAPTATION_INDICATION
;
658 sai
->sai_length
= sizeof(struct sctp_adaptation_event
);
659 sai
->sai_adaptation_ind
= asoc
->peer
.adaptation_ind
;
660 sctp_ulpevent_set_owner(event
, asoc
);
661 sai
->sai_assoc_id
= sctp_assoc2id(asoc
);
669 /* A message has been received. Package this message as a notification
670 * to pass it to the upper layers. Go ahead and calculate the sndrcvinfo
671 * even if filtered out later.
673 * Socket Extensions for SCTP
674 * 5.2.2 SCTP Header Information Structure (SCTP_SNDRCV)
676 struct sctp_ulpevent
*sctp_ulpevent_make_rcvmsg(struct sctp_association
*asoc
,
677 struct sctp_chunk
*chunk
,
680 struct sctp_ulpevent
*event
= NULL
;
686 * check to see if we need to make space for this
687 * new skb, expand the rcvbuffer if needed, or drop
690 if (asoc
->ep
->rcvbuf_policy
)
691 rx_count
= atomic_read(&asoc
->rmem_alloc
);
693 rx_count
= atomic_read(&asoc
->base
.sk
->sk_rmem_alloc
);
695 if (rx_count
>= asoc
->base
.sk
->sk_rcvbuf
) {
697 if ((asoc
->base
.sk
->sk_userlocks
& SOCK_RCVBUF_LOCK
) ||
698 (!sk_rmem_schedule(asoc
->base
.sk
, chunk
->skb
,
699 chunk
->skb
->truesize
)))
703 /* Clone the original skb, sharing the data. */
704 skb
= skb_clone(chunk
->skb
, gfp
);
708 /* Now that all memory allocations for this chunk succeeded, we
709 * can mark it as received so the tsn_map is updated correctly.
711 if (sctp_tsnmap_mark(&asoc
->peer
.tsn_map
,
712 ntohl(chunk
->subh
.data_hdr
->tsn
),
716 /* First calculate the padding, so we don't inadvertently
717 * pass up the wrong length to the user.
719 * RFC 2960 - Section 3.2 Chunk Field Descriptions
721 * The total length of a chunk(including Type, Length and Value fields)
722 * MUST be a multiple of 4 bytes. If the length of the chunk is not a
723 * multiple of 4 bytes, the sender MUST pad the chunk with all zero
724 * bytes and this padding is not included in the chunk length field.
725 * The sender should never pad with more than 3 bytes. The receiver
726 * MUST ignore the padding bytes.
728 len
= ntohs(chunk
->chunk_hdr
->length
);
729 padding
= WORD_ROUND(len
) - len
;
731 /* Fixup cloned skb with just this chunks data. */
732 skb_trim(skb
, chunk
->chunk_end
- padding
- skb
->data
);
734 /* Embed the event fields inside the cloned skb. */
735 event
= sctp_skb2event(skb
);
737 /* Initialize event with flags 0 and correct length
738 * Since this is a clone of the original skb, only account for
739 * the data of this chunk as other chunks will be accounted separately.
741 sctp_ulpevent_init(event
, 0, skb
->len
+ sizeof(struct sk_buff
));
743 sctp_ulpevent_receive_data(event
, asoc
);
745 event
->stream
= ntohs(chunk
->subh
.data_hdr
->stream
);
746 event
->ssn
= ntohs(chunk
->subh
.data_hdr
->ssn
);
747 event
->ppid
= chunk
->subh
.data_hdr
->ppid
;
748 if (chunk
->chunk_hdr
->flags
& SCTP_DATA_UNORDERED
) {
749 event
->flags
|= SCTP_UNORDERED
;
750 event
->cumtsn
= sctp_tsnmap_get_ctsn(&asoc
->peer
.tsn_map
);
752 event
->tsn
= ntohl(chunk
->subh
.data_hdr
->tsn
);
753 event
->msg_flags
|= chunk
->chunk_hdr
->flags
;
754 event
->iif
= sctp_chunk_iif(chunk
);
764 /* Create a partial delivery related event.
766 * 5.3.1.7 SCTP_PARTIAL_DELIVERY_EVENT
768 * When a receiver is engaged in a partial delivery of a
769 * message this notification will be used to indicate
772 struct sctp_ulpevent
*sctp_ulpevent_make_pdapi(
773 const struct sctp_association
*asoc
, __u32 indication
,
776 struct sctp_ulpevent
*event
;
777 struct sctp_pdapi_event
*pd
;
780 event
= sctp_ulpevent_new(sizeof(struct sctp_pdapi_event
),
781 MSG_NOTIFICATION
, gfp
);
785 skb
= sctp_event2skb(event
);
786 pd
= (struct sctp_pdapi_event
*)
787 skb_put(skb
, sizeof(struct sctp_pdapi_event
));
790 * It should be SCTP_PARTIAL_DELIVERY_EVENT
792 * pdapi_flags: 16 bits (unsigned integer)
795 pd
->pdapi_type
= SCTP_PARTIAL_DELIVERY_EVENT
;
798 /* pdapi_length: 32 bits (unsigned integer)
800 * This field is the total length of the notification data, including
801 * the notification header. It will generally be sizeof (struct
804 pd
->pdapi_length
= sizeof(struct sctp_pdapi_event
);
806 /* pdapi_indication: 32 bits (unsigned integer)
808 * This field holds the indication being sent to the application.
810 pd
->pdapi_indication
= indication
;
812 /* pdapi_assoc_id: sizeof (sctp_assoc_t)
814 * The association id field, holds the identifier for the association.
816 sctp_ulpevent_set_owner(event
, asoc
);
817 pd
->pdapi_assoc_id
= sctp_assoc2id(asoc
);
824 struct sctp_ulpevent
*sctp_ulpevent_make_authkey(
825 const struct sctp_association
*asoc
, __u16 key_id
,
826 __u32 indication
, gfp_t gfp
)
828 struct sctp_ulpevent
*event
;
829 struct sctp_authkey_event
*ak
;
832 event
= sctp_ulpevent_new(sizeof(struct sctp_authkey_event
),
833 MSG_NOTIFICATION
, gfp
);
837 skb
= sctp_event2skb(event
);
838 ak
= (struct sctp_authkey_event
*)
839 skb_put(skb
, sizeof(struct sctp_authkey_event
));
841 ak
->auth_type
= SCTP_AUTHENTICATION_EVENT
;
843 ak
->auth_length
= sizeof(struct sctp_authkey_event
);
845 ak
->auth_keynumber
= key_id
;
846 ak
->auth_altkeynumber
= 0;
847 ak
->auth_indication
= indication
;
850 * The association id field, holds the identifier for the association.
852 sctp_ulpevent_set_owner(event
, asoc
);
853 ak
->auth_assoc_id
= sctp_assoc2id(asoc
);
861 * Socket Extensions for SCTP
862 * 6.3.10. SCTP_SENDER_DRY_EVENT
864 struct sctp_ulpevent
*sctp_ulpevent_make_sender_dry_event(
865 const struct sctp_association
*asoc
, gfp_t gfp
)
867 struct sctp_ulpevent
*event
;
868 struct sctp_sender_dry_event
*sdry
;
871 event
= sctp_ulpevent_new(sizeof(struct sctp_sender_dry_event
),
872 MSG_NOTIFICATION
, gfp
);
876 skb
= sctp_event2skb(event
);
877 sdry
= (struct sctp_sender_dry_event
*)
878 skb_put(skb
, sizeof(struct sctp_sender_dry_event
));
880 sdry
->sender_dry_type
= SCTP_SENDER_DRY_EVENT
;
881 sdry
->sender_dry_flags
= 0;
882 sdry
->sender_dry_length
= sizeof(struct sctp_sender_dry_event
);
883 sctp_ulpevent_set_owner(event
, asoc
);
884 sdry
->sender_dry_assoc_id
= sctp_assoc2id(asoc
);
889 /* Return the notification type, assuming this is a notification
892 __u16
sctp_ulpevent_get_notification_type(const struct sctp_ulpevent
*event
)
894 union sctp_notification
*notification
;
897 skb
= sctp_event2skb(event
);
898 notification
= (union sctp_notification
*) skb
->data
;
899 return notification
->sn_header
.sn_type
;
902 /* Copy out the sndrcvinfo into a msghdr. */
903 void sctp_ulpevent_read_sndrcvinfo(const struct sctp_ulpevent
*event
,
904 struct msghdr
*msghdr
)
906 struct sctp_sndrcvinfo sinfo
;
908 if (sctp_ulpevent_is_notification(event
))
911 /* Sockets API Extensions for SCTP
912 * Section 5.2.2 SCTP Header Information Structure (SCTP_SNDRCV)
914 * sinfo_stream: 16 bits (unsigned integer)
916 * For recvmsg() the SCTP stack places the message's stream number in
919 sinfo
.sinfo_stream
= event
->stream
;
920 /* sinfo_ssn: 16 bits (unsigned integer)
922 * For recvmsg() this value contains the stream sequence number that
923 * the remote endpoint placed in the DATA chunk. For fragmented
924 * messages this is the same number for all deliveries of the message
925 * (if more than one recvmsg() is needed to read the message).
927 sinfo
.sinfo_ssn
= event
->ssn
;
928 /* sinfo_ppid: 32 bits (unsigned integer)
930 * In recvmsg() this value is
931 * the same information that was passed by the upper layer in the peer
932 * application. Please note that byte order issues are NOT accounted
933 * for and this information is passed opaquely by the SCTP stack from
934 * one end to the other.
936 sinfo
.sinfo_ppid
= event
->ppid
;
937 /* sinfo_flags: 16 bits (unsigned integer)
939 * This field may contain any of the following flags and is composed of
940 * a bitwise OR of these values.
944 * SCTP_UNORDERED - This flag is present when the message was sent
947 sinfo
.sinfo_flags
= event
->flags
;
948 /* sinfo_tsn: 32 bit (unsigned integer)
950 * For the receiving side, this field holds a TSN that was
951 * assigned to one of the SCTP Data Chunks.
953 sinfo
.sinfo_tsn
= event
->tsn
;
954 /* sinfo_cumtsn: 32 bit (unsigned integer)
956 * This field will hold the current cumulative TSN as
957 * known by the underlying SCTP layer. Note this field is
958 * ignored when sending and only valid for a receive
959 * operation when sinfo_flags are set to SCTP_UNORDERED.
961 sinfo
.sinfo_cumtsn
= event
->cumtsn
;
962 /* sinfo_assoc_id: sizeof (sctp_assoc_t)
964 * The association handle field, sinfo_assoc_id, holds the identifier
965 * for the association announced in the COMMUNICATION_UP notification.
966 * All notifications for a given association have the same identifier.
967 * Ignored for one-to-one style sockets.
969 sinfo
.sinfo_assoc_id
= sctp_assoc2id(event
->asoc
);
971 /* context value that is set via SCTP_CONTEXT socket option. */
972 sinfo
.sinfo_context
= event
->asoc
->default_rcv_context
;
974 /* These fields are not used while receiving. */
975 sinfo
.sinfo_timetolive
= 0;
977 put_cmsg(msghdr
, IPPROTO_SCTP
, SCTP_SNDRCV
,
978 sizeof(struct sctp_sndrcvinfo
), (void *)&sinfo
);
981 /* Do accounting for bytes received and hold a reference to the association
984 static void sctp_ulpevent_receive_data(struct sctp_ulpevent
*event
,
985 struct sctp_association
*asoc
)
987 struct sk_buff
*skb
, *frag
;
989 skb
= sctp_event2skb(event
);
990 /* Set the owner and charge rwnd for bytes received. */
991 sctp_ulpevent_set_owner(event
, asoc
);
992 sctp_assoc_rwnd_decrease(asoc
, skb_headlen(skb
));
997 /* Note: Not clearing the entire event struct as this is just a
998 * fragment of the real event. However, we still need to do rwnd
1000 * In general, the skb passed from IP can have only 1 level of
1001 * fragments. But we allow multiple levels of fragments.
1003 skb_walk_frags(skb
, frag
)
1004 sctp_ulpevent_receive_data(sctp_skb2event(frag
), asoc
);
1007 /* Do accounting for bytes just read by user and release the references to
1010 static void sctp_ulpevent_release_data(struct sctp_ulpevent
*event
)
1012 struct sk_buff
*skb
, *frag
;
1015 /* Current stack structures assume that the rcv buffer is
1016 * per socket. For UDP style sockets this is not true as
1017 * multiple associations may be on a single UDP-style socket.
1018 * Use the local private area of the skb to track the owning
1022 skb
= sctp_event2skb(event
);
1028 /* Don't forget the fragments. */
1029 skb_walk_frags(skb
, frag
) {
1030 /* NOTE: skb_shinfos are recursive. Although IP returns
1031 * skb's with only 1 level of fragments, SCTP reassembly can
1032 * increase the levels.
1034 sctp_ulpevent_release_frag_data(sctp_skb2event(frag
));
1038 sctp_assoc_rwnd_increase(event
->asoc
, len
);
1039 sctp_ulpevent_release_owner(event
);
1042 static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent
*event
)
1044 struct sk_buff
*skb
, *frag
;
1046 skb
= sctp_event2skb(event
);
1051 /* Don't forget the fragments. */
1052 skb_walk_frags(skb
, frag
) {
1053 /* NOTE: skb_shinfos are recursive. Although IP returns
1054 * skb's with only 1 level of fragments, SCTP reassembly can
1055 * increase the levels.
1057 sctp_ulpevent_release_frag_data(sctp_skb2event(frag
));
1061 sctp_ulpevent_release_owner(event
);
1064 /* Free a ulpevent that has an owner. It includes releasing the reference
1065 * to the owner, updating the rwnd in case of a DATA event and freeing the
1068 void sctp_ulpevent_free(struct sctp_ulpevent
*event
)
1070 if (sctp_ulpevent_is_notification(event
))
1071 sctp_ulpevent_release_owner(event
);
1073 sctp_ulpevent_release_data(event
);
1075 kfree_skb(sctp_event2skb(event
));
1078 /* Purge the skb lists holding ulpevents. */
1079 unsigned int sctp_queue_purge_ulpevents(struct sk_buff_head
*list
)
1081 struct sk_buff
*skb
;
1082 unsigned int data_unread
= 0;
1084 while ((skb
= skb_dequeue(list
)) != NULL
) {
1085 struct sctp_ulpevent
*event
= sctp_skb2event(skb
);
1087 if (!sctp_ulpevent_is_notification(event
))
1088 data_unread
+= skb
->len
;
1090 sctp_ulpevent_free(event
);