blob: 0c320b2b7b435bd208e5b9134c5c3cb58c5fa7fb [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/*
43 * sk_state for RxRPC sockets
44 */
45enum {
David Howells2341e072016-06-09 23:02:51 +010046 RXRPC_UNBOUND = 0,
47 RXRPC_CLIENT_UNBOUND, /* Unbound socket used as client */
David Howells17926a72007-04-26 15:48:28 -070048 RXRPC_CLIENT_BOUND, /* client local address bound */
David Howells17926a72007-04-26 15:48:28 -070049 RXRPC_SERVER_BOUND, /* server local address bound */
50 RXRPC_SERVER_LISTENING, /* server listening for connections */
51 RXRPC_CLOSE, /* socket is being closed */
52};
53
54/*
55 * RxRPC socket definition
56 */
57struct rxrpc_sock {
58 /* WARNING: sk has to be the first member */
59 struct sock sk;
David Howells651350d2007-04-26 15:50:17 -070060 rxrpc_interceptor_t interceptor; /* kernel service Rx interceptor function */
David Howells17926a72007-04-26 15:48:28 -070061 struct rxrpc_local *local; /* local endpoint */
David Howells17926a72007-04-26 15:48:28 -070062 struct list_head listen_link; /* link in the local endpoint's listen list */
63 struct list_head secureq; /* calls awaiting connection security clearance */
64 struct list_head acceptq; /* calls awaiting acceptance */
65 struct key *key; /* security for this socket */
66 struct key *securities; /* list of server security descriptors */
67 struct rb_root calls; /* outstanding calls on this socket */
68 unsigned long flags;
David Howells2341e072016-06-09 23:02:51 +010069#define RXRPC_SOCK_CONNECTED 0 /* connect_srx is set */
David Howells17926a72007-04-26 15:48:28 -070070 rwlock_t call_lock; /* lock for calls */
71 u32 min_sec_level; /* minimum security level */
72#define RXRPC_SECURITY_MAX RXRPC_SECURITY_ENCRYPT
David Howellscc8feb82016-04-04 14:00:37 +010073 bool exclusive; /* Exclusive connection for a client socket */
74 sa_family_t family; /* Protocol family created with */
David Howells17926a72007-04-26 15:48:28 -070075 struct sockaddr_rxrpc srx; /* local address */
David Howells2341e072016-06-09 23:02:51 +010076 struct sockaddr_rxrpc connect_srx; /* Default client address from connect() */
David Howells17926a72007-04-26 15:48:28 -070077};
78
79#define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk)
80
81/*
David Howells0d12f8a2016-03-04 15:53:46 +000082 * CPU-byteorder normalised Rx packet header.
83 */
84struct rxrpc_host_header {
85 u32 epoch; /* client boot timestamp */
86 u32 cid; /* connection and channel ID */
87 u32 callNumber; /* call ID (0 for connection-level packets) */
88 u32 seq; /* sequence number of pkt in call stream */
89 u32 serial; /* serial number of pkt sent to network */
90 u8 type; /* packet type */
91 u8 flags; /* packet flags */
92 u8 userStatus; /* app-layer defined status */
93 u8 securityIndex; /* security protocol ID */
94 union {
95 u16 _rsvd; /* reserved */
96 u16 cksum; /* kerberos security checksum */
97 };
98 u16 serviceId; /* service ID */
99} __packed;
100
101/*
David Howells17926a72007-04-26 15:48:28 -0700102 * RxRPC socket buffer private variables
103 * - max 48 bytes (struct sk_buff::cb)
104 */
105struct rxrpc_skb_priv {
106 struct rxrpc_call *call; /* call with which associated */
107 unsigned long resend_at; /* time in jiffies at which to resend */
108 union {
Eric Dumazet95c96172012-04-15 05:58:06 +0000109 unsigned int offset; /* offset into buffer of next read */
David Howells17926a72007-04-26 15:48:28 -0700110 int remain; /* amount of space remaining for next write */
111 u32 error; /* network error code */
112 bool need_resend; /* T if needs resending */
113 };
114
David Howells0d12f8a2016-03-04 15:53:46 +0000115 struct rxrpc_host_header hdr; /* RxRPC packet header from this packet */
David Howells17926a72007-04-26 15:48:28 -0700116};
117
118#define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb)
119
David Howells17926a72007-04-26 15:48:28 -0700120enum rxrpc_command {
121 RXRPC_CMD_SEND_DATA, /* send data message */
122 RXRPC_CMD_SEND_ABORT, /* request abort generation */
123 RXRPC_CMD_ACCEPT, /* [server] accept incoming call */
124 RXRPC_CMD_REJECT_BUSY, /* [server] reject a call as busy */
125};
126
127/*
128 * RxRPC security module interface
129 */
130struct rxrpc_security {
David Howells17926a72007-04-26 15:48:28 -0700131 const char *name; /* name of this service */
132 u8 security_index; /* security type provided */
133
David Howells648af7f2016-04-07 17:23:51 +0100134 /* Initialise a security service */
135 int (*init)(void);
136
137 /* Clean up a security service */
138 void (*exit)(void);
139
David Howells17926a72007-04-26 15:48:28 -0700140 /* initialise a connection's security */
141 int (*init_connection_security)(struct rxrpc_connection *);
142
143 /* prime a connection's packet security */
Herbert Xua2636292016-06-26 14:55:24 -0700144 int (*prime_packet_security)(struct rxrpc_connection *);
David Howells17926a72007-04-26 15:48:28 -0700145
146 /* impose security on a packet */
Herbert Xua2636292016-06-26 14:55:24 -0700147 int (*secure_packet)(struct rxrpc_call *,
David Howells17926a72007-04-26 15:48:28 -0700148 struct sk_buff *,
149 size_t,
150 void *);
151
152 /* verify the security on a received packet */
Herbert Xua2636292016-06-26 14:55:24 -0700153 int (*verify_packet)(struct rxrpc_call *, struct sk_buff *, u32 *);
David Howells17926a72007-04-26 15:48:28 -0700154
155 /* issue a challenge */
156 int (*issue_challenge)(struct rxrpc_connection *);
157
158 /* respond to a challenge */
159 int (*respond_to_challenge)(struct rxrpc_connection *,
160 struct sk_buff *,
161 u32 *);
162
163 /* verify a response */
164 int (*verify_response)(struct rxrpc_connection *,
165 struct sk_buff *,
166 u32 *);
167
168 /* clear connection security */
169 void (*clear)(struct rxrpc_connection *);
170};
171
172/*
David Howells4f95dd72016-04-04 14:00:35 +0100173 * RxRPC local transport endpoint description
174 * - owned by a single AF_RXRPC socket
175 * - pointed to by transport socket struct sk_user_data
David Howells17926a72007-04-26 15:48:28 -0700176 */
177struct rxrpc_local {
David Howells4f95dd72016-04-04 14:00:35 +0100178 struct rcu_head rcu;
179 atomic_t usage;
180 struct list_head link;
David Howells17926a72007-04-26 15:48:28 -0700181 struct socket *socket; /* my UDP socket */
David Howells4f95dd72016-04-04 14:00:35 +0100182 struct work_struct processor;
David Howells17926a72007-04-26 15:48:28 -0700183 struct list_head services; /* services listening on this endpoint */
David Howells17926a72007-04-26 15:48:28 -0700184 struct rw_semaphore defrag_sem; /* control re-enablement of IP DF bit */
185 struct sk_buff_head accept_queue; /* incoming calls awaiting acceptance */
186 struct sk_buff_head reject_queue; /* packets awaiting rejection */
David Howells44ba0692015-04-01 16:31:26 +0100187 struct sk_buff_head event_queue; /* endpoint event packets awaiting processing */
David Howells999b69f2016-06-17 15:42:35 +0100188 struct rb_root client_conns; /* Client connections by socket params */
189 spinlock_t client_conns_lock; /* Lock for client_conns */
David Howells17926a72007-04-26 15:48:28 -0700190 spinlock_t lock; /* access lock */
191 rwlock_t services_lock; /* lock for services list */
David Howells17926a72007-04-26 15:48:28 -0700192 int debug_id; /* debug ID for printks */
David Howells4f95dd72016-04-04 14:00:35 +0100193 bool dead;
David Howells17926a72007-04-26 15:48:28 -0700194 struct sockaddr_rxrpc srx; /* local address */
195};
196
197/*
198 * RxRPC remote transport endpoint definition
David Howellsbe6e6702016-04-04 14:00:32 +0100199 * - matched by local endpoint, remote port, address and protocol type
David Howells17926a72007-04-26 15:48:28 -0700200 */
201struct rxrpc_peer {
David Howellsbe6e6702016-04-04 14:00:32 +0100202 struct rcu_head rcu; /* This must be first */
203 atomic_t usage;
204 unsigned long hash_key;
205 struct hlist_node hash_link;
206 struct rxrpc_local *local;
David Howellsf66d7492016-04-04 14:00:34 +0100207 struct hlist_head error_targets; /* targets for net error distribution */
208 struct work_struct error_distributor;
David Howellsaa390bb2016-06-17 10:06:56 +0100209 struct rb_root service_conns; /* Service connections */
David Howells8496af52016-07-01 07:51:50 +0100210 seqlock_t service_conn_lock;
David Howells17926a72007-04-26 15:48:28 -0700211 spinlock_t lock; /* access lock */
Eric Dumazet95c96172012-04-15 05:58:06 +0000212 unsigned int if_mtu; /* interface MTU for this peer */
213 unsigned int mtu; /* network MTU for this peer */
214 unsigned int maxdata; /* data size (MTU - hdrsize) */
David Howells17926a72007-04-26 15:48:28 -0700215 unsigned short hdrsize; /* header size (IP + UDP + RxRPC) */
216 int debug_id; /* debug ID for printks */
David Howellsf66d7492016-04-04 14:00:34 +0100217 int error_report; /* Net (+0) or local (+1000000) to distribute */
218#define RXRPC_LOCAL_ERROR_OFFSET 1000000
David Howells17926a72007-04-26 15:48:28 -0700219 struct sockaddr_rxrpc srx; /* remote address */
220
221 /* calculated RTT cache */
222#define RXRPC_RTT_CACHE_SIZE 32
223 suseconds_t rtt; /* current RTT estimate (in uS) */
Eric Dumazet95c96172012-04-15 05:58:06 +0000224 unsigned int rtt_point; /* next entry at which to insert */
225 unsigned int rtt_usage; /* amount of cache actually used */
David Howells17926a72007-04-26 15:48:28 -0700226 suseconds_t rtt_cache[RXRPC_RTT_CACHE_SIZE]; /* calculated RTT cache */
227};
228
229/*
David Howells19ffa012016-04-04 14:00:36 +0100230 * Keys for matching a connection.
231 */
232struct rxrpc_conn_proto {
David Howellse8d70ce2016-06-30 12:16:21 +0100233 union {
234 struct {
235 u32 epoch; /* epoch of this connection */
236 u32 cid; /* connection ID */
237 };
238 u64 index_key;
David Howells19ffa012016-04-04 14:00:36 +0100239 };
240};
241
242struct rxrpc_conn_parameters {
243 struct rxrpc_local *local; /* Representation of local endpoint */
244 struct rxrpc_peer *peer; /* Remote endpoint */
245 struct key *key; /* Security details */
246 bool exclusive; /* T if conn is exclusive */
247 u16 service_id; /* Service ID for this connection */
248 u32 security_level; /* Security level selected */
249};
250
251/*
David Howellsbba304d2016-06-27 10:32:02 +0100252 * Bits in the connection flags.
253 */
254enum rxrpc_conn_flag {
255 RXRPC_CONN_HAS_IDR, /* Has a client conn ID assigned */
David Howells001c1122016-06-30 10:45:22 +0100256 RXRPC_CONN_IN_SERVICE_CONNS, /* Conn is in peer->service_conns */
257 RXRPC_CONN_IN_CLIENT_CONNS, /* Conn is in local->client_conns */
David Howells45025bc2016-08-24 07:30:52 +0100258 RXRPC_CONN_EXPOSED, /* Conn has extra ref for exposure */
259 RXRPC_CONN_DONT_REUSE, /* Don't reuse this connection */
260 RXRPC_CONN_COUNTED, /* Counted by rxrpc_nr_client_conns */
David Howellsbba304d2016-06-27 10:32:02 +0100261};
262
263/*
264 * Events that can be raised upon a connection.
265 */
266enum rxrpc_conn_event {
267 RXRPC_CONN_EV_CHALLENGE, /* Send challenge packet */
268};
269
270/*
David Howells45025bc2016-08-24 07:30:52 +0100271 * The connection cache state.
272 */
273enum rxrpc_conn_cache_state {
274 RXRPC_CONN_CLIENT_INACTIVE, /* Conn is not yet listed */
275 RXRPC_CONN_CLIENT_WAITING, /* Conn is on wait list, waiting for capacity */
276 RXRPC_CONN_CLIENT_ACTIVE, /* Conn is on active list, doing calls */
277 RXRPC_CONN_CLIENT_CULLED, /* Conn is culled and delisted, doing calls */
278 RXRPC_CONN_CLIENT_IDLE, /* Conn is on idle list, doing mostly nothing */
279};
280
281/*
David Howellsbba304d2016-06-27 10:32:02 +0100282 * The connection protocol state.
283 */
284enum rxrpc_conn_proto_state {
285 RXRPC_CONN_UNUSED, /* Connection not yet attempted */
286 RXRPC_CONN_CLIENT, /* Client connection */
287 RXRPC_CONN_SERVICE_UNSECURED, /* Service unsecured connection */
288 RXRPC_CONN_SERVICE_CHALLENGING, /* Service challenging for security */
289 RXRPC_CONN_SERVICE, /* Service secured connection */
290 RXRPC_CONN_REMOTELY_ABORTED, /* Conn aborted by peer */
291 RXRPC_CONN_LOCALLY_ABORTED, /* Conn aborted locally */
David Howellsbba304d2016-06-27 10:32:02 +0100292 RXRPC_CONN__NR_STATES
293};
294
295/*
David Howells17926a72007-04-26 15:48:28 -0700296 * RxRPC connection definition
David Howellsaa390bb2016-06-17 10:06:56 +0100297 * - matched by { local, peer, epoch, conn_id, direction }
David Howells17926a72007-04-26 15:48:28 -0700298 * - each connection can only handle four simultaneous calls
299 */
300struct rxrpc_connection {
David Howells19ffa012016-04-04 14:00:36 +0100301 struct rxrpc_conn_proto proto;
302 struct rxrpc_conn_parameters params;
303
David Howells45025bc2016-08-24 07:30:52 +0100304 atomic_t usage;
305 struct rcu_head rcu;
306 struct list_head cache_link;
David Howellsa1399f82016-06-27 14:39:44 +0100307
David Howells45025bc2016-08-24 07:30:52 +0100308 spinlock_t channel_lock;
309 unsigned char active_chans; /* Mask of active channels */
310#define RXRPC_ACTIVE_CHANS_MASK ((1 << RXRPC_MAXCALLS) - 1)
311 struct list_head waiting_calls; /* Calls waiting for channels */
David Howellsa1399f82016-06-27 14:39:44 +0100312 struct rxrpc_channel {
313 struct rxrpc_call __rcu *call; /* Active call */
314 u32 call_id; /* ID of current call */
315 u32 call_counter; /* Call ID counter */
316 u32 last_call; /* ID of last call */
David Howells18bfeba2016-08-23 15:27:25 +0100317 u8 last_type; /* Type of last packet */
318 u16 last_service_id;
319 union {
320 u32 last_seq;
321 u32 last_abort;
322 };
David Howellsa1399f82016-06-27 14:39:44 +0100323 } channels[RXRPC_MAXCALLS];
David Howells999b69f2016-06-17 15:42:35 +0100324
David Howells17926a72007-04-26 15:48:28 -0700325 struct work_struct processor; /* connection event processor */
David Howells999b69f2016-06-17 15:42:35 +0100326 union {
327 struct rb_node client_node; /* Node in local->client_conns */
David Howellsaa390bb2016-06-17 10:06:56 +0100328 struct rb_node service_node; /* Node in peer->service_conns */
David Howells999b69f2016-06-17 15:42:35 +0100329 };
David Howells4d028b22016-08-24 07:30:52 +0100330 struct list_head proc_link; /* link in procfs list */
David Howells17926a72007-04-26 15:48:28 -0700331 struct list_head link; /* link in master connection list */
David Howells17926a72007-04-26 15:48:28 -0700332 struct sk_buff_head rx_queue; /* received conn-level packets */
David Howells648af7f2016-04-07 17:23:51 +0100333 const struct rxrpc_security *security; /* applied security module */
David Howells17926a72007-04-26 15:48:28 -0700334 struct key *server_key; /* security for this service */
Herbert Xu1afe5932016-01-24 21:19:01 +0800335 struct crypto_skcipher *cipher; /* encryption handle */
David Howells17926a72007-04-26 15:48:28 -0700336 struct rxrpc_crypt csum_iv; /* packet checksum base */
David Howells4a3388c2016-04-04 14:00:37 +0100337 unsigned long flags;
David Howells17926a72007-04-26 15:48:28 -0700338 unsigned long events;
David Howellsf51b4482016-08-23 15:27:24 +0100339 unsigned long idle_timestamp; /* Time at which last became idle */
David Howells17926a72007-04-26 15:48:28 -0700340 spinlock_t state_lock; /* state-change lock */
David Howells45025bc2016-08-24 07:30:52 +0100341 enum rxrpc_conn_cache_state cache_state : 8;
David Howellsbba304d2016-06-27 10:32:02 +0100342 enum rxrpc_conn_proto_state state : 8; /* current state of connection */
David Howellsdc44b3a2016-04-07 17:23:30 +0100343 u32 local_abort; /* local abort code */
344 u32 remote_abort; /* remote abort code */
David Howells17926a72007-04-26 15:48:28 -0700345 int debug_id; /* debug ID for printks */
David Howells17926a72007-04-26 15:48:28 -0700346 atomic_t serial; /* packet serial number counter */
David Howells563ea7d2016-08-23 15:27:25 +0100347 unsigned int hi_serial; /* highest serial number received */
David Howells17926a72007-04-26 15:48:28 -0700348 u8 size_align; /* data size alignment (for security) */
349 u8 header_size; /* rxrpc + security header size */
350 u8 security_size; /* security header size */
David Howells17926a72007-04-26 15:48:28 -0700351 u32 security_nonce; /* response re-use preventer */
David Howells17926a72007-04-26 15:48:28 -0700352 u8 security_ix; /* security type */
David Howells17926a72007-04-26 15:48:28 -0700353 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
354};
355
356/*
David Howells5b8848d2016-03-04 15:53:46 +0000357 * Flags in call->flags.
358 */
359enum rxrpc_call_flag {
360 RXRPC_CALL_RELEASED, /* call has been released - no more message to userspace */
361 RXRPC_CALL_TERMINAL_MSG, /* call has given the socket its final message */
362 RXRPC_CALL_RCVD_LAST, /* all packets received */
363 RXRPC_CALL_RUN_RTIMER, /* Tx resend timer started */
364 RXRPC_CALL_TX_SOFT_ACK, /* sent some soft ACKs */
David Howells5b8848d2016-03-04 15:53:46 +0000365 RXRPC_CALL_INIT_ACCEPT, /* acceptance was initiated */
366 RXRPC_CALL_HAS_USERID, /* has a user ID attached */
367 RXRPC_CALL_EXPECT_OOS, /* expect out of sequence packets */
David Howellsdabe5a72016-08-23 15:27:24 +0100368 RXRPC_CALL_IS_SERVICE, /* Call is service call */
David Howells45025bc2016-08-24 07:30:52 +0100369 RXRPC_CALL_EXPOSED, /* The call was exposed to the world */
David Howells5b8848d2016-03-04 15:53:46 +0000370};
371
372/*
373 * Events that can be raised on a call.
374 */
375enum rxrpc_call_event {
David Howells4c198ad2016-03-04 15:53:46 +0000376 RXRPC_CALL_EV_RCVD_ACKALL, /* ACKALL or reply received */
377 RXRPC_CALL_EV_RCVD_BUSY, /* busy packet received */
378 RXRPC_CALL_EV_RCVD_ABORT, /* abort packet received */
379 RXRPC_CALL_EV_RCVD_ERROR, /* network error received */
380 RXRPC_CALL_EV_ACK_FINAL, /* need to generate final ACK (and release call) */
381 RXRPC_CALL_EV_ACK, /* need to generate ACK */
382 RXRPC_CALL_EV_REJECT_BUSY, /* need to generate busy message */
383 RXRPC_CALL_EV_ABORT, /* need to generate abort */
384 RXRPC_CALL_EV_CONN_ABORT, /* local connection abort generated */
385 RXRPC_CALL_EV_RESEND_TIMER, /* Tx resend timer expired */
386 RXRPC_CALL_EV_RESEND, /* Tx resend required */
387 RXRPC_CALL_EV_DRAIN_RX_OOS, /* drain the Rx out of sequence queue */
388 RXRPC_CALL_EV_LIFE_TIMER, /* call's lifetimer ran out */
389 RXRPC_CALL_EV_ACCEPTED, /* incoming call accepted by userspace app */
390 RXRPC_CALL_EV_SECURED, /* incoming call's connection is now secure */
391 RXRPC_CALL_EV_POST_ACCEPT, /* need to post an "accept?" message to the app */
392 RXRPC_CALL_EV_RELEASE, /* need to release the call's resources */
David Howells5b8848d2016-03-04 15:53:46 +0000393};
394
395/*
396 * The states that a call can be in.
397 */
398enum rxrpc_call_state {
David Howells999b69f2016-06-17 15:42:35 +0100399 RXRPC_CALL_UNINITIALISED,
400 RXRPC_CALL_CLIENT_AWAIT_CONN, /* - client waiting for connection to become available */
David Howells5b8848d2016-03-04 15:53:46 +0000401 RXRPC_CALL_CLIENT_SEND_REQUEST, /* - client sending request phase */
402 RXRPC_CALL_CLIENT_AWAIT_REPLY, /* - client awaiting reply */
403 RXRPC_CALL_CLIENT_RECV_REPLY, /* - client receiving reply phase */
404 RXRPC_CALL_CLIENT_FINAL_ACK, /* - client sending final ACK phase */
405 RXRPC_CALL_SERVER_SECURING, /* - server securing request connection */
406 RXRPC_CALL_SERVER_ACCEPTING, /* - server accepting request */
407 RXRPC_CALL_SERVER_RECV_REQUEST, /* - server receiving request */
408 RXRPC_CALL_SERVER_ACK_REQUEST, /* - server pending ACK of request */
409 RXRPC_CALL_SERVER_SEND_REPLY, /* - server sending reply */
410 RXRPC_CALL_SERVER_AWAIT_ACK, /* - server awaiting final ACK */
David Howellsf5c17aa2016-08-30 09:49:28 +0100411 RXRPC_CALL_COMPLETE, /* - call complete */
412 RXRPC_CALL_DEAD, /* - call is dead */
413 NR__RXRPC_CALL_STATES
414};
415
416/*
417 * Call completion condition (state == RXRPC_CALL_COMPLETE).
418 */
419enum rxrpc_call_completion {
420 RXRPC_CALL_SUCCEEDED, /* - Normal termination */
David Howells5b8848d2016-03-04 15:53:46 +0000421 RXRPC_CALL_SERVER_BUSY, /* - call rejected by busy server */
422 RXRPC_CALL_REMOTELY_ABORTED, /* - call aborted by peer */
423 RXRPC_CALL_LOCALLY_ABORTED, /* - call aborted locally on error or close */
David Howellsf5c17aa2016-08-30 09:49:28 +0100424 RXRPC_CALL_LOCAL_ERROR, /* - call failed due to local error */
David Howells5b8848d2016-03-04 15:53:46 +0000425 RXRPC_CALL_NETWORK_ERROR, /* - call terminated by network error */
David Howellsf5c17aa2016-08-30 09:49:28 +0100426 NR__RXRPC_CALL_COMPLETIONS
David Howells5b8848d2016-03-04 15:53:46 +0000427};
428
429/*
David Howells17926a72007-04-26 15:48:28 -0700430 * RxRPC call definition
431 * - matched by { connection, call_id }
432 */
433struct rxrpc_call {
David Howellsdee46362016-06-27 17:11:19 +0100434 struct rcu_head rcu;
David Howells17926a72007-04-26 15:48:28 -0700435 struct rxrpc_connection *conn; /* connection carrying call */
David Howellsdf5d8bf2016-08-24 14:31:43 +0100436 struct rxrpc_peer *peer; /* Peer record for remote address */
David Howells17926a72007-04-26 15:48:28 -0700437 struct rxrpc_sock *socket; /* socket responsible */
438 struct timer_list lifetimer; /* lifetime remaining on call */
439 struct timer_list deadspan; /* reap timer for re-ACK'ing, etc */
440 struct timer_list ack_timer; /* ACK generation timer */
441 struct timer_list resend_timer; /* Tx resend timer */
442 struct work_struct destroyer; /* call destroyer */
443 struct work_struct processor; /* packet processor and ACK generator */
444 struct list_head link; /* link in master call list */
David Howells45025bc2016-08-24 07:30:52 +0100445 struct list_head chan_wait_link; /* Link in conn->waiting_calls */
David Howellsf66d7492016-04-04 14:00:34 +0100446 struct hlist_node error_link; /* link in error distribution list */
David Howells17926a72007-04-26 15:48:28 -0700447 struct list_head accept_link; /* calls awaiting acceptance */
448 struct rb_node sock_node; /* node in socket call tree */
David Howells17926a72007-04-26 15:48:28 -0700449 struct sk_buff_head rx_queue; /* received packets */
450 struct sk_buff_head rx_oos_queue; /* packets received out of sequence */
451 struct sk_buff *tx_pending; /* Tx socket buffer being filled */
David Howells45025bc2016-08-24 07:30:52 +0100452 wait_queue_head_t waitq; /* Wait queue for channel or Tx */
Herbert Xua2636292016-06-26 14:55:24 -0700453 __be32 crypto_buf[2]; /* Temporary packet crypto buffer */
David Howells17926a72007-04-26 15:48:28 -0700454 unsigned long user_call_ID; /* user-defined call ID */
455 unsigned long creation_jif; /* time of call creation */
456 unsigned long flags;
David Howells17926a72007-04-26 15:48:28 -0700457 unsigned long events;
David Howells17926a72007-04-26 15:48:28 -0700458 spinlock_t lock;
459 rwlock_t state_lock; /* lock for state transition */
David Howellsf5c17aa2016-08-30 09:49:28 +0100460 u32 abort_code; /* Local/remote abort code */
461 int error; /* Local error incurred */
462 enum rxrpc_call_state state : 8; /* current state of call */
463 enum rxrpc_call_completion completion : 8; /* Call completion condition */
David Howells17926a72007-04-26 15:48:28 -0700464 atomic_t usage;
David Howells372ee162016-08-03 14:11:40 +0100465 atomic_t skb_count; /* Outstanding packets on this call */
David Howells17926a72007-04-26 15:48:28 -0700466 atomic_t sequence; /* Tx data packet sequence counter */
David Howellsdabe5a72016-08-23 15:27:24 +0100467 u16 service_id; /* service ID */
468 u32 call_id; /* call ID on connection */
469 u32 cid; /* connection ID plus channel index */
470 int debug_id; /* debug ID for printks */
David Howells17926a72007-04-26 15:48:28 -0700471
472 /* transmission-phase ACK management */
David Howells4e36a952009-09-16 00:01:13 -0700473 u8 acks_head; /* offset into window of first entry */
474 u8 acks_tail; /* offset into window of last entry */
475 u8 acks_winsz; /* size of un-ACK'd window */
476 u8 acks_unacked; /* lowest unacked packet in last ACK received */
David Howells17926a72007-04-26 15:48:28 -0700477 int acks_latest; /* serial number of latest ACK received */
478 rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */
479 unsigned long *acks_window; /* sent packet window
480 * - elements are pointers with LSB set if ACK'd
481 */
482
483 /* receive-phase ACK management */
484 rxrpc_seq_t rx_data_expect; /* next data seq ID expected to be received */
485 rxrpc_seq_t rx_data_post; /* next data seq ID expected to be posted */
486 rxrpc_seq_t rx_data_recv; /* last data seq ID encountered by recvmsg */
487 rxrpc_seq_t rx_data_eaten; /* last data seq ID consumed by recvmsg */
488 rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */
489 rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */
David Howells0d12f8a2016-03-04 15:53:46 +0000490 rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */
David Howells4e36a952009-09-16 00:01:13 -0700491 u8 ackr_reason; /* reason to ACK */
David Howells563ea7d2016-08-23 15:27:25 +0100492 u16 ackr_skew; /* skew on packet being ACK'd */
David Howells0d12f8a2016-03-04 15:53:46 +0000493 rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */
David Howells17926a72007-04-26 15:48:28 -0700494 atomic_t ackr_not_idle; /* number of packets in Rx queue */
495
496 /* received packet records, 1 bit per record */
497#define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG)
498 unsigned long ackr_window[RXRPC_ACKR_WINDOW_ASZ + 1];
David Howells17926a72007-04-26 15:48:28 -0700499};
500
David Howellsdf844fd2016-08-23 15:27:24 +0100501#include <trace/events/rxrpc.h>
502
David Howells17926a72007-04-26 15:48:28 -0700503/*
David Howells651350d2007-04-26 15:50:17 -0700504 * af_rxrpc.c
David Howells17926a72007-04-26 15:48:28 -0700505 */
David Howells651350d2007-04-26 15:50:17 -0700506extern atomic_t rxrpc_n_skbs;
David Howells0d12f8a2016-03-04 15:53:46 +0000507extern u32 rxrpc_epoch;
David Howells651350d2007-04-26 15:50:17 -0700508extern atomic_t rxrpc_debug_id;
509extern struct workqueue_struct *rxrpc_workqueue;
David Howells17926a72007-04-26 15:48:28 -0700510
511/*
David Howells0d81a512016-06-13 13:30:30 +0100512 * call_accept.c
David Howells17926a72007-04-26 15:48:28 -0700513 */
David Howells4f95dd72016-04-04 14:00:35 +0100514void rxrpc_accept_incoming_calls(struct rxrpc_local *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700515struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long);
516int rxrpc_reject_call(struct rxrpc_sock *);
David Howells17926a72007-04-26 15:48:28 -0700517
518/*
David Howells0d81a512016-06-13 13:30:30 +0100519 * call_event.c
David Howells17926a72007-04-26 15:48:28 -0700520 */
David Howells563ea7d2016-08-23 15:27:25 +0100521void __rxrpc_propose_ACK(struct rxrpc_call *, u8, u16, u32, bool);
522void rxrpc_propose_ACK(struct rxrpc_call *, u8, u16, u32, bool);
Joe Perchesc1b12032013-10-18 13:48:25 -0700523void rxrpc_process_call(struct work_struct *);
David Howells17926a72007-04-26 15:48:28 -0700524
525/*
David Howells0d81a512016-06-13 13:30:30 +0100526 * call_object.c
David Howells17926a72007-04-26 15:48:28 -0700527 */
David Howellsf5c17aa2016-08-30 09:49:28 +0100528extern const char *const rxrpc_call_states[];
529extern const char *const rxrpc_call_completions[];
David Howellsdad8aff2016-03-09 23:22:56 +0000530extern unsigned int rxrpc_max_call_lifetime;
531extern unsigned int rxrpc_dead_call_expiry;
David Howells17926a72007-04-26 15:48:28 -0700532extern struct kmem_cache *rxrpc_call_jar;
533extern struct list_head rxrpc_calls;
534extern rwlock_t rxrpc_call_lock;
535
David Howells2341e072016-06-09 23:02:51 +0100536struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
537struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
David Howells19ffa012016-04-04 14:00:36 +0100538 struct rxrpc_conn_parameters *,
David Howells999b69f2016-06-17 15:42:35 +0100539 struct sockaddr_rxrpc *,
David Howells2341e072016-06-09 23:02:51 +0100540 unsigned long, gfp_t);
Joe Perchesc1b12032013-10-18 13:48:25 -0700541struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *,
542 struct rxrpc_connection *,
David Howells42886ff2016-06-16 13:31:07 +0100543 struct sk_buff *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700544void rxrpc_release_call(struct rxrpc_call *);
545void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
David Howellse34d4232016-08-30 09:49:29 +0100546void rxrpc_see_call(struct rxrpc_call *);
547void rxrpc_get_call(struct rxrpc_call *);
548void rxrpc_put_call(struct rxrpc_call *);
549void rxrpc_get_call_for_skb(struct rxrpc_call *, struct sk_buff *);
550void rxrpc_put_call_for_skb(struct rxrpc_call *, struct sk_buff *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700551void __exit rxrpc_destroy_all_calls(void);
David Howells17926a72007-04-26 15:48:28 -0700552
David Howellsdabe5a72016-08-23 15:27:24 +0100553static inline bool rxrpc_is_service_call(const struct rxrpc_call *call)
554{
555 return test_bit(RXRPC_CALL_IS_SERVICE, &call->flags);
556}
557
558static inline bool rxrpc_is_client_call(const struct rxrpc_call *call)
559{
560 return !rxrpc_is_service_call(call);
561}
562
David Howells17926a72007-04-26 15:48:28 -0700563/*
David Howellsf5c17aa2016-08-30 09:49:28 +0100564 * Transition a call to the complete state.
565 */
566static inline bool __rxrpc_set_call_completion(struct rxrpc_call *call,
567 enum rxrpc_call_completion compl,
568 u32 abort_code,
569 int error)
570{
571 if (call->state < RXRPC_CALL_COMPLETE) {
572 call->abort_code = abort_code;
573 call->error = error;
574 call->completion = compl,
575 call->state = RXRPC_CALL_COMPLETE;
576 return true;
577 }
578 return false;
579}
580
581static inline bool rxrpc_set_call_completion(struct rxrpc_call *call,
582 enum rxrpc_call_completion compl,
583 u32 abort_code,
584 int error)
585{
586 int ret;
587
588 write_lock_bh(&call->state_lock);
589 ret = __rxrpc_set_call_completion(call, compl, abort_code, error);
590 write_unlock_bh(&call->state_lock);
591 return ret;
592}
593
594/*
595 * Record that a call successfully completed.
596 */
597static inline void __rxrpc_call_completed(struct rxrpc_call *call)
598{
599 __rxrpc_set_call_completion(call, RXRPC_CALL_SUCCEEDED, 0, 0);
600}
601
602static inline void rxrpc_call_completed(struct rxrpc_call *call)
603{
604 write_lock_bh(&call->state_lock);
605 __rxrpc_call_completed(call);
606 write_unlock_bh(&call->state_lock);
607}
608
609/*
610 * Record that a call is locally aborted.
611 */
612static inline bool __rxrpc_abort_call(struct rxrpc_call *call,
613 u32 abort_code, int error)
614{
615 if (__rxrpc_set_call_completion(call,
616 RXRPC_CALL_LOCALLY_ABORTED,
617 abort_code, error)) {
618 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
619 return true;
620 }
621 return false;
622}
623
624static inline bool rxrpc_abort_call(struct rxrpc_call *call,
625 u32 abort_code, int error)
626{
627 bool ret;
628
629 write_lock_bh(&call->state_lock);
630 ret = __rxrpc_abort_call(call, abort_code, error);
631 write_unlock_bh(&call->state_lock);
632 return ret;
633}
634
635/*
David Howells4a3388c2016-04-04 14:00:37 +0100636 * conn_client.c
637 */
David Howells45025bc2016-08-24 07:30:52 +0100638extern unsigned int rxrpc_max_client_connections;
639extern unsigned int rxrpc_reap_client_connections;
640extern unsigned int rxrpc_conn_idle_client_expiry;
641extern unsigned int rxrpc_conn_idle_client_fast_expiry;
David Howells4a3388c2016-04-04 14:00:37 +0100642extern struct idr rxrpc_client_conn_ids;
643
David Howellseb9b9d22016-06-27 10:32:02 +0100644void rxrpc_destroy_client_conn_ids(void);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100645int rxrpc_connect_call(struct rxrpc_call *, struct rxrpc_conn_parameters *,
646 struct sockaddr_rxrpc *, gfp_t);
David Howells45025bc2016-08-24 07:30:52 +0100647void rxrpc_expose_client_call(struct rxrpc_call *);
648void rxrpc_disconnect_client_call(struct rxrpc_call *);
649void rxrpc_put_client_conn(struct rxrpc_connection *);
650void __exit rxrpc_destroy_all_client_connections(void);
David Howells4a3388c2016-04-04 14:00:37 +0100651
652/*
David Howells0d81a512016-06-13 13:30:30 +0100653 * conn_event.c
654 */
655void rxrpc_process_connection(struct work_struct *);
656void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *);
David Howells4f95dd72016-04-04 14:00:35 +0100657void rxrpc_reject_packets(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100658
659/*
660 * conn_object.c
David Howells17926a72007-04-26 15:48:28 -0700661 */
David Howellsdad8aff2016-03-09 23:22:56 +0000662extern unsigned int rxrpc_connection_expiry;
David Howells17926a72007-04-26 15:48:28 -0700663extern struct list_head rxrpc_connections;
David Howells4d028b22016-08-24 07:30:52 +0100664extern struct list_head rxrpc_connection_proc_list;
David Howells17926a72007-04-26 15:48:28 -0700665extern rwlock_t rxrpc_connection_lock;
666
David Howells8496af52016-07-01 07:51:50 +0100667int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100668struct rxrpc_connection *rxrpc_alloc_connection(gfp_t);
David Howells8496af52016-07-01 07:51:50 +0100669struct rxrpc_connection *rxrpc_find_connection_rcu(struct rxrpc_local *,
670 struct sk_buff *);
David Howells45025bc2016-08-24 07:30:52 +0100671void __rxrpc_disconnect_call(struct rxrpc_connection *, struct rxrpc_call *);
David Howells999b69f2016-06-17 15:42:35 +0100672void rxrpc_disconnect_call(struct rxrpc_call *);
David Howells45025bc2016-08-24 07:30:52 +0100673void rxrpc_kill_connection(struct rxrpc_connection *);
David Howellsf51b4482016-08-23 15:27:24 +0100674void __rxrpc_put_connection(struct rxrpc_connection *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700675void __exit rxrpc_destroy_all_connections(void);
David Howells17926a72007-04-26 15:48:28 -0700676
David Howells19ffa012016-04-04 14:00:36 +0100677static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
678{
679 return conn->out_clientflag;
680}
681
682static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
683{
David Howellse8d70ce2016-06-30 12:16:21 +0100684 return !rxrpc_conn_is_client(conn);
David Howells19ffa012016-04-04 14:00:36 +0100685}
686
David Howells5627cc82016-04-04 14:00:38 +0100687static inline void rxrpc_get_connection(struct rxrpc_connection *conn)
688{
689 atomic_inc(&conn->usage);
690}
691
David Howells2c4579e2016-06-27 10:32:03 +0100692static inline
693struct rxrpc_connection *rxrpc_get_connection_maybe(struct rxrpc_connection *conn)
694{
695 return atomic_inc_not_zero(&conn->usage) ? conn : NULL;
696}
David Howells5acbee42016-06-27 10:32:02 +0100697
David Howellsf51b4482016-08-23 15:27:24 +0100698static inline void rxrpc_put_connection(struct rxrpc_connection *conn)
699{
David Howells45025bc2016-08-24 07:30:52 +0100700 if (!conn)
701 return;
702
703 if (rxrpc_conn_is_client(conn)) {
704 if (atomic_dec_and_test(&conn->usage))
705 rxrpc_put_client_conn(conn);
706 } else {
707 if (atomic_dec_return(&conn->usage) == 1)
708 __rxrpc_put_connection(conn);
709 }
David Howellsf51b4482016-08-23 15:27:24 +0100710}
711
712
David Howells8496af52016-07-01 07:51:50 +0100713static inline bool rxrpc_queue_conn(struct rxrpc_connection *conn)
David Howells5acbee42016-06-27 10:32:02 +0100714{
David Howells8496af52016-07-01 07:51:50 +0100715 if (!rxrpc_get_connection_maybe(conn))
716 return false;
717 if (!rxrpc_queue_work(&conn->processor))
David Howells2c4579e2016-06-27 10:32:03 +0100718 rxrpc_put_connection(conn);
David Howells8496af52016-07-01 07:51:50 +0100719 return true;
David Howells5acbee42016-06-27 10:32:02 +0100720}
721
David Howells17926a72007-04-26 15:48:28 -0700722/*
David Howells7877a4a2016-04-04 14:00:40 +0100723 * conn_service.c
724 */
David Howells8496af52016-07-01 07:51:50 +0100725struct rxrpc_connection *rxrpc_find_service_conn_rcu(struct rxrpc_peer *,
726 struct sk_buff *);
David Howells7877a4a2016-04-04 14:00:40 +0100727struct rxrpc_connection *rxrpc_incoming_connection(struct rxrpc_local *,
David Howellsd991b4a2016-06-29 14:40:39 +0100728 struct sockaddr_rxrpc *,
David Howells7877a4a2016-04-04 14:00:40 +0100729 struct sk_buff *);
David Howells001c1122016-06-30 10:45:22 +0100730void rxrpc_unpublish_service_conn(struct rxrpc_connection *);
David Howells7877a4a2016-04-04 14:00:40 +0100731
732/*
David Howells0d81a512016-06-13 13:30:30 +0100733 * input.c
David Howells17926a72007-04-26 15:48:28 -0700734 */
David S. Miller676d2362014-04-11 16:15:36 -0400735void rxrpc_data_ready(struct sock *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700736int rxrpc_queue_rcv_skb(struct rxrpc_call *, struct sk_buff *, bool, bool);
737void rxrpc_fast_process_packet(struct rxrpc_call *, struct sk_buff *);
David Howells17926a72007-04-26 15:48:28 -0700738
739/*
David Howells0d81a512016-06-13 13:30:30 +0100740 * insecure.c
David Howells17926a72007-04-26 15:48:28 -0700741 */
David Howells0d81a512016-06-13 13:30:30 +0100742extern const struct rxrpc_security rxrpc_no_security;
David Howells17926a72007-04-26 15:48:28 -0700743
744/*
David Howells0d81a512016-06-13 13:30:30 +0100745 * key.c
David Howells17926a72007-04-26 15:48:28 -0700746 */
747extern struct key_type key_type_rxrpc;
748extern struct key_type key_type_rxrpc_s;
749
Joe Perchesc1b12032013-10-18 13:48:25 -0700750int rxrpc_request_key(struct rxrpc_sock *, char __user *, int);
751int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int);
752int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time_t,
753 u32);
David Howells17926a72007-04-26 15:48:28 -0700754
755/*
David Howells87563612016-04-04 14:00:34 +0100756 * local_event.c
757 */
David Howells4f95dd72016-04-04 14:00:35 +0100758extern void rxrpc_process_local_events(struct rxrpc_local *);
David Howells87563612016-04-04 14:00:34 +0100759
760/*
David Howells0d81a512016-06-13 13:30:30 +0100761 * local_object.c
David Howells17926a72007-04-26 15:48:28 -0700762 */
David Howells4f95dd72016-04-04 14:00:35 +0100763struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *);
764void __rxrpc_put_local(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100765void __exit rxrpc_destroy_all_locals(void);
David Howellse0e4d822016-04-07 17:23:58 +0100766
David Howells4f95dd72016-04-04 14:00:35 +0100767static inline void rxrpc_get_local(struct rxrpc_local *local)
768{
769 atomic_inc(&local->usage);
770}
771
772static inline
773struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
774{
775 return atomic_inc_not_zero(&local->usage) ? local : NULL;
776}
777
778static inline void rxrpc_put_local(struct rxrpc_local *local)
779{
David Howells5627cc82016-04-04 14:00:38 +0100780 if (local && atomic_dec_and_test(&local->usage))
David Howells4f95dd72016-04-04 14:00:35 +0100781 __rxrpc_put_local(local);
782}
783
David Howells5acbee42016-06-27 10:32:02 +0100784static inline void rxrpc_queue_local(struct rxrpc_local *local)
785{
786 rxrpc_queue_work(&local->processor);
787}
788
David Howellse0e4d822016-04-07 17:23:58 +0100789/*
David Howells8e688d92016-04-07 17:23:16 +0100790 * misc.c
791 */
David Howells0e119b42016-06-10 22:30:37 +0100792extern unsigned int rxrpc_max_backlog __read_mostly;
David Howells8e688d92016-04-07 17:23:16 +0100793extern unsigned int rxrpc_requested_ack_delay;
794extern unsigned int rxrpc_soft_ack_delay;
795extern unsigned int rxrpc_idle_ack_delay;
796extern unsigned int rxrpc_rx_window_size;
797extern unsigned int rxrpc_rx_mtu;
798extern unsigned int rxrpc_rx_jumbo_max;
799
David Howells5b3e87f2016-04-07 17:23:23 +0100800extern const char *const rxrpc_pkts[];
David Howells8e688d92016-04-07 17:23:16 +0100801extern const s8 rxrpc_ack_priority[];
802
803extern const char *rxrpc_acks(u8 reason);
804
805/*
David Howells0d81a512016-06-13 13:30:30 +0100806 * output.c
807 */
808extern unsigned int rxrpc_resend_timeout;
809
David Howells985a5c82016-06-17 11:53:37 +0100810int rxrpc_send_data_packet(struct rxrpc_connection *, struct sk_buff *);
David Howells0d81a512016-06-13 13:30:30 +0100811int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
812
813/*
David Howellsabe89ef2016-04-04 14:00:32 +0100814 * peer_event.c
David Howells0d81a512016-06-13 13:30:30 +0100815 */
David Howellsabe89ef2016-04-04 14:00:32 +0100816void rxrpc_error_report(struct sock *);
David Howellsf66d7492016-04-04 14:00:34 +0100817void rxrpc_peer_error_distributor(struct work_struct *);
David Howells0d81a512016-06-13 13:30:30 +0100818
819/*
820 * peer_object.c
821 */
David Howellsbe6e6702016-04-04 14:00:32 +0100822struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
823 const struct sockaddr_rxrpc *);
824struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_local *,
825 struct sockaddr_rxrpc *, gfp_t);
826struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
827
David Howellsdf5d8bf2016-08-24 14:31:43 +0100828static inline struct rxrpc_peer *rxrpc_get_peer(struct rxrpc_peer *peer)
David Howellsbe6e6702016-04-04 14:00:32 +0100829{
830 atomic_inc(&peer->usage);
David Howellsdf5d8bf2016-08-24 14:31:43 +0100831 return peer;
David Howellsbe6e6702016-04-04 14:00:32 +0100832}
833
834static inline
835struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
836{
837 return atomic_inc_not_zero(&peer->usage) ? peer : NULL;
838}
839
840extern void __rxrpc_put_peer(struct rxrpc_peer *peer);
841static inline void rxrpc_put_peer(struct rxrpc_peer *peer)
842{
David Howells5627cc82016-04-04 14:00:38 +0100843 if (peer && atomic_dec_and_test(&peer->usage))
David Howellsbe6e6702016-04-04 14:00:32 +0100844 __rxrpc_put_peer(peer);
845}
David Howells0d81a512016-06-13 13:30:30 +0100846
847/*
848 * proc.c
849 */
David Howells0d81a512016-06-13 13:30:30 +0100850extern const struct file_operations rxrpc_call_seq_fops;
851extern const struct file_operations rxrpc_connection_seq_fops;
852
853/*
854 * recvmsg.c
855 */
856void rxrpc_remove_user_ID(struct rxrpc_sock *, struct rxrpc_call *);
857int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
858
859/*
David Howells648af7f2016-04-07 17:23:51 +0100860 * rxkad.c
861 */
862#ifdef CONFIG_RXKAD
863extern const struct rxrpc_security rxkad;
864#endif
865
866/*
David Howells0d81a512016-06-13 13:30:30 +0100867 * security.c
868 */
869int __init rxrpc_init_security(void);
870void rxrpc_exit_security(void);
871int rxrpc_init_client_conn_security(struct rxrpc_connection *);
872int rxrpc_init_server_conn_security(struct rxrpc_connection *);
873
874/*
875 * skbuff.c
876 */
877void rxrpc_packet_destructor(struct sk_buff *);
David Howellsdf844fd2016-08-23 15:27:24 +0100878void rxrpc_new_skb(struct sk_buff *);
879void rxrpc_see_skb(struct sk_buff *);
880void rxrpc_get_skb(struct sk_buff *);
881void rxrpc_free_skb(struct sk_buff *);
882void rxrpc_purge_queue(struct sk_buff_head *);
David Howells0d81a512016-06-13 13:30:30 +0100883
884/*
David Howells5873c082014-02-07 18:58:44 +0000885 * sysctl.c
886 */
887#ifdef CONFIG_SYSCTL
888extern int __init rxrpc_sysctl_init(void);
889extern void rxrpc_sysctl_exit(void);
890#else
891static inline int __init rxrpc_sysctl_init(void) { return 0; }
892static inline void rxrpc_sysctl_exit(void) {}
893#endif
894
895/*
David Howellsbe6e6702016-04-04 14:00:32 +0100896 * utils.c
897 */
David Howellsd991b4a2016-06-29 14:40:39 +0100898int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
David Howellsbe6e6702016-04-04 14:00:32 +0100899
900/*
David Howells17926a72007-04-26 15:48:28 -0700901 * debug tracing
902 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000903extern unsigned int rxrpc_debug;
David Howells17926a72007-04-26 15:48:28 -0700904
905#define dbgprintk(FMT,...) \
Sven Schnelle9f389f42008-04-03 10:45:30 +0100906 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700907
Harvey Harrison0dc47872008-03-05 20:47:47 -0800908#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
909#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700910#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
911#define kproto(FMT,...) dbgprintk("### "FMT ,##__VA_ARGS__)
912#define knet(FMT,...) dbgprintk("@@@ "FMT ,##__VA_ARGS__)
913
914
915#if defined(__KDEBUG)
916#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
917#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
918#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
919#define _proto(FMT,...) kproto(FMT,##__VA_ARGS__)
920#define _net(FMT,...) knet(FMT,##__VA_ARGS__)
921
922#elif defined(CONFIG_AF_RXRPC_DEBUG)
923#define RXRPC_DEBUG_KENTER 0x01
924#define RXRPC_DEBUG_KLEAVE 0x02
925#define RXRPC_DEBUG_KDEBUG 0x04
926#define RXRPC_DEBUG_KPROTO 0x08
927#define RXRPC_DEBUG_KNET 0x10
928
929#define _enter(FMT,...) \
930do { \
931 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER)) \
932 kenter(FMT,##__VA_ARGS__); \
933} while (0)
934
935#define _leave(FMT,...) \
936do { \
937 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE)) \
938 kleave(FMT,##__VA_ARGS__); \
939} while (0)
940
941#define _debug(FMT,...) \
942do { \
943 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG)) \
944 kdebug(FMT,##__VA_ARGS__); \
945} while (0)
946
947#define _proto(FMT,...) \
948do { \
949 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO)) \
950 kproto(FMT,##__VA_ARGS__); \
951} while (0)
952
953#define _net(FMT,...) \
954do { \
955 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET)) \
956 knet(FMT,##__VA_ARGS__); \
957} while (0)
958
959#else
David Howells12fdff32010-08-12 16:54:57 +0100960#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
961#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
962#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
963#define _proto(FMT,...) no_printk("### "FMT ,##__VA_ARGS__)
964#define _net(FMT,...) no_printk("@@@ "FMT ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700965#endif
966
967/*
968 * debug assertion checking
969 */
970#if 1 // defined(__KDEBUGALL)
971
972#define ASSERT(X) \
973do { \
974 if (unlikely(!(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700975 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -0700976 BUG(); \
977 } \
David Howellsb4f13422016-03-04 15:56:19 +0000978} while (0)
David Howells17926a72007-04-26 15:48:28 -0700979
980#define ASSERTCMP(X, OP, Y) \
981do { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700982 unsigned long _x = (unsigned long)(X); \
983 unsigned long _y = (unsigned long)(Y); \
984 if (unlikely(!(_x OP _y))) { \
985 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
986 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -0700987 BUG(); \
988 } \
David Howellsb4f13422016-03-04 15:56:19 +0000989} while (0)
David Howells17926a72007-04-26 15:48:28 -0700990
991#define ASSERTIF(C, X) \
992do { \
993 if (unlikely((C) && !(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700994 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -0700995 BUG(); \
996 } \
David Howellsb4f13422016-03-04 15:56:19 +0000997} while (0)
David Howells17926a72007-04-26 15:48:28 -0700998
999#define ASSERTIFCMP(C, X, OP, Y) \
1000do { \
Joe Perches9b6d5392016-06-02 12:08:52 -07001001 unsigned long _x = (unsigned long)(X); \
1002 unsigned long _y = (unsigned long)(Y); \
1003 if (unlikely((C) && !(_x OP _y))) { \
1004 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1005 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -07001006 BUG(); \
1007 } \
David Howellsb4f13422016-03-04 15:56:19 +00001008} while (0)
David Howells17926a72007-04-26 15:48:28 -07001009
1010#else
1011
1012#define ASSERT(X) \
1013do { \
David Howellsb4f13422016-03-04 15:56:19 +00001014} while (0)
David Howells17926a72007-04-26 15:48:28 -07001015
1016#define ASSERTCMP(X, OP, Y) \
1017do { \
David Howellsb4f13422016-03-04 15:56:19 +00001018} while (0)
David Howells17926a72007-04-26 15:48:28 -07001019
1020#define ASSERTIF(C, X) \
1021do { \
David Howellsb4f13422016-03-04 15:56:19 +00001022} while (0)
David Howells17926a72007-04-26 15:48:28 -07001023
1024#define ASSERTIFCMP(C, X, OP, Y) \
1025do { \
David Howellsb4f13422016-03-04 15:56:19 +00001026} while (0)
David Howells17926a72007-04-26 15:48:28 -07001027
1028#endif /* __KDEBUGALL */