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