xref: /openbmc/linux/net/rxrpc/ar-internal.h (revision 730c5fd4)
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>
102baec2c3SDavid Howells #include <net/net_namespace.h>
112baec2c3SDavid Howells #include <net/netns/generic.h>
12e0e4d82fSDavid Howells #include <net/sock.h>
13be6e6707SDavid Howells #include <net/af_rxrpc.h>
14ddc6c70fSDavid Howells #include "protocol.h"
1517926a79SDavid Howells 
1617926a79SDavid Howells #if 0
1717926a79SDavid Howells #define CHECK_SLAB_OKAY(X)				     \
1817926a79SDavid Howells 	BUG_ON(atomic_read((X)) >> (sizeof(atomic_t) - 2) == \
1917926a79SDavid Howells 	       (POISON_FREE << 8 | POISON_FREE))
2017926a79SDavid Howells #else
2117926a79SDavid Howells #define CHECK_SLAB_OKAY(X) do {} while (0)
2217926a79SDavid Howells #endif
2317926a79SDavid Howells 
2417926a79SDavid Howells #define FCRYPT_BSIZE 8
2517926a79SDavid Howells struct rxrpc_crypt {
2617926a79SDavid Howells 	union {
2717926a79SDavid Howells 		u8	x[FCRYPT_BSIZE];
2891e916cfSAl Viro 		__be32	n[2];
2917926a79SDavid Howells 	};
3017926a79SDavid Howells } __attribute__((aligned(8)));
3117926a79SDavid Howells 
32651350d1SDavid Howells #define rxrpc_queue_work(WS)	queue_work(rxrpc_workqueue, (WS))
33651350d1SDavid Howells #define rxrpc_queue_delayed_work(WS,D)	\
34651350d1SDavid Howells 	queue_delayed_work(rxrpc_workqueue, (WS), (D))
35651350d1SDavid Howells 
36cc8feb8eSDavid Howells struct rxrpc_connection;
37cc8feb8eSDavid Howells 
3817926a79SDavid Howells /*
39ece64fecSDavid Howells  * Mark applied to socket buffers in skb->mark.  skb->priority is used
40ece64fecSDavid Howells  * to pass supplementary information.
41d001648eSDavid Howells  */
42d001648eSDavid Howells enum rxrpc_skb_mark {
43ece64fecSDavid Howells 	RXRPC_SKB_MARK_REJECT_BUSY,	/* Reject with BUSY */
44ece64fecSDavid Howells 	RXRPC_SKB_MARK_REJECT_ABORT,	/* Reject with ABORT (code in skb->priority) */
45d001648eSDavid Howells };
46d001648eSDavid Howells 
47d001648eSDavid Howells /*
4817926a79SDavid Howells  * sk_state for RxRPC sockets
4917926a79SDavid Howells  */
5017926a79SDavid Howells enum {
512341e077SDavid Howells 	RXRPC_UNBOUND = 0,
522341e077SDavid Howells 	RXRPC_CLIENT_UNBOUND,		/* Unbound socket used as client */
5317926a79SDavid Howells 	RXRPC_CLIENT_BOUND,		/* client local address bound */
5417926a79SDavid Howells 	RXRPC_SERVER_BOUND,		/* server local address bound */
5528036f44SDavid Howells 	RXRPC_SERVER_BOUND2,		/* second server local address bound */
5617926a79SDavid Howells 	RXRPC_SERVER_LISTENING,		/* server listening for connections */
57210f0353SDavid Howells 	RXRPC_SERVER_LISTEN_DISABLED,	/* server listening disabled */
5817926a79SDavid Howells 	RXRPC_CLOSE,			/* socket is being closed */
5917926a79SDavid Howells };
6017926a79SDavid Howells 
6117926a79SDavid Howells /*
622baec2c3SDavid Howells  * Per-network namespace data.
632baec2c3SDavid Howells  */
642baec2c3SDavid Howells struct rxrpc_net {
652baec2c3SDavid Howells 	struct proc_dir_entry	*proc_net;	/* Subdir in /proc/net */
662baec2c3SDavid Howells 	u32			epoch;		/* Local epoch for detecting local-end reset */
672baec2c3SDavid Howells 	struct list_head	calls;		/* List of calls active in this namespace */
682baec2c3SDavid Howells 	rwlock_t		call_lock;	/* Lock for ->calls */
69d3be4d24SDavid Howells 	atomic_t		nr_calls;	/* Count of allocated calls */
702baec2c3SDavid Howells 
7131f5f9a1SDavid Howells 	atomic_t		nr_conns;
722baec2c3SDavid Howells 	struct list_head	conn_proc_list;	/* List of conns in this namespace for proc */
732baec2c3SDavid Howells 	struct list_head	service_conns;	/* Service conns in this namespace */
742baec2c3SDavid Howells 	rwlock_t		conn_lock;	/* Lock for ->conn_proc_list, ->service_conns */
753d18cbb7SDavid Howells 	struct work_struct	service_conn_reaper;
763d18cbb7SDavid Howells 	struct timer_list	service_conn_reap_timer;
772baec2c3SDavid Howells 
782baec2c3SDavid Howells 	unsigned int		nr_client_conns;
792baec2c3SDavid Howells 	unsigned int		nr_active_client_conns;
802baec2c3SDavid Howells 	bool			kill_all_client_conns;
81f859ab61SDavid Howells 	bool			live;
822baec2c3SDavid Howells 	spinlock_t		client_conn_cache_lock; /* Lock for ->*_client_conns */
832baec2c3SDavid Howells 	spinlock_t		client_conn_discard_lock; /* Prevent multiple discarders */
842baec2c3SDavid Howells 	struct list_head	waiting_client_conns;
852baec2c3SDavid Howells 	struct list_head	active_client_conns;
862baec2c3SDavid Howells 	struct list_head	idle_client_conns;
873d18cbb7SDavid Howells 	struct work_struct	client_conn_reaper;
883d18cbb7SDavid Howells 	struct timer_list	client_conn_reap_timer;
892baec2c3SDavid Howells 
902baec2c3SDavid Howells 	struct list_head	local_endpoints;
912baec2c3SDavid Howells 	struct mutex		local_mutex;	/* Lock for ->local_endpoints */
922baec2c3SDavid Howells 
932baec2c3SDavid Howells 	DECLARE_HASHTABLE	(peer_hash, 10);
94ace45becSDavid Howells 	spinlock_t		peer_hash_lock;	/* Lock for ->peer_hash */
95ace45becSDavid Howells 
96ace45becSDavid Howells #define RXRPC_KEEPALIVE_TIME 20 /* NAT keepalive time in seconds */
97ace45becSDavid Howells 	u8			peer_keepalive_cursor;
98330bdcfaSDavid Howells 	time64_t		peer_keepalive_base;
99330bdcfaSDavid Howells 	struct list_head	peer_keepalive[32];
100330bdcfaSDavid Howells 	struct list_head	peer_keepalive_new;
101ace45becSDavid Howells 	struct timer_list	peer_keepalive_timer;
102ace45becSDavid Howells 	struct work_struct	peer_keepalive_work;
1032baec2c3SDavid Howells };
1042baec2c3SDavid Howells 
1052baec2c3SDavid Howells /*
10600e90712SDavid Howells  * Service backlog preallocation.
10700e90712SDavid Howells  *
10800e90712SDavid Howells  * This contains circular buffers of preallocated peers, connections and calls
10900e90712SDavid Howells  * for incoming service calls and their head and tail pointers.  This allows
11000e90712SDavid Howells  * calls to be set up in the data_ready handler, thereby avoiding the need to
11100e90712SDavid Howells  * shuffle packets around so much.
11200e90712SDavid Howells  */
11300e90712SDavid Howells struct rxrpc_backlog {
11400e90712SDavid Howells 	unsigned short		peer_backlog_head;
11500e90712SDavid Howells 	unsigned short		peer_backlog_tail;
11600e90712SDavid Howells 	unsigned short		conn_backlog_head;
11700e90712SDavid Howells 	unsigned short		conn_backlog_tail;
11800e90712SDavid Howells 	unsigned short		call_backlog_head;
11900e90712SDavid Howells 	unsigned short		call_backlog_tail;
12000e90712SDavid Howells #define RXRPC_BACKLOG_MAX	32
12100e90712SDavid Howells 	struct rxrpc_peer	*peer_backlog[RXRPC_BACKLOG_MAX];
12200e90712SDavid Howells 	struct rxrpc_connection	*conn_backlog[RXRPC_BACKLOG_MAX];
12300e90712SDavid Howells 	struct rxrpc_call	*call_backlog[RXRPC_BACKLOG_MAX];
12400e90712SDavid Howells };
12500e90712SDavid Howells 
12600e90712SDavid Howells /*
12717926a79SDavid Howells  * RxRPC socket definition
12817926a79SDavid Howells  */
12917926a79SDavid Howells struct rxrpc_sock {
13017926a79SDavid Howells 	/* WARNING: sk has to be the first member */
13117926a79SDavid Howells 	struct sock		sk;
132d001648eSDavid Howells 	rxrpc_notify_new_call_t	notify_new_call; /* Func to notify of new call */
13300e90712SDavid Howells 	rxrpc_discard_new_call_t discard_new_call; /* Func to discard a new call */
13417926a79SDavid Howells 	struct rxrpc_local	*local;		/* local endpoint */
13500e90712SDavid Howells 	struct rxrpc_backlog	*backlog;	/* Preallocation for services */
136248f219cSDavid Howells 	spinlock_t		incoming_lock;	/* Incoming call vs service shutdown lock */
137248f219cSDavid Howells 	struct list_head	sock_calls;	/* List of calls owned by this socket */
138248f219cSDavid Howells 	struct list_head	to_be_accepted;	/* calls awaiting acceptance */
139248f219cSDavid Howells 	struct list_head	recvmsg_q;	/* Calls awaiting recvmsg's attention  */
140248f219cSDavid Howells 	rwlock_t		recvmsg_lock;	/* Lock for recvmsg_q */
14117926a79SDavid Howells 	struct key		*key;		/* security for this socket */
14217926a79SDavid Howells 	struct key		*securities;	/* list of server security descriptors */
14300e90712SDavid Howells 	struct rb_root		calls;		/* User ID -> call mapping */
14417926a79SDavid Howells 	unsigned long		flags;
1452341e077SDavid Howells #define RXRPC_SOCK_CONNECTED		0	/* connect_srx is set */
14617926a79SDavid Howells 	rwlock_t		call_lock;	/* lock for calls */
14717926a79SDavid Howells 	u32			min_sec_level;	/* minimum security level */
14817926a79SDavid Howells #define RXRPC_SECURITY_MAX	RXRPC_SECURITY_ENCRYPT
149cc8feb8eSDavid Howells 	bool			exclusive;	/* Exclusive connection for a client socket */
15028036f44SDavid Howells 	u16			second_service;	/* Additional service bound to the endpoint */
1514722974dSDavid Howells 	struct {
1524722974dSDavid Howells 		/* Service upgrade information */
1534722974dSDavid Howells 		u16		from;		/* Service ID to upgrade (if not 0) */
1544722974dSDavid Howells 		u16		to;		/* service ID to upgrade to */
1554722974dSDavid Howells 	} service_upgrade;
156cc8feb8eSDavid Howells 	sa_family_t		family;		/* Protocol family created with */
1574722974dSDavid Howells 	struct sockaddr_rxrpc	srx;		/* Primary Service/local addresses */
1582341e077SDavid Howells 	struct sockaddr_rxrpc	connect_srx;	/* Default client address from connect() */
15917926a79SDavid Howells };
16017926a79SDavid Howells 
16117926a79SDavid Howells #define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk)
16217926a79SDavid Howells 
16317926a79SDavid Howells /*
1640d12f8a4SDavid Howells  * CPU-byteorder normalised Rx packet header.
1650d12f8a4SDavid Howells  */
1660d12f8a4SDavid Howells struct rxrpc_host_header {
1670d12f8a4SDavid Howells 	u32		epoch;		/* client boot timestamp */
1680d12f8a4SDavid Howells 	u32		cid;		/* connection and channel ID */
1690d12f8a4SDavid Howells 	u32		callNumber;	/* call ID (0 for connection-level packets) */
1700d12f8a4SDavid Howells 	u32		seq;		/* sequence number of pkt in call stream */
1710d12f8a4SDavid Howells 	u32		serial;		/* serial number of pkt sent to network */
1720d12f8a4SDavid Howells 	u8		type;		/* packet type */
1730d12f8a4SDavid Howells 	u8		flags;		/* packet flags */
1740d12f8a4SDavid Howells 	u8		userStatus;	/* app-layer defined status */
1750d12f8a4SDavid Howells 	u8		securityIndex;	/* security protocol ID */
1760d12f8a4SDavid Howells 	union {
1770d12f8a4SDavid Howells 		u16	_rsvd;		/* reserved */
1780d12f8a4SDavid Howells 		u16	cksum;		/* kerberos security checksum */
1790d12f8a4SDavid Howells 	};
1800d12f8a4SDavid Howells 	u16		serviceId;	/* service ID */
1810d12f8a4SDavid Howells } __packed;
1820d12f8a4SDavid Howells 
1830d12f8a4SDavid Howells /*
18417926a79SDavid Howells  * RxRPC socket buffer private variables
18517926a79SDavid Howells  * - max 48 bytes (struct sk_buff::cb)
18617926a79SDavid Howells  */
18717926a79SDavid Howells struct rxrpc_skb_priv {
188248f219cSDavid Howells 	union {
189248f219cSDavid Howells 		u8		nr_jumbo;	/* Number of jumbo subpackets */
190248f219cSDavid Howells 	};
19117926a79SDavid Howells 	union {
19217926a79SDavid Howells 		int		remain;		/* amount of space remaining for next write */
19317926a79SDavid Howells 	};
19417926a79SDavid Howells 
1950d12f8a4SDavid Howells 	struct rxrpc_host_header hdr;		/* RxRPC packet header from this packet */
19617926a79SDavid Howells };
19717926a79SDavid Howells 
19817926a79SDavid Howells #define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb)
19917926a79SDavid Howells 
20017926a79SDavid Howells /*
20117926a79SDavid Howells  * RxRPC security module interface
20217926a79SDavid Howells  */
20317926a79SDavid Howells struct rxrpc_security {
20417926a79SDavid Howells 	const char		*name;		/* name of this service */
20517926a79SDavid Howells 	u8			security_index;	/* security type provided */
20617926a79SDavid Howells 
207648af7fcSDavid Howells 	/* Initialise a security service */
208648af7fcSDavid Howells 	int (*init)(void);
209648af7fcSDavid Howells 
210648af7fcSDavid Howells 	/* Clean up a security service */
211648af7fcSDavid Howells 	void (*exit)(void);
212648af7fcSDavid Howells 
21317926a79SDavid Howells 	/* initialise a connection's security */
21417926a79SDavid Howells 	int (*init_connection_security)(struct rxrpc_connection *);
21517926a79SDavid Howells 
21617926a79SDavid Howells 	/* prime a connection's packet security */
217a263629dSHerbert Xu 	int (*prime_packet_security)(struct rxrpc_connection *);
21817926a79SDavid Howells 
21917926a79SDavid Howells 	/* impose security on a packet */
220a263629dSHerbert Xu 	int (*secure_packet)(struct rxrpc_call *,
22117926a79SDavid Howells 			     struct sk_buff *,
22217926a79SDavid Howells 			     size_t,
22317926a79SDavid Howells 			     void *);
22417926a79SDavid Howells 
22517926a79SDavid Howells 	/* verify the security on a received packet */
2265a42976dSDavid Howells 	int (*verify_packet)(struct rxrpc_call *, struct sk_buff *,
227248f219cSDavid Howells 			     unsigned int, unsigned int, rxrpc_seq_t, u16);
228248f219cSDavid Howells 
229248f219cSDavid Howells 	/* Locate the data in a received packet that has been verified. */
230248f219cSDavid Howells 	void (*locate_data)(struct rxrpc_call *, struct sk_buff *,
231248f219cSDavid Howells 			    unsigned int *, unsigned int *);
23217926a79SDavid Howells 
23317926a79SDavid Howells 	/* issue a challenge */
23417926a79SDavid Howells 	int (*issue_challenge)(struct rxrpc_connection *);
23517926a79SDavid Howells 
23617926a79SDavid Howells 	/* respond to a challenge */
23717926a79SDavid Howells 	int (*respond_to_challenge)(struct rxrpc_connection *,
23817926a79SDavid Howells 				    struct sk_buff *,
23917926a79SDavid Howells 				    u32 *);
24017926a79SDavid Howells 
24117926a79SDavid Howells 	/* verify a response */
24217926a79SDavid Howells 	int (*verify_response)(struct rxrpc_connection *,
24317926a79SDavid Howells 			       struct sk_buff *,
24417926a79SDavid Howells 			       u32 *);
24517926a79SDavid Howells 
24617926a79SDavid Howells 	/* clear connection security */
24717926a79SDavid Howells 	void (*clear)(struct rxrpc_connection *);
24817926a79SDavid Howells };
24917926a79SDavid Howells 
25017926a79SDavid Howells /*
2514f95dd78SDavid Howells  * RxRPC local transport endpoint description
2524f95dd78SDavid Howells  * - owned by a single AF_RXRPC socket
2534f95dd78SDavid Howells  * - pointed to by transport socket struct sk_user_data
25417926a79SDavid Howells  */
25517926a79SDavid Howells struct rxrpc_local {
2564f95dd78SDavid Howells 	struct rcu_head		rcu;
257730c5fd4SDavid Howells 	atomic_t		active_users;	/* Number of users of the local endpoint */
258730c5fd4SDavid Howells 	atomic_t		usage;		/* Number of references to the structure */
2592baec2c3SDavid Howells 	struct rxrpc_net	*rxnet;		/* The network ns in which this resides */
2604f95dd78SDavid Howells 	struct list_head	link;
26117926a79SDavid Howells 	struct socket		*socket;	/* my UDP socket */
2624f95dd78SDavid Howells 	struct work_struct	processor;
2631e9e5c95SDavid Howells 	struct rxrpc_sock __rcu	*service;	/* Service(s) listening on this endpoint */
26417926a79SDavid Howells 	struct rw_semaphore	defrag_sem;	/* control re-enablement of IP DF bit */
26517926a79SDavid Howells 	struct sk_buff_head	reject_queue;	/* packets awaiting rejection */
26644ba0698SDavid Howells 	struct sk_buff_head	event_queue;	/* endpoint event packets awaiting processing */
267999b69f8SDavid Howells 	struct rb_root		client_conns;	/* Client connections by socket params */
268999b69f8SDavid Howells 	spinlock_t		client_conns_lock; /* Lock for client_conns */
26917926a79SDavid Howells 	spinlock_t		lock;		/* access lock */
27017926a79SDavid Howells 	rwlock_t		services_lock;	/* lock for services list */
27117926a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
2724f95dd78SDavid Howells 	bool			dead;
273f859ab61SDavid Howells 	bool			service_closed;	/* Service socket closed */
27417926a79SDavid Howells 	struct sockaddr_rxrpc	srx;		/* local address */
27517926a79SDavid Howells };
27617926a79SDavid Howells 
27717926a79SDavid Howells /*
27817926a79SDavid Howells  * RxRPC remote transport endpoint definition
279be6e6707SDavid Howells  * - matched by local endpoint, remote port, address and protocol type
28017926a79SDavid Howells  */
28117926a79SDavid Howells struct rxrpc_peer {
282be6e6707SDavid Howells 	struct rcu_head		rcu;		/* This must be first */
283be6e6707SDavid Howells 	atomic_t		usage;
284be6e6707SDavid Howells 	unsigned long		hash_key;
285be6e6707SDavid Howells 	struct hlist_node	hash_link;
286be6e6707SDavid Howells 	struct rxrpc_local	*local;
287f66d7490SDavid Howells 	struct hlist_head	error_targets;	/* targets for net error distribution */
288aa390bbeSDavid Howells 	struct rb_root		service_conns;	/* Service connections */
289330bdcfaSDavid Howells 	struct list_head	keepalive_link;	/* Link in net->peer_keepalive[] */
290ace45becSDavid Howells 	time64_t		last_tx_at;	/* Last time packet sent here */
2918496af50SDavid Howells 	seqlock_t		service_conn_lock;
29217926a79SDavid Howells 	spinlock_t		lock;		/* access lock */
29395c96174SEric Dumazet 	unsigned int		if_mtu;		/* interface MTU for this peer */
29495c96174SEric Dumazet 	unsigned int		mtu;		/* network MTU for this peer */
29595c96174SEric Dumazet 	unsigned int		maxdata;	/* data size (MTU - hdrsize) */
29617926a79SDavid Howells 	unsigned short		hdrsize;	/* header size (IP + UDP + RxRPC) */
29717926a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
29817926a79SDavid Howells 	struct sockaddr_rxrpc	srx;		/* remote address */
29917926a79SDavid Howells 
30017926a79SDavid Howells 	/* calculated RTT cache */
30117926a79SDavid Howells #define RXRPC_RTT_CACHE_SIZE 32
302c1e15b49SDavid Howells 	spinlock_t		rtt_input_lock;	/* RTT lock for input routine */
3030d4b103cSDavid Howells 	ktime_t			rtt_last_req;	/* Time of last RTT request */
304cf1a6474SDavid Howells 	u64			rtt;		/* Current RTT estimate (in nS) */
305cf1a6474SDavid Howells 	u64			rtt_sum;	/* Sum of cache contents */
306cf1a6474SDavid Howells 	u64			rtt_cache[RXRPC_RTT_CACHE_SIZE]; /* Determined RTT cache */
307cf1a6474SDavid Howells 	u8			rtt_cursor;	/* next entry at which to insert */
308cf1a6474SDavid Howells 	u8			rtt_usage;	/* amount of cache actually used */
309f7aec129SDavid Howells 
310f7aec129SDavid Howells 	u8			cong_cwnd;	/* Congestion window size */
31117926a79SDavid Howells };
31217926a79SDavid Howells 
31317926a79SDavid Howells /*
31419ffa01cSDavid Howells  * Keys for matching a connection.
31519ffa01cSDavid Howells  */
31619ffa01cSDavid Howells struct rxrpc_conn_proto {
317e8d70ce1SDavid Howells 	union {
318e8d70ce1SDavid Howells 		struct {
31919ffa01cSDavid Howells 			u32	epoch;		/* epoch of this connection */
32019ffa01cSDavid Howells 			u32	cid;		/* connection ID */
321e8d70ce1SDavid Howells 		};
322e8d70ce1SDavid Howells 		u64		index_key;
32319ffa01cSDavid Howells 	};
32419ffa01cSDavid Howells };
32519ffa01cSDavid Howells 
32619ffa01cSDavid Howells struct rxrpc_conn_parameters {
32719ffa01cSDavid Howells 	struct rxrpc_local	*local;		/* Representation of local endpoint */
32819ffa01cSDavid Howells 	struct rxrpc_peer	*peer;		/* Remote endpoint */
32919ffa01cSDavid Howells 	struct key		*key;		/* Security details */
33019ffa01cSDavid Howells 	bool			exclusive;	/* T if conn is exclusive */
3314e255721SDavid Howells 	bool			upgrade;	/* T if service ID can be upgraded */
33219ffa01cSDavid Howells 	u16			service_id;	/* Service ID for this connection */
33319ffa01cSDavid Howells 	u32			security_level;	/* Security level selected */
33419ffa01cSDavid Howells };
33519ffa01cSDavid Howells 
33619ffa01cSDavid Howells /*
337bba304dbSDavid Howells  * Bits in the connection flags.
338bba304dbSDavid Howells  */
339bba304dbSDavid Howells enum rxrpc_conn_flag {
340bba304dbSDavid Howells 	RXRPC_CONN_HAS_IDR,		/* Has a client conn ID assigned */
341001c1122SDavid Howells 	RXRPC_CONN_IN_SERVICE_CONNS,	/* Conn is in peer->service_conns */
342001c1122SDavid Howells 	RXRPC_CONN_IN_CLIENT_CONNS,	/* Conn is in local->client_conns */
34345025bceSDavid Howells 	RXRPC_CONN_EXPOSED,		/* Conn has extra ref for exposure */
34445025bceSDavid Howells 	RXRPC_CONN_DONT_REUSE,		/* Don't reuse this connection */
34545025bceSDavid Howells 	RXRPC_CONN_COUNTED,		/* Counted by rxrpc_nr_client_conns */
3464e255721SDavid Howells 	RXRPC_CONN_PROBING_FOR_UPGRADE,	/* Probing for service upgrade */
3473136ef49SDavid Howells 	RXRPC_CONN_FINAL_ACK_0,		/* Need final ACK for channel 0 */
3483136ef49SDavid Howells 	RXRPC_CONN_FINAL_ACK_1,		/* Need final ACK for channel 1 */
3493136ef49SDavid Howells 	RXRPC_CONN_FINAL_ACK_2,		/* Need final ACK for channel 2 */
3503136ef49SDavid Howells 	RXRPC_CONN_FINAL_ACK_3,		/* Need final ACK for channel 3 */
351bba304dbSDavid Howells };
352bba304dbSDavid Howells 
3533136ef49SDavid Howells #define RXRPC_CONN_FINAL_ACK_MASK ((1UL << RXRPC_CONN_FINAL_ACK_0) |	\
3543136ef49SDavid Howells 				   (1UL << RXRPC_CONN_FINAL_ACK_1) |	\
3553136ef49SDavid Howells 				   (1UL << RXRPC_CONN_FINAL_ACK_2) |	\
3563136ef49SDavid Howells 				   (1UL << RXRPC_CONN_FINAL_ACK_3))
3573136ef49SDavid Howells 
358bba304dbSDavid Howells /*
359bba304dbSDavid Howells  * Events that can be raised upon a connection.
360bba304dbSDavid Howells  */
361bba304dbSDavid Howells enum rxrpc_conn_event {
362bba304dbSDavid Howells 	RXRPC_CONN_EV_CHALLENGE,	/* Send challenge packet */
363bba304dbSDavid Howells };
364bba304dbSDavid Howells 
365bba304dbSDavid Howells /*
36645025bceSDavid Howells  * The connection cache state.
36745025bceSDavid Howells  */
36845025bceSDavid Howells enum rxrpc_conn_cache_state {
36945025bceSDavid Howells 	RXRPC_CONN_CLIENT_INACTIVE,	/* Conn is not yet listed */
37045025bceSDavid Howells 	RXRPC_CONN_CLIENT_WAITING,	/* Conn is on wait list, waiting for capacity */
37145025bceSDavid Howells 	RXRPC_CONN_CLIENT_ACTIVE,	/* Conn is on active list, doing calls */
3724e255721SDavid Howells 	RXRPC_CONN_CLIENT_UPGRADE,	/* Conn is on active list, probing for upgrade */
37345025bceSDavid Howells 	RXRPC_CONN_CLIENT_CULLED,	/* Conn is culled and delisted, doing calls */
37445025bceSDavid Howells 	RXRPC_CONN_CLIENT_IDLE,		/* Conn is on idle list, doing mostly nothing */
375363deeabSDavid Howells 	RXRPC_CONN__NR_CACHE_STATES
37645025bceSDavid Howells };
37745025bceSDavid Howells 
37845025bceSDavid Howells /*
379bba304dbSDavid Howells  * The connection protocol state.
380bba304dbSDavid Howells  */
381bba304dbSDavid Howells enum rxrpc_conn_proto_state {
382bba304dbSDavid Howells 	RXRPC_CONN_UNUSED,		/* Connection not yet attempted */
383bba304dbSDavid Howells 	RXRPC_CONN_CLIENT,		/* Client connection */
38400e90712SDavid Howells 	RXRPC_CONN_SERVICE_PREALLOC,	/* Service connection preallocation */
385bba304dbSDavid Howells 	RXRPC_CONN_SERVICE_UNSECURED,	/* Service unsecured connection */
386bba304dbSDavid Howells 	RXRPC_CONN_SERVICE_CHALLENGING,	/* Service challenging for security */
387bba304dbSDavid Howells 	RXRPC_CONN_SERVICE,		/* Service secured connection */
388bba304dbSDavid Howells 	RXRPC_CONN_REMOTELY_ABORTED,	/* Conn aborted by peer */
389bba304dbSDavid Howells 	RXRPC_CONN_LOCALLY_ABORTED,	/* Conn aborted locally */
390bba304dbSDavid Howells 	RXRPC_CONN__NR_STATES
391bba304dbSDavid Howells };
392bba304dbSDavid Howells 
393bba304dbSDavid Howells /*
39417926a79SDavid Howells  * RxRPC connection definition
395aa390bbeSDavid Howells  * - matched by { local, peer, epoch, conn_id, direction }
39617926a79SDavid Howells  * - each connection can only handle four simultaneous calls
39717926a79SDavid Howells  */
39817926a79SDavid Howells struct rxrpc_connection {
39919ffa01cSDavid Howells 	struct rxrpc_conn_proto	proto;
40019ffa01cSDavid Howells 	struct rxrpc_conn_parameters params;
40119ffa01cSDavid Howells 
40245025bceSDavid Howells 	atomic_t		usage;
40345025bceSDavid Howells 	struct rcu_head		rcu;
40445025bceSDavid Howells 	struct list_head	cache_link;
405a1399f8bSDavid Howells 
40645025bceSDavid Howells 	spinlock_t		channel_lock;
40745025bceSDavid Howells 	unsigned char		active_chans;	/* Mask of active channels */
40845025bceSDavid Howells #define RXRPC_ACTIVE_CHANS_MASK	((1 << RXRPC_MAXCALLS) - 1)
40945025bceSDavid Howells 	struct list_head	waiting_calls;	/* Calls waiting for channels */
410a1399f8bSDavid Howells 	struct rxrpc_channel {
4113136ef49SDavid Howells 		unsigned long		final_ack_at;	/* Time at which to issue final ACK */
412a1399f8bSDavid Howells 		struct rxrpc_call __rcu	*call;		/* Active call */
4134764c0daSDavid Howells 		unsigned int		call_debug_id;	/* call->debug_id */
414a1399f8bSDavid Howells 		u32			call_id;	/* ID of current call */
415a1399f8bSDavid Howells 		u32			call_counter;	/* Call ID counter */
416a1399f8bSDavid Howells 		u32			last_call;	/* ID of last call */
41718bfeba5SDavid Howells 		u8			last_type;	/* Type of last packet */
41818bfeba5SDavid Howells 		union {
41918bfeba5SDavid Howells 			u32		last_seq;
42018bfeba5SDavid Howells 			u32		last_abort;
42118bfeba5SDavid Howells 		};
422a1399f8bSDavid Howells 	} channels[RXRPC_MAXCALLS];
423999b69f8SDavid Howells 
4243136ef49SDavid Howells 	struct timer_list	timer;		/* Conn event timer */
42517926a79SDavid Howells 	struct work_struct	processor;	/* connection event processor */
426999b69f8SDavid Howells 	union {
427999b69f8SDavid Howells 		struct rb_node	client_node;	/* Node in local->client_conns */
428aa390bbeSDavid Howells 		struct rb_node	service_node;	/* Node in peer->service_conns */
429999b69f8SDavid Howells 	};
4304d028b2cSDavid Howells 	struct list_head	proc_link;	/* link in procfs list */
43117926a79SDavid Howells 	struct list_head	link;		/* link in master connection list */
43217926a79SDavid Howells 	struct sk_buff_head	rx_queue;	/* received conn-level packets */
433648af7fcSDavid Howells 	const struct rxrpc_security *security;	/* applied security module */
43417926a79SDavid Howells 	struct key		*server_key;	/* security for this service */
43569d826faSKees Cook 	struct crypto_sync_skcipher *cipher;	/* encryption handle */
43617926a79SDavid Howells 	struct rxrpc_crypt	csum_iv;	/* packet checksum base */
4374a3388c8SDavid Howells 	unsigned long		flags;
43817926a79SDavid Howells 	unsigned long		events;
439f51b4480SDavid Howells 	unsigned long		idle_timestamp;	/* Time at which last became idle */
44017926a79SDavid Howells 	spinlock_t		state_lock;	/* state-change lock */
441cf13258fSDavid Howells 	enum rxrpc_conn_cache_state cache_state;
442cf13258fSDavid Howells 	enum rxrpc_conn_proto_state state;	/* current state of connection */
44364753092SDavid Howells 	u32			abort_code;	/* Abort code of connection abort */
44417926a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
44517926a79SDavid Howells 	atomic_t		serial;		/* packet serial number counter */
446563ea7d5SDavid Howells 	unsigned int		hi_serial;	/* highest serial number received */
44717926a79SDavid Howells 	u32			security_nonce;	/* response re-use preventer */
448c1e15b49SDavid Howells 	u32			service_id;	/* Service ID, possibly upgraded */
4495a924b89SDavid Howells 	u8			size_align;	/* data size alignment (for security) */
4505a924b89SDavid Howells 	u8			security_size;	/* security header size */
45117926a79SDavid Howells 	u8			security_ix;	/* security type */
45217926a79SDavid Howells 	u8			out_clientflag;	/* RXRPC_CLIENT_INITIATED if we are client */
45364753092SDavid Howells 	short			error;		/* Local error code */
45417926a79SDavid Howells };
45517926a79SDavid Howells 
456dc71db34SDavid Howells static inline bool rxrpc_to_server(const struct rxrpc_skb_priv *sp)
457dc71db34SDavid Howells {
458dc71db34SDavid Howells 	return sp->hdr.flags & RXRPC_CLIENT_INITIATED;
459dc71db34SDavid Howells }
460dc71db34SDavid Howells 
461dc71db34SDavid Howells static inline bool rxrpc_to_client(const struct rxrpc_skb_priv *sp)
462dc71db34SDavid Howells {
463dc71db34SDavid Howells 	return !rxrpc_to_server(sp);
464dc71db34SDavid Howells }
465dc71db34SDavid Howells 
46617926a79SDavid Howells /*
4675b8848d1SDavid Howells  * Flags in call->flags.
4685b8848d1SDavid Howells  */
4695b8848d1SDavid Howells enum rxrpc_call_flag {
4705b8848d1SDavid Howells 	RXRPC_CALL_RELEASED,		/* call has been released - no more message to userspace */
4715b8848d1SDavid Howells 	RXRPC_CALL_HAS_USERID,		/* has a user ID attached */
472dabe5a79SDavid Howells 	RXRPC_CALL_IS_SERVICE,		/* Call is service call */
47345025bceSDavid Howells 	RXRPC_CALL_EXPOSED,		/* The call was exposed to the world */
474248f219cSDavid Howells 	RXRPC_CALL_RX_LAST,		/* Received the last packet (at rxtx_top) */
475248f219cSDavid Howells 	RXRPC_CALL_TX_LAST,		/* Last packet in Tx buffer (at rxtx_top) */
476a5af7e1fSDavid Howells 	RXRPC_CALL_SEND_PING,		/* A ping will need to be sent */
4778e83134dSDavid Howells 	RXRPC_CALL_PINGING,		/* Ping in process */
47857494343SDavid Howells 	RXRPC_CALL_RETRANS_TIMEOUT,	/* Retransmission due to timeout occurred */
479c54e43d7SDavid Howells 	RXRPC_CALL_BEGAN_RX_TIMER,	/* We began the expect_rx_by timer */
4801a025028SDavid Howells 	RXRPC_CALL_RX_HEARD,		/* The peer responded at least once to this call */
481d0b35a42SDavid Howells 	RXRPC_CALL_RX_UNDERRUN,		/* Got data underrun */
482b960a34bSDavid Howells 	RXRPC_CALL_IS_INTR,		/* The call is interruptible */
4835b8848d1SDavid Howells };
4845b8848d1SDavid Howells 
4855b8848d1SDavid Howells /*
4865b8848d1SDavid Howells  * Events that can be raised on a call.
4875b8848d1SDavid Howells  */
4885b8848d1SDavid Howells enum rxrpc_call_event {
4894c198ad1SDavid Howells 	RXRPC_CALL_EV_ACK,		/* need to generate ACK */
4904c198ad1SDavid Howells 	RXRPC_CALL_EV_ABORT,		/* need to generate abort */
4914c198ad1SDavid Howells 	RXRPC_CALL_EV_RESEND,		/* Tx resend required */
492a5af7e1fSDavid Howells 	RXRPC_CALL_EV_PING,		/* Ping send required */
493a158bdd3SDavid Howells 	RXRPC_CALL_EV_EXPIRED,		/* Expiry occurred */
494bd1fdf8cSDavid Howells 	RXRPC_CALL_EV_ACK_LOST,		/* ACK may be lost, send ping */
4955b8848d1SDavid Howells };
4965b8848d1SDavid Howells 
4975b8848d1SDavid Howells /*
4985b8848d1SDavid Howells  * The states that a call can be in.
4995b8848d1SDavid Howells  */
5005b8848d1SDavid Howells enum rxrpc_call_state {
501999b69f8SDavid Howells 	RXRPC_CALL_UNINITIALISED,
502999b69f8SDavid Howells 	RXRPC_CALL_CLIENT_AWAIT_CONN,	/* - client waiting for connection to become available */
5035b8848d1SDavid Howells 	RXRPC_CALL_CLIENT_SEND_REQUEST,	/* - client sending request phase */
5045b8848d1SDavid Howells 	RXRPC_CALL_CLIENT_AWAIT_REPLY,	/* - client awaiting reply */
5055b8848d1SDavid Howells 	RXRPC_CALL_CLIENT_RECV_REPLY,	/* - client receiving reply phase */
50600e90712SDavid Howells 	RXRPC_CALL_SERVER_PREALLOC,	/* - service preallocation */
5075b8848d1SDavid Howells 	RXRPC_CALL_SERVER_SECURING,	/* - server securing request connection */
5085b8848d1SDavid Howells 	RXRPC_CALL_SERVER_ACCEPTING,	/* - server accepting request */
5095b8848d1SDavid Howells 	RXRPC_CALL_SERVER_RECV_REQUEST,	/* - server receiving request */
5105b8848d1SDavid Howells 	RXRPC_CALL_SERVER_ACK_REQUEST,	/* - server pending ACK of request */
5115b8848d1SDavid Howells 	RXRPC_CALL_SERVER_SEND_REPLY,	/* - server sending reply */
5125b8848d1SDavid Howells 	RXRPC_CALL_SERVER_AWAIT_ACK,	/* - server awaiting final ACK */
513f5c17aaeSDavid Howells 	RXRPC_CALL_COMPLETE,		/* - call complete */
514f5c17aaeSDavid Howells 	NR__RXRPC_CALL_STATES
515f5c17aaeSDavid Howells };
516f5c17aaeSDavid Howells 
517f5c17aaeSDavid Howells /*
518e122d845SDavid Howells  * Call completion condition (state == RXRPC_CALL_COMPLETE).
519e122d845SDavid Howells  */
520e122d845SDavid Howells enum rxrpc_call_completion {
521e122d845SDavid Howells 	RXRPC_CALL_SUCCEEDED,		/* - Normal termination */
522e122d845SDavid Howells 	RXRPC_CALL_REMOTELY_ABORTED,	/* - call aborted by peer */
523e122d845SDavid Howells 	RXRPC_CALL_LOCALLY_ABORTED,	/* - call aborted locally on error or close */
524e122d845SDavid Howells 	RXRPC_CALL_LOCAL_ERROR,		/* - call failed due to local error */
525e122d845SDavid Howells 	RXRPC_CALL_NETWORK_ERROR,	/* - call terminated by network error */
526e122d845SDavid Howells 	NR__RXRPC_CALL_COMPLETIONS
527e122d845SDavid Howells };
528e122d845SDavid Howells 
529e122d845SDavid Howells /*
53057494343SDavid Howells  * Call Tx congestion management modes.
53157494343SDavid Howells  */
53257494343SDavid Howells enum rxrpc_congest_mode {
53357494343SDavid Howells 	RXRPC_CALL_SLOW_START,
53457494343SDavid Howells 	RXRPC_CALL_CONGEST_AVOIDANCE,
53557494343SDavid Howells 	RXRPC_CALL_PACKET_LOSS,
53657494343SDavid Howells 	RXRPC_CALL_FAST_RETRANSMIT,
53757494343SDavid Howells 	NR__RXRPC_CONGEST_MODES
53857494343SDavid Howells };
53957494343SDavid Howells 
54057494343SDavid Howells /*
54117926a79SDavid Howells  * RxRPC call definition
54217926a79SDavid Howells  * - matched by { connection, call_id }
54317926a79SDavid Howells  */
54417926a79SDavid Howells struct rxrpc_call {
545dee46364SDavid Howells 	struct rcu_head		rcu;
54617926a79SDavid Howells 	struct rxrpc_connection	*conn;		/* connection carrying call */
547df5d8bf7SDavid Howells 	struct rxrpc_peer	*peer;		/* Peer record for remote address */
5488d94aa38SDavid Howells 	struct rxrpc_sock __rcu	*socket;	/* socket responsible */
549d3be4d24SDavid Howells 	struct rxrpc_net	*rxnet;		/* Network namespace to which call belongs */
550540b1c48SDavid Howells 	struct mutex		user_mutex;	/* User access mutex */
551a158bdd3SDavid Howells 	unsigned long		ack_at;		/* When deferred ACK needs to happen */
552bd1fdf8cSDavid Howells 	unsigned long		ack_lost_at;	/* When ACK is figured as lost */
553a158bdd3SDavid Howells 	unsigned long		resend_at;	/* When next resend needs to happen */
554a158bdd3SDavid Howells 	unsigned long		ping_at;	/* When next to send a ping */
555415f44e4SDavid Howells 	unsigned long		keepalive_at;	/* When next to send a keepalive ping */
556a158bdd3SDavid Howells 	unsigned long		expect_rx_by;	/* When we expect to get a packet by */
557a158bdd3SDavid Howells 	unsigned long		expect_req_by;	/* When we expect to get a request DATA packet by */
558a158bdd3SDavid Howells 	unsigned long		expect_term_by;	/* When we expect call termination by */
559a158bdd3SDavid Howells 	u32			next_rx_timo;	/* Timeout for next Rx packet (jif) */
560a158bdd3SDavid Howells 	u32			next_req_timo;	/* Timeout for next Rx request packet (jif) */
561248f219cSDavid Howells 	struct timer_list	timer;		/* Combined event timer */
562248f219cSDavid Howells 	struct work_struct	processor;	/* Event processor */
563d001648eSDavid Howells 	rxrpc_notify_rx_t	notify_rx;	/* kernel service Rx notification function */
56417926a79SDavid Howells 	struct list_head	link;		/* link in master call list */
56545025bceSDavid Howells 	struct list_head	chan_wait_link;	/* Link in conn->waiting_calls */
566f66d7490SDavid Howells 	struct hlist_node	error_link;	/* link in error distribution list */
567248f219cSDavid Howells 	struct list_head	accept_link;	/* Link in rx->acceptq */
568248f219cSDavid Howells 	struct list_head	recvmsg_link;	/* Link in rx->recvmsg_q */
569248f219cSDavid Howells 	struct list_head	sock_link;	/* Link in rx->sock_calls */
570248f219cSDavid Howells 	struct rb_node		sock_node;	/* Node in rx->calls */
57117926a79SDavid Howells 	struct sk_buff		*tx_pending;	/* Tx socket buffer being filled */
57245025bceSDavid Howells 	wait_queue_head_t	waitq;		/* Wait queue for channel or Tx */
573e754eba6SDavid Howells 	s64			tx_total_len;	/* Total length left to be transmitted (or -1) */
574a263629dSHerbert Xu 	__be32			crypto_buf[2];	/* Temporary packet crypto buffer */
57517926a79SDavid Howells 	unsigned long		user_call_ID;	/* user-defined call ID */
57617926a79SDavid Howells 	unsigned long		flags;
57717926a79SDavid Howells 	unsigned long		events;
57817926a79SDavid Howells 	spinlock_t		lock;
57920acbd9aSDavid Howells 	spinlock_t		notify_lock;	/* Kernel notification lock */
58017926a79SDavid Howells 	rwlock_t		state_lock;	/* lock for state transition */
581f5c17aaeSDavid Howells 	u32			abort_code;	/* Local/remote abort code */
582f5c17aaeSDavid Howells 	int			error;		/* Local error incurred */
583cf13258fSDavid Howells 	enum rxrpc_call_state	state;		/* current state of call */
584cf13258fSDavid Howells 	enum rxrpc_call_completion completion;	/* Call completion condition */
58517926a79SDavid Howells 	atomic_t		usage;
586dabe5a79SDavid Howells 	u16			service_id;	/* service ID */
587278ac0cdSDavid Howells 	u8			security_ix;	/* Security type */
588dabe5a79SDavid Howells 	u32			call_id;	/* call ID on connection  */
589dabe5a79SDavid Howells 	u32			cid;		/* connection ID plus channel index */
590dabe5a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
5918e83134dSDavid Howells 	unsigned short		rx_pkt_offset;	/* Current recvmsg packet offset */
5928e83134dSDavid Howells 	unsigned short		rx_pkt_len;	/* Current recvmsg packet len */
59317926a79SDavid Howells 
594248f219cSDavid Howells 	/* Rx/Tx circular buffer, depending on phase.
595248f219cSDavid Howells 	 *
596248f219cSDavid Howells 	 * In the Rx phase, packets are annotated with 0 or the number of the
597248f219cSDavid Howells 	 * segment of a jumbo packet each buffer refers to.  There can be up to
598248f219cSDavid Howells 	 * 47 segments in a maximum-size UDP packet.
599248f219cSDavid Howells 	 *
600248f219cSDavid Howells 	 * In the Tx phase, packets are annotated with which buffers have been
601248f219cSDavid Howells 	 * acked.
60217926a79SDavid Howells 	 */
603248f219cSDavid Howells #define RXRPC_RXTX_BUFF_SIZE	64
604248f219cSDavid Howells #define RXRPC_RXTX_BUFF_MASK	(RXRPC_RXTX_BUFF_SIZE - 1)
6054075295aSDavid Howells #define RXRPC_INIT_RX_WINDOW_SIZE 63
606248f219cSDavid Howells 	struct sk_buff		**rxtx_buffer;
607248f219cSDavid Howells 	u8			*rxtx_annotations;
608248f219cSDavid Howells #define RXRPC_TX_ANNO_ACK	0
609248f219cSDavid Howells #define RXRPC_TX_ANNO_UNACK	1
610248f219cSDavid Howells #define RXRPC_TX_ANNO_NAK	2
611248f219cSDavid Howells #define RXRPC_TX_ANNO_RETRANS	3
612f07373eaSDavid Howells #define RXRPC_TX_ANNO_MASK	0x03
61370790dbeSDavid Howells #define RXRPC_TX_ANNO_LAST	0x04
61470790dbeSDavid Howells #define RXRPC_TX_ANNO_RESENT	0x08
61570790dbeSDavid Howells 
616248f219cSDavid Howells #define RXRPC_RX_ANNO_JUMBO	0x3f		/* Jumbo subpacket number + 1 if not zero */
617248f219cSDavid Howells #define RXRPC_RX_ANNO_JLAST	0x40		/* Set if last element of a jumbo packet */
618248f219cSDavid Howells #define RXRPC_RX_ANNO_VERIFIED	0x80		/* Set if verified and decrypted */
619248f219cSDavid Howells 	rxrpc_seq_t		tx_hard_ack;	/* Dead slot in buffer; the first transmitted but
620248f219cSDavid Howells 						 * not hard-ACK'd packet follows this.
621248f219cSDavid Howells 						 */
622248f219cSDavid Howells 	rxrpc_seq_t		tx_top;		/* Highest Tx slot allocated. */
623c7e86acfSDavid Howells 	u16			tx_backoff;	/* Delay to insert due to Tx failure */
62457494343SDavid Howells 
62557494343SDavid Howells 	/* TCP-style slow-start congestion control [RFC5681].  Since the SMSS
62657494343SDavid Howells 	 * is fixed, we keep these numbers in terms of segments (ie. DATA
62757494343SDavid Howells 	 * packets) rather than bytes.
62857494343SDavid Howells 	 */
62957494343SDavid Howells #define RXRPC_TX_SMSS		RXRPC_JUMBO_DATALEN
63057494343SDavid Howells 	u8			cong_cwnd;	/* Congestion window size */
63157494343SDavid Howells 	u8			cong_extra;	/* Extra to send for congestion management */
63257494343SDavid Howells 	u8			cong_ssthresh;	/* Slow-start threshold */
63357494343SDavid Howells 	enum rxrpc_congest_mode	cong_mode:8;	/* Congestion management mode */
63457494343SDavid Howells 	u8			cong_dup_acks;	/* Count of ACKs showing missing packets */
63557494343SDavid Howells 	u8			cong_cumul_acks; /* Cumulative ACK count */
63657494343SDavid Howells 	ktime_t			cong_tstamp;	/* Last time cwnd was changed */
63757494343SDavid Howells 
638248f219cSDavid Howells 	rxrpc_seq_t		rx_hard_ack;	/* Dead slot in buffer; the first received but not
639248f219cSDavid Howells 						 * consumed packet follows this.
640248f219cSDavid Howells 						 */
641248f219cSDavid Howells 	rxrpc_seq_t		rx_top;		/* Highest Rx slot allocated. */
642248f219cSDavid Howells 	rxrpc_seq_t		rx_expect_next;	/* Expected next packet sequence number */
6431a025028SDavid Howells 	rxrpc_serial_t		rx_serial;	/* Highest serial received for this call */
644248f219cSDavid Howells 	u8			rx_winsize;	/* Size of Rx window */
645248f219cSDavid Howells 	u8			tx_winsize;	/* Maximum size of Tx window */
64671f3ca40SDavid Howells 	bool			tx_phase;	/* T if transmission phase, F if receive phase */
64775e42126SDavid Howells 	u8			nr_jumbo_bad;	/* Number of jumbo dups/exceeds-windows */
64817926a79SDavid Howells 
649c1e15b49SDavid Howells 	spinlock_t		input_lock;	/* Lock for packet input to this call */
650c1e15b49SDavid Howells 
65117926a79SDavid Howells 	/* receive-phase ACK management */
6524e36a95eSDavid Howells 	u8			ackr_reason;	/* reason to ACK */
653563ea7d5SDavid Howells 	u16			ackr_skew;	/* skew on packet being ACK'd */
6540d12f8a4SDavid Howells 	rxrpc_serial_t		ackr_serial;	/* serial of packet being ACK'd */
6551a2391c3SJeffrey Altman 	rxrpc_serial_t		ackr_first_seq;	/* first sequence number received */
656248f219cSDavid Howells 	rxrpc_seq_t		ackr_prev_seq;	/* previous sequence number received */
657805b21b9SDavid Howells 	rxrpc_seq_t		ackr_consumed;	/* Highest packet shown consumed */
658805b21b9SDavid Howells 	rxrpc_seq_t		ackr_seen;	/* Highest packet shown seen */
659a5af7e1fSDavid Howells 
660a5af7e1fSDavid Howells 	/* ping management */
661a5af7e1fSDavid Howells 	rxrpc_serial_t		ping_serial;	/* Last ping sent */
662a5af7e1fSDavid Howells 	ktime_t			ping_time;	/* Time last ping sent */
66317926a79SDavid Howells 
664248f219cSDavid Howells 	/* transmission-phase ACK management */
66557494343SDavid Howells 	ktime_t			acks_latest_ts;	/* Timestamp of latest ACK received */
666248f219cSDavid Howells 	rxrpc_serial_t		acks_latest;	/* serial number of latest ACK received */
66731a1b989SDavid Howells 	rxrpc_seq_t		acks_lowest_nak; /* Lowest NACK in the buffer (or ==tx_hard_ack) */
668bd1fdf8cSDavid Howells 	rxrpc_seq_t		acks_lost_top;	/* tx_top at the time lost-ack ping sent */
669bd1fdf8cSDavid Howells 	rxrpc_serial_t		acks_lost_ping;	/* Serial number of probe ACK */
67031a1b989SDavid Howells };
67131a1b989SDavid Howells 
67231a1b989SDavid Howells /*
67357494343SDavid Howells  * Summary of a new ACK and the changes it made to the Tx buffer packet states.
67431a1b989SDavid Howells  */
67531a1b989SDavid Howells struct rxrpc_ack_summary {
67631a1b989SDavid Howells 	u8			ack_reason;
67731a1b989SDavid Howells 	u8			nr_acks;		/* Number of ACKs in packet */
67831a1b989SDavid Howells 	u8			nr_nacks;		/* Number of NACKs in packet */
67931a1b989SDavid Howells 	u8			nr_new_acks;		/* Number of new ACKs in packet */
68031a1b989SDavid Howells 	u8			nr_new_nacks;		/* Number of new NACKs in packet */
68131a1b989SDavid Howells 	u8			nr_rot_new_acks;	/* Number of rotated new ACKs */
68231a1b989SDavid Howells 	bool			new_low_nack;		/* T if new low NACK found */
68357494343SDavid Howells 	bool			retrans_timeo;		/* T if reTx due to timeout happened */
68457494343SDavid Howells 	u8			flight_size;		/* Number of unreceived transmissions */
68557494343SDavid Howells 	/* Place to stash values for tracing */
68657494343SDavid Howells 	enum rxrpc_congest_mode	mode:8;
68757494343SDavid Howells 	u8			cwnd;
68857494343SDavid Howells 	u8			ssthresh;
68957494343SDavid Howells 	u8			dup_acks;
69057494343SDavid Howells 	u8			cumulative_acks;
69117926a79SDavid Howells };
69217926a79SDavid Howells 
69348124178SDavid Howells /*
69448124178SDavid Howells  * sendmsg() cmsg-specified parameters.
69548124178SDavid Howells  */
69648124178SDavid Howells enum rxrpc_command {
69748124178SDavid Howells 	RXRPC_CMD_SEND_DATA,		/* send data message */
69848124178SDavid Howells 	RXRPC_CMD_SEND_ABORT,		/* request abort generation */
69948124178SDavid Howells 	RXRPC_CMD_ACCEPT,		/* [server] accept incoming call */
70048124178SDavid Howells 	RXRPC_CMD_REJECT_BUSY,		/* [server] reject a call as busy */
70148124178SDavid Howells };
70248124178SDavid Howells 
70348124178SDavid Howells struct rxrpc_call_params {
70448124178SDavid Howells 	s64			tx_total_len;	/* Total Tx data length (if send data) */
70548124178SDavid Howells 	unsigned long		user_call_ID;	/* User's call ID */
70648124178SDavid Howells 	struct {
70748124178SDavid Howells 		u32		hard;		/* Maximum lifetime (sec) */
70848124178SDavid Howells 		u32		idle;		/* Max time since last data packet (msec) */
70948124178SDavid Howells 		u32		normal;		/* Max time since last call packet (msec) */
71048124178SDavid Howells 	} timeouts;
71148124178SDavid Howells 	u8			nr_timeouts;	/* Number of timeouts specified */
712b960a34bSDavid Howells 	bool			intr;		/* The call is interruptible */
71348124178SDavid Howells };
71448124178SDavid Howells 
71548124178SDavid Howells struct rxrpc_send_params {
71648124178SDavid Howells 	struct rxrpc_call_params call;
71748124178SDavid Howells 	u32			abort_code;	/* Abort code to Tx (if abort) */
71848124178SDavid Howells 	enum rxrpc_command	command : 8;	/* The command to implement */
71948124178SDavid Howells 	bool			exclusive;	/* Shared or exclusive call */
72048124178SDavid Howells 	bool			upgrade;	/* If the connection is upgradeable */
72148124178SDavid Howells };
72248124178SDavid Howells 
723df844fd4SDavid Howells #include <trace/events/rxrpc.h>
724df844fd4SDavid Howells 
72517926a79SDavid Howells /*
726651350d1SDavid Howells  * af_rxrpc.c
72717926a79SDavid Howells  */
72871f3ca40SDavid Howells extern atomic_t rxrpc_n_tx_skbs, rxrpc_n_rx_skbs;
729651350d1SDavid Howells extern struct workqueue_struct *rxrpc_workqueue;
73017926a79SDavid Howells 
73117926a79SDavid Howells /*
7320d81a51aSDavid Howells  * call_accept.c
73317926a79SDavid Howells  */
73400e90712SDavid Howells int rxrpc_service_prealloc(struct rxrpc_sock *, gfp_t);
73500e90712SDavid Howells void rxrpc_discard_prealloc(struct rxrpc_sock *);
736248f219cSDavid Howells struct rxrpc_call *rxrpc_new_incoming_call(struct rxrpc_local *,
7370099dc58SDavid Howells 					   struct rxrpc_sock *,
738248f219cSDavid Howells 					   struct sk_buff *);
7394f95dd78SDavid Howells void rxrpc_accept_incoming_calls(struct rxrpc_local *);
740d001648eSDavid Howells struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long,
741d001648eSDavid Howells 				     rxrpc_notify_rx_t);
742c1b1203dSJoe Perches int rxrpc_reject_call(struct rxrpc_sock *);
74317926a79SDavid Howells 
74417926a79SDavid Howells /*
7450d81a51aSDavid Howells  * call_event.c
74617926a79SDavid Howells  */
7479c7ad434SDavid Howells void rxrpc_propose_ACK(struct rxrpc_call *, u8, u16, u32, bool, bool,
7489c7ad434SDavid Howells 		       enum rxrpc_propose_ack_trace);
749c1b1203dSJoe Perches void rxrpc_process_call(struct work_struct *);
75017926a79SDavid Howells 
751a158bdd3SDavid Howells static inline void rxrpc_reduce_call_timer(struct rxrpc_call *call,
752a158bdd3SDavid Howells 					   unsigned long expire_at,
753a158bdd3SDavid Howells 					   unsigned long now,
754a158bdd3SDavid Howells 					   enum rxrpc_timer_trace why)
755a158bdd3SDavid Howells {
756a158bdd3SDavid Howells 	trace_rxrpc_timer(call, why, now);
757a158bdd3SDavid Howells 	timer_reduce(&call->timer, expire_at);
758a158bdd3SDavid Howells }
759a158bdd3SDavid Howells 
76017926a79SDavid Howells /*
7610d81a51aSDavid Howells  * call_object.c
76217926a79SDavid Howells  */
763f5c17aaeSDavid Howells extern const char *const rxrpc_call_states[];
764f5c17aaeSDavid Howells extern const char *const rxrpc_call_completions[];
765dad8aff7SDavid Howells extern unsigned int rxrpc_max_call_lifetime;
76617926a79SDavid Howells extern struct kmem_cache *rxrpc_call_jar;
76717926a79SDavid Howells 
7682341e077SDavid Howells struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
769a25e21f0SDavid Howells struct rxrpc_call *rxrpc_alloc_call(struct rxrpc_sock *, gfp_t, unsigned int);
7702341e077SDavid Howells struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
77119ffa01cSDavid Howells 					 struct rxrpc_conn_parameters *,
772999b69f8SDavid Howells 					 struct sockaddr_rxrpc *,
773a25e21f0SDavid Howells 					 struct rxrpc_call_params *, gfp_t,
774a25e21f0SDavid Howells 					 unsigned int);
775248f219cSDavid Howells void rxrpc_incoming_call(struct rxrpc_sock *, struct rxrpc_call *,
77642886ffeSDavid Howells 			 struct sk_buff *);
7778d94aa38SDavid Howells void rxrpc_release_call(struct rxrpc_sock *, struct rxrpc_call *);
778c1b1203dSJoe Perches void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
7798d94aa38SDavid Howells bool __rxrpc_queue_call(struct rxrpc_call *);
7808d94aa38SDavid Howells bool rxrpc_queue_call(struct rxrpc_call *);
781e34d4234SDavid Howells void rxrpc_see_call(struct rxrpc_call *);
782fff72429SDavid Howells void rxrpc_get_call(struct rxrpc_call *, enum rxrpc_call_trace);
783fff72429SDavid Howells void rxrpc_put_call(struct rxrpc_call *, enum rxrpc_call_trace);
78400e90712SDavid Howells void rxrpc_cleanup_call(struct rxrpc_call *);
7852baec2c3SDavid Howells void rxrpc_destroy_all_calls(struct rxrpc_net *);
78617926a79SDavid Howells 
787dabe5a79SDavid Howells static inline bool rxrpc_is_service_call(const struct rxrpc_call *call)
788dabe5a79SDavid Howells {
789dabe5a79SDavid Howells 	return test_bit(RXRPC_CALL_IS_SERVICE, &call->flags);
790dabe5a79SDavid Howells }
791dabe5a79SDavid Howells 
792dabe5a79SDavid Howells static inline bool rxrpc_is_client_call(const struct rxrpc_call *call)
793dabe5a79SDavid Howells {
794dabe5a79SDavid Howells 	return !rxrpc_is_service_call(call);
795dabe5a79SDavid Howells }
796dabe5a79SDavid Howells 
79717926a79SDavid Howells /*
798f5c17aaeSDavid Howells  * Transition a call to the complete state.
799f5c17aaeSDavid Howells  */
800f5c17aaeSDavid Howells static inline bool __rxrpc_set_call_completion(struct rxrpc_call *call,
801f5c17aaeSDavid Howells 					       enum rxrpc_call_completion compl,
802f5c17aaeSDavid Howells 					       u32 abort_code,
803f5c17aaeSDavid Howells 					       int error)
804f5c17aaeSDavid Howells {
805f5c17aaeSDavid Howells 	if (call->state < RXRPC_CALL_COMPLETE) {
806f5c17aaeSDavid Howells 		call->abort_code = abort_code;
807f5c17aaeSDavid Howells 		call->error = error;
808f5c17aaeSDavid Howells 		call->completion = compl,
809f5c17aaeSDavid Howells 		call->state = RXRPC_CALL_COMPLETE;
8101bae5d22SDavid Howells 		trace_rxrpc_call_complete(call);
811c0d058c2SDavid Howells 		wake_up(&call->waitq);
812f5c17aaeSDavid Howells 		return true;
813f5c17aaeSDavid Howells 	}
814f5c17aaeSDavid Howells 	return false;
815f5c17aaeSDavid Howells }
816f5c17aaeSDavid Howells 
817f5c17aaeSDavid Howells static inline bool rxrpc_set_call_completion(struct rxrpc_call *call,
818f5c17aaeSDavid Howells 					     enum rxrpc_call_completion compl,
819f5c17aaeSDavid Howells 					     u32 abort_code,
820f5c17aaeSDavid Howells 					     int error)
821f5c17aaeSDavid Howells {
822e8d6bbb0SDavid Howells 	bool ret;
823f5c17aaeSDavid Howells 
824f5c17aaeSDavid Howells 	write_lock_bh(&call->state_lock);
825f5c17aaeSDavid Howells 	ret = __rxrpc_set_call_completion(call, compl, abort_code, error);
826f5c17aaeSDavid Howells 	write_unlock_bh(&call->state_lock);
827f5c17aaeSDavid Howells 	return ret;
828f5c17aaeSDavid Howells }
829f5c17aaeSDavid Howells 
830f5c17aaeSDavid Howells /*
831f5c17aaeSDavid Howells  * Record that a call successfully completed.
832f5c17aaeSDavid Howells  */
833e8d6bbb0SDavid Howells static inline bool __rxrpc_call_completed(struct rxrpc_call *call)
834f5c17aaeSDavid Howells {
835e8d6bbb0SDavid Howells 	return __rxrpc_set_call_completion(call, RXRPC_CALL_SUCCEEDED, 0, 0);
836f5c17aaeSDavid Howells }
837f5c17aaeSDavid Howells 
838e8d6bbb0SDavid Howells static inline bool rxrpc_call_completed(struct rxrpc_call *call)
839f5c17aaeSDavid Howells {
840e8d6bbb0SDavid Howells 	bool ret;
841e8d6bbb0SDavid Howells 
842f5c17aaeSDavid Howells 	write_lock_bh(&call->state_lock);
843e8d6bbb0SDavid Howells 	ret = __rxrpc_call_completed(call);
844f5c17aaeSDavid Howells 	write_unlock_bh(&call->state_lock);
845e8d6bbb0SDavid Howells 	return ret;
846f5c17aaeSDavid Howells }
847f5c17aaeSDavid Howells 
848f5c17aaeSDavid Howells /*
849f5c17aaeSDavid Howells  * Record that a call is locally aborted.
850f5c17aaeSDavid Howells  */
8515a42976dSDavid Howells static inline bool __rxrpc_abort_call(const char *why, struct rxrpc_call *call,
8525a42976dSDavid Howells 				      rxrpc_seq_t seq,
853f5c17aaeSDavid Howells 				      u32 abort_code, int error)
854f5c17aaeSDavid Howells {
855a25e21f0SDavid Howells 	trace_rxrpc_abort(call->debug_id, why, call->cid, call->call_id, seq,
8565a42976dSDavid Howells 			  abort_code, error);
857248f219cSDavid Howells 	return __rxrpc_set_call_completion(call, RXRPC_CALL_LOCALLY_ABORTED,
858248f219cSDavid Howells 					   abort_code, error);
859f5c17aaeSDavid Howells }
860f5c17aaeSDavid Howells 
8615a42976dSDavid Howells static inline bool rxrpc_abort_call(const char *why, struct rxrpc_call *call,
8625a42976dSDavid Howells 				    rxrpc_seq_t seq, u32 abort_code, int error)
863f5c17aaeSDavid Howells {
864f5c17aaeSDavid Howells 	bool ret;
865f5c17aaeSDavid Howells 
866f5c17aaeSDavid Howells 	write_lock_bh(&call->state_lock);
8675a42976dSDavid Howells 	ret = __rxrpc_abort_call(why, call, seq, abort_code, error);
868f5c17aaeSDavid Howells 	write_unlock_bh(&call->state_lock);
869f5c17aaeSDavid Howells 	return ret;
870f5c17aaeSDavid Howells }
871f5c17aaeSDavid Howells 
872f5c17aaeSDavid Howells /*
873fb46f6eeSDavid Howells  * Abort a call due to a protocol error.
874fb46f6eeSDavid Howells  */
875fb46f6eeSDavid Howells static inline bool __rxrpc_abort_eproto(struct rxrpc_call *call,
876fb46f6eeSDavid Howells 					struct sk_buff *skb,
877fb46f6eeSDavid Howells 					const char *eproto_why,
878fb46f6eeSDavid Howells 					const char *why,
879fb46f6eeSDavid Howells 					u32 abort_code)
880fb46f6eeSDavid Howells {
881fb46f6eeSDavid Howells 	struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
882fb46f6eeSDavid Howells 
883fb46f6eeSDavid Howells 	trace_rxrpc_rx_eproto(call, sp->hdr.serial, eproto_why);
884fb46f6eeSDavid Howells 	return rxrpc_abort_call(why, call, sp->hdr.seq, abort_code, -EPROTO);
885fb46f6eeSDavid Howells }
886fb46f6eeSDavid Howells 
887fb46f6eeSDavid Howells #define rxrpc_abort_eproto(call, skb, eproto_why, abort_why, abort_code) \
888fb46f6eeSDavid Howells 	__rxrpc_abort_eproto((call), (skb), tracepoint_string(eproto_why), \
889fb46f6eeSDavid Howells 			     (abort_why), (abort_code))
890fb46f6eeSDavid Howells 
891fb46f6eeSDavid Howells /*
8924a3388c8SDavid Howells  * conn_client.c
8934a3388c8SDavid Howells  */
89445025bceSDavid Howells extern unsigned int rxrpc_max_client_connections;
89545025bceSDavid Howells extern unsigned int rxrpc_reap_client_connections;
896a158bdd3SDavid Howells extern unsigned long rxrpc_conn_idle_client_expiry;
897a158bdd3SDavid Howells extern unsigned long rxrpc_conn_idle_client_fast_expiry;
8984a3388c8SDavid Howells extern struct idr rxrpc_client_conn_ids;
8994a3388c8SDavid Howells 
900eb9b9d22SDavid Howells void rxrpc_destroy_client_conn_ids(void);
9015e33a23bSDavid Howells int rxrpc_connect_call(struct rxrpc_sock *, struct rxrpc_call *,
9025e33a23bSDavid Howells 		       struct rxrpc_conn_parameters *, struct sockaddr_rxrpc *,
9035e33a23bSDavid Howells 		       gfp_t);
90445025bceSDavid Howells void rxrpc_expose_client_call(struct rxrpc_call *);
90545025bceSDavid Howells void rxrpc_disconnect_client_call(struct rxrpc_call *);
90645025bceSDavid Howells void rxrpc_put_client_conn(struct rxrpc_connection *);
9072baec2c3SDavid Howells void rxrpc_discard_expired_client_conns(struct work_struct *);
9082baec2c3SDavid Howells void rxrpc_destroy_all_client_connections(struct rxrpc_net *);
9094a3388c8SDavid Howells 
9104a3388c8SDavid Howells /*
9110d81a51aSDavid Howells  * conn_event.c
9120d81a51aSDavid Howells  */
9130d81a51aSDavid Howells void rxrpc_process_connection(struct work_struct *);
9140d81a51aSDavid Howells 
9150d81a51aSDavid Howells /*
9160d81a51aSDavid Howells  * conn_object.c
91717926a79SDavid Howells  */
918dad8aff7SDavid Howells extern unsigned int rxrpc_connection_expiry;
919f859ab61SDavid Howells extern unsigned int rxrpc_closed_conn_expiry;
92017926a79SDavid Howells 
921c6d2b8d7SDavid Howells struct rxrpc_connection *rxrpc_alloc_connection(gfp_t);
9228496af50SDavid Howells struct rxrpc_connection *rxrpc_find_connection_rcu(struct rxrpc_local *,
9230099dc58SDavid Howells 						   struct sk_buff *,
9240099dc58SDavid Howells 						   struct rxrpc_peer **);
92545025bceSDavid Howells void __rxrpc_disconnect_call(struct rxrpc_connection *, struct rxrpc_call *);
926999b69f8SDavid Howells void rxrpc_disconnect_call(struct rxrpc_call *);
92745025bceSDavid Howells void rxrpc_kill_connection(struct rxrpc_connection *);
928363deeabSDavid Howells bool rxrpc_queue_conn(struct rxrpc_connection *);
929363deeabSDavid Howells void rxrpc_see_connection(struct rxrpc_connection *);
930363deeabSDavid Howells void rxrpc_get_connection(struct rxrpc_connection *);
931363deeabSDavid Howells struct rxrpc_connection *rxrpc_get_connection_maybe(struct rxrpc_connection *);
932363deeabSDavid Howells void rxrpc_put_service_conn(struct rxrpc_connection *);
9332baec2c3SDavid Howells void rxrpc_service_connection_reaper(struct work_struct *);
9342baec2c3SDavid Howells void rxrpc_destroy_all_connections(struct rxrpc_net *);
93517926a79SDavid Howells 
93619ffa01cSDavid Howells static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
93719ffa01cSDavid Howells {
93819ffa01cSDavid Howells 	return conn->out_clientflag;
93919ffa01cSDavid Howells }
94019ffa01cSDavid Howells 
94119ffa01cSDavid Howells static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
94219ffa01cSDavid Howells {
943e8d70ce1SDavid Howells 	return !rxrpc_conn_is_client(conn);
94419ffa01cSDavid Howells }
94519ffa01cSDavid Howells 
946f51b4480SDavid Howells static inline void rxrpc_put_connection(struct rxrpc_connection *conn)
947f51b4480SDavid Howells {
94845025bceSDavid Howells 	if (!conn)
94945025bceSDavid Howells 		return;
95045025bceSDavid Howells 
951363deeabSDavid Howells 	if (rxrpc_conn_is_client(conn))
95245025bceSDavid Howells 		rxrpc_put_client_conn(conn);
953363deeabSDavid Howells 	else
954363deeabSDavid Howells 		rxrpc_put_service_conn(conn);
9555acbee46SDavid Howells }
9565acbee46SDavid Howells 
9573136ef49SDavid Howells static inline void rxrpc_reduce_conn_timer(struct rxrpc_connection *conn,
9583136ef49SDavid Howells 					   unsigned long expire_at)
9593136ef49SDavid Howells {
9603136ef49SDavid Howells 	timer_reduce(&conn->timer, expire_at);
9613136ef49SDavid Howells }
9623136ef49SDavid Howells 
96317926a79SDavid Howells /*
9647877a4a4SDavid Howells  * conn_service.c
9657877a4a4SDavid Howells  */
9668496af50SDavid Howells struct rxrpc_connection *rxrpc_find_service_conn_rcu(struct rxrpc_peer *,
9678496af50SDavid Howells 						     struct sk_buff *);
9682baec2c3SDavid Howells struct rxrpc_connection *rxrpc_prealloc_service_connection(struct rxrpc_net *, gfp_t);
9694722974dSDavid Howells void rxrpc_new_incoming_connection(struct rxrpc_sock *,
9704722974dSDavid Howells 				   struct rxrpc_connection *, struct sk_buff *);
971001c1122SDavid Howells void rxrpc_unpublish_service_conn(struct rxrpc_connection *);
9727877a4a4SDavid Howells 
9737877a4a4SDavid Howells /*
9740d81a51aSDavid Howells  * input.c
97517926a79SDavid Howells  */
9765271953cSDavid Howells int rxrpc_input_packet(struct sock *, struct sk_buff *);
97717926a79SDavid Howells 
97817926a79SDavid Howells /*
9790d81a51aSDavid Howells  * insecure.c
98017926a79SDavid Howells  */
9810d81a51aSDavid Howells extern const struct rxrpc_security rxrpc_no_security;
98217926a79SDavid Howells 
98317926a79SDavid Howells /*
9840d81a51aSDavid Howells  * key.c
98517926a79SDavid Howells  */
98617926a79SDavid Howells extern struct key_type key_type_rxrpc;
98717926a79SDavid Howells extern struct key_type key_type_rxrpc_s;
98817926a79SDavid Howells 
989c1b1203dSJoe Perches int rxrpc_request_key(struct rxrpc_sock *, char __user *, int);
990c1b1203dSJoe Perches int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int);
99110674a03SBaolin Wang int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time64_t,
992c1b1203dSJoe Perches 			      u32);
99317926a79SDavid Howells 
99417926a79SDavid Howells /*
99587563616SDavid Howells  * local_event.c
99687563616SDavid Howells  */
9974f95dd78SDavid Howells extern void rxrpc_process_local_events(struct rxrpc_local *);
99887563616SDavid Howells 
99987563616SDavid Howells /*
10000d81a51aSDavid Howells  * local_object.c
100117926a79SDavid Howells  */
10022baec2c3SDavid Howells struct rxrpc_local *rxrpc_lookup_local(struct net *, const struct sockaddr_rxrpc *);
100309d2bf59SDavid Howells struct rxrpc_local *rxrpc_get_local(struct rxrpc_local *);
100409d2bf59SDavid Howells struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *);
100509d2bf59SDavid Howells void rxrpc_put_local(struct rxrpc_local *);
1006730c5fd4SDavid Howells struct rxrpc_local *rxrpc_use_local(struct rxrpc_local *);
1007730c5fd4SDavid Howells void rxrpc_unuse_local(struct rxrpc_local *);
100809d2bf59SDavid Howells void rxrpc_queue_local(struct rxrpc_local *);
10092baec2c3SDavid Howells void rxrpc_destroy_all_locals(struct rxrpc_net *);
1010e0e4d82fSDavid Howells 
1011e0e4d82fSDavid Howells /*
10128e688d9cSDavid Howells  * misc.c
10138e688d9cSDavid Howells  */
10140e119b41SDavid Howells extern unsigned int rxrpc_max_backlog __read_mostly;
1015a158bdd3SDavid Howells extern unsigned long rxrpc_requested_ack_delay;
1016a158bdd3SDavid Howells extern unsigned long rxrpc_soft_ack_delay;
1017a158bdd3SDavid Howells extern unsigned long rxrpc_idle_ack_delay;
10188e688d9cSDavid Howells extern unsigned int rxrpc_rx_window_size;
10198e688d9cSDavid Howells extern unsigned int rxrpc_rx_mtu;
10208e688d9cSDavid Howells extern unsigned int rxrpc_rx_jumbo_max;
1021a158bdd3SDavid Howells extern unsigned long rxrpc_resend_timeout;
10228e688d9cSDavid Howells 
10238e688d9cSDavid Howells extern const s8 rxrpc_ack_priority[];
10248e688d9cSDavid Howells 
10258e688d9cSDavid Howells /*
10262baec2c3SDavid Howells  * net_ns.c
10272baec2c3SDavid Howells  */
10282baec2c3SDavid Howells extern unsigned int rxrpc_net_id;
10292baec2c3SDavid Howells extern struct pernet_operations rxrpc_net_ops;
10302baec2c3SDavid Howells 
10312baec2c3SDavid Howells static inline struct rxrpc_net *rxrpc_net(struct net *net)
10322baec2c3SDavid Howells {
10332baec2c3SDavid Howells 	return net_generic(net, rxrpc_net_id);
10342baec2c3SDavid Howells }
10352baec2c3SDavid Howells 
10362baec2c3SDavid Howells /*
10370d81a51aSDavid Howells  * output.c
10380d81a51aSDavid Howells  */
1039bd1fdf8cSDavid Howells int rxrpc_send_ack_packet(struct rxrpc_call *, bool, rxrpc_serial_t *);
104026cb02aaSDavid Howells int rxrpc_send_abort_packet(struct rxrpc_call *);
1041a1767077SDavid Howells int rxrpc_send_data_packet(struct rxrpc_call *, struct sk_buff *, bool);
1042248f219cSDavid Howells void rxrpc_reject_packets(struct rxrpc_local *);
1043ace45becSDavid Howells void rxrpc_send_keepalive(struct rxrpc_peer *);
10440d81a51aSDavid Howells 
10450d81a51aSDavid Howells /*
1046abe89ef0SDavid Howells  * peer_event.c
10470d81a51aSDavid Howells  */
1048abe89ef0SDavid Howells void rxrpc_error_report(struct sock *);
1049cf1a6474SDavid Howells void rxrpc_peer_add_rtt(struct rxrpc_call *, enum rxrpc_rtt_rx_trace,
1050cf1a6474SDavid Howells 			rxrpc_serial_t, rxrpc_serial_t, ktime_t, ktime_t);
1051ace45becSDavid Howells void rxrpc_peer_keepalive_worker(struct work_struct *);
10520d81a51aSDavid Howells 
10530d81a51aSDavid Howells /*
10540d81a51aSDavid Howells  * peer_object.c
10550d81a51aSDavid Howells  */
1056be6e6707SDavid Howells struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
1057be6e6707SDavid Howells 					 const struct sockaddr_rxrpc *);
10585e33a23bSDavid Howells struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_sock *, struct rxrpc_local *,
1059be6e6707SDavid Howells 				     struct sockaddr_rxrpc *, gfp_t);
1060be6e6707SDavid Howells struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
10615e33a23bSDavid Howells void rxrpc_new_incoming_peer(struct rxrpc_sock *, struct rxrpc_local *,
10625e33a23bSDavid Howells 			     struct rxrpc_peer *);
106317226f12SDavid Howells void rxrpc_destroy_all_peers(struct rxrpc_net *);
10641159d4b4SDavid Howells struct rxrpc_peer *rxrpc_get_peer(struct rxrpc_peer *);
10651159d4b4SDavid Howells struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *);
10661159d4b4SDavid Howells void rxrpc_put_peer(struct rxrpc_peer *);
106760034d3dSDavid Howells void rxrpc_put_peer_locked(struct rxrpc_peer *);
10680d81a51aSDavid Howells 
10690d81a51aSDavid Howells /*
10700d81a51aSDavid Howells  * proc.c
10710d81a51aSDavid Howells  */
1072c3506372SChristoph Hellwig extern const struct seq_operations rxrpc_call_seq_ops;
1073c3506372SChristoph Hellwig extern const struct seq_operations rxrpc_connection_seq_ops;
1074bc0e7cf4SDavid Howells extern const struct seq_operations rxrpc_peer_seq_ops;
10750d81a51aSDavid Howells 
10760d81a51aSDavid Howells /*
10770d81a51aSDavid Howells  * recvmsg.c
10780d81a51aSDavid Howells  */
1079248f219cSDavid Howells void rxrpc_notify_socket(struct rxrpc_call *);
10800d81a51aSDavid Howells int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
10810d81a51aSDavid Howells 
10820d81a51aSDavid Howells /*
1083648af7fcSDavid Howells  * rxkad.c
1084648af7fcSDavid Howells  */
1085648af7fcSDavid Howells #ifdef CONFIG_RXKAD
1086648af7fcSDavid Howells extern const struct rxrpc_security rxkad;
1087648af7fcSDavid Howells #endif
1088648af7fcSDavid Howells 
1089648af7fcSDavid Howells /*
10900d81a51aSDavid Howells  * security.c
10910d81a51aSDavid Howells  */
10920d81a51aSDavid Howells int __init rxrpc_init_security(void);
10930d81a51aSDavid Howells void rxrpc_exit_security(void);
10940d81a51aSDavid Howells int rxrpc_init_client_conn_security(struct rxrpc_connection *);
10950d81a51aSDavid Howells int rxrpc_init_server_conn_security(struct rxrpc_connection *);
10960d81a51aSDavid Howells 
10970d81a51aSDavid Howells /*
10980b58b8a1SDavid Howells  * sendmsg.c
10990b58b8a1SDavid Howells  */
11000b58b8a1SDavid Howells int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
11010b58b8a1SDavid Howells 
11020b58b8a1SDavid Howells /*
11030d81a51aSDavid Howells  * skbuff.c
11040d81a51aSDavid Howells  */
1105d001648eSDavid Howells void rxrpc_kernel_data_consumed(struct rxrpc_call *, struct sk_buff *);
11060d81a51aSDavid Howells void rxrpc_packet_destructor(struct sk_buff *);
110771f3ca40SDavid Howells void rxrpc_new_skb(struct sk_buff *, enum rxrpc_skb_trace);
110871f3ca40SDavid Howells void rxrpc_see_skb(struct sk_buff *, enum rxrpc_skb_trace);
110971f3ca40SDavid Howells void rxrpc_get_skb(struct sk_buff *, enum rxrpc_skb_trace);
111071f3ca40SDavid Howells void rxrpc_free_skb(struct sk_buff *, enum rxrpc_skb_trace);
1111df844fd4SDavid Howells void rxrpc_purge_queue(struct sk_buff_head *);
11120d81a51aSDavid Howells 
11130d81a51aSDavid Howells /*
11145873c083SDavid Howells  * sysctl.c
11155873c083SDavid Howells  */
11165873c083SDavid Howells #ifdef CONFIG_SYSCTL
11175873c083SDavid Howells extern int __init rxrpc_sysctl_init(void);
11185873c083SDavid Howells extern void rxrpc_sysctl_exit(void);
11195873c083SDavid Howells #else
11205873c083SDavid Howells static inline int __init rxrpc_sysctl_init(void) { return 0; }
11215873c083SDavid Howells static inline void rxrpc_sysctl_exit(void) {}
11225873c083SDavid Howells #endif
11235873c083SDavid Howells 
11245873c083SDavid Howells /*
1125be6e6707SDavid Howells  * utils.c
1126be6e6707SDavid Howells  */
11275a790b73SDavid Howells int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
1128be6e6707SDavid Howells 
1129248f219cSDavid Howells static inline bool before(u32 seq1, u32 seq2)
1130248f219cSDavid Howells {
1131248f219cSDavid Howells         return (s32)(seq1 - seq2) < 0;
1132248f219cSDavid Howells }
1133248f219cSDavid Howells static inline bool before_eq(u32 seq1, u32 seq2)
1134248f219cSDavid Howells {
1135248f219cSDavid Howells         return (s32)(seq1 - seq2) <= 0;
1136248f219cSDavid Howells }
1137248f219cSDavid Howells static inline bool after(u32 seq1, u32 seq2)
1138248f219cSDavid Howells {
1139248f219cSDavid Howells         return (s32)(seq1 - seq2) > 0;
1140248f219cSDavid Howells }
1141248f219cSDavid Howells static inline bool after_eq(u32 seq1, u32 seq2)
1142248f219cSDavid Howells {
1143248f219cSDavid Howells         return (s32)(seq1 - seq2) >= 0;
1144248f219cSDavid Howells }
1145248f219cSDavid Howells 
1146be6e6707SDavid Howells /*
114717926a79SDavid Howells  * debug tracing
114817926a79SDavid Howells  */
114995c96174SEric Dumazet extern unsigned int rxrpc_debug;
115017926a79SDavid Howells 
115117926a79SDavid Howells #define dbgprintk(FMT,...) \
11529f389f4bSSven Schnelle 	printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
115317926a79SDavid Howells 
11540dc47877SHarvey Harrison #define kenter(FMT,...)	dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
11550dc47877SHarvey Harrison #define kleave(FMT,...)	dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
115617926a79SDavid Howells #define kdebug(FMT,...)	dbgprintk("    "FMT ,##__VA_ARGS__)
115717926a79SDavid Howells #define kproto(FMT,...)	dbgprintk("### "FMT ,##__VA_ARGS__)
115817926a79SDavid Howells #define knet(FMT,...)	dbgprintk("@@@ "FMT ,##__VA_ARGS__)
115917926a79SDavid Howells 
116017926a79SDavid Howells 
116117926a79SDavid Howells #if defined(__KDEBUG)
116217926a79SDavid Howells #define _enter(FMT,...)	kenter(FMT,##__VA_ARGS__)
116317926a79SDavid Howells #define _leave(FMT,...)	kleave(FMT,##__VA_ARGS__)
116417926a79SDavid Howells #define _debug(FMT,...)	kdebug(FMT,##__VA_ARGS__)
116517926a79SDavid Howells #define _proto(FMT,...)	kproto(FMT,##__VA_ARGS__)
116617926a79SDavid Howells #define _net(FMT,...)	knet(FMT,##__VA_ARGS__)
116717926a79SDavid Howells 
116817926a79SDavid Howells #elif defined(CONFIG_AF_RXRPC_DEBUG)
116917926a79SDavid Howells #define RXRPC_DEBUG_KENTER	0x01
117017926a79SDavid Howells #define RXRPC_DEBUG_KLEAVE	0x02
117117926a79SDavid Howells #define RXRPC_DEBUG_KDEBUG	0x04
117217926a79SDavid Howells #define RXRPC_DEBUG_KPROTO	0x08
117317926a79SDavid Howells #define RXRPC_DEBUG_KNET	0x10
117417926a79SDavid Howells 
117517926a79SDavid Howells #define _enter(FMT,...)					\
117617926a79SDavid Howells do {							\
117717926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER))	\
117817926a79SDavid Howells 		kenter(FMT,##__VA_ARGS__);		\
117917926a79SDavid Howells } while (0)
118017926a79SDavid Howells 
118117926a79SDavid Howells #define _leave(FMT,...)					\
118217926a79SDavid Howells do {							\
118317926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE))	\
118417926a79SDavid Howells 		kleave(FMT,##__VA_ARGS__);		\
118517926a79SDavid Howells } while (0)
118617926a79SDavid Howells 
118717926a79SDavid Howells #define _debug(FMT,...)					\
118817926a79SDavid Howells do {							\
118917926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG))	\
119017926a79SDavid Howells 		kdebug(FMT,##__VA_ARGS__);		\
119117926a79SDavid Howells } while (0)
119217926a79SDavid Howells 
119317926a79SDavid Howells #define _proto(FMT,...)					\
119417926a79SDavid Howells do {							\
119517926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO))	\
119617926a79SDavid Howells 		kproto(FMT,##__VA_ARGS__);		\
119717926a79SDavid Howells } while (0)
119817926a79SDavid Howells 
119917926a79SDavid Howells #define _net(FMT,...)					\
120017926a79SDavid Howells do {							\
120117926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET))	\
120217926a79SDavid Howells 		knet(FMT,##__VA_ARGS__);		\
120317926a79SDavid Howells } while (0)
120417926a79SDavid Howells 
120517926a79SDavid Howells #else
120612fdff3fSDavid Howells #define _enter(FMT,...)	no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
120712fdff3fSDavid Howells #define _leave(FMT,...)	no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
120812fdff3fSDavid Howells #define _debug(FMT,...)	no_printk("    "FMT ,##__VA_ARGS__)
120912fdff3fSDavid Howells #define _proto(FMT,...)	no_printk("### "FMT ,##__VA_ARGS__)
121012fdff3fSDavid Howells #define _net(FMT,...)	no_printk("@@@ "FMT ,##__VA_ARGS__)
121117926a79SDavid Howells #endif
121217926a79SDavid Howells 
121317926a79SDavid Howells /*
121417926a79SDavid Howells  * debug assertion checking
121517926a79SDavid Howells  */
121617926a79SDavid Howells #if 1 // defined(__KDEBUGALL)
121717926a79SDavid Howells 
121817926a79SDavid Howells #define ASSERT(X)						\
121917926a79SDavid Howells do {								\
122017926a79SDavid Howells 	if (unlikely(!(X))) {					\
12219b6d5398SJoe Perches 		pr_err("Assertion failed\n");			\
122217926a79SDavid Howells 		BUG();						\
122317926a79SDavid Howells 	}							\
122417926a79SDavid Howells } while (0)
122517926a79SDavid Howells 
122617926a79SDavid Howells #define ASSERTCMP(X, OP, Y)						\
122717926a79SDavid Howells do {									\
1228cf13258fSDavid Howells 	__typeof__(X) _x = (X);						\
1229cf13258fSDavid Howells 	__typeof__(Y) _y = (__typeof__(X))(Y);				\
12309b6d5398SJoe Perches 	if (unlikely(!(_x OP _y))) {					\
12319b6d5398SJoe Perches 		pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1232cf13258fSDavid Howells 		       (unsigned long)_x, (unsigned long)_x, #OP,	\
1233cf13258fSDavid Howells 		       (unsigned long)_y, (unsigned long)_y);		\
123417926a79SDavid Howells 		BUG();							\
123517926a79SDavid Howells 	}								\
123617926a79SDavid Howells } while (0)
123717926a79SDavid Howells 
123817926a79SDavid Howells #define ASSERTIF(C, X)						\
123917926a79SDavid Howells do {								\
124017926a79SDavid Howells 	if (unlikely((C) && !(X))) {				\
12419b6d5398SJoe Perches 		pr_err("Assertion failed\n");			\
124217926a79SDavid Howells 		BUG();						\
124317926a79SDavid Howells 	}							\
124417926a79SDavid Howells } while (0)
124517926a79SDavid Howells 
124617926a79SDavid Howells #define ASSERTIFCMP(C, X, OP, Y)					\
124717926a79SDavid Howells do {									\
1248cf13258fSDavid Howells 	__typeof__(X) _x = (X);						\
1249cf13258fSDavid Howells 	__typeof__(Y) _y = (__typeof__(X))(Y);				\
12509b6d5398SJoe Perches 	if (unlikely((C) && !(_x OP _y))) {				\
12519b6d5398SJoe Perches 		pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1252cf13258fSDavid Howells 		       (unsigned long)_x, (unsigned long)_x, #OP,	\
1253cf13258fSDavid Howells 		       (unsigned long)_y, (unsigned long)_y);		\
125417926a79SDavid Howells 		BUG();							\
125517926a79SDavid Howells 	}								\
125617926a79SDavid Howells } while (0)
125717926a79SDavid Howells 
125817926a79SDavid Howells #else
125917926a79SDavid Howells 
126017926a79SDavid Howells #define ASSERT(X)				\
126117926a79SDavid Howells do {						\
126217926a79SDavid Howells } while (0)
126317926a79SDavid Howells 
126417926a79SDavid Howells #define ASSERTCMP(X, OP, Y)			\
126517926a79SDavid Howells do {						\
126617926a79SDavid Howells } while (0)
126717926a79SDavid Howells 
126817926a79SDavid Howells #define ASSERTIF(C, X)				\
126917926a79SDavid Howells do {						\
127017926a79SDavid Howells } while (0)
127117926a79SDavid Howells 
127217926a79SDavid Howells #define ASSERTIFCMP(C, X, OP, Y)		\
127317926a79SDavid Howells do {						\
127417926a79SDavid Howells } while (0)
127517926a79SDavid Howells 
127617926a79SDavid Howells #endif /* __KDEBUGALL */
1277