David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1 | /* AF_RXRPC internal definitions |
| 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 | |
David Howells | be6e670 | 2016-04-04 14:00:32 +0100 | [diff] [blame] | 12 | #include <linux/atomic.h> |
David Howells | e0e4d82 | 2016-04-07 17:23:58 +0100 | [diff] [blame] | 13 | #include <net/sock.h> |
David Howells | be6e670 | 2016-04-04 14:00:32 +0100 | [diff] [blame] | 14 | #include <net/af_rxrpc.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 15 | #include <rxrpc/packet.h> |
| 16 | |
| 17 | #if 0 |
| 18 | #define CHECK_SLAB_OKAY(X) \ |
| 19 | BUG_ON(atomic_read((X)) >> (sizeof(atomic_t) - 2) == \ |
| 20 | (POISON_FREE << 8 | POISON_FREE)) |
| 21 | #else |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 22 | #define CHECK_SLAB_OKAY(X) do {} while (0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 23 | #endif |
| 24 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 25 | #define FCRYPT_BSIZE 8 |
| 26 | struct rxrpc_crypt { |
| 27 | union { |
| 28 | u8 x[FCRYPT_BSIZE]; |
Al Viro | 91e916c | 2008-03-29 03:08:38 +0000 | [diff] [blame] | 29 | __be32 n[2]; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 30 | }; |
| 31 | } __attribute__((aligned(8))); |
| 32 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 33 | #define rxrpc_queue_work(WS) queue_work(rxrpc_workqueue, (WS)) |
| 34 | #define rxrpc_queue_delayed_work(WS,D) \ |
| 35 | queue_delayed_work(rxrpc_workqueue, (WS), (D)) |
| 36 | |
| 37 | #define rxrpc_queue_call(CALL) rxrpc_queue_work(&(CALL)->processor) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 38 | |
David Howells | cc8feb8 | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 39 | struct rxrpc_connection; |
| 40 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 41 | /* |
| 42 | * sk_state for RxRPC sockets |
| 43 | */ |
| 44 | enum { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 45 | RXRPC_UNBOUND = 0, |
| 46 | RXRPC_CLIENT_UNBOUND, /* Unbound socket used as client */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 47 | RXRPC_CLIENT_BOUND, /* client local address bound */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 48 | RXRPC_SERVER_BOUND, /* server local address bound */ |
| 49 | RXRPC_SERVER_LISTENING, /* server listening for connections */ |
| 50 | RXRPC_CLOSE, /* socket is being closed */ |
| 51 | }; |
| 52 | |
| 53 | /* |
| 54 | * RxRPC socket definition |
| 55 | */ |
| 56 | struct rxrpc_sock { |
| 57 | /* WARNING: sk has to be the first member */ |
| 58 | struct sock sk; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 59 | rxrpc_interceptor_t interceptor; /* kernel service Rx interceptor function */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 60 | struct rxrpc_local *local; /* local endpoint */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 61 | struct list_head listen_link; /* link in the local endpoint's listen list */ |
| 62 | struct list_head secureq; /* calls awaiting connection security clearance */ |
| 63 | struct list_head acceptq; /* calls awaiting acceptance */ |
| 64 | struct key *key; /* security for this socket */ |
| 65 | struct key *securities; /* list of server security descriptors */ |
| 66 | struct rb_root calls; /* outstanding calls on this socket */ |
| 67 | unsigned long flags; |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 68 | #define RXRPC_SOCK_CONNECTED 0 /* connect_srx is set */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 69 | rwlock_t call_lock; /* lock for calls */ |
| 70 | u32 min_sec_level; /* minimum security level */ |
| 71 | #define RXRPC_SECURITY_MAX RXRPC_SECURITY_ENCRYPT |
David Howells | cc8feb8 | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 72 | bool exclusive; /* Exclusive connection for a client socket */ |
| 73 | sa_family_t family; /* Protocol family created with */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 74 | struct sockaddr_rxrpc srx; /* local address */ |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 75 | struct sockaddr_rxrpc connect_srx; /* Default client address from connect() */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 76 | }; |
| 77 | |
| 78 | #define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk) |
| 79 | |
| 80 | /* |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 81 | * CPU-byteorder normalised Rx packet header. |
| 82 | */ |
| 83 | struct rxrpc_host_header { |
| 84 | u32 epoch; /* client boot timestamp */ |
| 85 | u32 cid; /* connection and channel ID */ |
| 86 | u32 callNumber; /* call ID (0 for connection-level packets) */ |
| 87 | u32 seq; /* sequence number of pkt in call stream */ |
| 88 | u32 serial; /* serial number of pkt sent to network */ |
| 89 | u8 type; /* packet type */ |
| 90 | u8 flags; /* packet flags */ |
| 91 | u8 userStatus; /* app-layer defined status */ |
| 92 | u8 securityIndex; /* security protocol ID */ |
| 93 | union { |
| 94 | u16 _rsvd; /* reserved */ |
| 95 | u16 cksum; /* kerberos security checksum */ |
| 96 | }; |
| 97 | u16 serviceId; /* service ID */ |
| 98 | } __packed; |
| 99 | |
| 100 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 101 | * RxRPC socket buffer private variables |
| 102 | * - max 48 bytes (struct sk_buff::cb) |
| 103 | */ |
| 104 | struct rxrpc_skb_priv { |
| 105 | struct rxrpc_call *call; /* call with which associated */ |
| 106 | unsigned long resend_at; /* time in jiffies at which to resend */ |
| 107 | union { |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 108 | unsigned int offset; /* offset into buffer of next read */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 109 | int remain; /* amount of space remaining for next write */ |
| 110 | u32 error; /* network error code */ |
| 111 | bool need_resend; /* T if needs resending */ |
| 112 | }; |
| 113 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 114 | struct rxrpc_host_header hdr; /* RxRPC packet header from this packet */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 115 | }; |
| 116 | |
| 117 | #define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb) |
| 118 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 119 | enum rxrpc_command { |
| 120 | RXRPC_CMD_SEND_DATA, /* send data message */ |
| 121 | RXRPC_CMD_SEND_ABORT, /* request abort generation */ |
| 122 | RXRPC_CMD_ACCEPT, /* [server] accept incoming call */ |
| 123 | RXRPC_CMD_REJECT_BUSY, /* [server] reject a call as busy */ |
| 124 | }; |
| 125 | |
| 126 | /* |
| 127 | * RxRPC security module interface |
| 128 | */ |
| 129 | struct rxrpc_security { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 130 | const char *name; /* name of this service */ |
| 131 | u8 security_index; /* security type provided */ |
| 132 | |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 133 | /* Initialise a security service */ |
| 134 | int (*init)(void); |
| 135 | |
| 136 | /* Clean up a security service */ |
| 137 | void (*exit)(void); |
| 138 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 139 | /* initialise a connection's security */ |
| 140 | int (*init_connection_security)(struct rxrpc_connection *); |
| 141 | |
| 142 | /* prime a connection's packet security */ |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 143 | int (*prime_packet_security)(struct rxrpc_connection *); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 144 | |
| 145 | /* impose security on a packet */ |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 146 | int (*secure_packet)(struct rxrpc_call *, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 147 | struct sk_buff *, |
| 148 | size_t, |
| 149 | void *); |
| 150 | |
| 151 | /* verify the security on a received packet */ |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 152 | int (*verify_packet)(struct rxrpc_call *, struct sk_buff *, u32 *); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 153 | |
| 154 | /* issue a challenge */ |
| 155 | int (*issue_challenge)(struct rxrpc_connection *); |
| 156 | |
| 157 | /* respond to a challenge */ |
| 158 | int (*respond_to_challenge)(struct rxrpc_connection *, |
| 159 | struct sk_buff *, |
| 160 | u32 *); |
| 161 | |
| 162 | /* verify a response */ |
| 163 | int (*verify_response)(struct rxrpc_connection *, |
| 164 | struct sk_buff *, |
| 165 | u32 *); |
| 166 | |
| 167 | /* clear connection security */ |
| 168 | void (*clear)(struct rxrpc_connection *); |
| 169 | }; |
| 170 | |
| 171 | /* |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 172 | * RxRPC local transport endpoint description |
| 173 | * - owned by a single AF_RXRPC socket |
| 174 | * - pointed to by transport socket struct sk_user_data |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 175 | */ |
| 176 | struct rxrpc_local { |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 177 | struct rcu_head rcu; |
| 178 | atomic_t usage; |
| 179 | struct list_head link; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 180 | struct socket *socket; /* my UDP socket */ |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 181 | struct work_struct processor; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 182 | struct list_head services; /* services listening on this endpoint */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 183 | struct rw_semaphore defrag_sem; /* control re-enablement of IP DF bit */ |
| 184 | struct sk_buff_head accept_queue; /* incoming calls awaiting acceptance */ |
| 185 | struct sk_buff_head reject_queue; /* packets awaiting rejection */ |
David Howells | 44ba069 | 2015-04-01 16:31:26 +0100 | [diff] [blame] | 186 | struct sk_buff_head event_queue; /* endpoint event packets awaiting processing */ |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 187 | struct rb_root client_conns; /* Client connections by socket params */ |
| 188 | spinlock_t client_conns_lock; /* Lock for client_conns */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 189 | spinlock_t lock; /* access lock */ |
| 190 | rwlock_t services_lock; /* lock for services list */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 191 | int debug_id; /* debug ID for printks */ |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 192 | bool dead; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 193 | struct sockaddr_rxrpc srx; /* local address */ |
| 194 | }; |
| 195 | |
| 196 | /* |
| 197 | * RxRPC remote transport endpoint definition |
David Howells | be6e670 | 2016-04-04 14:00:32 +0100 | [diff] [blame] | 198 | * - matched by local endpoint, remote port, address and protocol type |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 199 | */ |
| 200 | struct rxrpc_peer { |
David Howells | be6e670 | 2016-04-04 14:00:32 +0100 | [diff] [blame] | 201 | struct rcu_head rcu; /* This must be first */ |
| 202 | atomic_t usage; |
| 203 | unsigned long hash_key; |
| 204 | struct hlist_node hash_link; |
| 205 | struct rxrpc_local *local; |
David Howells | f66d749 | 2016-04-04 14:00:34 +0100 | [diff] [blame] | 206 | struct hlist_head error_targets; /* targets for net error distribution */ |
| 207 | struct work_struct error_distributor; |
David Howells | aa390bb | 2016-06-17 10:06:56 +0100 | [diff] [blame] | 208 | struct rb_root service_conns; /* Service connections */ |
| 209 | rwlock_t conn_lock; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 210 | spinlock_t lock; /* access lock */ |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 211 | unsigned int if_mtu; /* interface MTU for this peer */ |
| 212 | unsigned int mtu; /* network MTU for this peer */ |
| 213 | unsigned int maxdata; /* data size (MTU - hdrsize) */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 214 | unsigned short hdrsize; /* header size (IP + UDP + RxRPC) */ |
| 215 | int debug_id; /* debug ID for printks */ |
David Howells | f66d749 | 2016-04-04 14:00:34 +0100 | [diff] [blame] | 216 | int error_report; /* Net (+0) or local (+1000000) to distribute */ |
| 217 | #define RXRPC_LOCAL_ERROR_OFFSET 1000000 |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 218 | struct sockaddr_rxrpc srx; /* remote address */ |
| 219 | |
| 220 | /* calculated RTT cache */ |
| 221 | #define RXRPC_RTT_CACHE_SIZE 32 |
| 222 | suseconds_t rtt; /* current RTT estimate (in uS) */ |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 223 | unsigned int rtt_point; /* next entry at which to insert */ |
| 224 | unsigned int rtt_usage; /* amount of cache actually used */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 225 | suseconds_t rtt_cache[RXRPC_RTT_CACHE_SIZE]; /* calculated RTT cache */ |
| 226 | }; |
| 227 | |
| 228 | /* |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 229 | * Keys for matching a connection. |
| 230 | */ |
| 231 | struct rxrpc_conn_proto { |
| 232 | unsigned long hash_key; |
| 233 | struct rxrpc_local *local; /* Representation of local endpoint */ |
| 234 | u32 epoch; /* epoch of this connection */ |
| 235 | u32 cid; /* connection ID */ |
| 236 | u8 in_clientflag; /* RXRPC_CLIENT_INITIATED if we are server */ |
| 237 | u8 addr_size; /* Size of the address */ |
| 238 | sa_family_t family; /* Transport protocol */ |
| 239 | __be16 port; /* Peer UDP/UDP6 port */ |
| 240 | union { /* Peer address */ |
| 241 | struct in_addr ipv4_addr; |
| 242 | struct in6_addr ipv6_addr; |
| 243 | u32 raw_addr[0]; |
| 244 | }; |
| 245 | }; |
| 246 | |
| 247 | struct rxrpc_conn_parameters { |
| 248 | struct rxrpc_local *local; /* Representation of local endpoint */ |
| 249 | struct rxrpc_peer *peer; /* Remote endpoint */ |
| 250 | struct key *key; /* Security details */ |
| 251 | bool exclusive; /* T if conn is exclusive */ |
| 252 | u16 service_id; /* Service ID for this connection */ |
| 253 | u32 security_level; /* Security level selected */ |
| 254 | }; |
| 255 | |
| 256 | /* |
David Howells | bba304d | 2016-06-27 10:32:02 +0100 | [diff] [blame] | 257 | * Bits in the connection flags. |
| 258 | */ |
| 259 | enum rxrpc_conn_flag { |
| 260 | RXRPC_CONN_HAS_IDR, /* Has a client conn ID assigned */ |
| 261 | }; |
| 262 | |
| 263 | /* |
| 264 | * Events that can be raised upon a connection. |
| 265 | */ |
| 266 | enum rxrpc_conn_event { |
| 267 | RXRPC_CONN_EV_CHALLENGE, /* Send challenge packet */ |
| 268 | }; |
| 269 | |
| 270 | /* |
| 271 | * The connection protocol state. |
| 272 | */ |
| 273 | enum rxrpc_conn_proto_state { |
| 274 | RXRPC_CONN_UNUSED, /* Connection not yet attempted */ |
| 275 | RXRPC_CONN_CLIENT, /* Client connection */ |
| 276 | RXRPC_CONN_SERVICE_UNSECURED, /* Service unsecured connection */ |
| 277 | RXRPC_CONN_SERVICE_CHALLENGING, /* Service challenging for security */ |
| 278 | RXRPC_CONN_SERVICE, /* Service secured connection */ |
| 279 | RXRPC_CONN_REMOTELY_ABORTED, /* Conn aborted by peer */ |
| 280 | RXRPC_CONN_LOCALLY_ABORTED, /* Conn aborted locally */ |
| 281 | RXRPC_CONN_NETWORK_ERROR, /* Conn terminated by network error */ |
| 282 | RXRPC_CONN__NR_STATES |
| 283 | }; |
| 284 | |
| 285 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 286 | * RxRPC connection definition |
David Howells | aa390bb | 2016-06-17 10:06:56 +0100 | [diff] [blame] | 287 | * - matched by { local, peer, epoch, conn_id, direction } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 288 | * - each connection can only handle four simultaneous calls |
| 289 | */ |
| 290 | struct rxrpc_connection { |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 291 | struct rxrpc_conn_proto proto; |
| 292 | struct rxrpc_conn_parameters params; |
| 293 | |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 294 | spinlock_t channel_lock; |
David Howells | a1399f8 | 2016-06-27 14:39:44 +0100 | [diff] [blame] | 295 | |
| 296 | struct rxrpc_channel { |
| 297 | struct rxrpc_call __rcu *call; /* Active call */ |
| 298 | u32 call_id; /* ID of current call */ |
| 299 | u32 call_counter; /* Call ID counter */ |
| 300 | u32 last_call; /* ID of last call */ |
| 301 | u32 last_result; /* Result of last call (0/abort) */ |
| 302 | } channels[RXRPC_MAXCALLS]; |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 303 | wait_queue_head_t channel_wq; /* queue to wait for channel to become available */ |
| 304 | |
David Howells | dee4636 | 2016-06-27 17:11:19 +0100 | [diff] [blame] | 305 | struct rcu_head rcu; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 306 | struct work_struct processor; /* connection event processor */ |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 307 | union { |
| 308 | struct rb_node client_node; /* Node in local->client_conns */ |
David Howells | aa390bb | 2016-06-17 10:06:56 +0100 | [diff] [blame] | 309 | struct rb_node service_node; /* Node in peer->service_conns */ |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 310 | }; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 311 | struct list_head link; /* link in master connection list */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 312 | struct sk_buff_head rx_queue; /* received conn-level packets */ |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 313 | const struct rxrpc_security *security; /* applied security module */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 314 | struct key *server_key; /* security for this service */ |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 315 | struct crypto_skcipher *cipher; /* encryption handle */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 316 | struct rxrpc_crypt csum_iv; /* packet checksum base */ |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 317 | unsigned long flags; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 318 | unsigned long events; |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 319 | unsigned long put_time; /* Time at which last put */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 320 | spinlock_t state_lock; /* state-change lock */ |
| 321 | atomic_t usage; |
David Howells | bba304d | 2016-06-27 10:32:02 +0100 | [diff] [blame] | 322 | enum rxrpc_conn_proto_state state : 8; /* current state of connection */ |
David Howells | dc44b3a | 2016-04-07 17:23:30 +0100 | [diff] [blame] | 323 | u32 local_abort; /* local abort code */ |
| 324 | u32 remote_abort; /* remote abort code */ |
| 325 | int error; /* local error incurred */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 326 | int debug_id; /* debug ID for printks */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 327 | atomic_t serial; /* packet serial number counter */ |
| 328 | atomic_t hi_serial; /* highest serial number received */ |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 329 | atomic_t avail_chans; /* number of channels available */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 330 | u8 size_align; /* data size alignment (for security) */ |
| 331 | u8 header_size; /* rxrpc + security header size */ |
| 332 | u8 security_size; /* security header size */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 333 | u32 security_nonce; /* response re-use preventer */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 334 | u8 security_ix; /* security type */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 335 | u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */ |
| 336 | }; |
| 337 | |
| 338 | /* |
David Howells | 5b8848d | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 339 | * Flags in call->flags. |
| 340 | */ |
| 341 | enum rxrpc_call_flag { |
| 342 | RXRPC_CALL_RELEASED, /* call has been released - no more message to userspace */ |
| 343 | RXRPC_CALL_TERMINAL_MSG, /* call has given the socket its final message */ |
| 344 | RXRPC_CALL_RCVD_LAST, /* all packets received */ |
| 345 | RXRPC_CALL_RUN_RTIMER, /* Tx resend timer started */ |
| 346 | RXRPC_CALL_TX_SOFT_ACK, /* sent some soft ACKs */ |
| 347 | RXRPC_CALL_PROC_BUSY, /* the processor is busy */ |
| 348 | RXRPC_CALL_INIT_ACCEPT, /* acceptance was initiated */ |
| 349 | RXRPC_CALL_HAS_USERID, /* has a user ID attached */ |
| 350 | RXRPC_CALL_EXPECT_OOS, /* expect out of sequence packets */ |
| 351 | }; |
| 352 | |
| 353 | /* |
| 354 | * Events that can be raised on a call. |
| 355 | */ |
| 356 | enum rxrpc_call_event { |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 357 | RXRPC_CALL_EV_RCVD_ACKALL, /* ACKALL or reply received */ |
| 358 | RXRPC_CALL_EV_RCVD_BUSY, /* busy packet received */ |
| 359 | RXRPC_CALL_EV_RCVD_ABORT, /* abort packet received */ |
| 360 | RXRPC_CALL_EV_RCVD_ERROR, /* network error received */ |
| 361 | RXRPC_CALL_EV_ACK_FINAL, /* need to generate final ACK (and release call) */ |
| 362 | RXRPC_CALL_EV_ACK, /* need to generate ACK */ |
| 363 | RXRPC_CALL_EV_REJECT_BUSY, /* need to generate busy message */ |
| 364 | RXRPC_CALL_EV_ABORT, /* need to generate abort */ |
| 365 | RXRPC_CALL_EV_CONN_ABORT, /* local connection abort generated */ |
| 366 | RXRPC_CALL_EV_RESEND_TIMER, /* Tx resend timer expired */ |
| 367 | RXRPC_CALL_EV_RESEND, /* Tx resend required */ |
| 368 | RXRPC_CALL_EV_DRAIN_RX_OOS, /* drain the Rx out of sequence queue */ |
| 369 | RXRPC_CALL_EV_LIFE_TIMER, /* call's lifetimer ran out */ |
| 370 | RXRPC_CALL_EV_ACCEPTED, /* incoming call accepted by userspace app */ |
| 371 | RXRPC_CALL_EV_SECURED, /* incoming call's connection is now secure */ |
| 372 | RXRPC_CALL_EV_POST_ACCEPT, /* need to post an "accept?" message to the app */ |
| 373 | RXRPC_CALL_EV_RELEASE, /* need to release the call's resources */ |
David Howells | 5b8848d | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 374 | }; |
| 375 | |
| 376 | /* |
| 377 | * The states that a call can be in. |
| 378 | */ |
| 379 | enum rxrpc_call_state { |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 380 | RXRPC_CALL_UNINITIALISED, |
| 381 | RXRPC_CALL_CLIENT_AWAIT_CONN, /* - client waiting for connection to become available */ |
David Howells | 5b8848d | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 382 | RXRPC_CALL_CLIENT_SEND_REQUEST, /* - client sending request phase */ |
| 383 | RXRPC_CALL_CLIENT_AWAIT_REPLY, /* - client awaiting reply */ |
| 384 | RXRPC_CALL_CLIENT_RECV_REPLY, /* - client receiving reply phase */ |
| 385 | RXRPC_CALL_CLIENT_FINAL_ACK, /* - client sending final ACK phase */ |
| 386 | RXRPC_CALL_SERVER_SECURING, /* - server securing request connection */ |
| 387 | RXRPC_CALL_SERVER_ACCEPTING, /* - server accepting request */ |
| 388 | RXRPC_CALL_SERVER_RECV_REQUEST, /* - server receiving request */ |
| 389 | RXRPC_CALL_SERVER_ACK_REQUEST, /* - server pending ACK of request */ |
| 390 | RXRPC_CALL_SERVER_SEND_REPLY, /* - server sending reply */ |
| 391 | RXRPC_CALL_SERVER_AWAIT_ACK, /* - server awaiting final ACK */ |
| 392 | RXRPC_CALL_COMPLETE, /* - call completed */ |
| 393 | RXRPC_CALL_SERVER_BUSY, /* - call rejected by busy server */ |
| 394 | RXRPC_CALL_REMOTELY_ABORTED, /* - call aborted by peer */ |
| 395 | RXRPC_CALL_LOCALLY_ABORTED, /* - call aborted locally on error or close */ |
| 396 | RXRPC_CALL_NETWORK_ERROR, /* - call terminated by network error */ |
| 397 | RXRPC_CALL_DEAD, /* - call is dead */ |
| 398 | NR__RXRPC_CALL_STATES |
| 399 | }; |
| 400 | |
| 401 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 402 | * RxRPC call definition |
| 403 | * - matched by { connection, call_id } |
| 404 | */ |
| 405 | struct rxrpc_call { |
David Howells | dee4636 | 2016-06-27 17:11:19 +0100 | [diff] [blame] | 406 | struct rcu_head rcu; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 407 | struct rxrpc_connection *conn; /* connection carrying call */ |
| 408 | struct rxrpc_sock *socket; /* socket responsible */ |
| 409 | struct timer_list lifetimer; /* lifetime remaining on call */ |
| 410 | struct timer_list deadspan; /* reap timer for re-ACK'ing, etc */ |
| 411 | struct timer_list ack_timer; /* ACK generation timer */ |
| 412 | struct timer_list resend_timer; /* Tx resend timer */ |
| 413 | struct work_struct destroyer; /* call destroyer */ |
| 414 | struct work_struct processor; /* packet processor and ACK generator */ |
| 415 | struct list_head link; /* link in master call list */ |
David Howells | f66d749 | 2016-04-04 14:00:34 +0100 | [diff] [blame] | 416 | struct hlist_node error_link; /* link in error distribution list */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 417 | struct list_head accept_link; /* calls awaiting acceptance */ |
| 418 | struct rb_node sock_node; /* node in socket call tree */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 419 | struct sk_buff_head rx_queue; /* received packets */ |
| 420 | struct sk_buff_head rx_oos_queue; /* packets received out of sequence */ |
| 421 | struct sk_buff *tx_pending; /* Tx socket buffer being filled */ |
| 422 | wait_queue_head_t tx_waitq; /* wait for Tx window space to become available */ |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 423 | __be32 crypto_buf[2]; /* Temporary packet crypto buffer */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 424 | unsigned long user_call_ID; /* user-defined call ID */ |
| 425 | unsigned long creation_jif; /* time of call creation */ |
| 426 | unsigned long flags; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 427 | unsigned long events; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 428 | spinlock_t lock; |
| 429 | rwlock_t state_lock; /* lock for state transition */ |
| 430 | atomic_t usage; |
| 431 | atomic_t sequence; /* Tx data packet sequence counter */ |
David Howells | dc44b3a | 2016-04-07 17:23:30 +0100 | [diff] [blame] | 432 | u32 local_abort; /* local abort code */ |
| 433 | u32 remote_abort; /* remote abort code */ |
David Howells | f66d749 | 2016-04-04 14:00:34 +0100 | [diff] [blame] | 434 | int error_report; /* Network error (ICMP/local transport) */ |
| 435 | int error; /* Local error incurred */ |
David Howells | 5b8848d | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 436 | enum rxrpc_call_state state : 8; /* current state of call */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 437 | int debug_id; /* debug ID for printks */ |
| 438 | u8 channel; /* connection channel occupied by this call */ |
| 439 | |
| 440 | /* transmission-phase ACK management */ |
David Howells | 4e36a95 | 2009-09-16 00:01:13 -0700 | [diff] [blame] | 441 | u8 acks_head; /* offset into window of first entry */ |
| 442 | u8 acks_tail; /* offset into window of last entry */ |
| 443 | u8 acks_winsz; /* size of un-ACK'd window */ |
| 444 | u8 acks_unacked; /* lowest unacked packet in last ACK received */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 445 | int acks_latest; /* serial number of latest ACK received */ |
| 446 | rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */ |
| 447 | unsigned long *acks_window; /* sent packet window |
| 448 | * - elements are pointers with LSB set if ACK'd |
| 449 | */ |
| 450 | |
| 451 | /* receive-phase ACK management */ |
| 452 | rxrpc_seq_t rx_data_expect; /* next data seq ID expected to be received */ |
| 453 | rxrpc_seq_t rx_data_post; /* next data seq ID expected to be posted */ |
| 454 | rxrpc_seq_t rx_data_recv; /* last data seq ID encountered by recvmsg */ |
| 455 | rxrpc_seq_t rx_data_eaten; /* last data seq ID consumed by recvmsg */ |
| 456 | rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */ |
| 457 | rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */ |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 458 | rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */ |
David Howells | 4e36a95 | 2009-09-16 00:01:13 -0700 | [diff] [blame] | 459 | u8 ackr_reason; /* reason to ACK */ |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 460 | rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 461 | atomic_t ackr_not_idle; /* number of packets in Rx queue */ |
| 462 | |
| 463 | /* received packet records, 1 bit per record */ |
| 464 | #define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG) |
| 465 | unsigned long ackr_window[RXRPC_ACKR_WINDOW_ASZ + 1]; |
| 466 | |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 467 | struct hlist_node hash_node; |
| 468 | unsigned long hash_key; /* Full hash key */ |
| 469 | u8 in_clientflag; /* Copy of conn->in_clientflag for hashing */ |
| 470 | struct rxrpc_local *local; /* Local endpoint. Used for hashing. */ |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 471 | sa_family_t family; /* Frame protocol */ |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 472 | u32 call_id; /* call ID on connection */ |
| 473 | u32 cid; /* connection ID plus channel index */ |
| 474 | u32 epoch; /* epoch of this connection */ |
| 475 | u16 service_id; /* service ID */ |
Tim Smith | 7727640 | 2014-03-03 23:04:45 +0000 | [diff] [blame] | 476 | union { /* Peer IP address for hashing */ |
| 477 | __be32 ipv4_addr; |
| 478 | __u8 ipv6_addr[16]; /* Anticipates eventual IPv6 support */ |
| 479 | } peer_ip; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 480 | }; |
| 481 | |
| 482 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 483 | * locally abort an RxRPC call |
| 484 | */ |
| 485 | static inline void rxrpc_abort_call(struct rxrpc_call *call, u32 abort_code) |
| 486 | { |
| 487 | write_lock_bh(&call->state_lock); |
| 488 | if (call->state < RXRPC_CALL_COMPLETE) { |
David Howells | dc44b3a | 2016-04-07 17:23:30 +0100 | [diff] [blame] | 489 | call->local_abort = abort_code; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 490 | call->state = RXRPC_CALL_LOCALLY_ABORTED; |
David Howells | 4c198ad | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 491 | set_bit(RXRPC_CALL_EV_ABORT, &call->events); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 492 | } |
| 493 | write_unlock_bh(&call->state_lock); |
| 494 | } |
| 495 | |
| 496 | /* |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 497 | * af_rxrpc.c |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 498 | */ |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 499 | extern atomic_t rxrpc_n_skbs; |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 500 | extern u32 rxrpc_epoch; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 501 | extern atomic_t rxrpc_debug_id; |
| 502 | extern struct workqueue_struct *rxrpc_workqueue; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 503 | |
| 504 | /* |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 505 | * call_accept.c |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 506 | */ |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 507 | void rxrpc_accept_incoming_calls(struct rxrpc_local *); |
Joe Perches | c1b1203 | 2013-10-18 13:48:25 -0700 | [diff] [blame] | 508 | struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long); |
| 509 | int rxrpc_reject_call(struct rxrpc_sock *); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 510 | |
| 511 | /* |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 512 | * call_event.c |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 513 | */ |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 514 | void __rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool); |
| 515 | void rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool); |
Joe Perches | c1b1203 | 2013-10-18 13:48:25 -0700 | [diff] [blame] | 516 | void rxrpc_process_call(struct work_struct *); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 517 | |
| 518 | /* |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 519 | * call_object.c |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 520 | */ |
David Howells | dad8aff | 2016-03-09 23:22:56 +0000 | [diff] [blame] | 521 | extern unsigned int rxrpc_max_call_lifetime; |
| 522 | extern unsigned int rxrpc_dead_call_expiry; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 523 | extern struct kmem_cache *rxrpc_call_jar; |
| 524 | extern struct list_head rxrpc_calls; |
| 525 | extern rwlock_t rxrpc_call_lock; |
| 526 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 527 | struct rxrpc_call *rxrpc_find_call_hash(struct rxrpc_host_header *, |
| 528 | void *, sa_family_t, const void *); |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 529 | struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long); |
| 530 | struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *, |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 531 | struct rxrpc_conn_parameters *, |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 532 | struct sockaddr_rxrpc *, |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 533 | unsigned long, gfp_t); |
Joe Perches | c1b1203 | 2013-10-18 13:48:25 -0700 | [diff] [blame] | 534 | struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *, |
| 535 | struct rxrpc_connection *, |
David Howells | 42886ff | 2016-06-16 13:31:07 +0100 | [diff] [blame] | 536 | struct sk_buff *); |
Joe Perches | c1b1203 | 2013-10-18 13:48:25 -0700 | [diff] [blame] | 537 | void rxrpc_release_call(struct rxrpc_call *); |
| 538 | void rxrpc_release_calls_on_socket(struct rxrpc_sock *); |
| 539 | void __rxrpc_put_call(struct rxrpc_call *); |
| 540 | void __exit rxrpc_destroy_all_calls(void); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 541 | |
| 542 | /* |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 543 | * conn_client.c |
| 544 | */ |
| 545 | extern struct idr rxrpc_client_conn_ids; |
| 546 | |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 547 | void rxrpc_put_client_connection_id(struct rxrpc_connection *); |
David Howells | eb9b9d2 | 2016-06-27 10:32:02 +0100 | [diff] [blame] | 548 | void rxrpc_destroy_client_conn_ids(void); |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 549 | int rxrpc_connect_call(struct rxrpc_call *, struct rxrpc_conn_parameters *, |
| 550 | struct sockaddr_rxrpc *, gfp_t); |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 551 | |
| 552 | /* |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 553 | * conn_event.c |
| 554 | */ |
| 555 | void rxrpc_process_connection(struct work_struct *); |
| 556 | void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *); |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 557 | void rxrpc_reject_packets(struct rxrpc_local *); |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 558 | |
| 559 | /* |
| 560 | * conn_object.c |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 561 | */ |
David Howells | dad8aff | 2016-03-09 23:22:56 +0000 | [diff] [blame] | 562 | extern unsigned int rxrpc_connection_expiry; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 563 | extern struct list_head rxrpc_connections; |
| 564 | extern rwlock_t rxrpc_connection_lock; |
| 565 | |
David Howells | 7877a4a | 2016-04-04 14:00:40 +0100 | [diff] [blame^] | 566 | void rxrpc_conn_hash_proto_key(struct rxrpc_conn_proto *); |
| 567 | void rxrpc_extract_conn_params(struct rxrpc_conn_proto *, |
| 568 | struct rxrpc_local *, struct sk_buff *); |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 569 | struct rxrpc_connection *rxrpc_alloc_connection(gfp_t); |
David Howells | aa390bb | 2016-06-17 10:06:56 +0100 | [diff] [blame] | 570 | struct rxrpc_connection *rxrpc_find_connection(struct rxrpc_local *, |
| 571 | struct rxrpc_peer *, |
| 572 | struct sk_buff *); |
David Howells | a1399f8 | 2016-06-27 14:39:44 +0100 | [diff] [blame] | 573 | void __rxrpc_disconnect_call(struct rxrpc_call *); |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 574 | void rxrpc_disconnect_call(struct rxrpc_call *); |
Joe Perches | c1b1203 | 2013-10-18 13:48:25 -0700 | [diff] [blame] | 575 | void rxrpc_put_connection(struct rxrpc_connection *); |
| 576 | void __exit rxrpc_destroy_all_connections(void); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 577 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 578 | static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn) |
| 579 | { |
| 580 | return conn->out_clientflag; |
| 581 | } |
| 582 | |
| 583 | static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn) |
| 584 | { |
| 585 | return conn->proto.in_clientflag; |
| 586 | } |
| 587 | |
David Howells | 5627cc8 | 2016-04-04 14:00:38 +0100 | [diff] [blame] | 588 | static inline void rxrpc_get_connection(struct rxrpc_connection *conn) |
| 589 | { |
| 590 | atomic_inc(&conn->usage); |
| 591 | } |
| 592 | |
David Howells | 2c4579e | 2016-06-27 10:32:03 +0100 | [diff] [blame] | 593 | static inline |
| 594 | struct rxrpc_connection *rxrpc_get_connection_maybe(struct rxrpc_connection *conn) |
| 595 | { |
| 596 | return atomic_inc_not_zero(&conn->usage) ? conn : NULL; |
| 597 | } |
David Howells | 5acbee4 | 2016-06-27 10:32:02 +0100 | [diff] [blame] | 598 | |
| 599 | static inline void rxrpc_queue_conn(struct rxrpc_connection *conn) |
| 600 | { |
David Howells | 2c4579e | 2016-06-27 10:32:03 +0100 | [diff] [blame] | 601 | if (rxrpc_get_connection_maybe(conn) && |
| 602 | !rxrpc_queue_work(&conn->processor)) |
| 603 | rxrpc_put_connection(conn); |
David Howells | 5acbee4 | 2016-06-27 10:32:02 +0100 | [diff] [blame] | 604 | } |
| 605 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 606 | /* |
David Howells | 7877a4a | 2016-04-04 14:00:40 +0100 | [diff] [blame^] | 607 | * conn_service.c |
| 608 | */ |
| 609 | struct rxrpc_connection *rxrpc_incoming_connection(struct rxrpc_local *, |
| 610 | struct rxrpc_peer *, |
| 611 | struct sk_buff *); |
| 612 | |
| 613 | /* |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 614 | * input.c |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 615 | */ |
David S. Miller | 676d236 | 2014-04-11 16:15:36 -0400 | [diff] [blame] | 616 | void rxrpc_data_ready(struct sock *); |
Joe Perches | c1b1203 | 2013-10-18 13:48:25 -0700 | [diff] [blame] | 617 | int rxrpc_queue_rcv_skb(struct rxrpc_call *, struct sk_buff *, bool, bool); |
| 618 | void rxrpc_fast_process_packet(struct rxrpc_call *, struct sk_buff *); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 619 | |
| 620 | /* |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 621 | * insecure.c |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 622 | */ |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 623 | extern const struct rxrpc_security rxrpc_no_security; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 624 | |
| 625 | /* |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 626 | * key.c |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 627 | */ |
| 628 | extern struct key_type key_type_rxrpc; |
| 629 | extern struct key_type key_type_rxrpc_s; |
| 630 | |
Joe Perches | c1b1203 | 2013-10-18 13:48:25 -0700 | [diff] [blame] | 631 | int rxrpc_request_key(struct rxrpc_sock *, char __user *, int); |
| 632 | int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int); |
| 633 | int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time_t, |
| 634 | u32); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 635 | |
| 636 | /* |
David Howells | 8756361 | 2016-04-04 14:00:34 +0100 | [diff] [blame] | 637 | * local_event.c |
| 638 | */ |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 639 | extern void rxrpc_process_local_events(struct rxrpc_local *); |
David Howells | 8756361 | 2016-04-04 14:00:34 +0100 | [diff] [blame] | 640 | |
| 641 | /* |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 642 | * local_object.c |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 643 | */ |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 644 | struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *); |
| 645 | void __rxrpc_put_local(struct rxrpc_local *); |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 646 | void __exit rxrpc_destroy_all_locals(void); |
David Howells | e0e4d82 | 2016-04-07 17:23:58 +0100 | [diff] [blame] | 647 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 648 | static inline void rxrpc_get_local(struct rxrpc_local *local) |
| 649 | { |
| 650 | atomic_inc(&local->usage); |
| 651 | } |
| 652 | |
| 653 | static inline |
| 654 | struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local) |
| 655 | { |
| 656 | return atomic_inc_not_zero(&local->usage) ? local : NULL; |
| 657 | } |
| 658 | |
| 659 | static inline void rxrpc_put_local(struct rxrpc_local *local) |
| 660 | { |
David Howells | 5627cc8 | 2016-04-04 14:00:38 +0100 | [diff] [blame] | 661 | if (local && atomic_dec_and_test(&local->usage)) |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 662 | __rxrpc_put_local(local); |
| 663 | } |
| 664 | |
David Howells | 5acbee4 | 2016-06-27 10:32:02 +0100 | [diff] [blame] | 665 | static inline void rxrpc_queue_local(struct rxrpc_local *local) |
| 666 | { |
| 667 | rxrpc_queue_work(&local->processor); |
| 668 | } |
| 669 | |
David Howells | e0e4d82 | 2016-04-07 17:23:58 +0100 | [diff] [blame] | 670 | /* |
David Howells | 8e688d9 | 2016-04-07 17:23:16 +0100 | [diff] [blame] | 671 | * misc.c |
| 672 | */ |
David Howells | 0e119b4 | 2016-06-10 22:30:37 +0100 | [diff] [blame] | 673 | extern unsigned int rxrpc_max_backlog __read_mostly; |
David Howells | 8e688d9 | 2016-04-07 17:23:16 +0100 | [diff] [blame] | 674 | extern unsigned int rxrpc_requested_ack_delay; |
| 675 | extern unsigned int rxrpc_soft_ack_delay; |
| 676 | extern unsigned int rxrpc_idle_ack_delay; |
| 677 | extern unsigned int rxrpc_rx_window_size; |
| 678 | extern unsigned int rxrpc_rx_mtu; |
| 679 | extern unsigned int rxrpc_rx_jumbo_max; |
| 680 | |
David Howells | 5b3e87f | 2016-04-07 17:23:23 +0100 | [diff] [blame] | 681 | extern const char *const rxrpc_pkts[]; |
David Howells | 8e688d9 | 2016-04-07 17:23:16 +0100 | [diff] [blame] | 682 | extern const s8 rxrpc_ack_priority[]; |
| 683 | |
| 684 | extern const char *rxrpc_acks(u8 reason); |
| 685 | |
| 686 | /* |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 687 | * output.c |
| 688 | */ |
| 689 | extern unsigned int rxrpc_resend_timeout; |
| 690 | |
David Howells | 985a5c8 | 2016-06-17 11:53:37 +0100 | [diff] [blame] | 691 | int rxrpc_send_data_packet(struct rxrpc_connection *, struct sk_buff *); |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 692 | int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t); |
| 693 | |
| 694 | /* |
David Howells | abe89ef | 2016-04-04 14:00:32 +0100 | [diff] [blame] | 695 | * peer_event.c |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 696 | */ |
David Howells | abe89ef | 2016-04-04 14:00:32 +0100 | [diff] [blame] | 697 | void rxrpc_error_report(struct sock *); |
David Howells | f66d749 | 2016-04-04 14:00:34 +0100 | [diff] [blame] | 698 | void rxrpc_peer_error_distributor(struct work_struct *); |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 699 | |
| 700 | /* |
| 701 | * peer_object.c |
| 702 | */ |
David Howells | be6e670 | 2016-04-04 14:00:32 +0100 | [diff] [blame] | 703 | struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *, |
| 704 | const struct sockaddr_rxrpc *); |
| 705 | struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_local *, |
| 706 | struct sockaddr_rxrpc *, gfp_t); |
| 707 | struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t); |
| 708 | |
| 709 | static inline void rxrpc_get_peer(struct rxrpc_peer *peer) |
| 710 | { |
| 711 | atomic_inc(&peer->usage); |
| 712 | } |
| 713 | |
| 714 | static inline |
| 715 | struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer) |
| 716 | { |
| 717 | return atomic_inc_not_zero(&peer->usage) ? peer : NULL; |
| 718 | } |
| 719 | |
| 720 | extern void __rxrpc_put_peer(struct rxrpc_peer *peer); |
| 721 | static inline void rxrpc_put_peer(struct rxrpc_peer *peer) |
| 722 | { |
David Howells | 5627cc8 | 2016-04-04 14:00:38 +0100 | [diff] [blame] | 723 | if (peer && atomic_dec_and_test(&peer->usage)) |
David Howells | be6e670 | 2016-04-04 14:00:32 +0100 | [diff] [blame] | 724 | __rxrpc_put_peer(peer); |
| 725 | } |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 726 | |
| 727 | /* |
| 728 | * proc.c |
| 729 | */ |
| 730 | extern const char *const rxrpc_call_states[]; |
| 731 | extern const struct file_operations rxrpc_call_seq_fops; |
| 732 | extern const struct file_operations rxrpc_connection_seq_fops; |
| 733 | |
| 734 | /* |
| 735 | * recvmsg.c |
| 736 | */ |
| 737 | void rxrpc_remove_user_ID(struct rxrpc_sock *, struct rxrpc_call *); |
| 738 | int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int); |
| 739 | |
| 740 | /* |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 741 | * rxkad.c |
| 742 | */ |
| 743 | #ifdef CONFIG_RXKAD |
| 744 | extern const struct rxrpc_security rxkad; |
| 745 | #endif |
| 746 | |
| 747 | /* |
David Howells | 0d81a51 | 2016-06-13 13:30:30 +0100 | [diff] [blame] | 748 | * security.c |
| 749 | */ |
| 750 | int __init rxrpc_init_security(void); |
| 751 | void rxrpc_exit_security(void); |
| 752 | int rxrpc_init_client_conn_security(struct rxrpc_connection *); |
| 753 | int rxrpc_init_server_conn_security(struct rxrpc_connection *); |
| 754 | |
| 755 | /* |
| 756 | * skbuff.c |
| 757 | */ |
| 758 | void rxrpc_packet_destructor(struct sk_buff *); |
| 759 | |
| 760 | /* |
David Howells | 5873c08 | 2014-02-07 18:58:44 +0000 | [diff] [blame] | 761 | * sysctl.c |
| 762 | */ |
| 763 | #ifdef CONFIG_SYSCTL |
| 764 | extern int __init rxrpc_sysctl_init(void); |
| 765 | extern void rxrpc_sysctl_exit(void); |
| 766 | #else |
| 767 | static inline int __init rxrpc_sysctl_init(void) { return 0; } |
| 768 | static inline void rxrpc_sysctl_exit(void) {} |
| 769 | #endif |
| 770 | |
| 771 | /* |
David Howells | be6e670 | 2016-04-04 14:00:32 +0100 | [diff] [blame] | 772 | * utils.c |
| 773 | */ |
| 774 | void rxrpc_get_addr_from_skb(struct rxrpc_local *, const struct sk_buff *, |
| 775 | struct sockaddr_rxrpc *); |
| 776 | |
| 777 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 778 | * debug tracing |
| 779 | */ |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 780 | extern unsigned int rxrpc_debug; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 781 | |
| 782 | #define dbgprintk(FMT,...) \ |
Sven Schnelle | 9f389f4 | 2008-04-03 10:45:30 +0100 | [diff] [blame] | 783 | printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 784 | |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 785 | #define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__) |
| 786 | #define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 787 | #define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__) |
| 788 | #define kproto(FMT,...) dbgprintk("### "FMT ,##__VA_ARGS__) |
| 789 | #define knet(FMT,...) dbgprintk("@@@ "FMT ,##__VA_ARGS__) |
| 790 | |
| 791 | |
| 792 | #if defined(__KDEBUG) |
| 793 | #define _enter(FMT,...) kenter(FMT,##__VA_ARGS__) |
| 794 | #define _leave(FMT,...) kleave(FMT,##__VA_ARGS__) |
| 795 | #define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__) |
| 796 | #define _proto(FMT,...) kproto(FMT,##__VA_ARGS__) |
| 797 | #define _net(FMT,...) knet(FMT,##__VA_ARGS__) |
| 798 | |
| 799 | #elif defined(CONFIG_AF_RXRPC_DEBUG) |
| 800 | #define RXRPC_DEBUG_KENTER 0x01 |
| 801 | #define RXRPC_DEBUG_KLEAVE 0x02 |
| 802 | #define RXRPC_DEBUG_KDEBUG 0x04 |
| 803 | #define RXRPC_DEBUG_KPROTO 0x08 |
| 804 | #define RXRPC_DEBUG_KNET 0x10 |
| 805 | |
| 806 | #define _enter(FMT,...) \ |
| 807 | do { \ |
| 808 | if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER)) \ |
| 809 | kenter(FMT,##__VA_ARGS__); \ |
| 810 | } while (0) |
| 811 | |
| 812 | #define _leave(FMT,...) \ |
| 813 | do { \ |
| 814 | if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE)) \ |
| 815 | kleave(FMT,##__VA_ARGS__); \ |
| 816 | } while (0) |
| 817 | |
| 818 | #define _debug(FMT,...) \ |
| 819 | do { \ |
| 820 | if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG)) \ |
| 821 | kdebug(FMT,##__VA_ARGS__); \ |
| 822 | } while (0) |
| 823 | |
| 824 | #define _proto(FMT,...) \ |
| 825 | do { \ |
| 826 | if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO)) \ |
| 827 | kproto(FMT,##__VA_ARGS__); \ |
| 828 | } while (0) |
| 829 | |
| 830 | #define _net(FMT,...) \ |
| 831 | do { \ |
| 832 | if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET)) \ |
| 833 | knet(FMT,##__VA_ARGS__); \ |
| 834 | } while (0) |
| 835 | |
| 836 | #else |
David Howells | 12fdff3 | 2010-08-12 16:54:57 +0100 | [diff] [blame] | 837 | #define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__) |
| 838 | #define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__) |
| 839 | #define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__) |
| 840 | #define _proto(FMT,...) no_printk("### "FMT ,##__VA_ARGS__) |
| 841 | #define _net(FMT,...) no_printk("@@@ "FMT ,##__VA_ARGS__) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 842 | #endif |
| 843 | |
| 844 | /* |
| 845 | * debug assertion checking |
| 846 | */ |
| 847 | #if 1 // defined(__KDEBUGALL) |
| 848 | |
| 849 | #define ASSERT(X) \ |
| 850 | do { \ |
| 851 | if (unlikely(!(X))) { \ |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 852 | pr_err("Assertion failed\n"); \ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 853 | BUG(); \ |
| 854 | } \ |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 855 | } while (0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 856 | |
| 857 | #define ASSERTCMP(X, OP, Y) \ |
| 858 | do { \ |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 859 | unsigned long _x = (unsigned long)(X); \ |
| 860 | unsigned long _y = (unsigned long)(Y); \ |
| 861 | if (unlikely(!(_x OP _y))) { \ |
| 862 | pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \ |
| 863 | _x, _x, #OP, _y, _y); \ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 864 | BUG(); \ |
| 865 | } \ |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 866 | } while (0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 867 | |
| 868 | #define ASSERTIF(C, X) \ |
| 869 | do { \ |
| 870 | if (unlikely((C) && !(X))) { \ |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 871 | pr_err("Assertion failed\n"); \ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 872 | BUG(); \ |
| 873 | } \ |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 874 | } while (0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 875 | |
| 876 | #define ASSERTIFCMP(C, X, OP, Y) \ |
| 877 | do { \ |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 878 | unsigned long _x = (unsigned long)(X); \ |
| 879 | unsigned long _y = (unsigned long)(Y); \ |
| 880 | if (unlikely((C) && !(_x OP _y))) { \ |
| 881 | pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \ |
| 882 | _x, _x, #OP, _y, _y); \ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 883 | BUG(); \ |
| 884 | } \ |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 885 | } while (0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 886 | |
| 887 | #else |
| 888 | |
| 889 | #define ASSERT(X) \ |
| 890 | do { \ |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 891 | } while (0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 892 | |
| 893 | #define ASSERTCMP(X, OP, Y) \ |
| 894 | do { \ |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 895 | } while (0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 896 | |
| 897 | #define ASSERTIF(C, X) \ |
| 898 | do { \ |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 899 | } while (0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 900 | |
| 901 | #define ASSERTIFCMP(C, X, OP, Y) \ |
| 902 | do { \ |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 903 | } while (0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 904 | |
| 905 | #endif /* __KDEBUGALL */ |
| 906 | |
| 907 | /* |
| 908 | * socket buffer accounting / leak finding |
| 909 | */ |
| 910 | static inline void __rxrpc_new_skb(struct sk_buff *skb, const char *fn) |
| 911 | { |
| 912 | //_net("new skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs)); |
| 913 | //atomic_inc(&rxrpc_n_skbs); |
| 914 | } |
| 915 | |
| 916 | #define rxrpc_new_skb(skb) __rxrpc_new_skb((skb), __func__) |
| 917 | |
| 918 | static inline void __rxrpc_kill_skb(struct sk_buff *skb, const char *fn) |
| 919 | { |
| 920 | //_net("kill skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs)); |
| 921 | //atomic_dec(&rxrpc_n_skbs); |
| 922 | } |
| 923 | |
| 924 | #define rxrpc_kill_skb(skb) __rxrpc_kill_skb((skb), __func__) |
| 925 | |
| 926 | static inline void __rxrpc_free_skb(struct sk_buff *skb, const char *fn) |
| 927 | { |
| 928 | if (skb) { |
| 929 | CHECK_SLAB_OKAY(&skb->users); |
| 930 | //_net("free skb %p %s [%d]", |
| 931 | // skb, fn, atomic_read(&rxrpc_n_skbs)); |
| 932 | //atomic_dec(&rxrpc_n_skbs); |
| 933 | kfree_skb(skb); |
| 934 | } |
| 935 | } |
| 936 | |
| 937 | #define rxrpc_free_skb(skb) __rxrpc_free_skb((skb), __func__) |
| 938 | |
| 939 | static inline void rxrpc_purge_queue(struct sk_buff_head *list) |
| 940 | { |
| 941 | struct sk_buff *skb; |
| 942 | while ((skb = skb_dequeue((list))) != NULL) |
| 943 | rxrpc_free_skb(skb); |
| 944 | } |
| 945 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 946 | #define rxrpc_get_call(CALL) \ |
| 947 | do { \ |
| 948 | CHECK_SLAB_OKAY(&(CALL)->usage); \ |
| 949 | if (atomic_inc_return(&(CALL)->usage) == 1) \ |
| 950 | BUG(); \ |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 951 | } while (0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 952 | |
| 953 | #define rxrpc_put_call(CALL) \ |
| 954 | do { \ |
| 955 | __rxrpc_put_call(CALL); \ |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 956 | } while (0) |