blob: 6fdee761dd0b062e9963cebf2a8aed1ba9d3e4ee [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 Howellse0e4d822016-04-07 17:23:58 +010013#include <net/sock.h>
David Howellsbe6e6702016-04-04 14:00:32 +010014#include <net/af_rxrpc.h>
David Howells17926a72007-04-26 15:48:28 -070015#include <rxrpc/packet.h>
16
17#if 0
18#define CHECK_SLAB_OKAY(X) \
19 BUG_ON(atomic_read((X)) >> (sizeof(atomic_t) - 2) == \
20 (POISON_FREE << 8 | POISON_FREE))
21#else
David Howellsb4f13422016-03-04 15:56:19 +000022#define CHECK_SLAB_OKAY(X) do {} while (0)
David Howells17926a72007-04-26 15:48:28 -070023#endif
24
David Howells17926a72007-04-26 15:48:28 -070025#define FCRYPT_BSIZE 8
26struct rxrpc_crypt {
27 union {
28 u8 x[FCRYPT_BSIZE];
Al Viro91e916c2008-03-29 03:08:38 +000029 __be32 n[2];
David Howells17926a72007-04-26 15:48:28 -070030 };
31} __attribute__((aligned(8)));
32
David Howells651350d2007-04-26 15:50:17 -070033#define rxrpc_queue_work(WS) queue_work(rxrpc_workqueue, (WS))
34#define rxrpc_queue_delayed_work(WS,D) \
35 queue_delayed_work(rxrpc_workqueue, (WS), (D))
36
37#define rxrpc_queue_call(CALL) rxrpc_queue_work(&(CALL)->processor)
David Howells17926a72007-04-26 15:48:28 -070038
David Howellscc8feb82016-04-04 14:00:37 +010039struct rxrpc_connection;
40
David Howells17926a72007-04-26 15:48:28 -070041/*
42 * sk_state for RxRPC sockets
43 */
44enum {
David Howells2341e072016-06-09 23:02:51 +010045 RXRPC_UNBOUND = 0,
46 RXRPC_CLIENT_UNBOUND, /* Unbound socket used as client */
David Howells17926a72007-04-26 15:48:28 -070047 RXRPC_CLIENT_BOUND, /* client local address bound */
David Howells17926a72007-04-26 15:48:28 -070048 RXRPC_SERVER_BOUND, /* server local address bound */
49 RXRPC_SERVER_LISTENING, /* server listening for connections */
50 RXRPC_CLOSE, /* socket is being closed */
51};
52
53/*
54 * RxRPC socket definition
55 */
56struct rxrpc_sock {
57 /* WARNING: sk has to be the first member */
58 struct sock sk;
David Howells651350d2007-04-26 15:50:17 -070059 rxrpc_interceptor_t interceptor; /* kernel service Rx interceptor function */
David Howells17926a72007-04-26 15:48:28 -070060 struct rxrpc_local *local; /* local endpoint */
David Howells17926a72007-04-26 15:48:28 -070061 struct list_head listen_link; /* link in the local endpoint's listen list */
62 struct list_head secureq; /* calls awaiting connection security clearance */
63 struct list_head acceptq; /* calls awaiting acceptance */
64 struct key *key; /* security for this socket */
65 struct key *securities; /* list of server security descriptors */
66 struct rb_root calls; /* outstanding calls on this socket */
67 unsigned long flags;
David Howells2341e072016-06-09 23:02:51 +010068#define RXRPC_SOCK_CONNECTED 0 /* connect_srx is set */
David Howells17926a72007-04-26 15:48:28 -070069 rwlock_t call_lock; /* lock for calls */
70 u32 min_sec_level; /* minimum security level */
71#define RXRPC_SECURITY_MAX RXRPC_SECURITY_ENCRYPT
David Howellscc8feb82016-04-04 14:00:37 +010072 bool exclusive; /* Exclusive connection for a client socket */
73 sa_family_t family; /* Protocol family created with */
David Howells17926a72007-04-26 15:48:28 -070074 struct sockaddr_rxrpc srx; /* local address */
David Howells2341e072016-06-09 23:02:51 +010075 struct sockaddr_rxrpc connect_srx; /* Default client address from connect() */
David Howells17926a72007-04-26 15:48:28 -070076};
77
78#define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk)
79
80/*
David Howells0d12f8a2016-03-04 15:53:46 +000081 * CPU-byteorder normalised Rx packet header.
82 */
83struct rxrpc_host_header {
84 u32 epoch; /* client boot timestamp */
85 u32 cid; /* connection and channel ID */
86 u32 callNumber; /* call ID (0 for connection-level packets) */
87 u32 seq; /* sequence number of pkt in call stream */
88 u32 serial; /* serial number of pkt sent to network */
89 u8 type; /* packet type */
90 u8 flags; /* packet flags */
91 u8 userStatus; /* app-layer defined status */
92 u8 securityIndex; /* security protocol ID */
93 union {
94 u16 _rsvd; /* reserved */
95 u16 cksum; /* kerberos security checksum */
96 };
97 u16 serviceId; /* service ID */
98} __packed;
99
100/*
David Howells17926a72007-04-26 15:48:28 -0700101 * RxRPC socket buffer private variables
102 * - max 48 bytes (struct sk_buff::cb)
103 */
104struct rxrpc_skb_priv {
105 struct rxrpc_call *call; /* call with which associated */
106 unsigned long resend_at; /* time in jiffies at which to resend */
107 union {
Eric Dumazet95c96172012-04-15 05:58:06 +0000108 unsigned int offset; /* offset into buffer of next read */
David Howells17926a72007-04-26 15:48:28 -0700109 int remain; /* amount of space remaining for next write */
110 u32 error; /* network error code */
111 bool need_resend; /* T if needs resending */
112 };
113
David Howells0d12f8a2016-03-04 15:53:46 +0000114 struct rxrpc_host_header hdr; /* RxRPC packet header from this packet */
David Howells17926a72007-04-26 15:48:28 -0700115};
116
117#define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb)
118
David Howells17926a72007-04-26 15:48:28 -0700119enum rxrpc_command {
120 RXRPC_CMD_SEND_DATA, /* send data message */
121 RXRPC_CMD_SEND_ABORT, /* request abort generation */
122 RXRPC_CMD_ACCEPT, /* [server] accept incoming call */
123 RXRPC_CMD_REJECT_BUSY, /* [server] reject a call as busy */
124};
125
126/*
127 * RxRPC security module interface
128 */
129struct rxrpc_security {
David Howells17926a72007-04-26 15:48:28 -0700130 const char *name; /* name of this service */
131 u8 security_index; /* security type provided */
132
David Howells648af7f2016-04-07 17:23:51 +0100133 /* Initialise a security service */
134 int (*init)(void);
135
136 /* Clean up a security service */
137 void (*exit)(void);
138
David Howells17926a72007-04-26 15:48:28 -0700139 /* initialise a connection's security */
140 int (*init_connection_security)(struct rxrpc_connection *);
141
142 /* prime a connection's packet security */
Herbert Xua2636292016-06-26 14:55:24 -0700143 int (*prime_packet_security)(struct rxrpc_connection *);
David Howells17926a72007-04-26 15:48:28 -0700144
145 /* impose security on a packet */
Herbert Xua2636292016-06-26 14:55:24 -0700146 int (*secure_packet)(struct rxrpc_call *,
David Howells17926a72007-04-26 15:48:28 -0700147 struct sk_buff *,
148 size_t,
149 void *);
150
151 /* verify the security on a received packet */
Herbert Xua2636292016-06-26 14:55:24 -0700152 int (*verify_packet)(struct rxrpc_call *, struct sk_buff *, u32 *);
David Howells17926a72007-04-26 15:48:28 -0700153
154 /* issue a challenge */
155 int (*issue_challenge)(struct rxrpc_connection *);
156
157 /* respond to a challenge */
158 int (*respond_to_challenge)(struct rxrpc_connection *,
159 struct sk_buff *,
160 u32 *);
161
162 /* verify a response */
163 int (*verify_response)(struct rxrpc_connection *,
164 struct sk_buff *,
165 u32 *);
166
167 /* clear connection security */
168 void (*clear)(struct rxrpc_connection *);
169};
170
171/*
David Howells4f95dd72016-04-04 14:00:35 +0100172 * RxRPC local transport endpoint description
173 * - owned by a single AF_RXRPC socket
174 * - pointed to by transport socket struct sk_user_data
David Howells17926a72007-04-26 15:48:28 -0700175 */
176struct rxrpc_local {
David Howells4f95dd72016-04-04 14:00:35 +0100177 struct rcu_head rcu;
178 atomic_t usage;
179 struct list_head link;
David Howells17926a72007-04-26 15:48:28 -0700180 struct socket *socket; /* my UDP socket */
David Howells4f95dd72016-04-04 14:00:35 +0100181 struct work_struct processor;
David Howells17926a72007-04-26 15:48:28 -0700182 struct list_head services; /* services listening on this endpoint */
David Howells17926a72007-04-26 15:48:28 -0700183 struct rw_semaphore defrag_sem; /* control re-enablement of IP DF bit */
184 struct sk_buff_head accept_queue; /* incoming calls awaiting acceptance */
185 struct sk_buff_head reject_queue; /* packets awaiting rejection */
David Howells44ba0692015-04-01 16:31:26 +0100186 struct sk_buff_head event_queue; /* endpoint event packets awaiting processing */
David Howells999b69f2016-06-17 15:42:35 +0100187 struct rb_root client_conns; /* Client connections by socket params */
188 spinlock_t client_conns_lock; /* Lock for client_conns */
David Howells17926a72007-04-26 15:48:28 -0700189 spinlock_t lock; /* access lock */
190 rwlock_t services_lock; /* lock for services list */
David Howells17926a72007-04-26 15:48:28 -0700191 int debug_id; /* debug ID for printks */
David Howells4f95dd72016-04-04 14:00:35 +0100192 bool dead;
David Howells17926a72007-04-26 15:48:28 -0700193 struct sockaddr_rxrpc srx; /* local address */
194};
195
196/*
197 * RxRPC remote transport endpoint definition
David Howellsbe6e6702016-04-04 14:00:32 +0100198 * - matched by local endpoint, remote port, address and protocol type
David Howells17926a72007-04-26 15:48:28 -0700199 */
200struct rxrpc_peer {
David Howellsbe6e6702016-04-04 14:00:32 +0100201 struct rcu_head rcu; /* This must be first */
202 atomic_t usage;
203 unsigned long hash_key;
204 struct hlist_node hash_link;
205 struct rxrpc_local *local;
David Howellsf66d7492016-04-04 14:00:34 +0100206 struct hlist_head error_targets; /* targets for net error distribution */
207 struct work_struct error_distributor;
David Howellsaa390bb2016-06-17 10:06:56 +0100208 struct rb_root service_conns; /* Service connections */
209 rwlock_t conn_lock;
David Howells17926a72007-04-26 15:48:28 -0700210 spinlock_t lock; /* access lock */
Eric Dumazet95c96172012-04-15 05:58:06 +0000211 unsigned int if_mtu; /* interface MTU for this peer */
212 unsigned int mtu; /* network MTU for this peer */
213 unsigned int maxdata; /* data size (MTU - hdrsize) */
David Howells17926a72007-04-26 15:48:28 -0700214 unsigned short hdrsize; /* header size (IP + UDP + RxRPC) */
215 int debug_id; /* debug ID for printks */
David Howellsf66d7492016-04-04 14:00:34 +0100216 int error_report; /* Net (+0) or local (+1000000) to distribute */
217#define RXRPC_LOCAL_ERROR_OFFSET 1000000
David Howells17926a72007-04-26 15:48:28 -0700218 struct sockaddr_rxrpc srx; /* remote address */
219
220 /* calculated RTT cache */
221#define RXRPC_RTT_CACHE_SIZE 32
222 suseconds_t rtt; /* current RTT estimate (in uS) */
Eric Dumazet95c96172012-04-15 05:58:06 +0000223 unsigned int rtt_point; /* next entry at which to insert */
224 unsigned int rtt_usage; /* amount of cache actually used */
David Howells17926a72007-04-26 15:48:28 -0700225 suseconds_t rtt_cache[RXRPC_RTT_CACHE_SIZE]; /* calculated RTT cache */
226};
227
228/*
David Howells19ffa012016-04-04 14:00:36 +0100229 * Keys for matching a connection.
230 */
231struct rxrpc_conn_proto {
David Howellse8d70ce2016-06-30 12:16:21 +0100232 union {
233 struct {
234 u32 epoch; /* epoch of this connection */
235 u32 cid; /* connection ID */
236 };
237 u64 index_key;
David Howells19ffa012016-04-04 14:00:36 +0100238 };
239};
240
241struct rxrpc_conn_parameters {
242 struct rxrpc_local *local; /* Representation of local endpoint */
243 struct rxrpc_peer *peer; /* Remote endpoint */
244 struct key *key; /* Security details */
245 bool exclusive; /* T if conn is exclusive */
246 u16 service_id; /* Service ID for this connection */
247 u32 security_level; /* Security level selected */
248};
249
250/*
David Howellsbba304d2016-06-27 10:32:02 +0100251 * Bits in the connection flags.
252 */
253enum rxrpc_conn_flag {
254 RXRPC_CONN_HAS_IDR, /* Has a client conn ID assigned */
David Howells001c1122016-06-30 10:45:22 +0100255 RXRPC_CONN_IN_SERVICE_CONNS, /* Conn is in peer->service_conns */
256 RXRPC_CONN_IN_CLIENT_CONNS, /* Conn is in local->client_conns */
David Howellsbba304d2016-06-27 10:32:02 +0100257};
258
259/*
260 * Events that can be raised upon a connection.
261 */
262enum rxrpc_conn_event {
263 RXRPC_CONN_EV_CHALLENGE, /* Send challenge packet */
264};
265
266/*
267 * The connection protocol state.
268 */
269enum rxrpc_conn_proto_state {
270 RXRPC_CONN_UNUSED, /* Connection not yet attempted */
271 RXRPC_CONN_CLIENT, /* Client connection */
272 RXRPC_CONN_SERVICE_UNSECURED, /* Service unsecured connection */
273 RXRPC_CONN_SERVICE_CHALLENGING, /* Service challenging for security */
274 RXRPC_CONN_SERVICE, /* Service secured connection */
275 RXRPC_CONN_REMOTELY_ABORTED, /* Conn aborted by peer */
276 RXRPC_CONN_LOCALLY_ABORTED, /* Conn aborted locally */
277 RXRPC_CONN_NETWORK_ERROR, /* Conn terminated by network error */
278 RXRPC_CONN__NR_STATES
279};
280
281/*
David Howells17926a72007-04-26 15:48:28 -0700282 * RxRPC connection definition
David Howellsaa390bb2016-06-17 10:06:56 +0100283 * - matched by { local, peer, epoch, conn_id, direction }
David Howells17926a72007-04-26 15:48:28 -0700284 * - each connection can only handle four simultaneous calls
285 */
286struct rxrpc_connection {
David Howells19ffa012016-04-04 14:00:36 +0100287 struct rxrpc_conn_proto proto;
288 struct rxrpc_conn_parameters params;
289
David Howells999b69f2016-06-17 15:42:35 +0100290 spinlock_t channel_lock;
David Howellsa1399f82016-06-27 14:39:44 +0100291
292 struct rxrpc_channel {
293 struct rxrpc_call __rcu *call; /* Active call */
294 u32 call_id; /* ID of current call */
295 u32 call_counter; /* Call ID counter */
296 u32 last_call; /* ID of last call */
297 u32 last_result; /* Result of last call (0/abort) */
298 } channels[RXRPC_MAXCALLS];
David Howells999b69f2016-06-17 15:42:35 +0100299 wait_queue_head_t channel_wq; /* queue to wait for channel to become available */
300
David Howellsdee46362016-06-27 17:11:19 +0100301 struct rcu_head rcu;
David Howells17926a72007-04-26 15:48:28 -0700302 struct work_struct processor; /* connection event processor */
David Howells999b69f2016-06-17 15:42:35 +0100303 union {
304 struct rb_node client_node; /* Node in local->client_conns */
David Howellsaa390bb2016-06-17 10:06:56 +0100305 struct rb_node service_node; /* Node in peer->service_conns */
David Howells999b69f2016-06-17 15:42:35 +0100306 };
David Howells17926a72007-04-26 15:48:28 -0700307 struct list_head link; /* link in master connection list */
David Howells17926a72007-04-26 15:48:28 -0700308 struct sk_buff_head rx_queue; /* received conn-level packets */
David Howells648af7f2016-04-07 17:23:51 +0100309 const struct rxrpc_security *security; /* applied security module */
David Howells17926a72007-04-26 15:48:28 -0700310 struct key *server_key; /* security for this service */
Herbert Xu1afe5932016-01-24 21:19:01 +0800311 struct crypto_skcipher *cipher; /* encryption handle */
David Howells17926a72007-04-26 15:48:28 -0700312 struct rxrpc_crypt csum_iv; /* packet checksum base */
David Howells4a3388c2016-04-04 14:00:37 +0100313 unsigned long flags;
David Howells17926a72007-04-26 15:48:28 -0700314 unsigned long events;
David Howells999b69f2016-06-17 15:42:35 +0100315 unsigned long put_time; /* Time at which last put */
David Howells17926a72007-04-26 15:48:28 -0700316 spinlock_t state_lock; /* state-change lock */
317 atomic_t usage;
David Howellsbba304d2016-06-27 10:32:02 +0100318 enum rxrpc_conn_proto_state state : 8; /* current state of connection */
David Howellsdc44b3a2016-04-07 17:23:30 +0100319 u32 local_abort; /* local abort code */
320 u32 remote_abort; /* remote abort code */
321 int error; /* local error incurred */
David Howells17926a72007-04-26 15:48:28 -0700322 int debug_id; /* debug ID for printks */
David Howells17926a72007-04-26 15:48:28 -0700323 atomic_t serial; /* packet serial number counter */
324 atomic_t hi_serial; /* highest serial number received */
David Howells999b69f2016-06-17 15:42:35 +0100325 atomic_t avail_chans; /* number of channels available */
David Howells17926a72007-04-26 15:48:28 -0700326 u8 size_align; /* data size alignment (for security) */
327 u8 header_size; /* rxrpc + security header size */
328 u8 security_size; /* security header size */
David Howells17926a72007-04-26 15:48:28 -0700329 u32 security_nonce; /* response re-use preventer */
David Howells17926a72007-04-26 15:48:28 -0700330 u8 security_ix; /* security type */
David Howells17926a72007-04-26 15:48:28 -0700331 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
332};
333
334/*
David Howells5b8848d2016-03-04 15:53:46 +0000335 * Flags in call->flags.
336 */
337enum rxrpc_call_flag {
338 RXRPC_CALL_RELEASED, /* call has been released - no more message to userspace */
339 RXRPC_CALL_TERMINAL_MSG, /* call has given the socket its final message */
340 RXRPC_CALL_RCVD_LAST, /* all packets received */
341 RXRPC_CALL_RUN_RTIMER, /* Tx resend timer started */
342 RXRPC_CALL_TX_SOFT_ACK, /* sent some soft ACKs */
343 RXRPC_CALL_PROC_BUSY, /* the processor is busy */
344 RXRPC_CALL_INIT_ACCEPT, /* acceptance was initiated */
345 RXRPC_CALL_HAS_USERID, /* has a user ID attached */
346 RXRPC_CALL_EXPECT_OOS, /* expect out of sequence packets */
347};
348
349/*
350 * Events that can be raised on a call.
351 */
352enum rxrpc_call_event {
David Howells4c198ad2016-03-04 15:53:46 +0000353 RXRPC_CALL_EV_RCVD_ACKALL, /* ACKALL or reply received */
354 RXRPC_CALL_EV_RCVD_BUSY, /* busy packet received */
355 RXRPC_CALL_EV_RCVD_ABORT, /* abort packet received */
356 RXRPC_CALL_EV_RCVD_ERROR, /* network error received */
357 RXRPC_CALL_EV_ACK_FINAL, /* need to generate final ACK (and release call) */
358 RXRPC_CALL_EV_ACK, /* need to generate ACK */
359 RXRPC_CALL_EV_REJECT_BUSY, /* need to generate busy message */
360 RXRPC_CALL_EV_ABORT, /* need to generate abort */
361 RXRPC_CALL_EV_CONN_ABORT, /* local connection abort generated */
362 RXRPC_CALL_EV_RESEND_TIMER, /* Tx resend timer expired */
363 RXRPC_CALL_EV_RESEND, /* Tx resend required */
364 RXRPC_CALL_EV_DRAIN_RX_OOS, /* drain the Rx out of sequence queue */
365 RXRPC_CALL_EV_LIFE_TIMER, /* call's lifetimer ran out */
366 RXRPC_CALL_EV_ACCEPTED, /* incoming call accepted by userspace app */
367 RXRPC_CALL_EV_SECURED, /* incoming call's connection is now secure */
368 RXRPC_CALL_EV_POST_ACCEPT, /* need to post an "accept?" message to the app */
369 RXRPC_CALL_EV_RELEASE, /* need to release the call's resources */
David Howells5b8848d2016-03-04 15:53:46 +0000370};
371
372/*
373 * The states that a call can be in.
374 */
375enum rxrpc_call_state {
David Howells999b69f2016-06-17 15:42:35 +0100376 RXRPC_CALL_UNINITIALISED,
377 RXRPC_CALL_CLIENT_AWAIT_CONN, /* - client waiting for connection to become available */
David Howells5b8848d2016-03-04 15:53:46 +0000378 RXRPC_CALL_CLIENT_SEND_REQUEST, /* - client sending request phase */
379 RXRPC_CALL_CLIENT_AWAIT_REPLY, /* - client awaiting reply */
380 RXRPC_CALL_CLIENT_RECV_REPLY, /* - client receiving reply phase */
381 RXRPC_CALL_CLIENT_FINAL_ACK, /* - client sending final ACK phase */
382 RXRPC_CALL_SERVER_SECURING, /* - server securing request connection */
383 RXRPC_CALL_SERVER_ACCEPTING, /* - server accepting request */
384 RXRPC_CALL_SERVER_RECV_REQUEST, /* - server receiving request */
385 RXRPC_CALL_SERVER_ACK_REQUEST, /* - server pending ACK of request */
386 RXRPC_CALL_SERVER_SEND_REPLY, /* - server sending reply */
387 RXRPC_CALL_SERVER_AWAIT_ACK, /* - server awaiting final ACK */
388 RXRPC_CALL_COMPLETE, /* - call completed */
389 RXRPC_CALL_SERVER_BUSY, /* - call rejected by busy server */
390 RXRPC_CALL_REMOTELY_ABORTED, /* - call aborted by peer */
391 RXRPC_CALL_LOCALLY_ABORTED, /* - call aborted locally on error or close */
392 RXRPC_CALL_NETWORK_ERROR, /* - call terminated by network error */
393 RXRPC_CALL_DEAD, /* - call is dead */
394 NR__RXRPC_CALL_STATES
395};
396
397/*
David Howells17926a72007-04-26 15:48:28 -0700398 * RxRPC call definition
399 * - matched by { connection, call_id }
400 */
401struct rxrpc_call {
David Howellsdee46362016-06-27 17:11:19 +0100402 struct rcu_head rcu;
David Howells17926a72007-04-26 15:48:28 -0700403 struct rxrpc_connection *conn; /* connection carrying call */
404 struct rxrpc_sock *socket; /* socket responsible */
405 struct timer_list lifetimer; /* lifetime remaining on call */
406 struct timer_list deadspan; /* reap timer for re-ACK'ing, etc */
407 struct timer_list ack_timer; /* ACK generation timer */
408 struct timer_list resend_timer; /* Tx resend timer */
409 struct work_struct destroyer; /* call destroyer */
410 struct work_struct processor; /* packet processor and ACK generator */
411 struct list_head link; /* link in master call list */
David Howellsf66d7492016-04-04 14:00:34 +0100412 struct hlist_node error_link; /* link in error distribution list */
David Howells17926a72007-04-26 15:48:28 -0700413 struct list_head accept_link; /* calls awaiting acceptance */
414 struct rb_node sock_node; /* node in socket call tree */
David Howells17926a72007-04-26 15:48:28 -0700415 struct sk_buff_head rx_queue; /* received packets */
416 struct sk_buff_head rx_oos_queue; /* packets received out of sequence */
417 struct sk_buff *tx_pending; /* Tx socket buffer being filled */
418 wait_queue_head_t tx_waitq; /* wait for Tx window space to become available */
Herbert Xua2636292016-06-26 14:55:24 -0700419 __be32 crypto_buf[2]; /* Temporary packet crypto buffer */
David Howells17926a72007-04-26 15:48:28 -0700420 unsigned long user_call_ID; /* user-defined call ID */
421 unsigned long creation_jif; /* time of call creation */
422 unsigned long flags;
David Howells17926a72007-04-26 15:48:28 -0700423 unsigned long events;
David Howells17926a72007-04-26 15:48:28 -0700424 spinlock_t lock;
425 rwlock_t state_lock; /* lock for state transition */
426 atomic_t usage;
427 atomic_t sequence; /* Tx data packet sequence counter */
David Howellsdc44b3a2016-04-07 17:23:30 +0100428 u32 local_abort; /* local abort code */
429 u32 remote_abort; /* remote abort code */
David Howellsf66d7492016-04-04 14:00:34 +0100430 int error_report; /* Network error (ICMP/local transport) */
431 int error; /* Local error incurred */
David Howells5b8848d2016-03-04 15:53:46 +0000432 enum rxrpc_call_state state : 8; /* current state of call */
David Howells17926a72007-04-26 15:48:28 -0700433 int debug_id; /* debug ID for printks */
434 u8 channel; /* connection channel occupied by this call */
435
436 /* transmission-phase ACK management */
David Howells4e36a952009-09-16 00:01:13 -0700437 u8 acks_head; /* offset into window of first entry */
438 u8 acks_tail; /* offset into window of last entry */
439 u8 acks_winsz; /* size of un-ACK'd window */
440 u8 acks_unacked; /* lowest unacked packet in last ACK received */
David Howells17926a72007-04-26 15:48:28 -0700441 int acks_latest; /* serial number of latest ACK received */
442 rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */
443 unsigned long *acks_window; /* sent packet window
444 * - elements are pointers with LSB set if ACK'd
445 */
446
447 /* receive-phase ACK management */
448 rxrpc_seq_t rx_data_expect; /* next data seq ID expected to be received */
449 rxrpc_seq_t rx_data_post; /* next data seq ID expected to be posted */
450 rxrpc_seq_t rx_data_recv; /* last data seq ID encountered by recvmsg */
451 rxrpc_seq_t rx_data_eaten; /* last data seq ID consumed by recvmsg */
452 rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */
453 rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */
David Howells0d12f8a2016-03-04 15:53:46 +0000454 rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */
David Howells4e36a952009-09-16 00:01:13 -0700455 u8 ackr_reason; /* reason to ACK */
David Howells0d12f8a2016-03-04 15:53:46 +0000456 rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */
David Howells17926a72007-04-26 15:48:28 -0700457 atomic_t ackr_not_idle; /* number of packets in Rx queue */
458
459 /* received packet records, 1 bit per record */
460#define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG)
461 unsigned long ackr_window[RXRPC_ACKR_WINDOW_ASZ + 1];
462
Tim Smith77276402014-03-03 23:04:45 +0000463 struct hlist_node hash_node;
464 unsigned long hash_key; /* Full hash key */
465 u8 in_clientflag; /* Copy of conn->in_clientflag for hashing */
466 struct rxrpc_local *local; /* Local endpoint. Used for hashing. */
David Howells19ffa012016-04-04 14:00:36 +0100467 sa_family_t family; /* Frame protocol */
David Howells0d12f8a2016-03-04 15:53:46 +0000468 u32 call_id; /* call ID on connection */
469 u32 cid; /* connection ID plus channel index */
470 u32 epoch; /* epoch of this connection */
471 u16 service_id; /* service ID */
Tim Smith77276402014-03-03 23:04:45 +0000472 union { /* Peer IP address for hashing */
473 __be32 ipv4_addr;
474 __u8 ipv6_addr[16]; /* Anticipates eventual IPv6 support */
475 } peer_ip;
David Howells17926a72007-04-26 15:48:28 -0700476};
477
478/*
David Howells17926a72007-04-26 15:48:28 -0700479 * locally abort an RxRPC call
480 */
481static inline void rxrpc_abort_call(struct rxrpc_call *call, u32 abort_code)
482{
483 write_lock_bh(&call->state_lock);
484 if (call->state < RXRPC_CALL_COMPLETE) {
David Howellsdc44b3a2016-04-07 17:23:30 +0100485 call->local_abort = abort_code;
David Howells17926a72007-04-26 15:48:28 -0700486 call->state = RXRPC_CALL_LOCALLY_ABORTED;
David Howells4c198ad2016-03-04 15:53:46 +0000487 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700488 }
489 write_unlock_bh(&call->state_lock);
490}
491
492/*
David Howells651350d2007-04-26 15:50:17 -0700493 * af_rxrpc.c
David Howells17926a72007-04-26 15:48:28 -0700494 */
David Howells651350d2007-04-26 15:50:17 -0700495extern atomic_t rxrpc_n_skbs;
David Howells0d12f8a2016-03-04 15:53:46 +0000496extern u32 rxrpc_epoch;
David Howells651350d2007-04-26 15:50:17 -0700497extern atomic_t rxrpc_debug_id;
498extern struct workqueue_struct *rxrpc_workqueue;
David Howells17926a72007-04-26 15:48:28 -0700499
500/*
David Howells0d81a512016-06-13 13:30:30 +0100501 * call_accept.c
David Howells17926a72007-04-26 15:48:28 -0700502 */
David Howells4f95dd72016-04-04 14:00:35 +0100503void rxrpc_accept_incoming_calls(struct rxrpc_local *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700504struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long);
505int rxrpc_reject_call(struct rxrpc_sock *);
David Howells17926a72007-04-26 15:48:28 -0700506
507/*
David Howells0d81a512016-06-13 13:30:30 +0100508 * call_event.c
David Howells17926a72007-04-26 15:48:28 -0700509 */
David Howells0d12f8a2016-03-04 15:53:46 +0000510void __rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool);
511void rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool);
Joe Perchesc1b12032013-10-18 13:48:25 -0700512void rxrpc_process_call(struct work_struct *);
David Howells17926a72007-04-26 15:48:28 -0700513
514/*
David Howells0d81a512016-06-13 13:30:30 +0100515 * call_object.c
David Howells17926a72007-04-26 15:48:28 -0700516 */
David Howellsdad8aff2016-03-09 23:22:56 +0000517extern unsigned int rxrpc_max_call_lifetime;
518extern unsigned int rxrpc_dead_call_expiry;
David Howells17926a72007-04-26 15:48:28 -0700519extern struct kmem_cache *rxrpc_call_jar;
520extern struct list_head rxrpc_calls;
521extern rwlock_t rxrpc_call_lock;
522
David Howells0d12f8a2016-03-04 15:53:46 +0000523struct rxrpc_call *rxrpc_find_call_hash(struct rxrpc_host_header *,
524 void *, sa_family_t, const void *);
David Howells2341e072016-06-09 23:02:51 +0100525struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
526struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
David Howells19ffa012016-04-04 14:00:36 +0100527 struct rxrpc_conn_parameters *,
David Howells999b69f2016-06-17 15:42:35 +0100528 struct sockaddr_rxrpc *,
David Howells2341e072016-06-09 23:02:51 +0100529 unsigned long, gfp_t);
Joe Perchesc1b12032013-10-18 13:48:25 -0700530struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *,
531 struct rxrpc_connection *,
David Howells42886ff2016-06-16 13:31:07 +0100532 struct sk_buff *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700533void rxrpc_release_call(struct rxrpc_call *);
534void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
535void __rxrpc_put_call(struct rxrpc_call *);
536void __exit rxrpc_destroy_all_calls(void);
David Howells17926a72007-04-26 15:48:28 -0700537
538/*
David Howells4a3388c2016-04-04 14:00:37 +0100539 * conn_client.c
540 */
541extern struct idr rxrpc_client_conn_ids;
542
David Howellseb9b9d22016-06-27 10:32:02 +0100543void rxrpc_destroy_client_conn_ids(void);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100544int rxrpc_connect_call(struct rxrpc_call *, struct rxrpc_conn_parameters *,
545 struct sockaddr_rxrpc *, gfp_t);
David Howells001c1122016-06-30 10:45:22 +0100546void rxrpc_unpublish_client_conn(struct rxrpc_connection *);
David Howells4a3388c2016-04-04 14:00:37 +0100547
548/*
David Howells0d81a512016-06-13 13:30:30 +0100549 * conn_event.c
550 */
551void rxrpc_process_connection(struct work_struct *);
552void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *);
David Howells4f95dd72016-04-04 14:00:35 +0100553void rxrpc_reject_packets(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100554
555/*
556 * conn_object.c
David Howells17926a72007-04-26 15:48:28 -0700557 */
David Howellsdad8aff2016-03-09 23:22:56 +0000558extern unsigned int rxrpc_connection_expiry;
David Howells17926a72007-04-26 15:48:28 -0700559extern struct list_head rxrpc_connections;
560extern rwlock_t rxrpc_connection_lock;
561
David Howells7877a4a2016-04-04 14:00:40 +0100562void rxrpc_conn_hash_proto_key(struct rxrpc_conn_proto *);
563void rxrpc_extract_conn_params(struct rxrpc_conn_proto *,
564 struct rxrpc_local *, struct sk_buff *);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100565struct rxrpc_connection *rxrpc_alloc_connection(gfp_t);
David Howellsaa390bb2016-06-17 10:06:56 +0100566struct rxrpc_connection *rxrpc_find_connection(struct rxrpc_local *,
567 struct rxrpc_peer *,
568 struct sk_buff *);
David Howellsa1399f82016-06-27 14:39:44 +0100569void __rxrpc_disconnect_call(struct rxrpc_call *);
David Howells999b69f2016-06-17 15:42:35 +0100570void rxrpc_disconnect_call(struct rxrpc_call *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700571void rxrpc_put_connection(struct rxrpc_connection *);
572void __exit rxrpc_destroy_all_connections(void);
David Howells17926a72007-04-26 15:48:28 -0700573
David Howells19ffa012016-04-04 14:00:36 +0100574static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
575{
576 return conn->out_clientflag;
577}
578
579static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
580{
David Howellse8d70ce2016-06-30 12:16:21 +0100581 return !rxrpc_conn_is_client(conn);
David Howells19ffa012016-04-04 14:00:36 +0100582}
583
David Howells5627cc82016-04-04 14:00:38 +0100584static inline void rxrpc_get_connection(struct rxrpc_connection *conn)
585{
586 atomic_inc(&conn->usage);
587}
588
David Howells2c4579e2016-06-27 10:32:03 +0100589static inline
590struct rxrpc_connection *rxrpc_get_connection_maybe(struct rxrpc_connection *conn)
591{
592 return atomic_inc_not_zero(&conn->usage) ? conn : NULL;
593}
David Howells5acbee42016-06-27 10:32:02 +0100594
595static inline void rxrpc_queue_conn(struct rxrpc_connection *conn)
596{
David Howells2c4579e2016-06-27 10:32:03 +0100597 if (rxrpc_get_connection_maybe(conn) &&
598 !rxrpc_queue_work(&conn->processor))
599 rxrpc_put_connection(conn);
David Howells5acbee42016-06-27 10:32:02 +0100600}
601
David Howells17926a72007-04-26 15:48:28 -0700602/*
David Howells7877a4a2016-04-04 14:00:40 +0100603 * conn_service.c
604 */
605struct rxrpc_connection *rxrpc_incoming_connection(struct rxrpc_local *,
David Howellsd991b4a2016-06-29 14:40:39 +0100606 struct sockaddr_rxrpc *,
David Howells7877a4a2016-04-04 14:00:40 +0100607 struct sk_buff *);
David Howells001c1122016-06-30 10:45:22 +0100608void rxrpc_unpublish_service_conn(struct rxrpc_connection *);
David Howells7877a4a2016-04-04 14:00:40 +0100609
610/*
David Howells0d81a512016-06-13 13:30:30 +0100611 * input.c
David Howells17926a72007-04-26 15:48:28 -0700612 */
David S. Miller676d2362014-04-11 16:15:36 -0400613void rxrpc_data_ready(struct sock *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700614int rxrpc_queue_rcv_skb(struct rxrpc_call *, struct sk_buff *, bool, bool);
615void rxrpc_fast_process_packet(struct rxrpc_call *, struct sk_buff *);
David Howells17926a72007-04-26 15:48:28 -0700616
617/*
David Howells0d81a512016-06-13 13:30:30 +0100618 * insecure.c
David Howells17926a72007-04-26 15:48:28 -0700619 */
David Howells0d81a512016-06-13 13:30:30 +0100620extern const struct rxrpc_security rxrpc_no_security;
David Howells17926a72007-04-26 15:48:28 -0700621
622/*
David Howells0d81a512016-06-13 13:30:30 +0100623 * key.c
David Howells17926a72007-04-26 15:48:28 -0700624 */
625extern struct key_type key_type_rxrpc;
626extern struct key_type key_type_rxrpc_s;
627
Joe Perchesc1b12032013-10-18 13:48:25 -0700628int rxrpc_request_key(struct rxrpc_sock *, char __user *, int);
629int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int);
630int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time_t,
631 u32);
David Howells17926a72007-04-26 15:48:28 -0700632
633/*
David Howells87563612016-04-04 14:00:34 +0100634 * local_event.c
635 */
David Howells4f95dd72016-04-04 14:00:35 +0100636extern void rxrpc_process_local_events(struct rxrpc_local *);
David Howells87563612016-04-04 14:00:34 +0100637
638/*
David Howells0d81a512016-06-13 13:30:30 +0100639 * local_object.c
David Howells17926a72007-04-26 15:48:28 -0700640 */
David Howells4f95dd72016-04-04 14:00:35 +0100641struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *);
642void __rxrpc_put_local(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100643void __exit rxrpc_destroy_all_locals(void);
David Howellse0e4d822016-04-07 17:23:58 +0100644
David Howells4f95dd72016-04-04 14:00:35 +0100645static inline void rxrpc_get_local(struct rxrpc_local *local)
646{
647 atomic_inc(&local->usage);
648}
649
650static inline
651struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
652{
653 return atomic_inc_not_zero(&local->usage) ? local : NULL;
654}
655
656static inline void rxrpc_put_local(struct rxrpc_local *local)
657{
David Howells5627cc82016-04-04 14:00:38 +0100658 if (local && atomic_dec_and_test(&local->usage))
David Howells4f95dd72016-04-04 14:00:35 +0100659 __rxrpc_put_local(local);
660}
661
David Howells5acbee42016-06-27 10:32:02 +0100662static inline void rxrpc_queue_local(struct rxrpc_local *local)
663{
664 rxrpc_queue_work(&local->processor);
665}
666
David Howellse0e4d822016-04-07 17:23:58 +0100667/*
David Howells8e688d92016-04-07 17:23:16 +0100668 * misc.c
669 */
David Howells0e119b42016-06-10 22:30:37 +0100670extern unsigned int rxrpc_max_backlog __read_mostly;
David Howells8e688d92016-04-07 17:23:16 +0100671extern unsigned int rxrpc_requested_ack_delay;
672extern unsigned int rxrpc_soft_ack_delay;
673extern unsigned int rxrpc_idle_ack_delay;
674extern unsigned int rxrpc_rx_window_size;
675extern unsigned int rxrpc_rx_mtu;
676extern unsigned int rxrpc_rx_jumbo_max;
677
David Howells5b3e87f2016-04-07 17:23:23 +0100678extern const char *const rxrpc_pkts[];
David Howells8e688d92016-04-07 17:23:16 +0100679extern const s8 rxrpc_ack_priority[];
680
681extern const char *rxrpc_acks(u8 reason);
682
683/*
David Howells0d81a512016-06-13 13:30:30 +0100684 * output.c
685 */
686extern unsigned int rxrpc_resend_timeout;
687
David Howells985a5c82016-06-17 11:53:37 +0100688int rxrpc_send_data_packet(struct rxrpc_connection *, struct sk_buff *);
David Howells0d81a512016-06-13 13:30:30 +0100689int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
690
691/*
David Howellsabe89ef2016-04-04 14:00:32 +0100692 * peer_event.c
David Howells0d81a512016-06-13 13:30:30 +0100693 */
David Howellsabe89ef2016-04-04 14:00:32 +0100694void rxrpc_error_report(struct sock *);
David Howellsf66d7492016-04-04 14:00:34 +0100695void rxrpc_peer_error_distributor(struct work_struct *);
David Howells0d81a512016-06-13 13:30:30 +0100696
697/*
698 * peer_object.c
699 */
David Howellsbe6e6702016-04-04 14:00:32 +0100700struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
701 const struct sockaddr_rxrpc *);
702struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_local *,
703 struct sockaddr_rxrpc *, gfp_t);
704struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
705
706static inline void rxrpc_get_peer(struct rxrpc_peer *peer)
707{
708 atomic_inc(&peer->usage);
709}
710
711static inline
712struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
713{
714 return atomic_inc_not_zero(&peer->usage) ? peer : NULL;
715}
716
717extern void __rxrpc_put_peer(struct rxrpc_peer *peer);
718static inline void rxrpc_put_peer(struct rxrpc_peer *peer)
719{
David Howells5627cc82016-04-04 14:00:38 +0100720 if (peer && atomic_dec_and_test(&peer->usage))
David Howellsbe6e6702016-04-04 14:00:32 +0100721 __rxrpc_put_peer(peer);
722}
David Howells0d81a512016-06-13 13:30:30 +0100723
724/*
725 * proc.c
726 */
727extern const char *const rxrpc_call_states[];
728extern const struct file_operations rxrpc_call_seq_fops;
729extern const struct file_operations rxrpc_connection_seq_fops;
730
731/*
732 * recvmsg.c
733 */
734void rxrpc_remove_user_ID(struct rxrpc_sock *, struct rxrpc_call *);
735int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
736
737/*
David Howells648af7f2016-04-07 17:23:51 +0100738 * rxkad.c
739 */
740#ifdef CONFIG_RXKAD
741extern const struct rxrpc_security rxkad;
742#endif
743
744/*
David Howells0d81a512016-06-13 13:30:30 +0100745 * security.c
746 */
747int __init rxrpc_init_security(void);
748void rxrpc_exit_security(void);
749int rxrpc_init_client_conn_security(struct rxrpc_connection *);
750int rxrpc_init_server_conn_security(struct rxrpc_connection *);
751
752/*
753 * skbuff.c
754 */
755void rxrpc_packet_destructor(struct sk_buff *);
756
757/*
David Howells5873c082014-02-07 18:58:44 +0000758 * sysctl.c
759 */
760#ifdef CONFIG_SYSCTL
761extern int __init rxrpc_sysctl_init(void);
762extern void rxrpc_sysctl_exit(void);
763#else
764static inline int __init rxrpc_sysctl_init(void) { return 0; }
765static inline void rxrpc_sysctl_exit(void) {}
766#endif
767
768/*
David Howellsbe6e6702016-04-04 14:00:32 +0100769 * utils.c
770 */
771void rxrpc_get_addr_from_skb(struct rxrpc_local *, const struct sk_buff *,
772 struct sockaddr_rxrpc *);
David Howellsd991b4a2016-06-29 14:40:39 +0100773int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
David Howellsbe6e6702016-04-04 14:00:32 +0100774
775/*
David Howells17926a72007-04-26 15:48:28 -0700776 * debug tracing
777 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000778extern unsigned int rxrpc_debug;
David Howells17926a72007-04-26 15:48:28 -0700779
780#define dbgprintk(FMT,...) \
Sven Schnelle9f389f42008-04-03 10:45:30 +0100781 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700782
Harvey Harrison0dc47872008-03-05 20:47:47 -0800783#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
784#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700785#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
786#define kproto(FMT,...) dbgprintk("### "FMT ,##__VA_ARGS__)
787#define knet(FMT,...) dbgprintk("@@@ "FMT ,##__VA_ARGS__)
788
789
790#if defined(__KDEBUG)
791#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
792#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
793#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
794#define _proto(FMT,...) kproto(FMT,##__VA_ARGS__)
795#define _net(FMT,...) knet(FMT,##__VA_ARGS__)
796
797#elif defined(CONFIG_AF_RXRPC_DEBUG)
798#define RXRPC_DEBUG_KENTER 0x01
799#define RXRPC_DEBUG_KLEAVE 0x02
800#define RXRPC_DEBUG_KDEBUG 0x04
801#define RXRPC_DEBUG_KPROTO 0x08
802#define RXRPC_DEBUG_KNET 0x10
803
804#define _enter(FMT,...) \
805do { \
806 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER)) \
807 kenter(FMT,##__VA_ARGS__); \
808} while (0)
809
810#define _leave(FMT,...) \
811do { \
812 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE)) \
813 kleave(FMT,##__VA_ARGS__); \
814} while (0)
815
816#define _debug(FMT,...) \
817do { \
818 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG)) \
819 kdebug(FMT,##__VA_ARGS__); \
820} while (0)
821
822#define _proto(FMT,...) \
823do { \
824 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO)) \
825 kproto(FMT,##__VA_ARGS__); \
826} while (0)
827
828#define _net(FMT,...) \
829do { \
830 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET)) \
831 knet(FMT,##__VA_ARGS__); \
832} while (0)
833
834#else
David Howells12fdff32010-08-12 16:54:57 +0100835#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
836#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
837#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
838#define _proto(FMT,...) no_printk("### "FMT ,##__VA_ARGS__)
839#define _net(FMT,...) no_printk("@@@ "FMT ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700840#endif
841
842/*
843 * debug assertion checking
844 */
845#if 1 // defined(__KDEBUGALL)
846
847#define ASSERT(X) \
848do { \
849 if (unlikely(!(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700850 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -0700851 BUG(); \
852 } \
David Howellsb4f13422016-03-04 15:56:19 +0000853} while (0)
David Howells17926a72007-04-26 15:48:28 -0700854
855#define ASSERTCMP(X, OP, Y) \
856do { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700857 unsigned long _x = (unsigned long)(X); \
858 unsigned long _y = (unsigned long)(Y); \
859 if (unlikely(!(_x OP _y))) { \
860 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
861 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -0700862 BUG(); \
863 } \
David Howellsb4f13422016-03-04 15:56:19 +0000864} while (0)
David Howells17926a72007-04-26 15:48:28 -0700865
866#define ASSERTIF(C, X) \
867do { \
868 if (unlikely((C) && !(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700869 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -0700870 BUG(); \
871 } \
David Howellsb4f13422016-03-04 15:56:19 +0000872} while (0)
David Howells17926a72007-04-26 15:48:28 -0700873
874#define ASSERTIFCMP(C, X, OP, Y) \
875do { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700876 unsigned long _x = (unsigned long)(X); \
877 unsigned long _y = (unsigned long)(Y); \
878 if (unlikely((C) && !(_x OP _y))) { \
879 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
880 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -0700881 BUG(); \
882 } \
David Howellsb4f13422016-03-04 15:56:19 +0000883} while (0)
David Howells17926a72007-04-26 15:48:28 -0700884
885#else
886
887#define ASSERT(X) \
888do { \
David Howellsb4f13422016-03-04 15:56:19 +0000889} while (0)
David Howells17926a72007-04-26 15:48:28 -0700890
891#define ASSERTCMP(X, OP, Y) \
892do { \
David Howellsb4f13422016-03-04 15:56:19 +0000893} while (0)
David Howells17926a72007-04-26 15:48:28 -0700894
895#define ASSERTIF(C, X) \
896do { \
David Howellsb4f13422016-03-04 15:56:19 +0000897} while (0)
David Howells17926a72007-04-26 15:48:28 -0700898
899#define ASSERTIFCMP(C, X, OP, Y) \
900do { \
David Howellsb4f13422016-03-04 15:56:19 +0000901} while (0)
David Howells17926a72007-04-26 15:48:28 -0700902
903#endif /* __KDEBUGALL */
904
905/*
906 * socket buffer accounting / leak finding
907 */
908static inline void __rxrpc_new_skb(struct sk_buff *skb, const char *fn)
909{
910 //_net("new skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
911 //atomic_inc(&rxrpc_n_skbs);
912}
913
914#define rxrpc_new_skb(skb) __rxrpc_new_skb((skb), __func__)
915
916static inline void __rxrpc_kill_skb(struct sk_buff *skb, const char *fn)
917{
918 //_net("kill skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
919 //atomic_dec(&rxrpc_n_skbs);
920}
921
922#define rxrpc_kill_skb(skb) __rxrpc_kill_skb((skb), __func__)
923
924static inline void __rxrpc_free_skb(struct sk_buff *skb, const char *fn)
925{
926 if (skb) {
927 CHECK_SLAB_OKAY(&skb->users);
928 //_net("free skb %p %s [%d]",
929 // skb, fn, atomic_read(&rxrpc_n_skbs));
930 //atomic_dec(&rxrpc_n_skbs);
931 kfree_skb(skb);
932 }
933}
934
935#define rxrpc_free_skb(skb) __rxrpc_free_skb((skb), __func__)
936
937static inline void rxrpc_purge_queue(struct sk_buff_head *list)
938{
939 struct sk_buff *skb;
940 while ((skb = skb_dequeue((list))) != NULL)
941 rxrpc_free_skb(skb);
942}
943
David Howells17926a72007-04-26 15:48:28 -0700944#define rxrpc_get_call(CALL) \
945do { \
946 CHECK_SLAB_OKAY(&(CALL)->usage); \
947 if (atomic_inc_return(&(CALL)->usage) == 1) \
948 BUG(); \
David Howellsb4f13422016-03-04 15:56:19 +0000949} while (0)
David Howells17926a72007-04-26 15:48:28 -0700950
951#define rxrpc_put_call(CALL) \
952do { \
953 __rxrpc_put_call(CALL); \
David Howellsb4f13422016-03-04 15:56:19 +0000954} while (0)