blob: 913255a53564ed0fa4fe292a8885e1ee5b84a037 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* 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 Howellsbe6e6702016-04-04 14:00:32 +010012#include <linux/atomic.h>
David Howells8496af52016-07-01 07:51:50 +010013#include <linux/seqlock.h>
David Howellse0e4d822016-04-07 17:23:58 +010014#include <net/sock.h>
David Howellsbe6e6702016-04-04 14:00:32 +010015#include <net/af_rxrpc.h>
David Howells17926a72007-04-26 15:48:28 -070016#include <rxrpc/packet.h>
17
18#if 0
19#define CHECK_SLAB_OKAY(X) \
20 BUG_ON(atomic_read((X)) >> (sizeof(atomic_t) - 2) == \
21 (POISON_FREE << 8 | POISON_FREE))
22#else
David Howellsb4f13422016-03-04 15:56:19 +000023#define CHECK_SLAB_OKAY(X) do {} while (0)
David Howells17926a72007-04-26 15:48:28 -070024#endif
25
David Howells17926a72007-04-26 15:48:28 -070026#define FCRYPT_BSIZE 8
27struct rxrpc_crypt {
28 union {
29 u8 x[FCRYPT_BSIZE];
Al Viro91e916c2008-03-29 03:08:38 +000030 __be32 n[2];
David Howells17926a72007-04-26 15:48:28 -070031 };
32} __attribute__((aligned(8)));
33
David Howells651350d2007-04-26 15:50:17 -070034#define rxrpc_queue_work(WS) queue_work(rxrpc_workqueue, (WS))
35#define rxrpc_queue_delayed_work(WS,D) \
36 queue_delayed_work(rxrpc_workqueue, (WS), (D))
37
38#define rxrpc_queue_call(CALL) rxrpc_queue_work(&(CALL)->processor)
David Howells17926a72007-04-26 15:48:28 -070039
David Howellscc8feb82016-04-04 14:00:37 +010040struct rxrpc_connection;
41
David Howells17926a72007-04-26 15:48:28 -070042/*
David Howellsd0016482016-08-30 20:42:14 +010043 * Mark applied to socket buffers.
44 */
45enum rxrpc_skb_mark {
46 RXRPC_SKB_MARK_DATA, /* data message */
47 RXRPC_SKB_MARK_FINAL_ACK, /* final ACK received message */
48 RXRPC_SKB_MARK_BUSY, /* server busy message */
49 RXRPC_SKB_MARK_REMOTE_ABORT, /* remote abort message */
50 RXRPC_SKB_MARK_LOCAL_ABORT, /* local abort message */
51 RXRPC_SKB_MARK_NET_ERROR, /* network error message */
52 RXRPC_SKB_MARK_LOCAL_ERROR, /* local error message */
53 RXRPC_SKB_MARK_NEW_CALL, /* local error message */
54};
55
56/*
David Howells17926a72007-04-26 15:48:28 -070057 * sk_state for RxRPC sockets
58 */
59enum {
David Howells2341e072016-06-09 23:02:51 +010060 RXRPC_UNBOUND = 0,
61 RXRPC_CLIENT_UNBOUND, /* Unbound socket used as client */
David Howells17926a72007-04-26 15:48:28 -070062 RXRPC_CLIENT_BOUND, /* client local address bound */
David Howells17926a72007-04-26 15:48:28 -070063 RXRPC_SERVER_BOUND, /* server local address bound */
64 RXRPC_SERVER_LISTENING, /* server listening for connections */
65 RXRPC_CLOSE, /* socket is being closed */
66};
67
68/*
69 * RxRPC socket definition
70 */
71struct rxrpc_sock {
72 /* WARNING: sk has to be the first member */
73 struct sock sk;
David Howellsd0016482016-08-30 20:42:14 +010074 rxrpc_notify_new_call_t notify_new_call; /* Func to notify of new call */
David Howells17926a72007-04-26 15:48:28 -070075 struct rxrpc_local *local; /* local endpoint */
David Howells17926a72007-04-26 15:48:28 -070076 struct list_head listen_link; /* link in the local endpoint's listen list */
77 struct list_head secureq; /* calls awaiting connection security clearance */
78 struct list_head acceptq; /* calls awaiting acceptance */
79 struct key *key; /* security for this socket */
80 struct key *securities; /* list of server security descriptors */
81 struct rb_root calls; /* outstanding calls on this socket */
82 unsigned long flags;
David Howells2341e072016-06-09 23:02:51 +010083#define RXRPC_SOCK_CONNECTED 0 /* connect_srx is set */
David Howells17926a72007-04-26 15:48:28 -070084 rwlock_t call_lock; /* lock for calls */
85 u32 min_sec_level; /* minimum security level */
86#define RXRPC_SECURITY_MAX RXRPC_SECURITY_ENCRYPT
David Howellscc8feb82016-04-04 14:00:37 +010087 bool exclusive; /* Exclusive connection for a client socket */
88 sa_family_t family; /* Protocol family created with */
David Howells17926a72007-04-26 15:48:28 -070089 struct sockaddr_rxrpc srx; /* local address */
David Howells2341e072016-06-09 23:02:51 +010090 struct sockaddr_rxrpc connect_srx; /* Default client address from connect() */
David Howells17926a72007-04-26 15:48:28 -070091};
92
93#define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk)
94
95/*
David Howells0d12f8a2016-03-04 15:53:46 +000096 * CPU-byteorder normalised Rx packet header.
97 */
98struct rxrpc_host_header {
99 u32 epoch; /* client boot timestamp */
100 u32 cid; /* connection and channel ID */
101 u32 callNumber; /* call ID (0 for connection-level packets) */
102 u32 seq; /* sequence number of pkt in call stream */
103 u32 serial; /* serial number of pkt sent to network */
104 u8 type; /* packet type */
105 u8 flags; /* packet flags */
106 u8 userStatus; /* app-layer defined status */
107 u8 securityIndex; /* security protocol ID */
108 union {
109 u16 _rsvd; /* reserved */
110 u16 cksum; /* kerberos security checksum */
111 };
112 u16 serviceId; /* service ID */
113} __packed;
114
115/*
David Howells17926a72007-04-26 15:48:28 -0700116 * RxRPC socket buffer private variables
117 * - max 48 bytes (struct sk_buff::cb)
118 */
119struct rxrpc_skb_priv {
120 struct rxrpc_call *call; /* call with which associated */
121 unsigned long resend_at; /* time in jiffies at which to resend */
122 union {
Eric Dumazet95c96172012-04-15 05:58:06 +0000123 unsigned int offset; /* offset into buffer of next read */
David Howells17926a72007-04-26 15:48:28 -0700124 int remain; /* amount of space remaining for next write */
125 u32 error; /* network error code */
126 bool need_resend; /* T if needs resending */
127 };
128
David Howells0d12f8a2016-03-04 15:53:46 +0000129 struct rxrpc_host_header hdr; /* RxRPC packet header from this packet */
David Howells17926a72007-04-26 15:48:28 -0700130};
131
132#define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb)
133
David Howells17926a72007-04-26 15:48:28 -0700134/*
135 * RxRPC security module interface
136 */
137struct rxrpc_security {
David Howells17926a72007-04-26 15:48:28 -0700138 const char *name; /* name of this service */
139 u8 security_index; /* security type provided */
140
David Howells648af7f2016-04-07 17:23:51 +0100141 /* Initialise a security service */
142 int (*init)(void);
143
144 /* Clean up a security service */
145 void (*exit)(void);
146
David Howells17926a72007-04-26 15:48:28 -0700147 /* initialise a connection's security */
148 int (*init_connection_security)(struct rxrpc_connection *);
149
150 /* prime a connection's packet security */
Herbert Xua2636292016-06-26 14:55:24 -0700151 int (*prime_packet_security)(struct rxrpc_connection *);
David Howells17926a72007-04-26 15:48:28 -0700152
153 /* impose security on a packet */
Herbert Xua2636292016-06-26 14:55:24 -0700154 int (*secure_packet)(struct rxrpc_call *,
David Howells17926a72007-04-26 15:48:28 -0700155 struct sk_buff *,
156 size_t,
157 void *);
158
159 /* verify the security on a received packet */
Herbert Xua2636292016-06-26 14:55:24 -0700160 int (*verify_packet)(struct rxrpc_call *, struct sk_buff *, u32 *);
David Howells17926a72007-04-26 15:48:28 -0700161
162 /* issue a challenge */
163 int (*issue_challenge)(struct rxrpc_connection *);
164
165 /* respond to a challenge */
166 int (*respond_to_challenge)(struct rxrpc_connection *,
167 struct sk_buff *,
168 u32 *);
169
170 /* verify a response */
171 int (*verify_response)(struct rxrpc_connection *,
172 struct sk_buff *,
173 u32 *);
174
175 /* clear connection security */
176 void (*clear)(struct rxrpc_connection *);
177};
178
179/*
David Howells4f95dd72016-04-04 14:00:35 +0100180 * RxRPC local transport endpoint description
181 * - owned by a single AF_RXRPC socket
182 * - pointed to by transport socket struct sk_user_data
David Howells17926a72007-04-26 15:48:28 -0700183 */
184struct rxrpc_local {
David Howells4f95dd72016-04-04 14:00:35 +0100185 struct rcu_head rcu;
186 atomic_t usage;
187 struct list_head link;
David Howells17926a72007-04-26 15:48:28 -0700188 struct socket *socket; /* my UDP socket */
David Howells4f95dd72016-04-04 14:00:35 +0100189 struct work_struct processor;
David Howells17926a72007-04-26 15:48:28 -0700190 struct list_head services; /* services listening on this endpoint */
David Howells17926a72007-04-26 15:48:28 -0700191 struct rw_semaphore defrag_sem; /* control re-enablement of IP DF bit */
192 struct sk_buff_head accept_queue; /* incoming calls awaiting acceptance */
193 struct sk_buff_head reject_queue; /* packets awaiting rejection */
David Howells44ba0692015-04-01 16:31:26 +0100194 struct sk_buff_head event_queue; /* endpoint event packets awaiting processing */
David Howells999b69f2016-06-17 15:42:35 +0100195 struct rb_root client_conns; /* Client connections by socket params */
196 spinlock_t client_conns_lock; /* Lock for client_conns */
David Howells17926a72007-04-26 15:48:28 -0700197 spinlock_t lock; /* access lock */
198 rwlock_t services_lock; /* lock for services list */
David Howells17926a72007-04-26 15:48:28 -0700199 int debug_id; /* debug ID for printks */
David Howells4f95dd72016-04-04 14:00:35 +0100200 bool dead;
David Howells17926a72007-04-26 15:48:28 -0700201 struct sockaddr_rxrpc srx; /* local address */
202};
203
204/*
205 * RxRPC remote transport endpoint definition
David Howellsbe6e6702016-04-04 14:00:32 +0100206 * - matched by local endpoint, remote port, address and protocol type
David Howells17926a72007-04-26 15:48:28 -0700207 */
208struct rxrpc_peer {
David Howellsbe6e6702016-04-04 14:00:32 +0100209 struct rcu_head rcu; /* This must be first */
210 atomic_t usage;
211 unsigned long hash_key;
212 struct hlist_node hash_link;
213 struct rxrpc_local *local;
David Howellsf66d7492016-04-04 14:00:34 +0100214 struct hlist_head error_targets; /* targets for net error distribution */
215 struct work_struct error_distributor;
David Howellsaa390bb2016-06-17 10:06:56 +0100216 struct rb_root service_conns; /* Service connections */
David Howells8496af52016-07-01 07:51:50 +0100217 seqlock_t service_conn_lock;
David Howells17926a72007-04-26 15:48:28 -0700218 spinlock_t lock; /* access lock */
Eric Dumazet95c96172012-04-15 05:58:06 +0000219 unsigned int if_mtu; /* interface MTU for this peer */
220 unsigned int mtu; /* network MTU for this peer */
221 unsigned int maxdata; /* data size (MTU - hdrsize) */
David Howells17926a72007-04-26 15:48:28 -0700222 unsigned short hdrsize; /* header size (IP + UDP + RxRPC) */
223 int debug_id; /* debug ID for printks */
David Howellsf66d7492016-04-04 14:00:34 +0100224 int error_report; /* Net (+0) or local (+1000000) to distribute */
225#define RXRPC_LOCAL_ERROR_OFFSET 1000000
David Howells17926a72007-04-26 15:48:28 -0700226 struct sockaddr_rxrpc srx; /* remote address */
227
228 /* calculated RTT cache */
229#define RXRPC_RTT_CACHE_SIZE 32
230 suseconds_t rtt; /* current RTT estimate (in uS) */
Eric Dumazet95c96172012-04-15 05:58:06 +0000231 unsigned int rtt_point; /* next entry at which to insert */
232 unsigned int rtt_usage; /* amount of cache actually used */
David Howells17926a72007-04-26 15:48:28 -0700233 suseconds_t rtt_cache[RXRPC_RTT_CACHE_SIZE]; /* calculated RTT cache */
234};
235
236/*
David Howells19ffa012016-04-04 14:00:36 +0100237 * Keys for matching a connection.
238 */
239struct rxrpc_conn_proto {
David Howellse8d70ce2016-06-30 12:16:21 +0100240 union {
241 struct {
242 u32 epoch; /* epoch of this connection */
243 u32 cid; /* connection ID */
244 };
245 u64 index_key;
David Howells19ffa012016-04-04 14:00:36 +0100246 };
247};
248
249struct rxrpc_conn_parameters {
250 struct rxrpc_local *local; /* Representation of local endpoint */
251 struct rxrpc_peer *peer; /* Remote endpoint */
252 struct key *key; /* Security details */
253 bool exclusive; /* T if conn is exclusive */
254 u16 service_id; /* Service ID for this connection */
255 u32 security_level; /* Security level selected */
256};
257
258/*
David Howellsbba304d2016-06-27 10:32:02 +0100259 * Bits in the connection flags.
260 */
261enum rxrpc_conn_flag {
262 RXRPC_CONN_HAS_IDR, /* Has a client conn ID assigned */
David Howells001c1122016-06-30 10:45:22 +0100263 RXRPC_CONN_IN_SERVICE_CONNS, /* Conn is in peer->service_conns */
264 RXRPC_CONN_IN_CLIENT_CONNS, /* Conn is in local->client_conns */
David Howells45025bc2016-08-24 07:30:52 +0100265 RXRPC_CONN_EXPOSED, /* Conn has extra ref for exposure */
266 RXRPC_CONN_DONT_REUSE, /* Don't reuse this connection */
267 RXRPC_CONN_COUNTED, /* Counted by rxrpc_nr_client_conns */
David Howellsbba304d2016-06-27 10:32:02 +0100268};
269
270/*
271 * Events that can be raised upon a connection.
272 */
273enum rxrpc_conn_event {
274 RXRPC_CONN_EV_CHALLENGE, /* Send challenge packet */
275};
276
277/*
David Howells45025bc2016-08-24 07:30:52 +0100278 * The connection cache state.
279 */
280enum rxrpc_conn_cache_state {
281 RXRPC_CONN_CLIENT_INACTIVE, /* Conn is not yet listed */
282 RXRPC_CONN_CLIENT_WAITING, /* Conn is on wait list, waiting for capacity */
283 RXRPC_CONN_CLIENT_ACTIVE, /* Conn is on active list, doing calls */
284 RXRPC_CONN_CLIENT_CULLED, /* Conn is culled and delisted, doing calls */
285 RXRPC_CONN_CLIENT_IDLE, /* Conn is on idle list, doing mostly nothing */
286};
287
288/*
David Howellsbba304d2016-06-27 10:32:02 +0100289 * The connection protocol state.
290 */
291enum rxrpc_conn_proto_state {
292 RXRPC_CONN_UNUSED, /* Connection not yet attempted */
293 RXRPC_CONN_CLIENT, /* Client connection */
294 RXRPC_CONN_SERVICE_UNSECURED, /* Service unsecured connection */
295 RXRPC_CONN_SERVICE_CHALLENGING, /* Service challenging for security */
296 RXRPC_CONN_SERVICE, /* Service secured connection */
297 RXRPC_CONN_REMOTELY_ABORTED, /* Conn aborted by peer */
298 RXRPC_CONN_LOCALLY_ABORTED, /* Conn aborted locally */
David Howellsbba304d2016-06-27 10:32:02 +0100299 RXRPC_CONN__NR_STATES
300};
301
302/*
David Howells17926a72007-04-26 15:48:28 -0700303 * RxRPC connection definition
David Howellsaa390bb2016-06-17 10:06:56 +0100304 * - matched by { local, peer, epoch, conn_id, direction }
David Howells17926a72007-04-26 15:48:28 -0700305 * - each connection can only handle four simultaneous calls
306 */
307struct rxrpc_connection {
David Howells19ffa012016-04-04 14:00:36 +0100308 struct rxrpc_conn_proto proto;
309 struct rxrpc_conn_parameters params;
310
David Howells45025bc2016-08-24 07:30:52 +0100311 atomic_t usage;
312 struct rcu_head rcu;
313 struct list_head cache_link;
David Howellsa1399f82016-06-27 14:39:44 +0100314
David Howells45025bc2016-08-24 07:30:52 +0100315 spinlock_t channel_lock;
316 unsigned char active_chans; /* Mask of active channels */
317#define RXRPC_ACTIVE_CHANS_MASK ((1 << RXRPC_MAXCALLS) - 1)
318 struct list_head waiting_calls; /* Calls waiting for channels */
David Howellsa1399f82016-06-27 14:39:44 +0100319 struct rxrpc_channel {
320 struct rxrpc_call __rcu *call; /* Active call */
321 u32 call_id; /* ID of current call */
322 u32 call_counter; /* Call ID counter */
323 u32 last_call; /* ID of last call */
David Howells18bfeba2016-08-23 15:27:25 +0100324 u8 last_type; /* Type of last packet */
325 u16 last_service_id;
326 union {
327 u32 last_seq;
328 u32 last_abort;
329 };
David Howellsa1399f82016-06-27 14:39:44 +0100330 } channels[RXRPC_MAXCALLS];
David Howells999b69f2016-06-17 15:42:35 +0100331
David Howells17926a72007-04-26 15:48:28 -0700332 struct work_struct processor; /* connection event processor */
David Howells999b69f2016-06-17 15:42:35 +0100333 union {
334 struct rb_node client_node; /* Node in local->client_conns */
David Howellsaa390bb2016-06-17 10:06:56 +0100335 struct rb_node service_node; /* Node in peer->service_conns */
David Howells999b69f2016-06-17 15:42:35 +0100336 };
David Howells4d028b22016-08-24 07:30:52 +0100337 struct list_head proc_link; /* link in procfs list */
David Howells17926a72007-04-26 15:48:28 -0700338 struct list_head link; /* link in master connection list */
David Howells17926a72007-04-26 15:48:28 -0700339 struct sk_buff_head rx_queue; /* received conn-level packets */
David Howells648af7f2016-04-07 17:23:51 +0100340 const struct rxrpc_security *security; /* applied security module */
David Howells17926a72007-04-26 15:48:28 -0700341 struct key *server_key; /* security for this service */
Herbert Xu1afe5932016-01-24 21:19:01 +0800342 struct crypto_skcipher *cipher; /* encryption handle */
David Howells17926a72007-04-26 15:48:28 -0700343 struct rxrpc_crypt csum_iv; /* packet checksum base */
David Howells4a3388c2016-04-04 14:00:37 +0100344 unsigned long flags;
David Howells17926a72007-04-26 15:48:28 -0700345 unsigned long events;
David Howellsf51b4482016-08-23 15:27:24 +0100346 unsigned long idle_timestamp; /* Time at which last became idle */
David Howells17926a72007-04-26 15:48:28 -0700347 spinlock_t state_lock; /* state-change lock */
David Howells45025bc2016-08-24 07:30:52 +0100348 enum rxrpc_conn_cache_state cache_state : 8;
David Howellsbba304d2016-06-27 10:32:02 +0100349 enum rxrpc_conn_proto_state state : 8; /* current state of connection */
David Howellsdc44b3a2016-04-07 17:23:30 +0100350 u32 local_abort; /* local abort code */
351 u32 remote_abort; /* remote abort code */
David Howells17926a72007-04-26 15:48:28 -0700352 int debug_id; /* debug ID for printks */
David Howells17926a72007-04-26 15:48:28 -0700353 atomic_t serial; /* packet serial number counter */
David Howells563ea7d2016-08-23 15:27:25 +0100354 unsigned int hi_serial; /* highest serial number received */
David Howells17926a72007-04-26 15:48:28 -0700355 u8 size_align; /* data size alignment (for security) */
356 u8 header_size; /* rxrpc + security header size */
357 u8 security_size; /* security header size */
David Howells17926a72007-04-26 15:48:28 -0700358 u32 security_nonce; /* response re-use preventer */
David Howells17926a72007-04-26 15:48:28 -0700359 u8 security_ix; /* security type */
David Howells17926a72007-04-26 15:48:28 -0700360 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
361};
362
363/*
David Howells5b8848d2016-03-04 15:53:46 +0000364 * Flags in call->flags.
365 */
366enum rxrpc_call_flag {
367 RXRPC_CALL_RELEASED, /* call has been released - no more message to userspace */
368 RXRPC_CALL_TERMINAL_MSG, /* call has given the socket its final message */
369 RXRPC_CALL_RCVD_LAST, /* all packets received */
370 RXRPC_CALL_RUN_RTIMER, /* Tx resend timer started */
371 RXRPC_CALL_TX_SOFT_ACK, /* sent some soft ACKs */
David Howells5b8848d2016-03-04 15:53:46 +0000372 RXRPC_CALL_INIT_ACCEPT, /* acceptance was initiated */
373 RXRPC_CALL_HAS_USERID, /* has a user ID attached */
374 RXRPC_CALL_EXPECT_OOS, /* expect out of sequence packets */
David Howellsdabe5a72016-08-23 15:27:24 +0100375 RXRPC_CALL_IS_SERVICE, /* Call is service call */
David Howells45025bc2016-08-24 07:30:52 +0100376 RXRPC_CALL_EXPOSED, /* The call was exposed to the world */
David Howellsd0016482016-08-30 20:42:14 +0100377 RXRPC_CALL_RX_NO_MORE, /* Don't indicate MSG_MORE from recvmsg() */
David Howells5b8848d2016-03-04 15:53:46 +0000378};
379
380/*
381 * Events that can be raised on a call.
382 */
383enum rxrpc_call_event {
David Howells4c198ad2016-03-04 15:53:46 +0000384 RXRPC_CALL_EV_RCVD_ACKALL, /* ACKALL or reply received */
385 RXRPC_CALL_EV_RCVD_BUSY, /* busy packet received */
386 RXRPC_CALL_EV_RCVD_ABORT, /* abort packet received */
387 RXRPC_CALL_EV_RCVD_ERROR, /* network error received */
388 RXRPC_CALL_EV_ACK_FINAL, /* need to generate final ACK (and release call) */
389 RXRPC_CALL_EV_ACK, /* need to generate ACK */
390 RXRPC_CALL_EV_REJECT_BUSY, /* need to generate busy message */
391 RXRPC_CALL_EV_ABORT, /* need to generate abort */
392 RXRPC_CALL_EV_CONN_ABORT, /* local connection abort generated */
393 RXRPC_CALL_EV_RESEND_TIMER, /* Tx resend timer expired */
394 RXRPC_CALL_EV_RESEND, /* Tx resend required */
395 RXRPC_CALL_EV_DRAIN_RX_OOS, /* drain the Rx out of sequence queue */
396 RXRPC_CALL_EV_LIFE_TIMER, /* call's lifetimer ran out */
397 RXRPC_CALL_EV_ACCEPTED, /* incoming call accepted by userspace app */
398 RXRPC_CALL_EV_SECURED, /* incoming call's connection is now secure */
399 RXRPC_CALL_EV_POST_ACCEPT, /* need to post an "accept?" message to the app */
400 RXRPC_CALL_EV_RELEASE, /* need to release the call's resources */
David Howells5b8848d2016-03-04 15:53:46 +0000401};
402
403/*
404 * The states that a call can be in.
405 */
406enum rxrpc_call_state {
David Howells999b69f2016-06-17 15:42:35 +0100407 RXRPC_CALL_UNINITIALISED,
408 RXRPC_CALL_CLIENT_AWAIT_CONN, /* - client waiting for connection to become available */
David Howells5b8848d2016-03-04 15:53:46 +0000409 RXRPC_CALL_CLIENT_SEND_REQUEST, /* - client sending request phase */
410 RXRPC_CALL_CLIENT_AWAIT_REPLY, /* - client awaiting reply */
411 RXRPC_CALL_CLIENT_RECV_REPLY, /* - client receiving reply phase */
412 RXRPC_CALL_CLIENT_FINAL_ACK, /* - client sending final ACK phase */
413 RXRPC_CALL_SERVER_SECURING, /* - server securing request connection */
414 RXRPC_CALL_SERVER_ACCEPTING, /* - server accepting request */
415 RXRPC_CALL_SERVER_RECV_REQUEST, /* - server receiving request */
416 RXRPC_CALL_SERVER_ACK_REQUEST, /* - server pending ACK of request */
417 RXRPC_CALL_SERVER_SEND_REPLY, /* - server sending reply */
418 RXRPC_CALL_SERVER_AWAIT_ACK, /* - server awaiting final ACK */
David Howellsf5c17aa2016-08-30 09:49:28 +0100419 RXRPC_CALL_COMPLETE, /* - call complete */
420 RXRPC_CALL_DEAD, /* - call is dead */
421 NR__RXRPC_CALL_STATES
422};
423
424/*
425 * Call completion condition (state == RXRPC_CALL_COMPLETE).
426 */
427enum rxrpc_call_completion {
428 RXRPC_CALL_SUCCEEDED, /* - Normal termination */
David Howells5b8848d2016-03-04 15:53:46 +0000429 RXRPC_CALL_SERVER_BUSY, /* - call rejected by busy server */
430 RXRPC_CALL_REMOTELY_ABORTED, /* - call aborted by peer */
431 RXRPC_CALL_LOCALLY_ABORTED, /* - call aborted locally on error or close */
David Howellsf5c17aa2016-08-30 09:49:28 +0100432 RXRPC_CALL_LOCAL_ERROR, /* - call failed due to local error */
David Howells5b8848d2016-03-04 15:53:46 +0000433 RXRPC_CALL_NETWORK_ERROR, /* - call terminated by network error */
David Howellsf5c17aa2016-08-30 09:49:28 +0100434 NR__RXRPC_CALL_COMPLETIONS
David Howells5b8848d2016-03-04 15:53:46 +0000435};
436
437/*
David Howells17926a72007-04-26 15:48:28 -0700438 * RxRPC call definition
439 * - matched by { connection, call_id }
440 */
441struct rxrpc_call {
David Howellsdee46362016-06-27 17:11:19 +0100442 struct rcu_head rcu;
David Howells17926a72007-04-26 15:48:28 -0700443 struct rxrpc_connection *conn; /* connection carrying call */
David Howellsdf5d8bf2016-08-24 14:31:43 +0100444 struct rxrpc_peer *peer; /* Peer record for remote address */
David Howells17926a72007-04-26 15:48:28 -0700445 struct rxrpc_sock *socket; /* socket responsible */
446 struct timer_list lifetimer; /* lifetime remaining on call */
447 struct timer_list deadspan; /* reap timer for re-ACK'ing, etc */
448 struct timer_list ack_timer; /* ACK generation timer */
449 struct timer_list resend_timer; /* Tx resend timer */
450 struct work_struct destroyer; /* call destroyer */
451 struct work_struct processor; /* packet processor and ACK generator */
David Howellsd0016482016-08-30 20:42:14 +0100452 rxrpc_notify_rx_t notify_rx; /* kernel service Rx notification function */
David Howells17926a72007-04-26 15:48:28 -0700453 struct list_head link; /* link in master call list */
David Howells45025bc2016-08-24 07:30:52 +0100454 struct list_head chan_wait_link; /* Link in conn->waiting_calls */
David Howellsf66d7492016-04-04 14:00:34 +0100455 struct hlist_node error_link; /* link in error distribution list */
David Howells17926a72007-04-26 15:48:28 -0700456 struct list_head accept_link; /* calls awaiting acceptance */
457 struct rb_node sock_node; /* node in socket call tree */
David Howells17926a72007-04-26 15:48:28 -0700458 struct sk_buff_head rx_queue; /* received packets */
459 struct sk_buff_head rx_oos_queue; /* packets received out of sequence */
David Howellsd0016482016-08-30 20:42:14 +0100460 struct sk_buff_head knlrecv_queue; /* Queue for kernel_recv [TODO: replace this] */
David Howells17926a72007-04-26 15:48:28 -0700461 struct sk_buff *tx_pending; /* Tx socket buffer being filled */
David Howells45025bc2016-08-24 07:30:52 +0100462 wait_queue_head_t waitq; /* Wait queue for channel or Tx */
Herbert Xua2636292016-06-26 14:55:24 -0700463 __be32 crypto_buf[2]; /* Temporary packet crypto buffer */
David Howells17926a72007-04-26 15:48:28 -0700464 unsigned long user_call_ID; /* user-defined call ID */
465 unsigned long creation_jif; /* time of call creation */
466 unsigned long flags;
David Howells17926a72007-04-26 15:48:28 -0700467 unsigned long events;
David Howells17926a72007-04-26 15:48:28 -0700468 spinlock_t lock;
469 rwlock_t state_lock; /* lock for state transition */
David Howellsf5c17aa2016-08-30 09:49:28 +0100470 u32 abort_code; /* Local/remote abort code */
471 int error; /* Local error incurred */
472 enum rxrpc_call_state state : 8; /* current state of call */
473 enum rxrpc_call_completion completion : 8; /* Call completion condition */
David Howells17926a72007-04-26 15:48:28 -0700474 atomic_t usage;
David Howells372ee162016-08-03 14:11:40 +0100475 atomic_t skb_count; /* Outstanding packets on this call */
David Howells17926a72007-04-26 15:48:28 -0700476 atomic_t sequence; /* Tx data packet sequence counter */
David Howellsdabe5a72016-08-23 15:27:24 +0100477 u16 service_id; /* service ID */
478 u32 call_id; /* call ID on connection */
479 u32 cid; /* connection ID plus channel index */
480 int debug_id; /* debug ID for printks */
David Howells17926a72007-04-26 15:48:28 -0700481
482 /* transmission-phase ACK management */
David Howells4e36a952009-09-16 00:01:13 -0700483 u8 acks_head; /* offset into window of first entry */
484 u8 acks_tail; /* offset into window of last entry */
485 u8 acks_winsz; /* size of un-ACK'd window */
486 u8 acks_unacked; /* lowest unacked packet in last ACK received */
David Howells17926a72007-04-26 15:48:28 -0700487 int acks_latest; /* serial number of latest ACK received */
488 rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */
489 unsigned long *acks_window; /* sent packet window
490 * - elements are pointers with LSB set if ACK'd
491 */
492
493 /* receive-phase ACK management */
494 rxrpc_seq_t rx_data_expect; /* next data seq ID expected to be received */
495 rxrpc_seq_t rx_data_post; /* next data seq ID expected to be posted */
496 rxrpc_seq_t rx_data_recv; /* last data seq ID encountered by recvmsg */
497 rxrpc_seq_t rx_data_eaten; /* last data seq ID consumed by recvmsg */
498 rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */
499 rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */
David Howells0d12f8a2016-03-04 15:53:46 +0000500 rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */
David Howells4e36a952009-09-16 00:01:13 -0700501 u8 ackr_reason; /* reason to ACK */
David Howells563ea7d2016-08-23 15:27:25 +0100502 u16 ackr_skew; /* skew on packet being ACK'd */
David Howells0d12f8a2016-03-04 15:53:46 +0000503 rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */
David Howells17926a72007-04-26 15:48:28 -0700504 atomic_t ackr_not_idle; /* number of packets in Rx queue */
505
506 /* received packet records, 1 bit per record */
507#define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG)
508 unsigned long ackr_window[RXRPC_ACKR_WINDOW_ASZ + 1];
David Howells17926a72007-04-26 15:48:28 -0700509};
510
David Howellsfff72422016-09-07 14:34:21 +0100511enum rxrpc_call_trace {
512 rxrpc_call_new_client,
513 rxrpc_call_new_service,
514 rxrpc_call_queued,
515 rxrpc_call_queued_ref,
516 rxrpc_call_seen,
517 rxrpc_call_got,
518 rxrpc_call_got_skb,
519 rxrpc_call_got_userid,
520 rxrpc_call_put,
521 rxrpc_call_put_skb,
522 rxrpc_call_put_userid,
523 rxrpc_call_put_noqueue,
524 rxrpc_call__nr_trace
525};
526
527extern const char rxrpc_call_traces[rxrpc_call__nr_trace][4];
528
David Howellsdf844fd2016-08-23 15:27:24 +0100529#include <trace/events/rxrpc.h>
530
David Howells17926a72007-04-26 15:48:28 -0700531/*
David Howells651350d2007-04-26 15:50:17 -0700532 * af_rxrpc.c
David Howells17926a72007-04-26 15:48:28 -0700533 */
David Howells651350d2007-04-26 15:50:17 -0700534extern atomic_t rxrpc_n_skbs;
David Howells0d12f8a2016-03-04 15:53:46 +0000535extern u32 rxrpc_epoch;
David Howells651350d2007-04-26 15:50:17 -0700536extern atomic_t rxrpc_debug_id;
537extern struct workqueue_struct *rxrpc_workqueue;
David Howells17926a72007-04-26 15:48:28 -0700538
539/*
David Howells0d81a512016-06-13 13:30:30 +0100540 * call_accept.c
David Howells17926a72007-04-26 15:48:28 -0700541 */
David Howells4f95dd72016-04-04 14:00:35 +0100542void rxrpc_accept_incoming_calls(struct rxrpc_local *);
David Howellsd0016482016-08-30 20:42:14 +0100543struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long,
544 rxrpc_notify_rx_t);
Joe Perchesc1b12032013-10-18 13:48:25 -0700545int rxrpc_reject_call(struct rxrpc_sock *);
David Howells17926a72007-04-26 15:48:28 -0700546
547/*
David Howells0d81a512016-06-13 13:30:30 +0100548 * call_event.c
David Howells17926a72007-04-26 15:48:28 -0700549 */
David Howells563ea7d2016-08-23 15:27:25 +0100550void __rxrpc_propose_ACK(struct rxrpc_call *, u8, u16, u32, bool);
551void rxrpc_propose_ACK(struct rxrpc_call *, u8, u16, u32, bool);
Joe Perchesc1b12032013-10-18 13:48:25 -0700552void rxrpc_process_call(struct work_struct *);
David Howells17926a72007-04-26 15:48:28 -0700553
554/*
David Howells0d81a512016-06-13 13:30:30 +0100555 * call_object.c
David Howells17926a72007-04-26 15:48:28 -0700556 */
David Howellsf5c17aa2016-08-30 09:49:28 +0100557extern const char *const rxrpc_call_states[];
558extern const char *const rxrpc_call_completions[];
David Howellsdad8aff2016-03-09 23:22:56 +0000559extern unsigned int rxrpc_max_call_lifetime;
560extern unsigned int rxrpc_dead_call_expiry;
David Howells17926a72007-04-26 15:48:28 -0700561extern struct kmem_cache *rxrpc_call_jar;
562extern struct list_head rxrpc_calls;
563extern rwlock_t rxrpc_call_lock;
564
David Howells2341e072016-06-09 23:02:51 +0100565struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
566struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
David Howells19ffa012016-04-04 14:00:36 +0100567 struct rxrpc_conn_parameters *,
David Howells999b69f2016-06-17 15:42:35 +0100568 struct sockaddr_rxrpc *,
David Howells2341e072016-06-09 23:02:51 +0100569 unsigned long, gfp_t);
Joe Perchesc1b12032013-10-18 13:48:25 -0700570struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *,
571 struct rxrpc_connection *,
David Howells42886ff2016-06-16 13:31:07 +0100572 struct sk_buff *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700573void rxrpc_release_call(struct rxrpc_call *);
574void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
David Howellse34d4232016-08-30 09:49:29 +0100575void rxrpc_see_call(struct rxrpc_call *);
David Howellsfff72422016-09-07 14:34:21 +0100576void rxrpc_get_call(struct rxrpc_call *, enum rxrpc_call_trace);
577void rxrpc_put_call(struct rxrpc_call *, enum rxrpc_call_trace);
David Howellse34d4232016-08-30 09:49:29 +0100578void rxrpc_get_call_for_skb(struct rxrpc_call *, struct sk_buff *);
579void rxrpc_put_call_for_skb(struct rxrpc_call *, struct sk_buff *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700580void __exit rxrpc_destroy_all_calls(void);
David Howells17926a72007-04-26 15:48:28 -0700581
David Howellsdabe5a72016-08-23 15:27:24 +0100582static inline bool rxrpc_is_service_call(const struct rxrpc_call *call)
583{
584 return test_bit(RXRPC_CALL_IS_SERVICE, &call->flags);
585}
586
587static inline bool rxrpc_is_client_call(const struct rxrpc_call *call)
588{
589 return !rxrpc_is_service_call(call);
590}
591
David Howells17926a72007-04-26 15:48:28 -0700592/*
David Howellsf5c17aa2016-08-30 09:49:28 +0100593 * Transition a call to the complete state.
594 */
595static inline bool __rxrpc_set_call_completion(struct rxrpc_call *call,
596 enum rxrpc_call_completion compl,
597 u32 abort_code,
598 int error)
599{
600 if (call->state < RXRPC_CALL_COMPLETE) {
601 call->abort_code = abort_code;
602 call->error = error;
603 call->completion = compl,
604 call->state = RXRPC_CALL_COMPLETE;
605 return true;
606 }
607 return false;
608}
609
610static inline bool rxrpc_set_call_completion(struct rxrpc_call *call,
611 enum rxrpc_call_completion compl,
612 u32 abort_code,
613 int error)
614{
615 int ret;
616
617 write_lock_bh(&call->state_lock);
618 ret = __rxrpc_set_call_completion(call, compl, abort_code, error);
619 write_unlock_bh(&call->state_lock);
620 return ret;
621}
622
623/*
624 * Record that a call successfully completed.
625 */
626static inline void __rxrpc_call_completed(struct rxrpc_call *call)
627{
628 __rxrpc_set_call_completion(call, RXRPC_CALL_SUCCEEDED, 0, 0);
629}
630
631static inline void rxrpc_call_completed(struct rxrpc_call *call)
632{
633 write_lock_bh(&call->state_lock);
634 __rxrpc_call_completed(call);
635 write_unlock_bh(&call->state_lock);
636}
637
638/*
639 * Record that a call is locally aborted.
640 */
641static inline bool __rxrpc_abort_call(struct rxrpc_call *call,
642 u32 abort_code, int error)
643{
644 if (__rxrpc_set_call_completion(call,
645 RXRPC_CALL_LOCALLY_ABORTED,
646 abort_code, error)) {
647 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
648 return true;
649 }
650 return false;
651}
652
653static inline bool rxrpc_abort_call(struct rxrpc_call *call,
654 u32 abort_code, int error)
655{
656 bool ret;
657
658 write_lock_bh(&call->state_lock);
659 ret = __rxrpc_abort_call(call, abort_code, error);
660 write_unlock_bh(&call->state_lock);
661 return ret;
662}
663
664/*
David Howells4a3388c2016-04-04 14:00:37 +0100665 * conn_client.c
666 */
David Howells45025bc2016-08-24 07:30:52 +0100667extern unsigned int rxrpc_max_client_connections;
668extern unsigned int rxrpc_reap_client_connections;
669extern unsigned int rxrpc_conn_idle_client_expiry;
670extern unsigned int rxrpc_conn_idle_client_fast_expiry;
David Howells4a3388c2016-04-04 14:00:37 +0100671extern struct idr rxrpc_client_conn_ids;
672
David Howellseb9b9d22016-06-27 10:32:02 +0100673void rxrpc_destroy_client_conn_ids(void);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100674int rxrpc_connect_call(struct rxrpc_call *, struct rxrpc_conn_parameters *,
675 struct sockaddr_rxrpc *, gfp_t);
David Howells45025bc2016-08-24 07:30:52 +0100676void rxrpc_expose_client_call(struct rxrpc_call *);
677void rxrpc_disconnect_client_call(struct rxrpc_call *);
678void rxrpc_put_client_conn(struct rxrpc_connection *);
679void __exit rxrpc_destroy_all_client_connections(void);
David Howells4a3388c2016-04-04 14:00:37 +0100680
681/*
David Howells0d81a512016-06-13 13:30:30 +0100682 * conn_event.c
683 */
684void rxrpc_process_connection(struct work_struct *);
685void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *);
David Howells4f95dd72016-04-04 14:00:35 +0100686void rxrpc_reject_packets(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100687
688/*
689 * conn_object.c
David Howells17926a72007-04-26 15:48:28 -0700690 */
David Howellsdad8aff2016-03-09 23:22:56 +0000691extern unsigned int rxrpc_connection_expiry;
David Howells17926a72007-04-26 15:48:28 -0700692extern struct list_head rxrpc_connections;
David Howells4d028b22016-08-24 07:30:52 +0100693extern struct list_head rxrpc_connection_proc_list;
David Howells17926a72007-04-26 15:48:28 -0700694extern rwlock_t rxrpc_connection_lock;
695
David Howells8496af52016-07-01 07:51:50 +0100696int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100697struct rxrpc_connection *rxrpc_alloc_connection(gfp_t);
David Howells8496af52016-07-01 07:51:50 +0100698struct rxrpc_connection *rxrpc_find_connection_rcu(struct rxrpc_local *,
699 struct sk_buff *);
David Howells45025bc2016-08-24 07:30:52 +0100700void __rxrpc_disconnect_call(struct rxrpc_connection *, struct rxrpc_call *);
David Howells999b69f2016-06-17 15:42:35 +0100701void rxrpc_disconnect_call(struct rxrpc_call *);
David Howells45025bc2016-08-24 07:30:52 +0100702void rxrpc_kill_connection(struct rxrpc_connection *);
David Howellsf51b4482016-08-23 15:27:24 +0100703void __rxrpc_put_connection(struct rxrpc_connection *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700704void __exit rxrpc_destroy_all_connections(void);
David Howells17926a72007-04-26 15:48:28 -0700705
David Howells19ffa012016-04-04 14:00:36 +0100706static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
707{
708 return conn->out_clientflag;
709}
710
711static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
712{
David Howellse8d70ce2016-06-30 12:16:21 +0100713 return !rxrpc_conn_is_client(conn);
David Howells19ffa012016-04-04 14:00:36 +0100714}
715
David Howells5627cc82016-04-04 14:00:38 +0100716static inline void rxrpc_get_connection(struct rxrpc_connection *conn)
717{
718 atomic_inc(&conn->usage);
719}
720
David Howells2c4579e2016-06-27 10:32:03 +0100721static inline
722struct rxrpc_connection *rxrpc_get_connection_maybe(struct rxrpc_connection *conn)
723{
724 return atomic_inc_not_zero(&conn->usage) ? conn : NULL;
725}
David Howells5acbee42016-06-27 10:32:02 +0100726
David Howellsf51b4482016-08-23 15:27:24 +0100727static inline void rxrpc_put_connection(struct rxrpc_connection *conn)
728{
David Howells45025bc2016-08-24 07:30:52 +0100729 if (!conn)
730 return;
731
732 if (rxrpc_conn_is_client(conn)) {
733 if (atomic_dec_and_test(&conn->usage))
734 rxrpc_put_client_conn(conn);
735 } else {
736 if (atomic_dec_return(&conn->usage) == 1)
737 __rxrpc_put_connection(conn);
738 }
David Howellsf51b4482016-08-23 15:27:24 +0100739}
740
David Howells8496af52016-07-01 07:51:50 +0100741static inline bool rxrpc_queue_conn(struct rxrpc_connection *conn)
David Howells5acbee42016-06-27 10:32:02 +0100742{
David Howells8496af52016-07-01 07:51:50 +0100743 if (!rxrpc_get_connection_maybe(conn))
744 return false;
745 if (!rxrpc_queue_work(&conn->processor))
David Howells2c4579e2016-06-27 10:32:03 +0100746 rxrpc_put_connection(conn);
David Howells8496af52016-07-01 07:51:50 +0100747 return true;
David Howells5acbee42016-06-27 10:32:02 +0100748}
749
David Howells17926a72007-04-26 15:48:28 -0700750/*
David Howells7877a4a2016-04-04 14:00:40 +0100751 * conn_service.c
752 */
David Howells8496af52016-07-01 07:51:50 +0100753struct rxrpc_connection *rxrpc_find_service_conn_rcu(struct rxrpc_peer *,
754 struct sk_buff *);
David Howells7877a4a2016-04-04 14:00:40 +0100755struct rxrpc_connection *rxrpc_incoming_connection(struct rxrpc_local *,
David Howellsd991b4a2016-06-29 14:40:39 +0100756 struct sockaddr_rxrpc *,
David Howells7877a4a2016-04-04 14:00:40 +0100757 struct sk_buff *);
David Howells001c1122016-06-30 10:45:22 +0100758void rxrpc_unpublish_service_conn(struct rxrpc_connection *);
David Howells7877a4a2016-04-04 14:00:40 +0100759
760/*
David Howells0d81a512016-06-13 13:30:30 +0100761 * input.c
David Howells17926a72007-04-26 15:48:28 -0700762 */
David S. Miller676d2362014-04-11 16:15:36 -0400763void rxrpc_data_ready(struct sock *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700764int rxrpc_queue_rcv_skb(struct rxrpc_call *, struct sk_buff *, bool, bool);
765void rxrpc_fast_process_packet(struct rxrpc_call *, struct sk_buff *);
David Howells17926a72007-04-26 15:48:28 -0700766
767/*
David Howells0d81a512016-06-13 13:30:30 +0100768 * insecure.c
David Howells17926a72007-04-26 15:48:28 -0700769 */
David Howells0d81a512016-06-13 13:30:30 +0100770extern const struct rxrpc_security rxrpc_no_security;
David Howells17926a72007-04-26 15:48:28 -0700771
772/*
David Howells0d81a512016-06-13 13:30:30 +0100773 * key.c
David Howells17926a72007-04-26 15:48:28 -0700774 */
775extern struct key_type key_type_rxrpc;
776extern struct key_type key_type_rxrpc_s;
777
Joe Perchesc1b12032013-10-18 13:48:25 -0700778int rxrpc_request_key(struct rxrpc_sock *, char __user *, int);
779int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int);
780int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time_t,
781 u32);
David Howells17926a72007-04-26 15:48:28 -0700782
783/*
David Howells87563612016-04-04 14:00:34 +0100784 * local_event.c
785 */
David Howells4f95dd72016-04-04 14:00:35 +0100786extern void rxrpc_process_local_events(struct rxrpc_local *);
David Howells87563612016-04-04 14:00:34 +0100787
788/*
David Howells0d81a512016-06-13 13:30:30 +0100789 * local_object.c
David Howells17926a72007-04-26 15:48:28 -0700790 */
David Howells4f95dd72016-04-04 14:00:35 +0100791struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *);
792void __rxrpc_put_local(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100793void __exit rxrpc_destroy_all_locals(void);
David Howellse0e4d822016-04-07 17:23:58 +0100794
David Howells4f95dd72016-04-04 14:00:35 +0100795static inline void rxrpc_get_local(struct rxrpc_local *local)
796{
797 atomic_inc(&local->usage);
798}
799
800static inline
801struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
802{
803 return atomic_inc_not_zero(&local->usage) ? local : NULL;
804}
805
806static inline void rxrpc_put_local(struct rxrpc_local *local)
807{
David Howells5627cc82016-04-04 14:00:38 +0100808 if (local && atomic_dec_and_test(&local->usage))
David Howells4f95dd72016-04-04 14:00:35 +0100809 __rxrpc_put_local(local);
810}
811
David Howells5acbee42016-06-27 10:32:02 +0100812static inline void rxrpc_queue_local(struct rxrpc_local *local)
813{
814 rxrpc_queue_work(&local->processor);
815}
816
David Howellse0e4d822016-04-07 17:23:58 +0100817/*
David Howells8e688d92016-04-07 17:23:16 +0100818 * misc.c
819 */
David Howells0e119b42016-06-10 22:30:37 +0100820extern unsigned int rxrpc_max_backlog __read_mostly;
David Howells8e688d92016-04-07 17:23:16 +0100821extern unsigned int rxrpc_requested_ack_delay;
822extern unsigned int rxrpc_soft_ack_delay;
823extern unsigned int rxrpc_idle_ack_delay;
824extern unsigned int rxrpc_rx_window_size;
825extern unsigned int rxrpc_rx_mtu;
826extern unsigned int rxrpc_rx_jumbo_max;
David Howells0b58b8a2016-09-02 22:39:45 +0100827extern unsigned int rxrpc_resend_timeout;
David Howells8e688d92016-04-07 17:23:16 +0100828
David Howells5b3e87f2016-04-07 17:23:23 +0100829extern const char *const rxrpc_pkts[];
David Howells8e688d92016-04-07 17:23:16 +0100830extern const s8 rxrpc_ack_priority[];
831
832extern const char *rxrpc_acks(u8 reason);
833
834/*
David Howells0d81a512016-06-13 13:30:30 +0100835 * output.c
836 */
David Howells985a5c82016-06-17 11:53:37 +0100837int rxrpc_send_data_packet(struct rxrpc_connection *, struct sk_buff *);
David Howells0d81a512016-06-13 13:30:30 +0100838
839/*
David Howellsabe89ef2016-04-04 14:00:32 +0100840 * peer_event.c
David Howells0d81a512016-06-13 13:30:30 +0100841 */
David Howellsabe89ef2016-04-04 14:00:32 +0100842void rxrpc_error_report(struct sock *);
David Howellsf66d7492016-04-04 14:00:34 +0100843void rxrpc_peer_error_distributor(struct work_struct *);
David Howells0d81a512016-06-13 13:30:30 +0100844
845/*
846 * peer_object.c
847 */
David Howellsbe6e6702016-04-04 14:00:32 +0100848struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
849 const struct sockaddr_rxrpc *);
850struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_local *,
851 struct sockaddr_rxrpc *, gfp_t);
852struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
853
David Howellsdf5d8bf2016-08-24 14:31:43 +0100854static inline struct rxrpc_peer *rxrpc_get_peer(struct rxrpc_peer *peer)
David Howellsbe6e6702016-04-04 14:00:32 +0100855{
856 atomic_inc(&peer->usage);
David Howellsdf5d8bf2016-08-24 14:31:43 +0100857 return peer;
David Howellsbe6e6702016-04-04 14:00:32 +0100858}
859
860static inline
861struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
862{
863 return atomic_inc_not_zero(&peer->usage) ? peer : NULL;
864}
865
866extern void __rxrpc_put_peer(struct rxrpc_peer *peer);
867static inline void rxrpc_put_peer(struct rxrpc_peer *peer)
868{
David Howells5627cc82016-04-04 14:00:38 +0100869 if (peer && atomic_dec_and_test(&peer->usage))
David Howellsbe6e6702016-04-04 14:00:32 +0100870 __rxrpc_put_peer(peer);
871}
David Howells0d81a512016-06-13 13:30:30 +0100872
873/*
874 * proc.c
875 */
David Howells0d81a512016-06-13 13:30:30 +0100876extern const struct file_operations rxrpc_call_seq_fops;
877extern const struct file_operations rxrpc_connection_seq_fops;
878
879/*
880 * recvmsg.c
881 */
882void rxrpc_remove_user_ID(struct rxrpc_sock *, struct rxrpc_call *);
883int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
884
885/*
David Howells648af7f2016-04-07 17:23:51 +0100886 * rxkad.c
887 */
888#ifdef CONFIG_RXKAD
889extern const struct rxrpc_security rxkad;
890#endif
891
892/*
David Howells0d81a512016-06-13 13:30:30 +0100893 * security.c
894 */
895int __init rxrpc_init_security(void);
896void rxrpc_exit_security(void);
897int rxrpc_init_client_conn_security(struct rxrpc_connection *);
898int rxrpc_init_server_conn_security(struct rxrpc_connection *);
David Howells71a17de2016-09-07 14:43:39 +0100899
David Howells0b58b8a2016-09-02 22:39:45 +0100900/*
901 * sendmsg.c
902 */
903int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
David Howells0d81a512016-06-13 13:30:30 +0100904
905/*
906 * skbuff.c
907 */
David Howellsd0016482016-08-30 20:42:14 +0100908void rxrpc_kernel_data_consumed(struct rxrpc_call *, struct sk_buff *);
David Howells0d81a512016-06-13 13:30:30 +0100909void rxrpc_packet_destructor(struct sk_buff *);
David Howellsdf844fd2016-08-23 15:27:24 +0100910void rxrpc_new_skb(struct sk_buff *);
911void rxrpc_see_skb(struct sk_buff *);
912void rxrpc_get_skb(struct sk_buff *);
913void rxrpc_free_skb(struct sk_buff *);
914void rxrpc_purge_queue(struct sk_buff_head *);
David Howells0d81a512016-06-13 13:30:30 +0100915
916/*
David Howells5873c082014-02-07 18:58:44 +0000917 * sysctl.c
918 */
919#ifdef CONFIG_SYSCTL
920extern int __init rxrpc_sysctl_init(void);
921extern void rxrpc_sysctl_exit(void);
922#else
923static inline int __init rxrpc_sysctl_init(void) { return 0; }
924static inline void rxrpc_sysctl_exit(void) {}
925#endif
926
927/*
David Howellsbe6e6702016-04-04 14:00:32 +0100928 * utils.c
929 */
David Howellsd991b4a2016-06-29 14:40:39 +0100930int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
David Howellsbe6e6702016-04-04 14:00:32 +0100931
932/*
David Howells17926a72007-04-26 15:48:28 -0700933 * debug tracing
934 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000935extern unsigned int rxrpc_debug;
David Howells17926a72007-04-26 15:48:28 -0700936
937#define dbgprintk(FMT,...) \
Sven Schnelle9f389f42008-04-03 10:45:30 +0100938 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700939
Harvey Harrison0dc47872008-03-05 20:47:47 -0800940#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
941#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700942#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
943#define kproto(FMT,...) dbgprintk("### "FMT ,##__VA_ARGS__)
944#define knet(FMT,...) dbgprintk("@@@ "FMT ,##__VA_ARGS__)
945
946
947#if defined(__KDEBUG)
948#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
949#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
950#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
951#define _proto(FMT,...) kproto(FMT,##__VA_ARGS__)
952#define _net(FMT,...) knet(FMT,##__VA_ARGS__)
953
954#elif defined(CONFIG_AF_RXRPC_DEBUG)
955#define RXRPC_DEBUG_KENTER 0x01
956#define RXRPC_DEBUG_KLEAVE 0x02
957#define RXRPC_DEBUG_KDEBUG 0x04
958#define RXRPC_DEBUG_KPROTO 0x08
959#define RXRPC_DEBUG_KNET 0x10
960
961#define _enter(FMT,...) \
962do { \
963 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER)) \
964 kenter(FMT,##__VA_ARGS__); \
965} while (0)
966
967#define _leave(FMT,...) \
968do { \
969 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE)) \
970 kleave(FMT,##__VA_ARGS__); \
971} while (0)
972
973#define _debug(FMT,...) \
974do { \
975 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG)) \
976 kdebug(FMT,##__VA_ARGS__); \
977} while (0)
978
979#define _proto(FMT,...) \
980do { \
981 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO)) \
982 kproto(FMT,##__VA_ARGS__); \
983} while (0)
984
985#define _net(FMT,...) \
986do { \
987 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET)) \
988 knet(FMT,##__VA_ARGS__); \
989} while (0)
990
991#else
David Howells12fdff32010-08-12 16:54:57 +0100992#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
993#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
994#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
995#define _proto(FMT,...) no_printk("### "FMT ,##__VA_ARGS__)
996#define _net(FMT,...) no_printk("@@@ "FMT ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700997#endif
998
999/*
1000 * debug assertion checking
1001 */
1002#if 1 // defined(__KDEBUGALL)
1003
1004#define ASSERT(X) \
1005do { \
1006 if (unlikely(!(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -07001007 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -07001008 BUG(); \
1009 } \
David Howellsb4f13422016-03-04 15:56:19 +00001010} while (0)
David Howells17926a72007-04-26 15:48:28 -07001011
1012#define ASSERTCMP(X, OP, Y) \
1013do { \
Joe Perches9b6d5392016-06-02 12:08:52 -07001014 unsigned long _x = (unsigned long)(X); \
1015 unsigned long _y = (unsigned long)(Y); \
1016 if (unlikely(!(_x OP _y))) { \
1017 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1018 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -07001019 BUG(); \
1020 } \
David Howellsb4f13422016-03-04 15:56:19 +00001021} while (0)
David Howells17926a72007-04-26 15:48:28 -07001022
1023#define ASSERTIF(C, X) \
1024do { \
1025 if (unlikely((C) && !(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -07001026 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -07001027 BUG(); \
1028 } \
David Howellsb4f13422016-03-04 15:56:19 +00001029} while (0)
David Howells17926a72007-04-26 15:48:28 -07001030
1031#define ASSERTIFCMP(C, X, OP, Y) \
1032do { \
Joe Perches9b6d5392016-06-02 12:08:52 -07001033 unsigned long _x = (unsigned long)(X); \
1034 unsigned long _y = (unsigned long)(Y); \
1035 if (unlikely((C) && !(_x OP _y))) { \
1036 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1037 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -07001038 BUG(); \
1039 } \
David Howellsb4f13422016-03-04 15:56:19 +00001040} while (0)
David Howells17926a72007-04-26 15:48:28 -07001041
1042#else
1043
1044#define ASSERT(X) \
1045do { \
David Howellsb4f13422016-03-04 15:56:19 +00001046} while (0)
David Howells17926a72007-04-26 15:48:28 -07001047
1048#define ASSERTCMP(X, OP, Y) \
1049do { \
David Howellsb4f13422016-03-04 15:56:19 +00001050} while (0)
David Howells17926a72007-04-26 15:48:28 -07001051
1052#define ASSERTIF(C, X) \
1053do { \
David Howellsb4f13422016-03-04 15:56:19 +00001054} while (0)
David Howells17926a72007-04-26 15:48:28 -07001055
1056#define ASSERTIFCMP(C, X, OP, Y) \
1057do { \
David Howellsb4f13422016-03-04 15:56:19 +00001058} while (0)
David Howells17926a72007-04-26 15:48:28 -07001059
1060#endif /* __KDEBUGALL */