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