blob: 3addda4bfa6bb89b0bde2b334229e044b2031c1c [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
David Howellscc8feb82016-04-04 14:00:37 +010038struct rxrpc_connection;
39
David Howells17926a72007-04-26 15:48:28 -070040/*
David Howellsd0016482016-08-30 20:42:14 +010041 * Mark applied to socket buffers.
42 */
43enum rxrpc_skb_mark {
44 RXRPC_SKB_MARK_DATA, /* data message */
45 RXRPC_SKB_MARK_FINAL_ACK, /* final ACK received message */
46 RXRPC_SKB_MARK_BUSY, /* server busy message */
47 RXRPC_SKB_MARK_REMOTE_ABORT, /* remote abort message */
48 RXRPC_SKB_MARK_LOCAL_ABORT, /* local abort message */
49 RXRPC_SKB_MARK_NET_ERROR, /* network error message */
50 RXRPC_SKB_MARK_LOCAL_ERROR, /* local error message */
51 RXRPC_SKB_MARK_NEW_CALL, /* local error message */
52};
53
54/*
David Howells17926a72007-04-26 15:48:28 -070055 * sk_state for RxRPC sockets
56 */
57enum {
David Howells2341e072016-06-09 23:02:51 +010058 RXRPC_UNBOUND = 0,
59 RXRPC_CLIENT_UNBOUND, /* Unbound socket used as client */
David Howells17926a72007-04-26 15:48:28 -070060 RXRPC_CLIENT_BOUND, /* client local address bound */
David Howells17926a72007-04-26 15:48:28 -070061 RXRPC_SERVER_BOUND, /* server local address bound */
62 RXRPC_SERVER_LISTENING, /* server listening for connections */
63 RXRPC_CLOSE, /* socket is being closed */
64};
65
66/*
67 * RxRPC socket definition
68 */
69struct rxrpc_sock {
70 /* WARNING: sk has to be the first member */
71 struct sock sk;
David Howellsd0016482016-08-30 20:42:14 +010072 rxrpc_notify_new_call_t notify_new_call; /* Func to notify of new call */
David Howells17926a72007-04-26 15:48:28 -070073 struct rxrpc_local *local; /* local endpoint */
David Howells17926a72007-04-26 15:48:28 -070074 struct list_head listen_link; /* link in the local endpoint's listen list */
75 struct list_head secureq; /* calls awaiting connection security clearance */
76 struct list_head acceptq; /* calls awaiting acceptance */
77 struct key *key; /* security for this socket */
78 struct key *securities; /* list of server security descriptors */
79 struct rb_root calls; /* outstanding calls on this socket */
80 unsigned long flags;
David Howells2341e072016-06-09 23:02:51 +010081#define RXRPC_SOCK_CONNECTED 0 /* connect_srx is set */
David Howells17926a72007-04-26 15:48:28 -070082 rwlock_t call_lock; /* lock for calls */
83 u32 min_sec_level; /* minimum security level */
84#define RXRPC_SECURITY_MAX RXRPC_SECURITY_ENCRYPT
David Howellscc8feb82016-04-04 14:00:37 +010085 bool exclusive; /* Exclusive connection for a client socket */
86 sa_family_t family; /* Protocol family created with */
David Howells17926a72007-04-26 15:48:28 -070087 struct sockaddr_rxrpc srx; /* local address */
David Howells2341e072016-06-09 23:02:51 +010088 struct sockaddr_rxrpc connect_srx; /* Default client address from connect() */
David Howells17926a72007-04-26 15:48:28 -070089};
90
91#define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk)
92
93/*
David Howells0d12f8a2016-03-04 15:53:46 +000094 * CPU-byteorder normalised Rx packet header.
95 */
96struct rxrpc_host_header {
97 u32 epoch; /* client boot timestamp */
98 u32 cid; /* connection and channel ID */
99 u32 callNumber; /* call ID (0 for connection-level packets) */
100 u32 seq; /* sequence number of pkt in call stream */
101 u32 serial; /* serial number of pkt sent to network */
102 u8 type; /* packet type */
103 u8 flags; /* packet flags */
104 u8 userStatus; /* app-layer defined status */
105 u8 securityIndex; /* security protocol ID */
106 union {
107 u16 _rsvd; /* reserved */
108 u16 cksum; /* kerberos security checksum */
109 };
110 u16 serviceId; /* service ID */
111} __packed;
112
113/*
David Howells17926a72007-04-26 15:48:28 -0700114 * RxRPC socket buffer private variables
115 * - max 48 bytes (struct sk_buff::cb)
116 */
117struct rxrpc_skb_priv {
118 struct rxrpc_call *call; /* call with which associated */
119 unsigned long resend_at; /* time in jiffies at which to resend */
120 union {
Eric Dumazet95c96172012-04-15 05:58:06 +0000121 unsigned int offset; /* offset into buffer of next read */
David Howells17926a72007-04-26 15:48:28 -0700122 int remain; /* amount of space remaining for next write */
123 u32 error; /* network error code */
124 bool need_resend; /* T if needs resending */
125 };
126
David Howells0d12f8a2016-03-04 15:53:46 +0000127 struct rxrpc_host_header hdr; /* RxRPC packet header from this packet */
David Howells17926a72007-04-26 15:48:28 -0700128};
129
130#define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb)
131
David Howells17926a72007-04-26 15:48:28 -0700132/*
133 * RxRPC security module interface
134 */
135struct rxrpc_security {
David Howells17926a72007-04-26 15:48:28 -0700136 const char *name; /* name of this service */
137 u8 security_index; /* security type provided */
138
David Howells648af7f2016-04-07 17:23:51 +0100139 /* Initialise a security service */
140 int (*init)(void);
141
142 /* Clean up a security service */
143 void (*exit)(void);
144
David Howells17926a72007-04-26 15:48:28 -0700145 /* initialise a connection's security */
146 int (*init_connection_security)(struct rxrpc_connection *);
147
148 /* prime a connection's packet security */
Herbert Xua2636292016-06-26 14:55:24 -0700149 int (*prime_packet_security)(struct rxrpc_connection *);
David Howells17926a72007-04-26 15:48:28 -0700150
151 /* impose security on a packet */
Herbert Xua2636292016-06-26 14:55:24 -0700152 int (*secure_packet)(struct rxrpc_call *,
David Howells17926a72007-04-26 15:48:28 -0700153 struct sk_buff *,
154 size_t,
155 void *);
156
157 /* verify the security on a received packet */
Herbert Xua2636292016-06-26 14:55:24 -0700158 int (*verify_packet)(struct rxrpc_call *, struct sk_buff *, u32 *);
David Howells17926a72007-04-26 15:48:28 -0700159
160 /* issue a challenge */
161 int (*issue_challenge)(struct rxrpc_connection *);
162
163 /* respond to a challenge */
164 int (*respond_to_challenge)(struct rxrpc_connection *,
165 struct sk_buff *,
166 u32 *);
167
168 /* verify a response */
169 int (*verify_response)(struct rxrpc_connection *,
170 struct sk_buff *,
171 u32 *);
172
173 /* clear connection security */
174 void (*clear)(struct rxrpc_connection *);
175};
176
177/*
David Howells4f95dd72016-04-04 14:00:35 +0100178 * RxRPC local transport endpoint description
179 * - owned by a single AF_RXRPC socket
180 * - pointed to by transport socket struct sk_user_data
David Howells17926a72007-04-26 15:48:28 -0700181 */
182struct rxrpc_local {
David Howells4f95dd72016-04-04 14:00:35 +0100183 struct rcu_head rcu;
184 atomic_t usage;
185 struct list_head link;
David Howells17926a72007-04-26 15:48:28 -0700186 struct socket *socket; /* my UDP socket */
David Howells4f95dd72016-04-04 14:00:35 +0100187 struct work_struct processor;
David Howells17926a72007-04-26 15:48:28 -0700188 struct list_head services; /* services listening on this endpoint */
David Howells17926a72007-04-26 15:48:28 -0700189 struct rw_semaphore defrag_sem; /* control re-enablement of IP DF bit */
190 struct sk_buff_head accept_queue; /* incoming calls awaiting acceptance */
191 struct sk_buff_head reject_queue; /* packets awaiting rejection */
David Howells44ba0692015-04-01 16:31:26 +0100192 struct sk_buff_head event_queue; /* endpoint event packets awaiting processing */
David Howells999b69f2016-06-17 15:42:35 +0100193 struct rb_root client_conns; /* Client connections by socket params */
194 spinlock_t client_conns_lock; /* Lock for client_conns */
David Howells17926a72007-04-26 15:48:28 -0700195 spinlock_t lock; /* access lock */
196 rwlock_t services_lock; /* lock for services list */
David Howells17926a72007-04-26 15:48:28 -0700197 int debug_id; /* debug ID for printks */
David Howells4f95dd72016-04-04 14:00:35 +0100198 bool dead;
David Howells17926a72007-04-26 15:48:28 -0700199 struct sockaddr_rxrpc srx; /* local address */
200};
201
202/*
203 * RxRPC remote transport endpoint definition
David Howellsbe6e6702016-04-04 14:00:32 +0100204 * - matched by local endpoint, remote port, address and protocol type
David Howells17926a72007-04-26 15:48:28 -0700205 */
206struct rxrpc_peer {
David Howellsbe6e6702016-04-04 14:00:32 +0100207 struct rcu_head rcu; /* This must be first */
208 atomic_t usage;
209 unsigned long hash_key;
210 struct hlist_node hash_link;
211 struct rxrpc_local *local;
David Howellsf66d7492016-04-04 14:00:34 +0100212 struct hlist_head error_targets; /* targets for net error distribution */
213 struct work_struct error_distributor;
David Howellsaa390bb2016-06-17 10:06:56 +0100214 struct rb_root service_conns; /* Service connections */
David Howells8496af52016-07-01 07:51:50 +0100215 seqlock_t service_conn_lock;
David Howells17926a72007-04-26 15:48:28 -0700216 spinlock_t lock; /* access lock */
Eric Dumazet95c96172012-04-15 05:58:06 +0000217 unsigned int if_mtu; /* interface MTU for this peer */
218 unsigned int mtu; /* network MTU for this peer */
219 unsigned int maxdata; /* data size (MTU - hdrsize) */
David Howells17926a72007-04-26 15:48:28 -0700220 unsigned short hdrsize; /* header size (IP + UDP + RxRPC) */
221 int debug_id; /* debug ID for printks */
David Howellsf66d7492016-04-04 14:00:34 +0100222 int error_report; /* Net (+0) or local (+1000000) to distribute */
223#define RXRPC_LOCAL_ERROR_OFFSET 1000000
David Howells17926a72007-04-26 15:48:28 -0700224 struct sockaddr_rxrpc srx; /* remote address */
225
226 /* calculated RTT cache */
227#define RXRPC_RTT_CACHE_SIZE 32
228 suseconds_t rtt; /* current RTT estimate (in uS) */
Eric Dumazet95c96172012-04-15 05:58:06 +0000229 unsigned int rtt_point; /* next entry at which to insert */
230 unsigned int rtt_usage; /* amount of cache actually used */
David Howells17926a72007-04-26 15:48:28 -0700231 suseconds_t rtt_cache[RXRPC_RTT_CACHE_SIZE]; /* calculated RTT cache */
232};
233
234/*
David Howells19ffa012016-04-04 14:00:36 +0100235 * Keys for matching a connection.
236 */
237struct rxrpc_conn_proto {
David Howellse8d70ce2016-06-30 12:16:21 +0100238 union {
239 struct {
240 u32 epoch; /* epoch of this connection */
241 u32 cid; /* connection ID */
242 };
243 u64 index_key;
David Howells19ffa012016-04-04 14:00:36 +0100244 };
245};
246
247struct 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 Howellsbba304d2016-06-27 10:32:02 +0100257 * Bits in the connection flags.
258 */
259enum rxrpc_conn_flag {
260 RXRPC_CONN_HAS_IDR, /* Has a client conn ID assigned */
David Howells001c1122016-06-30 10:45:22 +0100261 RXRPC_CONN_IN_SERVICE_CONNS, /* Conn is in peer->service_conns */
262 RXRPC_CONN_IN_CLIENT_CONNS, /* Conn is in local->client_conns */
David Howells45025bc2016-08-24 07:30:52 +0100263 RXRPC_CONN_EXPOSED, /* Conn has extra ref for exposure */
264 RXRPC_CONN_DONT_REUSE, /* Don't reuse this connection */
265 RXRPC_CONN_COUNTED, /* Counted by rxrpc_nr_client_conns */
David Howellsbba304d2016-06-27 10:32:02 +0100266};
267
268/*
269 * Events that can be raised upon a connection.
270 */
271enum rxrpc_conn_event {
272 RXRPC_CONN_EV_CHALLENGE, /* Send challenge packet */
273};
274
275/*
David Howells45025bc2016-08-24 07:30:52 +0100276 * The connection cache state.
277 */
278enum rxrpc_conn_cache_state {
279 RXRPC_CONN_CLIENT_INACTIVE, /* Conn is not yet listed */
280 RXRPC_CONN_CLIENT_WAITING, /* Conn is on wait list, waiting for capacity */
281 RXRPC_CONN_CLIENT_ACTIVE, /* Conn is on active list, doing calls */
282 RXRPC_CONN_CLIENT_CULLED, /* Conn is culled and delisted, doing calls */
283 RXRPC_CONN_CLIENT_IDLE, /* Conn is on idle list, doing mostly nothing */
284};
285
286/*
David Howellsbba304d2016-06-27 10:32:02 +0100287 * The connection protocol state.
288 */
289enum rxrpc_conn_proto_state {
290 RXRPC_CONN_UNUSED, /* Connection not yet attempted */
291 RXRPC_CONN_CLIENT, /* Client connection */
292 RXRPC_CONN_SERVICE_UNSECURED, /* Service unsecured connection */
293 RXRPC_CONN_SERVICE_CHALLENGING, /* Service challenging for security */
294 RXRPC_CONN_SERVICE, /* Service secured connection */
295 RXRPC_CONN_REMOTELY_ABORTED, /* Conn aborted by peer */
296 RXRPC_CONN_LOCALLY_ABORTED, /* Conn aborted locally */
David Howellsbba304d2016-06-27 10:32:02 +0100297 RXRPC_CONN__NR_STATES
298};
299
300/*
David Howells17926a72007-04-26 15:48:28 -0700301 * RxRPC connection definition
David Howellsaa390bb2016-06-17 10:06:56 +0100302 * - matched by { local, peer, epoch, conn_id, direction }
David Howells17926a72007-04-26 15:48:28 -0700303 * - each connection can only handle four simultaneous calls
304 */
305struct rxrpc_connection {
David Howells19ffa012016-04-04 14:00:36 +0100306 struct rxrpc_conn_proto proto;
307 struct rxrpc_conn_parameters params;
308
David Howells45025bc2016-08-24 07:30:52 +0100309 atomic_t usage;
310 struct rcu_head rcu;
311 struct list_head cache_link;
David Howellsa1399f82016-06-27 14:39:44 +0100312
David Howells45025bc2016-08-24 07:30:52 +0100313 spinlock_t channel_lock;
314 unsigned char active_chans; /* Mask of active channels */
315#define RXRPC_ACTIVE_CHANS_MASK ((1 << RXRPC_MAXCALLS) - 1)
316 struct list_head waiting_calls; /* Calls waiting for channels */
David Howellsa1399f82016-06-27 14:39:44 +0100317 struct rxrpc_channel {
318 struct rxrpc_call __rcu *call; /* Active call */
319 u32 call_id; /* ID of current call */
320 u32 call_counter; /* Call ID counter */
321 u32 last_call; /* ID of last call */
David Howells18bfeba2016-08-23 15:27:25 +0100322 u8 last_type; /* Type of last packet */
323 u16 last_service_id;
324 union {
325 u32 last_seq;
326 u32 last_abort;
327 };
David Howellsa1399f82016-06-27 14:39:44 +0100328 } channels[RXRPC_MAXCALLS];
David Howells999b69f2016-06-17 15:42:35 +0100329
David Howells17926a72007-04-26 15:48:28 -0700330 struct work_struct processor; /* connection event processor */
David Howells999b69f2016-06-17 15:42:35 +0100331 union {
332 struct rb_node client_node; /* Node in local->client_conns */
David Howellsaa390bb2016-06-17 10:06:56 +0100333 struct rb_node service_node; /* Node in peer->service_conns */
David Howells999b69f2016-06-17 15:42:35 +0100334 };
David Howells4d028b22016-08-24 07:30:52 +0100335 struct list_head proc_link; /* link in procfs list */
David Howells17926a72007-04-26 15:48:28 -0700336 struct list_head link; /* link in master connection list */
David Howells17926a72007-04-26 15:48:28 -0700337 struct sk_buff_head rx_queue; /* received conn-level packets */
David Howells648af7f2016-04-07 17:23:51 +0100338 const struct rxrpc_security *security; /* applied security module */
David Howells17926a72007-04-26 15:48:28 -0700339 struct key *server_key; /* security for this service */
Herbert Xu1afe5932016-01-24 21:19:01 +0800340 struct crypto_skcipher *cipher; /* encryption handle */
David Howells17926a72007-04-26 15:48:28 -0700341 struct rxrpc_crypt csum_iv; /* packet checksum base */
David Howells4a3388c2016-04-04 14:00:37 +0100342 unsigned long flags;
David Howells17926a72007-04-26 15:48:28 -0700343 unsigned long events;
David Howellsf51b4482016-08-23 15:27:24 +0100344 unsigned long idle_timestamp; /* Time at which last became idle */
David Howells17926a72007-04-26 15:48:28 -0700345 spinlock_t state_lock; /* state-change lock */
David Howells45025bc2016-08-24 07:30:52 +0100346 enum rxrpc_conn_cache_state cache_state : 8;
David Howellsbba304d2016-06-27 10:32:02 +0100347 enum rxrpc_conn_proto_state state : 8; /* current state of connection */
David Howellsdc44b3a2016-04-07 17:23:30 +0100348 u32 local_abort; /* local abort code */
349 u32 remote_abort; /* remote abort code */
David Howells17926a72007-04-26 15:48:28 -0700350 int debug_id; /* debug ID for printks */
David Howells17926a72007-04-26 15:48:28 -0700351 atomic_t serial; /* packet serial number counter */
David Howells563ea7d2016-08-23 15:27:25 +0100352 unsigned int hi_serial; /* highest serial number received */
David Howells17926a72007-04-26 15:48:28 -0700353 u8 size_align; /* data size alignment (for security) */
354 u8 header_size; /* rxrpc + security header size */
355 u8 security_size; /* security header size */
David Howells17926a72007-04-26 15:48:28 -0700356 u32 security_nonce; /* response re-use preventer */
David Howells17926a72007-04-26 15:48:28 -0700357 u8 security_ix; /* security type */
David Howells17926a72007-04-26 15:48:28 -0700358 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
359};
360
361/*
David Howells5b8848d2016-03-04 15:53:46 +0000362 * Flags in call->flags.
363 */
364enum rxrpc_call_flag {
365 RXRPC_CALL_RELEASED, /* call has been released - no more message to userspace */
366 RXRPC_CALL_TERMINAL_MSG, /* call has given the socket its final message */
367 RXRPC_CALL_RCVD_LAST, /* all packets received */
368 RXRPC_CALL_RUN_RTIMER, /* Tx resend timer started */
369 RXRPC_CALL_TX_SOFT_ACK, /* sent some soft ACKs */
David Howells5b8848d2016-03-04 15:53:46 +0000370 RXRPC_CALL_INIT_ACCEPT, /* acceptance was initiated */
371 RXRPC_CALL_HAS_USERID, /* has a user ID attached */
372 RXRPC_CALL_EXPECT_OOS, /* expect out of sequence packets */
David Howellsdabe5a72016-08-23 15:27:24 +0100373 RXRPC_CALL_IS_SERVICE, /* Call is service call */
David Howells45025bc2016-08-24 07:30:52 +0100374 RXRPC_CALL_EXPOSED, /* The call was exposed to the world */
David Howellsd0016482016-08-30 20:42:14 +0100375 RXRPC_CALL_RX_NO_MORE, /* Don't indicate MSG_MORE from recvmsg() */
David Howells5b8848d2016-03-04 15:53:46 +0000376};
377
378/*
379 * Events that can be raised on a call.
380 */
381enum rxrpc_call_event {
David Howells4c198ad2016-03-04 15:53:46 +0000382 RXRPC_CALL_EV_RCVD_ACKALL, /* ACKALL or reply received */
383 RXRPC_CALL_EV_RCVD_BUSY, /* busy packet received */
384 RXRPC_CALL_EV_RCVD_ABORT, /* abort packet received */
385 RXRPC_CALL_EV_RCVD_ERROR, /* network error received */
386 RXRPC_CALL_EV_ACK_FINAL, /* need to generate final ACK (and release call) */
387 RXRPC_CALL_EV_ACK, /* need to generate ACK */
388 RXRPC_CALL_EV_REJECT_BUSY, /* need to generate busy message */
389 RXRPC_CALL_EV_ABORT, /* need to generate abort */
390 RXRPC_CALL_EV_CONN_ABORT, /* local connection abort generated */
391 RXRPC_CALL_EV_RESEND_TIMER, /* Tx resend timer expired */
392 RXRPC_CALL_EV_RESEND, /* Tx resend required */
393 RXRPC_CALL_EV_DRAIN_RX_OOS, /* drain the Rx out of sequence queue */
394 RXRPC_CALL_EV_LIFE_TIMER, /* call's lifetimer ran out */
395 RXRPC_CALL_EV_ACCEPTED, /* incoming call accepted by userspace app */
396 RXRPC_CALL_EV_SECURED, /* incoming call's connection is now secure */
397 RXRPC_CALL_EV_POST_ACCEPT, /* need to post an "accept?" message to the app */
David Howells5b8848d2016-03-04 15:53:46 +0000398};
399
400/*
401 * The states that a call can be in.
402 */
403enum rxrpc_call_state {
David Howells999b69f2016-06-17 15:42:35 +0100404 RXRPC_CALL_UNINITIALISED,
405 RXRPC_CALL_CLIENT_AWAIT_CONN, /* - client waiting for connection to become available */
David Howells5b8848d2016-03-04 15:53:46 +0000406 RXRPC_CALL_CLIENT_SEND_REQUEST, /* - client sending request phase */
407 RXRPC_CALL_CLIENT_AWAIT_REPLY, /* - client awaiting reply */
408 RXRPC_CALL_CLIENT_RECV_REPLY, /* - client receiving reply phase */
409 RXRPC_CALL_CLIENT_FINAL_ACK, /* - client sending final ACK phase */
410 RXRPC_CALL_SERVER_SECURING, /* - server securing request connection */
411 RXRPC_CALL_SERVER_ACCEPTING, /* - server accepting request */
412 RXRPC_CALL_SERVER_RECV_REQUEST, /* - server receiving request */
413 RXRPC_CALL_SERVER_ACK_REQUEST, /* - server pending ACK of request */
414 RXRPC_CALL_SERVER_SEND_REPLY, /* - server sending reply */
415 RXRPC_CALL_SERVER_AWAIT_ACK, /* - server awaiting final ACK */
David Howellsf5c17aa2016-08-30 09:49:28 +0100416 RXRPC_CALL_COMPLETE, /* - call complete */
David Howellsf5c17aa2016-08-30 09:49:28 +0100417 NR__RXRPC_CALL_STATES
418};
419
420/*
421 * Call completion condition (state == RXRPC_CALL_COMPLETE).
422 */
423enum rxrpc_call_completion {
424 RXRPC_CALL_SUCCEEDED, /* - Normal termination */
David Howells5b8848d2016-03-04 15:53:46 +0000425 RXRPC_CALL_SERVER_BUSY, /* - call rejected by busy server */
426 RXRPC_CALL_REMOTELY_ABORTED, /* - call aborted by peer */
427 RXRPC_CALL_LOCALLY_ABORTED, /* - call aborted locally on error or close */
David Howellsf5c17aa2016-08-30 09:49:28 +0100428 RXRPC_CALL_LOCAL_ERROR, /* - call failed due to local error */
David Howells5b8848d2016-03-04 15:53:46 +0000429 RXRPC_CALL_NETWORK_ERROR, /* - call terminated by network error */
David Howellsf5c17aa2016-08-30 09:49:28 +0100430 NR__RXRPC_CALL_COMPLETIONS
David Howells5b8848d2016-03-04 15:53:46 +0000431};
432
433/*
David Howells17926a72007-04-26 15:48:28 -0700434 * RxRPC call definition
435 * - matched by { connection, call_id }
436 */
437struct rxrpc_call {
David Howellsdee46362016-06-27 17:11:19 +0100438 struct rcu_head rcu;
David Howells17926a72007-04-26 15:48:28 -0700439 struct rxrpc_connection *conn; /* connection carrying call */
David Howellsdf5d8bf2016-08-24 14:31:43 +0100440 struct rxrpc_peer *peer; /* Peer record for remote address */
David Howells8d94aa32016-09-07 09:19:31 +0100441 struct rxrpc_sock __rcu *socket; /* socket responsible */
David Howells17926a72007-04-26 15:48:28 -0700442 struct timer_list lifetimer; /* lifetime remaining on call */
David Howells17926a72007-04-26 15:48:28 -0700443 struct timer_list ack_timer; /* ACK generation timer */
444 struct timer_list resend_timer; /* Tx resend timer */
David Howells17926a72007-04-26 15:48:28 -0700445 struct work_struct processor; /* packet processor and ACK generator */
David Howellsd0016482016-08-30 20:42:14 +0100446 rxrpc_notify_rx_t notify_rx; /* kernel service Rx notification function */
David Howells17926a72007-04-26 15:48:28 -0700447 struct list_head link; /* link in master call list */
David Howells45025bc2016-08-24 07:30:52 +0100448 struct list_head chan_wait_link; /* Link in conn->waiting_calls */
David Howellsf66d7492016-04-04 14:00:34 +0100449 struct hlist_node error_link; /* link in error distribution list */
David Howells17926a72007-04-26 15:48:28 -0700450 struct list_head accept_link; /* calls awaiting acceptance */
451 struct rb_node sock_node; /* node in socket call tree */
David Howells17926a72007-04-26 15:48:28 -0700452 struct sk_buff_head rx_queue; /* received packets */
453 struct sk_buff_head rx_oos_queue; /* packets received out of sequence */
David Howellsd0016482016-08-30 20:42:14 +0100454 struct sk_buff_head knlrecv_queue; /* Queue for kernel_recv [TODO: replace this] */
David Howells17926a72007-04-26 15:48:28 -0700455 struct sk_buff *tx_pending; /* Tx socket buffer being filled */
David Howells45025bc2016-08-24 07:30:52 +0100456 wait_queue_head_t waitq; /* Wait queue for channel or Tx */
Herbert Xua2636292016-06-26 14:55:24 -0700457 __be32 crypto_buf[2]; /* Temporary packet crypto buffer */
David Howells17926a72007-04-26 15:48:28 -0700458 unsigned long user_call_ID; /* user-defined call ID */
459 unsigned long creation_jif; /* time of call creation */
460 unsigned long flags;
David Howells17926a72007-04-26 15:48:28 -0700461 unsigned long events;
David Howells17926a72007-04-26 15:48:28 -0700462 spinlock_t lock;
463 rwlock_t state_lock; /* lock for state transition */
David Howellsf5c17aa2016-08-30 09:49:28 +0100464 u32 abort_code; /* Local/remote abort code */
465 int error; /* Local error incurred */
466 enum rxrpc_call_state state : 8; /* current state of call */
467 enum rxrpc_call_completion completion : 8; /* Call completion condition */
David Howells17926a72007-04-26 15:48:28 -0700468 atomic_t usage;
David Howells372ee162016-08-03 14:11:40 +0100469 atomic_t skb_count; /* Outstanding packets on this call */
David Howells17926a72007-04-26 15:48:28 -0700470 atomic_t sequence; /* Tx data packet sequence counter */
David Howellsdabe5a72016-08-23 15:27:24 +0100471 u16 service_id; /* service ID */
David Howells278ac0c2016-09-07 15:19:25 +0100472 u8 security_ix; /* Security type */
David Howellsdabe5a72016-08-23 15:27:24 +0100473 u32 call_id; /* call ID on connection */
474 u32 cid; /* connection ID plus channel index */
475 int debug_id; /* debug ID for printks */
David Howells17926a72007-04-26 15:48:28 -0700476
477 /* transmission-phase ACK management */
David Howells4e36a952009-09-16 00:01:13 -0700478 u8 acks_head; /* offset into window of first entry */
479 u8 acks_tail; /* offset into window of last entry */
480 u8 acks_winsz; /* size of un-ACK'd window */
481 u8 acks_unacked; /* lowest unacked packet in last ACK received */
David Howells17926a72007-04-26 15:48:28 -0700482 int acks_latest; /* serial number of latest ACK received */
483 rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */
484 unsigned long *acks_window; /* sent packet window
485 * - elements are pointers with LSB set if ACK'd
486 */
487
488 /* receive-phase ACK management */
489 rxrpc_seq_t rx_data_expect; /* next data seq ID expected to be received */
490 rxrpc_seq_t rx_data_post; /* next data seq ID expected to be posted */
491 rxrpc_seq_t rx_data_recv; /* last data seq ID encountered by recvmsg */
492 rxrpc_seq_t rx_data_eaten; /* last data seq ID consumed by recvmsg */
493 rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */
494 rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */
David Howells0d12f8a2016-03-04 15:53:46 +0000495 rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */
David Howells4e36a952009-09-16 00:01:13 -0700496 u8 ackr_reason; /* reason to ACK */
David Howells563ea7d2016-08-23 15:27:25 +0100497 u16 ackr_skew; /* skew on packet being ACK'd */
David Howells0d12f8a2016-03-04 15:53:46 +0000498 rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */
David Howells17926a72007-04-26 15:48:28 -0700499 atomic_t ackr_not_idle; /* number of packets in Rx queue */
500
501 /* received packet records, 1 bit per record */
502#define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG)
503 unsigned long ackr_window[RXRPC_ACKR_WINDOW_ASZ + 1];
David Howells17926a72007-04-26 15:48:28 -0700504};
505
David Howellsfff72422016-09-07 14:34:21 +0100506enum rxrpc_call_trace {
507 rxrpc_call_new_client,
508 rxrpc_call_new_service,
509 rxrpc_call_queued,
510 rxrpc_call_queued_ref,
511 rxrpc_call_seen,
512 rxrpc_call_got,
513 rxrpc_call_got_skb,
514 rxrpc_call_got_userid,
515 rxrpc_call_put,
516 rxrpc_call_put_skb,
517 rxrpc_call_put_userid,
518 rxrpc_call_put_noqueue,
519 rxrpc_call__nr_trace
520};
521
522extern const char rxrpc_call_traces[rxrpc_call__nr_trace][4];
523
David Howellsdf844fd2016-08-23 15:27:24 +0100524#include <trace/events/rxrpc.h>
525
David Howells17926a72007-04-26 15:48:28 -0700526/*
David Howells651350d2007-04-26 15:50:17 -0700527 * af_rxrpc.c
David Howells17926a72007-04-26 15:48:28 -0700528 */
David Howells651350d2007-04-26 15:50:17 -0700529extern atomic_t rxrpc_n_skbs;
David Howells0d12f8a2016-03-04 15:53:46 +0000530extern u32 rxrpc_epoch;
David Howells651350d2007-04-26 15:50:17 -0700531extern atomic_t rxrpc_debug_id;
532extern struct workqueue_struct *rxrpc_workqueue;
David Howells17926a72007-04-26 15:48:28 -0700533
534/*
David Howells0d81a512016-06-13 13:30:30 +0100535 * call_accept.c
David Howells17926a72007-04-26 15:48:28 -0700536 */
David Howells4f95dd72016-04-04 14:00:35 +0100537void rxrpc_accept_incoming_calls(struct rxrpc_local *);
David Howellsd0016482016-08-30 20:42:14 +0100538struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long,
539 rxrpc_notify_rx_t);
Joe Perchesc1b12032013-10-18 13:48:25 -0700540int rxrpc_reject_call(struct rxrpc_sock *);
David Howells17926a72007-04-26 15:48:28 -0700541
542/*
David Howells0d81a512016-06-13 13:30:30 +0100543 * call_event.c
David Howells17926a72007-04-26 15:48:28 -0700544 */
David Howells563ea7d2016-08-23 15:27:25 +0100545void __rxrpc_propose_ACK(struct rxrpc_call *, u8, u16, u32, bool);
546void rxrpc_propose_ACK(struct rxrpc_call *, u8, u16, u32, bool);
Joe Perchesc1b12032013-10-18 13:48:25 -0700547void rxrpc_process_call(struct work_struct *);
David Howells17926a72007-04-26 15:48:28 -0700548
549/*
David Howells0d81a512016-06-13 13:30:30 +0100550 * call_object.c
David Howells17926a72007-04-26 15:48:28 -0700551 */
David Howellsf5c17aa2016-08-30 09:49:28 +0100552extern const char *const rxrpc_call_states[];
553extern const char *const rxrpc_call_completions[];
David Howellsdad8aff2016-03-09 23:22:56 +0000554extern unsigned int rxrpc_max_call_lifetime;
David Howells17926a72007-04-26 15:48:28 -0700555extern struct kmem_cache *rxrpc_call_jar;
556extern struct list_head rxrpc_calls;
557extern rwlock_t rxrpc_call_lock;
558
David Howells2341e072016-06-09 23:02:51 +0100559struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
560struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
David Howells19ffa012016-04-04 14:00:36 +0100561 struct rxrpc_conn_parameters *,
David Howells999b69f2016-06-17 15:42:35 +0100562 struct sockaddr_rxrpc *,
David Howells2341e072016-06-09 23:02:51 +0100563 unsigned long, gfp_t);
Joe Perchesc1b12032013-10-18 13:48:25 -0700564struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *,
565 struct rxrpc_connection *,
David Howells42886ff2016-06-16 13:31:07 +0100566 struct sk_buff *);
David Howells8d94aa32016-09-07 09:19:31 +0100567void rxrpc_release_call(struct rxrpc_sock *, struct rxrpc_call *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700568void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
David Howells8d94aa32016-09-07 09:19:31 +0100569bool __rxrpc_queue_call(struct rxrpc_call *);
570bool rxrpc_queue_call(struct rxrpc_call *);
David Howellse34d4232016-08-30 09:49:29 +0100571void rxrpc_see_call(struct rxrpc_call *);
David Howellsfff72422016-09-07 14:34:21 +0100572void rxrpc_get_call(struct rxrpc_call *, enum rxrpc_call_trace);
573void rxrpc_put_call(struct rxrpc_call *, enum rxrpc_call_trace);
David Howellse34d4232016-08-30 09:49:29 +0100574void rxrpc_get_call_for_skb(struct rxrpc_call *, struct sk_buff *);
575void rxrpc_put_call_for_skb(struct rxrpc_call *, struct sk_buff *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700576void __exit rxrpc_destroy_all_calls(void);
David Howells17926a72007-04-26 15:48:28 -0700577
David Howellsdabe5a72016-08-23 15:27:24 +0100578static inline bool rxrpc_is_service_call(const struct rxrpc_call *call)
579{
580 return test_bit(RXRPC_CALL_IS_SERVICE, &call->flags);
581}
582
583static inline bool rxrpc_is_client_call(const struct rxrpc_call *call)
584{
585 return !rxrpc_is_service_call(call);
586}
587
David Howells17926a72007-04-26 15:48:28 -0700588/*
David Howellsf5c17aa2016-08-30 09:49:28 +0100589 * Transition a call to the complete state.
590 */
591static inline bool __rxrpc_set_call_completion(struct rxrpc_call *call,
592 enum rxrpc_call_completion compl,
593 u32 abort_code,
594 int error)
595{
596 if (call->state < RXRPC_CALL_COMPLETE) {
597 call->abort_code = abort_code;
598 call->error = error;
599 call->completion = compl,
600 call->state = RXRPC_CALL_COMPLETE;
601 return true;
602 }
603 return false;
604}
605
606static inline bool rxrpc_set_call_completion(struct rxrpc_call *call,
607 enum rxrpc_call_completion compl,
608 u32 abort_code,
609 int error)
610{
611 int ret;
612
613 write_lock_bh(&call->state_lock);
614 ret = __rxrpc_set_call_completion(call, compl, abort_code, error);
615 write_unlock_bh(&call->state_lock);
616 return ret;
617}
618
619/*
620 * Record that a call successfully completed.
621 */
622static inline void __rxrpc_call_completed(struct rxrpc_call *call)
623{
624 __rxrpc_set_call_completion(call, RXRPC_CALL_SUCCEEDED, 0, 0);
625}
626
627static inline void rxrpc_call_completed(struct rxrpc_call *call)
628{
629 write_lock_bh(&call->state_lock);
630 __rxrpc_call_completed(call);
631 write_unlock_bh(&call->state_lock);
632}
633
634/*
635 * Record that a call is locally aborted.
636 */
637static inline bool __rxrpc_abort_call(struct rxrpc_call *call,
638 u32 abort_code, int error)
639{
640 if (__rxrpc_set_call_completion(call,
641 RXRPC_CALL_LOCALLY_ABORTED,
642 abort_code, error)) {
643 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
644 return true;
645 }
646 return false;
647}
648
649static inline bool rxrpc_abort_call(struct rxrpc_call *call,
650 u32 abort_code, int error)
651{
652 bool ret;
653
654 write_lock_bh(&call->state_lock);
655 ret = __rxrpc_abort_call(call, abort_code, error);
656 write_unlock_bh(&call->state_lock);
657 return ret;
658}
659
660/*
David Howells4a3388c2016-04-04 14:00:37 +0100661 * conn_client.c
662 */
David Howells45025bc2016-08-24 07:30:52 +0100663extern unsigned int rxrpc_max_client_connections;
664extern unsigned int rxrpc_reap_client_connections;
665extern unsigned int rxrpc_conn_idle_client_expiry;
666extern unsigned int rxrpc_conn_idle_client_fast_expiry;
David Howells4a3388c2016-04-04 14:00:37 +0100667extern struct idr rxrpc_client_conn_ids;
668
David Howellseb9b9d22016-06-27 10:32:02 +0100669void rxrpc_destroy_client_conn_ids(void);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100670int rxrpc_connect_call(struct rxrpc_call *, struct rxrpc_conn_parameters *,
671 struct sockaddr_rxrpc *, gfp_t);
David Howells45025bc2016-08-24 07:30:52 +0100672void rxrpc_expose_client_call(struct rxrpc_call *);
673void rxrpc_disconnect_client_call(struct rxrpc_call *);
674void rxrpc_put_client_conn(struct rxrpc_connection *);
675void __exit rxrpc_destroy_all_client_connections(void);
David Howells4a3388c2016-04-04 14:00:37 +0100676
677/*
David Howells0d81a512016-06-13 13:30:30 +0100678 * conn_event.c
679 */
680void rxrpc_process_connection(struct work_struct *);
681void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *);
David Howells4f95dd72016-04-04 14:00:35 +0100682void rxrpc_reject_packets(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100683
684/*
685 * conn_object.c
David Howells17926a72007-04-26 15:48:28 -0700686 */
David Howellsdad8aff2016-03-09 23:22:56 +0000687extern unsigned int rxrpc_connection_expiry;
David Howells17926a72007-04-26 15:48:28 -0700688extern struct list_head rxrpc_connections;
David Howells4d028b22016-08-24 07:30:52 +0100689extern struct list_head rxrpc_connection_proc_list;
David Howells17926a72007-04-26 15:48:28 -0700690extern rwlock_t rxrpc_connection_lock;
691
David Howells8496af52016-07-01 07:51:50 +0100692int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100693struct rxrpc_connection *rxrpc_alloc_connection(gfp_t);
David Howells8496af52016-07-01 07:51:50 +0100694struct rxrpc_connection *rxrpc_find_connection_rcu(struct rxrpc_local *,
695 struct sk_buff *);
David Howells45025bc2016-08-24 07:30:52 +0100696void __rxrpc_disconnect_call(struct rxrpc_connection *, struct rxrpc_call *);
David Howells999b69f2016-06-17 15:42:35 +0100697void rxrpc_disconnect_call(struct rxrpc_call *);
David Howells45025bc2016-08-24 07:30:52 +0100698void rxrpc_kill_connection(struct rxrpc_connection *);
David Howellsf51b4482016-08-23 15:27:24 +0100699void __rxrpc_put_connection(struct rxrpc_connection *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700700void __exit rxrpc_destroy_all_connections(void);
David Howells17926a72007-04-26 15:48:28 -0700701
David Howells19ffa012016-04-04 14:00:36 +0100702static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
703{
704 return conn->out_clientflag;
705}
706
707static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
708{
David Howellse8d70ce2016-06-30 12:16:21 +0100709 return !rxrpc_conn_is_client(conn);
David Howells19ffa012016-04-04 14:00:36 +0100710}
711
David Howells5627cc82016-04-04 14:00:38 +0100712static inline void rxrpc_get_connection(struct rxrpc_connection *conn)
713{
714 atomic_inc(&conn->usage);
715}
716
David Howells2c4579e2016-06-27 10:32:03 +0100717static inline
718struct rxrpc_connection *rxrpc_get_connection_maybe(struct rxrpc_connection *conn)
719{
720 return atomic_inc_not_zero(&conn->usage) ? conn : NULL;
721}
David Howells5acbee42016-06-27 10:32:02 +0100722
David Howellsf51b4482016-08-23 15:27:24 +0100723static inline void rxrpc_put_connection(struct rxrpc_connection *conn)
724{
David Howells45025bc2016-08-24 07:30:52 +0100725 if (!conn)
726 return;
727
728 if (rxrpc_conn_is_client(conn)) {
729 if (atomic_dec_and_test(&conn->usage))
730 rxrpc_put_client_conn(conn);
731 } else {
732 if (atomic_dec_return(&conn->usage) == 1)
733 __rxrpc_put_connection(conn);
734 }
David Howellsf51b4482016-08-23 15:27:24 +0100735}
736
David Howells8496af52016-07-01 07:51:50 +0100737static inline bool rxrpc_queue_conn(struct rxrpc_connection *conn)
David Howells5acbee42016-06-27 10:32:02 +0100738{
David Howells8496af52016-07-01 07:51:50 +0100739 if (!rxrpc_get_connection_maybe(conn))
740 return false;
741 if (!rxrpc_queue_work(&conn->processor))
David Howells2c4579e2016-06-27 10:32:03 +0100742 rxrpc_put_connection(conn);
David Howells8496af52016-07-01 07:51:50 +0100743 return true;
David Howells5acbee42016-06-27 10:32:02 +0100744}
745
David Howells17926a72007-04-26 15:48:28 -0700746/*
David Howells7877a4a2016-04-04 14:00:40 +0100747 * conn_service.c
748 */
David Howells8496af52016-07-01 07:51:50 +0100749struct rxrpc_connection *rxrpc_find_service_conn_rcu(struct rxrpc_peer *,
750 struct sk_buff *);
David Howells7877a4a2016-04-04 14:00:40 +0100751struct rxrpc_connection *rxrpc_incoming_connection(struct rxrpc_local *,
David Howellsd991b4a2016-06-29 14:40:39 +0100752 struct sockaddr_rxrpc *,
David Howells7877a4a2016-04-04 14:00:40 +0100753 struct sk_buff *);
David Howells001c1122016-06-30 10:45:22 +0100754void rxrpc_unpublish_service_conn(struct rxrpc_connection *);
David Howells7877a4a2016-04-04 14:00:40 +0100755
756/*
David Howells0d81a512016-06-13 13:30:30 +0100757 * input.c
David Howells17926a72007-04-26 15:48:28 -0700758 */
David S. Miller676d2362014-04-11 16:15:36 -0400759void rxrpc_data_ready(struct sock *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700760int rxrpc_queue_rcv_skb(struct rxrpc_call *, struct sk_buff *, bool, bool);
761void rxrpc_fast_process_packet(struct rxrpc_call *, struct sk_buff *);
David Howells17926a72007-04-26 15:48:28 -0700762
763/*
David Howells0d81a512016-06-13 13:30:30 +0100764 * insecure.c
David Howells17926a72007-04-26 15:48:28 -0700765 */
David Howells0d81a512016-06-13 13:30:30 +0100766extern const struct rxrpc_security rxrpc_no_security;
David Howells17926a72007-04-26 15:48:28 -0700767
768/*
David Howells0d81a512016-06-13 13:30:30 +0100769 * key.c
David Howells17926a72007-04-26 15:48:28 -0700770 */
771extern struct key_type key_type_rxrpc;
772extern struct key_type key_type_rxrpc_s;
773
Joe Perchesc1b12032013-10-18 13:48:25 -0700774int rxrpc_request_key(struct rxrpc_sock *, char __user *, int);
775int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int);
776int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time_t,
777 u32);
David Howells17926a72007-04-26 15:48:28 -0700778
779/*
David Howells87563612016-04-04 14:00:34 +0100780 * local_event.c
781 */
David Howells4f95dd72016-04-04 14:00:35 +0100782extern void rxrpc_process_local_events(struct rxrpc_local *);
David Howells87563612016-04-04 14:00:34 +0100783
784/*
David Howells0d81a512016-06-13 13:30:30 +0100785 * local_object.c
David Howells17926a72007-04-26 15:48:28 -0700786 */
David Howells4f95dd72016-04-04 14:00:35 +0100787struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *);
788void __rxrpc_put_local(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100789void __exit rxrpc_destroy_all_locals(void);
David Howellse0e4d822016-04-07 17:23:58 +0100790
David Howells4f95dd72016-04-04 14:00:35 +0100791static inline void rxrpc_get_local(struct rxrpc_local *local)
792{
793 atomic_inc(&local->usage);
794}
795
796static inline
797struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
798{
799 return atomic_inc_not_zero(&local->usage) ? local : NULL;
800}
801
802static inline void rxrpc_put_local(struct rxrpc_local *local)
803{
David Howells5627cc82016-04-04 14:00:38 +0100804 if (local && atomic_dec_and_test(&local->usage))
David Howells4f95dd72016-04-04 14:00:35 +0100805 __rxrpc_put_local(local);
806}
807
David Howells5acbee42016-06-27 10:32:02 +0100808static inline void rxrpc_queue_local(struct rxrpc_local *local)
809{
810 rxrpc_queue_work(&local->processor);
811}
812
David Howellse0e4d822016-04-07 17:23:58 +0100813/*
David Howells8e688d92016-04-07 17:23:16 +0100814 * misc.c
815 */
David Howells0e119b42016-06-10 22:30:37 +0100816extern unsigned int rxrpc_max_backlog __read_mostly;
David Howells8e688d92016-04-07 17:23:16 +0100817extern unsigned int rxrpc_requested_ack_delay;
818extern unsigned int rxrpc_soft_ack_delay;
819extern unsigned int rxrpc_idle_ack_delay;
820extern unsigned int rxrpc_rx_window_size;
821extern unsigned int rxrpc_rx_mtu;
822extern unsigned int rxrpc_rx_jumbo_max;
David Howells0b58b8a2016-09-02 22:39:45 +0100823extern unsigned int rxrpc_resend_timeout;
David Howells8e688d92016-04-07 17:23:16 +0100824
David Howells5b3e87f2016-04-07 17:23:23 +0100825extern const char *const rxrpc_pkts[];
David Howells8e688d92016-04-07 17:23:16 +0100826extern const s8 rxrpc_ack_priority[];
827
828extern const char *rxrpc_acks(u8 reason);
829
830/*
David Howells0d81a512016-06-13 13:30:30 +0100831 * output.c
832 */
David Howells8d94aa32016-09-07 09:19:31 +0100833int rxrpc_send_call_packet(struct rxrpc_call *, u8);
David Howells985a5c82016-06-17 11:53:37 +0100834int rxrpc_send_data_packet(struct rxrpc_connection *, struct sk_buff *);
David Howells0d81a512016-06-13 13:30:30 +0100835
836/*
David Howellsabe89ef2016-04-04 14:00:32 +0100837 * peer_event.c
David Howells0d81a512016-06-13 13:30:30 +0100838 */
David Howellsabe89ef2016-04-04 14:00:32 +0100839void rxrpc_error_report(struct sock *);
David Howellsf66d7492016-04-04 14:00:34 +0100840void rxrpc_peer_error_distributor(struct work_struct *);
David Howells0d81a512016-06-13 13:30:30 +0100841
842/*
843 * peer_object.c
844 */
David Howellsbe6e6702016-04-04 14:00:32 +0100845struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
846 const struct sockaddr_rxrpc *);
847struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_local *,
848 struct sockaddr_rxrpc *, gfp_t);
849struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
850
David Howellsdf5d8bf2016-08-24 14:31:43 +0100851static inline struct rxrpc_peer *rxrpc_get_peer(struct rxrpc_peer *peer)
David Howellsbe6e6702016-04-04 14:00:32 +0100852{
853 atomic_inc(&peer->usage);
David Howellsdf5d8bf2016-08-24 14:31:43 +0100854 return peer;
David Howellsbe6e6702016-04-04 14:00:32 +0100855}
856
857static inline
858struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
859{
860 return atomic_inc_not_zero(&peer->usage) ? peer : NULL;
861}
862
863extern void __rxrpc_put_peer(struct rxrpc_peer *peer);
864static inline void rxrpc_put_peer(struct rxrpc_peer *peer)
865{
David Howells5627cc82016-04-04 14:00:38 +0100866 if (peer && atomic_dec_and_test(&peer->usage))
David Howellsbe6e6702016-04-04 14:00:32 +0100867 __rxrpc_put_peer(peer);
868}
David Howells0d81a512016-06-13 13:30:30 +0100869
870/*
871 * proc.c
872 */
David Howells0d81a512016-06-13 13:30:30 +0100873extern const struct file_operations rxrpc_call_seq_fops;
874extern const struct file_operations rxrpc_connection_seq_fops;
875
876/*
877 * recvmsg.c
878 */
David Howells0d81a512016-06-13 13:30:30 +0100879int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
880
881/*
David Howells648af7f2016-04-07 17:23:51 +0100882 * rxkad.c
883 */
884#ifdef CONFIG_RXKAD
885extern const struct rxrpc_security rxkad;
886#endif
887
888/*
David Howells0d81a512016-06-13 13:30:30 +0100889 * security.c
890 */
891int __init rxrpc_init_security(void);
892void rxrpc_exit_security(void);
893int rxrpc_init_client_conn_security(struct rxrpc_connection *);
894int rxrpc_init_server_conn_security(struct rxrpc_connection *);
David Howells71a17de2016-09-07 14:43:39 +0100895
David Howells0b58b8a2016-09-02 22:39:45 +0100896/*
897 * sendmsg.c
898 */
899int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
David Howells0d81a512016-06-13 13:30:30 +0100900
901/*
902 * skbuff.c
903 */
David Howellsd0016482016-08-30 20:42:14 +0100904void rxrpc_kernel_data_consumed(struct rxrpc_call *, struct sk_buff *);
David Howells0d81a512016-06-13 13:30:30 +0100905void rxrpc_packet_destructor(struct sk_buff *);
David Howellsdf844fd2016-08-23 15:27:24 +0100906void rxrpc_new_skb(struct sk_buff *);
907void rxrpc_see_skb(struct sk_buff *);
908void rxrpc_get_skb(struct sk_buff *);
909void rxrpc_free_skb(struct sk_buff *);
910void rxrpc_purge_queue(struct sk_buff_head *);
David Howells0d81a512016-06-13 13:30:30 +0100911
912/*
David Howells5873c082014-02-07 18:58:44 +0000913 * sysctl.c
914 */
915#ifdef CONFIG_SYSCTL
916extern int __init rxrpc_sysctl_init(void);
917extern void rxrpc_sysctl_exit(void);
918#else
919static inline int __init rxrpc_sysctl_init(void) { return 0; }
920static inline void rxrpc_sysctl_exit(void) {}
921#endif
922
923/*
David Howellsbe6e6702016-04-04 14:00:32 +0100924 * utils.c
925 */
David Howellsd991b4a2016-06-29 14:40:39 +0100926int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
David Howellsbe6e6702016-04-04 14:00:32 +0100927
928/*
David Howells17926a72007-04-26 15:48:28 -0700929 * debug tracing
930 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000931extern unsigned int rxrpc_debug;
David Howells17926a72007-04-26 15:48:28 -0700932
933#define dbgprintk(FMT,...) \
Sven Schnelle9f389f42008-04-03 10:45:30 +0100934 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700935
Harvey Harrison0dc47872008-03-05 20:47:47 -0800936#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
937#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700938#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
939#define kproto(FMT,...) dbgprintk("### "FMT ,##__VA_ARGS__)
940#define knet(FMT,...) dbgprintk("@@@ "FMT ,##__VA_ARGS__)
941
942
943#if defined(__KDEBUG)
944#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
945#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
946#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
947#define _proto(FMT,...) kproto(FMT,##__VA_ARGS__)
948#define _net(FMT,...) knet(FMT,##__VA_ARGS__)
949
950#elif defined(CONFIG_AF_RXRPC_DEBUG)
951#define RXRPC_DEBUG_KENTER 0x01
952#define RXRPC_DEBUG_KLEAVE 0x02
953#define RXRPC_DEBUG_KDEBUG 0x04
954#define RXRPC_DEBUG_KPROTO 0x08
955#define RXRPC_DEBUG_KNET 0x10
956
957#define _enter(FMT,...) \
958do { \
959 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER)) \
960 kenter(FMT,##__VA_ARGS__); \
961} while (0)
962
963#define _leave(FMT,...) \
964do { \
965 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE)) \
966 kleave(FMT,##__VA_ARGS__); \
967} while (0)
968
969#define _debug(FMT,...) \
970do { \
971 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG)) \
972 kdebug(FMT,##__VA_ARGS__); \
973} while (0)
974
975#define _proto(FMT,...) \
976do { \
977 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO)) \
978 kproto(FMT,##__VA_ARGS__); \
979} while (0)
980
981#define _net(FMT,...) \
982do { \
983 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET)) \
984 knet(FMT,##__VA_ARGS__); \
985} while (0)
986
987#else
David Howells12fdff32010-08-12 16:54:57 +0100988#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
989#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
990#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
991#define _proto(FMT,...) no_printk("### "FMT ,##__VA_ARGS__)
992#define _net(FMT,...) no_printk("@@@ "FMT ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700993#endif
994
995/*
996 * debug assertion checking
997 */
998#if 1 // defined(__KDEBUGALL)
999
1000#define ASSERT(X) \
1001do { \
1002 if (unlikely(!(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -07001003 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -07001004 BUG(); \
1005 } \
David Howellsb4f13422016-03-04 15:56:19 +00001006} while (0)
David Howells17926a72007-04-26 15:48:28 -07001007
1008#define ASSERTCMP(X, OP, Y) \
1009do { \
Joe Perches9b6d5392016-06-02 12:08:52 -07001010 unsigned long _x = (unsigned long)(X); \
1011 unsigned long _y = (unsigned long)(Y); \
1012 if (unlikely(!(_x OP _y))) { \
1013 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1014 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -07001015 BUG(); \
1016 } \
David Howellsb4f13422016-03-04 15:56:19 +00001017} while (0)
David Howells17926a72007-04-26 15:48:28 -07001018
1019#define ASSERTIF(C, X) \
1020do { \
1021 if (unlikely((C) && !(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -07001022 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -07001023 BUG(); \
1024 } \
David Howellsb4f13422016-03-04 15:56:19 +00001025} while (0)
David Howells17926a72007-04-26 15:48:28 -07001026
1027#define ASSERTIFCMP(C, X, OP, Y) \
1028do { \
Joe Perches9b6d5392016-06-02 12:08:52 -07001029 unsigned long _x = (unsigned long)(X); \
1030 unsigned long _y = (unsigned long)(Y); \
1031 if (unlikely((C) && !(_x OP _y))) { \
1032 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1033 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -07001034 BUG(); \
1035 } \
David Howellsb4f13422016-03-04 15:56:19 +00001036} while (0)
David Howells17926a72007-04-26 15:48:28 -07001037
1038#else
1039
1040#define ASSERT(X) \
1041do { \
David Howellsb4f13422016-03-04 15:56:19 +00001042} while (0)
David Howells17926a72007-04-26 15:48:28 -07001043
1044#define ASSERTCMP(X, OP, Y) \
1045do { \
David Howellsb4f13422016-03-04 15:56:19 +00001046} while (0)
David Howells17926a72007-04-26 15:48:28 -07001047
1048#define ASSERTIF(C, X) \
1049do { \
David Howellsb4f13422016-03-04 15:56:19 +00001050} while (0)
David Howells17926a72007-04-26 15:48:28 -07001051
1052#define ASSERTIFCMP(C, X, OP, Y) \
1053do { \
David Howellsb4f13422016-03-04 15:56:19 +00001054} while (0)
David Howells17926a72007-04-26 15:48:28 -07001055
1056#endif /* __KDEBUGALL */