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 = skb_push(skb, sizeof(struct sctp_assoc_change));
157
158
159 skb_trim(skb, sizeof(struct sctp_assoc_change) +
160 ntohs(chunk->chunk_hdr->length) -
161 sizeof(struct sctp_chunkhdr));
162 } else {
163 event = sctp_ulpevent_new(sizeof(struct sctp_assoc_change),
164 MSG_NOTIFICATION, gfp);
165 if (!event)
166 goto fail;
167
168 skb = sctp_event2skb(event);
169 sac = skb_put(skb, sizeof(struct sctp_assoc_change));
170 }
171
172
173
174
175
176
177
178 sac->sac_type = SCTP_ASSOC_CHANGE;
179
180
181
182
183
184
185
186
187 sac->sac_state = state;
188
189
190
191
192
193
194
195 sac->sac_flags = 0;
196
197
198
199
200
201
202
203
204 sac->sac_length = skb->len;
205
206
207
208
209
210
211
212
213
214
215
216 sac->sac_error = error;
217
218
219
220
221
222
223
224
225
226
227 sac->sac_outbound_streams = outbound;
228 sac->sac_inbound_streams = inbound;
229
230
231
232
233
234
235
236
237
238
239 sctp_ulpevent_set_owner(event, asoc);
240 sac->sac_assoc_id = sctp_assoc2id(asoc);
241
242 return event;
243
244fail:
245 return NULL;
246}
247
248
249
250
251
252
253
254
255
256struct sctp_ulpevent *sctp_ulpevent_make_peer_addr_change(
257 const struct sctp_association *asoc,
258 const struct sockaddr_storage *aaddr,
259 int flags, int state, int error, gfp_t gfp)
260{
261 struct sctp_ulpevent *event;
262 struct sctp_paddr_change *spc;
263 struct sk_buff *skb;
264
265 event = sctp_ulpevent_new(sizeof(struct sctp_paddr_change),
266 MSG_NOTIFICATION, gfp);
267 if (!event)
268 goto fail;
269
270 skb = sctp_event2skb(event);
271 spc = skb_put(skb, sizeof(struct sctp_paddr_change));
272
273
274
275
276
277
278
279
280 spc->spc_type = SCTP_PEER_ADDR_CHANGE;
281
282
283
284
285
286
287
288
289
290 spc->spc_length = sizeof(struct sctp_paddr_change);
291
292
293
294
295
296
297
298 spc->spc_flags = 0;
299
300
301
302
303
304
305
306
307
308 spc->spc_state = state;
309
310
311
312
313
314
315
316
317
318
319 spc->spc_error = error;
320
321
322
323
324
325
326
327
328
329
330 sctp_ulpevent_set_owner(event, asoc);
331 spc->spc_assoc_id = sctp_assoc2id(asoc);
332
333
334
335
336
337
338
339
340
341 memcpy(&spc->spc_aaddr, aaddr, sizeof(struct sockaddr_storage));
342
343
344 sctp_get_pf_specific(asoc->base.sk->sk_family)->addr_to_user(
345 sctp_sk(asoc->base.sk),
346 (union sctp_addr *)&spc->spc_aaddr);
347
348 return event;
349
350fail:
351 return NULL;
352}
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369struct sctp_ulpevent *
370sctp_ulpevent_make_remote_error(const struct sctp_association *asoc,
371 struct sctp_chunk *chunk, __u16 flags,
372 gfp_t gfp)
373{
374 struct sctp_remote_error *sre;
375 struct sctp_ulpevent *event;
376 struct sctp_errhdr *ch;
377 struct sk_buff *skb;
378 __be16 cause;
379 int elen;
380
381 ch = (struct sctp_errhdr *)(chunk->skb->data);
382 cause = ch->cause;
383 elen = SCTP_PAD4(ntohs(ch->length)) - sizeof(*ch);
384
385
386 skb_pull(chunk->skb, sizeof(*ch));
387
388
389
390
391 skb = skb_copy_expand(chunk->skb, sizeof(*sre), 0, gfp);
392
393
394 skb_pull(chunk->skb, elen);
395 if (!skb)
396 goto fail;
397
398
399 event = sctp_skb2event(skb);
400 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
401
402 sre = skb_push(skb, sizeof(*sre));
403
404
405 skb_trim(skb, sizeof(*sre) + elen);
406
407
408 memset(sre, 0, sizeof(*sre));
409 sre->sre_type = SCTP_REMOTE_ERROR;
410 sre->sre_flags = 0;
411 sre->sre_length = skb->len;
412 sre->sre_error = cause;
413 sctp_ulpevent_set_owner(event, asoc);
414 sre->sre_assoc_id = sctp_assoc2id(asoc);
415
416 return event;
417fail:
418 return NULL;
419}
420
421
422
423
424
425
426struct sctp_ulpevent *sctp_ulpevent_make_send_failed(
427 const struct sctp_association *asoc, struct sctp_chunk *chunk,
428 __u16 flags, __u32 error, gfp_t gfp)
429{
430 struct sctp_ulpevent *event;
431 struct sctp_send_failed *ssf;
432 struct sk_buff *skb;
433
434
435 int len = ntohs(chunk->chunk_hdr->length);
436
437
438 skb = skb_copy_expand(chunk->skb,
439 sizeof(struct sctp_send_failed),
440 0,
441 gfp);
442 if (!skb)
443 goto fail;
444
445
446 skb_pull(skb, sctp_datachk_len(&asoc->stream));
447 len -= sctp_datachk_len(&asoc->stream);
448
449
450 event = sctp_skb2event(skb);
451 sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize);
452
453 ssf = skb_push(skb, sizeof(struct sctp_send_failed));
454
455
456
457
458
459
460
461 ssf->ssf_type = SCTP_SEND_FAILED;
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476 ssf->ssf_flags = flags;
477
478
479
480
481
482
483
484
485 ssf->ssf_length = sizeof(struct sctp_send_failed) + len;
486 skb_trim(skb, ssf->ssf_length);
487
488
489
490
491
492
493
494
495
496 ssf->ssf_error = error;
497
498
499
500
501
502
503
504
505 memcpy(&ssf->ssf_info, &chunk->sinfo, sizeof(struct sctp_sndrcvinfo));
506
507
508
509
510 ssf->ssf_info.sinfo_flags = chunk->chunk_hdr->flags;
511
512
513
514
515
516
517
518
519
520
521 sctp_ulpevent_set_owner(event, asoc);
522 ssf->ssf_assoc_id = sctp_assoc2id(asoc);
523 return event;
524
525fail:
526 return NULL;
527}
528
529
530
531
532
533
534struct sctp_ulpevent *sctp_ulpevent_make_shutdown_event(
535 const struct sctp_association *asoc,
536 __u16 flags, gfp_t gfp)
537{
538 struct sctp_ulpevent *event;
539 struct sctp_shutdown_event *sse;
540 struct sk_buff *skb;
541
542 event = sctp_ulpevent_new(sizeof(struct sctp_shutdown_event),
543 MSG_NOTIFICATION, gfp);
544 if (!event)
545 goto fail;
546
547 skb = sctp_event2skb(event);
548 sse = skb_put(skb, sizeof(struct sctp_shutdown_event));
549
550
551
552
553
554
555
556 sse->sse_type = SCTP_SHUTDOWN_EVENT;
557
558
559
560
561
562
563
564 sse->sse_flags = 0;
565
566
567
568
569
570
571
572
573 sse->sse_length = sizeof(struct sctp_shutdown_event);
574
575
576
577
578
579
580
581
582
583 sctp_ulpevent_set_owner(event, asoc);
584 sse->sse_assoc_id = sctp_assoc2id(asoc);
585
586 return event;
587
588fail:
589 return NULL;
590}
591
592
593
594
595
596
597struct sctp_ulpevent *sctp_ulpevent_make_adaptation_indication(
598 const struct sctp_association *asoc, gfp_t gfp)
599{
600 struct sctp_ulpevent *event;
601 struct sctp_adaptation_event *sai;
602 struct sk_buff *skb;
603
604 event = sctp_ulpevent_new(sizeof(struct sctp_adaptation_event),
605 MSG_NOTIFICATION, gfp);
606 if (!event)
607 goto fail;
608
609 skb = sctp_event2skb(event);
610 sai = skb_put(skb, sizeof(struct sctp_adaptation_event));
611
612 sai->sai_type = SCTP_ADAPTATION_INDICATION;
613 sai->sai_flags = 0;
614 sai->sai_length = sizeof(struct sctp_adaptation_event);
615 sai->sai_adaptation_ind = asoc->peer.adaptation_ind;
616 sctp_ulpevent_set_owner(event, asoc);
617 sai->sai_assoc_id = sctp_assoc2id(asoc);
618
619 return event;
620
621fail:
622 return NULL;
623}
624
625
626
627
628
629
630
631
632struct sctp_ulpevent *sctp_ulpevent_make_rcvmsg(struct sctp_association *asoc,
633 struct sctp_chunk *chunk,
634 gfp_t gfp)
635{
636 struct sctp_ulpevent *event = NULL;
637 struct sk_buff *skb;
638 size_t padding, len;
639 int rx_count;
640
641
642
643
644
645
646 if (asoc->ep->rcvbuf_policy)
647 rx_count = atomic_read(&asoc->rmem_alloc);
648 else
649 rx_count = atomic_read(&asoc->base.sk->sk_rmem_alloc);
650
651 if (rx_count >= asoc->base.sk->sk_rcvbuf) {
652
653 if ((asoc->base.sk->sk_userlocks & SOCK_RCVBUF_LOCK) ||
654 (!sk_rmem_schedule(asoc->base.sk, chunk->skb,
655 chunk->skb->truesize)))
656 goto fail;
657 }
658
659
660 skb = skb_clone(chunk->skb, gfp);
661 if (!skb)
662 goto fail;
663
664
665
666
667 if (sctp_tsnmap_mark(&asoc->peer.tsn_map,
668 ntohl(chunk->subh.data_hdr->tsn),
669 chunk->transport))
670 goto fail_mark;
671
672
673
674
675
676
677
678
679
680
681
682
683
684 len = ntohs(chunk->chunk_hdr->length);
685 padding = SCTP_PAD4(len) - len;
686
687
688 skb_trim(skb, chunk->chunk_end - padding - skb->data);
689
690
691 event = sctp_skb2event(skb);
692
693
694
695
696
697 sctp_ulpevent_init(event, 0, skb->len + sizeof(struct sk_buff));
698
699
700
701
702 sctp_chunk_hold(chunk);
703 event->chunk = chunk;
704
705 sctp_ulpevent_receive_data(event, asoc);
706
707 event->stream = ntohs(chunk->subh.data_hdr->stream);
708 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) {
709 event->flags |= SCTP_UNORDERED;
710 event->cumtsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
711 }
712 event->tsn = ntohl(chunk->subh.data_hdr->tsn);
713 event->msg_flags |= chunk->chunk_hdr->flags;
714
715 return event;
716
717fail_mark:
718 kfree_skb(skb);
719fail:
720 return NULL;
721}
722
723
724
725
726
727
728
729
730
731struct sctp_ulpevent *sctp_ulpevent_make_pdapi(
732 const struct sctp_association *asoc,
733 __u32 indication, __u32 sid, __u32 seq,
734 __u32 flags, gfp_t gfp)
735{
736 struct sctp_ulpevent *event;
737 struct sctp_pdapi_event *pd;
738 struct sk_buff *skb;
739
740 event = sctp_ulpevent_new(sizeof(struct sctp_pdapi_event),
741 MSG_NOTIFICATION, gfp);
742 if (!event)
743 goto fail;
744
745 skb = sctp_event2skb(event);
746 pd = skb_put(skb, sizeof(struct sctp_pdapi_event));
747
748
749
750
751
752
753
754 pd->pdapi_type = SCTP_PARTIAL_DELIVERY_EVENT;
755 pd->pdapi_flags = flags;
756 pd->pdapi_stream = sid;
757 pd->pdapi_seq = seq;
758
759
760
761
762
763
764
765 pd->pdapi_length = sizeof(struct sctp_pdapi_event);
766
767
768
769
770
771 pd->pdapi_indication = indication;
772
773
774
775
776
777 sctp_ulpevent_set_owner(event, asoc);
778 pd->pdapi_assoc_id = sctp_assoc2id(asoc);
779
780 return event;
781fail:
782 return NULL;
783}
784
785struct sctp_ulpevent *sctp_ulpevent_make_authkey(
786 const struct sctp_association *asoc, __u16 key_id,
787 __u32 indication, gfp_t gfp)
788{
789 struct sctp_ulpevent *event;
790 struct sctp_authkey_event *ak;
791 struct sk_buff *skb;
792
793 event = sctp_ulpevent_new(sizeof(struct sctp_authkey_event),
794 MSG_NOTIFICATION, gfp);
795 if (!event)
796 goto fail;
797
798 skb = sctp_event2skb(event);
799 ak = skb_put(skb, sizeof(struct sctp_authkey_event));
800
801 ak->auth_type = SCTP_AUTHENTICATION_EVENT;
802 ak->auth_flags = 0;
803 ak->auth_length = sizeof(struct sctp_authkey_event);
804
805 ak->auth_keynumber = key_id;
806 ak->auth_altkeynumber = 0;
807 ak->auth_indication = indication;
808
809
810
811
812 sctp_ulpevent_set_owner(event, asoc);
813 ak->auth_assoc_id = sctp_assoc2id(asoc);
814
815 return event;
816fail:
817 return NULL;
818}
819
820
821
822
823
824struct sctp_ulpevent *sctp_ulpevent_make_sender_dry_event(
825 const struct sctp_association *asoc, gfp_t gfp)
826{
827 struct sctp_ulpevent *event;
828 struct sctp_sender_dry_event *sdry;
829 struct sk_buff *skb;
830
831 event = sctp_ulpevent_new(sizeof(struct sctp_sender_dry_event),
832 MSG_NOTIFICATION, gfp);
833 if (!event)
834 return NULL;
835
836 skb = sctp_event2skb(event);
837 sdry = skb_put(skb, sizeof(struct sctp_sender_dry_event));
838
839 sdry->sender_dry_type = SCTP_SENDER_DRY_EVENT;
840 sdry->sender_dry_flags = 0;
841 sdry->sender_dry_length = sizeof(struct sctp_sender_dry_event);
842 sctp_ulpevent_set_owner(event, asoc);
843 sdry->sender_dry_assoc_id = sctp_assoc2id(asoc);
844
845 return event;
846}
847
848struct sctp_ulpevent *sctp_ulpevent_make_stream_reset_event(
849 const struct sctp_association *asoc, __u16 flags, __u16 stream_num,
850 __be16 *stream_list, gfp_t gfp)
851{
852 struct sctp_stream_reset_event *sreset;
853 struct sctp_ulpevent *event;
854 struct sk_buff *skb;
855 int length, i;
856
857 length = sizeof(struct sctp_stream_reset_event) + 2 * stream_num;
858 event = sctp_ulpevent_new(length, MSG_NOTIFICATION, gfp);
859 if (!event)
860 return NULL;
861
862 skb = sctp_event2skb(event);
863 sreset = skb_put(skb, length);
864
865 sreset->strreset_type = SCTP_STREAM_RESET_EVENT;
866 sreset->strreset_flags = flags;
867 sreset->strreset_length = length;
868 sctp_ulpevent_set_owner(event, asoc);
869 sreset->strreset_assoc_id = sctp_assoc2id(asoc);
870
871 for (i = 0; i < stream_num; i++)
872 sreset->strreset_stream_list[i] = ntohs(stream_list[i]);
873
874 return event;
875}
876
877struct sctp_ulpevent *sctp_ulpevent_make_assoc_reset_event(
878 const struct sctp_association *asoc, __u16 flags, __u32 local_tsn,
879 __u32 remote_tsn, gfp_t gfp)
880{
881 struct sctp_assoc_reset_event *areset;
882 struct sctp_ulpevent *event;
883 struct sk_buff *skb;
884
885 event = sctp_ulpevent_new(sizeof(struct sctp_assoc_reset_event),
886 MSG_NOTIFICATION, gfp);
887 if (!event)
888 return NULL;
889
890 skb = sctp_event2skb(event);
891 areset = skb_put(skb, sizeof(struct sctp_assoc_reset_event));
892
893 areset->assocreset_type = SCTP_ASSOC_RESET_EVENT;
894 areset->assocreset_flags = flags;
895 areset->assocreset_length = sizeof(struct sctp_assoc_reset_event);
896 sctp_ulpevent_set_owner(event, asoc);
897 areset->assocreset_assoc_id = sctp_assoc2id(asoc);
898 areset->assocreset_local_tsn = local_tsn;
899 areset->assocreset_remote_tsn = remote_tsn;
900
901 return event;
902}
903
904struct sctp_ulpevent *sctp_ulpevent_make_stream_change_event(
905 const struct sctp_association *asoc, __u16 flags,
906 __u32 strchange_instrms, __u32 strchange_outstrms, gfp_t gfp)
907{
908 struct sctp_stream_change_event *schange;
909 struct sctp_ulpevent *event;
910 struct sk_buff *skb;
911
912 event = sctp_ulpevent_new(sizeof(struct sctp_stream_change_event),
913 MSG_NOTIFICATION, gfp);
914 if (!event)
915 return NULL;
916
917 skb = sctp_event2skb(event);
918 schange = skb_put(skb, sizeof(struct sctp_stream_change_event));
919
920 schange->strchange_type = SCTP_STREAM_CHANGE_EVENT;
921 schange->strchange_flags = flags;
922 schange->strchange_length = sizeof(struct sctp_stream_change_event);
923 sctp_ulpevent_set_owner(event, asoc);
924 schange->strchange_assoc_id = sctp_assoc2id(asoc);
925 schange->strchange_instrms = strchange_instrms;
926 schange->strchange_outstrms = strchange_outstrms;
927
928 return event;
929}
930
931
932
933
934__u16 sctp_ulpevent_get_notification_type(const struct sctp_ulpevent *event)
935{
936 union sctp_notification *notification;
937 struct sk_buff *skb;
938
939 skb = sctp_event2skb(event);
940 notification = (union sctp_notification *) skb->data;
941 return notification->sn_header.sn_type;
942}
943
944
945
946
947void sctp_ulpevent_read_sndrcvinfo(const struct sctp_ulpevent *event,
948 struct msghdr *msghdr)
949{
950 struct sctp_sndrcvinfo sinfo;
951
952 if (sctp_ulpevent_is_notification(event))
953 return;
954
955 memset(&sinfo, 0, sizeof(sinfo));
956 sinfo.sinfo_stream = event->stream;
957 sinfo.sinfo_ssn = event->ssn;
958 sinfo.sinfo_ppid = event->ppid;
959 sinfo.sinfo_flags = event->flags;
960 sinfo.sinfo_tsn = event->tsn;
961 sinfo.sinfo_cumtsn = event->cumtsn;
962 sinfo.sinfo_assoc_id = sctp_assoc2id(event->asoc);
963
964 sinfo.sinfo_context = event->asoc->default_rcv_context;
965
966 sinfo.sinfo_timetolive = 0;
967
968 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_SNDRCV,
969 sizeof(sinfo), &sinfo);
970}
971
972
973
974
975void sctp_ulpevent_read_rcvinfo(const struct sctp_ulpevent *event,
976 struct msghdr *msghdr)
977{
978 struct sctp_rcvinfo rinfo;
979
980 if (sctp_ulpevent_is_notification(event))
981 return;
982
983 memset(&rinfo, 0, sizeof(struct sctp_rcvinfo));
984 rinfo.rcv_sid = event->stream;
985 rinfo.rcv_ssn = event->ssn;
986 rinfo.rcv_ppid = event->ppid;
987 rinfo.rcv_flags = event->flags;
988 rinfo.rcv_tsn = event->tsn;
989 rinfo.rcv_cumtsn = event->cumtsn;
990 rinfo.rcv_assoc_id = sctp_assoc2id(event->asoc);
991 rinfo.rcv_context = event->asoc->default_rcv_context;
992
993 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_RCVINFO,
994 sizeof(rinfo), &rinfo);
995}
996
997
998
999
1000static void __sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent *event,
1001 struct msghdr *msghdr,
1002 const struct sk_buff *skb)
1003{
1004 struct sctp_nxtinfo nxtinfo;
1005
1006 memset(&nxtinfo, 0, sizeof(nxtinfo));
1007 nxtinfo.nxt_sid = event->stream;
1008 nxtinfo.nxt_ppid = event->ppid;
1009 nxtinfo.nxt_flags = event->flags;
1010 if (sctp_ulpevent_is_notification(event))
1011 nxtinfo.nxt_flags |= SCTP_NOTIFICATION;
1012 nxtinfo.nxt_length = skb->len;
1013 nxtinfo.nxt_assoc_id = sctp_assoc2id(event->asoc);
1014
1015 put_cmsg(msghdr, IPPROTO_SCTP, SCTP_NXTINFO,
1016 sizeof(nxtinfo), &nxtinfo);
1017}
1018
1019void sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent *event,
1020 struct msghdr *msghdr,
1021 struct sock *sk)
1022{
1023 struct sk_buff *skb;
1024 int err;
1025
1026 skb = sctp_skb_recv_datagram(sk, MSG_PEEK, 1, &err);
1027 if (skb != NULL) {
1028 __sctp_ulpevent_read_nxtinfo(sctp_skb2event(skb),
1029 msghdr, skb);
1030
1031 kfree_skb(skb);
1032 }
1033}
1034
1035
1036
1037
1038static void sctp_ulpevent_receive_data(struct sctp_ulpevent *event,
1039 struct sctp_association *asoc)
1040{
1041 struct sk_buff *skb, *frag;
1042
1043 skb = sctp_event2skb(event);
1044
1045 sctp_ulpevent_set_owner(event, asoc);
1046 sctp_assoc_rwnd_decrease(asoc, skb_headlen(skb));
1047
1048 if (!skb->data_len)
1049 return;
1050
1051
1052
1053
1054
1055
1056
1057 skb_walk_frags(skb, frag)
1058 sctp_ulpevent_receive_data(sctp_skb2event(frag), asoc);
1059}
1060
1061
1062
1063
1064static void sctp_ulpevent_release_data(struct sctp_ulpevent *event)
1065{
1066 struct sk_buff *skb, *frag;
1067 unsigned int len;
1068
1069
1070
1071
1072
1073
1074
1075
1076 skb = sctp_event2skb(event);
1077 len = skb->len;
1078
1079 if (!skb->data_len)
1080 goto done;
1081
1082
1083 skb_walk_frags(skb, frag) {
1084
1085
1086
1087
1088 sctp_ulpevent_release_frag_data(sctp_skb2event(frag));
1089 }
1090
1091done:
1092 sctp_assoc_rwnd_increase(event->asoc, len);
1093 sctp_chunk_put(event->chunk);
1094 sctp_ulpevent_release_owner(event);
1095}
1096
1097static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event)
1098{
1099 struct sk_buff *skb, *frag;
1100
1101 skb = sctp_event2skb(event);
1102
1103 if (!skb->data_len)
1104 goto done;
1105
1106
1107 skb_walk_frags(skb, frag) {
1108
1109
1110
1111
1112 sctp_ulpevent_release_frag_data(sctp_skb2event(frag));
1113 }
1114
1115done:
1116 sctp_chunk_put(event->chunk);
1117 sctp_ulpevent_release_owner(event);
1118}
1119
1120
1121
1122
1123
1124void sctp_ulpevent_free(struct sctp_ulpevent *event)
1125{
1126 if (sctp_ulpevent_is_notification(event))
1127 sctp_ulpevent_release_owner(event);
1128 else
1129 sctp_ulpevent_release_data(event);
1130
1131 kfree_skb(sctp_event2skb(event));
1132}
1133
1134
1135unsigned int sctp_queue_purge_ulpevents(struct sk_buff_head *list)
1136{
1137 struct sk_buff *skb;
1138 unsigned int data_unread = 0;
1139
1140 while ((skb = skb_dequeue(list)) != NULL) {
1141 struct sctp_ulpevent *event = sctp_skb2event(skb);
1142
1143 if (!sctp_ulpevent_is_notification(event))
1144 data_unread += skb->len;
1145
1146 sctp_ulpevent_free(event);
1147 }
1148
1149 return data_unread;
1150}
1151