xref: /openbmc/linux/net/rxrpc/ar-internal.h (revision 4a7f62f9)
12874c5fdSThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
217926a79SDavid Howells /* AF_RXRPC internal definitions
317926a79SDavid Howells  *
417926a79SDavid Howells  * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
517926a79SDavid Howells  * Written by David Howells (dhowells@redhat.com)
617926a79SDavid Howells  */
717926a79SDavid Howells 
8be6e6707SDavid Howells #include <linux/atomic.h>
98496af50SDavid Howells #include <linux/seqlock.h>
10c410bf01SDavid Howells #include <linux/win_minmax.h>
112baec2c3SDavid Howells #include <net/net_namespace.h>
122baec2c3SDavid Howells #include <net/netns/generic.h>
13e0e4d82fSDavid Howells #include <net/sock.h>
14be6e6707SDavid Howells #include <net/af_rxrpc.h>
1541057ebdSDavid Howells #include <keys/rxrpc-type.h>
16ddc6c70fSDavid Howells #include "protocol.h"
1717926a79SDavid Howells 
1817926a79SDavid Howells #if 0
1917926a79SDavid Howells #define CHECK_SLAB_OKAY(X)				     \
2017926a79SDavid Howells 	BUG_ON(atomic_read((X)) >> (sizeof(atomic_t) - 2) == \
2117926a79SDavid Howells 	       (POISON_FREE << 8 | POISON_FREE))
2217926a79SDavid Howells #else
2317926a79SDavid Howells #define CHECK_SLAB_OKAY(X) do {} while (0)
2417926a79SDavid Howells #endif
2517926a79SDavid Howells 
2617926a79SDavid Howells #define FCRYPT_BSIZE 8
2717926a79SDavid Howells struct rxrpc_crypt {
2817926a79SDavid Howells 	union {
2917926a79SDavid Howells 		u8	x[FCRYPT_BSIZE];
3091e916cfSAl Viro 		__be32	n[2];
3117926a79SDavid Howells 	};
3217926a79SDavid Howells } __attribute__((aligned(8)));
3317926a79SDavid Howells 
34651350d1SDavid Howells #define rxrpc_queue_work(WS)	queue_work(rxrpc_workqueue, (WS))
35651350d1SDavid Howells #define rxrpc_queue_delayed_work(WS,D)	\
36651350d1SDavid Howells 	queue_delayed_work(rxrpc_workqueue, (WS), (D))
37651350d1SDavid Howells 
3812da59fcSDavid Howells struct key_preparsed_payload;
39cc8feb8eSDavid Howells struct rxrpc_connection;
40cc8feb8eSDavid Howells 
4117926a79SDavid Howells /*
42ece64fecSDavid Howells  * Mark applied to socket buffers in skb->mark.  skb->priority is used
43ece64fecSDavid Howells  * to pass supplementary information.
44d001648eSDavid Howells  */
45d001648eSDavid Howells enum rxrpc_skb_mark {
46ece64fecSDavid Howells 	RXRPC_SKB_MARK_REJECT_BUSY,	/* Reject with BUSY */
47ece64fecSDavid Howells 	RXRPC_SKB_MARK_REJECT_ABORT,	/* Reject with ABORT (code in skb->priority) */
48d001648eSDavid Howells };
49d001648eSDavid Howells 
50d001648eSDavid Howells /*
5117926a79SDavid Howells  * sk_state for RxRPC sockets
5217926a79SDavid Howells  */
5317926a79SDavid Howells enum {
542341e077SDavid Howells 	RXRPC_UNBOUND = 0,
552341e077SDavid Howells 	RXRPC_CLIENT_UNBOUND,		/* Unbound socket used as client */
5617926a79SDavid Howells 	RXRPC_CLIENT_BOUND,		/* client local address bound */
5717926a79SDavid Howells 	RXRPC_SERVER_BOUND,		/* server local address bound */
5828036f44SDavid Howells 	RXRPC_SERVER_BOUND2,		/* second server local address bound */
5917926a79SDavid Howells 	RXRPC_SERVER_LISTENING,		/* server listening for connections */
60210f0353SDavid Howells 	RXRPC_SERVER_LISTEN_DISABLED,	/* server listening disabled */
6117926a79SDavid Howells 	RXRPC_CLOSE,			/* socket is being closed */
6217926a79SDavid Howells };
6317926a79SDavid Howells 
6417926a79SDavid Howells /*
652baec2c3SDavid Howells  * Per-network namespace data.
662baec2c3SDavid Howells  */
672baec2c3SDavid Howells struct rxrpc_net {
682baec2c3SDavid Howells 	struct proc_dir_entry	*proc_net;	/* Subdir in /proc/net */
692baec2c3SDavid Howells 	u32			epoch;		/* Local epoch for detecting local-end reset */
702baec2c3SDavid Howells 	struct list_head	calls;		/* List of calls active in this namespace */
712baec2c3SDavid Howells 	rwlock_t		call_lock;	/* Lock for ->calls */
72d3be4d24SDavid Howells 	atomic_t		nr_calls;	/* Count of allocated calls */
732baec2c3SDavid Howells 
7431f5f9a1SDavid Howells 	atomic_t		nr_conns;
752baec2c3SDavid Howells 	struct list_head	conn_proc_list;	/* List of conns in this namespace for proc */
762baec2c3SDavid Howells 	struct list_head	service_conns;	/* Service conns in this namespace */
772baec2c3SDavid Howells 	rwlock_t		conn_lock;	/* Lock for ->conn_proc_list, ->service_conns */
783d18cbb7SDavid Howells 	struct work_struct	service_conn_reaper;
793d18cbb7SDavid Howells 	struct timer_list	service_conn_reap_timer;
802baec2c3SDavid Howells 
81f859ab61SDavid Howells 	bool			live;
82245500d8SDavid Howells 
83245500d8SDavid Howells 	bool			kill_all_client_conns;
84245500d8SDavid Howells 	atomic_t		nr_client_conns;
852baec2c3SDavid Howells 	spinlock_t		client_conn_cache_lock; /* Lock for ->*_client_conns */
862baec2c3SDavid Howells 	spinlock_t		client_conn_discard_lock; /* Prevent multiple discarders */
872baec2c3SDavid Howells 	struct list_head	idle_client_conns;
883d18cbb7SDavid Howells 	struct work_struct	client_conn_reaper;
893d18cbb7SDavid Howells 	struct timer_list	client_conn_reap_timer;
902baec2c3SDavid Howells 
912baec2c3SDavid Howells 	struct list_head	local_endpoints;
922baec2c3SDavid Howells 	struct mutex		local_mutex;	/* Lock for ->local_endpoints */
932baec2c3SDavid Howells 
942baec2c3SDavid Howells 	DECLARE_HASHTABLE	(peer_hash, 10);
95ace45becSDavid Howells 	spinlock_t		peer_hash_lock;	/* Lock for ->peer_hash */
96ace45becSDavid Howells 
97ace45becSDavid Howells #define RXRPC_KEEPALIVE_TIME 20 /* NAT keepalive time in seconds */
98ace45becSDavid Howells 	u8			peer_keepalive_cursor;
99330bdcfaSDavid Howells 	time64_t		peer_keepalive_base;
100330bdcfaSDavid Howells 	struct list_head	peer_keepalive[32];
101330bdcfaSDavid Howells 	struct list_head	peer_keepalive_new;
102ace45becSDavid Howells 	struct timer_list	peer_keepalive_timer;
103ace45becSDavid Howells 	struct work_struct	peer_keepalive_work;
1042baec2c3SDavid Howells };
1052baec2c3SDavid Howells 
1062baec2c3SDavid Howells /*
10700e90712SDavid Howells  * Service backlog preallocation.
10800e90712SDavid Howells  *
10900e90712SDavid Howells  * This contains circular buffers of preallocated peers, connections and calls
11000e90712SDavid Howells  * for incoming service calls and their head and tail pointers.  This allows
11100e90712SDavid Howells  * calls to be set up in the data_ready handler, thereby avoiding the need to
11200e90712SDavid Howells  * shuffle packets around so much.
11300e90712SDavid Howells  */
11400e90712SDavid Howells struct rxrpc_backlog {
11500e90712SDavid Howells 	unsigned short		peer_backlog_head;
11600e90712SDavid Howells 	unsigned short		peer_backlog_tail;
11700e90712SDavid Howells 	unsigned short		conn_backlog_head;
11800e90712SDavid Howells 	unsigned short		conn_backlog_tail;
11900e90712SDavid Howells 	unsigned short		call_backlog_head;
12000e90712SDavid Howells 	unsigned short		call_backlog_tail;
12100e90712SDavid Howells #define RXRPC_BACKLOG_MAX	32
12200e90712SDavid Howells 	struct rxrpc_peer	*peer_backlog[RXRPC_BACKLOG_MAX];
12300e90712SDavid Howells 	struct rxrpc_connection	*conn_backlog[RXRPC_BACKLOG_MAX];
12400e90712SDavid Howells 	struct rxrpc_call	*call_backlog[RXRPC_BACKLOG_MAX];
12500e90712SDavid Howells };
12600e90712SDavid Howells 
12700e90712SDavid Howells /*
12817926a79SDavid Howells  * RxRPC socket definition
12917926a79SDavid Howells  */
13017926a79SDavid Howells struct rxrpc_sock {
13117926a79SDavid Howells 	/* WARNING: sk has to be the first member */
13217926a79SDavid Howells 	struct sock		sk;
133d001648eSDavid Howells 	rxrpc_notify_new_call_t	notify_new_call; /* Func to notify of new call */
13400e90712SDavid Howells 	rxrpc_discard_new_call_t discard_new_call; /* Func to discard a new call */
13517926a79SDavid Howells 	struct rxrpc_local	*local;		/* local endpoint */
13600e90712SDavid Howells 	struct rxrpc_backlog	*backlog;	/* Preallocation for services */
137248f219cSDavid Howells 	spinlock_t		incoming_lock;	/* Incoming call vs service shutdown lock */
138248f219cSDavid Howells 	struct list_head	sock_calls;	/* List of calls owned by this socket */
139248f219cSDavid Howells 	struct list_head	to_be_accepted;	/* calls awaiting acceptance */
140248f219cSDavid Howells 	struct list_head	recvmsg_q;	/* Calls awaiting recvmsg's attention  */
141248f219cSDavid Howells 	rwlock_t		recvmsg_lock;	/* Lock for recvmsg_q */
14217926a79SDavid Howells 	struct key		*key;		/* security for this socket */
14317926a79SDavid Howells 	struct key		*securities;	/* list of server security descriptors */
14400e90712SDavid Howells 	struct rb_root		calls;		/* User ID -> call mapping */
14517926a79SDavid Howells 	unsigned long		flags;
1462341e077SDavid Howells #define RXRPC_SOCK_CONNECTED		0	/* connect_srx is set */
14717926a79SDavid Howells 	rwlock_t		call_lock;	/* lock for calls */
14817926a79SDavid Howells 	u32			min_sec_level;	/* minimum security level */
14917926a79SDavid Howells #define RXRPC_SECURITY_MAX	RXRPC_SECURITY_ENCRYPT
150cc8feb8eSDavid Howells 	bool			exclusive;	/* Exclusive connection for a client socket */
15128036f44SDavid Howells 	u16			second_service;	/* Additional service bound to the endpoint */
1524722974dSDavid Howells 	struct {
1534722974dSDavid Howells 		/* Service upgrade information */
1544722974dSDavid Howells 		u16		from;		/* Service ID to upgrade (if not 0) */
1554722974dSDavid Howells 		u16		to;		/* service ID to upgrade to */
1564722974dSDavid Howells 	} service_upgrade;
157cc8feb8eSDavid Howells 	sa_family_t		family;		/* Protocol family created with */
1584722974dSDavid Howells 	struct sockaddr_rxrpc	srx;		/* Primary Service/local addresses */
1592341e077SDavid Howells 	struct sockaddr_rxrpc	connect_srx;	/* Default client address from connect() */
16017926a79SDavid Howells };
16117926a79SDavid Howells 
16217926a79SDavid Howells #define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk)
16317926a79SDavid Howells 
16417926a79SDavid Howells /*
1650d12f8a4SDavid Howells  * CPU-byteorder normalised Rx packet header.
1660d12f8a4SDavid Howells  */
1670d12f8a4SDavid Howells struct rxrpc_host_header {
1680d12f8a4SDavid Howells 	u32		epoch;		/* client boot timestamp */
1690d12f8a4SDavid Howells 	u32		cid;		/* connection and channel ID */
1700d12f8a4SDavid Howells 	u32		callNumber;	/* call ID (0 for connection-level packets) */
1710d12f8a4SDavid Howells 	u32		seq;		/* sequence number of pkt in call stream */
1720d12f8a4SDavid Howells 	u32		serial;		/* serial number of pkt sent to network */
1730d12f8a4SDavid Howells 	u8		type;		/* packet type */
1740d12f8a4SDavid Howells 	u8		flags;		/* packet flags */
1750d12f8a4SDavid Howells 	u8		userStatus;	/* app-layer defined status */
1760d12f8a4SDavid Howells 	u8		securityIndex;	/* security protocol ID */
1770d12f8a4SDavid Howells 	union {
1780d12f8a4SDavid Howells 		u16	_rsvd;		/* reserved */
1790d12f8a4SDavid Howells 		u16	cksum;		/* kerberos security checksum */
1800d12f8a4SDavid Howells 	};
1810d12f8a4SDavid Howells 	u16		serviceId;	/* service ID */
1820d12f8a4SDavid Howells } __packed;
1830d12f8a4SDavid Howells 
1840d12f8a4SDavid Howells /*
18517926a79SDavid Howells  * RxRPC socket buffer private variables
18617926a79SDavid Howells  * - max 48 bytes (struct sk_buff::cb)
18717926a79SDavid Howells  */
18817926a79SDavid Howells struct rxrpc_skb_priv {
189987db9f7SDavid Howells 	atomic_t	nr_ring_pins;		/* Number of rxtx ring pins */
190c3c9e3dfSDavid Howells 	u8		nr_subpackets;		/* Number of subpackets */
191c3c9e3dfSDavid Howells 	u8		rx_flags;		/* Received packet flags */
192c3c9e3dfSDavid Howells #define RXRPC_SKB_INCL_LAST	0x01		/* - Includes last packet */
193b311e684SDavid Howells #define RXRPC_SKB_TX_BUFFER	0x02		/* - Is transmit buffer */
19417926a79SDavid Howells 	union {
19517926a79SDavid Howells 		int		remain;		/* amount of space remaining for next write */
196c3c9e3dfSDavid Howells 
197c3c9e3dfSDavid Howells 		/* List of requested ACKs on subpackets */
198c3c9e3dfSDavid Howells 		unsigned long	rx_req_ack[(RXRPC_MAX_NR_JUMBO + BITS_PER_LONG - 1) /
199c3c9e3dfSDavid Howells 					   BITS_PER_LONG];
20017926a79SDavid Howells 	};
20117926a79SDavid Howells 
2020d12f8a4SDavid Howells 	struct rxrpc_host_header hdr;		/* RxRPC packet header from this packet */
20317926a79SDavid Howells };
20417926a79SDavid Howells 
20517926a79SDavid Howells #define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb)
20617926a79SDavid Howells 
20717926a79SDavid Howells /*
20817926a79SDavid Howells  * RxRPC security module interface
20917926a79SDavid Howells  */
21017926a79SDavid Howells struct rxrpc_security {
21117926a79SDavid Howells 	const char		*name;		/* name of this service */
21217926a79SDavid Howells 	u8			security_index;	/* security type provided */
213063c60d3SDavid Howells 	u32			no_key_abort;	/* Abort code indicating no key */
21417926a79SDavid Howells 
215648af7fcSDavid Howells 	/* Initialise a security service */
216648af7fcSDavid Howells 	int (*init)(void);
217648af7fcSDavid Howells 
218648af7fcSDavid Howells 	/* Clean up a security service */
219648af7fcSDavid Howells 	void (*exit)(void);
220648af7fcSDavid Howells 
22112da59fcSDavid Howells 	/* Parse the information from a server key */
22212da59fcSDavid Howells 	int (*preparse_server_key)(struct key_preparsed_payload *);
22312da59fcSDavid Howells 
22412da59fcSDavid Howells 	/* Clean up the preparse buffer after parsing a server key */
22512da59fcSDavid Howells 	void (*free_preparse_server_key)(struct key_preparsed_payload *);
22612da59fcSDavid Howells 
22712da59fcSDavid Howells 	/* Destroy the payload of a server key */
22812da59fcSDavid Howells 	void (*destroy_server_key)(struct key *);
22912da59fcSDavid Howells 
230d5953f65SDavid Howells 	/* Describe a server key */
231d5953f65SDavid Howells 	void (*describe_server_key)(const struct key *, struct seq_file *);
232d5953f65SDavid Howells 
23317926a79SDavid Howells 	/* initialise a connection's security */
23441057ebdSDavid Howells 	int (*init_connection_security)(struct rxrpc_connection *,
23541057ebdSDavid Howells 					struct rxrpc_key_token *);
23617926a79SDavid Howells 
237d7d775b1SDavid Howells 	/* Work out how much data we can store in a packet, given an estimate
238d7d775b1SDavid Howells 	 * of the amount of data remaining.
239d7d775b1SDavid Howells 	 */
240d7d775b1SDavid Howells 	int (*how_much_data)(struct rxrpc_call *, size_t,
241d7d775b1SDavid Howells 			     size_t *, size_t *, size_t *);
24217926a79SDavid Howells 
24317926a79SDavid Howells 	/* impose security on a packet */
244f4bdf3d6SDavid Howells 	int (*secure_packet)(struct rxrpc_call *, struct sk_buff *, size_t);
24517926a79SDavid Howells 
24617926a79SDavid Howells 	/* verify the security on a received packet */
2475a42976dSDavid Howells 	int (*verify_packet)(struct rxrpc_call *, struct sk_buff *,
248248f219cSDavid Howells 			     unsigned int, unsigned int, rxrpc_seq_t, u16);
249248f219cSDavid Howells 
2501db88c53SDavid Howells 	/* Free crypto request on a call */
2511db88c53SDavid Howells 	void (*free_call_crypto)(struct rxrpc_call *);
2521db88c53SDavid Howells 
253248f219cSDavid Howells 	/* Locate the data in a received packet that has been verified. */
254248f219cSDavid Howells 	void (*locate_data)(struct rxrpc_call *, struct sk_buff *,
255248f219cSDavid Howells 			    unsigned int *, unsigned int *);
25617926a79SDavid Howells 
25717926a79SDavid Howells 	/* issue a challenge */
25817926a79SDavid Howells 	int (*issue_challenge)(struct rxrpc_connection *);
25917926a79SDavid Howells 
26017926a79SDavid Howells 	/* respond to a challenge */
26117926a79SDavid Howells 	int (*respond_to_challenge)(struct rxrpc_connection *,
26217926a79SDavid Howells 				    struct sk_buff *,
26317926a79SDavid Howells 				    u32 *);
26417926a79SDavid Howells 
26517926a79SDavid Howells 	/* verify a response */
26617926a79SDavid Howells 	int (*verify_response)(struct rxrpc_connection *,
26717926a79SDavid Howells 			       struct sk_buff *,
26817926a79SDavid Howells 			       u32 *);
26917926a79SDavid Howells 
27017926a79SDavid Howells 	/* clear connection security */
27117926a79SDavid Howells 	void (*clear)(struct rxrpc_connection *);
27217926a79SDavid Howells };
27317926a79SDavid Howells 
27417926a79SDavid Howells /*
2754f95dd78SDavid Howells  * RxRPC local transport endpoint description
2764f95dd78SDavid Howells  * - owned by a single AF_RXRPC socket
2774f95dd78SDavid Howells  * - pointed to by transport socket struct sk_user_data
27817926a79SDavid Howells  */
27917926a79SDavid Howells struct rxrpc_local {
2804f95dd78SDavid Howells 	struct rcu_head		rcu;
281730c5fd4SDavid Howells 	atomic_t		active_users;	/* Number of users of the local endpoint */
282730c5fd4SDavid Howells 	atomic_t		usage;		/* Number of references to the structure */
2832baec2c3SDavid Howells 	struct rxrpc_net	*rxnet;		/* The network ns in which this resides */
2844f95dd78SDavid Howells 	struct list_head	link;
28517926a79SDavid Howells 	struct socket		*socket;	/* my UDP socket */
2864f95dd78SDavid Howells 	struct work_struct	processor;
2871e9e5c95SDavid Howells 	struct rxrpc_sock __rcu	*service;	/* Service(s) listening on this endpoint */
28817926a79SDavid Howells 	struct rw_semaphore	defrag_sem;	/* control re-enablement of IP DF bit */
28917926a79SDavid Howells 	struct sk_buff_head	reject_queue;	/* packets awaiting rejection */
29044ba0698SDavid Howells 	struct sk_buff_head	event_queue;	/* endpoint event packets awaiting processing */
291245500d8SDavid Howells 	struct rb_root		client_bundles;	/* Client connection bundles by socket params */
292245500d8SDavid Howells 	spinlock_t		client_bundles_lock; /* Lock for client_bundles */
29317926a79SDavid Howells 	spinlock_t		lock;		/* access lock */
29417926a79SDavid Howells 	rwlock_t		services_lock;	/* lock for services list */
29517926a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
2964f95dd78SDavid Howells 	bool			dead;
297f859ab61SDavid Howells 	bool			service_closed;	/* Service socket closed */
29817926a79SDavid Howells 	struct sockaddr_rxrpc	srx;		/* local address */
29917926a79SDavid Howells };
30017926a79SDavid Howells 
30117926a79SDavid Howells /*
30217926a79SDavid Howells  * RxRPC remote transport endpoint definition
303be6e6707SDavid Howells  * - matched by local endpoint, remote port, address and protocol type
30417926a79SDavid Howells  */
30517926a79SDavid Howells struct rxrpc_peer {
306be6e6707SDavid Howells 	struct rcu_head		rcu;		/* This must be first */
307be6e6707SDavid Howells 	atomic_t		usage;
308be6e6707SDavid Howells 	unsigned long		hash_key;
309be6e6707SDavid Howells 	struct hlist_node	hash_link;
310be6e6707SDavid Howells 	struct rxrpc_local	*local;
311f66d7490SDavid Howells 	struct hlist_head	error_targets;	/* targets for net error distribution */
312aa390bbeSDavid Howells 	struct rb_root		service_conns;	/* Service connections */
313330bdcfaSDavid Howells 	struct list_head	keepalive_link;	/* Link in net->peer_keepalive[] */
314ace45becSDavid Howells 	time64_t		last_tx_at;	/* Last time packet sent here */
3158496af50SDavid Howells 	seqlock_t		service_conn_lock;
31617926a79SDavid Howells 	spinlock_t		lock;		/* access lock */
31795c96174SEric Dumazet 	unsigned int		if_mtu;		/* interface MTU for this peer */
31895c96174SEric Dumazet 	unsigned int		mtu;		/* network MTU for this peer */
31995c96174SEric Dumazet 	unsigned int		maxdata;	/* data size (MTU - hdrsize) */
32017926a79SDavid Howells 	unsigned short		hdrsize;	/* header size (IP + UDP + RxRPC) */
32117926a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
32217926a79SDavid Howells 	struct sockaddr_rxrpc	srx;		/* remote address */
32317926a79SDavid Howells 
32417926a79SDavid Howells 	/* calculated RTT cache */
32517926a79SDavid Howells #define RXRPC_RTT_CACHE_SIZE 32
326c1e15b49SDavid Howells 	spinlock_t		rtt_input_lock;	/* RTT lock for input routine */
3270d4b103cSDavid Howells 	ktime_t			rtt_last_req;	/* Time of last RTT request */
328c410bf01SDavid Howells 	unsigned int		rtt_count;	/* Number of samples we've got */
329c410bf01SDavid Howells 
330c410bf01SDavid Howells 	u32			srtt_us;	/* smoothed round trip time << 3 in usecs */
331c410bf01SDavid Howells 	u32			mdev_us;	/* medium deviation			*/
332c410bf01SDavid Howells 	u32			mdev_max_us;	/* maximal mdev for the last rtt period	*/
333c410bf01SDavid Howells 	u32			rttvar_us;	/* smoothed mdev_max			*/
334c410bf01SDavid Howells 	u32			rto_j;		/* Retransmission timeout in jiffies */
335c410bf01SDavid Howells 	u8			backoff;	/* Backoff timeout */
336f7aec129SDavid Howells 
337f7aec129SDavid Howells 	u8			cong_cwnd;	/* Congestion window size */
33817926a79SDavid Howells };
33917926a79SDavid Howells 
34017926a79SDavid Howells /*
34119ffa01cSDavid Howells  * Keys for matching a connection.
34219ffa01cSDavid Howells  */
34319ffa01cSDavid Howells struct rxrpc_conn_proto {
344e8d70ce1SDavid Howells 	union {
345e8d70ce1SDavid Howells 		struct {
34619ffa01cSDavid Howells 			u32	epoch;		/* epoch of this connection */
34719ffa01cSDavid Howells 			u32	cid;		/* connection ID */
348e8d70ce1SDavid Howells 		};
349e8d70ce1SDavid Howells 		u64		index_key;
35019ffa01cSDavid Howells 	};
35119ffa01cSDavid Howells };
35219ffa01cSDavid Howells 
35319ffa01cSDavid Howells struct rxrpc_conn_parameters {
35419ffa01cSDavid Howells 	struct rxrpc_local	*local;		/* Representation of local endpoint */
35519ffa01cSDavid Howells 	struct rxrpc_peer	*peer;		/* Remote endpoint */
35619ffa01cSDavid Howells 	struct key		*key;		/* Security details */
35719ffa01cSDavid Howells 	bool			exclusive;	/* T if conn is exclusive */
3584e255721SDavid Howells 	bool			upgrade;	/* T if service ID can be upgraded */
35919ffa01cSDavid Howells 	u16			service_id;	/* Service ID for this connection */
36019ffa01cSDavid Howells 	u32			security_level;	/* Security level selected */
36119ffa01cSDavid Howells };
36219ffa01cSDavid Howells 
36319ffa01cSDavid Howells /*
364bba304dbSDavid Howells  * Bits in the connection flags.
365bba304dbSDavid Howells  */
366bba304dbSDavid Howells enum rxrpc_conn_flag {
367bba304dbSDavid Howells 	RXRPC_CONN_HAS_IDR,		/* Has a client conn ID assigned */
368001c1122SDavid Howells 	RXRPC_CONN_IN_SERVICE_CONNS,	/* Conn is in peer->service_conns */
36945025bceSDavid Howells 	RXRPC_CONN_DONT_REUSE,		/* Don't reuse this connection */
3704e255721SDavid Howells 	RXRPC_CONN_PROBING_FOR_UPGRADE,	/* Probing for service upgrade */
3713136ef49SDavid Howells 	RXRPC_CONN_FINAL_ACK_0,		/* Need final ACK for channel 0 */
3723136ef49SDavid Howells 	RXRPC_CONN_FINAL_ACK_1,		/* Need final ACK for channel 1 */
3733136ef49SDavid Howells 	RXRPC_CONN_FINAL_ACK_2,		/* Need final ACK for channel 2 */
3743136ef49SDavid Howells 	RXRPC_CONN_FINAL_ACK_3,		/* Need final ACK for channel 3 */
375bba304dbSDavid Howells };
376bba304dbSDavid Howells 
3773136ef49SDavid Howells #define RXRPC_CONN_FINAL_ACK_MASK ((1UL << RXRPC_CONN_FINAL_ACK_0) |	\
3783136ef49SDavid Howells 				   (1UL << RXRPC_CONN_FINAL_ACK_1) |	\
3793136ef49SDavid Howells 				   (1UL << RXRPC_CONN_FINAL_ACK_2) |	\
3803136ef49SDavid Howells 				   (1UL << RXRPC_CONN_FINAL_ACK_3))
3813136ef49SDavid Howells 
382bba304dbSDavid Howells /*
383bba304dbSDavid Howells  * Events that can be raised upon a connection.
384bba304dbSDavid Howells  */
385bba304dbSDavid Howells enum rxrpc_conn_event {
386bba304dbSDavid Howells 	RXRPC_CONN_EV_CHALLENGE,	/* Send challenge packet */
387bba304dbSDavid Howells };
388bba304dbSDavid Howells 
389bba304dbSDavid Howells /*
390bba304dbSDavid Howells  * The connection protocol state.
391bba304dbSDavid Howells  */
392bba304dbSDavid Howells enum rxrpc_conn_proto_state {
393bba304dbSDavid Howells 	RXRPC_CONN_UNUSED,		/* Connection not yet attempted */
394bba304dbSDavid Howells 	RXRPC_CONN_CLIENT,		/* Client connection */
39500e90712SDavid Howells 	RXRPC_CONN_SERVICE_PREALLOC,	/* Service connection preallocation */
396bba304dbSDavid Howells 	RXRPC_CONN_SERVICE_UNSECURED,	/* Service unsecured connection */
397bba304dbSDavid Howells 	RXRPC_CONN_SERVICE_CHALLENGING,	/* Service challenging for security */
398bba304dbSDavid Howells 	RXRPC_CONN_SERVICE,		/* Service secured connection */
399bba304dbSDavid Howells 	RXRPC_CONN_REMOTELY_ABORTED,	/* Conn aborted by peer */
400bba304dbSDavid Howells 	RXRPC_CONN_LOCALLY_ABORTED,	/* Conn aborted locally */
401bba304dbSDavid Howells 	RXRPC_CONN__NR_STATES
402bba304dbSDavid Howells };
403bba304dbSDavid Howells 
404bba304dbSDavid Howells /*
405245500d8SDavid Howells  * RxRPC client connection bundle.
406245500d8SDavid Howells  */
407245500d8SDavid Howells struct rxrpc_bundle {
408245500d8SDavid Howells 	struct rxrpc_conn_parameters params;
409245500d8SDavid Howells 	atomic_t		usage;
410245500d8SDavid Howells 	unsigned int		debug_id;
411245500d8SDavid Howells 	bool			try_upgrade;	/* True if the bundle is attempting upgrade */
412245500d8SDavid Howells 	bool			alloc_conn;	/* True if someone's getting a conn */
4138806245aSDavid Howells 	short			alloc_error;	/* Error from last conn allocation */
414245500d8SDavid Howells 	spinlock_t		channel_lock;
415245500d8SDavid Howells 	struct rb_node		local_node;	/* Node in local->client_conns */
416245500d8SDavid Howells 	struct list_head	waiting_calls;	/* Calls waiting for channels */
417245500d8SDavid Howells 	unsigned long		avail_chans;	/* Mask of available channels */
418245500d8SDavid Howells 	struct rxrpc_connection	*conns[4];	/* The connections in the bundle (max 4) */
419245500d8SDavid Howells };
420245500d8SDavid Howells 
421245500d8SDavid Howells /*
42217926a79SDavid Howells  * RxRPC connection definition
423aa390bbeSDavid Howells  * - matched by { local, peer, epoch, conn_id, direction }
42417926a79SDavid Howells  * - each connection can only handle four simultaneous calls
42517926a79SDavid Howells  */
42617926a79SDavid Howells struct rxrpc_connection {
42719ffa01cSDavid Howells 	struct rxrpc_conn_proto	proto;
42819ffa01cSDavid Howells 	struct rxrpc_conn_parameters params;
42919ffa01cSDavid Howells 
43045025bceSDavid Howells 	atomic_t		usage;
43145025bceSDavid Howells 	struct rcu_head		rcu;
43245025bceSDavid Howells 	struct list_head	cache_link;
433a1399f8bSDavid Howells 
434245500d8SDavid Howells 	unsigned char		act_chans;	/* Mask of active channels */
435a1399f8bSDavid Howells 	struct rxrpc_channel {
4363136ef49SDavid Howells 		unsigned long		final_ack_at;	/* Time at which to issue final ACK */
437a1399f8bSDavid Howells 		struct rxrpc_call __rcu	*call;		/* Active call */
4384764c0daSDavid Howells 		unsigned int		call_debug_id;	/* call->debug_id */
439a1399f8bSDavid Howells 		u32			call_id;	/* ID of current call */
440a1399f8bSDavid Howells 		u32			call_counter;	/* Call ID counter */
441a1399f8bSDavid Howells 		u32			last_call;	/* ID of last call */
44218bfeba5SDavid Howells 		u8			last_type;	/* Type of last packet */
44318bfeba5SDavid Howells 		union {
44418bfeba5SDavid Howells 			u32		last_seq;
44518bfeba5SDavid Howells 			u32		last_abort;
44618bfeba5SDavid Howells 		};
447a1399f8bSDavid Howells 	} channels[RXRPC_MAXCALLS];
448999b69f8SDavid Howells 
4493136ef49SDavid Howells 	struct timer_list	timer;		/* Conn event timer */
45017926a79SDavid Howells 	struct work_struct	processor;	/* connection event processor */
451245500d8SDavid Howells 	struct rxrpc_bundle	*bundle;	/* Client connection bundle */
452aa390bbeSDavid Howells 	struct rb_node		service_node;	/* Node in peer->service_conns */
4534d028b2cSDavid Howells 	struct list_head	proc_link;	/* link in procfs list */
45417926a79SDavid Howells 	struct list_head	link;		/* link in master connection list */
45517926a79SDavid Howells 	struct sk_buff_head	rx_queue;	/* received conn-level packets */
456521bb304SDavid Howells 
457648af7fcSDavid Howells 	const struct rxrpc_security *security;	/* applied security module */
458521bb304SDavid Howells 	union {
459521bb304SDavid Howells 		struct {
46069d826faSKees Cook 			struct crypto_sync_skcipher *cipher;	/* encryption handle */
46117926a79SDavid Howells 			struct rxrpc_crypt csum_iv;	/* packet checksum base */
462521bb304SDavid Howells 			u32	nonce;		/* response re-use preventer */
463521bb304SDavid Howells 		} rxkad;
464521bb304SDavid Howells 	};
4654a3388c8SDavid Howells 	unsigned long		flags;
46617926a79SDavid Howells 	unsigned long		events;
467f51b4480SDavid Howells 	unsigned long		idle_timestamp;	/* Time at which last became idle */
46817926a79SDavid Howells 	spinlock_t		state_lock;	/* state-change lock */
469cf13258fSDavid Howells 	enum rxrpc_conn_proto_state state;	/* current state of connection */
47064753092SDavid Howells 	u32			abort_code;	/* Abort code of connection abort */
47117926a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
47217926a79SDavid Howells 	atomic_t		serial;		/* packet serial number counter */
473563ea7d5SDavid Howells 	unsigned int		hi_serial;	/* highest serial number received */
474c1e15b49SDavid Howells 	u32			service_id;	/* Service ID, possibly upgraded */
47517926a79SDavid Howells 	u8			security_ix;	/* security type */
47617926a79SDavid Howells 	u8			out_clientflag;	/* RXRPC_CLIENT_INITIATED if we are client */
477245500d8SDavid Howells 	u8			bundle_shift;	/* Index into bundle->avail_chans */
47864753092SDavid Howells 	short			error;		/* Local error code */
47917926a79SDavid Howells };
48017926a79SDavid Howells 
481dc71db34SDavid Howells static inline bool rxrpc_to_server(const struct rxrpc_skb_priv *sp)
482dc71db34SDavid Howells {
483dc71db34SDavid Howells 	return sp->hdr.flags & RXRPC_CLIENT_INITIATED;
484dc71db34SDavid Howells }
485dc71db34SDavid Howells 
486dc71db34SDavid Howells static inline bool rxrpc_to_client(const struct rxrpc_skb_priv *sp)
487dc71db34SDavid Howells {
488dc71db34SDavid Howells 	return !rxrpc_to_server(sp);
489dc71db34SDavid Howells }
490dc71db34SDavid Howells 
49117926a79SDavid Howells /*
4925b8848d1SDavid Howells  * Flags in call->flags.
4935b8848d1SDavid Howells  */
4945b8848d1SDavid Howells enum rxrpc_call_flag {
4955b8848d1SDavid Howells 	RXRPC_CALL_RELEASED,		/* call has been released - no more message to userspace */
4965b8848d1SDavid Howells 	RXRPC_CALL_HAS_USERID,		/* has a user ID attached */
497dabe5a79SDavid Howells 	RXRPC_CALL_IS_SERVICE,		/* Call is service call */
49845025bceSDavid Howells 	RXRPC_CALL_EXPOSED,		/* The call was exposed to the world */
499248f219cSDavid Howells 	RXRPC_CALL_RX_LAST,		/* Received the last packet (at rxtx_top) */
500248f219cSDavid Howells 	RXRPC_CALL_TX_LAST,		/* Last packet in Tx buffer (at rxtx_top) */
501a5af7e1fSDavid Howells 	RXRPC_CALL_SEND_PING,		/* A ping will need to be sent */
50257494343SDavid Howells 	RXRPC_CALL_RETRANS_TIMEOUT,	/* Retransmission due to timeout occurred */
503c54e43d7SDavid Howells 	RXRPC_CALL_BEGAN_RX_TIMER,	/* We began the expect_rx_by timer */
5041a025028SDavid Howells 	RXRPC_CALL_RX_HEARD,		/* The peer responded at least once to this call */
505d0b35a42SDavid Howells 	RXRPC_CALL_RX_UNDERRUN,		/* Got data underrun */
5065273a191SDavid Howells 	RXRPC_CALL_DISCONNECTED,	/* The call has been disconnected */
507b7a7d674SDavid Howells 	RXRPC_CALL_KERNEL,		/* The call was made by the kernel */
508245500d8SDavid Howells 	RXRPC_CALL_UPGRADE,		/* Service upgrade was requested for the call */
5095b8848d1SDavid Howells };
5105b8848d1SDavid Howells 
5115b8848d1SDavid Howells /*
5125b8848d1SDavid Howells  * Events that can be raised on a call.
5135b8848d1SDavid Howells  */
5145b8848d1SDavid Howells enum rxrpc_call_event {
5154c198ad1SDavid Howells 	RXRPC_CALL_EV_ACK,		/* need to generate ACK */
5164c198ad1SDavid Howells 	RXRPC_CALL_EV_ABORT,		/* need to generate abort */
5174c198ad1SDavid Howells 	RXRPC_CALL_EV_RESEND,		/* Tx resend required */
518a5af7e1fSDavid Howells 	RXRPC_CALL_EV_PING,		/* Ping send required */
519a158bdd3SDavid Howells 	RXRPC_CALL_EV_EXPIRED,		/* Expiry occurred */
520bd1fdf8cSDavid Howells 	RXRPC_CALL_EV_ACK_LOST,		/* ACK may be lost, send ping */
5215b8848d1SDavid Howells };
5225b8848d1SDavid Howells 
5235b8848d1SDavid Howells /*
5245b8848d1SDavid Howells  * The states that a call can be in.
5255b8848d1SDavid Howells  */
5265b8848d1SDavid Howells enum rxrpc_call_state {
527999b69f8SDavid Howells 	RXRPC_CALL_UNINITIALISED,
528999b69f8SDavid Howells 	RXRPC_CALL_CLIENT_AWAIT_CONN,	/* - client waiting for connection to become available */
5295b8848d1SDavid Howells 	RXRPC_CALL_CLIENT_SEND_REQUEST,	/* - client sending request phase */
5305b8848d1SDavid Howells 	RXRPC_CALL_CLIENT_AWAIT_REPLY,	/* - client awaiting reply */
5315b8848d1SDavid Howells 	RXRPC_CALL_CLIENT_RECV_REPLY,	/* - client receiving reply phase */
53200e90712SDavid Howells 	RXRPC_CALL_SERVER_PREALLOC,	/* - service preallocation */
5335b8848d1SDavid Howells 	RXRPC_CALL_SERVER_SECURING,	/* - server securing request connection */
5345b8848d1SDavid Howells 	RXRPC_CALL_SERVER_RECV_REQUEST,	/* - server receiving request */
5355b8848d1SDavid Howells 	RXRPC_CALL_SERVER_ACK_REQUEST,	/* - server pending ACK of request */
5365b8848d1SDavid Howells 	RXRPC_CALL_SERVER_SEND_REPLY,	/* - server sending reply */
5375b8848d1SDavid Howells 	RXRPC_CALL_SERVER_AWAIT_ACK,	/* - server awaiting final ACK */
538f5c17aaeSDavid Howells 	RXRPC_CALL_COMPLETE,		/* - call complete */
539f5c17aaeSDavid Howells 	NR__RXRPC_CALL_STATES
540f5c17aaeSDavid Howells };
541f5c17aaeSDavid Howells 
542f5c17aaeSDavid Howells /*
543e122d845SDavid Howells  * Call completion condition (state == RXRPC_CALL_COMPLETE).
544e122d845SDavid Howells  */
545e122d845SDavid Howells enum rxrpc_call_completion {
546e122d845SDavid Howells 	RXRPC_CALL_SUCCEEDED,		/* - Normal termination */
547e122d845SDavid Howells 	RXRPC_CALL_REMOTELY_ABORTED,	/* - call aborted by peer */
548e122d845SDavid Howells 	RXRPC_CALL_LOCALLY_ABORTED,	/* - call aborted locally on error or close */
549e122d845SDavid Howells 	RXRPC_CALL_LOCAL_ERROR,		/* - call failed due to local error */
550e122d845SDavid Howells 	RXRPC_CALL_NETWORK_ERROR,	/* - call terminated by network error */
551e122d845SDavid Howells 	NR__RXRPC_CALL_COMPLETIONS
552e122d845SDavid Howells };
553e122d845SDavid Howells 
554e122d845SDavid Howells /*
55557494343SDavid Howells  * Call Tx congestion management modes.
55657494343SDavid Howells  */
55757494343SDavid Howells enum rxrpc_congest_mode {
55857494343SDavid Howells 	RXRPC_CALL_SLOW_START,
55957494343SDavid Howells 	RXRPC_CALL_CONGEST_AVOIDANCE,
56057494343SDavid Howells 	RXRPC_CALL_PACKET_LOSS,
56157494343SDavid Howells 	RXRPC_CALL_FAST_RETRANSMIT,
56257494343SDavid Howells 	NR__RXRPC_CONGEST_MODES
56357494343SDavid Howells };
56457494343SDavid Howells 
56557494343SDavid Howells /*
56617926a79SDavid Howells  * RxRPC call definition
56717926a79SDavid Howells  * - matched by { connection, call_id }
56817926a79SDavid Howells  */
56917926a79SDavid Howells struct rxrpc_call {
570dee46364SDavid Howells 	struct rcu_head		rcu;
57117926a79SDavid Howells 	struct rxrpc_connection	*conn;		/* connection carrying call */
572df5d8bf7SDavid Howells 	struct rxrpc_peer	*peer;		/* Peer record for remote address */
5738d94aa38SDavid Howells 	struct rxrpc_sock __rcu	*socket;	/* socket responsible */
574d3be4d24SDavid Howells 	struct rxrpc_net	*rxnet;		/* Network namespace to which call belongs */
57591fcfbe8SDavid Howells 	const struct rxrpc_security *security;	/* applied security module */
576540b1c48SDavid Howells 	struct mutex		user_mutex;	/* User access mutex */
577a158bdd3SDavid Howells 	unsigned long		ack_at;		/* When deferred ACK needs to happen */
578bd1fdf8cSDavid Howells 	unsigned long		ack_lost_at;	/* When ACK is figured as lost */
579a158bdd3SDavid Howells 	unsigned long		resend_at;	/* When next resend needs to happen */
580a158bdd3SDavid Howells 	unsigned long		ping_at;	/* When next to send a ping */
581415f44e4SDavid Howells 	unsigned long		keepalive_at;	/* When next to send a keepalive ping */
582a158bdd3SDavid Howells 	unsigned long		expect_rx_by;	/* When we expect to get a packet by */
583a158bdd3SDavid Howells 	unsigned long		expect_req_by;	/* When we expect to get a request DATA packet by */
584a158bdd3SDavid Howells 	unsigned long		expect_term_by;	/* When we expect call termination by */
585a158bdd3SDavid Howells 	u32			next_rx_timo;	/* Timeout for next Rx packet (jif) */
586a158bdd3SDavid Howells 	u32			next_req_timo;	/* Timeout for next Rx request packet (jif) */
5871db88c53SDavid Howells 	struct skcipher_request	*cipher_req;	/* Packet cipher request buffer */
588248f219cSDavid Howells 	struct timer_list	timer;		/* Combined event timer */
589248f219cSDavid Howells 	struct work_struct	processor;	/* Event processor */
590d001648eSDavid Howells 	rxrpc_notify_rx_t	notify_rx;	/* kernel service Rx notification function */
59117926a79SDavid Howells 	struct list_head	link;		/* link in master call list */
592245500d8SDavid Howells 	struct list_head	chan_wait_link;	/* Link in conn->bundle->waiting_calls */
593f66d7490SDavid Howells 	struct hlist_node	error_link;	/* link in error distribution list */
594248f219cSDavid Howells 	struct list_head	accept_link;	/* Link in rx->acceptq */
595248f219cSDavid Howells 	struct list_head	recvmsg_link;	/* Link in rx->recvmsg_q */
596248f219cSDavid Howells 	struct list_head	sock_link;	/* Link in rx->sock_calls */
597248f219cSDavid Howells 	struct rb_node		sock_node;	/* Node in rx->calls */
59817926a79SDavid Howells 	struct sk_buff		*tx_pending;	/* Tx socket buffer being filled */
59945025bceSDavid Howells 	wait_queue_head_t	waitq;		/* Wait queue for channel or Tx */
600e754eba6SDavid Howells 	s64			tx_total_len;	/* Total length left to be transmitted (or -1) */
601a263629dSHerbert Xu 	__be32			crypto_buf[2];	/* Temporary packet crypto buffer */
60217926a79SDavid Howells 	unsigned long		user_call_ID;	/* user-defined call ID */
60317926a79SDavid Howells 	unsigned long		flags;
60417926a79SDavid Howells 	unsigned long		events;
60517926a79SDavid Howells 	spinlock_t		lock;
60620acbd9aSDavid Howells 	spinlock_t		notify_lock;	/* Kernel notification lock */
60717926a79SDavid Howells 	rwlock_t		state_lock;	/* lock for state transition */
608f5c17aaeSDavid Howells 	u32			abort_code;	/* Local/remote abort code */
609f5c17aaeSDavid Howells 	int			error;		/* Local error incurred */
610cf13258fSDavid Howells 	enum rxrpc_call_state	state;		/* current state of call */
611cf13258fSDavid Howells 	enum rxrpc_call_completion completion;	/* Call completion condition */
61217926a79SDavid Howells 	atomic_t		usage;
613dabe5a79SDavid Howells 	u16			service_id;	/* service ID */
614278ac0cdSDavid Howells 	u8			security_ix;	/* Security type */
615e138aa7dSDavid Howells 	enum rxrpc_interruptibility interruptibility; /* At what point call may be interrupted */
616dabe5a79SDavid Howells 	u32			call_id;	/* call ID on connection  */
617dabe5a79SDavid Howells 	u32			cid;		/* connection ID plus channel index */
618dabe5a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
6198e83134dSDavid Howells 	unsigned short		rx_pkt_offset;	/* Current recvmsg packet offset */
6208e83134dSDavid Howells 	unsigned short		rx_pkt_len;	/* Current recvmsg packet len */
621f9c32435SDavid Howells 	bool			rx_pkt_last;	/* Current recvmsg packet is last */
62217926a79SDavid Howells 
623248f219cSDavid Howells 	/* Rx/Tx circular buffer, depending on phase.
624248f219cSDavid Howells 	 *
625248f219cSDavid Howells 	 * In the Rx phase, packets are annotated with 0 or the number of the
626248f219cSDavid Howells 	 * segment of a jumbo packet each buffer refers to.  There can be up to
627248f219cSDavid Howells 	 * 47 segments in a maximum-size UDP packet.
628248f219cSDavid Howells 	 *
629248f219cSDavid Howells 	 * In the Tx phase, packets are annotated with which buffers have been
630248f219cSDavid Howells 	 * acked.
63117926a79SDavid Howells 	 */
632248f219cSDavid Howells #define RXRPC_RXTX_BUFF_SIZE	64
633248f219cSDavid Howells #define RXRPC_RXTX_BUFF_MASK	(RXRPC_RXTX_BUFF_SIZE - 1)
6344075295aSDavid Howells #define RXRPC_INIT_RX_WINDOW_SIZE 63
635248f219cSDavid Howells 	struct sk_buff		**rxtx_buffer;
636248f219cSDavid Howells 	u8			*rxtx_annotations;
637248f219cSDavid Howells #define RXRPC_TX_ANNO_ACK	0
638248f219cSDavid Howells #define RXRPC_TX_ANNO_UNACK	1
639248f219cSDavid Howells #define RXRPC_TX_ANNO_NAK	2
640248f219cSDavid Howells #define RXRPC_TX_ANNO_RETRANS	3
641f07373eaSDavid Howells #define RXRPC_TX_ANNO_MASK	0x03
64270790dbeSDavid Howells #define RXRPC_TX_ANNO_LAST	0x04
64370790dbeSDavid Howells #define RXRPC_TX_ANNO_RESENT	0x08
64470790dbeSDavid Howells 
645e2de6c40SDavid Howells #define RXRPC_RX_ANNO_SUBPACKET	0x3f		/* Subpacket number in jumbogram */
646248f219cSDavid Howells #define RXRPC_RX_ANNO_VERIFIED	0x80		/* Set if verified and decrypted */
647248f219cSDavid Howells 	rxrpc_seq_t		tx_hard_ack;	/* Dead slot in buffer; the first transmitted but
648248f219cSDavid Howells 						 * not hard-ACK'd packet follows this.
649248f219cSDavid Howells 						 */
650248f219cSDavid Howells 	rxrpc_seq_t		tx_top;		/* Highest Tx slot allocated. */
651c7e86acfSDavid Howells 	u16			tx_backoff;	/* Delay to insert due to Tx failure */
65257494343SDavid Howells 
65357494343SDavid Howells 	/* TCP-style slow-start congestion control [RFC5681].  Since the SMSS
65457494343SDavid Howells 	 * is fixed, we keep these numbers in terms of segments (ie. DATA
65557494343SDavid Howells 	 * packets) rather than bytes.
65657494343SDavid Howells 	 */
65757494343SDavid Howells #define RXRPC_TX_SMSS		RXRPC_JUMBO_DATALEN
65857494343SDavid Howells 	u8			cong_cwnd;	/* Congestion window size */
65957494343SDavid Howells 	u8			cong_extra;	/* Extra to send for congestion management */
66057494343SDavid Howells 	u8			cong_ssthresh;	/* Slow-start threshold */
66157494343SDavid Howells 	enum rxrpc_congest_mode	cong_mode:8;	/* Congestion management mode */
66257494343SDavid Howells 	u8			cong_dup_acks;	/* Count of ACKs showing missing packets */
66357494343SDavid Howells 	u8			cong_cumul_acks; /* Cumulative ACK count */
66457494343SDavid Howells 	ktime_t			cong_tstamp;	/* Last time cwnd was changed */
66557494343SDavid Howells 
666248f219cSDavid Howells 	rxrpc_seq_t		rx_hard_ack;	/* Dead slot in buffer; the first received but not
667248f219cSDavid Howells 						 * consumed packet follows this.
668248f219cSDavid Howells 						 */
669248f219cSDavid Howells 	rxrpc_seq_t		rx_top;		/* Highest Rx slot allocated. */
670248f219cSDavid Howells 	rxrpc_seq_t		rx_expect_next;	/* Expected next packet sequence number */
6711a025028SDavid Howells 	rxrpc_serial_t		rx_serial;	/* Highest serial received for this call */
672248f219cSDavid Howells 	u8			rx_winsize;	/* Size of Rx window */
673248f219cSDavid Howells 	u8			tx_winsize;	/* Maximum size of Tx window */
67471f3ca40SDavid Howells 	bool			tx_phase;	/* T if transmission phase, F if receive phase */
67575e42126SDavid Howells 	u8			nr_jumbo_bad;	/* Number of jumbo dups/exceeds-windows */
67617926a79SDavid Howells 
677c1e15b49SDavid Howells 	spinlock_t		input_lock;	/* Lock for packet input to this call */
678c1e15b49SDavid Howells 
67917926a79SDavid Howells 	/* receive-phase ACK management */
6804e36a95eSDavid Howells 	u8			ackr_reason;	/* reason to ACK */
6810d12f8a4SDavid Howells 	rxrpc_serial_t		ackr_serial;	/* serial of packet being ACK'd */
6821a2391c3SJeffrey Altman 	rxrpc_serial_t		ackr_first_seq;	/* first sequence number received */
683248f219cSDavid Howells 	rxrpc_seq_t		ackr_prev_seq;	/* previous sequence number received */
684805b21b9SDavid Howells 	rxrpc_seq_t		ackr_consumed;	/* Highest packet shown consumed */
685805b21b9SDavid Howells 	rxrpc_seq_t		ackr_seen;	/* Highest packet shown seen */
686a5af7e1fSDavid Howells 
6874700c4d8SDavid Howells 	/* RTT management */
6884700c4d8SDavid Howells 	rxrpc_serial_t		rtt_serial[4];	/* Serial number of DATA or PING sent */
6894700c4d8SDavid Howells 	ktime_t			rtt_sent_at[4];	/* Time packet sent */
6904700c4d8SDavid Howells 	unsigned long		rtt_avail;	/* Mask of available slots in bits 0-3,
6914700c4d8SDavid Howells 						 * Mask of pending samples in 8-11 */
6924700c4d8SDavid Howells #define RXRPC_CALL_RTT_AVAIL_MASK	0xf
6934700c4d8SDavid Howells #define RXRPC_CALL_RTT_PEND_SHIFT	8
69417926a79SDavid Howells 
695248f219cSDavid Howells 	/* transmission-phase ACK management */
69657494343SDavid Howells 	ktime_t			acks_latest_ts;	/* Timestamp of latest ACK received */
69731a1b989SDavid Howells 	rxrpc_seq_t		acks_lowest_nak; /* Lowest NACK in the buffer (or ==tx_hard_ack) */
698bd1fdf8cSDavid Howells 	rxrpc_seq_t		acks_lost_top;	/* tx_top at the time lost-ack ping sent */
699bd1fdf8cSDavid Howells 	rxrpc_serial_t		acks_lost_ping;	/* Serial number of probe ACK */
70031a1b989SDavid Howells };
70131a1b989SDavid Howells 
70231a1b989SDavid Howells /*
70357494343SDavid Howells  * Summary of a new ACK and the changes it made to the Tx buffer packet states.
70431a1b989SDavid Howells  */
70531a1b989SDavid Howells struct rxrpc_ack_summary {
70631a1b989SDavid Howells 	u8			ack_reason;
70731a1b989SDavid Howells 	u8			nr_acks;		/* Number of ACKs in packet */
70831a1b989SDavid Howells 	u8			nr_nacks;		/* Number of NACKs in packet */
70931a1b989SDavid Howells 	u8			nr_new_acks;		/* Number of new ACKs in packet */
71031a1b989SDavid Howells 	u8			nr_new_nacks;		/* Number of new NACKs in packet */
71131a1b989SDavid Howells 	u8			nr_rot_new_acks;	/* Number of rotated new ACKs */
71231a1b989SDavid Howells 	bool			new_low_nack;		/* T if new low NACK found */
71357494343SDavid Howells 	bool			retrans_timeo;		/* T if reTx due to timeout happened */
71457494343SDavid Howells 	u8			flight_size;		/* Number of unreceived transmissions */
71557494343SDavid Howells 	/* Place to stash values for tracing */
71657494343SDavid Howells 	enum rxrpc_congest_mode	mode:8;
71757494343SDavid Howells 	u8			cwnd;
71857494343SDavid Howells 	u8			ssthresh;
71957494343SDavid Howells 	u8			dup_acks;
72057494343SDavid Howells 	u8			cumulative_acks;
72117926a79SDavid Howells };
72217926a79SDavid Howells 
72348124178SDavid Howells /*
72448124178SDavid Howells  * sendmsg() cmsg-specified parameters.
72548124178SDavid Howells  */
72648124178SDavid Howells enum rxrpc_command {
72748124178SDavid Howells 	RXRPC_CMD_SEND_DATA,		/* send data message */
72848124178SDavid Howells 	RXRPC_CMD_SEND_ABORT,		/* request abort generation */
72948124178SDavid Howells 	RXRPC_CMD_REJECT_BUSY,		/* [server] reject a call as busy */
7302d914c1bSDavid Howells 	RXRPC_CMD_CHARGE_ACCEPT,	/* [server] charge accept preallocation */
73148124178SDavid Howells };
73248124178SDavid Howells 
73348124178SDavid Howells struct rxrpc_call_params {
73448124178SDavid Howells 	s64			tx_total_len;	/* Total Tx data length (if send data) */
73548124178SDavid Howells 	unsigned long		user_call_ID;	/* User's call ID */
73648124178SDavid Howells 	struct {
73748124178SDavid Howells 		u32		hard;		/* Maximum lifetime (sec) */
73848124178SDavid Howells 		u32		idle;		/* Max time since last data packet (msec) */
73948124178SDavid Howells 		u32		normal;		/* Max time since last call packet (msec) */
74048124178SDavid Howells 	} timeouts;
74148124178SDavid Howells 	u8			nr_timeouts;	/* Number of timeouts specified */
742b7a7d674SDavid Howells 	bool			kernel;		/* T if kernel is making the call */
743e138aa7dSDavid Howells 	enum rxrpc_interruptibility interruptibility; /* How is interruptible is the call? */
74448124178SDavid Howells };
74548124178SDavid Howells 
74648124178SDavid Howells struct rxrpc_send_params {
74748124178SDavid Howells 	struct rxrpc_call_params call;
74848124178SDavid Howells 	u32			abort_code;	/* Abort code to Tx (if abort) */
74948124178SDavid Howells 	enum rxrpc_command	command : 8;	/* The command to implement */
75048124178SDavid Howells 	bool			exclusive;	/* Shared or exclusive call */
75148124178SDavid Howells 	bool			upgrade;	/* If the connection is upgradeable */
75248124178SDavid Howells };
75348124178SDavid Howells 
754df844fd4SDavid Howells #include <trace/events/rxrpc.h>
755df844fd4SDavid Howells 
75617926a79SDavid Howells /*
757651350d1SDavid Howells  * af_rxrpc.c
75817926a79SDavid Howells  */
75971f3ca40SDavid Howells extern atomic_t rxrpc_n_tx_skbs, rxrpc_n_rx_skbs;
760651350d1SDavid Howells extern struct workqueue_struct *rxrpc_workqueue;
76117926a79SDavid Howells 
76217926a79SDavid Howells /*
7630d81a51aSDavid Howells  * call_accept.c
76417926a79SDavid Howells  */
76500e90712SDavid Howells int rxrpc_service_prealloc(struct rxrpc_sock *, gfp_t);
76600e90712SDavid Howells void rxrpc_discard_prealloc(struct rxrpc_sock *);
767248f219cSDavid Howells struct rxrpc_call *rxrpc_new_incoming_call(struct rxrpc_local *,
7680099dc58SDavid Howells 					   struct rxrpc_sock *,
769248f219cSDavid Howells 					   struct sk_buff *);
7704f95dd78SDavid Howells void rxrpc_accept_incoming_calls(struct rxrpc_local *);
7712d914c1bSDavid Howells int rxrpc_user_charge_accept(struct rxrpc_sock *, unsigned long);
77217926a79SDavid Howells 
77317926a79SDavid Howells /*
7740d81a51aSDavid Howells  * call_event.c
77517926a79SDavid Howells  */
776e8c3af6bSDavid Howells void rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool, bool,
7779c7ad434SDavid Howells 		       enum rxrpc_propose_ack_trace);
778c1b1203dSJoe Perches void rxrpc_process_call(struct work_struct *);
77917926a79SDavid Howells 
780*4a7f62f9SDavid Howells void rxrpc_reduce_call_timer(struct rxrpc_call *call,
781a158bdd3SDavid Howells 			     unsigned long expire_at,
782a158bdd3SDavid Howells 			     unsigned long now,
783*4a7f62f9SDavid Howells 			     enum rxrpc_timer_trace why);
784*4a7f62f9SDavid Howells 
785*4a7f62f9SDavid Howells void rxrpc_delete_call_timer(struct rxrpc_call *call);
786a158bdd3SDavid Howells 
78717926a79SDavid Howells /*
7880d81a51aSDavid Howells  * call_object.c
78917926a79SDavid Howells  */
790f5c17aaeSDavid Howells extern const char *const rxrpc_call_states[];
791f5c17aaeSDavid Howells extern const char *const rxrpc_call_completions[];
792dad8aff7SDavid Howells extern unsigned int rxrpc_max_call_lifetime;
79317926a79SDavid Howells extern struct kmem_cache *rxrpc_call_jar;
79417926a79SDavid Howells 
7952341e077SDavid Howells struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
796a25e21f0SDavid Howells struct rxrpc_call *rxrpc_alloc_call(struct rxrpc_sock *, gfp_t, unsigned int);
7972341e077SDavid Howells struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
79819ffa01cSDavid Howells 					 struct rxrpc_conn_parameters *,
799999b69f8SDavid Howells 					 struct sockaddr_rxrpc *,
800a25e21f0SDavid Howells 					 struct rxrpc_call_params *, gfp_t,
801a25e21f0SDavid Howells 					 unsigned int);
802248f219cSDavid Howells void rxrpc_incoming_call(struct rxrpc_sock *, struct rxrpc_call *,
80342886ffeSDavid Howells 			 struct sk_buff *);
8048d94aa38SDavid Howells void rxrpc_release_call(struct rxrpc_sock *, struct rxrpc_call *);
805c1b1203dSJoe Perches void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
8068d94aa38SDavid Howells bool __rxrpc_queue_call(struct rxrpc_call *);
8078d94aa38SDavid Howells bool rxrpc_queue_call(struct rxrpc_call *);
808e34d4234SDavid Howells void rxrpc_see_call(struct rxrpc_call *);
809*4a7f62f9SDavid Howells bool rxrpc_try_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op);
810fff72429SDavid Howells void rxrpc_get_call(struct rxrpc_call *, enum rxrpc_call_trace);
811fff72429SDavid Howells void rxrpc_put_call(struct rxrpc_call *, enum rxrpc_call_trace);
81200e90712SDavid Howells void rxrpc_cleanup_call(struct rxrpc_call *);
8132baec2c3SDavid Howells void rxrpc_destroy_all_calls(struct rxrpc_net *);
81417926a79SDavid Howells 
815dabe5a79SDavid Howells static inline bool rxrpc_is_service_call(const struct rxrpc_call *call)
816dabe5a79SDavid Howells {
817dabe5a79SDavid Howells 	return test_bit(RXRPC_CALL_IS_SERVICE, &call->flags);
818dabe5a79SDavid Howells }
819dabe5a79SDavid Howells 
820dabe5a79SDavid Howells static inline bool rxrpc_is_client_call(const struct rxrpc_call *call)
821dabe5a79SDavid Howells {
822dabe5a79SDavid Howells 	return !rxrpc_is_service_call(call);
823dabe5a79SDavid Howells }
824dabe5a79SDavid Howells 
82517926a79SDavid Howells /*
8264a3388c8SDavid Howells  * conn_client.c
8274a3388c8SDavid Howells  */
82845025bceSDavid Howells extern unsigned int rxrpc_reap_client_connections;
829a158bdd3SDavid Howells extern unsigned long rxrpc_conn_idle_client_expiry;
830a158bdd3SDavid Howells extern unsigned long rxrpc_conn_idle_client_fast_expiry;
8314a3388c8SDavid Howells extern struct idr rxrpc_client_conn_ids;
8324a3388c8SDavid Howells 
833eb9b9d22SDavid Howells void rxrpc_destroy_client_conn_ids(void);
834245500d8SDavid Howells struct rxrpc_bundle *rxrpc_get_bundle(struct rxrpc_bundle *);
835245500d8SDavid Howells void rxrpc_put_bundle(struct rxrpc_bundle *);
8365e33a23bSDavid Howells int rxrpc_connect_call(struct rxrpc_sock *, struct rxrpc_call *,
8375e33a23bSDavid Howells 		       struct rxrpc_conn_parameters *, struct sockaddr_rxrpc *,
8385e33a23bSDavid Howells 		       gfp_t);
83945025bceSDavid Howells void rxrpc_expose_client_call(struct rxrpc_call *);
840245500d8SDavid Howells void rxrpc_disconnect_client_call(struct rxrpc_bundle *, struct rxrpc_call *);
84145025bceSDavid Howells void rxrpc_put_client_conn(struct rxrpc_connection *);
8422baec2c3SDavid Howells void rxrpc_discard_expired_client_conns(struct work_struct *);
8432baec2c3SDavid Howells void rxrpc_destroy_all_client_connections(struct rxrpc_net *);
844d12040b6SDavid Howells void rxrpc_clean_up_local_conns(struct rxrpc_local *);
8454a3388c8SDavid Howells 
8464a3388c8SDavid Howells /*
8470d81a51aSDavid Howells  * conn_event.c
8480d81a51aSDavid Howells  */
8490d81a51aSDavid Howells void rxrpc_process_connection(struct work_struct *);
850ddc7834aSDavid Howells void rxrpc_process_delayed_final_acks(struct rxrpc_connection *, bool);
8510d81a51aSDavid Howells 
8520d81a51aSDavid Howells /*
8530d81a51aSDavid Howells  * conn_object.c
85417926a79SDavid Howells  */
855dad8aff7SDavid Howells extern unsigned int rxrpc_connection_expiry;
856f859ab61SDavid Howells extern unsigned int rxrpc_closed_conn_expiry;
85717926a79SDavid Howells 
858c6d2b8d7SDavid Howells struct rxrpc_connection *rxrpc_alloc_connection(gfp_t);
8598496af50SDavid Howells struct rxrpc_connection *rxrpc_find_connection_rcu(struct rxrpc_local *,
8600099dc58SDavid Howells 						   struct sk_buff *,
8610099dc58SDavid Howells 						   struct rxrpc_peer **);
86245025bceSDavid Howells void __rxrpc_disconnect_call(struct rxrpc_connection *, struct rxrpc_call *);
863999b69f8SDavid Howells void rxrpc_disconnect_call(struct rxrpc_call *);
86445025bceSDavid Howells void rxrpc_kill_connection(struct rxrpc_connection *);
865363deeabSDavid Howells bool rxrpc_queue_conn(struct rxrpc_connection *);
866363deeabSDavid Howells void rxrpc_see_connection(struct rxrpc_connection *);
867245500d8SDavid Howells struct rxrpc_connection *rxrpc_get_connection(struct rxrpc_connection *);
868363deeabSDavid Howells struct rxrpc_connection *rxrpc_get_connection_maybe(struct rxrpc_connection *);
869363deeabSDavid Howells void rxrpc_put_service_conn(struct rxrpc_connection *);
8702baec2c3SDavid Howells void rxrpc_service_connection_reaper(struct work_struct *);
8712baec2c3SDavid Howells void rxrpc_destroy_all_connections(struct rxrpc_net *);
87217926a79SDavid Howells 
87319ffa01cSDavid Howells static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
87419ffa01cSDavid Howells {
87519ffa01cSDavid Howells 	return conn->out_clientflag;
87619ffa01cSDavid Howells }
87719ffa01cSDavid Howells 
87819ffa01cSDavid Howells static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
87919ffa01cSDavid Howells {
880e8d70ce1SDavid Howells 	return !rxrpc_conn_is_client(conn);
88119ffa01cSDavid Howells }
88219ffa01cSDavid Howells 
883f51b4480SDavid Howells static inline void rxrpc_put_connection(struct rxrpc_connection *conn)
884f51b4480SDavid Howells {
88545025bceSDavid Howells 	if (!conn)
88645025bceSDavid Howells 		return;
88745025bceSDavid Howells 
888363deeabSDavid Howells 	if (rxrpc_conn_is_client(conn))
88945025bceSDavid Howells 		rxrpc_put_client_conn(conn);
890363deeabSDavid Howells 	else
891363deeabSDavid Howells 		rxrpc_put_service_conn(conn);
8925acbee46SDavid Howells }
8935acbee46SDavid Howells 
8943136ef49SDavid Howells static inline void rxrpc_reduce_conn_timer(struct rxrpc_connection *conn,
8953136ef49SDavid Howells 					   unsigned long expire_at)
8963136ef49SDavid Howells {
8973136ef49SDavid Howells 	timer_reduce(&conn->timer, expire_at);
8983136ef49SDavid Howells }
8993136ef49SDavid Howells 
90017926a79SDavid Howells /*
9017877a4a4SDavid Howells  * conn_service.c
9027877a4a4SDavid Howells  */
9038496af50SDavid Howells struct rxrpc_connection *rxrpc_find_service_conn_rcu(struct rxrpc_peer *,
9048496af50SDavid Howells 						     struct sk_buff *);
9052baec2c3SDavid Howells struct rxrpc_connection *rxrpc_prealloc_service_connection(struct rxrpc_net *, gfp_t);
906063c60d3SDavid Howells void rxrpc_new_incoming_connection(struct rxrpc_sock *, struct rxrpc_connection *,
907ec832bd0SDavid Howells 				   const struct rxrpc_security *, struct sk_buff *);
908001c1122SDavid Howells void rxrpc_unpublish_service_conn(struct rxrpc_connection *);
9097877a4a4SDavid Howells 
9107877a4a4SDavid Howells /*
9110d81a51aSDavid Howells  * input.c
91217926a79SDavid Howells  */
9135271953cSDavid Howells int rxrpc_input_packet(struct sock *, struct sk_buff *);
91417926a79SDavid Howells 
91517926a79SDavid Howells /*
9160d81a51aSDavid Howells  * insecure.c
91717926a79SDavid Howells  */
9180d81a51aSDavid Howells extern const struct rxrpc_security rxrpc_no_security;
91917926a79SDavid Howells 
92017926a79SDavid Howells /*
9210d81a51aSDavid Howells  * key.c
92217926a79SDavid Howells  */
92317926a79SDavid Howells extern struct key_type key_type_rxrpc;
92417926a79SDavid Howells 
925a7b75c5aSChristoph Hellwig int rxrpc_request_key(struct rxrpc_sock *, sockptr_t , int);
92610674a03SBaolin Wang int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time64_t,
927c1b1203dSJoe Perches 			      u32);
92817926a79SDavid Howells 
92917926a79SDavid Howells /*
93087563616SDavid Howells  * local_event.c
93187563616SDavid Howells  */
9324f95dd78SDavid Howells extern void rxrpc_process_local_events(struct rxrpc_local *);
93387563616SDavid Howells 
93487563616SDavid Howells /*
9350d81a51aSDavid Howells  * local_object.c
93617926a79SDavid Howells  */
9372baec2c3SDavid Howells struct rxrpc_local *rxrpc_lookup_local(struct net *, const struct sockaddr_rxrpc *);
93809d2bf59SDavid Howells struct rxrpc_local *rxrpc_get_local(struct rxrpc_local *);
93909d2bf59SDavid Howells struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *);
94009d2bf59SDavid Howells void rxrpc_put_local(struct rxrpc_local *);
941730c5fd4SDavid Howells struct rxrpc_local *rxrpc_use_local(struct rxrpc_local *);
942730c5fd4SDavid Howells void rxrpc_unuse_local(struct rxrpc_local *);
94309d2bf59SDavid Howells void rxrpc_queue_local(struct rxrpc_local *);
9442baec2c3SDavid Howells void rxrpc_destroy_all_locals(struct rxrpc_net *);
945e0e4d82fSDavid Howells 
94604d36d74SDavid Howells static inline bool __rxrpc_unuse_local(struct rxrpc_local *local)
94704d36d74SDavid Howells {
94804d36d74SDavid Howells 	return atomic_dec_return(&local->active_users) == 0;
94904d36d74SDavid Howells }
95004d36d74SDavid Howells 
95104d36d74SDavid Howells static inline bool __rxrpc_use_local(struct rxrpc_local *local)
95204d36d74SDavid Howells {
95304d36d74SDavid Howells 	return atomic_fetch_add_unless(&local->active_users, 1, 0) != 0;
95404d36d74SDavid Howells }
95504d36d74SDavid Howells 
956e0e4d82fSDavid Howells /*
9578e688d9cSDavid Howells  * misc.c
9588e688d9cSDavid Howells  */
9590e119b41SDavid Howells extern unsigned int rxrpc_max_backlog __read_mostly;
960a158bdd3SDavid Howells extern unsigned long rxrpc_requested_ack_delay;
961a158bdd3SDavid Howells extern unsigned long rxrpc_soft_ack_delay;
962a158bdd3SDavid Howells extern unsigned long rxrpc_idle_ack_delay;
9638e688d9cSDavid Howells extern unsigned int rxrpc_rx_window_size;
9648e688d9cSDavid Howells extern unsigned int rxrpc_rx_mtu;
9658e688d9cSDavid Howells extern unsigned int rxrpc_rx_jumbo_max;
9668e688d9cSDavid Howells 
9678e688d9cSDavid Howells extern const s8 rxrpc_ack_priority[];
9688e688d9cSDavid Howells 
9698e688d9cSDavid Howells /*
9702baec2c3SDavid Howells  * net_ns.c
9712baec2c3SDavid Howells  */
9722baec2c3SDavid Howells extern unsigned int rxrpc_net_id;
9732baec2c3SDavid Howells extern struct pernet_operations rxrpc_net_ops;
9742baec2c3SDavid Howells 
9752baec2c3SDavid Howells static inline struct rxrpc_net *rxrpc_net(struct net *net)
9762baec2c3SDavid Howells {
9772baec2c3SDavid Howells 	return net_generic(net, rxrpc_net_id);
9782baec2c3SDavid Howells }
9792baec2c3SDavid Howells 
9802baec2c3SDavid Howells /*
9810d81a51aSDavid Howells  * output.c
9820d81a51aSDavid Howells  */
983bd1fdf8cSDavid Howells int rxrpc_send_ack_packet(struct rxrpc_call *, bool, rxrpc_serial_t *);
98426cb02aaSDavid Howells int rxrpc_send_abort_packet(struct rxrpc_call *);
985a1767077SDavid Howells int rxrpc_send_data_packet(struct rxrpc_call *, struct sk_buff *, bool);
986248f219cSDavid Howells void rxrpc_reject_packets(struct rxrpc_local *);
987ace45becSDavid Howells void rxrpc_send_keepalive(struct rxrpc_peer *);
9880d81a51aSDavid Howells 
9890d81a51aSDavid Howells /*
990abe89ef0SDavid Howells  * peer_event.c
9910d81a51aSDavid Howells  */
992abe89ef0SDavid Howells void rxrpc_error_report(struct sock *);
993ace45becSDavid Howells void rxrpc_peer_keepalive_worker(struct work_struct *);
9940d81a51aSDavid Howells 
9950d81a51aSDavid Howells /*
9960d81a51aSDavid Howells  * peer_object.c
9970d81a51aSDavid Howells  */
998be6e6707SDavid Howells struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
999be6e6707SDavid Howells 					 const struct sockaddr_rxrpc *);
10005e33a23bSDavid Howells struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_sock *, struct rxrpc_local *,
1001be6e6707SDavid Howells 				     struct sockaddr_rxrpc *, gfp_t);
1002be6e6707SDavid Howells struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
10035e33a23bSDavid Howells void rxrpc_new_incoming_peer(struct rxrpc_sock *, struct rxrpc_local *,
10045e33a23bSDavid Howells 			     struct rxrpc_peer *);
100517226f12SDavid Howells void rxrpc_destroy_all_peers(struct rxrpc_net *);
10061159d4b4SDavid Howells struct rxrpc_peer *rxrpc_get_peer(struct rxrpc_peer *);
10071159d4b4SDavid Howells struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *);
10081159d4b4SDavid Howells void rxrpc_put_peer(struct rxrpc_peer *);
100960034d3dSDavid Howells void rxrpc_put_peer_locked(struct rxrpc_peer *);
10100d81a51aSDavid Howells 
10110d81a51aSDavid Howells /*
10120d81a51aSDavid Howells  * proc.c
10130d81a51aSDavid Howells  */
1014c3506372SChristoph Hellwig extern const struct seq_operations rxrpc_call_seq_ops;
1015c3506372SChristoph Hellwig extern const struct seq_operations rxrpc_connection_seq_ops;
1016bc0e7cf4SDavid Howells extern const struct seq_operations rxrpc_peer_seq_ops;
10170d81a51aSDavid Howells 
10180d81a51aSDavid Howells /*
10190d81a51aSDavid Howells  * recvmsg.c
10200d81a51aSDavid Howells  */
1021248f219cSDavid Howells void rxrpc_notify_socket(struct rxrpc_call *);
10223067bf8cSDavid Howells bool __rxrpc_set_call_completion(struct rxrpc_call *, enum rxrpc_call_completion, u32, int);
10233067bf8cSDavid Howells bool rxrpc_set_call_completion(struct rxrpc_call *, enum rxrpc_call_completion, u32, int);
10243067bf8cSDavid Howells bool __rxrpc_call_completed(struct rxrpc_call *);
10253067bf8cSDavid Howells bool rxrpc_call_completed(struct rxrpc_call *);
10263067bf8cSDavid Howells bool __rxrpc_abort_call(const char *, struct rxrpc_call *, rxrpc_seq_t, u32, int);
10273067bf8cSDavid Howells bool rxrpc_abort_call(const char *, struct rxrpc_call *, rxrpc_seq_t, u32, int);
10280d81a51aSDavid Howells int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
10290d81a51aSDavid Howells 
10300d81a51aSDavid Howells /*
10313067bf8cSDavid Howells  * Abort a call due to a protocol error.
10323067bf8cSDavid Howells  */
10333067bf8cSDavid Howells static inline bool __rxrpc_abort_eproto(struct rxrpc_call *call,
10343067bf8cSDavid Howells 					struct sk_buff *skb,
10353067bf8cSDavid Howells 					const char *eproto_why,
10363067bf8cSDavid Howells 					const char *why,
10373067bf8cSDavid Howells 					u32 abort_code)
10383067bf8cSDavid Howells {
10393067bf8cSDavid Howells 	struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
10403067bf8cSDavid Howells 
10413067bf8cSDavid Howells 	trace_rxrpc_rx_eproto(call, sp->hdr.serial, eproto_why);
10423067bf8cSDavid Howells 	return rxrpc_abort_call(why, call, sp->hdr.seq, abort_code, -EPROTO);
10433067bf8cSDavid Howells }
10443067bf8cSDavid Howells 
10453067bf8cSDavid Howells #define rxrpc_abort_eproto(call, skb, eproto_why, abort_why, abort_code) \
10463067bf8cSDavid Howells 	__rxrpc_abort_eproto((call), (skb), tracepoint_string(eproto_why), \
10473067bf8cSDavid Howells 			     (abort_why), (abort_code))
10483067bf8cSDavid Howells 
10493067bf8cSDavid Howells /*
1050c410bf01SDavid Howells  * rtt.c
1051c410bf01SDavid Howells  */
10524700c4d8SDavid Howells void rxrpc_peer_add_rtt(struct rxrpc_call *, enum rxrpc_rtt_rx_trace, int,
1053c410bf01SDavid Howells 			rxrpc_serial_t, rxrpc_serial_t, ktime_t, ktime_t);
1054c410bf01SDavid Howells unsigned long rxrpc_get_rto_backoff(struct rxrpc_peer *, bool);
1055c410bf01SDavid Howells void rxrpc_peer_init_rtt(struct rxrpc_peer *);
1056c410bf01SDavid Howells 
1057c410bf01SDavid Howells /*
1058648af7fcSDavid Howells  * rxkad.c
1059648af7fcSDavid Howells  */
1060648af7fcSDavid Howells #ifdef CONFIG_RXKAD
1061648af7fcSDavid Howells extern const struct rxrpc_security rxkad;
1062648af7fcSDavid Howells #endif
1063648af7fcSDavid Howells 
1064648af7fcSDavid Howells /*
10650d81a51aSDavid Howells  * security.c
10660d81a51aSDavid Howells  */
10670d81a51aSDavid Howells int __init rxrpc_init_security(void);
106812da59fcSDavid Howells const struct rxrpc_security *rxrpc_security_lookup(u8);
10690d81a51aSDavid Howells void rxrpc_exit_security(void);
10700d81a51aSDavid Howells int rxrpc_init_client_conn_security(struct rxrpc_connection *);
1071ec832bd0SDavid Howells const struct rxrpc_security *rxrpc_get_incoming_security(struct rxrpc_sock *,
1072063c60d3SDavid Howells 							 struct sk_buff *);
1073ec832bd0SDavid Howells struct key *rxrpc_look_up_server_security(struct rxrpc_connection *,
1074ec832bd0SDavid Howells 					  struct sk_buff *, u32, u32);
10750d81a51aSDavid Howells 
10760d81a51aSDavid Howells /*
10770b58b8a1SDavid Howells  * sendmsg.c
10780b58b8a1SDavid Howells  */
10790b58b8a1SDavid Howells int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
10800b58b8a1SDavid Howells 
10810b58b8a1SDavid Howells /*
1082ca7fb100SDavid Howells  * server_key.c
1083ca7fb100SDavid Howells  */
1084ca7fb100SDavid Howells extern struct key_type key_type_rxrpc_s;
1085ca7fb100SDavid Howells 
1086ca7fb100SDavid Howells int rxrpc_server_keyring(struct rxrpc_sock *, sockptr_t, int);
1087ca7fb100SDavid Howells 
1088ca7fb100SDavid Howells /*
10890d81a51aSDavid Howells  * skbuff.c
10900d81a51aSDavid Howells  */
1091d001648eSDavid Howells void rxrpc_kernel_data_consumed(struct rxrpc_call *, struct sk_buff *);
10920d81a51aSDavid Howells void rxrpc_packet_destructor(struct sk_buff *);
109371f3ca40SDavid Howells void rxrpc_new_skb(struct sk_buff *, enum rxrpc_skb_trace);
109471f3ca40SDavid Howells void rxrpc_see_skb(struct sk_buff *, enum rxrpc_skb_trace);
1095d0d5c0cdSDavid Howells void rxrpc_eaten_skb(struct sk_buff *, enum rxrpc_skb_trace);
109671f3ca40SDavid Howells void rxrpc_get_skb(struct sk_buff *, enum rxrpc_skb_trace);
109771f3ca40SDavid Howells void rxrpc_free_skb(struct sk_buff *, enum rxrpc_skb_trace);
1098df844fd4SDavid Howells void rxrpc_purge_queue(struct sk_buff_head *);
10990d81a51aSDavid Howells 
11000d81a51aSDavid Howells /*
11015873c083SDavid Howells  * sysctl.c
11025873c083SDavid Howells  */
11035873c083SDavid Howells #ifdef CONFIG_SYSCTL
11045873c083SDavid Howells extern int __init rxrpc_sysctl_init(void);
11055873c083SDavid Howells extern void rxrpc_sysctl_exit(void);
11065873c083SDavid Howells #else
11075873c083SDavid Howells static inline int __init rxrpc_sysctl_init(void) { return 0; }
11085873c083SDavid Howells static inline void rxrpc_sysctl_exit(void) {}
11095873c083SDavid Howells #endif
11105873c083SDavid Howells 
11115873c083SDavid Howells /*
1112be6e6707SDavid Howells  * utils.c
1113be6e6707SDavid Howells  */
11145a790b73SDavid Howells int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
1115be6e6707SDavid Howells 
1116248f219cSDavid Howells static inline bool before(u32 seq1, u32 seq2)
1117248f219cSDavid Howells {
1118248f219cSDavid Howells         return (s32)(seq1 - seq2) < 0;
1119248f219cSDavid Howells }
1120248f219cSDavid Howells static inline bool before_eq(u32 seq1, u32 seq2)
1121248f219cSDavid Howells {
1122248f219cSDavid Howells         return (s32)(seq1 - seq2) <= 0;
1123248f219cSDavid Howells }
1124248f219cSDavid Howells static inline bool after(u32 seq1, u32 seq2)
1125248f219cSDavid Howells {
1126248f219cSDavid Howells         return (s32)(seq1 - seq2) > 0;
1127248f219cSDavid Howells }
1128248f219cSDavid Howells static inline bool after_eq(u32 seq1, u32 seq2)
1129248f219cSDavid Howells {
1130248f219cSDavid Howells         return (s32)(seq1 - seq2) >= 0;
1131248f219cSDavid Howells }
1132248f219cSDavid Howells 
1133be6e6707SDavid Howells /*
113417926a79SDavid Howells  * debug tracing
113517926a79SDavid Howells  */
113695c96174SEric Dumazet extern unsigned int rxrpc_debug;
113717926a79SDavid Howells 
113817926a79SDavid Howells #define dbgprintk(FMT,...) \
11399f389f4bSSven Schnelle 	printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
114017926a79SDavid Howells 
11410dc47877SHarvey Harrison #define kenter(FMT,...)	dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
11420dc47877SHarvey Harrison #define kleave(FMT,...)	dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
114317926a79SDavid Howells #define kdebug(FMT,...)	dbgprintk("    "FMT ,##__VA_ARGS__)
114417926a79SDavid Howells #define kproto(FMT,...)	dbgprintk("### "FMT ,##__VA_ARGS__)
114517926a79SDavid Howells #define knet(FMT,...)	dbgprintk("@@@ "FMT ,##__VA_ARGS__)
114617926a79SDavid Howells 
114717926a79SDavid Howells 
114817926a79SDavid Howells #if defined(__KDEBUG)
114917926a79SDavid Howells #define _enter(FMT,...)	kenter(FMT,##__VA_ARGS__)
115017926a79SDavid Howells #define _leave(FMT,...)	kleave(FMT,##__VA_ARGS__)
115117926a79SDavid Howells #define _debug(FMT,...)	kdebug(FMT,##__VA_ARGS__)
115217926a79SDavid Howells #define _proto(FMT,...)	kproto(FMT,##__VA_ARGS__)
115317926a79SDavid Howells #define _net(FMT,...)	knet(FMT,##__VA_ARGS__)
115417926a79SDavid Howells 
115517926a79SDavid Howells #elif defined(CONFIG_AF_RXRPC_DEBUG)
115617926a79SDavid Howells #define RXRPC_DEBUG_KENTER	0x01
115717926a79SDavid Howells #define RXRPC_DEBUG_KLEAVE	0x02
115817926a79SDavid Howells #define RXRPC_DEBUG_KDEBUG	0x04
115917926a79SDavid Howells #define RXRPC_DEBUG_KPROTO	0x08
116017926a79SDavid Howells #define RXRPC_DEBUG_KNET	0x10
116117926a79SDavid Howells 
116217926a79SDavid Howells #define _enter(FMT,...)					\
116317926a79SDavid Howells do {							\
116417926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER))	\
116517926a79SDavid Howells 		kenter(FMT,##__VA_ARGS__);		\
116617926a79SDavid Howells } while (0)
116717926a79SDavid Howells 
116817926a79SDavid Howells #define _leave(FMT,...)					\
116917926a79SDavid Howells do {							\
117017926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE))	\
117117926a79SDavid Howells 		kleave(FMT,##__VA_ARGS__);		\
117217926a79SDavid Howells } while (0)
117317926a79SDavid Howells 
117417926a79SDavid Howells #define _debug(FMT,...)					\
117517926a79SDavid Howells do {							\
117617926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG))	\
117717926a79SDavid Howells 		kdebug(FMT,##__VA_ARGS__);		\
117817926a79SDavid Howells } while (0)
117917926a79SDavid Howells 
118017926a79SDavid Howells #define _proto(FMT,...)					\
118117926a79SDavid Howells do {							\
118217926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO))	\
118317926a79SDavid Howells 		kproto(FMT,##__VA_ARGS__);		\
118417926a79SDavid Howells } while (0)
118517926a79SDavid Howells 
118617926a79SDavid Howells #define _net(FMT,...)					\
118717926a79SDavid Howells do {							\
118817926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET))	\
118917926a79SDavid Howells 		knet(FMT,##__VA_ARGS__);		\
119017926a79SDavid Howells } while (0)
119117926a79SDavid Howells 
119217926a79SDavid Howells #else
119312fdff3fSDavid Howells #define _enter(FMT,...)	no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
119412fdff3fSDavid Howells #define _leave(FMT,...)	no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
119512fdff3fSDavid Howells #define _debug(FMT,...)	no_printk("    "FMT ,##__VA_ARGS__)
119612fdff3fSDavid Howells #define _proto(FMT,...)	no_printk("### "FMT ,##__VA_ARGS__)
119712fdff3fSDavid Howells #define _net(FMT,...)	no_printk("@@@ "FMT ,##__VA_ARGS__)
119817926a79SDavid Howells #endif
119917926a79SDavid Howells 
120017926a79SDavid Howells /*
120117926a79SDavid Howells  * debug assertion checking
120217926a79SDavid Howells  */
120317926a79SDavid Howells #if 1 // defined(__KDEBUGALL)
120417926a79SDavid Howells 
120517926a79SDavid Howells #define ASSERT(X)						\
120617926a79SDavid Howells do {								\
120717926a79SDavid Howells 	if (unlikely(!(X))) {					\
12089b6d5398SJoe Perches 		pr_err("Assertion failed\n");			\
120917926a79SDavid Howells 		BUG();						\
121017926a79SDavid Howells 	}							\
121117926a79SDavid Howells } while (0)
121217926a79SDavid Howells 
121317926a79SDavid Howells #define ASSERTCMP(X, OP, Y)						\
121417926a79SDavid Howells do {									\
1215cf13258fSDavid Howells 	__typeof__(X) _x = (X);						\
1216cf13258fSDavid Howells 	__typeof__(Y) _y = (__typeof__(X))(Y);				\
12179b6d5398SJoe Perches 	if (unlikely(!(_x OP _y))) {					\
12189b6d5398SJoe Perches 		pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1219cf13258fSDavid Howells 		       (unsigned long)_x, (unsigned long)_x, #OP,	\
1220cf13258fSDavid Howells 		       (unsigned long)_y, (unsigned long)_y);		\
122117926a79SDavid Howells 		BUG();							\
122217926a79SDavid Howells 	}								\
122317926a79SDavid Howells } while (0)
122417926a79SDavid Howells 
122517926a79SDavid Howells #define ASSERTIF(C, X)						\
122617926a79SDavid Howells do {								\
122717926a79SDavid Howells 	if (unlikely((C) && !(X))) {				\
12289b6d5398SJoe Perches 		pr_err("Assertion failed\n");			\
122917926a79SDavid Howells 		BUG();						\
123017926a79SDavid Howells 	}							\
123117926a79SDavid Howells } while (0)
123217926a79SDavid Howells 
123317926a79SDavid Howells #define ASSERTIFCMP(C, X, OP, Y)					\
123417926a79SDavid Howells do {									\
1235cf13258fSDavid Howells 	__typeof__(X) _x = (X);						\
1236cf13258fSDavid Howells 	__typeof__(Y) _y = (__typeof__(X))(Y);				\
12379b6d5398SJoe Perches 	if (unlikely((C) && !(_x OP _y))) {				\
12389b6d5398SJoe Perches 		pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1239cf13258fSDavid Howells 		       (unsigned long)_x, (unsigned long)_x, #OP,	\
1240cf13258fSDavid Howells 		       (unsigned long)_y, (unsigned long)_y);		\
124117926a79SDavid Howells 		BUG();							\
124217926a79SDavid Howells 	}								\
124317926a79SDavid Howells } while (0)
124417926a79SDavid Howells 
124517926a79SDavid Howells #else
124617926a79SDavid Howells 
124717926a79SDavid Howells #define ASSERT(X)				\
124817926a79SDavid Howells do {						\
124917926a79SDavid Howells } while (0)
125017926a79SDavid Howells 
125117926a79SDavid Howells #define ASSERTCMP(X, OP, Y)			\
125217926a79SDavid Howells do {						\
125317926a79SDavid Howells } while (0)
125417926a79SDavid Howells 
125517926a79SDavid Howells #define ASSERTIF(C, X)				\
125617926a79SDavid Howells do {						\
125717926a79SDavid Howells } while (0)
125817926a79SDavid Howells 
125917926a79SDavid Howells #define ASSERTIFCMP(C, X, OP, Y)		\
126017926a79SDavid Howells do {						\
126117926a79SDavid Howells } while (0)
126217926a79SDavid Howells 
126317926a79SDavid Howells #endif /* __KDEBUGALL */
1264