blob: 45aef3ef7609f4b4a765c037277849dadddf370a [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 {
232 unsigned long hash_key;
233 struct rxrpc_local *local; /* Representation of local endpoint */
234 u32 epoch; /* epoch of this connection */
235 u32 cid; /* connection ID */
236 u8 in_clientflag; /* RXRPC_CLIENT_INITIATED if we are server */
237 u8 addr_size; /* Size of the address */
238 sa_family_t family; /* Transport protocol */
239 __be16 port; /* Peer UDP/UDP6 port */
240 union { /* Peer address */
241 struct in_addr ipv4_addr;
242 struct in6_addr ipv6_addr;
243 u32 raw_addr[0];
244 };
245};
246
247struct rxrpc_conn_parameters {
248 struct rxrpc_local *local; /* Representation of local endpoint */
249 struct rxrpc_peer *peer; /* Remote endpoint */
250 struct key *key; /* Security details */
251 bool exclusive; /* T if conn is exclusive */
252 u16 service_id; /* Service ID for this connection */
253 u32 security_level; /* Security level selected */
254};
255
256/*
David Howells17926a72007-04-26 15:48:28 -0700257 * RxRPC connection definition
David Howellsaa390bb2016-06-17 10:06:56 +0100258 * - matched by { local, peer, epoch, conn_id, direction }
David Howells17926a72007-04-26 15:48:28 -0700259 * - each connection can only handle four simultaneous calls
260 */
261struct rxrpc_connection {
David Howells19ffa012016-04-04 14:00:36 +0100262 struct rxrpc_conn_proto proto;
263 struct rxrpc_conn_parameters params;
264
David Howells999b69f2016-06-17 15:42:35 +0100265 spinlock_t channel_lock;
266 struct rxrpc_call *channels[RXRPC_MAXCALLS]; /* active calls */
267 wait_queue_head_t channel_wq; /* queue to wait for channel to become available */
268
David Howells17926a72007-04-26 15:48:28 -0700269 struct work_struct processor; /* connection event processor */
David Howells999b69f2016-06-17 15:42:35 +0100270 union {
271 struct rb_node client_node; /* Node in local->client_conns */
David Howellsaa390bb2016-06-17 10:06:56 +0100272 struct rb_node service_node; /* Node in peer->service_conns */
David Howells999b69f2016-06-17 15:42:35 +0100273 };
David Howells17926a72007-04-26 15:48:28 -0700274 struct list_head link; /* link in master connection list */
David Howells17926a72007-04-26 15:48:28 -0700275 struct rb_root calls; /* calls on this connection */
276 struct sk_buff_head rx_queue; /* received conn-level packets */
David Howells648af7f2016-04-07 17:23:51 +0100277 const struct rxrpc_security *security; /* applied security module */
David Howells17926a72007-04-26 15:48:28 -0700278 struct key *server_key; /* security for this service */
Herbert Xu1afe5932016-01-24 21:19:01 +0800279 struct crypto_skcipher *cipher; /* encryption handle */
David Howells17926a72007-04-26 15:48:28 -0700280 struct rxrpc_crypt csum_iv; /* packet checksum base */
David Howells4a3388c2016-04-04 14:00:37 +0100281 unsigned long flags;
282#define RXRPC_CONN_HAS_IDR 0 /* - Has a client conn ID assigned */
David Howells17926a72007-04-26 15:48:28 -0700283 unsigned long events;
284#define RXRPC_CONN_CHALLENGE 0 /* send challenge packet */
David Howells999b69f2016-06-17 15:42:35 +0100285 unsigned long put_time; /* Time at which last put */
David Howells17926a72007-04-26 15:48:28 -0700286 rwlock_t lock; /* access lock */
287 spinlock_t state_lock; /* state-change lock */
288 atomic_t usage;
David Howells17926a72007-04-26 15:48:28 -0700289 enum { /* current state of connection */
290 RXRPC_CONN_UNUSED, /* - connection not yet attempted */
291 RXRPC_CONN_CLIENT, /* - client connection */
292 RXRPC_CONN_SERVER_UNSECURED, /* - server unsecured connection */
293 RXRPC_CONN_SERVER_CHALLENGING, /* - server challenging for security */
294 RXRPC_CONN_SERVER, /* - server secured connection */
295 RXRPC_CONN_REMOTELY_ABORTED, /* - conn aborted by peer */
296 RXRPC_CONN_LOCALLY_ABORTED, /* - conn aborted locally */
297 RXRPC_CONN_NETWORK_ERROR, /* - conn terminated by network error */
298 } state;
David Howellsdc44b3a2016-04-07 17:23:30 +0100299 u32 local_abort; /* local abort code */
300 u32 remote_abort; /* remote abort code */
301 int error; /* local error incurred */
David Howells17926a72007-04-26 15:48:28 -0700302 int debug_id; /* debug ID for printks */
Eric Dumazet95c96172012-04-15 05:58:06 +0000303 unsigned int call_counter; /* call ID counter */
David Howells17926a72007-04-26 15:48:28 -0700304 atomic_t serial; /* packet serial number counter */
305 atomic_t hi_serial; /* highest serial number received */
David Howells999b69f2016-06-17 15:42:35 +0100306 atomic_t avail_chans; /* number of channels available */
David Howells17926a72007-04-26 15:48:28 -0700307 u8 size_align; /* data size alignment (for security) */
308 u8 header_size; /* rxrpc + security header size */
309 u8 security_size; /* security header size */
David Howells17926a72007-04-26 15:48:28 -0700310 u32 security_nonce; /* response re-use preventer */
David Howells17926a72007-04-26 15:48:28 -0700311 u8 security_ix; /* security type */
David Howells17926a72007-04-26 15:48:28 -0700312 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
313};
314
315/*
David Howells5b8848d2016-03-04 15:53:46 +0000316 * Flags in call->flags.
317 */
318enum rxrpc_call_flag {
319 RXRPC_CALL_RELEASED, /* call has been released - no more message to userspace */
320 RXRPC_CALL_TERMINAL_MSG, /* call has given the socket its final message */
321 RXRPC_CALL_RCVD_LAST, /* all packets received */
322 RXRPC_CALL_RUN_RTIMER, /* Tx resend timer started */
323 RXRPC_CALL_TX_SOFT_ACK, /* sent some soft ACKs */
324 RXRPC_CALL_PROC_BUSY, /* the processor is busy */
325 RXRPC_CALL_INIT_ACCEPT, /* acceptance was initiated */
326 RXRPC_CALL_HAS_USERID, /* has a user ID attached */
327 RXRPC_CALL_EXPECT_OOS, /* expect out of sequence packets */
328};
329
330/*
331 * Events that can be raised on a call.
332 */
333enum rxrpc_call_event {
David Howells4c198ad2016-03-04 15:53:46 +0000334 RXRPC_CALL_EV_RCVD_ACKALL, /* ACKALL or reply received */
335 RXRPC_CALL_EV_RCVD_BUSY, /* busy packet received */
336 RXRPC_CALL_EV_RCVD_ABORT, /* abort packet received */
337 RXRPC_CALL_EV_RCVD_ERROR, /* network error received */
338 RXRPC_CALL_EV_ACK_FINAL, /* need to generate final ACK (and release call) */
339 RXRPC_CALL_EV_ACK, /* need to generate ACK */
340 RXRPC_CALL_EV_REJECT_BUSY, /* need to generate busy message */
341 RXRPC_CALL_EV_ABORT, /* need to generate abort */
342 RXRPC_CALL_EV_CONN_ABORT, /* local connection abort generated */
343 RXRPC_CALL_EV_RESEND_TIMER, /* Tx resend timer expired */
344 RXRPC_CALL_EV_RESEND, /* Tx resend required */
345 RXRPC_CALL_EV_DRAIN_RX_OOS, /* drain the Rx out of sequence queue */
346 RXRPC_CALL_EV_LIFE_TIMER, /* call's lifetimer ran out */
347 RXRPC_CALL_EV_ACCEPTED, /* incoming call accepted by userspace app */
348 RXRPC_CALL_EV_SECURED, /* incoming call's connection is now secure */
349 RXRPC_CALL_EV_POST_ACCEPT, /* need to post an "accept?" message to the app */
350 RXRPC_CALL_EV_RELEASE, /* need to release the call's resources */
David Howells5b8848d2016-03-04 15:53:46 +0000351};
352
353/*
354 * The states that a call can be in.
355 */
356enum rxrpc_call_state {
David Howells999b69f2016-06-17 15:42:35 +0100357 RXRPC_CALL_UNINITIALISED,
358 RXRPC_CALL_CLIENT_AWAIT_CONN, /* - client waiting for connection to become available */
David Howells5b8848d2016-03-04 15:53:46 +0000359 RXRPC_CALL_CLIENT_SEND_REQUEST, /* - client sending request phase */
360 RXRPC_CALL_CLIENT_AWAIT_REPLY, /* - client awaiting reply */
361 RXRPC_CALL_CLIENT_RECV_REPLY, /* - client receiving reply phase */
362 RXRPC_CALL_CLIENT_FINAL_ACK, /* - client sending final ACK phase */
363 RXRPC_CALL_SERVER_SECURING, /* - server securing request connection */
364 RXRPC_CALL_SERVER_ACCEPTING, /* - server accepting request */
365 RXRPC_CALL_SERVER_RECV_REQUEST, /* - server receiving request */
366 RXRPC_CALL_SERVER_ACK_REQUEST, /* - server pending ACK of request */
367 RXRPC_CALL_SERVER_SEND_REPLY, /* - server sending reply */
368 RXRPC_CALL_SERVER_AWAIT_ACK, /* - server awaiting final ACK */
369 RXRPC_CALL_COMPLETE, /* - call completed */
370 RXRPC_CALL_SERVER_BUSY, /* - call rejected by busy server */
371 RXRPC_CALL_REMOTELY_ABORTED, /* - call aborted by peer */
372 RXRPC_CALL_LOCALLY_ABORTED, /* - call aborted locally on error or close */
373 RXRPC_CALL_NETWORK_ERROR, /* - call terminated by network error */
374 RXRPC_CALL_DEAD, /* - call is dead */
375 NR__RXRPC_CALL_STATES
376};
377
378/*
David Howells17926a72007-04-26 15:48:28 -0700379 * RxRPC call definition
380 * - matched by { connection, call_id }
381 */
382struct rxrpc_call {
383 struct rxrpc_connection *conn; /* connection carrying call */
384 struct rxrpc_sock *socket; /* socket responsible */
385 struct timer_list lifetimer; /* lifetime remaining on call */
386 struct timer_list deadspan; /* reap timer for re-ACK'ing, etc */
387 struct timer_list ack_timer; /* ACK generation timer */
388 struct timer_list resend_timer; /* Tx resend timer */
389 struct work_struct destroyer; /* call destroyer */
390 struct work_struct processor; /* packet processor and ACK generator */
391 struct list_head link; /* link in master call list */
David Howellsf66d7492016-04-04 14:00:34 +0100392 struct hlist_node error_link; /* link in error distribution list */
David Howells17926a72007-04-26 15:48:28 -0700393 struct list_head accept_link; /* calls awaiting acceptance */
394 struct rb_node sock_node; /* node in socket call tree */
395 struct rb_node conn_node; /* node in connection call tree */
396 struct sk_buff_head rx_queue; /* received packets */
397 struct sk_buff_head rx_oos_queue; /* packets received out of sequence */
398 struct sk_buff *tx_pending; /* Tx socket buffer being filled */
399 wait_queue_head_t tx_waitq; /* wait for Tx window space to become available */
Herbert Xua2636292016-06-26 14:55:24 -0700400 __be32 crypto_buf[2]; /* Temporary packet crypto buffer */
David Howells17926a72007-04-26 15:48:28 -0700401 unsigned long user_call_ID; /* user-defined call ID */
402 unsigned long creation_jif; /* time of call creation */
403 unsigned long flags;
David Howells17926a72007-04-26 15:48:28 -0700404 unsigned long events;
David Howells17926a72007-04-26 15:48:28 -0700405 spinlock_t lock;
406 rwlock_t state_lock; /* lock for state transition */
407 atomic_t usage;
408 atomic_t sequence; /* Tx data packet sequence counter */
David Howellsdc44b3a2016-04-07 17:23:30 +0100409 u32 local_abort; /* local abort code */
410 u32 remote_abort; /* remote abort code */
David Howellsf66d7492016-04-04 14:00:34 +0100411 int error_report; /* Network error (ICMP/local transport) */
412 int error; /* Local error incurred */
David Howells5b8848d2016-03-04 15:53:46 +0000413 enum rxrpc_call_state state : 8; /* current state of call */
David Howells17926a72007-04-26 15:48:28 -0700414 int debug_id; /* debug ID for printks */
415 u8 channel; /* connection channel occupied by this call */
416
417 /* transmission-phase ACK management */
David Howells4e36a952009-09-16 00:01:13 -0700418 u8 acks_head; /* offset into window of first entry */
419 u8 acks_tail; /* offset into window of last entry */
420 u8 acks_winsz; /* size of un-ACK'd window */
421 u8 acks_unacked; /* lowest unacked packet in last ACK received */
David Howells17926a72007-04-26 15:48:28 -0700422 int acks_latest; /* serial number of latest ACK received */
423 rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */
424 unsigned long *acks_window; /* sent packet window
425 * - elements are pointers with LSB set if ACK'd
426 */
427
428 /* receive-phase ACK management */
429 rxrpc_seq_t rx_data_expect; /* next data seq ID expected to be received */
430 rxrpc_seq_t rx_data_post; /* next data seq ID expected to be posted */
431 rxrpc_seq_t rx_data_recv; /* last data seq ID encountered by recvmsg */
432 rxrpc_seq_t rx_data_eaten; /* last data seq ID consumed by recvmsg */
433 rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */
434 rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */
David Howells0d12f8a2016-03-04 15:53:46 +0000435 rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */
David Howells4e36a952009-09-16 00:01:13 -0700436 u8 ackr_reason; /* reason to ACK */
David Howells0d12f8a2016-03-04 15:53:46 +0000437 rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */
David Howells17926a72007-04-26 15:48:28 -0700438 atomic_t ackr_not_idle; /* number of packets in Rx queue */
439
440 /* received packet records, 1 bit per record */
441#define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG)
442 unsigned long ackr_window[RXRPC_ACKR_WINDOW_ASZ + 1];
443
Tim Smith77276402014-03-03 23:04:45 +0000444 struct hlist_node hash_node;
445 unsigned long hash_key; /* Full hash key */
446 u8 in_clientflag; /* Copy of conn->in_clientflag for hashing */
447 struct rxrpc_local *local; /* Local endpoint. Used for hashing. */
David Howells19ffa012016-04-04 14:00:36 +0100448 sa_family_t family; /* Frame protocol */
David Howells0d12f8a2016-03-04 15:53:46 +0000449 u32 call_id; /* call ID on connection */
450 u32 cid; /* connection ID plus channel index */
451 u32 epoch; /* epoch of this connection */
452 u16 service_id; /* service ID */
Tim Smith77276402014-03-03 23:04:45 +0000453 union { /* Peer IP address for hashing */
454 __be32 ipv4_addr;
455 __u8 ipv6_addr[16]; /* Anticipates eventual IPv6 support */
456 } peer_ip;
David Howells17926a72007-04-26 15:48:28 -0700457};
458
459/*
David Howells17926a72007-04-26 15:48:28 -0700460 * locally abort an RxRPC call
461 */
462static inline void rxrpc_abort_call(struct rxrpc_call *call, u32 abort_code)
463{
464 write_lock_bh(&call->state_lock);
465 if (call->state < RXRPC_CALL_COMPLETE) {
David Howellsdc44b3a2016-04-07 17:23:30 +0100466 call->local_abort = abort_code;
David Howells17926a72007-04-26 15:48:28 -0700467 call->state = RXRPC_CALL_LOCALLY_ABORTED;
David Howells4c198ad2016-03-04 15:53:46 +0000468 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700469 }
470 write_unlock_bh(&call->state_lock);
471}
472
473/*
David Howells651350d2007-04-26 15:50:17 -0700474 * af_rxrpc.c
David Howells17926a72007-04-26 15:48:28 -0700475 */
David Howells651350d2007-04-26 15:50:17 -0700476extern atomic_t rxrpc_n_skbs;
David Howells0d12f8a2016-03-04 15:53:46 +0000477extern u32 rxrpc_epoch;
David Howells651350d2007-04-26 15:50:17 -0700478extern atomic_t rxrpc_debug_id;
479extern struct workqueue_struct *rxrpc_workqueue;
David Howells17926a72007-04-26 15:48:28 -0700480
481/*
David Howells0d81a512016-06-13 13:30:30 +0100482 * call_accept.c
David Howells17926a72007-04-26 15:48:28 -0700483 */
David Howells4f95dd72016-04-04 14:00:35 +0100484void rxrpc_accept_incoming_calls(struct rxrpc_local *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700485struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long);
486int rxrpc_reject_call(struct rxrpc_sock *);
David Howells17926a72007-04-26 15:48:28 -0700487
488/*
David Howells0d81a512016-06-13 13:30:30 +0100489 * call_event.c
David Howells17926a72007-04-26 15:48:28 -0700490 */
David Howells0d12f8a2016-03-04 15:53:46 +0000491void __rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool);
492void rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool);
Joe Perchesc1b12032013-10-18 13:48:25 -0700493void rxrpc_process_call(struct work_struct *);
David Howells17926a72007-04-26 15:48:28 -0700494
495/*
David Howells0d81a512016-06-13 13:30:30 +0100496 * call_object.c
David Howells17926a72007-04-26 15:48:28 -0700497 */
David Howellsdad8aff2016-03-09 23:22:56 +0000498extern unsigned int rxrpc_max_call_lifetime;
499extern unsigned int rxrpc_dead_call_expiry;
David Howells17926a72007-04-26 15:48:28 -0700500extern struct kmem_cache *rxrpc_call_jar;
501extern struct list_head rxrpc_calls;
502extern rwlock_t rxrpc_call_lock;
503
David Howells0d12f8a2016-03-04 15:53:46 +0000504struct rxrpc_call *rxrpc_find_call_hash(struct rxrpc_host_header *,
505 void *, sa_family_t, const void *);
David Howells2341e072016-06-09 23:02:51 +0100506struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
507struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
David Howells19ffa012016-04-04 14:00:36 +0100508 struct rxrpc_conn_parameters *,
David Howells999b69f2016-06-17 15:42:35 +0100509 struct sockaddr_rxrpc *,
David Howells2341e072016-06-09 23:02:51 +0100510 unsigned long, gfp_t);
Joe Perchesc1b12032013-10-18 13:48:25 -0700511struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *,
512 struct rxrpc_connection *,
David Howells42886ff2016-06-16 13:31:07 +0100513 struct sk_buff *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700514void rxrpc_release_call(struct rxrpc_call *);
515void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
516void __rxrpc_put_call(struct rxrpc_call *);
517void __exit rxrpc_destroy_all_calls(void);
David Howells17926a72007-04-26 15:48:28 -0700518
519/*
David Howells4a3388c2016-04-04 14:00:37 +0100520 * conn_client.c
521 */
522extern struct idr rxrpc_client_conn_ids;
523
David Howells999b69f2016-06-17 15:42:35 +0100524int rxrpc_get_client_connection_id(struct rxrpc_connection *, gfp_t);
David Howells4a3388c2016-04-04 14:00:37 +0100525void rxrpc_put_client_connection_id(struct rxrpc_connection *);
526
527/*
David Howells0d81a512016-06-13 13:30:30 +0100528 * conn_event.c
529 */
530void rxrpc_process_connection(struct work_struct *);
531void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *);
David Howells4f95dd72016-04-04 14:00:35 +0100532void rxrpc_reject_packets(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100533
534/*
535 * conn_object.c
David Howells17926a72007-04-26 15:48:28 -0700536 */
David Howellsdad8aff2016-03-09 23:22:56 +0000537extern unsigned int rxrpc_connection_expiry;
David Howells17926a72007-04-26 15:48:28 -0700538extern struct list_head rxrpc_connections;
539extern rwlock_t rxrpc_connection_lock;
540
David Howells999b69f2016-06-17 15:42:35 +0100541int rxrpc_connect_call(struct rxrpc_call *, struct rxrpc_conn_parameters *,
David Howells999b69f2016-06-17 15:42:35 +0100542 struct sockaddr_rxrpc *, gfp_t);
David Howellsaa390bb2016-06-17 10:06:56 +0100543struct rxrpc_connection *rxrpc_find_connection(struct rxrpc_local *,
544 struct rxrpc_peer *,
545 struct sk_buff *);
David Howells999b69f2016-06-17 15:42:35 +0100546void rxrpc_disconnect_call(struct rxrpc_call *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700547void rxrpc_put_connection(struct rxrpc_connection *);
548void __exit rxrpc_destroy_all_connections(void);
David Howellsaa390bb2016-06-17 10:06:56 +0100549struct rxrpc_connection *rxrpc_incoming_connection(struct rxrpc_local *,
550 struct rxrpc_peer *,
551 struct sk_buff *);
David Howells17926a72007-04-26 15:48:28 -0700552
David Howells19ffa012016-04-04 14:00:36 +0100553static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
554{
555 return conn->out_clientflag;
556}
557
558static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
559{
560 return conn->proto.in_clientflag;
561}
562
David Howells5627cc82016-04-04 14:00:38 +0100563static inline void rxrpc_get_connection(struct rxrpc_connection *conn)
564{
565 atomic_inc(&conn->usage);
566}
567
David Howells5acbee42016-06-27 10:32:02 +0100568
569static inline void rxrpc_queue_conn(struct rxrpc_connection *conn)
570{
571 rxrpc_queue_work(&conn->processor);
572}
573
David Howells17926a72007-04-26 15:48:28 -0700574/*
David Howells0d81a512016-06-13 13:30:30 +0100575 * input.c
David Howells17926a72007-04-26 15:48:28 -0700576 */
David S. Miller676d2362014-04-11 16:15:36 -0400577void rxrpc_data_ready(struct sock *);
Joe Perchesc1b12032013-10-18 13:48:25 -0700578int rxrpc_queue_rcv_skb(struct rxrpc_call *, struct sk_buff *, bool, bool);
579void rxrpc_fast_process_packet(struct rxrpc_call *, struct sk_buff *);
David Howells17926a72007-04-26 15:48:28 -0700580
581/*
David Howells0d81a512016-06-13 13:30:30 +0100582 * insecure.c
David Howells17926a72007-04-26 15:48:28 -0700583 */
David Howells0d81a512016-06-13 13:30:30 +0100584extern const struct rxrpc_security rxrpc_no_security;
David Howells17926a72007-04-26 15:48:28 -0700585
586/*
David Howells0d81a512016-06-13 13:30:30 +0100587 * key.c
David Howells17926a72007-04-26 15:48:28 -0700588 */
589extern struct key_type key_type_rxrpc;
590extern struct key_type key_type_rxrpc_s;
591
Joe Perchesc1b12032013-10-18 13:48:25 -0700592int rxrpc_request_key(struct rxrpc_sock *, char __user *, int);
593int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int);
594int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time_t,
595 u32);
David Howells17926a72007-04-26 15:48:28 -0700596
597/*
David Howells87563612016-04-04 14:00:34 +0100598 * local_event.c
599 */
David Howells4f95dd72016-04-04 14:00:35 +0100600extern void rxrpc_process_local_events(struct rxrpc_local *);
David Howells87563612016-04-04 14:00:34 +0100601
602/*
David Howells0d81a512016-06-13 13:30:30 +0100603 * local_object.c
David Howells17926a72007-04-26 15:48:28 -0700604 */
David Howells4f95dd72016-04-04 14:00:35 +0100605struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *);
606void __rxrpc_put_local(struct rxrpc_local *);
David Howells0d81a512016-06-13 13:30:30 +0100607void __exit rxrpc_destroy_all_locals(void);
David Howellse0e4d822016-04-07 17:23:58 +0100608
David Howells4f95dd72016-04-04 14:00:35 +0100609static inline void rxrpc_get_local(struct rxrpc_local *local)
610{
611 atomic_inc(&local->usage);
612}
613
614static inline
615struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
616{
617 return atomic_inc_not_zero(&local->usage) ? local : NULL;
618}
619
620static inline void rxrpc_put_local(struct rxrpc_local *local)
621{
David Howells5627cc82016-04-04 14:00:38 +0100622 if (local && atomic_dec_and_test(&local->usage))
David Howells4f95dd72016-04-04 14:00:35 +0100623 __rxrpc_put_local(local);
624}
625
David Howells5acbee42016-06-27 10:32:02 +0100626static inline void rxrpc_queue_local(struct rxrpc_local *local)
627{
628 rxrpc_queue_work(&local->processor);
629}
630
David Howellse0e4d822016-04-07 17:23:58 +0100631/*
David Howells8e688d92016-04-07 17:23:16 +0100632 * misc.c
633 */
David Howells0e119b42016-06-10 22:30:37 +0100634extern unsigned int rxrpc_max_backlog __read_mostly;
David Howells8e688d92016-04-07 17:23:16 +0100635extern unsigned int rxrpc_requested_ack_delay;
636extern unsigned int rxrpc_soft_ack_delay;
637extern unsigned int rxrpc_idle_ack_delay;
638extern unsigned int rxrpc_rx_window_size;
639extern unsigned int rxrpc_rx_mtu;
640extern unsigned int rxrpc_rx_jumbo_max;
641
David Howells5b3e87f2016-04-07 17:23:23 +0100642extern const char *const rxrpc_pkts[];
David Howells8e688d92016-04-07 17:23:16 +0100643extern const s8 rxrpc_ack_priority[];
644
645extern const char *rxrpc_acks(u8 reason);
646
647/*
David Howells0d81a512016-06-13 13:30:30 +0100648 * output.c
649 */
650extern unsigned int rxrpc_resend_timeout;
651
David Howells985a5c82016-06-17 11:53:37 +0100652int rxrpc_send_data_packet(struct rxrpc_connection *, struct sk_buff *);
David Howells0d81a512016-06-13 13:30:30 +0100653int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
654
655/*
David Howellsabe89ef2016-04-04 14:00:32 +0100656 * peer_event.c
David Howells0d81a512016-06-13 13:30:30 +0100657 */
David Howellsabe89ef2016-04-04 14:00:32 +0100658void rxrpc_error_report(struct sock *);
David Howellsf66d7492016-04-04 14:00:34 +0100659void rxrpc_peer_error_distributor(struct work_struct *);
David Howells0d81a512016-06-13 13:30:30 +0100660
661/*
662 * peer_object.c
663 */
David Howellsbe6e6702016-04-04 14:00:32 +0100664struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
665 const struct sockaddr_rxrpc *);
666struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_local *,
667 struct sockaddr_rxrpc *, gfp_t);
668struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
669
670static inline void rxrpc_get_peer(struct rxrpc_peer *peer)
671{
672 atomic_inc(&peer->usage);
673}
674
675static inline
676struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
677{
678 return atomic_inc_not_zero(&peer->usage) ? peer : NULL;
679}
680
681extern void __rxrpc_put_peer(struct rxrpc_peer *peer);
682static inline void rxrpc_put_peer(struct rxrpc_peer *peer)
683{
David Howells5627cc82016-04-04 14:00:38 +0100684 if (peer && atomic_dec_and_test(&peer->usage))
David Howellsbe6e6702016-04-04 14:00:32 +0100685 __rxrpc_put_peer(peer);
686}
David Howells0d81a512016-06-13 13:30:30 +0100687
688/*
689 * proc.c
690 */
691extern const char *const rxrpc_call_states[];
692extern const struct file_operations rxrpc_call_seq_fops;
693extern const struct file_operations rxrpc_connection_seq_fops;
694
695/*
696 * recvmsg.c
697 */
698void rxrpc_remove_user_ID(struct rxrpc_sock *, struct rxrpc_call *);
699int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
700
701/*
David Howells648af7f2016-04-07 17:23:51 +0100702 * rxkad.c
703 */
704#ifdef CONFIG_RXKAD
705extern const struct rxrpc_security rxkad;
706#endif
707
708/*
David Howells0d81a512016-06-13 13:30:30 +0100709 * security.c
710 */
711int __init rxrpc_init_security(void);
712void rxrpc_exit_security(void);
713int rxrpc_init_client_conn_security(struct rxrpc_connection *);
714int rxrpc_init_server_conn_security(struct rxrpc_connection *);
715
716/*
717 * skbuff.c
718 */
719void rxrpc_packet_destructor(struct sk_buff *);
720
721/*
David Howells5873c082014-02-07 18:58:44 +0000722 * sysctl.c
723 */
724#ifdef CONFIG_SYSCTL
725extern int __init rxrpc_sysctl_init(void);
726extern void rxrpc_sysctl_exit(void);
727#else
728static inline int __init rxrpc_sysctl_init(void) { return 0; }
729static inline void rxrpc_sysctl_exit(void) {}
730#endif
731
732/*
David Howellsbe6e6702016-04-04 14:00:32 +0100733 * utils.c
734 */
735void rxrpc_get_addr_from_skb(struct rxrpc_local *, const struct sk_buff *,
736 struct sockaddr_rxrpc *);
737
738/*
David Howells17926a72007-04-26 15:48:28 -0700739 * debug tracing
740 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000741extern unsigned int rxrpc_debug;
David Howells17926a72007-04-26 15:48:28 -0700742
743#define dbgprintk(FMT,...) \
Sven Schnelle9f389f42008-04-03 10:45:30 +0100744 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700745
Harvey Harrison0dc47872008-03-05 20:47:47 -0800746#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
747#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700748#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
749#define kproto(FMT,...) dbgprintk("### "FMT ,##__VA_ARGS__)
750#define knet(FMT,...) dbgprintk("@@@ "FMT ,##__VA_ARGS__)
751
752
753#if defined(__KDEBUG)
754#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
755#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
756#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
757#define _proto(FMT,...) kproto(FMT,##__VA_ARGS__)
758#define _net(FMT,...) knet(FMT,##__VA_ARGS__)
759
760#elif defined(CONFIG_AF_RXRPC_DEBUG)
761#define RXRPC_DEBUG_KENTER 0x01
762#define RXRPC_DEBUG_KLEAVE 0x02
763#define RXRPC_DEBUG_KDEBUG 0x04
764#define RXRPC_DEBUG_KPROTO 0x08
765#define RXRPC_DEBUG_KNET 0x10
766
767#define _enter(FMT,...) \
768do { \
769 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER)) \
770 kenter(FMT,##__VA_ARGS__); \
771} while (0)
772
773#define _leave(FMT,...) \
774do { \
775 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE)) \
776 kleave(FMT,##__VA_ARGS__); \
777} while (0)
778
779#define _debug(FMT,...) \
780do { \
781 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG)) \
782 kdebug(FMT,##__VA_ARGS__); \
783} while (0)
784
785#define _proto(FMT,...) \
786do { \
787 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO)) \
788 kproto(FMT,##__VA_ARGS__); \
789} while (0)
790
791#define _net(FMT,...) \
792do { \
793 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET)) \
794 knet(FMT,##__VA_ARGS__); \
795} while (0)
796
797#else
David Howells12fdff32010-08-12 16:54:57 +0100798#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
799#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
800#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
801#define _proto(FMT,...) no_printk("### "FMT ,##__VA_ARGS__)
802#define _net(FMT,...) no_printk("@@@ "FMT ,##__VA_ARGS__)
David Howells17926a72007-04-26 15:48:28 -0700803#endif
804
805/*
806 * debug assertion checking
807 */
808#if 1 // defined(__KDEBUGALL)
809
810#define ASSERT(X) \
811do { \
812 if (unlikely(!(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700813 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -0700814 BUG(); \
815 } \
David Howellsb4f13422016-03-04 15:56:19 +0000816} while (0)
David Howells17926a72007-04-26 15:48:28 -0700817
818#define ASSERTCMP(X, OP, Y) \
819do { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700820 unsigned long _x = (unsigned long)(X); \
821 unsigned long _y = (unsigned long)(Y); \
822 if (unlikely(!(_x OP _y))) { \
823 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
824 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -0700825 BUG(); \
826 } \
David Howellsb4f13422016-03-04 15:56:19 +0000827} while (0)
David Howells17926a72007-04-26 15:48:28 -0700828
829#define ASSERTIF(C, X) \
830do { \
831 if (unlikely((C) && !(X))) { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700832 pr_err("Assertion failed\n"); \
David Howells17926a72007-04-26 15:48:28 -0700833 BUG(); \
834 } \
David Howellsb4f13422016-03-04 15:56:19 +0000835} while (0)
David Howells17926a72007-04-26 15:48:28 -0700836
837#define ASSERTIFCMP(C, X, OP, Y) \
838do { \
Joe Perches9b6d5392016-06-02 12:08:52 -0700839 unsigned long _x = (unsigned long)(X); \
840 unsigned long _y = (unsigned long)(Y); \
841 if (unlikely((C) && !(_x OP _y))) { \
842 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
843 _x, _x, #OP, _y, _y); \
David Howells17926a72007-04-26 15:48:28 -0700844 BUG(); \
845 } \
David Howellsb4f13422016-03-04 15:56:19 +0000846} while (0)
David Howells17926a72007-04-26 15:48:28 -0700847
848#else
849
850#define ASSERT(X) \
851do { \
David Howellsb4f13422016-03-04 15:56:19 +0000852} while (0)
David Howells17926a72007-04-26 15:48:28 -0700853
854#define ASSERTCMP(X, OP, Y) \
855do { \
David Howellsb4f13422016-03-04 15:56:19 +0000856} while (0)
David Howells17926a72007-04-26 15:48:28 -0700857
858#define ASSERTIF(C, X) \
859do { \
David Howellsb4f13422016-03-04 15:56:19 +0000860} while (0)
David Howells17926a72007-04-26 15:48:28 -0700861
862#define ASSERTIFCMP(C, X, OP, Y) \
863do { \
David Howellsb4f13422016-03-04 15:56:19 +0000864} while (0)
David Howells17926a72007-04-26 15:48:28 -0700865
866#endif /* __KDEBUGALL */
867
868/*
869 * socket buffer accounting / leak finding
870 */
871static inline void __rxrpc_new_skb(struct sk_buff *skb, const char *fn)
872{
873 //_net("new skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
874 //atomic_inc(&rxrpc_n_skbs);
875}
876
877#define rxrpc_new_skb(skb) __rxrpc_new_skb((skb), __func__)
878
879static inline void __rxrpc_kill_skb(struct sk_buff *skb, const char *fn)
880{
881 //_net("kill skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
882 //atomic_dec(&rxrpc_n_skbs);
883}
884
885#define rxrpc_kill_skb(skb) __rxrpc_kill_skb((skb), __func__)
886
887static inline void __rxrpc_free_skb(struct sk_buff *skb, const char *fn)
888{
889 if (skb) {
890 CHECK_SLAB_OKAY(&skb->users);
891 //_net("free skb %p %s [%d]",
892 // skb, fn, atomic_read(&rxrpc_n_skbs));
893 //atomic_dec(&rxrpc_n_skbs);
894 kfree_skb(skb);
895 }
896}
897
898#define rxrpc_free_skb(skb) __rxrpc_free_skb((skb), __func__)
899
900static inline void rxrpc_purge_queue(struct sk_buff_head *list)
901{
902 struct sk_buff *skb;
903 while ((skb = skb_dequeue((list))) != NULL)
904 rxrpc_free_skb(skb);
905}
906
David Howells17926a72007-04-26 15:48:28 -0700907#define rxrpc_get_call(CALL) \
908do { \
909 CHECK_SLAB_OKAY(&(CALL)->usage); \
910 if (atomic_inc_return(&(CALL)->usage) == 1) \
911 BUG(); \
David Howellsb4f13422016-03-04 15:56:19 +0000912} while (0)
David Howells17926a72007-04-26 15:48:28 -0700913
914#define rxrpc_put_call(CALL) \
915do { \
916 __rxrpc_put_call(CALL); \
David Howellsb4f13422016-03-04 15:56:19 +0000917} while (0)