1 /* AF_RXRPC internal definitions
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
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.
12 #include <rxrpc/packet.h>
15 #define CHECK_SLAB_OKAY(X) \
16 BUG_ON(atomic_read((X)) >> (sizeof(atomic_t) - 2) == \
17 (POISON_FREE << 8 | POISON_FREE))
19 #define CHECK_SLAB_OKAY(X) do {} while (0)
22 #define FCRYPT_BSIZE 8
28 } __attribute__((aligned(8)));
30 #define rxrpc_queue_work(WS) queue_work(rxrpc_workqueue, (WS))
31 #define rxrpc_queue_delayed_work(WS,D) \
32 queue_delayed_work(rxrpc_workqueue, (WS), (D))
34 #define rxrpc_queue_call(CALL) rxrpc_queue_work(&(CALL)->processor)
35 #define rxrpc_queue_conn(CONN) rxrpc_queue_work(&(CONN)->processor)
38 * sk_state for RxRPC sockets
41 RXRPC_UNCONNECTED
= 0,
42 RXRPC_CLIENT_BOUND
, /* client local address bound */
43 RXRPC_CLIENT_CONNECTED
, /* client is connected */
44 RXRPC_SERVER_BOUND
, /* server local address bound */
45 RXRPC_SERVER_LISTENING
, /* server listening for connections */
46 RXRPC_CLOSE
, /* socket is being closed */
50 * RxRPC socket definition
53 /* WARNING: sk has to be the first member */
55 rxrpc_interceptor_t interceptor
; /* kernel service Rx interceptor function */
56 struct rxrpc_local
*local
; /* local endpoint */
57 struct rxrpc_transport
*trans
; /* transport handler */
58 struct rxrpc_conn_bundle
*bundle
; /* virtual connection bundle */
59 struct rxrpc_connection
*conn
; /* exclusive virtual connection */
60 struct list_head listen_link
; /* link in the local endpoint's listen list */
61 struct list_head secureq
; /* calls awaiting connection security clearance */
62 struct list_head acceptq
; /* calls awaiting acceptance */
63 struct key
*key
; /* security for this socket */
64 struct key
*securities
; /* list of server security descriptors */
65 struct rb_root calls
; /* outstanding calls on this socket */
67 #define RXRPC_SOCK_EXCLUSIVE_CONN 1 /* exclusive connection for a client socket */
68 rwlock_t call_lock
; /* lock for calls */
69 u32 min_sec_level
; /* minimum security level */
70 #define RXRPC_SECURITY_MAX RXRPC_SECURITY_ENCRYPT
71 struct sockaddr_rxrpc srx
; /* local address */
72 sa_family_t proto
; /* protocol created with */
75 #define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk)
78 * CPU-byteorder normalised Rx packet header.
80 struct rxrpc_host_header
{
81 u32 epoch
; /* client boot timestamp */
82 u32 cid
; /* connection and channel ID */
83 u32 callNumber
; /* call ID (0 for connection-level packets) */
84 u32 seq
; /* sequence number of pkt in call stream */
85 u32 serial
; /* serial number of pkt sent to network */
86 u8 type
; /* packet type */
87 u8 flags
; /* packet flags */
88 u8 userStatus
; /* app-layer defined status */
89 u8 securityIndex
; /* security protocol ID */
91 u16 _rsvd
; /* reserved */
92 u16 cksum
; /* kerberos security checksum */
94 u16 serviceId
; /* service ID */
98 * RxRPC socket buffer private variables
99 * - max 48 bytes (struct sk_buff::cb)
101 struct rxrpc_skb_priv
{
102 struct rxrpc_call
*call
; /* call with which associated */
103 unsigned long resend_at
; /* time in jiffies at which to resend */
105 unsigned int offset
; /* offset into buffer of next read */
106 int remain
; /* amount of space remaining for next write */
107 u32 error
; /* network error code */
108 bool need_resend
; /* T if needs resending */
111 struct rxrpc_host_header hdr
; /* RxRPC packet header from this packet */
114 #define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb)
117 RXRPC_CMD_SEND_DATA
, /* send data message */
118 RXRPC_CMD_SEND_ABORT
, /* request abort generation */
119 RXRPC_CMD_ACCEPT
, /* [server] accept incoming call */
120 RXRPC_CMD_REJECT_BUSY
, /* [server] reject a call as busy */
124 * RxRPC security module interface
126 struct rxrpc_security
{
127 struct module
*owner
; /* providing module */
128 struct list_head link
; /* link in master list */
129 const char *name
; /* name of this service */
130 u8 security_index
; /* security type provided */
132 /* initialise a connection's security */
133 int (*init_connection_security
)(struct rxrpc_connection
*);
135 /* prime a connection's packet security */
136 void (*prime_packet_security
)(struct rxrpc_connection
*);
138 /* impose security on a packet */
139 int (*secure_packet
)(const struct rxrpc_call
*,
144 /* verify the security on a received packet */
145 int (*verify_packet
)(const struct rxrpc_call
*, struct sk_buff
*,
148 /* issue a challenge */
149 int (*issue_challenge
)(struct rxrpc_connection
*);
151 /* respond to a challenge */
152 int (*respond_to_challenge
)(struct rxrpc_connection
*,
156 /* verify a response */
157 int (*verify_response
)(struct rxrpc_connection
*,
161 /* clear connection security */
162 void (*clear
)(struct rxrpc_connection
*);
166 * RxRPC local transport endpoint definition
167 * - matched by local port, address and protocol type
170 struct socket
*socket
; /* my UDP socket */
171 struct work_struct destroyer
; /* endpoint destroyer */
172 struct work_struct acceptor
; /* incoming call processor */
173 struct work_struct rejecter
; /* packet reject writer */
174 struct work_struct event_processor
; /* endpoint event processor */
175 struct list_head services
; /* services listening on this endpoint */
176 struct list_head link
; /* link in endpoint list */
177 struct rw_semaphore defrag_sem
; /* control re-enablement of IP DF bit */
178 struct sk_buff_head accept_queue
; /* incoming calls awaiting acceptance */
179 struct sk_buff_head reject_queue
; /* packets awaiting rejection */
180 struct sk_buff_head event_queue
; /* endpoint event packets awaiting processing */
181 spinlock_t lock
; /* access lock */
182 rwlock_t services_lock
; /* lock for services list */
184 int debug_id
; /* debug ID for printks */
185 volatile char error_rcvd
; /* T if received ICMP error outstanding */
186 struct sockaddr_rxrpc srx
; /* local address */
190 * RxRPC remote transport endpoint definition
191 * - matched by remote port, address and protocol type
192 * - holds the connection ID counter for connections between the two endpoints
195 struct work_struct destroyer
; /* peer destroyer */
196 struct list_head link
; /* link in master peer list */
197 struct list_head error_targets
; /* targets for net error distribution */
198 spinlock_t lock
; /* access lock */
200 unsigned int if_mtu
; /* interface MTU for this peer */
201 unsigned int mtu
; /* network MTU for this peer */
202 unsigned int maxdata
; /* data size (MTU - hdrsize) */
203 unsigned short hdrsize
; /* header size (IP + UDP + RxRPC) */
204 int debug_id
; /* debug ID for printks */
205 int net_error
; /* network error distributed */
206 struct sockaddr_rxrpc srx
; /* remote address */
208 /* calculated RTT cache */
209 #define RXRPC_RTT_CACHE_SIZE 32
210 suseconds_t rtt
; /* current RTT estimate (in uS) */
211 unsigned int rtt_point
; /* next entry at which to insert */
212 unsigned int rtt_usage
; /* amount of cache actually used */
213 suseconds_t rtt_cache
[RXRPC_RTT_CACHE_SIZE
]; /* calculated RTT cache */
217 * RxRPC point-to-point transport / connection manager definition
218 * - handles a bundle of connections between two endpoints
219 * - matched by { local, peer }
221 struct rxrpc_transport
{
222 struct rxrpc_local
*local
; /* local transport endpoint */
223 struct rxrpc_peer
*peer
; /* remote transport endpoint */
224 struct work_struct error_handler
; /* network error distributor */
225 struct rb_root bundles
; /* client connection bundles on this transport */
226 struct rb_root client_conns
; /* client connections on this transport */
227 struct rb_root server_conns
; /* server connections on this transport */
228 struct list_head link
; /* link in master session list */
229 struct sk_buff_head error_queue
; /* error packets awaiting processing */
230 unsigned long put_time
; /* time at which to reap */
231 spinlock_t client_lock
; /* client connection allocation lock */
232 rwlock_t conn_lock
; /* lock for active/dead connections */
234 int debug_id
; /* debug ID for printks */
235 unsigned int conn_idcounter
; /* connection ID counter (client) */
239 * RxRPC client connection bundle
240 * - matched by { transport, service_id, key }
242 struct rxrpc_conn_bundle
{
243 struct rb_node node
; /* node in transport's lookup tree */
244 struct list_head unused_conns
; /* unused connections in this bundle */
245 struct list_head avail_conns
; /* available connections in this bundle */
246 struct list_head busy_conns
; /* busy connections in this bundle */
247 struct key
*key
; /* security for this bundle */
248 wait_queue_head_t chanwait
; /* wait for channel to become available */
250 int debug_id
; /* debug ID for printks */
251 unsigned short num_conns
; /* number of connections in this bundle */
252 u16 service_id
; /* Service ID for this bundle */
253 u8 security_ix
; /* security type */
257 * RxRPC connection definition
258 * - matched by { transport, service_id, conn_id, direction, key }
259 * - each connection can only handle four simultaneous calls
261 struct rxrpc_connection
{
262 struct rxrpc_transport
*trans
; /* transport session */
263 struct rxrpc_conn_bundle
*bundle
; /* connection bundle (client) */
264 struct work_struct processor
; /* connection event processor */
265 struct rb_node node
; /* node in transport's lookup tree */
266 struct list_head link
; /* link in master connection list */
267 struct list_head bundle_link
; /* link in bundle */
268 struct rb_root calls
; /* calls on this connection */
269 struct sk_buff_head rx_queue
; /* received conn-level packets */
270 struct rxrpc_call
*channels
[RXRPC_MAXCALLS
]; /* channels (active calls) */
271 struct rxrpc_security
*security
; /* applied security module */
272 struct key
*key
; /* security for this connection (client) */
273 struct key
*server_key
; /* security for this service */
274 struct crypto_skcipher
*cipher
; /* encryption handle */
275 struct rxrpc_crypt csum_iv
; /* packet checksum base */
276 unsigned long events
;
277 #define RXRPC_CONN_CHALLENGE 0 /* send challenge packet */
278 unsigned long put_time
; /* time at which to reap */
279 rwlock_t lock
; /* access lock */
280 spinlock_t state_lock
; /* state-change lock */
282 enum { /* current state of connection */
283 RXRPC_CONN_UNUSED
, /* - connection not yet attempted */
284 RXRPC_CONN_CLIENT
, /* - client connection */
285 RXRPC_CONN_SERVER_UNSECURED
, /* - server unsecured connection */
286 RXRPC_CONN_SERVER_CHALLENGING
, /* - server challenging for security */
287 RXRPC_CONN_SERVER
, /* - server secured connection */
288 RXRPC_CONN_REMOTELY_ABORTED
, /* - conn aborted by peer */
289 RXRPC_CONN_LOCALLY_ABORTED
, /* - conn aborted locally */
290 RXRPC_CONN_NETWORK_ERROR
, /* - conn terminated by network error */
292 int error
; /* error code for local abort */
293 int debug_id
; /* debug ID for printks */
294 unsigned int call_counter
; /* call ID counter */
295 atomic_t serial
; /* packet serial number counter */
296 atomic_t hi_serial
; /* highest serial number received */
297 u8 avail_calls
; /* number of calls available */
298 u8 size_align
; /* data size alignment (for security) */
299 u8 header_size
; /* rxrpc + security header size */
300 u8 security_size
; /* security header size */
301 u32 security_level
; /* security level negotiated */
302 u32 security_nonce
; /* response re-use preventer */
303 u32 epoch
; /* epoch of this connection */
304 u32 cid
; /* connection ID */
305 u16 service_id
; /* service ID for this connection */
306 u8 security_ix
; /* security type */
307 u8 in_clientflag
; /* RXRPC_CLIENT_INITIATED if we are server */
308 u8 out_clientflag
; /* RXRPC_CLIENT_INITIATED if we are client */
312 * Flags in call->flags.
314 enum rxrpc_call_flag
{
315 RXRPC_CALL_RELEASED
, /* call has been released - no more message to userspace */
316 RXRPC_CALL_TERMINAL_MSG
, /* call has given the socket its final message */
317 RXRPC_CALL_RCVD_LAST
, /* all packets received */
318 RXRPC_CALL_RUN_RTIMER
, /* Tx resend timer started */
319 RXRPC_CALL_TX_SOFT_ACK
, /* sent some soft ACKs */
320 RXRPC_CALL_PROC_BUSY
, /* the processor is busy */
321 RXRPC_CALL_INIT_ACCEPT
, /* acceptance was initiated */
322 RXRPC_CALL_HAS_USERID
, /* has a user ID attached */
323 RXRPC_CALL_EXPECT_OOS
, /* expect out of sequence packets */
327 * Events that can be raised on a call.
329 enum rxrpc_call_event
{
330 RXRPC_CALL_EV_RCVD_ACKALL
, /* ACKALL or reply received */
331 RXRPC_CALL_EV_RCVD_BUSY
, /* busy packet received */
332 RXRPC_CALL_EV_RCVD_ABORT
, /* abort packet received */
333 RXRPC_CALL_EV_RCVD_ERROR
, /* network error received */
334 RXRPC_CALL_EV_ACK_FINAL
, /* need to generate final ACK (and release call) */
335 RXRPC_CALL_EV_ACK
, /* need to generate ACK */
336 RXRPC_CALL_EV_REJECT_BUSY
, /* need to generate busy message */
337 RXRPC_CALL_EV_ABORT
, /* need to generate abort */
338 RXRPC_CALL_EV_CONN_ABORT
, /* local connection abort generated */
339 RXRPC_CALL_EV_RESEND_TIMER
, /* Tx resend timer expired */
340 RXRPC_CALL_EV_RESEND
, /* Tx resend required */
341 RXRPC_CALL_EV_DRAIN_RX_OOS
, /* drain the Rx out of sequence queue */
342 RXRPC_CALL_EV_LIFE_TIMER
, /* call's lifetimer ran out */
343 RXRPC_CALL_EV_ACCEPTED
, /* incoming call accepted by userspace app */
344 RXRPC_CALL_EV_SECURED
, /* incoming call's connection is now secure */
345 RXRPC_CALL_EV_POST_ACCEPT
, /* need to post an "accept?" message to the app */
346 RXRPC_CALL_EV_RELEASE
, /* need to release the call's resources */
350 * The states that a call can be in.
352 enum rxrpc_call_state
{
353 RXRPC_CALL_CLIENT_SEND_REQUEST
, /* - client sending request phase */
354 RXRPC_CALL_CLIENT_AWAIT_REPLY
, /* - client awaiting reply */
355 RXRPC_CALL_CLIENT_RECV_REPLY
, /* - client receiving reply phase */
356 RXRPC_CALL_CLIENT_FINAL_ACK
, /* - client sending final ACK phase */
357 RXRPC_CALL_SERVER_SECURING
, /* - server securing request connection */
358 RXRPC_CALL_SERVER_ACCEPTING
, /* - server accepting request */
359 RXRPC_CALL_SERVER_RECV_REQUEST
, /* - server receiving request */
360 RXRPC_CALL_SERVER_ACK_REQUEST
, /* - server pending ACK of request */
361 RXRPC_CALL_SERVER_SEND_REPLY
, /* - server sending reply */
362 RXRPC_CALL_SERVER_AWAIT_ACK
, /* - server awaiting final ACK */
363 RXRPC_CALL_COMPLETE
, /* - call completed */
364 RXRPC_CALL_SERVER_BUSY
, /* - call rejected by busy server */
365 RXRPC_CALL_REMOTELY_ABORTED
, /* - call aborted by peer */
366 RXRPC_CALL_LOCALLY_ABORTED
, /* - call aborted locally on error or close */
367 RXRPC_CALL_NETWORK_ERROR
, /* - call terminated by network error */
368 RXRPC_CALL_DEAD
, /* - call is dead */
369 NR__RXRPC_CALL_STATES
373 * RxRPC call definition
374 * - matched by { connection, call_id }
377 struct rxrpc_connection
*conn
; /* connection carrying call */
378 struct rxrpc_sock
*socket
; /* socket responsible */
379 struct timer_list lifetimer
; /* lifetime remaining on call */
380 struct timer_list deadspan
; /* reap timer for re-ACK'ing, etc */
381 struct timer_list ack_timer
; /* ACK generation timer */
382 struct timer_list resend_timer
; /* Tx resend timer */
383 struct work_struct destroyer
; /* call destroyer */
384 struct work_struct processor
; /* packet processor and ACK generator */
385 struct list_head link
; /* link in master call list */
386 struct list_head error_link
; /* link in error distribution list */
387 struct list_head accept_link
; /* calls awaiting acceptance */
388 struct rb_node sock_node
; /* node in socket call tree */
389 struct rb_node conn_node
; /* node in connection call tree */
390 struct sk_buff_head rx_queue
; /* received packets */
391 struct sk_buff_head rx_oos_queue
; /* packets received out of sequence */
392 struct sk_buff
*tx_pending
; /* Tx socket buffer being filled */
393 wait_queue_head_t tx_waitq
; /* wait for Tx window space to become available */
394 unsigned long user_call_ID
; /* user-defined call ID */
395 unsigned long creation_jif
; /* time of call creation */
397 unsigned long events
;
399 rwlock_t state_lock
; /* lock for state transition */
401 atomic_t sequence
; /* Tx data packet sequence counter */
402 u32 abort_code
; /* local/remote abort code */
403 enum rxrpc_call_state state
: 8; /* current state of call */
404 int debug_id
; /* debug ID for printks */
405 u8 channel
; /* connection channel occupied by this call */
407 /* transmission-phase ACK management */
408 u8 acks_head
; /* offset into window of first entry */
409 u8 acks_tail
; /* offset into window of last entry */
410 u8 acks_winsz
; /* size of un-ACK'd window */
411 u8 acks_unacked
; /* lowest unacked packet in last ACK received */
412 int acks_latest
; /* serial number of latest ACK received */
413 rxrpc_seq_t acks_hard
; /* highest definitively ACK'd msg seq */
414 unsigned long *acks_window
; /* sent packet window
415 * - elements are pointers with LSB set if ACK'd
418 /* receive-phase ACK management */
419 rxrpc_seq_t rx_data_expect
; /* next data seq ID expected to be received */
420 rxrpc_seq_t rx_data_post
; /* next data seq ID expected to be posted */
421 rxrpc_seq_t rx_data_recv
; /* last data seq ID encountered by recvmsg */
422 rxrpc_seq_t rx_data_eaten
; /* last data seq ID consumed by recvmsg */
423 rxrpc_seq_t rx_first_oos
; /* first packet in rx_oos_queue (or 0) */
424 rxrpc_seq_t ackr_win_top
; /* top of ACK window (rx_data_eaten is bottom) */
425 rxrpc_seq_t ackr_prev_seq
; /* previous sequence number received */
426 u8 ackr_reason
; /* reason to ACK */
427 rxrpc_serial_t ackr_serial
; /* serial of packet being ACK'd */
428 atomic_t ackr_not_idle
; /* number of packets in Rx queue */
430 /* received packet records, 1 bit per record */
431 #define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG)
432 unsigned long ackr_window
[RXRPC_ACKR_WINDOW_ASZ
+ 1];
434 struct hlist_node hash_node
;
435 unsigned long hash_key
; /* Full hash key */
436 u8 in_clientflag
; /* Copy of conn->in_clientflag for hashing */
437 struct rxrpc_local
*local
; /* Local endpoint. Used for hashing. */
438 sa_family_t proto
; /* Frame protocol */
439 u32 call_id
; /* call ID on connection */
440 u32 cid
; /* connection ID plus channel index */
441 u32 epoch
; /* epoch of this connection */
442 u16 service_id
; /* service ID */
443 union { /* Peer IP address for hashing */
445 __u8 ipv6_addr
[16]; /* Anticipates eventual IPv6 support */
450 * locally abort an RxRPC call
452 static inline void rxrpc_abort_call(struct rxrpc_call
*call
, u32 abort_code
)
454 write_lock_bh(&call
->state_lock
);
455 if (call
->state
< RXRPC_CALL_COMPLETE
) {
456 call
->abort_code
= abort_code
;
457 call
->state
= RXRPC_CALL_LOCALLY_ABORTED
;
458 set_bit(RXRPC_CALL_EV_ABORT
, &call
->events
);
460 write_unlock_bh(&call
->state_lock
);
466 extern atomic_t rxrpc_n_skbs
;
467 extern u32 rxrpc_epoch
;
468 extern atomic_t rxrpc_debug_id
;
469 extern struct workqueue_struct
*rxrpc_workqueue
;
474 void rxrpc_accept_incoming_calls(struct work_struct
*);
475 struct rxrpc_call
*rxrpc_accept_call(struct rxrpc_sock
*, unsigned long);
476 int rxrpc_reject_call(struct rxrpc_sock
*);
481 extern unsigned int rxrpc_requested_ack_delay
;
482 extern unsigned int rxrpc_soft_ack_delay
;
483 extern unsigned int rxrpc_idle_ack_delay
;
484 extern unsigned int rxrpc_rx_window_size
;
485 extern unsigned int rxrpc_rx_mtu
;
486 extern unsigned int rxrpc_rx_jumbo_max
;
488 void __rxrpc_propose_ACK(struct rxrpc_call
*, u8
, u32
, bool);
489 void rxrpc_propose_ACK(struct rxrpc_call
*, u8
, u32
, bool);
490 void rxrpc_process_call(struct work_struct
*);
495 extern unsigned int rxrpc_max_call_lifetime
;
496 extern unsigned int rxrpc_dead_call_expiry
;
497 extern struct kmem_cache
*rxrpc_call_jar
;
498 extern struct list_head rxrpc_calls
;
499 extern rwlock_t rxrpc_call_lock
;
501 struct rxrpc_call
*rxrpc_find_call_hash(struct rxrpc_host_header
*,
502 void *, sa_family_t
, const void *);
503 struct rxrpc_call
*rxrpc_get_client_call(struct rxrpc_sock
*,
504 struct rxrpc_transport
*,
505 struct rxrpc_conn_bundle
*,
506 unsigned long, int, gfp_t
);
507 struct rxrpc_call
*rxrpc_incoming_call(struct rxrpc_sock
*,
508 struct rxrpc_connection
*,
509 struct rxrpc_host_header
*, gfp_t
);
510 struct rxrpc_call
*rxrpc_find_server_call(struct rxrpc_sock
*, unsigned long);
511 void rxrpc_release_call(struct rxrpc_call
*);
512 void rxrpc_release_calls_on_socket(struct rxrpc_sock
*);
513 void __rxrpc_put_call(struct rxrpc_call
*);
514 void __exit
rxrpc_destroy_all_calls(void);
519 extern unsigned int rxrpc_connection_expiry
;
520 extern struct list_head rxrpc_connections
;
521 extern rwlock_t rxrpc_connection_lock
;
523 struct rxrpc_conn_bundle
*rxrpc_get_bundle(struct rxrpc_sock
*,
524 struct rxrpc_transport
*,
525 struct key
*, u16
, gfp_t
);
526 void rxrpc_put_bundle(struct rxrpc_transport
*, struct rxrpc_conn_bundle
*);
527 int rxrpc_connect_call(struct rxrpc_sock
*, struct rxrpc_transport
*,
528 struct rxrpc_conn_bundle
*, struct rxrpc_call
*, gfp_t
);
529 void rxrpc_put_connection(struct rxrpc_connection
*);
530 void __exit
rxrpc_destroy_all_connections(void);
531 struct rxrpc_connection
*rxrpc_find_connection(struct rxrpc_transport
*,
532 struct rxrpc_host_header
*);
533 extern struct rxrpc_connection
*
534 rxrpc_incoming_connection(struct rxrpc_transport
*, struct rxrpc_host_header
*,
540 void rxrpc_process_connection(struct work_struct
*);
541 void rxrpc_reject_packet(struct rxrpc_local
*, struct sk_buff
*);
542 void rxrpc_reject_packets(struct work_struct
*);
547 void rxrpc_UDP_error_report(struct sock
*);
548 void rxrpc_UDP_error_handler(struct work_struct
*);
553 extern const char *rxrpc_pkts
[];
555 void rxrpc_data_ready(struct sock
*);
556 int rxrpc_queue_rcv_skb(struct rxrpc_call
*, struct sk_buff
*, bool, bool);
557 void rxrpc_fast_process_packet(struct rxrpc_call
*, struct sk_buff
*);
562 extern rwlock_t rxrpc_local_lock
;
564 struct rxrpc_local
*rxrpc_lookup_local(struct sockaddr_rxrpc
*);
565 void rxrpc_put_local(struct rxrpc_local
*);
566 void __exit
rxrpc_destroy_all_locals(void);
571 extern struct key_type key_type_rxrpc
;
572 extern struct key_type key_type_rxrpc_s
;
574 int rxrpc_request_key(struct rxrpc_sock
*, char __user
*, int);
575 int rxrpc_server_keyring(struct rxrpc_sock
*, char __user
*, int);
576 int rxrpc_get_server_data_key(struct rxrpc_connection
*, const void *, time_t,
582 extern unsigned int rxrpc_resend_timeout
;
584 int rxrpc_send_packet(struct rxrpc_transport
*, struct sk_buff
*);
585 int rxrpc_client_sendmsg(struct rxrpc_sock
*, struct rxrpc_transport
*,
586 struct msghdr
*, size_t);
587 int rxrpc_server_sendmsg(struct rxrpc_sock
*, struct msghdr
*, size_t);
592 struct rxrpc_peer
*rxrpc_get_peer(struct sockaddr_rxrpc
*, gfp_t
);
593 void rxrpc_put_peer(struct rxrpc_peer
*);
594 struct rxrpc_peer
*rxrpc_find_peer(struct rxrpc_local
*, __be32
, __be16
);
595 void __exit
rxrpc_destroy_all_peers(void);
600 extern const char *const rxrpc_call_states
[];
601 extern const struct file_operations rxrpc_call_seq_fops
;
602 extern const struct file_operations rxrpc_connection_seq_fops
;
607 void rxrpc_remove_user_ID(struct rxrpc_sock
*, struct rxrpc_call
*);
608 int rxrpc_recvmsg(struct socket
*, struct msghdr
*, size_t, int);
613 int rxrpc_register_security(struct rxrpc_security
*);
614 void rxrpc_unregister_security(struct rxrpc_security
*);
615 int rxrpc_init_client_conn_security(struct rxrpc_connection
*);
616 int rxrpc_init_server_conn_security(struct rxrpc_connection
*);
617 int rxrpc_secure_packet(const struct rxrpc_call
*, struct sk_buff
*, size_t,
619 int rxrpc_verify_packet(const struct rxrpc_call
*, struct sk_buff
*, u32
*);
620 void rxrpc_clear_conn_security(struct rxrpc_connection
*);
625 void rxrpc_packet_destructor(struct sk_buff
*);
630 extern unsigned int rxrpc_transport_expiry
;
632 struct rxrpc_transport
*rxrpc_get_transport(struct rxrpc_local
*,
633 struct rxrpc_peer
*, gfp_t
);
634 void rxrpc_put_transport(struct rxrpc_transport
*);
635 void __exit
rxrpc_destroy_all_transports(void);
636 struct rxrpc_transport
*rxrpc_find_transport(struct rxrpc_local
*,
637 struct rxrpc_peer
*);
643 extern int __init
rxrpc_sysctl_init(void);
644 extern void rxrpc_sysctl_exit(void);
646 static inline int __init
rxrpc_sysctl_init(void) { return 0; }
647 static inline void rxrpc_sysctl_exit(void) {}
653 extern unsigned int rxrpc_debug
;
655 #define dbgprintk(FMT,...) \
656 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
658 #define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
659 #define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
660 #define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
661 #define kproto(FMT,...) dbgprintk("### "FMT ,##__VA_ARGS__)
662 #define knet(FMT,...) dbgprintk("@@@ "FMT ,##__VA_ARGS__)
665 #if defined(__KDEBUG)
666 #define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
667 #define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
668 #define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
669 #define _proto(FMT,...) kproto(FMT,##__VA_ARGS__)
670 #define _net(FMT,...) knet(FMT,##__VA_ARGS__)
672 #elif defined(CONFIG_AF_RXRPC_DEBUG)
673 #define RXRPC_DEBUG_KENTER 0x01
674 #define RXRPC_DEBUG_KLEAVE 0x02
675 #define RXRPC_DEBUG_KDEBUG 0x04
676 #define RXRPC_DEBUG_KPROTO 0x08
677 #define RXRPC_DEBUG_KNET 0x10
679 #define _enter(FMT,...) \
681 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER)) \
682 kenter(FMT,##__VA_ARGS__); \
685 #define _leave(FMT,...) \
687 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE)) \
688 kleave(FMT,##__VA_ARGS__); \
691 #define _debug(FMT,...) \
693 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG)) \
694 kdebug(FMT,##__VA_ARGS__); \
697 #define _proto(FMT,...) \
699 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO)) \
700 kproto(FMT,##__VA_ARGS__); \
703 #define _net(FMT,...) \
705 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET)) \
706 knet(FMT,##__VA_ARGS__); \
710 #define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
711 #define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
712 #define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
713 #define _proto(FMT,...) no_printk("### "FMT ,##__VA_ARGS__)
714 #define _net(FMT,...) no_printk("@@@ "FMT ,##__VA_ARGS__)
718 * debug assertion checking
720 #if 1 // defined(__KDEBUGALL)
724 if (unlikely(!(X))) { \
725 printk(KERN_ERR "\n"); \
726 printk(KERN_ERR "RxRPC: Assertion failed\n"); \
731 #define ASSERTCMP(X, OP, Y) \
733 if (unlikely(!((X) OP (Y)))) { \
734 printk(KERN_ERR "\n"); \
735 printk(KERN_ERR "RxRPC: Assertion failed\n"); \
736 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
737 (unsigned long)(X), (unsigned long)(Y)); \
738 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
739 (unsigned long)(X), (unsigned long)(Y)); \
744 #define ASSERTIF(C, X) \
746 if (unlikely((C) && !(X))) { \
747 printk(KERN_ERR "\n"); \
748 printk(KERN_ERR "RxRPC: Assertion failed\n"); \
753 #define ASSERTIFCMP(C, X, OP, Y) \
755 if (unlikely((C) && !((X) OP (Y)))) { \
756 printk(KERN_ERR "\n"); \
757 printk(KERN_ERR "RxRPC: Assertion failed\n"); \
758 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
759 (unsigned long)(X), (unsigned long)(Y)); \
760 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
761 (unsigned long)(X), (unsigned long)(Y)); \
772 #define ASSERTCMP(X, OP, Y) \
776 #define ASSERTIF(C, X) \
780 #define ASSERTIFCMP(C, X, OP, Y) \
784 #endif /* __KDEBUGALL */
787 * socket buffer accounting / leak finding
789 static inline void __rxrpc_new_skb(struct sk_buff
*skb
, const char *fn
)
791 //_net("new skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
792 //atomic_inc(&rxrpc_n_skbs);
795 #define rxrpc_new_skb(skb) __rxrpc_new_skb((skb), __func__)
797 static inline void __rxrpc_kill_skb(struct sk_buff
*skb
, const char *fn
)
799 //_net("kill skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
800 //atomic_dec(&rxrpc_n_skbs);
803 #define rxrpc_kill_skb(skb) __rxrpc_kill_skb((skb), __func__)
805 static inline void __rxrpc_free_skb(struct sk_buff
*skb
, const char *fn
)
808 CHECK_SLAB_OKAY(&skb
->users
);
809 //_net("free skb %p %s [%d]",
810 // skb, fn, atomic_read(&rxrpc_n_skbs));
811 //atomic_dec(&rxrpc_n_skbs);
816 #define rxrpc_free_skb(skb) __rxrpc_free_skb((skb), __func__)
818 static inline void rxrpc_purge_queue(struct sk_buff_head
*list
)
821 while ((skb
= skb_dequeue((list
))) != NULL
)
825 static inline void __rxrpc_get_local(struct rxrpc_local
*local
, const char *f
)
827 CHECK_SLAB_OKAY(&local
->usage
);
828 if (atomic_inc_return(&local
->usage
) == 1)
829 printk("resurrected (%s)\n", f
);
832 #define rxrpc_get_local(LOCAL) __rxrpc_get_local((LOCAL), __func__)
834 #define rxrpc_get_call(CALL) \
836 CHECK_SLAB_OKAY(&(CALL)->usage); \
837 if (atomic_inc_return(&(CALL)->usage) == 1) \
841 #define rxrpc_put_call(CALL) \
843 __rxrpc_put_call(CALL); \