dpt_i2o: Fix up copy*user
[linux-2.6/verdex.git] / net / sctp / ulpevent.c
blob8b3560fd876d2b95b361460b16fa3d92291a3160
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)
16 * any later version.
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, write to
26 * the Free Software Foundation, 59 Temple Place - Suite 330,
27 * Boston, MA 02111-1307, USA.
29 * Please send any bug reports or fixes you make to the
30 * email address(es):
31 * lksctp developers <lksctp-developers@lists.sourceforge.net>
33 * Or submit a bug report through the following website:
34 * http://www.sf.net/projects/lksctp
36 * Written or modified by:
37 * Jon Grimm <jgrimm@us.ibm.com>
38 * La Monte H.P. Yarroll <piggy@acm.org>
39 * Ardelle Fan <ardelle.fan@intel.com>
40 * Sridhar Samudrala <sri@us.ibm.com>
42 * Any bugs reported given to us we will try to fix... any fixes shared will
43 * be incorporated into the next SCTP release.
46 #include <linux/types.h>
47 #include <linux/skbuff.h>
48 #include <net/sctp/structs.h>
49 #include <net/sctp/sctp.h>
50 #include <net/sctp/sm.h>
52 static void sctp_ulpevent_receive_data(struct sctp_ulpevent *event,
53 struct sctp_association *asoc);
54 static void sctp_ulpevent_release_data(struct sctp_ulpevent *event);
55 static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event);
58 /* Initialize an ULP event from an given skb. */
59 SCTP_STATIC void sctp_ulpevent_init(struct sctp_ulpevent *event,
60 int msg_flags,
61 unsigned int len)
63 memset(event, 0, sizeof(struct sctp_ulpevent));
64 event->msg_flags = msg_flags;
65 event->rmem_len = len;
68 /* Create a new sctp_ulpevent. */
69 SCTP_STATIC struct sctp_ulpevent *sctp_ulpevent_new(int size, int msg_flags,
70 gfp_t gfp)
72 struct sctp_ulpevent *event;
73 struct sk_buff *skb;
75 skb = alloc_skb(size, gfp);
76 if (!skb)
77 goto fail;
79 event = sctp_skb2event(skb);
80 sctp_ulpevent_init(event, msg_flags, skb->truesize);
82 return event;
84 fail:
85 return NULL;
88 /* Is this a MSG_NOTIFICATION? */
89 int sctp_ulpevent_is_notification(const struct sctp_ulpevent *event)
91 return MSG_NOTIFICATION == (event->msg_flags & MSG_NOTIFICATION);
94 /* Hold the association in case the msg_name needs read out of
95 * the association.
97 static inline void sctp_ulpevent_set_owner(struct sctp_ulpevent *event,
98 const struct sctp_association *asoc)
100 struct sk_buff *skb;
102 /* Cast away the const, as we are just wanting to
103 * bump the reference count.
105 sctp_association_hold((struct sctp_association *)asoc);
106 skb = sctp_event2skb(event);
107 event->asoc = (struct sctp_association *)asoc;
108 atomic_add(event->rmem_len, &event->asoc->rmem_alloc);
109 sctp_skb_set_owner_r(skb, asoc->base.sk);
112 /* A simple destructor to give up the reference to the association. */
113 static inline void sctp_ulpevent_release_owner(struct sctp_ulpevent *event)
115 struct sctp_association *asoc = event->asoc;
117 atomic_sub(event->rmem_len, &asoc->rmem_alloc);
118 sctp_association_put(asoc);
121 /* Create and initialize an SCTP_ASSOC_CHANGE event.
123 * 5.3.1.1 SCTP_ASSOC_CHANGE
125 * Communication notifications inform the ULP that an SCTP association
126 * has either begun or ended. The identifier for a new association is
127 * provided by this notification.
129 * Note: There is no field checking here. If a field is unused it will be
130 * zero'd out.
132 struct sctp_ulpevent *sctp_ulpevent_make_assoc_change(
133 const struct sctp_association *asoc,
134 __u16 flags, __u16 state, __u16 error, __u16 outbound,
135 __u16 inbound, struct sctp_chunk *chunk, gfp_t gfp)
137 struct sctp_ulpevent *event;
138 struct sctp_assoc_change *sac;
139 struct sk_buff *skb;
141 /* If the lower layer passed in the chunk, it will be
142 * an ABORT, so we need to include it in the sac_info.
144 if (chunk) {
145 /* Copy the chunk data to a new skb and reserve enough
146 * head room to use as notification.
148 skb = skb_copy_expand(chunk->skb,
149 sizeof(struct sctp_assoc_change), 0, gfp);
151 if (!skb)
152 goto fail;
154 /* Embed the event fields inside the cloned skb. */
155 event = sctp_skb2event(skb);
156 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
158 /* Include the notification structure */
159 sac = (struct sctp_assoc_change *)
160 skb_push(skb, sizeof(struct sctp_assoc_change));
162 /* Trim the buffer to the right length. */
163 skb_trim(skb, sizeof(struct sctp_assoc_change) +
164 ntohs(chunk->chunk_hdr->length) -
165 sizeof(sctp_chunkhdr_t));
166 } else {
167 event = sctp_ulpevent_new(sizeof(struct sctp_assoc_change),
168 MSG_NOTIFICATION, gfp);
169 if (!event)
170 goto fail;
172 skb = sctp_event2skb(event);
173 sac = (struct sctp_assoc_change *) skb_put(skb,
174 sizeof(struct sctp_assoc_change));
177 /* Socket Extensions for SCTP
178 * 5.3.1.1 SCTP_ASSOC_CHANGE
180 * sac_type:
181 * It should be SCTP_ASSOC_CHANGE.
183 sac->sac_type = SCTP_ASSOC_CHANGE;
185 /* Socket Extensions for SCTP
186 * 5.3.1.1 SCTP_ASSOC_CHANGE
188 * sac_state: 32 bits (signed integer)
189 * This field holds one of a number of values that communicate the
190 * event that happened to the association.
192 sac->sac_state = state;
194 /* Socket Extensions for SCTP
195 * 5.3.1.1 SCTP_ASSOC_CHANGE
197 * sac_flags: 16 bits (unsigned integer)
198 * Currently unused.
200 sac->sac_flags = 0;
202 /* Socket Extensions for SCTP
203 * 5.3.1.1 SCTP_ASSOC_CHANGE
205 * sac_length: sizeof (__u32)
206 * This field is the total length of the notification data, including
207 * the notification header.
209 sac->sac_length = skb->len;
211 /* Socket Extensions for SCTP
212 * 5.3.1.1 SCTP_ASSOC_CHANGE
214 * sac_error: 32 bits (signed integer)
216 * If the state was reached due to a error condition (e.g.
217 * COMMUNICATION_LOST) any relevant error information is available in
218 * this field. This corresponds to the protocol error codes defined in
219 * [SCTP].
221 sac->sac_error = error;
223 /* Socket Extensions for SCTP
224 * 5.3.1.1 SCTP_ASSOC_CHANGE
226 * sac_outbound_streams: 16 bits (unsigned integer)
227 * sac_inbound_streams: 16 bits (unsigned integer)
229 * The maximum number of streams allowed in each direction are
230 * available in sac_outbound_streams and sac_inbound streams.
232 sac->sac_outbound_streams = outbound;
233 sac->sac_inbound_streams = inbound;
235 /* Socket Extensions for SCTP
236 * 5.3.1.1 SCTP_ASSOC_CHANGE
238 * sac_assoc_id: sizeof (sctp_assoc_t)
240 * The association id field, holds the identifier for the association.
241 * All notifications for a given association have the same association
242 * identifier. For TCP style socket, this field is ignored.
244 sctp_ulpevent_set_owner(event, asoc);
245 sac->sac_assoc_id = sctp_assoc2id(asoc);
247 return event;
249 fail:
250 return NULL;
253 /* Create and initialize an SCTP_PEER_ADDR_CHANGE event.
255 * Socket Extensions for SCTP - draft-01
256 * 5.3.1.2 SCTP_PEER_ADDR_CHANGE
258 * When a destination address on a multi-homed peer encounters a change
259 * an interface details event is sent.
261 struct sctp_ulpevent *sctp_ulpevent_make_peer_addr_change(
262 const struct sctp_association *asoc,
263 const struct sockaddr_storage *aaddr,
264 int flags, int state, int error, gfp_t gfp)
266 struct sctp_ulpevent *event;
267 struct sctp_paddr_change *spc;
268 struct sk_buff *skb;
270 event = sctp_ulpevent_new(sizeof(struct sctp_paddr_change),
271 MSG_NOTIFICATION, gfp);
272 if (!event)
273 goto fail;
275 skb = sctp_event2skb(event);
276 spc = (struct sctp_paddr_change *)
277 skb_put(skb, sizeof(struct sctp_paddr_change));
279 /* Sockets API Extensions for SCTP
280 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
282 * spc_type:
284 * It should be SCTP_PEER_ADDR_CHANGE.
286 spc->spc_type = SCTP_PEER_ADDR_CHANGE;
288 /* Sockets API Extensions for SCTP
289 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
291 * spc_length: sizeof (__u32)
293 * This field is the total length of the notification data, including
294 * the notification header.
296 spc->spc_length = sizeof(struct sctp_paddr_change);
298 /* Sockets API Extensions for SCTP
299 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
301 * spc_flags: 16 bits (unsigned integer)
302 * Currently unused.
304 spc->spc_flags = 0;
306 /* Sockets API Extensions for SCTP
307 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
309 * spc_state: 32 bits (signed integer)
311 * This field holds one of a number of values that communicate the
312 * event that happened to the address.
314 spc->spc_state = state;
316 /* Sockets API Extensions for SCTP
317 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
319 * spc_error: 32 bits (signed integer)
321 * If the state was reached due to any error condition (e.g.
322 * ADDRESS_UNREACHABLE) any relevant error information is available in
323 * this field.
325 spc->spc_error = error;
327 /* Socket Extensions for SCTP
328 * 5.3.1.1 SCTP_ASSOC_CHANGE
330 * spc_assoc_id: sizeof (sctp_assoc_t)
332 * The association id field, holds the identifier for the association.
333 * All notifications for a given association have the same association
334 * identifier. For TCP style socket, this field is ignored.
336 sctp_ulpevent_set_owner(event, asoc);
337 spc->spc_assoc_id = sctp_assoc2id(asoc);
339 /* Sockets API Extensions for SCTP
340 * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE
342 * spc_aaddr: sizeof (struct sockaddr_storage)
344 * The affected address field, holds the remote peer's address that is
345 * encountering the change of state.
347 memcpy(&spc->spc_aaddr, aaddr, sizeof(struct sockaddr_storage));
349 /* Map ipv4 address into v4-mapped-on-v6 address. */
350 sctp_get_pf_specific(asoc->base.sk->sk_family)->addr_v4map(
351 sctp_sk(asoc->base.sk),
352 (union sctp_addr *)&spc->spc_aaddr);
354 return event;
356 fail:
357 return NULL;
360 /* Create and initialize an SCTP_REMOTE_ERROR notification.
362 * Note: This assumes that the chunk->skb->data already points to the
363 * operation error payload.
365 * Socket Extensions for SCTP - draft-01
366 * 5.3.1.3 SCTP_REMOTE_ERROR
368 * A remote peer may send an Operational Error message to its peer.
369 * This message indicates a variety of error conditions on an
370 * association. The entire error TLV as it appears on the wire is
371 * included in a SCTP_REMOTE_ERROR event. Please refer to the SCTP
372 * specification [SCTP] and any extensions for a list of possible
373 * error formats.
375 struct sctp_ulpevent *sctp_ulpevent_make_remote_error(
376 const struct sctp_association *asoc, struct sctp_chunk *chunk,
377 __u16 flags, gfp_t gfp)
379 struct sctp_ulpevent *event;
380 struct sctp_remote_error *sre;
381 struct sk_buff *skb;
382 sctp_errhdr_t *ch;
383 __be16 cause;
384 int elen;
386 ch = (sctp_errhdr_t *)(chunk->skb->data);
387 cause = ch->cause;
388 elen = WORD_ROUND(ntohs(ch->length)) - sizeof(sctp_errhdr_t);
390 /* Pull off the ERROR header. */
391 skb_pull(chunk->skb, sizeof(sctp_errhdr_t));
393 /* Copy the skb to a new skb with room for us to prepend
394 * notification with.
396 skb = skb_copy_expand(chunk->skb, sizeof(struct sctp_remote_error),
397 0, gfp);
399 /* Pull off the rest of the cause TLV from the chunk. */
400 skb_pull(chunk->skb, elen);
401 if (!skb)
402 goto fail;
404 /* Embed the event fields inside the cloned skb. */
405 event = sctp_skb2event(skb);
406 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
408 sre = (struct sctp_remote_error *)
409 skb_push(skb, sizeof(struct sctp_remote_error));
411 /* Trim the buffer to the right length. */
412 skb_trim(skb, sizeof(struct sctp_remote_error) + elen);
414 /* Socket Extensions for SCTP
415 * 5.3.1.3 SCTP_REMOTE_ERROR
417 * sre_type:
418 * It should be SCTP_REMOTE_ERROR.
420 sre->sre_type = SCTP_REMOTE_ERROR;
423 * Socket Extensions for SCTP
424 * 5.3.1.3 SCTP_REMOTE_ERROR
426 * sre_flags: 16 bits (unsigned integer)
427 * Currently unused.
429 sre->sre_flags = 0;
431 /* Socket Extensions for SCTP
432 * 5.3.1.3 SCTP_REMOTE_ERROR
434 * sre_length: sizeof (__u32)
436 * This field is the total length of the notification data,
437 * including the notification header.
439 sre->sre_length = skb->len;
441 /* Socket Extensions for SCTP
442 * 5.3.1.3 SCTP_REMOTE_ERROR
444 * sre_error: 16 bits (unsigned integer)
445 * This value represents one of the Operational Error causes defined in
446 * the SCTP specification, in network byte order.
448 sre->sre_error = cause;
450 /* Socket Extensions for SCTP
451 * 5.3.1.3 SCTP_REMOTE_ERROR
453 * sre_assoc_id: sizeof (sctp_assoc_t)
455 * The association id field, holds the identifier for the association.
456 * All notifications for a given association have the same association
457 * identifier. For TCP style socket, this field is ignored.
459 sctp_ulpevent_set_owner(event, asoc);
460 sre->sre_assoc_id = sctp_assoc2id(asoc);
462 return event;
464 fail:
465 return NULL;
468 /* Create and initialize a SCTP_SEND_FAILED notification.
470 * Socket Extensions for SCTP - draft-01
471 * 5.3.1.4 SCTP_SEND_FAILED
473 struct sctp_ulpevent *sctp_ulpevent_make_send_failed(
474 const struct sctp_association *asoc, struct sctp_chunk *chunk,
475 __u16 flags, __u32 error, gfp_t gfp)
477 struct sctp_ulpevent *event;
478 struct sctp_send_failed *ssf;
479 struct sk_buff *skb;
481 /* Pull off any padding. */
482 int len = ntohs(chunk->chunk_hdr->length);
484 /* Make skb with more room so we can prepend notification. */
485 skb = skb_copy_expand(chunk->skb,
486 sizeof(struct sctp_send_failed), /* headroom */
487 0, /* tailroom */
488 gfp);
489 if (!skb)
490 goto fail;
492 /* Pull off the common chunk header and DATA header. */
493 skb_pull(skb, sizeof(struct sctp_data_chunk));
494 len -= sizeof(struct sctp_data_chunk);
496 /* Embed the event fields inside the cloned skb. */
497 event = sctp_skb2event(skb);
498 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
500 ssf = (struct sctp_send_failed *)
501 skb_push(skb, sizeof(struct sctp_send_failed));
503 /* Socket Extensions for SCTP
504 * 5.3.1.4 SCTP_SEND_FAILED
506 * ssf_type:
507 * It should be SCTP_SEND_FAILED.
509 ssf->ssf_type = SCTP_SEND_FAILED;
511 /* Socket Extensions for SCTP
512 * 5.3.1.4 SCTP_SEND_FAILED
514 * ssf_flags: 16 bits (unsigned integer)
515 * The flag value will take one of the following values
517 * SCTP_DATA_UNSENT - Indicates that the data was never put on
518 * the wire.
520 * SCTP_DATA_SENT - Indicates that the data was put on the wire.
521 * Note that this does not necessarily mean that the
522 * data was (or was not) successfully delivered.
524 ssf->ssf_flags = flags;
526 /* Socket Extensions for SCTP
527 * 5.3.1.4 SCTP_SEND_FAILED
529 * ssf_length: sizeof (__u32)
530 * This field is the total length of the notification data, including
531 * the notification header.
533 ssf->ssf_length = sizeof(struct sctp_send_failed) + len;
534 skb_trim(skb, ssf->ssf_length);
536 /* Socket Extensions for SCTP
537 * 5.3.1.4 SCTP_SEND_FAILED
539 * ssf_error: 16 bits (unsigned integer)
540 * This value represents the reason why the send failed, and if set,
541 * will be a SCTP protocol error code as defined in [SCTP] section
542 * 3.3.10.
544 ssf->ssf_error = error;
546 /* Socket Extensions for SCTP
547 * 5.3.1.4 SCTP_SEND_FAILED
549 * ssf_info: sizeof (struct sctp_sndrcvinfo)
550 * The original send information associated with the undelivered
551 * message.
553 memcpy(&ssf->ssf_info, &chunk->sinfo, sizeof(struct sctp_sndrcvinfo));
555 /* Per TSVWG discussion with Randy. Allow the application to
556 * ressemble a fragmented message.
558 ssf->ssf_info.sinfo_flags = chunk->chunk_hdr->flags;
560 /* Socket Extensions for SCTP
561 * 5.3.1.4 SCTP_SEND_FAILED
563 * ssf_assoc_id: sizeof (sctp_assoc_t)
564 * The association id field, sf_assoc_id, holds the identifier for the
565 * association. All notifications for a given association have the
566 * same association identifier. For TCP style socket, this field is
567 * ignored.
569 sctp_ulpevent_set_owner(event, asoc);
570 ssf->ssf_assoc_id = sctp_assoc2id(asoc);
571 return event;
573 fail:
574 return NULL;
577 /* Create and initialize a SCTP_SHUTDOWN_EVENT notification.
579 * Socket Extensions for SCTP - draft-01
580 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
582 struct sctp_ulpevent *sctp_ulpevent_make_shutdown_event(
583 const struct sctp_association *asoc,
584 __u16 flags, gfp_t gfp)
586 struct sctp_ulpevent *event;
587 struct sctp_shutdown_event *sse;
588 struct sk_buff *skb;
590 event = sctp_ulpevent_new(sizeof(struct sctp_shutdown_event),
591 MSG_NOTIFICATION, gfp);
592 if (!event)
593 goto fail;
595 skb = sctp_event2skb(event);
596 sse = (struct sctp_shutdown_event *)
597 skb_put(skb, sizeof(struct sctp_shutdown_event));
599 /* Socket Extensions for SCTP
600 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
602 * sse_type
603 * It should be SCTP_SHUTDOWN_EVENT
605 sse->sse_type = SCTP_SHUTDOWN_EVENT;
607 /* Socket Extensions for SCTP
608 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
610 * sse_flags: 16 bits (unsigned integer)
611 * Currently unused.
613 sse->sse_flags = 0;
615 /* Socket Extensions for SCTP
616 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
618 * sse_length: sizeof (__u32)
619 * This field is the total length of the notification data, including
620 * the notification header.
622 sse->sse_length = sizeof(struct sctp_shutdown_event);
624 /* Socket Extensions for SCTP
625 * 5.3.1.5 SCTP_SHUTDOWN_EVENT
627 * sse_assoc_id: sizeof (sctp_assoc_t)
628 * The association id field, holds the identifier for the association.
629 * All notifications for a given association have the same association
630 * identifier. For TCP style socket, this field is ignored.
632 sctp_ulpevent_set_owner(event, asoc);
633 sse->sse_assoc_id = sctp_assoc2id(asoc);
635 return event;
637 fail:
638 return NULL;
641 /* Create and initialize a SCTP_ADAPTATION_INDICATION notification.
643 * Socket Extensions for SCTP
644 * 5.3.1.6 SCTP_ADAPTATION_INDICATION
646 struct sctp_ulpevent *sctp_ulpevent_make_adaptation_indication(
647 const struct sctp_association *asoc, gfp_t gfp)
649 struct sctp_ulpevent *event;
650 struct sctp_adaptation_event *sai;
651 struct sk_buff *skb;
653 event = sctp_ulpevent_new(sizeof(struct sctp_adaptation_event),
654 MSG_NOTIFICATION, gfp);
655 if (!event)
656 goto fail;
658 skb = sctp_event2skb(event);
659 sai = (struct sctp_adaptation_event *)
660 skb_put(skb, sizeof(struct sctp_adaptation_event));
662 sai->sai_type = SCTP_ADAPTATION_INDICATION;
663 sai->sai_flags = 0;
664 sai->sai_length = sizeof(struct sctp_adaptation_event);
665 sai->sai_adaptation_ind = asoc->peer.adaptation_ind;
666 sctp_ulpevent_set_owner(event, asoc);
667 sai->sai_assoc_id = sctp_assoc2id(asoc);
669 return event;
671 fail:
672 return NULL;
675 /* A message has been received. Package this message as a notification
676 * to pass it to the upper layers. Go ahead and calculate the sndrcvinfo
677 * even if filtered out later.
679 * Socket Extensions for SCTP
680 * 5.2.2 SCTP Header Information Structure (SCTP_SNDRCV)
682 struct sctp_ulpevent *sctp_ulpevent_make_rcvmsg(struct sctp_association *asoc,
683 struct sctp_chunk *chunk,
684 gfp_t gfp)
686 struct sctp_ulpevent *event = NULL;
687 struct sk_buff *skb;
688 size_t padding, len;
689 int rx_count;
692 * check to see if we need to make space for this
693 * new skb, expand the rcvbuffer if needed, or drop
694 * the frame
696 if (asoc->ep->rcvbuf_policy)
697 rx_count = atomic_read(&asoc->rmem_alloc);
698 else
699 rx_count = atomic_read(&asoc->base.sk->sk_rmem_alloc);
701 if (rx_count >= asoc->base.sk->sk_rcvbuf) {
703 if ((asoc->base.sk->sk_userlocks & SOCK_RCVBUF_LOCK) ||
704 (!sk_rmem_schedule(asoc->base.sk, chunk->skb->truesize)))
705 goto fail;
708 /* Clone the original skb, sharing the data. */
709 skb = skb_clone(chunk->skb, gfp);
710 if (!skb)
711 goto fail;
713 /* Now that all memory allocations for this chunk succeeded, we
714 * can mark it as received so the tsn_map is updated correctly.
716 if (sctp_tsnmap_mark(&asoc->peer.tsn_map,
717 ntohl(chunk->subh.data_hdr->tsn)))
718 goto fail_mark;
720 /* First calculate the padding, so we don't inadvertently
721 * pass up the wrong length to the user.
723 * RFC 2960 - Section 3.2 Chunk Field Descriptions
725 * The total length of a chunk(including Type, Length and Value fields)
726 * MUST be a multiple of 4 bytes. If the length of the chunk is not a
727 * multiple of 4 bytes, the sender MUST pad the chunk with all zero
728 * bytes and this padding is not included in the chunk length field.
729 * The sender should never pad with more than 3 bytes. The receiver
730 * MUST ignore the padding bytes.
732 len = ntohs(chunk->chunk_hdr->length);
733 padding = WORD_ROUND(len) - len;
735 /* Fixup cloned skb with just this chunks data. */
736 skb_trim(skb, chunk->chunk_end - padding - skb->data);
738 /* Embed the event fields inside the cloned skb. */
739 event = sctp_skb2event(skb);
741 /* Initialize event with flags 0 and correct length
742 * Since this is a clone of the original skb, only account for
743 * the data of this chunk as other chunks will be accounted separately.
745 sctp_ulpevent_init(event, 0, skb->len + sizeof(struct sk_buff));
747 sctp_ulpevent_receive_data(event, asoc);
749 event->stream = ntohs(chunk->subh.data_hdr->stream);
750 event->ssn = ntohs(chunk->subh.data_hdr->ssn);
751 event->ppid = chunk->subh.data_hdr->ppid;
752 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) {
753 event->flags |= SCTP_UNORDERED;
754 event->cumtsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
756 event->tsn = ntohl(chunk->subh.data_hdr->tsn);
757 event->msg_flags |= chunk->chunk_hdr->flags;
758 event->iif = sctp_chunk_iif(chunk);
760 return event;
762 fail_mark:
763 kfree_skb(skb);
764 fail:
765 return NULL;
768 /* Create a partial delivery related event.
770 * 5.3.1.7 SCTP_PARTIAL_DELIVERY_EVENT
772 * When a receiver is engaged in a partial delivery of a
773 * message this notification will be used to indicate
774 * various events.
776 struct sctp_ulpevent *sctp_ulpevent_make_pdapi(
777 const struct sctp_association *asoc, __u32 indication,
778 gfp_t gfp)
780 struct sctp_ulpevent *event;
781 struct sctp_pdapi_event *pd;
782 struct sk_buff *skb;
784 event = sctp_ulpevent_new(sizeof(struct sctp_pdapi_event),
785 MSG_NOTIFICATION, gfp);
786 if (!event)
787 goto fail;
789 skb = sctp_event2skb(event);
790 pd = (struct sctp_pdapi_event *)
791 skb_put(skb, sizeof(struct sctp_pdapi_event));
793 /* pdapi_type
794 * It should be SCTP_PARTIAL_DELIVERY_EVENT
796 * pdapi_flags: 16 bits (unsigned integer)
797 * Currently unused.
799 pd->pdapi_type = SCTP_PARTIAL_DELIVERY_EVENT;
800 pd->pdapi_flags = 0;
802 /* pdapi_length: 32 bits (unsigned integer)
804 * This field is the total length of the notification data, including
805 * the notification header. It will generally be sizeof (struct
806 * sctp_pdapi_event).
808 pd->pdapi_length = sizeof(struct sctp_pdapi_event);
810 /* pdapi_indication: 32 bits (unsigned integer)
812 * This field holds the indication being sent to the application.
814 pd->pdapi_indication = indication;
816 /* pdapi_assoc_id: sizeof (sctp_assoc_t)
818 * The association id field, holds the identifier for the association.
820 sctp_ulpevent_set_owner(event, asoc);
821 pd->pdapi_assoc_id = sctp_assoc2id(asoc);
823 return event;
824 fail:
825 return NULL;
828 struct sctp_ulpevent *sctp_ulpevent_make_authkey(
829 const struct sctp_association *asoc, __u16 key_id,
830 __u32 indication, gfp_t gfp)
832 struct sctp_ulpevent *event;
833 struct sctp_authkey_event *ak;
834 struct sk_buff *skb;
836 event = sctp_ulpevent_new(sizeof(struct sctp_authkey_event),
837 MSG_NOTIFICATION, gfp);
838 if (!event)
839 goto fail;
841 skb = sctp_event2skb(event);
842 ak = (struct sctp_authkey_event *)
843 skb_put(skb, sizeof(struct sctp_authkey_event));
845 ak->auth_type = SCTP_AUTHENTICATION_INDICATION;
846 ak->auth_flags = 0;
847 ak->auth_length = sizeof(struct sctp_authkey_event);
849 ak->auth_keynumber = key_id;
850 ak->auth_altkeynumber = 0;
851 ak->auth_indication = indication;
854 * The association id field, holds the identifier for the association.
856 sctp_ulpevent_set_owner(event, asoc);
857 ak->auth_assoc_id = sctp_assoc2id(asoc);
859 return event;
860 fail:
861 return NULL;
865 /* Return the notification type, assuming this is a notification
866 * event.
868 __u16 sctp_ulpevent_get_notification_type(const struct sctp_ulpevent *event)
870 union sctp_notification *notification;
871 struct sk_buff *skb;
873 skb = sctp_event2skb(event);
874 notification = (union sctp_notification *) skb->data;
875 return notification->sn_header.sn_type;
878 /* Copy out the sndrcvinfo into a msghdr. */
879 void sctp_ulpevent_read_sndrcvinfo(const struct sctp_ulpevent *event,
880 struct msghdr *msghdr)
882 struct sctp_sndrcvinfo sinfo;
884 if (sctp_ulpevent_is_notification(event))
885 return;
887 /* Sockets API Extensions for SCTP
888 * Section 5.2.2 SCTP Header Information Structure (SCTP_SNDRCV)
890 * sinfo_stream: 16 bits (unsigned integer)
892 * For recvmsg() the SCTP stack places the message's stream number in
893 * this value.
895 sinfo.sinfo_stream = event->stream;
896 /* sinfo_ssn: 16 bits (unsigned integer)
898 * For recvmsg() this value contains the stream sequence number that
899 * the remote endpoint placed in the DATA chunk. For fragmented
900 * messages this is the same number for all deliveries of the message
901 * (if more than one recvmsg() is needed to read the message).
903 sinfo.sinfo_ssn = event->ssn;
904 /* sinfo_ppid: 32 bits (unsigned integer)
906 * In recvmsg() this value is
907 * the same information that was passed by the upper layer in the peer
908 * application. Please note that byte order issues are NOT accounted
909 * for and this information is passed opaquely by the SCTP stack from
910 * one end to the other.
912 sinfo.sinfo_ppid = event->ppid;
913 /* sinfo_flags: 16 bits (unsigned integer)
915 * This field may contain any of the following flags and is composed of
916 * a bitwise OR of these values.
918 * recvmsg() flags:
920 * SCTP_UNORDERED - This flag is present when the message was sent
921 * non-ordered.
923 sinfo.sinfo_flags = event->flags;
924 /* sinfo_tsn: 32 bit (unsigned integer)
926 * For the receiving side, this field holds a TSN that was
927 * assigned to one of the SCTP Data Chunks.
929 sinfo.sinfo_tsn = event->tsn;
930 /* sinfo_cumtsn: 32 bit (unsigned integer)
932 * This field will hold the current cumulative TSN as
933 * known by the underlying SCTP layer. Note this field is
934 * ignored when sending and only valid for a receive
935 * operation when sinfo_flags are set to SCTP_UNORDERED.
937 sinfo.sinfo_cumtsn = event->cumtsn;
938 /* sinfo_assoc_id: sizeof (sctp_assoc_t)
940 * The association handle field, sinfo_assoc_id, holds the identifier
941 * for the association announced in the COMMUNICATION_UP notification.
942 * All notifications for a given association have the same identifier.
943 * Ignored for one-to-one style sockets.
945 sinfo.sinfo_assoc_id = sctp_assoc2id(event->asoc);
947 /* context value that is set via SCTP_CONTEXT socket option. */
948 sinfo.sinfo_context = event->asoc->default_rcv_context;
950 /* These fields are not used while receiving. */
951 sinfo.sinfo_timetolive = 0;
953 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_SNDRCV,
954 sizeof(struct sctp_sndrcvinfo), (void *)&sinfo);
957 /* Do accounting for bytes received and hold a reference to the association
958 * for each skb.
960 static void sctp_ulpevent_receive_data(struct sctp_ulpevent *event,
961 struct sctp_association *asoc)
963 struct sk_buff *skb, *frag;
965 skb = sctp_event2skb(event);
966 /* Set the owner and charge rwnd for bytes received. */
967 sctp_ulpevent_set_owner(event, asoc);
968 sctp_assoc_rwnd_decrease(asoc, skb_headlen(skb));
970 if (!skb->data_len)
971 return;
973 /* Note: Not clearing the entire event struct as this is just a
974 * fragment of the real event. However, we still need to do rwnd
975 * accounting.
976 * In general, the skb passed from IP can have only 1 level of
977 * fragments. But we allow multiple levels of fragments.
979 skb_walk_frags(skb, frag)
980 sctp_ulpevent_receive_data(sctp_skb2event(frag), asoc);
983 /* Do accounting for bytes just read by user and release the references to
984 * the association.
986 static void sctp_ulpevent_release_data(struct sctp_ulpevent *event)
988 struct sk_buff *skb, *frag;
989 unsigned int len;
991 /* Current stack structures assume that the rcv buffer is
992 * per socket. For UDP style sockets this is not true as
993 * multiple associations may be on a single UDP-style socket.
994 * Use the local private area of the skb to track the owning
995 * association.
998 skb = sctp_event2skb(event);
999 len = skb->len;
1001 if (!skb->data_len)
1002 goto done;
1004 /* Don't forget the fragments. */
1005 skb_walk_frags(skb, frag) {
1006 /* NOTE: skb_shinfos are recursive. Although IP returns
1007 * skb's with only 1 level of fragments, SCTP reassembly can
1008 * increase the levels.
1010 sctp_ulpevent_release_frag_data(sctp_skb2event(frag));
1013 done:
1014 sctp_assoc_rwnd_increase(event->asoc, len);
1015 sctp_ulpevent_release_owner(event);
1018 static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event)
1020 struct sk_buff *skb, *frag;
1022 skb = sctp_event2skb(event);
1024 if (!skb->data_len)
1025 goto done;
1027 /* Don't forget the fragments. */
1028 skb_walk_frags(skb, frag) {
1029 /* NOTE: skb_shinfos are recursive. Although IP returns
1030 * skb's with only 1 level of fragments, SCTP reassembly can
1031 * increase the levels.
1033 sctp_ulpevent_release_frag_data(sctp_skb2event(frag));
1036 done:
1037 sctp_ulpevent_release_owner(event);
1040 /* Free a ulpevent that has an owner. It includes releasing the reference
1041 * to the owner, updating the rwnd in case of a DATA event and freeing the
1042 * skb.
1044 void sctp_ulpevent_free(struct sctp_ulpevent *event)
1046 if (sctp_ulpevent_is_notification(event))
1047 sctp_ulpevent_release_owner(event);
1048 else
1049 sctp_ulpevent_release_data(event);
1051 kfree_skb(sctp_event2skb(event));
1054 /* Purge the skb lists holding ulpevents. */
1055 void sctp_queue_purge_ulpevents(struct sk_buff_head *list)
1057 struct sk_buff *skb;
1058 while ((skb = skb_dequeue(list)) != NULL)
1059 sctp_ulpevent_free(sctp_skb2event(skb));