David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1 | /* RxRPC packet reception |
| 2 | * |
| 3 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | */ |
| 11 | |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 13 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 14 | #include <linux/module.h> |
| 15 | #include <linux/net.h> |
| 16 | #include <linux/skbuff.h> |
| 17 | #include <linux/errqueue.h> |
| 18 | #include <linux/udp.h> |
| 19 | #include <linux/in.h> |
| 20 | #include <linux/in6.h> |
| 21 | #include <linux/icmp.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/gfp.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 23 | #include <net/sock.h> |
| 24 | #include <net/af_rxrpc.h> |
| 25 | #include <net/ip.h> |
Herbert Xu | 1781f7f | 2007-12-11 11:30:32 -0800 | [diff] [blame] | 26 | #include <net/udp.h> |
Pavel Emelyanov | 0283328 | 2008-07-05 21:18:48 -0700 | [diff] [blame] | 27 | #include <net/net_namespace.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 28 | #include "ar-internal.h" |
| 29 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 30 | /* |
| 31 | * queue a packet for recvmsg to pass to userspace |
| 32 | * - the caller must hold a lock on call->lock |
| 33 | * - must not be called with interrupts disabled (sk_filter() disables BH's) |
| 34 | * - eats the packet whether successful or not |
| 35 | * - there must be just one reference to the packet, which the caller passes to |
| 36 | * this function |
| 37 | */ |
| 38 | int rxrpc_queue_rcv_skb(struct rxrpc_call *call, struct sk_buff *skb, |
| 39 | bool force, bool terminal) |
| 40 | { |
| 41 | struct rxrpc_skb_priv *sp; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 42 | struct rxrpc_sock *rx = call->socket; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 43 | struct sock *sk; |
Eric Dumazet | 884cf70 | 2014-08-22 20:30:12 -0700 | [diff] [blame] | 44 | int ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 45 | |
| 46 | _enter(",,%d,%d", force, terminal); |
| 47 | |
| 48 | ASSERT(!irqs_disabled()); |
| 49 | |
| 50 | sp = rxrpc_skb(skb); |
| 51 | ASSERTCMP(sp->call, ==, call); |
| 52 | |
| 53 | /* if we've already posted the terminal message for a call, then we |
| 54 | * don't post any more */ |
| 55 | if (test_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags)) { |
| 56 | _debug("already terminated"); |
| 57 | ASSERTCMP(call->state, >=, RXRPC_CALL_COMPLETE); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 58 | rxrpc_free_skb(skb); |
| 59 | return 0; |
| 60 | } |
| 61 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 62 | sk = &rx->sk; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 63 | |
| 64 | if (!force) { |
| 65 | /* cast skb->rcvbuf to unsigned... It's pointless, but |
| 66 | * reduces number of warnings when compiling with -W |
| 67 | * --ANK */ |
| 68 | // ret = -ENOBUFS; |
| 69 | // if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >= |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 70 | // (unsigned int) sk->sk_rcvbuf) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 71 | // goto out; |
| 72 | |
| 73 | ret = sk_filter(sk, skb); |
| 74 | if (ret < 0) |
| 75 | goto out; |
| 76 | } |
| 77 | |
| 78 | spin_lock_bh(&sk->sk_receive_queue.lock); |
| 79 | if (!test_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags) && |
| 80 | !test_bit(RXRPC_CALL_RELEASED, &call->flags) && |
| 81 | call->socket->sk.sk_state != RXRPC_CLOSE) { |
| 82 | skb->destructor = rxrpc_packet_destructor; |
| 83 | skb->dev = NULL; |
| 84 | skb->sk = sk; |
| 85 | atomic_add(skb->truesize, &sk->sk_rmem_alloc); |
| 86 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 87 | if (terminal) { |
| 88 | _debug("<<<< TERMINAL MESSAGE >>>>"); |
| 89 | set_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags); |
| 90 | } |
| 91 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 92 | /* allow interception by a kernel service */ |
| 93 | if (rx->interceptor) { |
| 94 | rx->interceptor(sk, call->user_call_ID, skb); |
| 95 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 96 | } else { |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 97 | _net("post skb %p", skb); |
| 98 | __skb_queue_tail(&sk->sk_receive_queue, skb); |
| 99 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 100 | |
| 101 | if (!sock_flag(sk, SOCK_DEAD)) |
David S. Miller | 676d236 | 2014-04-11 16:15:36 -0400 | [diff] [blame] | 102 | sk->sk_data_ready(sk); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 103 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 104 | skb = NULL; |
| 105 | } else { |
| 106 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 107 | } |
| 108 | ret = 0; |
| 109 | |
| 110 | out: |
David Howells | 372ee16 | 2016-08-03 14:11:40 +0100 | [diff] [blame] | 111 | rxrpc_free_skb(skb); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 112 | |
| 113 | _leave(" = %d", ret); |
| 114 | return ret; |
| 115 | } |
| 116 | |
| 117 | /* |
| 118 | * process a DATA packet, posting the packet to the appropriate queue |
| 119 | * - eats the packet if successful |
| 120 | */ |
| 121 | static int rxrpc_fast_process_data(struct rxrpc_call *call, |
| 122 | struct sk_buff *skb, u32 seq) |
| 123 | { |
| 124 | struct rxrpc_skb_priv *sp; |
| 125 | bool terminal; |
| 126 | int ret, ackbit, ack; |
| 127 | |
| 128 | _enter("{%u,%u},,{%u}", call->rx_data_post, call->rx_first_oos, seq); |
| 129 | |
| 130 | sp = rxrpc_skb(skb); |
| 131 | ASSERTCMP(sp->call, ==, NULL); |
| 132 | |
| 133 | spin_lock(&call->lock); |
| 134 | |
| 135 | if (call->state > RXRPC_CALL_COMPLETE) |
| 136 | goto discard; |
| 137 | |
| 138 | ASSERTCMP(call->rx_data_expect, >=, call->rx_data_post); |
| 139 | ASSERTCMP(call->rx_data_post, >=, call->rx_data_recv); |
| 140 | ASSERTCMP(call->rx_data_recv, >=, call->rx_data_eaten); |
| 141 | |
| 142 | if (seq < call->rx_data_post) { |
| 143 | _debug("dup #%u [-%u]", seq, call->rx_data_post); |
| 144 | ack = RXRPC_ACK_DUPLICATE; |
| 145 | ret = -ENOBUFS; |
| 146 | goto discard_and_ack; |
| 147 | } |
| 148 | |
| 149 | /* we may already have the packet in the out of sequence queue */ |
| 150 | ackbit = seq - (call->rx_data_eaten + 1); |
| 151 | ASSERTCMP(ackbit, >=, 0); |
David S. Miller | 68c708f | 2007-04-26 20:20:21 -0700 | [diff] [blame] | 152 | if (__test_and_set_bit(ackbit, call->ackr_window)) { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 153 | _debug("dup oos #%u [%u,%u]", |
| 154 | seq, call->rx_data_eaten, call->rx_data_post); |
| 155 | ack = RXRPC_ACK_DUPLICATE; |
| 156 | goto discard_and_ack; |
| 157 | } |
| 158 | |
| 159 | if (seq >= call->ackr_win_top) { |
| 160 | _debug("exceed #%u [%u]", seq, call->ackr_win_top); |
David S. Miller | 68c708f | 2007-04-26 20:20:21 -0700 | [diff] [blame] | 161 | __clear_bit(ackbit, call->ackr_window); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 162 | ack = RXRPC_ACK_EXCEEDS_WINDOW; |
| 163 | goto discard_and_ack; |
| 164 | } |
| 165 | |
| 166 | if (seq == call->rx_data_expect) { |
| 167 | clear_bit(RXRPC_CALL_EXPECT_OOS, &call->flags); |
| 168 | call->rx_data_expect++; |
| 169 | } else if (seq > call->rx_data_expect) { |
| 170 | _debug("oos #%u [%u]", seq, call->rx_data_expect); |
| 171 | call->rx_data_expect = seq + 1; |
| 172 | if (test_and_set_bit(RXRPC_CALL_EXPECT_OOS, &call->flags)) { |
| 173 | ack = RXRPC_ACK_OUT_OF_SEQUENCE; |
| 174 | goto enqueue_and_ack; |
| 175 | } |
| 176 | goto enqueue_packet; |
| 177 | } |
| 178 | |
| 179 | if (seq != call->rx_data_post) { |
| 180 | _debug("ahead #%u [%u]", seq, call->rx_data_post); |
| 181 | goto enqueue_packet; |
| 182 | } |
| 183 | |
| 184 | if (test_bit(RXRPC_CALL_RCVD_LAST, &call->flags)) |
| 185 | goto protocol_error; |
| 186 | |
| 187 | /* if the packet need security things doing to it, then it goes down |
| 188 | * the slow path */ |
David Howells | e0e4d82 | 2016-04-07 17:23:58 +0100 | [diff] [blame] | 189 | if (call->conn->security_ix) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 190 | goto enqueue_packet; |
| 191 | |
| 192 | sp->call = call; |
| 193 | rxrpc_get_call(call); |
David Howells | 372ee16 | 2016-08-03 14:11:40 +0100 | [diff] [blame] | 194 | atomic_inc(&call->skb_count); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 195 | terminal = ((sp->hdr.flags & RXRPC_LAST_PACKET) && |
| 196 | !(sp->hdr.flags & RXRPC_CLIENT_INITIATED)); |
| 197 | ret = rxrpc_queue_rcv_skb(call, skb, false, terminal); |
| 198 | if (ret < 0) { |
| 199 | if (ret == -ENOMEM || ret == -ENOBUFS) { |
David S. Miller | 68c708f | 2007-04-26 20:20:21 -0700 | [diff] [blame] | 200 | __clear_bit(ackbit, call->ackr_window); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 201 | ack = RXRPC_ACK_NOSPACE; |
| 202 | goto discard_and_ack; |
| 203 | } |
| 204 | goto out; |
| 205 | } |
| 206 | |
| 207 | skb = NULL; |
| 208 | |
| 209 | _debug("post #%u", seq); |
| 210 | ASSERTCMP(call->rx_data_post, ==, seq); |
| 211 | call->rx_data_post++; |
| 212 | |
| 213 | if (sp->hdr.flags & RXRPC_LAST_PACKET) |
| 214 | set_bit(RXRPC_CALL_RCVD_LAST, &call->flags); |
| 215 | |
| 216 | /* if we've reached an out of sequence packet then we need to drain |
| 217 | * that queue into the socket Rx queue now */ |
| 218 | if (call->rx_data_post == call->rx_first_oos) { |
| 219 | _debug("drain rx oos now"); |
| 220 | read_lock(&call->state_lock); |
| 221 | if (call->state < RXRPC_CALL_COMPLETE && |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 222 | !test_and_set_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events)) |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 223 | rxrpc_queue_call(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 224 | read_unlock(&call->state_lock); |
| 225 | } |
| 226 | |
| 227 | spin_unlock(&call->lock); |
| 228 | atomic_inc(&call->ackr_not_idle); |
| 229 | rxrpc_propose_ACK(call, RXRPC_ACK_DELAY, sp->hdr.serial, false); |
| 230 | _leave(" = 0 [posted]"); |
| 231 | return 0; |
| 232 | |
| 233 | protocol_error: |
| 234 | ret = -EBADMSG; |
| 235 | out: |
| 236 | spin_unlock(&call->lock); |
| 237 | _leave(" = %d", ret); |
| 238 | return ret; |
| 239 | |
| 240 | discard_and_ack: |
| 241 | _debug("discard and ACK packet %p", skb); |
| 242 | __rxrpc_propose_ACK(call, ack, sp->hdr.serial, true); |
| 243 | discard: |
| 244 | spin_unlock(&call->lock); |
| 245 | rxrpc_free_skb(skb); |
| 246 | _leave(" = 0 [discarded]"); |
| 247 | return 0; |
| 248 | |
| 249 | enqueue_and_ack: |
| 250 | __rxrpc_propose_ACK(call, ack, sp->hdr.serial, true); |
| 251 | enqueue_packet: |
| 252 | _net("defer skb %p", skb); |
| 253 | spin_unlock(&call->lock); |
| 254 | skb_queue_tail(&call->rx_queue, skb); |
| 255 | atomic_inc(&call->ackr_not_idle); |
| 256 | read_lock(&call->state_lock); |
| 257 | if (call->state < RXRPC_CALL_DEAD) |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 258 | rxrpc_queue_call(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 259 | read_unlock(&call->state_lock); |
| 260 | _leave(" = 0 [queued]"); |
| 261 | return 0; |
| 262 | } |
| 263 | |
| 264 | /* |
| 265 | * assume an implicit ACKALL of the transmission phase of a client socket upon |
| 266 | * reception of the first reply packet |
| 267 | */ |
| 268 | static void rxrpc_assume_implicit_ackall(struct rxrpc_call *call, u32 serial) |
| 269 | { |
| 270 | write_lock_bh(&call->state_lock); |
| 271 | |
| 272 | switch (call->state) { |
| 273 | case RXRPC_CALL_CLIENT_AWAIT_REPLY: |
| 274 | call->state = RXRPC_CALL_CLIENT_RECV_REPLY; |
| 275 | call->acks_latest = serial; |
| 276 | |
| 277 | _debug("implicit ACKALL %%%u", call->acks_latest); |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 278 | set_bit(RXRPC_CALL_EV_RCVD_ACKALL, &call->events); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 279 | write_unlock_bh(&call->state_lock); |
| 280 | |
| 281 | if (try_to_del_timer_sync(&call->resend_timer) >= 0) { |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 282 | clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events); |
| 283 | clear_bit(RXRPC_CALL_EV_RESEND, &call->events); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 284 | clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags); |
| 285 | } |
| 286 | break; |
| 287 | |
| 288 | default: |
| 289 | write_unlock_bh(&call->state_lock); |
| 290 | break; |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | /* |
| 295 | * post an incoming packet to the nominated call to deal with |
| 296 | * - must get rid of the sk_buff, either by freeing it or by queuing it |
| 297 | */ |
| 298 | void rxrpc_fast_process_packet(struct rxrpc_call *call, struct sk_buff *skb) |
| 299 | { |
| 300 | struct rxrpc_skb_priv *sp = rxrpc_skb(skb); |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 301 | __be32 wtmp; |
| 302 | u32 hi_serial, abort_code; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 303 | |
| 304 | _enter("%p,%p", call, skb); |
| 305 | |
| 306 | ASSERT(!irqs_disabled()); |
| 307 | |
| 308 | #if 0 // INJECT RX ERROR |
| 309 | if (sp->hdr.type == RXRPC_PACKET_TYPE_DATA) { |
| 310 | static int skip = 0; |
| 311 | if (++skip == 3) { |
| 312 | printk("DROPPED 3RD PACKET!!!!!!!!!!!!!\n"); |
| 313 | skip = 0; |
| 314 | goto free_packet; |
| 315 | } |
| 316 | } |
| 317 | #endif |
| 318 | |
| 319 | /* track the latest serial number on this connection for ACK packet |
| 320 | * information */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 321 | hi_serial = atomic_read(&call->conn->hi_serial); |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 322 | while (sp->hdr.serial > hi_serial) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 323 | hi_serial = atomic_cmpxchg(&call->conn->hi_serial, hi_serial, |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 324 | sp->hdr.serial); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 325 | |
| 326 | /* request ACK generation for any ACK or DATA packet that requests |
| 327 | * it */ |
| 328 | if (sp->hdr.flags & RXRPC_REQUEST_ACK) { |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 329 | _proto("ACK Requested on %%%u", sp->hdr.serial); |
David Howells | 9823f39 | 2014-02-07 18:58:45 +0000 | [diff] [blame] | 330 | rxrpc_propose_ACK(call, RXRPC_ACK_REQUESTED, sp->hdr.serial, false); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | switch (sp->hdr.type) { |
| 334 | case RXRPC_PACKET_TYPE_ABORT: |
| 335 | _debug("abort"); |
| 336 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 337 | if (skb_copy_bits(skb, 0, &wtmp, sizeof(wtmp)) < 0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 338 | goto protocol_error; |
| 339 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 340 | abort_code = ntohl(wtmp); |
| 341 | _proto("Rx ABORT %%%u { %x }", sp->hdr.serial, abort_code); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 342 | |
| 343 | write_lock_bh(&call->state_lock); |
| 344 | if (call->state < RXRPC_CALL_COMPLETE) { |
| 345 | call->state = RXRPC_CALL_REMOTELY_ABORTED; |
David Howells | dc44b3a | 2016-04-07 17:23:30 +0100 | [diff] [blame] | 346 | call->remote_abort = abort_code; |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 347 | set_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 348 | rxrpc_queue_call(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 349 | } |
| 350 | goto free_packet_unlock; |
| 351 | |
| 352 | case RXRPC_PACKET_TYPE_BUSY: |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 353 | _proto("Rx BUSY %%%u", sp->hdr.serial); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 354 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 355 | if (rxrpc_conn_is_service(call->conn)) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 356 | goto protocol_error; |
| 357 | |
| 358 | write_lock_bh(&call->state_lock); |
| 359 | switch (call->state) { |
| 360 | case RXRPC_CALL_CLIENT_SEND_REQUEST: |
| 361 | call->state = RXRPC_CALL_SERVER_BUSY; |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 362 | set_bit(RXRPC_CALL_EV_RCVD_BUSY, &call->events); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 363 | rxrpc_queue_call(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 364 | case RXRPC_CALL_SERVER_BUSY: |
| 365 | goto free_packet_unlock; |
| 366 | default: |
| 367 | goto protocol_error_locked; |
| 368 | } |
| 369 | |
| 370 | default: |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 371 | _proto("Rx %s %%%u", rxrpc_pkts[sp->hdr.type], sp->hdr.serial); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 372 | goto protocol_error; |
| 373 | |
| 374 | case RXRPC_PACKET_TYPE_DATA: |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 375 | _proto("Rx DATA %%%u { #%u }", sp->hdr.serial, sp->hdr.seq); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 376 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 377 | if (sp->hdr.seq == 0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 378 | goto protocol_error; |
| 379 | |
| 380 | call->ackr_prev_seq = sp->hdr.seq; |
| 381 | |
| 382 | /* received data implicitly ACKs all of the request packets we |
| 383 | * sent when we're acting as a client */ |
| 384 | if (call->state == RXRPC_CALL_CLIENT_AWAIT_REPLY) |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 385 | rxrpc_assume_implicit_ackall(call, sp->hdr.serial); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 386 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 387 | switch (rxrpc_fast_process_data(call, skb, sp->hdr.seq)) { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 388 | case 0: |
| 389 | skb = NULL; |
| 390 | goto done; |
| 391 | |
| 392 | default: |
| 393 | BUG(); |
| 394 | |
| 395 | /* data packet received beyond the last packet */ |
| 396 | case -EBADMSG: |
| 397 | goto protocol_error; |
| 398 | } |
| 399 | |
David Howells | 1000345 | 2011-02-28 03:27:43 +0000 | [diff] [blame] | 400 | case RXRPC_PACKET_TYPE_ACKALL: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 401 | case RXRPC_PACKET_TYPE_ACK: |
| 402 | /* ACK processing is done in process context */ |
| 403 | read_lock_bh(&call->state_lock); |
| 404 | if (call->state < RXRPC_CALL_DEAD) { |
| 405 | skb_queue_tail(&call->rx_queue, skb); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 406 | rxrpc_queue_call(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 407 | skb = NULL; |
| 408 | } |
| 409 | read_unlock_bh(&call->state_lock); |
| 410 | goto free_packet; |
| 411 | } |
| 412 | |
| 413 | protocol_error: |
| 414 | _debug("protocol error"); |
| 415 | write_lock_bh(&call->state_lock); |
| 416 | protocol_error_locked: |
| 417 | if (call->state <= RXRPC_CALL_COMPLETE) { |
| 418 | call->state = RXRPC_CALL_LOCALLY_ABORTED; |
David Howells | dc44b3a | 2016-04-07 17:23:30 +0100 | [diff] [blame] | 419 | call->local_abort = RX_PROTOCOL_ERROR; |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 420 | set_bit(RXRPC_CALL_EV_ABORT, &call->events); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 421 | rxrpc_queue_call(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 422 | } |
| 423 | free_packet_unlock: |
| 424 | write_unlock_bh(&call->state_lock); |
| 425 | free_packet: |
| 426 | rxrpc_free_skb(skb); |
| 427 | done: |
| 428 | _leave(""); |
| 429 | } |
| 430 | |
| 431 | /* |
| 432 | * split up a jumbo data packet |
| 433 | */ |
| 434 | static void rxrpc_process_jumbo_packet(struct rxrpc_call *call, |
| 435 | struct sk_buff *jumbo) |
| 436 | { |
| 437 | struct rxrpc_jumbo_header jhdr; |
| 438 | struct rxrpc_skb_priv *sp; |
| 439 | struct sk_buff *part; |
| 440 | |
| 441 | _enter(",{%u,%u}", jumbo->data_len, jumbo->len); |
| 442 | |
| 443 | sp = rxrpc_skb(jumbo); |
| 444 | |
| 445 | do { |
| 446 | sp->hdr.flags &= ~RXRPC_JUMBO_PACKET; |
| 447 | |
| 448 | /* make a clone to represent the first subpacket in what's left |
| 449 | * of the jumbo packet */ |
| 450 | part = skb_clone(jumbo, GFP_ATOMIC); |
| 451 | if (!part) { |
| 452 | /* simply ditch the tail in the event of ENOMEM */ |
| 453 | pskb_trim(jumbo, RXRPC_JUMBO_DATALEN); |
| 454 | break; |
| 455 | } |
| 456 | rxrpc_new_skb(part); |
| 457 | |
| 458 | pskb_trim(part, RXRPC_JUMBO_DATALEN); |
| 459 | |
| 460 | if (!pskb_pull(jumbo, RXRPC_JUMBO_DATALEN)) |
| 461 | goto protocol_error; |
| 462 | |
| 463 | if (skb_copy_bits(jumbo, 0, &jhdr, sizeof(jhdr)) < 0) |
| 464 | goto protocol_error; |
| 465 | if (!pskb_pull(jumbo, sizeof(jhdr))) |
| 466 | BUG(); |
| 467 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 468 | sp->hdr.seq += 1; |
| 469 | sp->hdr.serial += 1; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 470 | sp->hdr.flags = jhdr.flags; |
David Howells | ac5d268 | 2016-07-01 08:35:02 +0100 | [diff] [blame] | 471 | sp->hdr._rsvd = ntohs(jhdr._rsvd); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 472 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 473 | _proto("Rx DATA Jumbo %%%u", sp->hdr.serial - 1); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 474 | |
| 475 | rxrpc_fast_process_packet(call, part); |
| 476 | part = NULL; |
| 477 | |
| 478 | } while (sp->hdr.flags & RXRPC_JUMBO_PACKET); |
| 479 | |
| 480 | rxrpc_fast_process_packet(call, jumbo); |
| 481 | _leave(""); |
| 482 | return; |
| 483 | |
| 484 | protocol_error: |
| 485 | _debug("protocol error"); |
| 486 | rxrpc_free_skb(part); |
| 487 | rxrpc_free_skb(jumbo); |
| 488 | write_lock_bh(&call->state_lock); |
| 489 | if (call->state <= RXRPC_CALL_COMPLETE) { |
| 490 | call->state = RXRPC_CALL_LOCALLY_ABORTED; |
David Howells | dc44b3a | 2016-04-07 17:23:30 +0100 | [diff] [blame] | 491 | call->local_abort = RX_PROTOCOL_ERROR; |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 492 | set_bit(RXRPC_CALL_EV_ABORT, &call->events); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 493 | rxrpc_queue_call(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 494 | } |
| 495 | write_unlock_bh(&call->state_lock); |
| 496 | _leave(""); |
| 497 | } |
| 498 | |
| 499 | /* |
| 500 | * post an incoming packet to the appropriate call/socket to deal with |
| 501 | * - must get rid of the sk_buff, either by freeing it or by queuing it |
| 502 | */ |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 503 | static void rxrpc_post_packet_to_call(struct rxrpc_call *call, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 504 | struct sk_buff *skb) |
| 505 | { |
| 506 | struct rxrpc_skb_priv *sp; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 507 | |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 508 | _enter("%p,%p", call, skb); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 509 | |
| 510 | sp = rxrpc_skb(skb); |
| 511 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 512 | _debug("extant call [%d]", call->state); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 513 | |
| 514 | read_lock(&call->state_lock); |
| 515 | switch (call->state) { |
| 516 | case RXRPC_CALL_LOCALLY_ABORTED: |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 517 | if (!test_and_set_bit(RXRPC_CALL_EV_ABORT, &call->events)) { |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 518 | rxrpc_queue_call(call); |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 519 | goto free_unlock; |
| 520 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 521 | case RXRPC_CALL_REMOTELY_ABORTED: |
| 522 | case RXRPC_CALL_NETWORK_ERROR: |
| 523 | case RXRPC_CALL_DEAD: |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 524 | goto dead_call; |
| 525 | case RXRPC_CALL_COMPLETE: |
| 526 | case RXRPC_CALL_CLIENT_FINAL_ACK: |
| 527 | /* complete server call */ |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 528 | if (rxrpc_conn_is_service(call->conn)) |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 529 | goto dead_call; |
| 530 | /* resend last packet of a completed call */ |
| 531 | _debug("final ack again"); |
| 532 | rxrpc_get_call(call); |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 533 | set_bit(RXRPC_CALL_EV_ACK_FINAL, &call->events); |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 534 | rxrpc_queue_call(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 535 | goto free_unlock; |
| 536 | default: |
| 537 | break; |
| 538 | } |
| 539 | |
| 540 | read_unlock(&call->state_lock); |
| 541 | rxrpc_get_call(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 542 | |
| 543 | if (sp->hdr.type == RXRPC_PACKET_TYPE_DATA && |
| 544 | sp->hdr.flags & RXRPC_JUMBO_PACKET) |
| 545 | rxrpc_process_jumbo_packet(call, skb); |
| 546 | else |
| 547 | rxrpc_fast_process_packet(call, skb); |
| 548 | |
| 549 | rxrpc_put_call(call); |
| 550 | goto done; |
| 551 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 552 | dead_call: |
Tim Smith | b6f3a40 | 2014-02-07 18:58:43 +0000 | [diff] [blame] | 553 | if (sp->hdr.type != RXRPC_PACKET_TYPE_ABORT) { |
| 554 | skb->priority = RX_CALL_DEAD; |
David Howells | 85f3227 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 555 | rxrpc_reject_packet(call->conn->params.local, skb); |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 556 | goto unlock; |
Tim Smith | b6f3a40 | 2014-02-07 18:58:43 +0000 | [diff] [blame] | 557 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 558 | free_unlock: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 559 | rxrpc_free_skb(skb); |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 560 | unlock: |
| 561 | read_unlock(&call->state_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 562 | done: |
| 563 | _leave(""); |
| 564 | } |
| 565 | |
| 566 | /* |
| 567 | * post connection-level events to the connection |
| 568 | * - this includes challenges, responses and some aborts |
| 569 | */ |
David Howells | 2e7e975 | 2016-08-09 10:11:48 +0100 | [diff] [blame^] | 570 | static void rxrpc_post_packet_to_conn(struct rxrpc_connection *conn, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 571 | struct sk_buff *skb) |
| 572 | { |
| 573 | _enter("%p,%p", conn, skb); |
| 574 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 575 | skb_queue_tail(&conn->rx_queue, skb); |
David Howells | 2e7e975 | 2016-08-09 10:11:48 +0100 | [diff] [blame^] | 576 | rxrpc_queue_conn(conn); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 577 | } |
| 578 | |
David Howells | 44ba069 | 2015-04-01 16:31:26 +0100 | [diff] [blame] | 579 | /* |
| 580 | * post endpoint-level events to the local endpoint |
| 581 | * - this includes debug and version messages |
| 582 | */ |
| 583 | static void rxrpc_post_packet_to_local(struct rxrpc_local *local, |
| 584 | struct sk_buff *skb) |
| 585 | { |
| 586 | _enter("%p,%p", local, skb); |
| 587 | |
David Howells | 44ba069 | 2015-04-01 16:31:26 +0100 | [diff] [blame] | 588 | skb_queue_tail(&local->event_queue, skb); |
David Howells | 5acbee4 | 2016-06-27 10:32:02 +0100 | [diff] [blame] | 589 | rxrpc_queue_local(local); |
David Howells | 44ba069 | 2015-04-01 16:31:26 +0100 | [diff] [blame] | 590 | } |
| 591 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 592 | /* |
| 593 | * Extract the wire header from a packet and translate the byte order. |
| 594 | */ |
| 595 | static noinline |
| 596 | int rxrpc_extract_header(struct rxrpc_skb_priv *sp, struct sk_buff *skb) |
| 597 | { |
| 598 | struct rxrpc_wire_header whdr; |
| 599 | |
| 600 | /* dig out the RxRPC connection details */ |
Willem de Bruijn | 4d0fc73 | 2016-04-07 11:44:59 -0400 | [diff] [blame] | 601 | if (skb_copy_bits(skb, 0, &whdr, sizeof(whdr)) < 0) |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 602 | return -EBADMSG; |
Willem de Bruijn | 4d0fc73 | 2016-04-07 11:44:59 -0400 | [diff] [blame] | 603 | if (!pskb_pull(skb, sizeof(whdr))) |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 604 | BUG(); |
| 605 | |
| 606 | memset(sp, 0, sizeof(*sp)); |
| 607 | sp->hdr.epoch = ntohl(whdr.epoch); |
| 608 | sp->hdr.cid = ntohl(whdr.cid); |
| 609 | sp->hdr.callNumber = ntohl(whdr.callNumber); |
| 610 | sp->hdr.seq = ntohl(whdr.seq); |
| 611 | sp->hdr.serial = ntohl(whdr.serial); |
| 612 | sp->hdr.flags = whdr.flags; |
| 613 | sp->hdr.type = whdr.type; |
| 614 | sp->hdr.userStatus = whdr.userStatus; |
| 615 | sp->hdr.securityIndex = whdr.securityIndex; |
| 616 | sp->hdr._rsvd = ntohs(whdr._rsvd); |
| 617 | sp->hdr.serviceId = ntohs(whdr.serviceId); |
| 618 | return 0; |
| 619 | } |
| 620 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 621 | /* |
| 622 | * handle data received on the local endpoint |
| 623 | * - may be called in interrupt context |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 624 | * |
| 625 | * The socket is locked by the caller and this prevents the socket from being |
| 626 | * shut down and the local endpoint from going away, thus sk_user_data will not |
| 627 | * be cleared until this function returns. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 628 | */ |
David S. Miller | 676d236 | 2014-04-11 16:15:36 -0400 | [diff] [blame] | 629 | void rxrpc_data_ready(struct sock *sk) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 630 | { |
David Howells | 8496af5 | 2016-07-01 07:51:50 +0100 | [diff] [blame] | 631 | struct rxrpc_connection *conn; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 632 | struct rxrpc_skb_priv *sp; |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 633 | struct rxrpc_local *local = sk->sk_user_data; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 634 | struct sk_buff *skb; |
| 635 | int ret; |
| 636 | |
David S. Miller | 676d236 | 2014-04-11 16:15:36 -0400 | [diff] [blame] | 637 | _enter("%p", sk); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 638 | |
| 639 | ASSERT(!irqs_disabled()); |
| 640 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 641 | skb = skb_recv_datagram(sk, 0, 1, &ret); |
| 642 | if (!skb) { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 643 | if (ret == -EAGAIN) |
| 644 | return; |
| 645 | _debug("UDP socket error %d", ret); |
| 646 | return; |
| 647 | } |
| 648 | |
| 649 | rxrpc_new_skb(skb); |
| 650 | |
| 651 | _net("recv skb %p", skb); |
| 652 | |
| 653 | /* we'll probably need to checksum it (didn't call sock_recvmsg) */ |
| 654 | if (skb_checksum_complete(skb)) { |
| 655 | rxrpc_free_skb(skb); |
Eric Dumazet | 02c2234 | 2016-04-27 16:44:30 -0700 | [diff] [blame] | 656 | __UDP_INC_STATS(&init_net, UDP_MIB_INERRORS, 0); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 657 | _leave(" [CSUM failed]"); |
| 658 | return; |
| 659 | } |
| 660 | |
Eric Dumazet | 02c2234 | 2016-04-27 16:44:30 -0700 | [diff] [blame] | 661 | __UDP_INC_STATS(&init_net, UDP_MIB_INDATAGRAMS, 0); |
Herbert Xu | 1781f7f | 2007-12-11 11:30:32 -0800 | [diff] [blame] | 662 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 663 | /* The socket buffer we have is owned by UDP, with UDP's data all over |
| 664 | * it, but we really want our own data there. |
| 665 | */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 666 | skb_orphan(skb); |
| 667 | sp = rxrpc_skb(skb); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 668 | |
| 669 | _net("Rx UDP packet from %08x:%04hu", |
| 670 | ntohl(ip_hdr(skb)->saddr), ntohs(udp_hdr(skb)->source)); |
| 671 | |
| 672 | /* dig out the RxRPC connection details */ |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 673 | if (rxrpc_extract_header(sp, skb) < 0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 674 | goto bad_message; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 675 | |
| 676 | _net("Rx RxRPC %s ep=%x call=%x:%x", |
| 677 | sp->hdr.flags & RXRPC_CLIENT_INITIATED ? "ToServer" : "ToClient", |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 678 | sp->hdr.epoch, sp->hdr.cid, sp->hdr.callNumber); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 679 | |
David Howells | 351c1e6 | 2016-03-04 15:56:06 +0000 | [diff] [blame] | 680 | if (sp->hdr.type >= RXRPC_N_PACKET_TYPES || |
| 681 | !((RXRPC_SUPPORTED_PACKET_TYPES >> sp->hdr.type) & 1)) { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 682 | _proto("Rx Bad Packet Type %u", sp->hdr.type); |
| 683 | goto bad_message; |
| 684 | } |
| 685 | |
David Howells | 44ba069 | 2015-04-01 16:31:26 +0100 | [diff] [blame] | 686 | if (sp->hdr.type == RXRPC_PACKET_TYPE_VERSION) { |
| 687 | rxrpc_post_packet_to_local(local, skb); |
| 688 | goto out; |
| 689 | } |
David Howells | bc6e1ea | 2016-06-10 22:30:27 +0100 | [diff] [blame] | 690 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 691 | if (sp->hdr.type == RXRPC_PACKET_TYPE_DATA && |
| 692 | (sp->hdr.callNumber == 0 || sp->hdr.seq == 0)) |
| 693 | goto bad_message; |
| 694 | |
David Howells | 8496af5 | 2016-07-01 07:51:50 +0100 | [diff] [blame] | 695 | rcu_read_lock(); |
| 696 | |
David Howells | 8496af5 | 2016-07-01 07:51:50 +0100 | [diff] [blame] | 697 | conn = rxrpc_find_connection_rcu(local, skb); |
| 698 | if (!conn) |
| 699 | goto cant_route_call; |
| 700 | |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 701 | if (sp->hdr.callNumber == 0) { |
David Howells | 8496af5 | 2016-07-01 07:51:50 +0100 | [diff] [blame] | 702 | /* Connection-level packet */ |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 703 | _debug("CONN %p {%d}", conn, conn->debug_id); |
David Howells | 2e7e975 | 2016-08-09 10:11:48 +0100 | [diff] [blame^] | 704 | rxrpc_post_packet_to_conn(conn, skb); |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 705 | } else { |
David Howells | 8496af5 | 2016-07-01 07:51:50 +0100 | [diff] [blame] | 706 | /* Call-bound packets are routed by connection channel. */ |
| 707 | unsigned int channel = sp->hdr.cid & RXRPC_CHANNELMASK; |
| 708 | struct rxrpc_channel *chan = &conn->channels[channel]; |
| 709 | struct rxrpc_call *call = rcu_dereference(chan->call); |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 710 | |
David Howells | 8496af5 | 2016-07-01 07:51:50 +0100 | [diff] [blame] | 711 | if (!call || atomic_read(&call->usage) == 0) |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 712 | goto cant_route_call; |
David Howells | 8496af5 | 2016-07-01 07:51:50 +0100 | [diff] [blame] | 713 | |
| 714 | rxrpc_post_packet_to_call(call, skb); |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 715 | } |
David Howells | 44ba069 | 2015-04-01 16:31:26 +0100 | [diff] [blame] | 716 | |
David Howells | 8496af5 | 2016-07-01 07:51:50 +0100 | [diff] [blame] | 717 | rcu_read_unlock(); |
David Howells | 44ba069 | 2015-04-01 16:31:26 +0100 | [diff] [blame] | 718 | out: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 719 | return; |
| 720 | |
| 721 | cant_route_call: |
David Howells | 8496af5 | 2016-07-01 07:51:50 +0100 | [diff] [blame] | 722 | rcu_read_unlock(); |
| 723 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 724 | _debug("can't route call"); |
| 725 | if (sp->hdr.flags & RXRPC_CLIENT_INITIATED && |
| 726 | sp->hdr.type == RXRPC_PACKET_TYPE_DATA) { |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 727 | if (sp->hdr.seq == 1) { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 728 | _debug("first packet"); |
| 729 | skb_queue_tail(&local->accept_queue, skb); |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 730 | rxrpc_queue_work(&local->processor); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 731 | _leave(" [incoming]"); |
| 732 | return; |
| 733 | } |
| 734 | skb->priority = RX_INVALID_OPERATION; |
| 735 | } else { |
| 736 | skb->priority = RX_CALL_DEAD; |
| 737 | } |
| 738 | |
Tim Smith | b6f3a40 | 2014-02-07 18:58:43 +0000 | [diff] [blame] | 739 | if (sp->hdr.type != RXRPC_PACKET_TYPE_ABORT) { |
| 740 | _debug("reject type %d",sp->hdr.type); |
| 741 | rxrpc_reject_packet(local, skb); |
| 742 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 743 | _leave(" [no call]"); |
| 744 | return; |
| 745 | |
| 746 | bad_message: |
| 747 | skb->priority = RX_PROTOCOL_ERROR; |
| 748 | rxrpc_reject_packet(local, skb); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 749 | _leave(" [badmsg]"); |
| 750 | } |