blob: 26fe137d62bb44d4958d208b99ca4962ae1fbc07 [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)
38#define rxrpc_queue_conn(CONN) rxrpc_queue_work(&(CONN)->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 */
144 void (*prime_packet_security)(struct rxrpc_connection *);
145
146 /* impose security on a packet */
147 int (*secure_packet)(const struct rxrpc_call *,
148 struct sk_buff *,
149 size_t,
150 void *);
151
152 /* verify the security on a received packet */
153 int (*verify_packet)(const struct rxrpc_call *, struct sk_buff *,
154 u32 *);
155
156 /* issue a challenge */
157 int (*issue_challenge)(struct rxrpc_connection *);
158
159 /* respond to a challenge */
160 int (*respond_to_challenge)(struct rxrpc_connection *,
161 struct sk_buff *,
162 u32 *);
163
164 /* verify a response */
165 int (*verify_response)(struct rxrpc_connection *,
166 struct sk_buff *,
167 u32 *);
168
169 /* clear connection security */
170 void (*clear)(struct rxrpc_connection *);
171};
172
173/*
David Howells4f95dd72016-04-04 14:00:35 +0100174 * RxRPC local transport endpoint description
175 * - owned by a single AF_RXRPC socket
176 * - pointed to by transport socket struct sk_user_data
David Howells17926a72007-04-26 15:48:28 -0700177 */
178struct rxrpc_local {
David Howells4f95dd72016-04-04 14:00:35 +0100179 struct rcu_head rcu;
180 atomic_t usage;
181 struct list_head link;
David Howells17926a72007-04-26 15:48:28 -0700182 struct socket *socket; /* my UDP socket */
David Howells4f95dd72016-04-04 14:00:35 +0100183 struct work_struct processor;
David Howells17926a72007-04-26 15:48:28 -0700184 struct list_head services; /* services listening on this endpoint */
David Howells17926a72007-04-26 15:48:28 -0700185 struct rw_semaphore defrag_sem; /* control re-enablement of IP DF bit */
186 struct sk_buff_head accept_queue; /* incoming calls awaiting acceptance */
187 struct sk_buff_head reject_queue; /* packets awaiting rejection */
David Howells44ba0692015-04-01 16:31:26 +0100188 struct sk_buff_head event_queue; /* endpoint event packets awaiting processing */
David Howells999b69f2016-06-17 15:42:35 +0100189 struct rb_root client_conns; /* Client connections by socket params */
190 spinlock_t client_conns_lock; /* Lock for client_conns */
David Howells17926a72007-04-26 15:48:28 -0700191 spinlock_t lock; /* access lock */
192 rwlock_t services_lock; /* lock for services list */
David Howells17926a72007-04-26 15:48:28 -0700193 int debug_id; /* debug ID for printks */
David Howells4f95dd72016-04-04 14:00:35 +0100194 bool dead;
David Howells17926a72007-04-26 15:48:28 -0700195 struct sockaddr_rxrpc srx; /* local address */
196};
197
198/*
199 * RxRPC remote transport endpoint definition
David Howellsbe6e6702016-04-04 14:00:32 +0100200 * - matched by local endpoint, remote port, address and protocol type
David Howells17926a72007-04-26 15:48:28 -0700201 */
202struct rxrpc_peer {
David Howellsbe6e6702016-04-04 14:00:32 +0100203 struct rcu_head rcu; /* This must be first */
204 atomic_t usage;
205 unsigned long hash_key;
206 struct hlist_node hash_link;
207 struct rxrpc_local *local;
David Howellsf66d7492016-04-04 14:00:34 +0100208 struct hlist_head error_targets; /* targets for net error distribution */
209 struct work_struct error_distributor;
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/*
229 * RxRPC point-to-point transport / connection manager definition
230 * - handles a bundle of connections between two endpoints
231 * - matched by { local, peer }
232 */
233struct rxrpc_transport {
234 struct rxrpc_local *local; /* local transport endpoint */
235 struct rxrpc_peer *peer; /* remote transport endpoint */
David Howells17926a72007-04-26 15:48:28 -0700236 struct rb_root server_conns; /* server connections on this transport */
237 struct list_head link; /* link in master session list */
Ksenija Stanojevic22a3f9a2015-09-17 18:12:53 +0200238 unsigned long put_time; /* time at which to reap */
David Howells17926a72007-04-26 15:48:28 -0700239 rwlock_t conn_lock; /* lock for active/dead connections */
240 atomic_t usage;
241 int debug_id; /* debug ID for printks */
David Howells17926a72007-04-26 15:48:28 -0700242};
243
244/*
David Howells19ffa012016-04-04 14:00:36 +0100245 * Keys for matching a connection.
246 */
247struct rxrpc_conn_proto {
248 unsigned long hash_key;
249 struct rxrpc_local *local; /* Representation of local endpoint */
250 u32 epoch; /* epoch of this connection */
251 u32 cid; /* connection ID */
252 u8 in_clientflag; /* RXRPC_CLIENT_INITIATED if we are server */
253 u8 addr_size; /* Size of the address */
254 sa_family_t family; /* Transport protocol */
255 __be16 port; /* Peer UDP/UDP6 port */
256 union { /* Peer address */
257 struct in_addr ipv4_addr;
258 struct in6_addr ipv6_addr;
259 u32 raw_addr[0];
260 };
261};
262
263struct rxrpc_conn_parameters {
264 struct rxrpc_local *local; /* Representation of local endpoint */
265 struct rxrpc_peer *peer; /* Remote endpoint */
266 struct key *key; /* Security details */
267 bool exclusive; /* T if conn is exclusive */
268 u16 service_id; /* Service ID for this connection */
269 u32 security_level; /* Security level selected */
270};
271
272/*
David Howells17926a72007-04-26 15:48:28 -0700273 * RxRPC connection definition
274 * - matched by { transport, service_id, conn_id, direction, key }
275 * - each connection can only handle four simultaneous calls
276 */
277struct rxrpc_connection {
278 struct rxrpc_transport *trans; /* transport session */
David Howells19ffa012016-04-04 14:00:36 +0100279 struct rxrpc_conn_proto proto;
280 struct rxrpc_conn_parameters params;
281
David Howells999b69f2016-06-17 15:42:35 +0100282 spinlock_t channel_lock;
283 struct rxrpc_call *channels[RXRPC_MAXCALLS]; /* active calls */
284 wait_queue_head_t channel_wq; /* queue to wait for channel to become available */
285
David Howells17926a72007-04-26 15:48:28 -0700286 struct work_struct processor; /* connection event processor */
David Howells999b69f2016-06-17 15:42:35 +0100287 union {
288 struct rb_node client_node; /* Node in local->client_conns */
289 struct rb_node service_node; /* Node in trans->server_conns */
290 };
David Howells17926a72007-04-26 15:48:28 -0700291 struct list_head link; /* link in master connection list */
David Howells17926a72007-04-26 15:48:28 -0700292 struct rb_root calls; /* calls on this connection */
293 struct sk_buff_head rx_queue; /* received conn-level packets */
David Howells648af7f2016-04-07 17:23:51 +0100294 const struct rxrpc_security *security; /* applied security module */
David Howells17926a72007-04-26 15:48:28 -0700295 struct key *server_key; /* security for this service */
Herbert Xu1afe5932016-01-24 21:19:01 +0800296 struct crypto_skcipher *cipher; /* encryption handle */
David Howells17926a72007-04-26 15:48:28 -0700297 struct rxrpc_crypt csum_iv; /* packet checksum base */
David Howells4a3388c2016-04-04 14:00:37 +0100298 unsigned long flags;
299#define RXRPC_CONN_HAS_IDR 0 /* - Has a client conn ID assigned */
David Howells17926a72007-04-26 15:48:28 -0700300 unsigned long events;
301#define RXRPC_CONN_CHALLENGE 0 /* send challenge packet */
David Howells999b69f2016-06-17 15:42:35 +0100302 unsigned long put_time; /* Time at which last put */
David Howells17926a72007-04-26 15:48:28 -0700303 rwlock_t lock; /* access lock */
304 spinlock_t state_lock; /* state-change lock */
305 atomic_t usage;
David Howells17926a72007-04-26 15:48:28 -0700306 enum { /* current state of connection */
307 RXRPC_CONN_UNUSED, /* - connection not yet attempted */
308 RXRPC_CONN_CLIENT, /* - client connection */
309 RXRPC_CONN_SERVER_UNSECURED, /* - server unsecured connection */
310 RXRPC_CONN_SERVER_CHALLENGING, /* - server challenging for security */
311 RXRPC_CONN_SERVER, /* - server secured connection */
312 RXRPC_CONN_REMOTELY_ABORTED, /* - conn aborted by peer */
313 RXRPC_CONN_LOCALLY_ABORTED, /* - conn aborted locally */
314 RXRPC_CONN_NETWORK_ERROR, /* - conn terminated by network error */
315 } state;
David Howellsdc44b3a2016-04-07 17:23:30 +0100316 u32 local_abort; /* local abort code */
317 u32 remote_abort; /* remote abort code */
318 int error; /* local error incurred */
David Howells17926a72007-04-26 15:48:28 -0700319 int debug_id; /* debug ID for printks */
Eric Dumazet95c96172012-04-15 05:58:06 +0000320 unsigned int call_counter; /* call ID counter */
David Howells17926a72007-04-26 15:48:28 -0700321 atomic_t serial; /* packet serial number counter */
322 atomic_t hi_serial; /* highest serial number received */
David Howells999b69f2016-06-17 15:42:35 +0100323 atomic_t avail_chans; /* number of channels available */
David Howells17926a72007-04-26 15:48:28 -0700324 u8 size_align; /* data size alignment (for security) */
325 u8 header_size; /* rxrpc + security header size */
326 u8 security_size; /* security header size */
David Howells17926a72007-04-26 15:48:28 -0700327 u32 security_nonce; /* response re-use preventer */
David Howells17926a72007-04-26 15:48:28 -0700328 u8 security_ix; /* security type */
David Howells17926a72007-04-26 15:48:28 -0700329 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
330};
331
332/*
David Howells5b8848d2016-03-04 15:53:46 +0000333 * Flags in call->flags.
334 */
335enum rxrpc_call_flag {
336 RXRPC_CALL_RELEASED, /* call has been released - no more message to userspace */
337 RXRPC_CALL_TERMINAL_MSG, /* call has given the socket its final message */
338 RXRPC_CALL_RCVD_LAST, /* all packets received */
339 RXRPC_CALL_RUN_RTIMER, /* Tx resend timer started */
340 RXRPC_CALL_TX_SOFT_ACK, /* sent some soft ACKs */
341 RXRPC_CALL_PROC_BUSY, /* the processor is busy */
342 RXRPC_CALL_INIT_ACCEPT, /* acceptance was initiated */
343 RXRPC_CALL_HAS_USERID, /* has a user ID attached */
344 RXRPC_CALL_EXPECT_OOS, /* expect out of sequence packets */
345};
346
347/*
348 * Events that can be raised on a call.
349 */
350enum rxrpc_call_event {
David Howells4c198ad2016-03-04 15:53:46 +0000351 RXRPC_CALL_EV_RCVD_ACKALL, /* ACKALL or reply received */
352 RXRPC_CALL_EV_RCVD_BUSY, /* busy packet received */
353 RXRPC_CALL_EV_RCVD_ABORT, /* abort packet received */
354 RXRPC_CALL_EV_RCVD_ERROR, /* network error received */
355 RXRPC_CALL_EV_ACK_FINAL, /* need to generate final ACK (and release call) */
356 RXRPC_CALL_EV_ACK, /* need to generate ACK */
357 RXRPC_CALL_EV_REJECT_BUSY, /* need to generate busy message */
358 RXRPC_CALL_EV_ABORT, /* need to generate abort */
359 RXRPC_CALL_EV_CONN_ABORT, /* local connection abort generated */
360 RXRPC_CALL_EV_RESEND_TIMER, /* Tx resend timer expired */
361 RXRPC_CALL_EV_RESEND, /* Tx resend required */
362 RXRPC_CALL_EV_DRAIN_RX_OOS, /* drain the Rx out of sequence queue */
363 RXRPC_CALL_EV_LIFE_TIMER, /* call's lifetimer ran out */
364 RXRPC_CALL_EV_ACCEPTED, /* incoming call accepted by userspace app */
365 RXRPC_CALL_EV_SECURED, /* incoming call's connection is now secure */
366 RXRPC_CALL_EV_POST_ACCEPT, /* need to post an "accept?" message to the app */
367 RXRPC_CALL_EV_RELEASE, /* need to release the call's resources */
David Howells5b8848d2016-03-04 15:53:46 +0000368};
369
370/*
371 * The states that a call can be in.
372 */
373enum rxrpc_call_state {
David Howells999b69f2016-06-17 15:42:35 +0100374 RXRPC_CALL_UNINITIALISED,
375 RXRPC_CALL_CLIENT_AWAIT_CONN, /* - client waiting for connection to become available */
David Howells5b8848d2016-03-04 15:53:46 +0000376 RXRPC_CALL_CLIENT_SEND_REQUEST, /* - client sending request phase */
377 RXRPC_CALL_CLIENT_AWAIT_REPLY, /* - client awaiting reply */
378 RXRPC_CALL_CLIENT_RECV_REPLY, /* - client receiving reply phase */
379 RXRPC_CALL_CLIENT_FINAL_ACK, /* - client sending final ACK phase */
380 RXRPC_CALL_SERVER_SECURING, /* - server securing request connection */
381 RXRPC_CALL_SERVER_ACCEPTING, /* - server accepting request */
382 RXRPC_CALL_SERVER_RECV_REQUEST, /* - server receiving request */
383 RXRPC_CALL_SERVER_ACK_REQUEST, /* - server pending ACK of request */
384 RXRPC_CALL_SERVER_SEND_REPLY, /* - server sending reply */
385 RXRPC_CALL_SERVER_AWAIT_ACK, /* - server awaiting final ACK */
386 RXRPC_CALL_COMPLETE, /* - call completed */
387 RXRPC_CALL_SERVER_BUSY, /* - call rejected by busy server */
388 RXRPC_CALL_REMOTELY_ABORTED, /* - call aborted by peer */
389 RXRPC_CALL_LOCALLY_ABORTED, /* - call aborted locally on error or close */
390 RXRPC_CALL_NETWORK_ERROR, /* - call terminated by network error */
391 RXRPC_CALL_DEAD, /* - call is dead */
392 NR__RXRPC_CALL_STATES
393};
394
395/*
David Howells17926a72007-04-26 15:48:28 -0700396 * RxRPC call definition
397 * - matched by { connection, call_id }
398 */
399struct rxrpc_call {
400 struct rxrpc_connection *conn; /* connection carrying call */
401 struct rxrpc_sock *socket; /* socket responsible */
402 struct timer_list lifetimer; /* lifetime remaining on call */
403 struct timer_list deadspan; /* reap timer for re-ACK'ing, etc */
404 struct timer_list ack_timer; /* ACK generation timer */
405 struct timer_list resend_timer; /* Tx resend timer */
406 struct work_struct destroyer; /* call destroyer */
407 struct work_struct processor; /* packet processor and ACK generator */
408 struct list_head link; /* link in master call list */
David Howellsf66d7492016-04-04 14:00:34 +0100409 struct hlist_node error_link; /* link in error distribution list */
David Howells17926a72007-04-26 15:48:28 -0700410 struct list_head accept_link; /* calls awaiting acceptance */
411 struct rb_node sock_node; /* node in socket call tree */
412 struct rb_node conn_node; /* node in connection call tree */
413 struct sk_buff_head rx_queue; /* received packets */
414 struct sk_buff_head rx_oos_queue; /* packets received out of sequence */
415 struct sk_buff *tx_pending; /* Tx socket buffer being filled */
416 wait_queue_head_t tx_waitq; /* wait for Tx window space to become available */
417 unsigned long user_call_ID; /* user-defined call ID */
418 unsigned long creation_jif; /* time of call creation */
419 unsigned long flags;
David Howells17926a72007-04-26 15:48:28 -0700420 unsigned long events;
David Howells17926a72007-04-26 15:48:28 -0700421 spinlock_t lock;
422 rwlock_t state_lock; /* lock for state transition */
423 atomic_t usage;
424 atomic_t sequence; /* Tx data packet sequence counter */
David Howellsdc44b3a2016-04-07 17:23:30 +0100425 u32 local_abort; /* local abort code */
426 u32 remote_abort; /* remote abort code */
David Howellsf66d7492016-04-04 14:00:34 +0100427 int error_report; /* Network error (ICMP/local transport) */
428 int error; /* Local error incurred */
David Howells5b8848d2016-03-04 15:53:46 +0000429 enum rxrpc_call_state state : 8; /* current state of call */
David Howells17926a72007-04-26 15:48:28 -0700430 int debug_id; /* debug ID for printks */
431 u8 channel; /* connection channel occupied by this call */
432
433 /* transmission-phase ACK management */
David Howells4e36a952009-09-16 00:01:13 -0700434 u8 acks_head; /* offset into window of first entry */
435 u8 acks_tail; /* offset into window of last entry */
436 u8 acks_winsz; /* size of un-ACK'd window */
437 u8 acks_unacked; /* lowest unacked packet in last ACK received */
David Howells17926a72007-04-26 15:48:28 -0700438 int acks_latest; /* serial number of latest ACK received */
439 rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */
440 unsigned long *acks_window; /* sent packet window
441 * - elements are pointers with LSB set if ACK'd
442 */
443
444 /* receive-phase ACK management */
445 rxrpc_seq_t rx_data_expect; /* next data seq ID expected to be received */
446 rxrpc_seq_t rx_data_post; /* next data seq ID expected to be posted */
447 rxrpc_seq_t rx_data_recv; /* last data seq ID encountered by recvmsg */
448 rxrpc_seq_t rx_data_eaten; /* last data seq ID consumed by recvmsg */
449 rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */
450 rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */
David Howells0d12f8a2016-03-04 15:53:46 +0000451 rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */
David Howells4e36a952009-09-16 00:01:13 -0700452 u8 ackr_reason; /* reason to ACK */
David Howells0d12f8a2016-03-04 15:53:46 +0000453 rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */
David Howells17926a72007-04-26 15:48:28 -0700454 atomic_t ackr_not_idle; /* number of packets in Rx queue */
455
456 /* received packet records, 1 bit per record */
457#define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG)
458 unsigned long ackr_window[RXRPC_ACKR_WINDOW_ASZ + 1];
459
Tim Smith77276402014-03-03 23:04:45 +0000460 struct hlist_node hash_node;
461 unsigned long hash_key; /* Full hash key */
462 u8 in_clientflag; /* Copy of conn->in_clientflag for hashing */
463 struct rxrpc_local *local; /* Local endpoint. Used for hashing. */
David Howells19ffa012016-04-04 14:00:36 +0100464 sa_family_t family; /* Frame protocol */
David Howells0d12f8a2016-03-04 15:53:46 +0000465 u32 call_id; /* call ID on connection */
466 u32 cid; /* connection ID plus channel index */
467 u32 epoch; /* epoch of this connection */
468 u16 service_id; /* service ID */
Tim Smith77276402014-03-03 23:04:45 +0000469 union { /* Peer IP address for hashing */
470 __be32 ipv4_addr;
471 __u8 ipv6_addr[16]; /* Anticipates eventual IPv6 support */
472 } peer_ip;
David Howells17926a72007-04-26 15:48:28 -0700473};
474
475/*
David Howells17926a72007-04-26 15:48:28 -0700476 * locally abort an RxRPC call
477 */
478static inline void rxrpc_abort_call(struct rxrpc_call *call, u32 abort_code)
479{
480 write_lock_bh(&call->state_lock);
481 if (call->state < RXRPC_CALL_COMPLETE) {
David Howellsdc44b3a2016-04-07 17:23:30 +0100482 call->local_abort = abort_code;
David Howells17926a72007-04-26 15:48:28 -0700483 call->state = RXRPC_CALL_LOCALLY_ABORTED;
David Howells4c198ad2016-03-04 15:53:46 +0000484 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700485 }
486 write_unlock_bh(&call->state_lock);
487}
488
489/*
David Howells651350d2007-04-26 15:50:17 -0700490 * af_rxrpc.c
David Howells17926a72007-04-26 15:48:28 -0700491 */
David Howells651350d2007-04-26 15:50:17 -0700492extern atomic_t rxrpc_n_skbs;
David Howells0d12f8a2016-03-04 15:53:46 +0000493extern u32 rxrpc_epoch;
David Howells651350d2007-04-26 15:50:17 -0700494extern atomic_t rxrpc_debug_id;
495extern struct workqueue_struct *rxrpc_workqueue;
David Howells17926a72007-04-26 15:48:28 -0700496
David Howells19ffa012016-04-04 14:00:36 +0100497extern struct rxrpc_transport *rxrpc_name_to_transport(struct rxrpc_conn_parameters *,
David Howells2341e072016-06-09 23:02:51 +0100498 struct sockaddr *,
David Howells19ffa012016-04-04 14:00:36 +0100499 int, gfp_t);
David Howells2341e072016-06-09 23:02:51 +0100500
David Howells17926a72007-04-26 15:48:28 -0700501/*
David Howells0d81a512016-06-13 13:30:30 +0100502 * call_accept.c
David Howells17926a72007-04-26 15:48:28 -0700503 */
David Howells4f95dd72016-04-04 14:00:35 +0100504void rxrpc_accept_incoming_calls(struct rxrpc_local *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700505struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long);
506int rxrpc_reject_call(struct rxrpc_sock *);
David Howells17926a72007-04-26 15:48:28 -0700507
508/*
David Howells0d81a512016-06-13 13:30:30 +0100509 * call_event.c
David Howells17926a72007-04-26 15:48:28 -0700510 */
David Howells0d12f8a2016-03-04 15:53:46 +0000511void __rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool);
512void rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool);
Joe Perchesc1b12032013-10-18 13:48:25 -0700513void rxrpc_process_call(struct work_struct *);
David Howells17926a72007-04-26 15:48:28 -0700514
515/*
David Howells0d81a512016-06-13 13:30:30 +0100516 * call_object.c
David Howells17926a72007-04-26 15:48:28 -0700517 */
David Howellsdad8aff2016-03-09 23:22:56 +0000518extern unsigned int rxrpc_max_call_lifetime;
519extern unsigned int rxrpc_dead_call_expiry;
David Howells17926a72007-04-26 15:48:28 -0700520extern struct kmem_cache *rxrpc_call_jar;
521extern struct list_head rxrpc_calls;
522extern rwlock_t rxrpc_call_lock;
523
David Howells0d12f8a2016-03-04 15:53:46 +0000524struct rxrpc_call *rxrpc_find_call_hash(struct rxrpc_host_header *,
525 void *, sa_family_t, const void *);
David Howells2341e072016-06-09 23:02:51 +0100526struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
527struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
David Howells19ffa012016-04-04 14:00:36 +0100528 struct rxrpc_conn_parameters *,
Joe Perchesc1b12032013-10-18 13:48:25 -0700529 struct rxrpc_transport *,
David Howells999b69f2016-06-17 15:42:35 +0100530 struct sockaddr_rxrpc *,
David Howells2341e072016-06-09 23:02:51 +0100531 unsigned long, gfp_t);
Joe Perchesc1b12032013-10-18 13:48:25 -0700532struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *,
533 struct rxrpc_connection *,
David Howells42886ff2016-06-16 13:31:07 +0100534 struct sk_buff *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700535void rxrpc_release_call(struct rxrpc_call *);
536void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
537void __rxrpc_put_call(struct rxrpc_call *);
538void __exit rxrpc_destroy_all_calls(void);
David Howells17926a72007-04-26 15:48:28 -0700539
540/*
David Howells4a3388c2016-04-04 14:00:37 +0100541 * conn_client.c
542 */
543extern struct idr rxrpc_client_conn_ids;
544
David Howells999b69f2016-06-17 15:42:35 +0100545int rxrpc_get_client_connection_id(struct rxrpc_connection *, gfp_t);
David Howells4a3388c2016-04-04 14:00:37 +0100546void rxrpc_put_client_connection_id(struct rxrpc_connection *);
547
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 Howells999b69f2016-06-17 15:42:35 +0100562int rxrpc_connect_call(struct rxrpc_call *, struct rxrpc_conn_parameters *,
563 struct rxrpc_transport *,
564 struct sockaddr_rxrpc *, gfp_t);
565void rxrpc_disconnect_call(struct rxrpc_call *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700566void rxrpc_put_connection(struct rxrpc_connection *);
567void __exit rxrpc_destroy_all_connections(void);
568struct rxrpc_connection *rxrpc_find_connection(struct rxrpc_transport *,
David Howells42886ff2016-06-16 13:31:07 +0100569 struct sk_buff *);
David Howells17926a72007-04-26 15:48:28 -0700570extern struct rxrpc_connection *
David Howells42886ff2016-06-16 13:31:07 +0100571rxrpc_incoming_connection(struct rxrpc_transport *, struct sk_buff *);
David Howells17926a72007-04-26 15:48:28 -0700572
David Howells19ffa012016-04-04 14:00:36 +0100573static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
574{
575 return conn->out_clientflag;
576}
577
578static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
579{
580 return conn->proto.in_clientflag;
581}
582
David Howells5627cc82016-04-04 14:00:38 +0100583static inline void rxrpc_get_connection(struct rxrpc_connection *conn)
584{
585 atomic_inc(&conn->usage);
586}
587
588static inline
589struct rxrpc_connection *rxrpc_get_connection_maybe(struct rxrpc_connection *conn)
590{
591 return atomic_inc_not_zero(&conn->usage) ? conn : NULL;
592}
593
David Howells17926a72007-04-26 15:48:28 -0700594/*
David Howells0d81a512016-06-13 13:30:30 +0100595 * input.c
David Howells17926a72007-04-26 15:48:28 -0700596 */
David S. Miller676d2362014-04-11 16:15:36 -0400597void rxrpc_data_ready(struct sock *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700598int rxrpc_queue_rcv_skb(struct rxrpc_call *, struct sk_buff *, bool, bool);
599void rxrpc_fast_process_packet(struct rxrpc_call *, struct sk_buff *);
David Howells17926a72007-04-26 15:48:28 -0700600
601/*
David Howells0d81a512016-06-13 13:30:30 +0100602 * insecure.c
David Howells17926a72007-04-26 15:48:28 -0700603 */
David Howells0d81a512016-06-13 13:30:30 +0100604extern const struct rxrpc_security rxrpc_no_security;
David Howells17926a72007-04-26 15:48:28 -0700605
606/*
David Howells0d81a512016-06-13 13:30:30 +0100607 * key.c
David Howells17926a72007-04-26 15:48:28 -0700608 */
609extern struct key_type key_type_rxrpc;
610extern struct key_type key_type_rxrpc_s;
611
Joe Perchesc1b12032013-10-18 13:48:25 -0700612int rxrpc_request_key(struct rxrpc_sock *, char __user *, int);
613int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int);
614int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time_t,
615 u32);
David Howells17926a72007-04-26 15:48:28 -0700616
617/*
David Howells87563612016-04-04 14:00:34 +0100618 * local_event.c
619 */
David Howells4f95dd72016-04-04 14:00:35 +0100620extern void rxrpc_process_local_events(struct rxrpc_local *);
David Howells87563612016-04-04 14:00:34 +0100621
622/*
David Howells0d81a512016-06-13 13:30:30 +0100623 * local_object.c
David Howells17926a72007-04-26 15:48:28 -0700624 */
David Howells4f95dd72016-04-04 14:00:35 +0100625struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *);
626void __rxrpc_put_local(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100627void __exit rxrpc_destroy_all_locals(void);
David Howellse0e4d822016-04-07 17:23:58 +0100628
David Howells4f95dd72016-04-04 14:00:35 +0100629static inline void rxrpc_get_local(struct rxrpc_local *local)
630{
631 atomic_inc(&local->usage);
632}
633
634static inline
635struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
636{
637 return atomic_inc_not_zero(&local->usage) ? local : NULL;
638}
639
640static inline void rxrpc_put_local(struct rxrpc_local *local)
641{
David Howells5627cc82016-04-04 14:00:38 +0100642 if (local && atomic_dec_and_test(&local->usage))
David Howells4f95dd72016-04-04 14:00:35 +0100643 __rxrpc_put_local(local);
644}
645
David Howellse0e4d822016-04-07 17:23:58 +0100646/*
David Howells8e688d92016-04-07 17:23:16 +0100647 * misc.c
648 */
David Howells0e119b42016-06-10 22:30:37 +0100649extern unsigned int rxrpc_max_backlog __read_mostly;
David Howells8e688d92016-04-07 17:23:16 +0100650extern unsigned int rxrpc_requested_ack_delay;
651extern unsigned int rxrpc_soft_ack_delay;
652extern unsigned int rxrpc_idle_ack_delay;
653extern unsigned int rxrpc_rx_window_size;
654extern unsigned int rxrpc_rx_mtu;
655extern unsigned int rxrpc_rx_jumbo_max;
656
David Howells5b3e87f2016-04-07 17:23:23 +0100657extern const char *const rxrpc_pkts[];
David Howells8e688d92016-04-07 17:23:16 +0100658extern const s8 rxrpc_ack_priority[];
659
660extern const char *rxrpc_acks(u8 reason);
661
662/*
David Howells0d81a512016-06-13 13:30:30 +0100663 * output.c
664 */
665extern unsigned int rxrpc_resend_timeout;
666
David Howells985a5c82016-06-17 11:53:37 +0100667int rxrpc_send_data_packet(struct rxrpc_connection *, struct sk_buff *);
David Howells0d81a512016-06-13 13:30:30 +0100668int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
669
670/*
David Howellsabe89ef2016-04-04 14:00:32 +0100671 * peer_event.c
David Howells0d81a512016-06-13 13:30:30 +0100672 */
David Howellsabe89ef2016-04-04 14:00:32 +0100673void rxrpc_error_report(struct sock *);
David Howellsf66d7492016-04-04 14:00:34 +0100674void rxrpc_peer_error_distributor(struct work_struct *);
David Howells0d81a512016-06-13 13:30:30 +0100675
676/*
677 * peer_object.c
678 */
David Howellsbe6e6702016-04-04 14:00:32 +0100679struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
680 const struct sockaddr_rxrpc *);
681struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_local *,
682 struct sockaddr_rxrpc *, gfp_t);
683struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
684
685static inline void rxrpc_get_peer(struct rxrpc_peer *peer)
686{
687 atomic_inc(&peer->usage);
688}
689
690static inline
691struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
692{
693 return atomic_inc_not_zero(&peer->usage) ? peer : NULL;
694}
695
696extern void __rxrpc_put_peer(struct rxrpc_peer *peer);
697static inline void rxrpc_put_peer(struct rxrpc_peer *peer)
698{
David Howells5627cc82016-04-04 14:00:38 +0100699 if (peer && atomic_dec_and_test(&peer->usage))
David Howellsbe6e6702016-04-04 14:00:32 +0100700 __rxrpc_put_peer(peer);
701}
David Howells0d81a512016-06-13 13:30:30 +0100702
703/*
704 * proc.c
705 */
706extern const char *const rxrpc_call_states[];
707extern const struct file_operations rxrpc_call_seq_fops;
708extern const struct file_operations rxrpc_connection_seq_fops;
709
710/*
711 * recvmsg.c
712 */
713void rxrpc_remove_user_ID(struct rxrpc_sock *, struct rxrpc_call *);
714int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
715
716/*
David Howells648af7f2016-04-07 17:23:51 +0100717 * rxkad.c
718 */
719#ifdef CONFIG_RXKAD
720extern const struct rxrpc_security rxkad;
721#endif
722
723/*
David Howells0d81a512016-06-13 13:30:30 +0100724 * security.c
725 */
726int __init rxrpc_init_security(void);
727void rxrpc_exit_security(void);
728int rxrpc_init_client_conn_security(struct rxrpc_connection *);
729int rxrpc_init_server_conn_security(struct rxrpc_connection *);
730
731/*
732 * skbuff.c
733 */
734void rxrpc_packet_destructor(struct sk_buff *);
735
736/*
David Howells5873c082014-02-07 18:58:44 +0000737 * sysctl.c
738 */
739#ifdef CONFIG_SYSCTL
740extern int __init rxrpc_sysctl_init(void);
741extern void rxrpc_sysctl_exit(void);
742#else
743static inline int __init rxrpc_sysctl_init(void) { return 0; }
744static inline void rxrpc_sysctl_exit(void) {}
745#endif
746
747/*
David Howells0d81a512016-06-13 13:30:30 +0100748 * transport.c
749 */
750extern unsigned int rxrpc_transport_expiry;
751
752struct rxrpc_transport *rxrpc_get_transport(struct rxrpc_local *,
753 struct rxrpc_peer *, gfp_t);
754void rxrpc_put_transport(struct rxrpc_transport *);
755void __exit rxrpc_destroy_all_transports(void);
756struct rxrpc_transport *rxrpc_find_transport(struct rxrpc_local *,
757 struct rxrpc_peer *);
758
759/*
David Howellsbe6e6702016-04-04 14:00:32 +0100760 * utils.c
761 */
762void rxrpc_get_addr_from_skb(struct rxrpc_local *, const struct sk_buff *,
763 struct sockaddr_rxrpc *);
764
765/*
David Howells17926a72007-04-26 15:48:28 -0700766 * debug tracing
767 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000768extern unsigned int rxrpc_debug;
David Howells17926a72007-04-26 15:48:28 -0700769
770#define dbgprintk(FMT,...) \
Sven Schnelle9f389f42008-04-03 10:45:30 +0100771 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700772
Harvey Harrison0dc47872008-03-05 20:47:47 -0800773#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
774#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700775#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
776#define kproto(FMT,...) dbgprintk("### "FMT ,##__VA_ARGS__)
777#define knet(FMT,...) dbgprintk("@@@ "FMT ,##__VA_ARGS__)
778
779
780#if defined(__KDEBUG)
781#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
782#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
783#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
784#define _proto(FMT,...) kproto(FMT,##__VA_ARGS__)
785#define _net(FMT,...) knet(FMT,##__VA_ARGS__)
786
787#elif defined(CONFIG_AF_RXRPC_DEBUG)
788#define RXRPC_DEBUG_KENTER 0x01
789#define RXRPC_DEBUG_KLEAVE 0x02
790#define RXRPC_DEBUG_KDEBUG 0x04
791#define RXRPC_DEBUG_KPROTO 0x08
792#define RXRPC_DEBUG_KNET 0x10
793
794#define _enter(FMT,...) \
795do { \
796 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER)) \
797 kenter(FMT,##__VA_ARGS__); \
798} while (0)
799
800#define _leave(FMT,...) \
801do { \
802 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE)) \
803 kleave(FMT,##__VA_ARGS__); \
804} while (0)
805
806#define _debug(FMT,...) \
807do { \
808 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG)) \
809 kdebug(FMT,##__VA_ARGS__); \
810} while (0)
811
812#define _proto(FMT,...) \
813do { \
814 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO)) \
815 kproto(FMT,##__VA_ARGS__); \
816} while (0)
817
818#define _net(FMT,...) \
819do { \
820 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET)) \
821 knet(FMT,##__VA_ARGS__); \
822} while (0)
823
824#else
David Howells12fdff32010-08-12 16:54:57 +0100825#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
826#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
827#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
828#define _proto(FMT,...) no_printk("### "FMT ,##__VA_ARGS__)
829#define _net(FMT,...) no_printk("@@@ "FMT ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700830#endif
831
832/*
833 * debug assertion checking
834 */
835#if 1 // defined(__KDEBUGALL)
836
837#define ASSERT(X) \
838do { \
839 if (unlikely(!(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700840 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -0700841 BUG(); \
842 } \
David Howellsb4f13422016-03-04 15:56:19 +0000843} while (0)
David Howells17926a72007-04-26 15:48:28 -0700844
845#define ASSERTCMP(X, OP, Y) \
846do { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700847 unsigned long _x = (unsigned long)(X); \
848 unsigned long _y = (unsigned long)(Y); \
849 if (unlikely(!(_x OP _y))) { \
850 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
851 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -0700852 BUG(); \
853 } \
David Howellsb4f13422016-03-04 15:56:19 +0000854} while (0)
David Howells17926a72007-04-26 15:48:28 -0700855
856#define ASSERTIF(C, X) \
857do { \
858 if (unlikely((C) && !(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700859 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -0700860 BUG(); \
861 } \
David Howellsb4f13422016-03-04 15:56:19 +0000862} while (0)
David Howells17926a72007-04-26 15:48:28 -0700863
864#define ASSERTIFCMP(C, X, OP, Y) \
865do { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700866 unsigned long _x = (unsigned long)(X); \
867 unsigned long _y = (unsigned long)(Y); \
868 if (unlikely((C) && !(_x OP _y))) { \
869 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
870 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -0700871 BUG(); \
872 } \
David Howellsb4f13422016-03-04 15:56:19 +0000873} while (0)
David Howells17926a72007-04-26 15:48:28 -0700874
875#else
876
877#define ASSERT(X) \
878do { \
David Howellsb4f13422016-03-04 15:56:19 +0000879} while (0)
David Howells17926a72007-04-26 15:48:28 -0700880
881#define ASSERTCMP(X, OP, Y) \
882do { \
David Howellsb4f13422016-03-04 15:56:19 +0000883} while (0)
David Howells17926a72007-04-26 15:48:28 -0700884
885#define ASSERTIF(C, X) \
886do { \
David Howellsb4f13422016-03-04 15:56:19 +0000887} while (0)
David Howells17926a72007-04-26 15:48:28 -0700888
889#define ASSERTIFCMP(C, X, OP, Y) \
890do { \
David Howellsb4f13422016-03-04 15:56:19 +0000891} while (0)
David Howells17926a72007-04-26 15:48:28 -0700892
893#endif /* __KDEBUGALL */
894
895/*
896 * socket buffer accounting / leak finding
897 */
898static inline void __rxrpc_new_skb(struct sk_buff *skb, const char *fn)
899{
900 //_net("new skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
901 //atomic_inc(&rxrpc_n_skbs);
902}
903
904#define rxrpc_new_skb(skb) __rxrpc_new_skb((skb), __func__)
905
906static inline void __rxrpc_kill_skb(struct sk_buff *skb, const char *fn)
907{
908 //_net("kill skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
909 //atomic_dec(&rxrpc_n_skbs);
910}
911
912#define rxrpc_kill_skb(skb) __rxrpc_kill_skb((skb), __func__)
913
914static inline void __rxrpc_free_skb(struct sk_buff *skb, const char *fn)
915{
916 if (skb) {
917 CHECK_SLAB_OKAY(&skb->users);
918 //_net("free skb %p %s [%d]",
919 // skb, fn, atomic_read(&rxrpc_n_skbs));
920 //atomic_dec(&rxrpc_n_skbs);
921 kfree_skb(skb);
922 }
923}
924
925#define rxrpc_free_skb(skb) __rxrpc_free_skb((skb), __func__)
926
927static inline void rxrpc_purge_queue(struct sk_buff_head *list)
928{
929 struct sk_buff *skb;
930 while ((skb = skb_dequeue((list))) != NULL)
931 rxrpc_free_skb(skb);
932}
933
David Howells17926a72007-04-26 15:48:28 -0700934#define rxrpc_get_call(CALL) \
935do { \
936 CHECK_SLAB_OKAY(&(CALL)->usage); \
937 if (atomic_inc_return(&(CALL)->usage) == 1) \
938 BUG(); \
David Howellsb4f13422016-03-04 15:56:19 +0000939} while (0)
David Howells17926a72007-04-26 15:48:28 -0700940
941#define rxrpc_put_call(CALL) \
942do { \
943 __rxrpc_put_call(CALL); \
David Howellsb4f13422016-03-04 15:56:19 +0000944} while (0)