1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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>
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);
49static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event);
50
51
52
53static void sctp_ulpevent_init(struct sctp_ulpevent *event,
54 __u16 msg_flags,
55 unsigned int len)
56{
57 memset(event, 0, sizeof(struct sctp_ulpevent));
58 event->msg_flags = msg_flags;
59 event->rmem_len = len;
60}
61
62
63static struct sctp_ulpevent *sctp_ulpevent_new(int size, __u16 msg_flags,
64 gfp_t gfp)
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);
74 sctp_ulpevent_init(event, msg_flags, skb->truesize);
75
76 return event;
77
78fail:
79 return NULL;
80}
81
82
83int sctp_ulpevent_is_notification(const struct sctp_ulpevent *event)
84{
85 return MSG_NOTIFICATION == (event->msg_flags & MSG_NOTIFICATION);
86}
87
88
89
90
91static inline void sctp_ulpevent_set_owner(struct sctp_ulpevent *event,
92 const struct sctp_association *asoc)
93{
94 struct sctp_chunk *chunk = event->chunk;
95 struct sk_buff *skb;
96
97
98
99
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;
107}
108
109
110static inline void sctp_ulpevent_release_owner(struct sctp_ulpevent *event)
111{
112 struct sctp_association *asoc = event->asoc;
113
114 atomic_sub(event->rmem_len, &asoc->rmem_alloc);
115 sctp_association_put(asoc);
116}
117
118
119
120
121
122
123
124
125
126
127
128
129struct 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)
133{
134 struct sctp_ulpevent *event;
135 struct sctp_assoc_change *sac;
136 struct sk_buff *skb;
137
138
139
140
141 if (chunk) {
142
143
144
145 skb = skb_copy_expand(chunk->skb,
146 sizeof(struct sctp_assoc_change), 0, gfp);
147
148 if (!skb)
149 goto fail;
150
151
152 event = sctp_skb2event(skb);
153 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
154
155
156 sac = (struct sctp_assoc_change *)
157 skb_push(skb, sizeof(struct sctp_assoc_change));
158
159
160 skb_trim(skb, sizeof(struct sctp_assoc_change) +
161 ntohs(chunk->chunk_hdr->length) -
162 sizeof(sctp_chunkhdr_t));
163 } else {
164 event = sctp_ulpevent_new(sizeof(struct sctp_assoc_change),
165 MSG_NOTIFICATION, gfp);
166 if (!event)
167 goto fail;
168
169 skb = sctp_event2skb(event);
170 sac = (struct sctp_assoc_change *) skb_put(skb,
171 sizeof(struct sctp_assoc_change));
172 }
173
174
175
176
177
178
179
180 sac->sac_type = SCTP_ASSOC_CHANGE;
181
182
183
184
185
186
187
188
189 sac->sac_state = state;
190
191
192
193
194
195
196
197 sac->sac_flags = 0;
198
199
200
201
202
203
204
205
206 sac->sac_length = skb->len;
207
208
209
210
211
212
213
214
215
216
217
218 sac->sac_error = error;
219
220
221
222
223
224
225
226
227
228
229 sac->sac_outbound_streams = outbound;
230 sac->sac_inbound_streams = inbound;
231
232
233
234
235
236
237
238
239
240
241 sctp_ulpevent_set_owner(event, asoc);
242 sac->sac_assoc_id = sctp_assoc2id(asoc);
243
244 return event;
245
246fail:
247 return NULL;
248}
249
250
251
252
253
254
255
256
257
258struct 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)
262{
263 struct sctp_ulpevent *event;
264 struct sctp_paddr_change *spc;
265 struct sk_buff *skb;
266
267 event = sctp_ulpevent_new(sizeof(struct sctp_paddr_change),
268 MSG_NOTIFICATION, gfp);
269 if (!event)
270 goto fail;
271
272 skb = sctp_event2skb(event);
273 spc = (struct sctp_paddr_change *)
274 skb_put(skb, sizeof(struct sctp_paddr_change));
275
276
277
278
279
280
281
282
283 spc->spc_type = SCTP_PEER_ADDR_CHANGE;
284
285
286
287
288
289
290
291
292
293 spc->spc_length = sizeof(struct sctp_paddr_change);
294
295
296
297
298
299
300
301 spc->spc_flags = 0;
302
303
304
305
306
307
308
309
310
311 spc->spc_state = state;
312
313
314
315
316
317
318
319
320
321
322 spc->spc_error = error;
323
324
325
326
327
328
329
330
331
332
333 sctp_ulpevent_set_owner(event, asoc);
334 spc->spc_assoc_id = sctp_assoc2id(asoc);
335
336
337
338
339
340
341
342
343
344 memcpy(&spc->spc_aaddr, aaddr, sizeof(struct sockaddr_storage));
345
346
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);
350
351 return event;
352
353fail:
354 return NULL;
355}
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372struct sctp_ulpevent *
373sctp_ulpevent_make_remote_error(const struct sctp_association *asoc,
374 struct sctp_chunk *chunk, __u16 flags,
375 gfp_t gfp)
376{
377 struct sctp_ulpevent *event;
378 struct sctp_remote_error *sre;
379 struct sk_buff *skb;
380 sctp_errhdr_t *ch;
381 __be16 cause;
382 int elen;
383
384 ch = (sctp_errhdr_t *)(chunk->skb->data);
385 cause = ch->cause;
386 elen = WORD_ROUND(ntohs(ch->length)) - sizeof(sctp_errhdr_t);
387
388
389 skb_pull(chunk->skb, sizeof(sctp_errhdr_t));
390
391
392
393
394 skb = skb_copy_expand(chunk->skb, sizeof(*sre), 0, gfp);
395
396
397 skb_pull(chunk->skb, elen);
398 if (!skb)
399 goto fail;
400
401
402 event = sctp_skb2event(skb);
403 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
404
405 sre = (struct sctp_remote_error *) skb_push(skb, sizeof(*sre));
406
407
408 skb_trim(skb, sizeof(*sre) + elen);
409
410
411 memset(sre, 0, sizeof(*sre));
412 sre->sre_type = SCTP_REMOTE_ERROR;
413 sre->sre_flags = 0;
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);
418
419 return event;
420fail:
421 return NULL;
422}
423
424
425
426
427
428
429struct 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)
432{
433 struct sctp_ulpevent *event;
434 struct sctp_send_failed *ssf;
435 struct sk_buff *skb;
436
437
438 int len = ntohs(chunk->chunk_hdr->length);
439
440
441 skb = skb_copy_expand(chunk->skb,
442 sizeof(struct sctp_send_failed),
443 0,
444 gfp);
445 if (!skb)
446 goto fail;
447
448
449 skb_pull(skb, sizeof(struct sctp_data_chunk));
450 len -= sizeof(struct sctp_data_chunk);
451
452
453 event = sctp_skb2event(skb);
454 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
455
456 ssf = (struct sctp_send_failed *)
457 skb_push(skb, sizeof(struct sctp_send_failed));
458
459
460
461
462
463
464
465 ssf->ssf_type = SCTP_SEND_FAILED;
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480 ssf->ssf_flags = flags;
481
482
483
484
485
486
487
488
489 ssf->ssf_length = sizeof(struct sctp_send_failed) + len;
490 skb_trim(skb, ssf->ssf_length);
491
492
493
494
495
496
497
498
499
500 ssf->ssf_error = error;
501
502
503
504
505
506
507
508
509 memcpy(&ssf->ssf_info, &chunk->sinfo, sizeof(struct sctp_sndrcvinfo));
510
511
512
513
514 ssf->ssf_info.sinfo_flags = chunk->chunk_hdr->flags;
515
516
517
518
519
520
521
522
523
524
525 sctp_ulpevent_set_owner(event, asoc);
526 ssf->ssf_assoc_id = sctp_assoc2id(asoc);
527 return event;
528
529fail:
530 return NULL;
531}
532
533
534
535
536
537
538struct sctp_ulpevent *sctp_ulpevent_make_shutdown_event(
539 const struct sctp_association *asoc,
540 __u16 flags, gfp_t gfp)
541{
542 struct sctp_ulpevent *event;
543 struct sctp_shutdown_event *sse;
544 struct sk_buff *skb;
545
546 event = sctp_ulpevent_new(sizeof(struct sctp_shutdown_event),
547 MSG_NOTIFICATION, gfp);
548 if (!event)
549 goto fail;
550
551 skb = sctp_event2skb(event);
552 sse = (struct sctp_shutdown_event *)
553 skb_put(skb, sizeof(struct sctp_shutdown_event));
554
555
556
557
558
559
560
561 sse->sse_type = SCTP_SHUTDOWN_EVENT;
562
563
564
565
566
567
568
569 sse->sse_flags = 0;
570
571
572
573
574
575
576
577
578 sse->sse_length = sizeof(struct sctp_shutdown_event);
579
580
581
582
583
584
585
586
587
588 sctp_ulpevent_set_owner(event, asoc);
589 sse->sse_assoc_id = sctp_assoc2id(asoc);
590
591 return event;
592
593fail:
594 return NULL;
595}
596
597
598
599
600
601
602struct sctp_ulpevent *sctp_ulpevent_make_adaptation_indication(
603 const struct sctp_association *asoc, gfp_t gfp)
604{
605 struct sctp_ulpevent *event;
606 struct sctp_adaptation_event *sai;
607 struct sk_buff *skb;
608
609 event = sctp_ulpevent_new(sizeof(struct sctp_adaptation_event),
610 MSG_NOTIFICATION, gfp);
611 if (!event)
612 goto fail;
613
614 skb = sctp_event2skb(event);
615 sai = (struct sctp_adaptation_event *)
616 skb_put(skb, sizeof(struct sctp_adaptation_event));
617
618 sai->sai_type = SCTP_ADAPTATION_INDICATION;
619 sai->sai_flags = 0;
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);
624
625 return event;
626
627fail:
628 return NULL;
629}
630
631
632
633
634
635
636
637
638struct sctp_ulpevent *sctp_ulpevent_make_rcvmsg(struct sctp_association *asoc,
639 struct sctp_chunk *chunk,
640 gfp_t gfp)
641{
642 struct sctp_ulpevent *event = NULL;
643 struct sk_buff *skb;
644 size_t padding, len;
645 int rx_count;
646
647
648
649
650
651
652 if (asoc->ep->rcvbuf_policy)
653 rx_count = atomic_read(&asoc->rmem_alloc);
654 else
655 rx_count = atomic_read(&asoc->base.sk->sk_rmem_alloc);
656
657 if (rx_count >= asoc->base.sk->sk_rcvbuf) {
658
659 if ((asoc->base.sk->sk_userlocks & SOCK_RCVBUF_LOCK) ||
660 (!sk_rmem_schedule(asoc->base.sk, chunk->skb,
661 chunk->skb->truesize)))
662 goto fail;
663 }
664
665
666 skb = skb_clone(chunk->skb, gfp);
667 if (!skb)
668 goto fail;
669
670
671
672
673 if (sctp_tsnmap_mark(&asoc->peer.tsn_map,
674 ntohl(chunk->subh.data_hdr->tsn),
675 chunk->transport))
676 goto fail_mark;
677
678
679
680
681
682
683
684
685
686
687
688
689
690 len = ntohs(chunk->chunk_hdr->length);
691 padding = WORD_ROUND(len) - len;
692
693
694 skb_trim(skb, chunk->chunk_end - padding - skb->data);
695
696
697 event = sctp_skb2event(skb);
698
699
700
701
702
703 sctp_ulpevent_init(event, 0, skb->len + sizeof(struct sk_buff));
704
705
706
707
708 sctp_chunk_hold(chunk);
709 event->chunk = chunk;
710
711 sctp_ulpevent_receive_data(event, asoc);
712
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);
719 }
720 event->tsn = ntohl(chunk->subh.data_hdr->tsn);
721 event->msg_flags |= chunk->chunk_hdr->flags;
722
723 return event;
724
725fail_mark:
726 sctp_chunk_put(chunk);
727 kfree_skb(skb);
728fail:
729 return NULL;
730}
731
732
733
734
735
736
737
738
739
740struct sctp_ulpevent *sctp_ulpevent_make_pdapi(
741 const struct sctp_association *asoc, __u32 indication,
742 gfp_t gfp)
743{
744 struct sctp_ulpevent *event;
745 struct sctp_pdapi_event *pd;
746 struct sk_buff *skb;
747
748 event = sctp_ulpevent_new(sizeof(struct sctp_pdapi_event),
749 MSG_NOTIFICATION, gfp);
750 if (!event)
751 goto fail;
752
753 skb = sctp_event2skb(event);
754 pd = (struct sctp_pdapi_event *)
755 skb_put(skb, sizeof(struct sctp_pdapi_event));
756
757
758
759
760
761
762
763 pd->pdapi_type = SCTP_PARTIAL_DELIVERY_EVENT;
764 pd->pdapi_flags = 0;
765
766
767
768
769
770
771
772 pd->pdapi_length = sizeof(struct sctp_pdapi_event);
773
774
775
776
777
778 pd->pdapi_indication = indication;
779
780
781
782
783
784 sctp_ulpevent_set_owner(event, asoc);
785 pd->pdapi_assoc_id = sctp_assoc2id(asoc);
786
787 return event;
788fail:
789 return NULL;
790}
791
792struct sctp_ulpevent *sctp_ulpevent_make_authkey(
793 const struct sctp_association *asoc, __u16 key_id,
794 __u32 indication, gfp_t gfp)
795{
796 struct sctp_ulpevent *event;
797 struct sctp_authkey_event *ak;
798 struct sk_buff *skb;
799
800 event = sctp_ulpevent_new(sizeof(struct sctp_authkey_event),
801 MSG_NOTIFICATION, gfp);
802 if (!event)
803 goto fail;
804
805 skb = sctp_event2skb(event);
806 ak = (struct sctp_authkey_event *)
807 skb_put(skb, sizeof(struct sctp_authkey_event));
808
809 ak->auth_type = SCTP_AUTHENTICATION_EVENT;
810 ak->auth_flags = 0;
811 ak->auth_length = sizeof(struct sctp_authkey_event);
812
813 ak->auth_keynumber = key_id;
814 ak->auth_altkeynumber = 0;
815 ak->auth_indication = indication;
816
817
818
819
820 sctp_ulpevent_set_owner(event, asoc);
821 ak->auth_assoc_id = sctp_assoc2id(asoc);
822
823 return event;
824fail:
825 return NULL;
826}
827
828
829
830
831
832struct sctp_ulpevent *sctp_ulpevent_make_sender_dry_event(
833 const struct sctp_association *asoc, gfp_t gfp)
834{
835 struct sctp_ulpevent *event;
836 struct sctp_sender_dry_event *sdry;
837 struct sk_buff *skb;
838
839 event = sctp_ulpevent_new(sizeof(struct sctp_sender_dry_event),
840 MSG_NOTIFICATION, gfp);
841 if (!event)
842 return NULL;
843
844 skb = sctp_event2skb(event);
845 sdry = (struct sctp_sender_dry_event *)
846 skb_put(skb, sizeof(struct sctp_sender_dry_event));
847
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);
853
854 return event;
855}
856
857
858
859
860__u16 sctp_ulpevent_get_notification_type(const struct sctp_ulpevent *event)
861{
862 union sctp_notification *notification;
863 struct sk_buff *skb;
864
865 skb = sctp_event2skb(event);
866 notification = (union sctp_notification *) skb->data;
867 return notification->sn_header.sn_type;
868}
869
870
871
872
873void sctp_ulpevent_read_sndrcvinfo(const struct sctp_ulpevent *event,
874 struct msghdr *msghdr)
875{
876 struct sctp_sndrcvinfo sinfo;
877
878 if (sctp_ulpevent_is_notification(event))
879 return;
880
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
890 sinfo.sinfo_context = event->asoc->default_rcv_context;
891
892 sinfo.sinfo_timetolive = 0;
893
894 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_SNDRCV,
895 sizeof(sinfo), &sinfo);
896}
897
898
899
900
901void sctp_ulpevent_read_rcvinfo(const struct sctp_ulpevent *event,
902 struct msghdr *msghdr)
903{
904 struct sctp_rcvinfo rinfo;
905
906 if (sctp_ulpevent_is_notification(event))
907 return;
908
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;
918
919 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_RCVINFO,
920 sizeof(rinfo), &rinfo);
921}
922
923
924
925
926static void __sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent *event,
927 struct msghdr *msghdr,
928 const struct sk_buff *skb)
929{
930 struct sctp_nxtinfo nxtinfo;
931
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);
940
941 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_NXTINFO,
942 sizeof(nxtinfo), &nxtinfo);
943}
944
945void sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent *event,
946 struct msghdr *msghdr,
947 struct sock *sk)
948{
949 struct sk_buff *skb;
950 int err;
951
952 skb = sctp_skb_recv_datagram(sk, MSG_PEEK, 1, &err);
953 if (skb != NULL) {
954 __sctp_ulpevent_read_nxtinfo(sctp_skb2event(skb),
955 msghdr, skb);
956
957 kfree_skb(skb);
958 }
959}
960
961
962
963
964static void sctp_ulpevent_receive_data(struct sctp_ulpevent *event,
965 struct sctp_association *asoc)
966{
967 struct sk_buff *skb, *frag;
968
969 skb = sctp_event2skb(event);
970
971 sctp_ulpevent_set_owner(event, asoc);
972 sctp_assoc_rwnd_decrease(asoc, skb_headlen(skb));
973
974 if (!skb->data_len)
975 return;
976
977
978
979
980
981
982
983 skb_walk_frags(skb, frag)
984 sctp_ulpevent_receive_data(sctp_skb2event(frag), asoc);
985}
986
987
988
989
990static void sctp_ulpevent_release_data(struct sctp_ulpevent *event)
991{
992 struct sk_buff *skb, *frag;
993 unsigned int len;
994
995
996
997
998
999
1000
1001
1002 skb = sctp_event2skb(event);
1003 len = skb->len;
1004
1005 if (!skb->data_len)
1006 goto done;
1007
1008
1009 skb_walk_frags(skb, frag) {
1010
1011
1012
1013
1014 sctp_ulpevent_release_frag_data(sctp_skb2event(frag));
1015 }
1016
1017done:
1018 sctp_assoc_rwnd_increase(event->asoc, len);
1019 sctp_chunk_put(event->chunk);
1020 sctp_ulpevent_release_owner(event);
1021}
1022
1023static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event)
1024{
1025 struct sk_buff *skb, *frag;
1026
1027 skb = sctp_event2skb(event);
1028
1029 if (!skb->data_len)
1030 goto done;
1031
1032
1033 skb_walk_frags(skb, frag) {
1034
1035
1036
1037
1038 sctp_ulpevent_release_frag_data(sctp_skb2event(frag));
1039 }
1040
1041done:
1042 sctp_chunk_put(event->chunk);
1043 sctp_ulpevent_release_owner(event);
1044}
1045
1046
1047
1048
1049
1050void sctp_ulpevent_free(struct sctp_ulpevent *event)
1051{
1052 if (sctp_ulpevent_is_notification(event))
1053 sctp_ulpevent_release_owner(event);
1054 else
1055 sctp_ulpevent_release_data(event);
1056
1057 kfree_skb(sctp_event2skb(event));
1058}
1059
1060
1061unsigned int sctp_queue_purge_ulpevents(struct sk_buff_head *list)
1062{
1063 struct sk_buff *skb;
1064 unsigned int data_unread = 0;
1065
1066 while ((skb = skb_dequeue(list)) != NULL) {
1067 struct sctp_ulpevent *event = sctp_skb2event(skb);
1068
1069 if (!sctp_ulpevent_is_notification(event))
1070 data_unread += skb->len;
1071
1072 sctp_ulpevent_free(event);
1073 }
1074
1075 return data_unread;
1076}
1077