Vlad Yasevich | 60c778b | 2008-01-11 09:57:09 -0500 | [diff] [blame] | 1 | /* SCTP kernel implementation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
| 8 | * |
| 9 | * These functions manipulate an sctp event. The struct ulpevent is used |
| 10 | * to carry notifications and data to the ULP (sockets). |
Vlad Yasevich | 60c778b | 2008-01-11 09:57:09 -0500 | [diff] [blame] | 11 | * |
| 12 | * This SCTP implementation is free software; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
| 17 | * |
Vlad Yasevich | 60c778b | 2008-01-11 09:57:09 -0500 | [diff] [blame] | 18 | * This SCTP implementation is distributed in the hope that it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
Jeff Kirsher | 4b2f13a | 2013-12-06 06:28:48 -0800 | [diff] [blame] | 25 | * along with GNU CC; see the file COPYING. If not, see |
| 26 | * <http://www.gnu.org/licenses/>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | * |
| 28 | * Please send any bug reports or fixes you make to the |
| 29 | * email address(es): |
Daniel Borkmann | 91705c6 | 2013-07-23 14:51:47 +0200 | [diff] [blame] | 30 | * lksctp developers <linux-sctp@vger.kernel.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | */ |
| 38 | |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 39 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 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); |
Tsutomu Fujii | d7c2c9e | 2006-06-17 22:58:28 -0700 | [diff] [blame] | 49 | static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event); |
| 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* Initialize an ULP event from an given skb. */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 53 | static void sctp_ulpevent_init(struct sctp_ulpevent *event, |
Marcelo Ricardo Leitner | f5d258e | 2016-07-13 15:08:56 -0300 | [diff] [blame] | 54 | __u16 msg_flags, |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 55 | unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { |
| 57 | memset(event, 0, sizeof(struct sctp_ulpevent)); |
| 58 | event->msg_flags = msg_flags; |
Vlad Yasevich | 331c4ee | 2006-10-09 21:34:04 -0700 | [diff] [blame] | 59 | event->rmem_len = len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | /* Create a new sctp_ulpevent. */ |
Marcelo Ricardo Leitner | f5d258e | 2016-07-13 15:08:56 -0300 | [diff] [blame] | 63 | static struct sctp_ulpevent *sctp_ulpevent_new(int size, __u16 msg_flags, |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 64 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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); |
Vlad Yasevich | 331c4ee | 2006-10-09 21:34:04 -0700 | [diff] [blame] | 74 | sctp_ulpevent_init(event, msg_flags, skb->truesize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | return event; |
| 77 | |
| 78 | fail: |
| 79 | return NULL; |
| 80 | } |
| 81 | |
| 82 | /* Is this a MSG_NOTIFICATION? */ |
| 83 | int sctp_ulpevent_is_notification(const struct sctp_ulpevent *event) |
| 84 | { |
| 85 | return MSG_NOTIFICATION == (event->msg_flags & MSG_NOTIFICATION); |
| 86 | } |
| 87 | |
| 88 | /* Hold the association in case the msg_name needs read out of |
| 89 | * the association. |
| 90 | */ |
| 91 | static inline void sctp_ulpevent_set_owner(struct sctp_ulpevent *event, |
| 92 | const struct sctp_association *asoc) |
| 93 | { |
Marcelo Ricardo Leitner | 52253db | 2016-07-23 00:33:44 -0300 | [diff] [blame] | 94 | struct sctp_chunk *chunk = event->chunk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | struct sk_buff *skb; |
| 96 | |
| 97 | /* Cast away the const, as we are just wanting to |
| 98 | * bump the reference count. |
| 99 | */ |
| 100 | sctp_association_hold((struct sctp_association *)asoc); |
| 101 | skb = sctp_event2skb(event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | event->asoc = (struct sctp_association *)asoc; |
Vlad Yasevich | 331c4ee | 2006-10-09 21:34:04 -0700 | [diff] [blame] | 103 | atomic_add(event->rmem_len, &event->asoc->rmem_alloc); |
| 104 | sctp_skb_set_owner_r(skb, asoc->base.sk); |
Marcelo Ricardo Leitner | 52253db | 2016-07-23 00:33:44 -0300 | [diff] [blame] | 105 | if (chunk && chunk->head_skb && !chunk->head_skb->sk) |
| 106 | chunk->head_skb->sk = asoc->base.sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | /* A simple destructor to give up the reference to the association. */ |
| 110 | static inline void sctp_ulpevent_release_owner(struct sctp_ulpevent *event) |
| 111 | { |
Neil Horman | 049b3ff | 2005-11-11 16:08:24 -0800 | [diff] [blame] | 112 | struct sctp_association *asoc = event->asoc; |
Neil Horman | 049b3ff | 2005-11-11 16:08:24 -0800 | [diff] [blame] | 113 | |
Vlad Yasevich | 331c4ee | 2006-10-09 21:34:04 -0700 | [diff] [blame] | 114 | atomic_sub(event->rmem_len, &asoc->rmem_alloc); |
Neil Horman | 049b3ff | 2005-11-11 16:08:24 -0800 | [diff] [blame] | 115 | sctp_association_put(asoc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* Create and initialize an SCTP_ASSOC_CHANGE event. |
| 119 | * |
| 120 | * 5.3.1.1 SCTP_ASSOC_CHANGE |
| 121 | * |
| 122 | * Communication notifications inform the ULP that an SCTP association |
| 123 | * has either begun or ended. The identifier for a new association is |
| 124 | * provided by this notification. |
| 125 | * |
| 126 | * Note: There is no field checking here. If a field is unused it will be |
| 127 | * zero'd out. |
| 128 | */ |
| 129 | struct sctp_ulpevent *sctp_ulpevent_make_assoc_change( |
| 130 | const struct sctp_association *asoc, |
| 131 | __u16 flags, __u16 state, __u16 error, __u16 outbound, |
Vlad Yasevich | a5a35e7 | 2007-03-23 11:34:08 -0700 | [diff] [blame] | 132 | __u16 inbound, struct sctp_chunk *chunk, gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | { |
| 134 | struct sctp_ulpevent *event; |
| 135 | struct sctp_assoc_change *sac; |
| 136 | struct sk_buff *skb; |
| 137 | |
Vlad Yasevich | a5a35e7 | 2007-03-23 11:34:08 -0700 | [diff] [blame] | 138 | /* If the lower layer passed in the chunk, it will be |
| 139 | * an ABORT, so we need to include it in the sac_info. |
| 140 | */ |
| 141 | if (chunk) { |
Vlad Yasevich | a5a35e7 | 2007-03-23 11:34:08 -0700 | [diff] [blame] | 142 | /* Copy the chunk data to a new skb and reserve enough |
| 143 | * head room to use as notification. |
| 144 | */ |
| 145 | skb = skb_copy_expand(chunk->skb, |
| 146 | sizeof(struct sctp_assoc_change), 0, gfp); |
| 147 | |
| 148 | if (!skb) |
| 149 | goto fail; |
| 150 | |
Vlad Yasevich | a5a35e7 | 2007-03-23 11:34:08 -0700 | [diff] [blame] | 151 | /* Embed the event fields inside the cloned skb. */ |
| 152 | event = sctp_skb2event(skb); |
| 153 | sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize); |
| 154 | |
| 155 | /* Include the notification structure */ |
| 156 | sac = (struct sctp_assoc_change *) |
| 157 | skb_push(skb, sizeof(struct sctp_assoc_change)); |
| 158 | |
| 159 | /* Trim the buffer to the right length. */ |
| 160 | skb_trim(skb, sizeof(struct sctp_assoc_change) + |
Vlad Yasevich | ac40e41 | 2007-05-09 13:52:35 -0700 | [diff] [blame] | 161 | ntohs(chunk->chunk_hdr->length) - |
| 162 | sizeof(sctp_chunkhdr_t)); |
Vlad Yasevich | a5a35e7 | 2007-03-23 11:34:08 -0700 | [diff] [blame] | 163 | } else { |
| 164 | event = sctp_ulpevent_new(sizeof(struct sctp_assoc_change), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | MSG_NOTIFICATION, gfp); |
Vlad Yasevich | a5a35e7 | 2007-03-23 11:34:08 -0700 | [diff] [blame] | 166 | if (!event) |
| 167 | goto fail; |
| 168 | |
| 169 | skb = sctp_event2skb(event); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame^] | 170 | sac = skb_put(skb, sizeof(struct sctp_assoc_change)); |
Vlad Yasevich | a5a35e7 | 2007-03-23 11:34:08 -0700 | [diff] [blame] | 171 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | /* Socket Extensions for SCTP |
| 174 | * 5.3.1.1 SCTP_ASSOC_CHANGE |
| 175 | * |
| 176 | * sac_type: |
| 177 | * It should be SCTP_ASSOC_CHANGE. |
| 178 | */ |
| 179 | sac->sac_type = SCTP_ASSOC_CHANGE; |
| 180 | |
| 181 | /* Socket Extensions for SCTP |
| 182 | * 5.3.1.1 SCTP_ASSOC_CHANGE |
| 183 | * |
| 184 | * sac_state: 32 bits (signed integer) |
| 185 | * This field holds one of a number of values that communicate the |
| 186 | * event that happened to the association. |
| 187 | */ |
| 188 | sac->sac_state = state; |
| 189 | |
| 190 | /* Socket Extensions for SCTP |
| 191 | * 5.3.1.1 SCTP_ASSOC_CHANGE |
| 192 | * |
| 193 | * sac_flags: 16 bits (unsigned integer) |
| 194 | * Currently unused. |
| 195 | */ |
| 196 | sac->sac_flags = 0; |
| 197 | |
| 198 | /* Socket Extensions for SCTP |
| 199 | * 5.3.1.1 SCTP_ASSOC_CHANGE |
| 200 | * |
| 201 | * sac_length: sizeof (__u32) |
| 202 | * This field is the total length of the notification data, including |
| 203 | * the notification header. |
| 204 | */ |
Vlad Yasevich | b90a137 | 2008-02-14 10:18:20 -0500 | [diff] [blame] | 205 | sac->sac_length = skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
| 207 | /* Socket Extensions for SCTP |
| 208 | * 5.3.1.1 SCTP_ASSOC_CHANGE |
| 209 | * |
| 210 | * sac_error: 32 bits (signed integer) |
| 211 | * |
| 212 | * If the state was reached due to a error condition (e.g. |
| 213 | * COMMUNICATION_LOST) any relevant error information is available in |
| 214 | * this field. This corresponds to the protocol error codes defined in |
| 215 | * [SCTP]. |
| 216 | */ |
| 217 | sac->sac_error = error; |
| 218 | |
| 219 | /* Socket Extensions for SCTP |
| 220 | * 5.3.1.1 SCTP_ASSOC_CHANGE |
| 221 | * |
| 222 | * sac_outbound_streams: 16 bits (unsigned integer) |
| 223 | * sac_inbound_streams: 16 bits (unsigned integer) |
| 224 | * |
| 225 | * The maximum number of streams allowed in each direction are |
| 226 | * available in sac_outbound_streams and sac_inbound streams. |
| 227 | */ |
| 228 | sac->sac_outbound_streams = outbound; |
| 229 | sac->sac_inbound_streams = inbound; |
| 230 | |
| 231 | /* Socket Extensions for SCTP |
| 232 | * 5.3.1.1 SCTP_ASSOC_CHANGE |
| 233 | * |
| 234 | * sac_assoc_id: sizeof (sctp_assoc_t) |
| 235 | * |
| 236 | * The association id field, holds the identifier for the association. |
| 237 | * All notifications for a given association have the same association |
| 238 | * identifier. For TCP style socket, this field is ignored. |
| 239 | */ |
| 240 | sctp_ulpevent_set_owner(event, asoc); |
| 241 | sac->sac_assoc_id = sctp_assoc2id(asoc); |
| 242 | |
| 243 | return event; |
| 244 | |
| 245 | fail: |
| 246 | return NULL; |
| 247 | } |
| 248 | |
| 249 | /* Create and initialize an SCTP_PEER_ADDR_CHANGE event. |
| 250 | * |
| 251 | * Socket Extensions for SCTP - draft-01 |
| 252 | * 5.3.1.2 SCTP_PEER_ADDR_CHANGE |
| 253 | * |
| 254 | * When a destination address on a multi-homed peer encounters a change |
| 255 | * an interface details event is sent. |
| 256 | */ |
| 257 | struct sctp_ulpevent *sctp_ulpevent_make_peer_addr_change( |
| 258 | const struct sctp_association *asoc, |
| 259 | const struct sockaddr_storage *aaddr, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 260 | int flags, int state, int error, gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | { |
| 262 | struct sctp_ulpevent *event; |
| 263 | struct sctp_paddr_change *spc; |
| 264 | struct sk_buff *skb; |
| 265 | |
| 266 | event = sctp_ulpevent_new(sizeof(struct sctp_paddr_change), |
| 267 | MSG_NOTIFICATION, gfp); |
| 268 | if (!event) |
| 269 | goto fail; |
| 270 | |
| 271 | skb = sctp_event2skb(event); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame^] | 272 | spc = skb_put(skb, sizeof(struct sctp_paddr_change)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
| 274 | /* Sockets API Extensions for SCTP |
| 275 | * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE |
| 276 | * |
| 277 | * spc_type: |
| 278 | * |
| 279 | * It should be SCTP_PEER_ADDR_CHANGE. |
| 280 | */ |
| 281 | spc->spc_type = SCTP_PEER_ADDR_CHANGE; |
| 282 | |
| 283 | /* Sockets API Extensions for SCTP |
| 284 | * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE |
| 285 | * |
| 286 | * spc_length: sizeof (__u32) |
| 287 | * |
| 288 | * This field is the total length of the notification data, including |
| 289 | * the notification header. |
| 290 | */ |
| 291 | spc->spc_length = sizeof(struct sctp_paddr_change); |
| 292 | |
| 293 | /* Sockets API Extensions for SCTP |
| 294 | * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE |
| 295 | * |
| 296 | * spc_flags: 16 bits (unsigned integer) |
| 297 | * Currently unused. |
| 298 | */ |
| 299 | spc->spc_flags = 0; |
| 300 | |
| 301 | /* Sockets API Extensions for SCTP |
| 302 | * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE |
| 303 | * |
| 304 | * spc_state: 32 bits (signed integer) |
| 305 | * |
| 306 | * This field holds one of a number of values that communicate the |
| 307 | * event that happened to the address. |
| 308 | */ |
| 309 | spc->spc_state = state; |
| 310 | |
| 311 | /* Sockets API Extensions for SCTP |
| 312 | * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE |
| 313 | * |
| 314 | * spc_error: 32 bits (signed integer) |
| 315 | * |
| 316 | * If the state was reached due to any error condition (e.g. |
| 317 | * ADDRESS_UNREACHABLE) any relevant error information is available in |
| 318 | * this field. |
| 319 | */ |
| 320 | spc->spc_error = error; |
| 321 | |
| 322 | /* Socket Extensions for SCTP |
| 323 | * 5.3.1.1 SCTP_ASSOC_CHANGE |
| 324 | * |
| 325 | * spc_assoc_id: sizeof (sctp_assoc_t) |
| 326 | * |
| 327 | * The association id field, holds the identifier for the association. |
| 328 | * All notifications for a given association have the same association |
| 329 | * identifier. For TCP style socket, this field is ignored. |
| 330 | */ |
| 331 | sctp_ulpevent_set_owner(event, asoc); |
| 332 | spc->spc_assoc_id = sctp_assoc2id(asoc); |
| 333 | |
| 334 | /* Sockets API Extensions for SCTP |
| 335 | * Section 5.3.1.2 SCTP_PEER_ADDR_CHANGE |
| 336 | * |
| 337 | * spc_aaddr: sizeof (struct sockaddr_storage) |
| 338 | * |
| 339 | * The affected address field, holds the remote peer's address that is |
| 340 | * encountering the change of state. |
| 341 | */ |
| 342 | memcpy(&spc->spc_aaddr, aaddr, sizeof(struct sockaddr_storage)); |
| 343 | |
| 344 | /* Map ipv4 address into v4-mapped-on-v6 address. */ |
Jason Gunthorpe | 299ee12 | 2014-07-30 12:40:53 -0600 | [diff] [blame] | 345 | sctp_get_pf_specific(asoc->base.sk->sk_family)->addr_to_user( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | sctp_sk(asoc->base.sk), |
| 347 | (union sctp_addr *)&spc->spc_aaddr); |
| 348 | |
| 349 | return event; |
| 350 | |
| 351 | fail: |
| 352 | return NULL; |
| 353 | } |
| 354 | |
| 355 | /* Create and initialize an SCTP_REMOTE_ERROR notification. |
| 356 | * |
| 357 | * Note: This assumes that the chunk->skb->data already points to the |
| 358 | * operation error payload. |
| 359 | * |
| 360 | * Socket Extensions for SCTP - draft-01 |
| 361 | * 5.3.1.3 SCTP_REMOTE_ERROR |
| 362 | * |
| 363 | * A remote peer may send an Operational Error message to its peer. |
| 364 | * This message indicates a variety of error conditions on an |
| 365 | * association. The entire error TLV as it appears on the wire is |
| 366 | * included in a SCTP_REMOTE_ERROR event. Please refer to the SCTP |
| 367 | * specification [SCTP] and any extensions for a list of possible |
| 368 | * error formats. |
| 369 | */ |
Daniel Borkmann | 8f2e5ae | 2014-07-12 20:30:35 +0200 | [diff] [blame] | 370 | struct sctp_ulpevent * |
| 371 | sctp_ulpevent_make_remote_error(const struct sctp_association *asoc, |
| 372 | struct sctp_chunk *chunk, __u16 flags, |
| 373 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | { |
| 375 | struct sctp_ulpevent *event; |
| 376 | struct sctp_remote_error *sre; |
| 377 | struct sk_buff *skb; |
| 378 | sctp_errhdr_t *ch; |
Al Viro | 9f81bcd | 2006-11-20 17:26:34 -0800 | [diff] [blame] | 379 | __be16 cause; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | int elen; |
| 381 | |
| 382 | ch = (sctp_errhdr_t *)(chunk->skb->data); |
| 383 | cause = ch->cause; |
Marcelo Ricardo Leitner | e2f036a | 2016-09-21 08:45:55 -0300 | [diff] [blame] | 384 | elen = SCTP_PAD4(ntohs(ch->length)) - sizeof(sctp_errhdr_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
| 386 | /* Pull off the ERROR header. */ |
| 387 | skb_pull(chunk->skb, sizeof(sctp_errhdr_t)); |
| 388 | |
| 389 | /* Copy the skb to a new skb with room for us to prepend |
| 390 | * notification with. |
| 391 | */ |
Daniel Borkmann | 8f2e5ae | 2014-07-12 20:30:35 +0200 | [diff] [blame] | 392 | skb = skb_copy_expand(chunk->skb, sizeof(*sre), 0, gfp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
| 394 | /* Pull off the rest of the cause TLV from the chunk. */ |
| 395 | skb_pull(chunk->skb, elen); |
| 396 | if (!skb) |
| 397 | goto fail; |
| 398 | |
| 399 | /* Embed the event fields inside the cloned skb. */ |
| 400 | event = sctp_skb2event(skb); |
Vlad Yasevich | 331c4ee | 2006-10-09 21:34:04 -0700 | [diff] [blame] | 401 | sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
Daniel Borkmann | 8f2e5ae | 2014-07-12 20:30:35 +0200 | [diff] [blame] | 403 | sre = (struct sctp_remote_error *) skb_push(skb, sizeof(*sre)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
| 405 | /* Trim the buffer to the right length. */ |
Daniel Borkmann | 8f2e5ae | 2014-07-12 20:30:35 +0200 | [diff] [blame] | 406 | skb_trim(skb, sizeof(*sre) + elen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
Daniel Borkmann | 8f2e5ae | 2014-07-12 20:30:35 +0200 | [diff] [blame] | 408 | /* RFC6458, Section 6.1.3. SCTP_REMOTE_ERROR */ |
| 409 | memset(sre, 0, sizeof(*sre)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | sre->sre_type = SCTP_REMOTE_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | sre->sre_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | sre->sre_length = skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | sre->sre_error = cause; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | sctp_ulpevent_set_owner(event, asoc); |
| 415 | sre->sre_assoc_id = sctp_assoc2id(asoc); |
| 416 | |
| 417 | return event; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | fail: |
| 419 | return NULL; |
| 420 | } |
| 421 | |
| 422 | /* Create and initialize a SCTP_SEND_FAILED notification. |
| 423 | * |
| 424 | * Socket Extensions for SCTP - draft-01 |
| 425 | * 5.3.1.4 SCTP_SEND_FAILED |
| 426 | */ |
| 427 | struct sctp_ulpevent *sctp_ulpevent_make_send_failed( |
| 428 | const struct sctp_association *asoc, struct sctp_chunk *chunk, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 429 | __u16 flags, __u32 error, gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | { |
| 431 | struct sctp_ulpevent *event; |
| 432 | struct sctp_send_failed *ssf; |
| 433 | struct sk_buff *skb; |
| 434 | |
| 435 | /* Pull off any padding. */ |
| 436 | int len = ntohs(chunk->chunk_hdr->length); |
| 437 | |
| 438 | /* Make skb with more room so we can prepend notification. */ |
| 439 | skb = skb_copy_expand(chunk->skb, |
| 440 | sizeof(struct sctp_send_failed), /* headroom */ |
| 441 | 0, /* tailroom */ |
| 442 | gfp); |
| 443 | if (!skb) |
| 444 | goto fail; |
| 445 | |
| 446 | /* Pull off the common chunk header and DATA header. */ |
| 447 | skb_pull(skb, sizeof(struct sctp_data_chunk)); |
| 448 | len -= sizeof(struct sctp_data_chunk); |
| 449 | |
| 450 | /* Embed the event fields inside the cloned skb. */ |
| 451 | event = sctp_skb2event(skb); |
Vlad Yasevich | 331c4ee | 2006-10-09 21:34:04 -0700 | [diff] [blame] | 452 | sctp_ulpevent_init(event, MSG_NOTIFICATION, skb->truesize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
| 454 | ssf = (struct sctp_send_failed *) |
| 455 | skb_push(skb, sizeof(struct sctp_send_failed)); |
| 456 | |
| 457 | /* Socket Extensions for SCTP |
| 458 | * 5.3.1.4 SCTP_SEND_FAILED |
| 459 | * |
| 460 | * ssf_type: |
| 461 | * It should be SCTP_SEND_FAILED. |
| 462 | */ |
| 463 | ssf->ssf_type = SCTP_SEND_FAILED; |
| 464 | |
| 465 | /* Socket Extensions for SCTP |
| 466 | * 5.3.1.4 SCTP_SEND_FAILED |
| 467 | * |
| 468 | * ssf_flags: 16 bits (unsigned integer) |
| 469 | * The flag value will take one of the following values |
| 470 | * |
| 471 | * SCTP_DATA_UNSENT - Indicates that the data was never put on |
| 472 | * the wire. |
| 473 | * |
| 474 | * SCTP_DATA_SENT - Indicates that the data was put on the wire. |
| 475 | * Note that this does not necessarily mean that the |
| 476 | * data was (or was not) successfully delivered. |
| 477 | */ |
| 478 | ssf->ssf_flags = flags; |
| 479 | |
| 480 | /* Socket Extensions for SCTP |
| 481 | * 5.3.1.4 SCTP_SEND_FAILED |
| 482 | * |
| 483 | * ssf_length: sizeof (__u32) |
| 484 | * This field is the total length of the notification data, including |
| 485 | * the notification header. |
| 486 | */ |
| 487 | ssf->ssf_length = sizeof(struct sctp_send_failed) + len; |
| 488 | skb_trim(skb, ssf->ssf_length); |
| 489 | |
| 490 | /* Socket Extensions for SCTP |
| 491 | * 5.3.1.4 SCTP_SEND_FAILED |
| 492 | * |
| 493 | * ssf_error: 16 bits (unsigned integer) |
| 494 | * This value represents the reason why the send failed, and if set, |
| 495 | * will be a SCTP protocol error code as defined in [SCTP] section |
| 496 | * 3.3.10. |
| 497 | */ |
| 498 | ssf->ssf_error = error; |
| 499 | |
| 500 | /* Socket Extensions for SCTP |
| 501 | * 5.3.1.4 SCTP_SEND_FAILED |
| 502 | * |
| 503 | * ssf_info: sizeof (struct sctp_sndrcvinfo) |
| 504 | * The original send information associated with the undelivered |
| 505 | * message. |
| 506 | */ |
| 507 | memcpy(&ssf->ssf_info, &chunk->sinfo, sizeof(struct sctp_sndrcvinfo)); |
| 508 | |
| 509 | /* Per TSVWG discussion with Randy. Allow the application to |
Lucas De Marchi | e9c5499 | 2011-04-26 23:28:26 -0700 | [diff] [blame] | 510 | * reassemble a fragmented message. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | */ |
| 512 | ssf->ssf_info.sinfo_flags = chunk->chunk_hdr->flags; |
| 513 | |
| 514 | /* Socket Extensions for SCTP |
| 515 | * 5.3.1.4 SCTP_SEND_FAILED |
| 516 | * |
| 517 | * ssf_assoc_id: sizeof (sctp_assoc_t) |
| 518 | * The association id field, sf_assoc_id, holds the identifier for the |
| 519 | * association. All notifications for a given association have the |
| 520 | * same association identifier. For TCP style socket, this field is |
| 521 | * ignored. |
| 522 | */ |
| 523 | sctp_ulpevent_set_owner(event, asoc); |
| 524 | ssf->ssf_assoc_id = sctp_assoc2id(asoc); |
| 525 | return event; |
| 526 | |
| 527 | fail: |
| 528 | return NULL; |
| 529 | } |
| 530 | |
| 531 | /* Create and initialize a SCTP_SHUTDOWN_EVENT notification. |
| 532 | * |
| 533 | * Socket Extensions for SCTP - draft-01 |
| 534 | * 5.3.1.5 SCTP_SHUTDOWN_EVENT |
| 535 | */ |
| 536 | struct sctp_ulpevent *sctp_ulpevent_make_shutdown_event( |
| 537 | const struct sctp_association *asoc, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 538 | __u16 flags, gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | { |
| 540 | struct sctp_ulpevent *event; |
| 541 | struct sctp_shutdown_event *sse; |
| 542 | struct sk_buff *skb; |
| 543 | |
| 544 | event = sctp_ulpevent_new(sizeof(struct sctp_shutdown_event), |
| 545 | MSG_NOTIFICATION, gfp); |
| 546 | if (!event) |
| 547 | goto fail; |
| 548 | |
| 549 | skb = sctp_event2skb(event); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame^] | 550 | sse = skb_put(skb, sizeof(struct sctp_shutdown_event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | |
| 552 | /* Socket Extensions for SCTP |
| 553 | * 5.3.1.5 SCTP_SHUTDOWN_EVENT |
| 554 | * |
| 555 | * sse_type |
| 556 | * It should be SCTP_SHUTDOWN_EVENT |
| 557 | */ |
| 558 | sse->sse_type = SCTP_SHUTDOWN_EVENT; |
| 559 | |
| 560 | /* Socket Extensions for SCTP |
| 561 | * 5.3.1.5 SCTP_SHUTDOWN_EVENT |
| 562 | * |
| 563 | * sse_flags: 16 bits (unsigned integer) |
| 564 | * Currently unused. |
| 565 | */ |
| 566 | sse->sse_flags = 0; |
| 567 | |
| 568 | /* Socket Extensions for SCTP |
| 569 | * 5.3.1.5 SCTP_SHUTDOWN_EVENT |
| 570 | * |
| 571 | * sse_length: sizeof (__u32) |
| 572 | * This field is the total length of the notification data, including |
| 573 | * the notification header. |
| 574 | */ |
| 575 | sse->sse_length = sizeof(struct sctp_shutdown_event); |
| 576 | |
| 577 | /* Socket Extensions for SCTP |
| 578 | * 5.3.1.5 SCTP_SHUTDOWN_EVENT |
| 579 | * |
| 580 | * sse_assoc_id: sizeof (sctp_assoc_t) |
| 581 | * The association id field, holds the identifier for the association. |
| 582 | * All notifications for a given association have the same association |
| 583 | * identifier. For TCP style socket, this field is ignored. |
| 584 | */ |
| 585 | sctp_ulpevent_set_owner(event, asoc); |
| 586 | sse->sse_assoc_id = sctp_assoc2id(asoc); |
| 587 | |
| 588 | return event; |
| 589 | |
| 590 | fail: |
| 591 | return NULL; |
| 592 | } |
| 593 | |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 594 | /* Create and initialize a SCTP_ADAPTATION_INDICATION notification. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | * |
| 596 | * Socket Extensions for SCTP |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 597 | * 5.3.1.6 SCTP_ADAPTATION_INDICATION |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | */ |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 599 | struct sctp_ulpevent *sctp_ulpevent_make_adaptation_indication( |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 600 | const struct sctp_association *asoc, gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | { |
| 602 | struct sctp_ulpevent *event; |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 603 | struct sctp_adaptation_event *sai; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | struct sk_buff *skb; |
| 605 | |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 606 | event = sctp_ulpevent_new(sizeof(struct sctp_adaptation_event), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | MSG_NOTIFICATION, gfp); |
| 608 | if (!event) |
| 609 | goto fail; |
| 610 | |
| 611 | skb = sctp_event2skb(event); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame^] | 612 | sai = skb_put(skb, sizeof(struct sctp_adaptation_event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 614 | sai->sai_type = SCTP_ADAPTATION_INDICATION; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | sai->sai_flags = 0; |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 616 | sai->sai_length = sizeof(struct sctp_adaptation_event); |
| 617 | sai->sai_adaptation_ind = asoc->peer.adaptation_ind; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | sctp_ulpevent_set_owner(event, asoc); |
| 619 | sai->sai_assoc_id = sctp_assoc2id(asoc); |
| 620 | |
| 621 | return event; |
| 622 | |
| 623 | fail: |
| 624 | return NULL; |
| 625 | } |
| 626 | |
| 627 | /* A message has been received. Package this message as a notification |
| 628 | * to pass it to the upper layers. Go ahead and calculate the sndrcvinfo |
| 629 | * even if filtered out later. |
| 630 | * |
| 631 | * Socket Extensions for SCTP |
| 632 | * 5.2.2 SCTP Header Information Structure (SCTP_SNDRCV) |
| 633 | */ |
| 634 | struct sctp_ulpevent *sctp_ulpevent_make_rcvmsg(struct sctp_association *asoc, |
| 635 | struct sctp_chunk *chunk, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 636 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | { |
| 638 | struct sctp_ulpevent *event = NULL; |
| 639 | struct sk_buff *skb; |
| 640 | size_t padding, len; |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 641 | int rx_count; |
| 642 | |
| 643 | /* |
| 644 | * check to see if we need to make space for this |
| 645 | * new skb, expand the rcvbuffer if needed, or drop |
| 646 | * the frame |
| 647 | */ |
| 648 | if (asoc->ep->rcvbuf_policy) |
| 649 | rx_count = atomic_read(&asoc->rmem_alloc); |
| 650 | else |
| 651 | rx_count = atomic_read(&asoc->base.sk->sk_rmem_alloc); |
| 652 | |
| 653 | if (rx_count >= asoc->base.sk->sk_rcvbuf) { |
| 654 | |
| 655 | if ((asoc->base.sk->sk_userlocks & SOCK_RCVBUF_LOCK) || |
Mel Gorman | c76562b | 2012-07-31 16:44:41 -0700 | [diff] [blame] | 656 | (!sk_rmem_schedule(asoc->base.sk, chunk->skb, |
| 657 | chunk->skb->truesize))) |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 658 | goto fail; |
| 659 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
| 661 | /* Clone the original skb, sharing the data. */ |
| 662 | skb = skb_clone(chunk->skb, gfp); |
| 663 | if (!skb) |
| 664 | goto fail; |
| 665 | |
Vlad Yasevich | 3888e9e | 2008-07-08 02:28:39 -0700 | [diff] [blame] | 666 | /* Now that all memory allocations for this chunk succeeded, we |
| 667 | * can mark it as received so the tsn_map is updated correctly. |
| 668 | */ |
Vlad Yasevich | 8e1ee18 | 2008-10-08 14:18:39 -0700 | [diff] [blame] | 669 | if (sctp_tsnmap_mark(&asoc->peer.tsn_map, |
Neil Horman | 4244854 | 2012-06-30 03:04:26 +0000 | [diff] [blame] | 670 | ntohl(chunk->subh.data_hdr->tsn), |
| 671 | chunk->transport)) |
Vlad Yasevich | 8e1ee18 | 2008-10-08 14:18:39 -0700 | [diff] [blame] | 672 | goto fail_mark; |
Vlad Yasevich | 3888e9e | 2008-07-08 02:28:39 -0700 | [diff] [blame] | 673 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | /* First calculate the padding, so we don't inadvertently |
| 675 | * pass up the wrong length to the user. |
| 676 | * |
| 677 | * RFC 2960 - Section 3.2 Chunk Field Descriptions |
| 678 | * |
| 679 | * The total length of a chunk(including Type, Length and Value fields) |
| 680 | * MUST be a multiple of 4 bytes. If the length of the chunk is not a |
| 681 | * multiple of 4 bytes, the sender MUST pad the chunk with all zero |
| 682 | * bytes and this padding is not included in the chunk length field. |
| 683 | * The sender should never pad with more than 3 bytes. The receiver |
| 684 | * MUST ignore the padding bytes. |
| 685 | */ |
| 686 | len = ntohs(chunk->chunk_hdr->length); |
Marcelo Ricardo Leitner | e2f036a | 2016-09-21 08:45:55 -0300 | [diff] [blame] | 687 | padding = SCTP_PAD4(len) - len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | |
| 689 | /* Fixup cloned skb with just this chunks data. */ |
| 690 | skb_trim(skb, chunk->chunk_end - padding - skb->data); |
| 691 | |
| 692 | /* Embed the event fields inside the cloned skb. */ |
| 693 | event = sctp_skb2event(skb); |
| 694 | |
Vlad Yasevich | 331c4ee | 2006-10-09 21:34:04 -0700 | [diff] [blame] | 695 | /* Initialize event with flags 0 and correct length |
| 696 | * Since this is a clone of the original skb, only account for |
| 697 | * the data of this chunk as other chunks will be accounted separately. |
| 698 | */ |
| 699 | sctp_ulpevent_init(event, 0, skb->len + sizeof(struct sk_buff)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
Marcelo Ricardo Leitner | 1f45f78 | 2016-07-13 15:08:57 -0300 | [diff] [blame] | 701 | /* And hold the chunk as we need it for getting the IP headers |
| 702 | * later in recvmsg |
| 703 | */ |
| 704 | sctp_chunk_hold(chunk); |
| 705 | event->chunk = chunk; |
| 706 | |
Xin Long | 1fe323a | 2016-08-07 14:15:13 +0800 | [diff] [blame] | 707 | sctp_ulpevent_receive_data(event, asoc); |
| 708 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | event->stream = ntohs(chunk->subh.data_hdr->stream); |
| 710 | event->ssn = ntohs(chunk->subh.data_hdr->ssn); |
| 711 | event->ppid = chunk->subh.data_hdr->ppid; |
| 712 | if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) { |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 713 | event->flags |= SCTP_UNORDERED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | event->cumtsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map); |
| 715 | } |
| 716 | event->tsn = ntohl(chunk->subh.data_hdr->tsn); |
| 717 | event->msg_flags |= chunk->chunk_hdr->flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | return event; |
Vlad Yasevich | 8e1ee18 | 2008-10-08 14:18:39 -0700 | [diff] [blame] | 720 | |
| 721 | fail_mark: |
Marcelo Ricardo Leitner | 1f45f78 | 2016-07-13 15:08:57 -0300 | [diff] [blame] | 722 | sctp_chunk_put(chunk); |
Vlad Yasevich | 8e1ee18 | 2008-10-08 14:18:39 -0700 | [diff] [blame] | 723 | kfree_skb(skb); |
| 724 | fail: |
| 725 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | /* Create a partial delivery related event. |
| 729 | * |
| 730 | * 5.3.1.7 SCTP_PARTIAL_DELIVERY_EVENT |
| 731 | * |
| 732 | * When a receiver is engaged in a partial delivery of a |
| 733 | * message this notification will be used to indicate |
| 734 | * various events. |
| 735 | */ |
| 736 | struct sctp_ulpevent *sctp_ulpevent_make_pdapi( |
Alexey Dobriyan | 3182cd8 | 2005-07-11 20:57:47 -0700 | [diff] [blame] | 737 | const struct sctp_association *asoc, __u32 indication, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 738 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | { |
| 740 | struct sctp_ulpevent *event; |
| 741 | struct sctp_pdapi_event *pd; |
| 742 | struct sk_buff *skb; |
| 743 | |
| 744 | event = sctp_ulpevent_new(sizeof(struct sctp_pdapi_event), |
| 745 | MSG_NOTIFICATION, gfp); |
| 746 | if (!event) |
| 747 | goto fail; |
| 748 | |
| 749 | skb = sctp_event2skb(event); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame^] | 750 | pd = skb_put(skb, sizeof(struct sctp_pdapi_event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | |
| 752 | /* pdapi_type |
| 753 | * It should be SCTP_PARTIAL_DELIVERY_EVENT |
| 754 | * |
| 755 | * pdapi_flags: 16 bits (unsigned integer) |
| 756 | * Currently unused. |
| 757 | */ |
| 758 | pd->pdapi_type = SCTP_PARTIAL_DELIVERY_EVENT; |
| 759 | pd->pdapi_flags = 0; |
| 760 | |
| 761 | /* pdapi_length: 32 bits (unsigned integer) |
| 762 | * |
| 763 | * This field is the total length of the notification data, including |
| 764 | * the notification header. It will generally be sizeof (struct |
| 765 | * sctp_pdapi_event). |
| 766 | */ |
| 767 | pd->pdapi_length = sizeof(struct sctp_pdapi_event); |
| 768 | |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 769 | /* pdapi_indication: 32 bits (unsigned integer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | * |
| 771 | * This field holds the indication being sent to the application. |
| 772 | */ |
| 773 | pd->pdapi_indication = indication; |
| 774 | |
| 775 | /* pdapi_assoc_id: sizeof (sctp_assoc_t) |
| 776 | * |
| 777 | * The association id field, holds the identifier for the association. |
| 778 | */ |
| 779 | sctp_ulpevent_set_owner(event, asoc); |
| 780 | pd->pdapi_assoc_id = sctp_assoc2id(asoc); |
| 781 | |
| 782 | return event; |
| 783 | fail: |
| 784 | return NULL; |
| 785 | } |
| 786 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 787 | struct sctp_ulpevent *sctp_ulpevent_make_authkey( |
| 788 | const struct sctp_association *asoc, __u16 key_id, |
| 789 | __u32 indication, gfp_t gfp) |
| 790 | { |
| 791 | struct sctp_ulpevent *event; |
| 792 | struct sctp_authkey_event *ak; |
| 793 | struct sk_buff *skb; |
| 794 | |
| 795 | event = sctp_ulpevent_new(sizeof(struct sctp_authkey_event), |
| 796 | MSG_NOTIFICATION, gfp); |
| 797 | if (!event) |
| 798 | goto fail; |
| 799 | |
| 800 | skb = sctp_event2skb(event); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame^] | 801 | ak = skb_put(skb, sizeof(struct sctp_authkey_event)); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 802 | |
Wei Yongjun | ee916fd | 2011-04-17 17:28:01 +0000 | [diff] [blame] | 803 | ak->auth_type = SCTP_AUTHENTICATION_EVENT; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 804 | ak->auth_flags = 0; |
| 805 | ak->auth_length = sizeof(struct sctp_authkey_event); |
| 806 | |
| 807 | ak->auth_keynumber = key_id; |
| 808 | ak->auth_altkeynumber = 0; |
| 809 | ak->auth_indication = indication; |
| 810 | |
| 811 | /* |
| 812 | * The association id field, holds the identifier for the association. |
| 813 | */ |
| 814 | sctp_ulpevent_set_owner(event, asoc); |
| 815 | ak->auth_assoc_id = sctp_assoc2id(asoc); |
| 816 | |
| 817 | return event; |
| 818 | fail: |
| 819 | return NULL; |
| 820 | } |
| 821 | |
Wei Yongjun | e1cdd55 | 2011-04-17 17:29:03 +0000 | [diff] [blame] | 822 | /* |
| 823 | * Socket Extensions for SCTP |
| 824 | * 6.3.10. SCTP_SENDER_DRY_EVENT |
| 825 | */ |
| 826 | struct sctp_ulpevent *sctp_ulpevent_make_sender_dry_event( |
| 827 | const struct sctp_association *asoc, gfp_t gfp) |
| 828 | { |
| 829 | struct sctp_ulpevent *event; |
| 830 | struct sctp_sender_dry_event *sdry; |
| 831 | struct sk_buff *skb; |
| 832 | |
| 833 | event = sctp_ulpevent_new(sizeof(struct sctp_sender_dry_event), |
| 834 | MSG_NOTIFICATION, gfp); |
| 835 | if (!event) |
| 836 | return NULL; |
| 837 | |
| 838 | skb = sctp_event2skb(event); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame^] | 839 | sdry = skb_put(skb, sizeof(struct sctp_sender_dry_event)); |
Wei Yongjun | e1cdd55 | 2011-04-17 17:29:03 +0000 | [diff] [blame] | 840 | |
| 841 | sdry->sender_dry_type = SCTP_SENDER_DRY_EVENT; |
| 842 | sdry->sender_dry_flags = 0; |
| 843 | sdry->sender_dry_length = sizeof(struct sctp_sender_dry_event); |
| 844 | sctp_ulpevent_set_owner(event, asoc); |
| 845 | sdry->sender_dry_assoc_id = sctp_assoc2id(asoc); |
| 846 | |
| 847 | return event; |
| 848 | } |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 849 | |
Xin Long | 35ea82d | 2017-02-17 12:45:38 +0800 | [diff] [blame] | 850 | struct sctp_ulpevent *sctp_ulpevent_make_stream_reset_event( |
| 851 | const struct sctp_association *asoc, __u16 flags, __u16 stream_num, |
| 852 | __u16 *stream_list, gfp_t gfp) |
| 853 | { |
| 854 | struct sctp_stream_reset_event *sreset; |
| 855 | struct sctp_ulpevent *event; |
| 856 | struct sk_buff *skb; |
| 857 | int length, i; |
| 858 | |
| 859 | length = sizeof(struct sctp_stream_reset_event) + 2 * stream_num; |
| 860 | event = sctp_ulpevent_new(length, MSG_NOTIFICATION, gfp); |
| 861 | if (!event) |
| 862 | return NULL; |
| 863 | |
| 864 | skb = sctp_event2skb(event); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame^] | 865 | sreset = skb_put(skb, length); |
Xin Long | 35ea82d | 2017-02-17 12:45:38 +0800 | [diff] [blame] | 866 | |
| 867 | sreset->strreset_type = SCTP_STREAM_RESET_EVENT; |
| 868 | sreset->strreset_flags = flags; |
| 869 | sreset->strreset_length = length; |
| 870 | sctp_ulpevent_set_owner(event, asoc); |
| 871 | sreset->strreset_assoc_id = sctp_assoc2id(asoc); |
| 872 | |
| 873 | for (i = 0; i < stream_num; i++) |
| 874 | sreset->strreset_stream_list[i] = ntohs(stream_list[i]); |
| 875 | |
| 876 | return event; |
| 877 | } |
| 878 | |
Xin Long | c95129d | 2017-03-10 12:11:06 +0800 | [diff] [blame] | 879 | struct sctp_ulpevent *sctp_ulpevent_make_assoc_reset_event( |
| 880 | const struct sctp_association *asoc, __u16 flags, __u32 local_tsn, |
| 881 | __u32 remote_tsn, gfp_t gfp) |
| 882 | { |
| 883 | struct sctp_assoc_reset_event *areset; |
| 884 | struct sctp_ulpevent *event; |
| 885 | struct sk_buff *skb; |
| 886 | |
| 887 | event = sctp_ulpevent_new(sizeof(struct sctp_assoc_reset_event), |
| 888 | MSG_NOTIFICATION, gfp); |
| 889 | if (!event) |
| 890 | return NULL; |
| 891 | |
| 892 | skb = sctp_event2skb(event); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame^] | 893 | areset = skb_put(skb, sizeof(struct sctp_assoc_reset_event)); |
Xin Long | c95129d | 2017-03-10 12:11:06 +0800 | [diff] [blame] | 894 | |
| 895 | areset->assocreset_type = SCTP_ASSOC_RESET_EVENT; |
| 896 | areset->assocreset_flags = flags; |
| 897 | areset->assocreset_length = sizeof(struct sctp_assoc_reset_event); |
| 898 | sctp_ulpevent_set_owner(event, asoc); |
| 899 | areset->assocreset_assoc_id = sctp_assoc2id(asoc); |
| 900 | areset->assocreset_local_tsn = local_tsn; |
| 901 | areset->assocreset_remote_tsn = remote_tsn; |
| 902 | |
| 903 | return event; |
| 904 | } |
| 905 | |
Xin Long | b444153 | 2017-03-10 12:11:08 +0800 | [diff] [blame] | 906 | struct sctp_ulpevent *sctp_ulpevent_make_stream_change_event( |
| 907 | const struct sctp_association *asoc, __u16 flags, |
| 908 | __u32 strchange_instrms, __u32 strchange_outstrms, gfp_t gfp) |
| 909 | { |
| 910 | struct sctp_stream_change_event *schange; |
| 911 | struct sctp_ulpevent *event; |
| 912 | struct sk_buff *skb; |
| 913 | |
| 914 | event = sctp_ulpevent_new(sizeof(struct sctp_stream_change_event), |
| 915 | MSG_NOTIFICATION, gfp); |
| 916 | if (!event) |
| 917 | return NULL; |
| 918 | |
| 919 | skb = sctp_event2skb(event); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame^] | 920 | schange = skb_put(skb, sizeof(struct sctp_stream_change_event)); |
Xin Long | b444153 | 2017-03-10 12:11:08 +0800 | [diff] [blame] | 921 | |
| 922 | schange->strchange_type = SCTP_STREAM_CHANGE_EVENT; |
| 923 | schange->strchange_flags = flags; |
| 924 | schange->strchange_length = sizeof(struct sctp_stream_change_event); |
| 925 | sctp_ulpevent_set_owner(event, asoc); |
| 926 | schange->strchange_assoc_id = sctp_assoc2id(asoc); |
| 927 | schange->strchange_instrms = strchange_instrms; |
| 928 | schange->strchange_outstrms = strchange_outstrms; |
| 929 | |
| 930 | return event; |
| 931 | } |
| 932 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | /* Return the notification type, assuming this is a notification |
| 934 | * event. |
| 935 | */ |
| 936 | __u16 sctp_ulpevent_get_notification_type(const struct sctp_ulpevent *event) |
| 937 | { |
| 938 | union sctp_notification *notification; |
| 939 | struct sk_buff *skb; |
| 940 | |
Vlad Yasevich | ab38fb0 | 2008-04-12 18:40:06 -0700 | [diff] [blame] | 941 | skb = sctp_event2skb(event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | notification = (union sctp_notification *) skb->data; |
| 943 | return notification->sn_header.sn_type; |
| 944 | } |
| 945 | |
Daniel Borkmann | 8f2e5ae | 2014-07-12 20:30:35 +0200 | [diff] [blame] | 946 | /* RFC6458, Section 5.3.2. SCTP Header Information Structure |
| 947 | * (SCTP_SNDRCV, DEPRECATED) |
| 948 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | void sctp_ulpevent_read_sndrcvinfo(const struct sctp_ulpevent *event, |
| 950 | struct msghdr *msghdr) |
| 951 | { |
| 952 | struct sctp_sndrcvinfo sinfo; |
| 953 | |
| 954 | if (sctp_ulpevent_is_notification(event)) |
| 955 | return; |
| 956 | |
Daniel Borkmann | 8f2e5ae | 2014-07-12 20:30:35 +0200 | [diff] [blame] | 957 | memset(&sinfo, 0, sizeof(sinfo)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | sinfo.sinfo_stream = event->stream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | sinfo.sinfo_ssn = event->ssn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | sinfo.sinfo_ppid = event->ppid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | sinfo.sinfo_flags = event->flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | sinfo.sinfo_tsn = event->tsn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | sinfo.sinfo_cumtsn = event->cumtsn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | sinfo.sinfo_assoc_id = sctp_assoc2id(event->asoc); |
Daniel Borkmann | 8f2e5ae | 2014-07-12 20:30:35 +0200 | [diff] [blame] | 965 | /* Context value that is set via SCTP_CONTEXT socket option. */ |
Ivan Skytte Jorgensen | 6ab792f | 2006-12-13 16:34:22 -0800 | [diff] [blame] | 966 | sinfo.sinfo_context = event->asoc->default_rcv_context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | /* These fields are not used while receiving. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | sinfo.sinfo_timetolive = 0; |
| 969 | |
| 970 | put_cmsg(msghdr, IPPROTO_SCTP, SCTP_SNDRCV, |
Daniel Borkmann | 8f2e5ae | 2014-07-12 20:30:35 +0200 | [diff] [blame] | 971 | sizeof(sinfo), &sinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | } |
| 973 | |
Geir Ola Vaagland | 0d3a421 | 2014-07-12 20:30:37 +0200 | [diff] [blame] | 974 | /* RFC6458, Section 5.3.5 SCTP Receive Information Structure |
| 975 | * (SCTP_SNDRCV) |
| 976 | */ |
| 977 | void sctp_ulpevent_read_rcvinfo(const struct sctp_ulpevent *event, |
| 978 | struct msghdr *msghdr) |
| 979 | { |
| 980 | struct sctp_rcvinfo rinfo; |
| 981 | |
| 982 | if (sctp_ulpevent_is_notification(event)) |
| 983 | return; |
| 984 | |
| 985 | memset(&rinfo, 0, sizeof(struct sctp_rcvinfo)); |
| 986 | rinfo.rcv_sid = event->stream; |
| 987 | rinfo.rcv_ssn = event->ssn; |
| 988 | rinfo.rcv_ppid = event->ppid; |
| 989 | rinfo.rcv_flags = event->flags; |
| 990 | rinfo.rcv_tsn = event->tsn; |
| 991 | rinfo.rcv_cumtsn = event->cumtsn; |
| 992 | rinfo.rcv_assoc_id = sctp_assoc2id(event->asoc); |
| 993 | rinfo.rcv_context = event->asoc->default_rcv_context; |
| 994 | |
| 995 | put_cmsg(msghdr, IPPROTO_SCTP, SCTP_RCVINFO, |
| 996 | sizeof(rinfo), &rinfo); |
| 997 | } |
| 998 | |
Geir Ola Vaagland | 2347c80 | 2014-07-12 20:30:38 +0200 | [diff] [blame] | 999 | /* RFC6458, Section 5.3.6. SCTP Next Receive Information Structure |
| 1000 | * (SCTP_NXTINFO) |
| 1001 | */ |
| 1002 | static void __sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent *event, |
| 1003 | struct msghdr *msghdr, |
| 1004 | const struct sk_buff *skb) |
| 1005 | { |
| 1006 | struct sctp_nxtinfo nxtinfo; |
| 1007 | |
| 1008 | memset(&nxtinfo, 0, sizeof(nxtinfo)); |
| 1009 | nxtinfo.nxt_sid = event->stream; |
| 1010 | nxtinfo.nxt_ppid = event->ppid; |
| 1011 | nxtinfo.nxt_flags = event->flags; |
| 1012 | if (sctp_ulpevent_is_notification(event)) |
| 1013 | nxtinfo.nxt_flags |= SCTP_NOTIFICATION; |
| 1014 | nxtinfo.nxt_length = skb->len; |
| 1015 | nxtinfo.nxt_assoc_id = sctp_assoc2id(event->asoc); |
| 1016 | |
| 1017 | put_cmsg(msghdr, IPPROTO_SCTP, SCTP_NXTINFO, |
| 1018 | sizeof(nxtinfo), &nxtinfo); |
| 1019 | } |
| 1020 | |
| 1021 | void sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent *event, |
| 1022 | struct msghdr *msghdr, |
| 1023 | struct sock *sk) |
| 1024 | { |
| 1025 | struct sk_buff *skb; |
| 1026 | int err; |
| 1027 | |
| 1028 | skb = sctp_skb_recv_datagram(sk, MSG_PEEK, 1, &err); |
| 1029 | if (skb != NULL) { |
| 1030 | __sctp_ulpevent_read_nxtinfo(sctp_skb2event(skb), |
| 1031 | msghdr, skb); |
| 1032 | /* Just release refcount here. */ |
| 1033 | kfree_skb(skb); |
| 1034 | } |
| 1035 | } |
| 1036 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | /* Do accounting for bytes received and hold a reference to the association |
| 1038 | * for each skb. |
| 1039 | */ |
| 1040 | static void sctp_ulpevent_receive_data(struct sctp_ulpevent *event, |
| 1041 | struct sctp_association *asoc) |
| 1042 | { |
| 1043 | struct sk_buff *skb, *frag; |
| 1044 | |
| 1045 | skb = sctp_event2skb(event); |
| 1046 | /* Set the owner and charge rwnd for bytes received. */ |
| 1047 | sctp_ulpevent_set_owner(event, asoc); |
Daniel Borkmann | 362d520 | 2014-04-14 21:45:17 +0200 | [diff] [blame] | 1048 | sctp_assoc_rwnd_decrease(asoc, skb_headlen(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | |
| 1050 | if (!skb->data_len) |
| 1051 | return; |
| 1052 | |
| 1053 | /* Note: Not clearing the entire event struct as this is just a |
| 1054 | * fragment of the real event. However, we still need to do rwnd |
| 1055 | * accounting. |
| 1056 | * In general, the skb passed from IP can have only 1 level of |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 1057 | * fragments. But we allow multiple levels of fragments. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | */ |
David S. Miller | 1b003be | 2009-06-09 00:22:35 -0700 | [diff] [blame] | 1059 | skb_walk_frags(skb, frag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | sctp_ulpevent_receive_data(sctp_skb2event(frag), asoc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | /* Do accounting for bytes just read by user and release the references to |
| 1064 | * the association. |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 1065 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | static void sctp_ulpevent_release_data(struct sctp_ulpevent *event) |
| 1067 | { |
| 1068 | struct sk_buff *skb, *frag; |
Tsutomu Fujii | d7c2c9e | 2006-06-17 22:58:28 -0700 | [diff] [blame] | 1069 | unsigned int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | |
| 1071 | /* Current stack structures assume that the rcv buffer is |
| 1072 | * per socket. For UDP style sockets this is not true as |
| 1073 | * multiple associations may be on a single UDP-style socket. |
| 1074 | * Use the local private area of the skb to track the owning |
| 1075 | * association. |
| 1076 | */ |
| 1077 | |
| 1078 | skb = sctp_event2skb(event); |
Tsutomu Fujii | d7c2c9e | 2006-06-17 22:58:28 -0700 | [diff] [blame] | 1079 | len = skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | |
| 1081 | if (!skb->data_len) |
| 1082 | goto done; |
| 1083 | |
| 1084 | /* Don't forget the fragments. */ |
David S. Miller | 1b003be | 2009-06-09 00:22:35 -0700 | [diff] [blame] | 1085 | skb_walk_frags(skb, frag) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | /* NOTE: skb_shinfos are recursive. Although IP returns |
| 1087 | * skb's with only 1 level of fragments, SCTP reassembly can |
| 1088 | * increase the levels. |
| 1089 | */ |
Tsutomu Fujii | d7c2c9e | 2006-06-17 22:58:28 -0700 | [diff] [blame] | 1090 | sctp_ulpevent_release_frag_data(sctp_skb2event(frag)); |
| 1091 | } |
| 1092 | |
| 1093 | done: |
Daniel Borkmann | 362d520 | 2014-04-14 21:45:17 +0200 | [diff] [blame] | 1094 | sctp_assoc_rwnd_increase(event->asoc, len); |
Marcelo Ricardo Leitner | 1f45f78 | 2016-07-13 15:08:57 -0300 | [diff] [blame] | 1095 | sctp_chunk_put(event->chunk); |
Tsutomu Fujii | d7c2c9e | 2006-06-17 22:58:28 -0700 | [diff] [blame] | 1096 | sctp_ulpevent_release_owner(event); |
| 1097 | } |
| 1098 | |
| 1099 | static void sctp_ulpevent_release_frag_data(struct sctp_ulpevent *event) |
| 1100 | { |
| 1101 | struct sk_buff *skb, *frag; |
| 1102 | |
| 1103 | skb = sctp_event2skb(event); |
| 1104 | |
| 1105 | if (!skb->data_len) |
| 1106 | goto done; |
| 1107 | |
| 1108 | /* Don't forget the fragments. */ |
David S. Miller | 1b003be | 2009-06-09 00:22:35 -0700 | [diff] [blame] | 1109 | skb_walk_frags(skb, frag) { |
Tsutomu Fujii | d7c2c9e | 2006-06-17 22:58:28 -0700 | [diff] [blame] | 1110 | /* NOTE: skb_shinfos are recursive. Although IP returns |
| 1111 | * skb's with only 1 level of fragments, SCTP reassembly can |
| 1112 | * increase the levels. |
| 1113 | */ |
| 1114 | sctp_ulpevent_release_frag_data(sctp_skb2event(frag)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | } |
| 1116 | |
| 1117 | done: |
Marcelo Ricardo Leitner | 1f45f78 | 2016-07-13 15:08:57 -0300 | [diff] [blame] | 1118 | sctp_chunk_put(event->chunk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | sctp_ulpevent_release_owner(event); |
| 1120 | } |
| 1121 | |
| 1122 | /* Free a ulpevent that has an owner. It includes releasing the reference |
| 1123 | * to the owner, updating the rwnd in case of a DATA event and freeing the |
| 1124 | * skb. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | */ |
| 1126 | void sctp_ulpevent_free(struct sctp_ulpevent *event) |
| 1127 | { |
| 1128 | if (sctp_ulpevent_is_notification(event)) |
| 1129 | sctp_ulpevent_release_owner(event); |
| 1130 | else |
| 1131 | sctp_ulpevent_release_data(event); |
| 1132 | |
| 1133 | kfree_skb(sctp_event2skb(event)); |
| 1134 | } |
| 1135 | |
| 1136 | /* Purge the skb lists holding ulpevents. */ |
Thomas Graf | cd4fcc7 | 2011-07-08 04:37:46 +0000 | [diff] [blame] | 1137 | unsigned int sctp_queue_purge_ulpevents(struct sk_buff_head *list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | { |
| 1139 | struct sk_buff *skb; |
Thomas Graf | cd4fcc7 | 2011-07-08 04:37:46 +0000 | [diff] [blame] | 1140 | unsigned int data_unread = 0; |
| 1141 | |
| 1142 | while ((skb = skb_dequeue(list)) != NULL) { |
| 1143 | struct sctp_ulpevent *event = sctp_skb2event(skb); |
| 1144 | |
| 1145 | if (!sctp_ulpevent_is_notification(event)) |
| 1146 | data_unread += skb->len; |
| 1147 | |
| 1148 | sctp_ulpevent_free(event); |
| 1149 | } |
| 1150 | |
| 1151 | return data_unread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | } |