rxrpc: Replace conn->trans->{local,peer} with conn->params.{local,peer}
[linux-2.6-block.git] / net / rxrpc / ar-internal.h
CommitLineData
17926a79
DH
1/* 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
be6e6707 12#include <linux/atomic.h>
e0e4d82f 13#include <net/sock.h>
be6e6707 14#include <net/af_rxrpc.h>
17926a79
DH
15#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
b4f1342f 22#define CHECK_SLAB_OKAY(X) do {} while (0)
17926a79
DH
23#endif
24
17926a79
DH
25#define FCRYPT_BSIZE 8
26struct rxrpc_crypt {
27 union {
28 u8 x[FCRYPT_BSIZE];
91e916cf 29 __be32 n[2];
17926a79
DH
30 };
31} __attribute__((aligned(8)));
32
651350d1
DH
33#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)
17926a79
DH
39
40/*
41 * sk_state for RxRPC sockets
42 */
43enum {
2341e077
DH
44 RXRPC_UNBOUND = 0,
45 RXRPC_CLIENT_UNBOUND, /* Unbound socket used as client */
17926a79 46 RXRPC_CLIENT_BOUND, /* client local address bound */
17926a79
DH
47 RXRPC_SERVER_BOUND, /* server local address bound */
48 RXRPC_SERVER_LISTENING, /* server listening for connections */
49 RXRPC_CLOSE, /* socket is being closed */
50};
51
52/*
53 * RxRPC socket definition
54 */
55struct rxrpc_sock {
56 /* WARNING: sk has to be the first member */
57 struct sock sk;
651350d1 58 rxrpc_interceptor_t interceptor; /* kernel service Rx interceptor function */
17926a79 59 struct rxrpc_local *local; /* local endpoint */
17926a79
DH
60 struct rxrpc_connection *conn; /* exclusive virtual connection */
61 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;
2341e077 68#define RXRPC_SOCK_CONNECTED 0 /* connect_srx is set */
17926a79
DH
69#define RXRPC_SOCK_EXCLUSIVE_CONN 1 /* exclusive connection for a client socket */
70 rwlock_t call_lock; /* lock for calls */
71 u32 min_sec_level; /* minimum security level */
72#define RXRPC_SECURITY_MAX RXRPC_SECURITY_ENCRYPT
73 struct sockaddr_rxrpc srx; /* local address */
2341e077 74 struct sockaddr_rxrpc connect_srx; /* Default client address from connect() */
19ffa01c 75 sa_family_t family; /* protocol family created with */
17926a79
DH
76};
77
78#define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk)
79
0d12f8a4
DH
80/*
81 * 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
17926a79
DH
100/*
101 * 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 {
95c96174 108 unsigned int offset; /* offset into buffer of next read */
17926a79
DH
109 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
0d12f8a4 114 struct rxrpc_host_header hdr; /* RxRPC packet header from this packet */
17926a79
DH
115};
116
117#define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb)
118
17926a79
DH
119enum 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 {
17926a79
DH
130 const char *name; /* name of this service */
131 u8 security_index; /* security type provided */
132
648af7fc
DH
133 /* Initialise a security service */
134 int (*init)(void);
135
136 /* Clean up a security service */
137 void (*exit)(void);
138
17926a79
DH
139 /* initialise a connection's security */
140 int (*init_connection_security)(struct rxrpc_connection *);
141
142 /* prime a connection's packet security */
143 void (*prime_packet_security)(struct rxrpc_connection *);
144
145 /* impose security on a packet */
146 int (*secure_packet)(const struct rxrpc_call *,
147 struct sk_buff *,
148 size_t,
149 void *);
150
151 /* verify the security on a received packet */
152 int (*verify_packet)(const struct rxrpc_call *, struct sk_buff *,
153 u32 *);
154
155 /* issue a challenge */
156 int (*issue_challenge)(struct rxrpc_connection *);
157
158 /* respond to a challenge */
159 int (*respond_to_challenge)(struct rxrpc_connection *,
160 struct sk_buff *,
161 u32 *);
162
163 /* verify a response */
164 int (*verify_response)(struct rxrpc_connection *,
165 struct sk_buff *,
166 u32 *);
167
168 /* clear connection security */
169 void (*clear)(struct rxrpc_connection *);
170};
171
172/*
4f95dd78
DH
173 * RxRPC local transport endpoint description
174 * - owned by a single AF_RXRPC socket
175 * - pointed to by transport socket struct sk_user_data
17926a79
DH
176 */
177struct rxrpc_local {
4f95dd78
DH
178 struct rcu_head rcu;
179 atomic_t usage;
180 struct list_head link;
17926a79 181 struct socket *socket; /* my UDP socket */
4f95dd78 182 struct work_struct processor;
17926a79 183 struct list_head services; /* services listening on this endpoint */
17926a79
DH
184 struct rw_semaphore defrag_sem; /* control re-enablement of IP DF bit */
185 struct sk_buff_head accept_queue; /* incoming calls awaiting acceptance */
186 struct sk_buff_head reject_queue; /* packets awaiting rejection */
44ba0698 187 struct sk_buff_head event_queue; /* endpoint event packets awaiting processing */
4f95dd78 188 struct mutex conn_lock; /* Client connection creation lock */
17926a79
DH
189 spinlock_t lock; /* access lock */
190 rwlock_t services_lock; /* lock for services list */
17926a79 191 int debug_id; /* debug ID for printks */
4f95dd78 192 bool dead;
17926a79
DH
193 struct sockaddr_rxrpc srx; /* local address */
194};
195
196/*
197 * RxRPC remote transport endpoint definition
be6e6707 198 * - matched by local endpoint, remote port, address and protocol type
17926a79
DH
199 */
200struct rxrpc_peer {
be6e6707
DH
201 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;
f66d7490
DH
206 struct hlist_head error_targets; /* targets for net error distribution */
207 struct work_struct error_distributor;
17926a79 208 spinlock_t lock; /* access lock */
95c96174
ED
209 unsigned int if_mtu; /* interface MTU for this peer */
210 unsigned int mtu; /* network MTU for this peer */
211 unsigned int maxdata; /* data size (MTU - hdrsize) */
17926a79
DH
212 unsigned short hdrsize; /* header size (IP + UDP + RxRPC) */
213 int debug_id; /* debug ID for printks */
f66d7490
DH
214 int error_report; /* Net (+0) or local (+1000000) to distribute */
215#define RXRPC_LOCAL_ERROR_OFFSET 1000000
17926a79
DH
216 struct sockaddr_rxrpc srx; /* remote address */
217
218 /* calculated RTT cache */
219#define RXRPC_RTT_CACHE_SIZE 32
220 suseconds_t rtt; /* current RTT estimate (in uS) */
95c96174
ED
221 unsigned int rtt_point; /* next entry at which to insert */
222 unsigned int rtt_usage; /* amount of cache actually used */
17926a79
DH
223 suseconds_t rtt_cache[RXRPC_RTT_CACHE_SIZE]; /* calculated RTT cache */
224};
225
226/*
227 * RxRPC point-to-point transport / connection manager definition
228 * - handles a bundle of connections between two endpoints
229 * - matched by { local, peer }
230 */
231struct rxrpc_transport {
232 struct rxrpc_local *local; /* local transport endpoint */
233 struct rxrpc_peer *peer; /* remote transport endpoint */
17926a79
DH
234 struct rb_root bundles; /* client connection bundles on this transport */
235 struct rb_root client_conns; /* client connections on this transport */
236 struct rb_root server_conns; /* server connections on this transport */
237 struct list_head link; /* link in master session list */
22a3f9a2 238 unsigned long put_time; /* time at which to reap */
17926a79
DH
239 spinlock_t client_lock; /* client connection allocation lock */
240 rwlock_t conn_lock; /* lock for active/dead connections */
241 atomic_t usage;
242 int debug_id; /* debug ID for printks */
243 unsigned int conn_idcounter; /* connection ID counter (client) */
244};
245
246/*
247 * RxRPC client connection bundle
248 * - matched by { transport, service_id, key }
249 */
250struct rxrpc_conn_bundle {
251 struct rb_node node; /* node in transport's lookup tree */
252 struct list_head unused_conns; /* unused connections in this bundle */
253 struct list_head avail_conns; /* available connections in this bundle */
254 struct list_head busy_conns; /* busy connections in this bundle */
255 struct key *key; /* security for this bundle */
256 wait_queue_head_t chanwait; /* wait for channel to become available */
257 atomic_t usage;
258 int debug_id; /* debug ID for printks */
259 unsigned short num_conns; /* number of connections in this bundle */
0d12f8a4 260 u16 service_id; /* Service ID for this bundle */
4e36a95e 261 u8 security_ix; /* security type */
17926a79
DH
262};
263
19ffa01c
DH
264/*
265 * Keys for matching a connection.
266 */
267struct rxrpc_conn_proto {
268 unsigned long hash_key;
269 struct rxrpc_local *local; /* Representation of local endpoint */
270 u32 epoch; /* epoch of this connection */
271 u32 cid; /* connection ID */
272 u8 in_clientflag; /* RXRPC_CLIENT_INITIATED if we are server */
273 u8 addr_size; /* Size of the address */
274 sa_family_t family; /* Transport protocol */
275 __be16 port; /* Peer UDP/UDP6 port */
276 union { /* Peer address */
277 struct in_addr ipv4_addr;
278 struct in6_addr ipv6_addr;
279 u32 raw_addr[0];
280 };
281};
282
283struct rxrpc_conn_parameters {
284 struct rxrpc_local *local; /* Representation of local endpoint */
285 struct rxrpc_peer *peer; /* Remote endpoint */
286 struct key *key; /* Security details */
287 bool exclusive; /* T if conn is exclusive */
288 u16 service_id; /* Service ID for this connection */
289 u32 security_level; /* Security level selected */
290};
291
17926a79
DH
292/*
293 * RxRPC connection definition
294 * - matched by { transport, service_id, conn_id, direction, key }
295 * - each connection can only handle four simultaneous calls
296 */
297struct rxrpc_connection {
298 struct rxrpc_transport *trans; /* transport session */
299 struct rxrpc_conn_bundle *bundle; /* connection bundle (client) */
19ffa01c
DH
300 struct rxrpc_conn_proto proto;
301 struct rxrpc_conn_parameters params;
302
17926a79
DH
303 struct work_struct processor; /* connection event processor */
304 struct rb_node node; /* node in transport's lookup tree */
305 struct list_head link; /* link in master connection list */
306 struct list_head bundle_link; /* link in bundle */
307 struct rb_root calls; /* calls on this connection */
308 struct sk_buff_head rx_queue; /* received conn-level packets */
309 struct rxrpc_call *channels[RXRPC_MAXCALLS]; /* channels (active calls) */
648af7fc 310 const struct rxrpc_security *security; /* applied security module */
17926a79 311 struct key *server_key; /* security for this service */
1afe593b 312 struct crypto_skcipher *cipher; /* encryption handle */
17926a79
DH
313 struct rxrpc_crypt csum_iv; /* packet checksum base */
314 unsigned long events;
315#define RXRPC_CONN_CHALLENGE 0 /* send challenge packet */
22a3f9a2 316 unsigned long put_time; /* time at which to reap */
17926a79
DH
317 rwlock_t lock; /* access lock */
318 spinlock_t state_lock; /* state-change lock */
319 atomic_t usage;
17926a79
DH
320 enum { /* current state of connection */
321 RXRPC_CONN_UNUSED, /* - connection not yet attempted */
322 RXRPC_CONN_CLIENT, /* - client connection */
323 RXRPC_CONN_SERVER_UNSECURED, /* - server unsecured connection */
324 RXRPC_CONN_SERVER_CHALLENGING, /* - server challenging for security */
325 RXRPC_CONN_SERVER, /* - server secured connection */
326 RXRPC_CONN_REMOTELY_ABORTED, /* - conn aborted by peer */
327 RXRPC_CONN_LOCALLY_ABORTED, /* - conn aborted locally */
328 RXRPC_CONN_NETWORK_ERROR, /* - conn terminated by network error */
329 } state;
dc44b3a0
DH
330 u32 local_abort; /* local abort code */
331 u32 remote_abort; /* remote abort code */
332 int error; /* local error incurred */
17926a79 333 int debug_id; /* debug ID for printks */
95c96174 334 unsigned int call_counter; /* call ID counter */
17926a79
DH
335 atomic_t serial; /* packet serial number counter */
336 atomic_t hi_serial; /* highest serial number received */
337 u8 avail_calls; /* number of calls available */
338 u8 size_align; /* data size alignment (for security) */
339 u8 header_size; /* rxrpc + security header size */
340 u8 security_size; /* security header size */
17926a79 341 u32 security_nonce; /* response re-use preventer */
17926a79 342 u8 security_ix; /* security type */
17926a79
DH
343 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
344};
345
5b8848d1
DH
346/*
347 * Flags in call->flags.
348 */
349enum rxrpc_call_flag {
350 RXRPC_CALL_RELEASED, /* call has been released - no more message to userspace */
351 RXRPC_CALL_TERMINAL_MSG, /* call has given the socket its final message */
352 RXRPC_CALL_RCVD_LAST, /* all packets received */
353 RXRPC_CALL_RUN_RTIMER, /* Tx resend timer started */
354 RXRPC_CALL_TX_SOFT_ACK, /* sent some soft ACKs */
355 RXRPC_CALL_PROC_BUSY, /* the processor is busy */
356 RXRPC_CALL_INIT_ACCEPT, /* acceptance was initiated */
357 RXRPC_CALL_HAS_USERID, /* has a user ID attached */
358 RXRPC_CALL_EXPECT_OOS, /* expect out of sequence packets */
359};
360
361/*
362 * Events that can be raised on a call.
363 */
364enum rxrpc_call_event {
4c198ad1
DH
365 RXRPC_CALL_EV_RCVD_ACKALL, /* ACKALL or reply received */
366 RXRPC_CALL_EV_RCVD_BUSY, /* busy packet received */
367 RXRPC_CALL_EV_RCVD_ABORT, /* abort packet received */
368 RXRPC_CALL_EV_RCVD_ERROR, /* network error received */
369 RXRPC_CALL_EV_ACK_FINAL, /* need to generate final ACK (and release call) */
370 RXRPC_CALL_EV_ACK, /* need to generate ACK */
371 RXRPC_CALL_EV_REJECT_BUSY, /* need to generate busy message */
372 RXRPC_CALL_EV_ABORT, /* need to generate abort */
373 RXRPC_CALL_EV_CONN_ABORT, /* local connection abort generated */
374 RXRPC_CALL_EV_RESEND_TIMER, /* Tx resend timer expired */
375 RXRPC_CALL_EV_RESEND, /* Tx resend required */
376 RXRPC_CALL_EV_DRAIN_RX_OOS, /* drain the Rx out of sequence queue */
377 RXRPC_CALL_EV_LIFE_TIMER, /* call's lifetimer ran out */
378 RXRPC_CALL_EV_ACCEPTED, /* incoming call accepted by userspace app */
379 RXRPC_CALL_EV_SECURED, /* incoming call's connection is now secure */
380 RXRPC_CALL_EV_POST_ACCEPT, /* need to post an "accept?" message to the app */
381 RXRPC_CALL_EV_RELEASE, /* need to release the call's resources */
5b8848d1
DH
382};
383
384/*
385 * The states that a call can be in.
386 */
387enum rxrpc_call_state {
388 RXRPC_CALL_CLIENT_SEND_REQUEST, /* - client sending request phase */
389 RXRPC_CALL_CLIENT_AWAIT_REPLY, /* - client awaiting reply */
390 RXRPC_CALL_CLIENT_RECV_REPLY, /* - client receiving reply phase */
391 RXRPC_CALL_CLIENT_FINAL_ACK, /* - client sending final ACK phase */
392 RXRPC_CALL_SERVER_SECURING, /* - server securing request connection */
393 RXRPC_CALL_SERVER_ACCEPTING, /* - server accepting request */
394 RXRPC_CALL_SERVER_RECV_REQUEST, /* - server receiving request */
395 RXRPC_CALL_SERVER_ACK_REQUEST, /* - server pending ACK of request */
396 RXRPC_CALL_SERVER_SEND_REPLY, /* - server sending reply */
397 RXRPC_CALL_SERVER_AWAIT_ACK, /* - server awaiting final ACK */
398 RXRPC_CALL_COMPLETE, /* - call completed */
399 RXRPC_CALL_SERVER_BUSY, /* - call rejected by busy server */
400 RXRPC_CALL_REMOTELY_ABORTED, /* - call aborted by peer */
401 RXRPC_CALL_LOCALLY_ABORTED, /* - call aborted locally on error or close */
402 RXRPC_CALL_NETWORK_ERROR, /* - call terminated by network error */
403 RXRPC_CALL_DEAD, /* - call is dead */
404 NR__RXRPC_CALL_STATES
405};
406
17926a79
DH
407/*
408 * RxRPC call definition
409 * - matched by { connection, call_id }
410 */
411struct rxrpc_call {
412 struct rxrpc_connection *conn; /* connection carrying call */
413 struct rxrpc_sock *socket; /* socket responsible */
414 struct timer_list lifetimer; /* lifetime remaining on call */
415 struct timer_list deadspan; /* reap timer for re-ACK'ing, etc */
416 struct timer_list ack_timer; /* ACK generation timer */
417 struct timer_list resend_timer; /* Tx resend timer */
418 struct work_struct destroyer; /* call destroyer */
419 struct work_struct processor; /* packet processor and ACK generator */
420 struct list_head link; /* link in master call list */
f66d7490 421 struct hlist_node error_link; /* link in error distribution list */
17926a79
DH
422 struct list_head accept_link; /* calls awaiting acceptance */
423 struct rb_node sock_node; /* node in socket call tree */
424 struct rb_node conn_node; /* node in connection call tree */
425 struct sk_buff_head rx_queue; /* received packets */
426 struct sk_buff_head rx_oos_queue; /* packets received out of sequence */
427 struct sk_buff *tx_pending; /* Tx socket buffer being filled */
428 wait_queue_head_t tx_waitq; /* wait for Tx window space to become available */
429 unsigned long user_call_ID; /* user-defined call ID */
430 unsigned long creation_jif; /* time of call creation */
431 unsigned long flags;
17926a79 432 unsigned long events;
17926a79
DH
433 spinlock_t lock;
434 rwlock_t state_lock; /* lock for state transition */
435 atomic_t usage;
436 atomic_t sequence; /* Tx data packet sequence counter */
dc44b3a0
DH
437 u32 local_abort; /* local abort code */
438 u32 remote_abort; /* remote abort code */
f66d7490
DH
439 int error_report; /* Network error (ICMP/local transport) */
440 int error; /* Local error incurred */
5b8848d1 441 enum rxrpc_call_state state : 8; /* current state of call */
17926a79
DH
442 int debug_id; /* debug ID for printks */
443 u8 channel; /* connection channel occupied by this call */
444
445 /* transmission-phase ACK management */
4e36a95e
DH
446 u8 acks_head; /* offset into window of first entry */
447 u8 acks_tail; /* offset into window of last entry */
448 u8 acks_winsz; /* size of un-ACK'd window */
449 u8 acks_unacked; /* lowest unacked packet in last ACK received */
17926a79
DH
450 int acks_latest; /* serial number of latest ACK received */
451 rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */
452 unsigned long *acks_window; /* sent packet window
453 * - elements are pointers with LSB set if ACK'd
454 */
455
456 /* receive-phase ACK management */
457 rxrpc_seq_t rx_data_expect; /* next data seq ID expected to be received */
458 rxrpc_seq_t rx_data_post; /* next data seq ID expected to be posted */
459 rxrpc_seq_t rx_data_recv; /* last data seq ID encountered by recvmsg */
460 rxrpc_seq_t rx_data_eaten; /* last data seq ID consumed by recvmsg */
461 rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */
462 rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */
0d12f8a4 463 rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */
4e36a95e 464 u8 ackr_reason; /* reason to ACK */
0d12f8a4 465 rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */
17926a79
DH
466 atomic_t ackr_not_idle; /* number of packets in Rx queue */
467
468 /* received packet records, 1 bit per record */
469#define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG)
470 unsigned long ackr_window[RXRPC_ACKR_WINDOW_ASZ + 1];
471
7727640c
TS
472 struct hlist_node hash_node;
473 unsigned long hash_key; /* Full hash key */
474 u8 in_clientflag; /* Copy of conn->in_clientflag for hashing */
475 struct rxrpc_local *local; /* Local endpoint. Used for hashing. */
19ffa01c 476 sa_family_t family; /* Frame protocol */
0d12f8a4
DH
477 u32 call_id; /* call ID on connection */
478 u32 cid; /* connection ID plus channel index */
479 u32 epoch; /* epoch of this connection */
480 u16 service_id; /* service ID */
7727640c
TS
481 union { /* Peer IP address for hashing */
482 __be32 ipv4_addr;
483 __u8 ipv6_addr[16]; /* Anticipates eventual IPv6 support */
484 } peer_ip;
17926a79
DH
485};
486
17926a79
DH
487/*
488 * locally abort an RxRPC call
489 */
490static inline void rxrpc_abort_call(struct rxrpc_call *call, u32 abort_code)
491{
492 write_lock_bh(&call->state_lock);
493 if (call->state < RXRPC_CALL_COMPLETE) {
dc44b3a0 494 call->local_abort = abort_code;
17926a79 495 call->state = RXRPC_CALL_LOCALLY_ABORTED;
4c198ad1 496 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
17926a79
DH
497 }
498 write_unlock_bh(&call->state_lock);
499}
500
501/*
651350d1 502 * af_rxrpc.c
17926a79 503 */
651350d1 504extern atomic_t rxrpc_n_skbs;
0d12f8a4 505extern u32 rxrpc_epoch;
651350d1
DH
506extern atomic_t rxrpc_debug_id;
507extern struct workqueue_struct *rxrpc_workqueue;
17926a79 508
19ffa01c 509extern struct rxrpc_transport *rxrpc_name_to_transport(struct rxrpc_conn_parameters *,
2341e077 510 struct sockaddr *,
19ffa01c 511 int, gfp_t);
2341e077 512
17926a79 513/*
0d81a51a 514 * call_accept.c
17926a79 515 */
4f95dd78 516void rxrpc_accept_incoming_calls(struct rxrpc_local *);
c1b1203d
JP
517struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long);
518int rxrpc_reject_call(struct rxrpc_sock *);
17926a79
DH
519
520/*
0d81a51a 521 * call_event.c
17926a79 522 */
0d12f8a4
DH
523void __rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool);
524void rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool);
c1b1203d 525void rxrpc_process_call(struct work_struct *);
17926a79
DH
526
527/*
0d81a51a 528 * call_object.c
17926a79 529 */
dad8aff7
DH
530extern unsigned int rxrpc_max_call_lifetime;
531extern unsigned int rxrpc_dead_call_expiry;
17926a79
DH
532extern struct kmem_cache *rxrpc_call_jar;
533extern struct list_head rxrpc_calls;
534extern rwlock_t rxrpc_call_lock;
535
0d12f8a4
DH
536struct rxrpc_call *rxrpc_find_call_hash(struct rxrpc_host_header *,
537 void *, sa_family_t, const void *);
2341e077
DH
538struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
539struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
19ffa01c 540 struct rxrpc_conn_parameters *,
c1b1203d
JP
541 struct rxrpc_transport *,
542 struct rxrpc_conn_bundle *,
2341e077 543 unsigned long, gfp_t);
c1b1203d
JP
544struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *,
545 struct rxrpc_connection *,
843099ca 546 struct rxrpc_host_header *);
c1b1203d
JP
547void rxrpc_release_call(struct rxrpc_call *);
548void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
549void __rxrpc_put_call(struct rxrpc_call *);
550void __exit rxrpc_destroy_all_calls(void);
17926a79
DH
551
552/*
0d81a51a
DH
553 * conn_event.c
554 */
555void rxrpc_process_connection(struct work_struct *);
556void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *);
4f95dd78 557void rxrpc_reject_packets(struct rxrpc_local *);
0d81a51a
DH
558
559/*
560 * conn_object.c
17926a79 561 */
dad8aff7 562extern unsigned int rxrpc_connection_expiry;
17926a79
DH
563extern struct list_head rxrpc_connections;
564extern rwlock_t rxrpc_connection_lock;
565
c1b1203d
JP
566struct rxrpc_conn_bundle *rxrpc_get_bundle(struct rxrpc_sock *,
567 struct rxrpc_transport *,
0d12f8a4 568 struct key *, u16, gfp_t);
c1b1203d 569void rxrpc_put_bundle(struct rxrpc_transport *, struct rxrpc_conn_bundle *);
19ffa01c
DH
570int rxrpc_connect_call(struct rxrpc_sock *, struct rxrpc_conn_parameters *,
571 struct rxrpc_transport *, struct rxrpc_conn_bundle *,
572 struct rxrpc_call *, gfp_t);
c1b1203d
JP
573void rxrpc_put_connection(struct rxrpc_connection *);
574void __exit rxrpc_destroy_all_connections(void);
575struct rxrpc_connection *rxrpc_find_connection(struct rxrpc_transport *,
0d12f8a4 576 struct rxrpc_host_header *);
17926a79 577extern struct rxrpc_connection *
843099ca 578rxrpc_incoming_connection(struct rxrpc_transport *, struct rxrpc_host_header *);
17926a79 579
19ffa01c
DH
580static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
581{
582 return conn->out_clientflag;
583}
584
585static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
586{
587 return conn->proto.in_clientflag;
588}
589
17926a79 590/*
0d81a51a 591 * input.c
17926a79 592 */
0d81a51a
DH
593void rxrpc_data_ready(struct sock *);
594int rxrpc_queue_rcv_skb(struct rxrpc_call *, struct sk_buff *, bool, bool);
595void rxrpc_fast_process_packet(struct rxrpc_call *, struct sk_buff *);
17926a79
DH
596
597/*
0d81a51a 598 * insecure.c
17926a79 599 */
0d81a51a 600extern const struct rxrpc_security rxrpc_no_security;
17926a79
DH
601
602/*
0d81a51a 603 * key.c
17926a79 604 */
0d81a51a
DH
605extern struct key_type key_type_rxrpc;
606extern struct key_type key_type_rxrpc_s;
607
608int rxrpc_request_key(struct rxrpc_sock *, char __user *, int);
609int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int);
610int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time_t,
611 u32);
17926a79 612
87563616
DH
613/*
614 * local_event.c
615 */
4f95dd78 616extern void rxrpc_process_local_events(struct rxrpc_local *);
87563616 617
17926a79 618/*
0d81a51a 619 * local_object.c
17926a79 620 */
4f95dd78
DH
621struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *);
622void __rxrpc_put_local(struct rxrpc_local *);
c1b1203d 623void __exit rxrpc_destroy_all_locals(void);
17926a79 624
4f95dd78
DH
625static inline void rxrpc_get_local(struct rxrpc_local *local)
626{
627 atomic_inc(&local->usage);
628}
629
630static inline
631struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
632{
633 return atomic_inc_not_zero(&local->usage) ? local : NULL;
634}
635
636static inline void rxrpc_put_local(struct rxrpc_local *local)
637{
638 if (atomic_dec_and_test(&local->usage))
639 __rxrpc_put_local(local);
640}
641
17926a79 642/*
0d81a51a 643 * misc.c
17926a79 644 */
0d81a51a
DH
645extern unsigned int rxrpc_max_backlog __read_mostly;
646extern unsigned int rxrpc_requested_ack_delay;
647extern unsigned int rxrpc_soft_ack_delay;
648extern unsigned int rxrpc_idle_ack_delay;
649extern unsigned int rxrpc_rx_window_size;
650extern unsigned int rxrpc_rx_mtu;
651extern unsigned int rxrpc_rx_jumbo_max;
17926a79 652
0d81a51a
DH
653extern const char *const rxrpc_pkts[];
654extern const s8 rxrpc_ack_priority[];
655
656extern const char *rxrpc_acks(u8 reason);
17926a79
DH
657
658/*
0d81a51a 659 * output.c
17926a79 660 */
dad8aff7 661extern unsigned int rxrpc_resend_timeout;
17926a79 662
c1b1203d 663int rxrpc_send_packet(struct rxrpc_transport *, struct sk_buff *);
2341e077 664int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
17926a79
DH
665
666/*
abe89ef0 667 * peer_event.c
0d81a51a 668 */
abe89ef0 669void rxrpc_error_report(struct sock *);
f66d7490 670void rxrpc_peer_error_distributor(struct work_struct *);
0d81a51a
DH
671
672/*
673 * peer_object.c
17926a79 674 */
be6e6707
DH
675struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
676 const struct sockaddr_rxrpc *);
677struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_local *,
678 struct sockaddr_rxrpc *, gfp_t);
679struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
680
681static inline void rxrpc_get_peer(struct rxrpc_peer *peer)
682{
683 atomic_inc(&peer->usage);
684}
685
686static inline
687struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
688{
689 return atomic_inc_not_zero(&peer->usage) ? peer : NULL;
690}
691
692extern void __rxrpc_put_peer(struct rxrpc_peer *peer);
693static inline void rxrpc_put_peer(struct rxrpc_peer *peer)
694{
695 if (atomic_dec_and_test(&peer->usage))
696 __rxrpc_put_peer(peer);
697}
17926a79
DH
698
699/*
0d81a51a 700 * proc.c
17926a79 701 */
036c2e27
JE
702extern const char *const rxrpc_call_states[];
703extern const struct file_operations rxrpc_call_seq_fops;
704extern const struct file_operations rxrpc_connection_seq_fops;
17926a79
DH
705
706/*
0d81a51a 707 * recvmsg.c
17926a79 708 */
c1b1203d 709void rxrpc_remove_user_ID(struct rxrpc_sock *, struct rxrpc_call *);
1b784140 710int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
17926a79
DH
711
712/*
0d81a51a
DH
713 * rxkad.c
714 */
715#ifdef CONFIG_RXKAD
716extern const struct rxrpc_security rxkad;
717#endif
718
719/*
720 * security.c
17926a79 721 */
648af7fc
DH
722int __init rxrpc_init_security(void);
723void rxrpc_exit_security(void);
c1b1203d
JP
724int rxrpc_init_client_conn_security(struct rxrpc_connection *);
725int rxrpc_init_server_conn_security(struct rxrpc_connection *);
17926a79
DH
726
727/*
0d81a51a 728 * skbuff.c
17926a79 729 */
c1b1203d 730void rxrpc_packet_destructor(struct sk_buff *);
17926a79 731
5873c083
DH
732/*
733 * sysctl.c
734 */
735#ifdef CONFIG_SYSCTL
736extern int __init rxrpc_sysctl_init(void);
737extern void rxrpc_sysctl_exit(void);
738#else
739static inline int __init rxrpc_sysctl_init(void) { return 0; }
740static inline void rxrpc_sysctl_exit(void) {}
741#endif
742
0d81a51a
DH
743/*
744 * transport.c
745 */
746extern unsigned int rxrpc_transport_expiry;
747
748struct rxrpc_transport *rxrpc_get_transport(struct rxrpc_local *,
749 struct rxrpc_peer *, gfp_t);
750void rxrpc_put_transport(struct rxrpc_transport *);
751void __exit rxrpc_destroy_all_transports(void);
752struct rxrpc_transport *rxrpc_find_transport(struct rxrpc_local *,
753 struct rxrpc_peer *);
754
be6e6707
DH
755/*
756 * utils.c
757 */
758void rxrpc_get_addr_from_skb(struct rxrpc_local *, const struct sk_buff *,
759 struct sockaddr_rxrpc *);
760
17926a79
DH
761/*
762 * debug tracing
763 */
95c96174 764extern unsigned int rxrpc_debug;
17926a79
DH
765
766#define dbgprintk(FMT,...) \
9f389f4b 767 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
17926a79 768
0dc47877
HH
769#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
770#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
17926a79
DH
771#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
772#define kproto(FMT,...) dbgprintk("### "FMT ,##__VA_ARGS__)
773#define knet(FMT,...) dbgprintk("@@@ "FMT ,##__VA_ARGS__)
774
775
776#if defined(__KDEBUG)
777#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
778#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
779#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
780#define _proto(FMT,...) kproto(FMT,##__VA_ARGS__)
781#define _net(FMT,...) knet(FMT,##__VA_ARGS__)
782
783#elif defined(CONFIG_AF_RXRPC_DEBUG)
784#define RXRPC_DEBUG_KENTER 0x01
785#define RXRPC_DEBUG_KLEAVE 0x02
786#define RXRPC_DEBUG_KDEBUG 0x04
787#define RXRPC_DEBUG_KPROTO 0x08
788#define RXRPC_DEBUG_KNET 0x10
789
790#define _enter(FMT,...) \
791do { \
792 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER)) \
793 kenter(FMT,##__VA_ARGS__); \
794} while (0)
795
796#define _leave(FMT,...) \
797do { \
798 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE)) \
799 kleave(FMT,##__VA_ARGS__); \
800} while (0)
801
802#define _debug(FMT,...) \
803do { \
804 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG)) \
805 kdebug(FMT,##__VA_ARGS__); \
806} while (0)
807
808#define _proto(FMT,...) \
809do { \
810 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO)) \
811 kproto(FMT,##__VA_ARGS__); \
812} while (0)
813
814#define _net(FMT,...) \
815do { \
816 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET)) \
817 knet(FMT,##__VA_ARGS__); \
818} while (0)
819
820#else
12fdff3f
DH
821#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
822#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
823#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
824#define _proto(FMT,...) no_printk("### "FMT ,##__VA_ARGS__)
825#define _net(FMT,...) no_printk("@@@ "FMT ,##__VA_ARGS__)
17926a79
DH
826#endif
827
828/*
829 * debug assertion checking
830 */
831#if 1 // defined(__KDEBUGALL)
832
833#define ASSERT(X) \
834do { \
835 if (unlikely(!(X))) { \
9b6d5398 836 pr_err("Assertion failed\n"); \
17926a79
DH
837 BUG(); \
838 } \
b4f1342f 839} while (0)
17926a79
DH
840
841#define ASSERTCMP(X, OP, Y) \
842do { \
9b6d5398
JP
843 unsigned long _x = (unsigned long)(X); \
844 unsigned long _y = (unsigned long)(Y); \
845 if (unlikely(!(_x OP _y))) { \
846 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
847 _x, _x, #OP, _y, _y); \
17926a79
DH
848 BUG(); \
849 } \
b4f1342f 850} while (0)
17926a79
DH
851
852#define ASSERTIF(C, X) \
853do { \
854 if (unlikely((C) && !(X))) { \
9b6d5398 855 pr_err("Assertion failed\n"); \
17926a79
DH
856 BUG(); \
857 } \
b4f1342f 858} while (0)
17926a79
DH
859
860#define ASSERTIFCMP(C, X, OP, Y) \
861do { \
9b6d5398
JP
862 unsigned long _x = (unsigned long)(X); \
863 unsigned long _y = (unsigned long)(Y); \
864 if (unlikely((C) && !(_x OP _y))) { \
865 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
866 _x, _x, #OP, _y, _y); \
17926a79
DH
867 BUG(); \
868 } \
b4f1342f 869} while (0)
17926a79
DH
870
871#else
872
873#define ASSERT(X) \
874do { \
b4f1342f 875} while (0)
17926a79
DH
876
877#define ASSERTCMP(X, OP, Y) \
878do { \
b4f1342f 879} while (0)
17926a79
DH
880
881#define ASSERTIF(C, X) \
882do { \
b4f1342f 883} while (0)
17926a79
DH
884
885#define ASSERTIFCMP(C, X, OP, Y) \
886do { \
b4f1342f 887} while (0)
17926a79
DH
888
889#endif /* __KDEBUGALL */
890
891/*
892 * socket buffer accounting / leak finding
893 */
894static inline void __rxrpc_new_skb(struct sk_buff *skb, const char *fn)
895{
896 //_net("new skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
897 //atomic_inc(&rxrpc_n_skbs);
898}
899
900#define rxrpc_new_skb(skb) __rxrpc_new_skb((skb), __func__)
901
902static inline void __rxrpc_kill_skb(struct sk_buff *skb, const char *fn)
903{
904 //_net("kill skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
905 //atomic_dec(&rxrpc_n_skbs);
906}
907
908#define rxrpc_kill_skb(skb) __rxrpc_kill_skb((skb), __func__)
909
910static inline void __rxrpc_free_skb(struct sk_buff *skb, const char *fn)
911{
912 if (skb) {
913 CHECK_SLAB_OKAY(&skb->users);
914 //_net("free skb %p %s [%d]",
915 // skb, fn, atomic_read(&rxrpc_n_skbs));
916 //atomic_dec(&rxrpc_n_skbs);
917 kfree_skb(skb);
918 }
919}
920
921#define rxrpc_free_skb(skb) __rxrpc_free_skb((skb), __func__)
922
923static inline void rxrpc_purge_queue(struct sk_buff_head *list)
924{
925 struct sk_buff *skb;
926 while ((skb = skb_dequeue((list))) != NULL)
927 rxrpc_free_skb(skb);
928}
929
17926a79
DH
930#define rxrpc_get_call(CALL) \
931do { \
932 CHECK_SLAB_OKAY(&(CALL)->usage); \
933 if (atomic_inc_return(&(CALL)->usage) == 1) \
934 BUG(); \
b4f1342f 935} while (0)
17926a79
DH
936
937#define rxrpc_put_call(CALL) \
938do { \
939 __rxrpc_put_call(CALL); \
b4f1342f 940} while (0)