This source file includes following definitions.
- sctp_inq_init
- sctp_inq_free
- sctp_inq_push
- sctp_inq_peek
- sctp_inq_pop
- sctp_inq_set_th_handler
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25
26 #include <net/sctp/sctp.h>
27 #include <net/sctp/sm.h>
28 #include <linux/interrupt.h>
29 #include <linux/slab.h>
30
31
32 void sctp_inq_init(struct sctp_inq *queue)
33 {
34 INIT_LIST_HEAD(&queue->in_chunk_list);
35 queue->in_progress = NULL;
36
37
38 INIT_WORK(&queue->immediate, NULL);
39 }
40
41
42 void sctp_inq_free(struct sctp_inq *queue)
43 {
44 struct sctp_chunk *chunk, *tmp;
45
46
47 list_for_each_entry_safe(chunk, tmp, &queue->in_chunk_list, list) {
48 list_del_init(&chunk->list);
49 sctp_chunk_free(chunk);
50 }
51
52
53
54
55 if (queue->in_progress) {
56 sctp_chunk_free(queue->in_progress);
57 queue->in_progress = NULL;
58 }
59 }
60
61
62
63
64 void sctp_inq_push(struct sctp_inq *q, struct sctp_chunk *chunk)
65 {
66
67 if (chunk->rcvr->dead) {
68 sctp_chunk_free(chunk);
69 return;
70 }
71
72
73
74
75
76
77 list_add_tail(&chunk->list, &q->in_chunk_list);
78 if (chunk->asoc)
79 chunk->asoc->stats.ipackets++;
80 q->immediate.func(&q->immediate);
81 }
82
83
84 struct sctp_chunkhdr *sctp_inq_peek(struct sctp_inq *queue)
85 {
86 struct sctp_chunk *chunk;
87 struct sctp_chunkhdr *ch = NULL;
88
89 chunk = queue->in_progress;
90
91 if (chunk->singleton ||
92 chunk->end_of_packet ||
93 chunk->pdiscard)
94 return NULL;
95
96 ch = (struct sctp_chunkhdr *)chunk->chunk_end;
97
98 return ch;
99 }
100
101
102
103
104
105
106
107 struct sctp_chunk *sctp_inq_pop(struct sctp_inq *queue)
108 {
109 struct sctp_chunk *chunk;
110 struct sctp_chunkhdr *ch = NULL;
111
112
113
114
115
116 chunk = queue->in_progress;
117 if (chunk) {
118
119
120
121 if (chunk->singleton ||
122 chunk->end_of_packet ||
123 chunk->pdiscard) {
124 if (chunk->head_skb == chunk->skb) {
125 chunk->skb = skb_shinfo(chunk->skb)->frag_list;
126 goto new_skb;
127 }
128 if (chunk->skb->next) {
129 chunk->skb = chunk->skb->next;
130 goto new_skb;
131 }
132
133 if (chunk->head_skb)
134 chunk->skb = chunk->head_skb;
135 sctp_chunk_free(chunk);
136 chunk = queue->in_progress = NULL;
137 } else {
138
139 ch = (struct sctp_chunkhdr *)chunk->chunk_end;
140
141 skb_pull(chunk->skb, chunk->chunk_end - chunk->skb->data);
142
143 }
144 }
145
146
147 if (!chunk) {
148 struct list_head *entry;
149
150 next_chunk:
151
152 entry = sctp_list_dequeue(&queue->in_chunk_list);
153 if (!entry)
154 return NULL;
155
156 chunk = list_entry(entry, struct sctp_chunk, list);
157
158 if (skb_is_gso(chunk->skb) && skb_is_gso_sctp(chunk->skb)) {
159
160
161
162 if (skb_shinfo(chunk->skb)->frag_list)
163 chunk->head_skb = chunk->skb;
164
165
166 if (chunk->head_skb && chunk->skb->data_len == chunk->skb->len)
167 chunk->skb = skb_shinfo(chunk->skb)->frag_list;
168
169 if (WARN_ON(!chunk->skb)) {
170 __SCTP_INC_STATS(dev_net(chunk->skb->dev), SCTP_MIB_IN_PKT_DISCARDS);
171 sctp_chunk_free(chunk);
172 goto next_chunk;
173 }
174 }
175
176 if (chunk->asoc)
177 sock_rps_save_rxhash(chunk->asoc->base.sk, chunk->skb);
178
179 queue->in_progress = chunk;
180
181 new_skb:
182
183 ch = (struct sctp_chunkhdr *)chunk->skb->data;
184 chunk->singleton = 1;
185 chunk->data_accepted = 0;
186 chunk->pdiscard = 0;
187 chunk->auth = 0;
188 chunk->has_asconf = 0;
189 chunk->end_of_packet = 0;
190 if (chunk->head_skb) {
191 struct sctp_input_cb
192 *cb = SCTP_INPUT_CB(chunk->skb),
193 *head_cb = SCTP_INPUT_CB(chunk->head_skb);
194
195 cb->chunk = head_cb->chunk;
196 cb->af = head_cb->af;
197 }
198 }
199
200 chunk->chunk_hdr = ch;
201 chunk->chunk_end = ((__u8 *)ch) + SCTP_PAD4(ntohs(ch->length));
202 skb_pull(chunk->skb, sizeof(*ch));
203 chunk->subh.v = NULL;
204
205 if (chunk->chunk_end + sizeof(*ch) <= skb_tail_pointer(chunk->skb)) {
206
207 chunk->singleton = 0;
208 } else if (chunk->chunk_end > skb_tail_pointer(chunk->skb)) {
209
210 chunk->pdiscard = 1;
211 chunk->chunk_end = skb_tail_pointer(chunk->skb);
212 } else {
213
214
215
216 chunk->end_of_packet = 1;
217 }
218
219 pr_debug("+++sctp_inq_pop+++ chunk:%p[%s], length:%d, skb->len:%d\n",
220 chunk, sctp_cname(SCTP_ST_CHUNK(chunk->chunk_hdr->type)),
221 ntohs(chunk->chunk_hdr->length), chunk->skb->len);
222
223 return chunk;
224 }
225
226
227
228
229
230
231
232
233
234 void sctp_inq_set_th_handler(struct sctp_inq *q, work_func_t callback)
235 {
236 INIT_WORK(&q->immediate, callback);
237 }