xref: /openbmc/linux/net/rxrpc/ar-internal.h (revision aa390bbe)
117926a79SDavid Howells /* AF_RXRPC internal definitions
217926a79SDavid Howells  *
317926a79SDavid Howells  * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
417926a79SDavid Howells  * Written by David Howells (dhowells@redhat.com)
517926a79SDavid Howells  *
617926a79SDavid Howells  * This program is free software; you can redistribute it and/or
717926a79SDavid Howells  * modify it under the terms of the GNU General Public License
817926a79SDavid Howells  * as published by the Free Software Foundation; either version
917926a79SDavid Howells  * 2 of the License, or (at your option) any later version.
1017926a79SDavid Howells  */
1117926a79SDavid Howells 
12be6e6707SDavid Howells #include <linux/atomic.h>
13e0e4d82fSDavid Howells #include <net/sock.h>
14be6e6707SDavid Howells #include <net/af_rxrpc.h>
1517926a79SDavid Howells #include <rxrpc/packet.h>
1617926a79SDavid Howells 
1717926a79SDavid Howells #if 0
1817926a79SDavid Howells #define CHECK_SLAB_OKAY(X)				     \
1917926a79SDavid Howells 	BUG_ON(atomic_read((X)) >> (sizeof(atomic_t) - 2) == \
2017926a79SDavid Howells 	       (POISON_FREE << 8 | POISON_FREE))
2117926a79SDavid Howells #else
2217926a79SDavid Howells #define CHECK_SLAB_OKAY(X) do {} while (0)
2317926a79SDavid Howells #endif
2417926a79SDavid Howells 
2517926a79SDavid Howells #define FCRYPT_BSIZE 8
2617926a79SDavid Howells struct rxrpc_crypt {
2717926a79SDavid Howells 	union {
2817926a79SDavid Howells 		u8	x[FCRYPT_BSIZE];
2991e916cfSAl Viro 		__be32	n[2];
3017926a79SDavid Howells 	};
3117926a79SDavid Howells } __attribute__((aligned(8)));
3217926a79SDavid Howells 
33651350d1SDavid Howells #define rxrpc_queue_work(WS)	queue_work(rxrpc_workqueue, (WS))
34651350d1SDavid Howells #define rxrpc_queue_delayed_work(WS,D)	\
35651350d1SDavid Howells 	queue_delayed_work(rxrpc_workqueue, (WS), (D))
36651350d1SDavid Howells 
37651350d1SDavid Howells #define rxrpc_queue_call(CALL)	rxrpc_queue_work(&(CALL)->processor)
38651350d1SDavid Howells #define rxrpc_queue_conn(CONN)	rxrpc_queue_work(&(CONN)->processor)
3917926a79SDavid Howells 
40cc8feb8eSDavid Howells struct rxrpc_connection;
41cc8feb8eSDavid Howells 
4217926a79SDavid Howells /*
4317926a79SDavid Howells  * sk_state for RxRPC sockets
4417926a79SDavid Howells  */
4517926a79SDavid Howells enum {
462341e077SDavid Howells 	RXRPC_UNBOUND = 0,
472341e077SDavid Howells 	RXRPC_CLIENT_UNBOUND,		/* Unbound socket used as client */
4817926a79SDavid Howells 	RXRPC_CLIENT_BOUND,		/* client local address bound */
4917926a79SDavid Howells 	RXRPC_SERVER_BOUND,		/* server local address bound */
5017926a79SDavid Howells 	RXRPC_SERVER_LISTENING,		/* server listening for connections */
5117926a79SDavid Howells 	RXRPC_CLOSE,			/* socket is being closed */
5217926a79SDavid Howells };
5317926a79SDavid Howells 
5417926a79SDavid Howells /*
5517926a79SDavid Howells  * RxRPC socket definition
5617926a79SDavid Howells  */
5717926a79SDavid Howells struct rxrpc_sock {
5817926a79SDavid Howells 	/* WARNING: sk has to be the first member */
5917926a79SDavid Howells 	struct sock		sk;
60651350d1SDavid Howells 	rxrpc_interceptor_t	interceptor;	/* kernel service Rx interceptor function */
6117926a79SDavid Howells 	struct rxrpc_local	*local;		/* local endpoint */
6217926a79SDavid Howells 	struct list_head	listen_link;	/* link in the local endpoint's listen list */
6317926a79SDavid Howells 	struct list_head	secureq;	/* calls awaiting connection security clearance */
6417926a79SDavid Howells 	struct list_head	acceptq;	/* calls awaiting acceptance */
6517926a79SDavid Howells 	struct key		*key;		/* security for this socket */
6617926a79SDavid Howells 	struct key		*securities;	/* list of server security descriptors */
6717926a79SDavid Howells 	struct rb_root		calls;		/* outstanding calls on this socket */
6817926a79SDavid Howells 	unsigned long		flags;
692341e077SDavid Howells #define RXRPC_SOCK_CONNECTED		0	/* connect_srx is set */
7017926a79SDavid Howells 	rwlock_t		call_lock;	/* lock for calls */
7117926a79SDavid Howells 	u32			min_sec_level;	/* minimum security level */
7217926a79SDavid Howells #define RXRPC_SECURITY_MAX	RXRPC_SECURITY_ENCRYPT
73cc8feb8eSDavid Howells 	bool			exclusive;	/* Exclusive connection for a client socket */
74cc8feb8eSDavid Howells 	sa_family_t		family;		/* Protocol family created with */
7517926a79SDavid Howells 	struct sockaddr_rxrpc	srx;		/* local address */
762341e077SDavid Howells 	struct sockaddr_rxrpc	connect_srx;	/* Default client address from connect() */
7717926a79SDavid Howells };
7817926a79SDavid Howells 
7917926a79SDavid Howells #define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk)
8017926a79SDavid Howells 
8117926a79SDavid Howells /*
820d12f8a4SDavid Howells  * CPU-byteorder normalised Rx packet header.
830d12f8a4SDavid Howells  */
840d12f8a4SDavid Howells struct rxrpc_host_header {
850d12f8a4SDavid Howells 	u32		epoch;		/* client boot timestamp */
860d12f8a4SDavid Howells 	u32		cid;		/* connection and channel ID */
870d12f8a4SDavid Howells 	u32		callNumber;	/* call ID (0 for connection-level packets) */
880d12f8a4SDavid Howells 	u32		seq;		/* sequence number of pkt in call stream */
890d12f8a4SDavid Howells 	u32		serial;		/* serial number of pkt sent to network */
900d12f8a4SDavid Howells 	u8		type;		/* packet type */
910d12f8a4SDavid Howells 	u8		flags;		/* packet flags */
920d12f8a4SDavid Howells 	u8		userStatus;	/* app-layer defined status */
930d12f8a4SDavid Howells 	u8		securityIndex;	/* security protocol ID */
940d12f8a4SDavid Howells 	union {
950d12f8a4SDavid Howells 		u16	_rsvd;		/* reserved */
960d12f8a4SDavid Howells 		u16	cksum;		/* kerberos security checksum */
970d12f8a4SDavid Howells 	};
980d12f8a4SDavid Howells 	u16		serviceId;	/* service ID */
990d12f8a4SDavid Howells } __packed;
1000d12f8a4SDavid Howells 
1010d12f8a4SDavid Howells /*
10217926a79SDavid Howells  * RxRPC socket buffer private variables
10317926a79SDavid Howells  * - max 48 bytes (struct sk_buff::cb)
10417926a79SDavid Howells  */
10517926a79SDavid Howells struct rxrpc_skb_priv {
10617926a79SDavid Howells 	struct rxrpc_call	*call;		/* call with which associated */
10717926a79SDavid Howells 	unsigned long		resend_at;	/* time in jiffies at which to resend */
10817926a79SDavid Howells 	union {
10995c96174SEric Dumazet 		unsigned int	offset;		/* offset into buffer of next read */
11017926a79SDavid Howells 		int		remain;		/* amount of space remaining for next write */
11117926a79SDavid Howells 		u32		error;		/* network error code */
11217926a79SDavid Howells 		bool		need_resend;	/* T if needs resending */
11317926a79SDavid Howells 	};
11417926a79SDavid Howells 
1150d12f8a4SDavid Howells 	struct rxrpc_host_header hdr;		/* RxRPC packet header from this packet */
11617926a79SDavid Howells };
11717926a79SDavid Howells 
11817926a79SDavid Howells #define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb)
11917926a79SDavid Howells 
12017926a79SDavid Howells enum rxrpc_command {
12117926a79SDavid Howells 	RXRPC_CMD_SEND_DATA,		/* send data message */
12217926a79SDavid Howells 	RXRPC_CMD_SEND_ABORT,		/* request abort generation */
12317926a79SDavid Howells 	RXRPC_CMD_ACCEPT,		/* [server] accept incoming call */
12417926a79SDavid Howells 	RXRPC_CMD_REJECT_BUSY,		/* [server] reject a call as busy */
12517926a79SDavid Howells };
12617926a79SDavid Howells 
12717926a79SDavid Howells /*
12817926a79SDavid Howells  * RxRPC security module interface
12917926a79SDavid Howells  */
13017926a79SDavid Howells struct rxrpc_security {
13117926a79SDavid Howells 	const char		*name;		/* name of this service */
13217926a79SDavid Howells 	u8			security_index;	/* security type provided */
13317926a79SDavid Howells 
134648af7fcSDavid Howells 	/* Initialise a security service */
135648af7fcSDavid Howells 	int (*init)(void);
136648af7fcSDavid Howells 
137648af7fcSDavid Howells 	/* Clean up a security service */
138648af7fcSDavid Howells 	void (*exit)(void);
139648af7fcSDavid Howells 
14017926a79SDavid Howells 	/* initialise a connection's security */
14117926a79SDavid Howells 	int (*init_connection_security)(struct rxrpc_connection *);
14217926a79SDavid Howells 
14317926a79SDavid Howells 	/* prime a connection's packet security */
14417926a79SDavid Howells 	void (*prime_packet_security)(struct rxrpc_connection *);
14517926a79SDavid Howells 
14617926a79SDavid Howells 	/* impose security on a packet */
14717926a79SDavid Howells 	int (*secure_packet)(const struct rxrpc_call *,
14817926a79SDavid Howells 			     struct sk_buff *,
14917926a79SDavid Howells 			     size_t,
15017926a79SDavid Howells 			     void *);
15117926a79SDavid Howells 
15217926a79SDavid Howells 	/* verify the security on a received packet */
15317926a79SDavid Howells 	int (*verify_packet)(const struct rxrpc_call *, struct sk_buff *,
15417926a79SDavid Howells 			     u32 *);
15517926a79SDavid Howells 
15617926a79SDavid Howells 	/* issue a challenge */
15717926a79SDavid Howells 	int (*issue_challenge)(struct rxrpc_connection *);
15817926a79SDavid Howells 
15917926a79SDavid Howells 	/* respond to a challenge */
16017926a79SDavid Howells 	int (*respond_to_challenge)(struct rxrpc_connection *,
16117926a79SDavid Howells 				    struct sk_buff *,
16217926a79SDavid Howells 				    u32 *);
16317926a79SDavid Howells 
16417926a79SDavid Howells 	/* verify a response */
16517926a79SDavid Howells 	int (*verify_response)(struct rxrpc_connection *,
16617926a79SDavid Howells 			       struct sk_buff *,
16717926a79SDavid Howells 			       u32 *);
16817926a79SDavid Howells 
16917926a79SDavid Howells 	/* clear connection security */
17017926a79SDavid Howells 	void (*clear)(struct rxrpc_connection *);
17117926a79SDavid Howells };
17217926a79SDavid Howells 
17317926a79SDavid Howells /*
1744f95dd78SDavid Howells  * RxRPC local transport endpoint description
1754f95dd78SDavid Howells  * - owned by a single AF_RXRPC socket
1764f95dd78SDavid Howells  * - pointed to by transport socket struct sk_user_data
17717926a79SDavid Howells  */
17817926a79SDavid Howells struct rxrpc_local {
1794f95dd78SDavid Howells 	struct rcu_head		rcu;
1804f95dd78SDavid Howells 	atomic_t		usage;
1814f95dd78SDavid Howells 	struct list_head	link;
18217926a79SDavid Howells 	struct socket		*socket;	/* my UDP socket */
1834f95dd78SDavid Howells 	struct work_struct	processor;
18417926a79SDavid Howells 	struct list_head	services;	/* services listening on this endpoint */
18517926a79SDavid Howells 	struct rw_semaphore	defrag_sem;	/* control re-enablement of IP DF bit */
18617926a79SDavid Howells 	struct sk_buff_head	accept_queue;	/* incoming calls awaiting acceptance */
18717926a79SDavid Howells 	struct sk_buff_head	reject_queue;	/* packets awaiting rejection */
18844ba0698SDavid Howells 	struct sk_buff_head	event_queue;	/* endpoint event packets awaiting processing */
189999b69f8SDavid Howells 	struct rb_root		client_conns;	/* Client connections by socket params */
190999b69f8SDavid Howells 	spinlock_t		client_conns_lock; /* Lock for client_conns */
19117926a79SDavid Howells 	spinlock_t		lock;		/* access lock */
19217926a79SDavid Howells 	rwlock_t		services_lock;	/* lock for services list */
19317926a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
1944f95dd78SDavid Howells 	bool			dead;
19517926a79SDavid Howells 	struct sockaddr_rxrpc	srx;		/* local address */
19617926a79SDavid Howells };
19717926a79SDavid Howells 
19817926a79SDavid Howells /*
19917926a79SDavid Howells  * RxRPC remote transport endpoint definition
200be6e6707SDavid Howells  * - matched by local endpoint, remote port, address and protocol type
20117926a79SDavid Howells  */
20217926a79SDavid Howells struct rxrpc_peer {
203be6e6707SDavid Howells 	struct rcu_head		rcu;		/* This must be first */
204be6e6707SDavid Howells 	atomic_t		usage;
205be6e6707SDavid Howells 	unsigned long		hash_key;
206be6e6707SDavid Howells 	struct hlist_node	hash_link;
207be6e6707SDavid Howells 	struct rxrpc_local	*local;
208f66d7490SDavid Howells 	struct hlist_head	error_targets;	/* targets for net error distribution */
209f66d7490SDavid Howells 	struct work_struct	error_distributor;
210aa390bbeSDavid Howells 	struct rb_root		service_conns;	/* Service connections */
211aa390bbeSDavid Howells 	rwlock_t		conn_lock;
21217926a79SDavid Howells 	spinlock_t		lock;		/* access lock */
21395c96174SEric Dumazet 	unsigned int		if_mtu;		/* interface MTU for this peer */
21495c96174SEric Dumazet 	unsigned int		mtu;		/* network MTU for this peer */
21595c96174SEric Dumazet 	unsigned int		maxdata;	/* data size (MTU - hdrsize) */
21617926a79SDavid Howells 	unsigned short		hdrsize;	/* header size (IP + UDP + RxRPC) */
21717926a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
218f66d7490SDavid Howells 	int			error_report;	/* Net (+0) or local (+1000000) to distribute */
219f66d7490SDavid Howells #define RXRPC_LOCAL_ERROR_OFFSET 1000000
22017926a79SDavid Howells 	struct sockaddr_rxrpc	srx;		/* remote address */
22117926a79SDavid Howells 
22217926a79SDavid Howells 	/* calculated RTT cache */
22317926a79SDavid Howells #define RXRPC_RTT_CACHE_SIZE 32
22417926a79SDavid Howells 	suseconds_t		rtt;		/* current RTT estimate (in uS) */
22595c96174SEric Dumazet 	unsigned int		rtt_point;	/* next entry at which to insert */
22695c96174SEric Dumazet 	unsigned int		rtt_usage;	/* amount of cache actually used */
22717926a79SDavid Howells 	suseconds_t		rtt_cache[RXRPC_RTT_CACHE_SIZE]; /* calculated RTT cache */
22817926a79SDavid Howells };
22917926a79SDavid Howells 
23017926a79SDavid Howells /*
23119ffa01cSDavid Howells  * Keys for matching a connection.
23219ffa01cSDavid Howells  */
23319ffa01cSDavid Howells struct rxrpc_conn_proto {
23419ffa01cSDavid Howells 	unsigned long		hash_key;
23519ffa01cSDavid Howells 	struct rxrpc_local	*local;		/* Representation of local endpoint */
23619ffa01cSDavid Howells 	u32			epoch;		/* epoch of this connection */
23719ffa01cSDavid Howells 	u32			cid;		/* connection ID */
23819ffa01cSDavid Howells 	u8			in_clientflag;	/* RXRPC_CLIENT_INITIATED if we are server */
23919ffa01cSDavid Howells 	u8			addr_size;	/* Size of the address */
24019ffa01cSDavid Howells 	sa_family_t		family;		/* Transport protocol */
24119ffa01cSDavid Howells 	__be16			port;		/* Peer UDP/UDP6 port */
24219ffa01cSDavid Howells 	union {					/* Peer address */
24319ffa01cSDavid Howells 		struct in_addr	ipv4_addr;
24419ffa01cSDavid Howells 		struct in6_addr	ipv6_addr;
24519ffa01cSDavid Howells 		u32		raw_addr[0];
24619ffa01cSDavid Howells 	};
24719ffa01cSDavid Howells };
24819ffa01cSDavid Howells 
24919ffa01cSDavid Howells struct rxrpc_conn_parameters {
25019ffa01cSDavid Howells 	struct rxrpc_local	*local;		/* Representation of local endpoint */
25119ffa01cSDavid Howells 	struct rxrpc_peer	*peer;		/* Remote endpoint */
25219ffa01cSDavid Howells 	struct key		*key;		/* Security details */
25319ffa01cSDavid Howells 	bool			exclusive;	/* T if conn is exclusive */
25419ffa01cSDavid Howells 	u16			service_id;	/* Service ID for this connection */
25519ffa01cSDavid Howells 	u32			security_level;	/* Security level selected */
25619ffa01cSDavid Howells };
25719ffa01cSDavid Howells 
25819ffa01cSDavid Howells /*
25917926a79SDavid Howells  * RxRPC connection definition
260aa390bbeSDavid Howells  * - matched by { local, peer, epoch, conn_id, direction }
26117926a79SDavid Howells  * - each connection can only handle four simultaneous calls
26217926a79SDavid Howells  */
26317926a79SDavid Howells struct rxrpc_connection {
26419ffa01cSDavid Howells 	struct rxrpc_conn_proto	proto;
26519ffa01cSDavid Howells 	struct rxrpc_conn_parameters params;
26619ffa01cSDavid Howells 
267999b69f8SDavid Howells 	spinlock_t		channel_lock;
268999b69f8SDavid Howells 	struct rxrpc_call	*channels[RXRPC_MAXCALLS]; /* active calls */
269999b69f8SDavid Howells 	wait_queue_head_t	channel_wq;	/* queue to wait for channel to become available */
270999b69f8SDavid Howells 
27117926a79SDavid Howells 	struct work_struct	processor;	/* connection event processor */
272999b69f8SDavid Howells 	union {
273999b69f8SDavid Howells 		struct rb_node	client_node;	/* Node in local->client_conns */
274aa390bbeSDavid Howells 		struct rb_node	service_node;	/* Node in peer->service_conns */
275999b69f8SDavid Howells 	};
27617926a79SDavid Howells 	struct list_head	link;		/* link in master connection list */
27717926a79SDavid Howells 	struct rb_root		calls;		/* calls on this connection */
27817926a79SDavid Howells 	struct sk_buff_head	rx_queue;	/* received conn-level packets */
279648af7fcSDavid Howells 	const struct rxrpc_security *security;	/* applied security module */
28017926a79SDavid Howells 	struct key		*server_key;	/* security for this service */
2811afe593bSHerbert Xu 	struct crypto_skcipher	*cipher;	/* encryption handle */
28217926a79SDavid Howells 	struct rxrpc_crypt	csum_iv;	/* packet checksum base */
2834a3388c8SDavid Howells 	unsigned long		flags;
2844a3388c8SDavid Howells #define RXRPC_CONN_HAS_IDR	0		/* - Has a client conn ID assigned */
28517926a79SDavid Howells 	unsigned long		events;
28617926a79SDavid Howells #define RXRPC_CONN_CHALLENGE	0		/* send challenge packet */
287999b69f8SDavid Howells 	unsigned long		put_time;	/* Time at which last put */
28817926a79SDavid Howells 	rwlock_t		lock;		/* access lock */
28917926a79SDavid Howells 	spinlock_t		state_lock;	/* state-change lock */
29017926a79SDavid Howells 	atomic_t		usage;
29117926a79SDavid Howells 	enum {					/* current state of connection */
29217926a79SDavid Howells 		RXRPC_CONN_UNUSED,		/* - connection not yet attempted */
29317926a79SDavid Howells 		RXRPC_CONN_CLIENT,		/* - client connection */
29417926a79SDavid Howells 		RXRPC_CONN_SERVER_UNSECURED,	/* - server unsecured connection */
29517926a79SDavid Howells 		RXRPC_CONN_SERVER_CHALLENGING,	/* - server challenging for security */
29617926a79SDavid Howells 		RXRPC_CONN_SERVER,		/* - server secured connection */
29717926a79SDavid Howells 		RXRPC_CONN_REMOTELY_ABORTED,	/* - conn aborted by peer */
29817926a79SDavid Howells 		RXRPC_CONN_LOCALLY_ABORTED,	/* - conn aborted locally */
29917926a79SDavid Howells 		RXRPC_CONN_NETWORK_ERROR,	/* - conn terminated by network error */
30017926a79SDavid Howells 	} state;
301dc44b3a0SDavid Howells 	u32			local_abort;	/* local abort code */
302dc44b3a0SDavid Howells 	u32			remote_abort;	/* remote abort code */
303dc44b3a0SDavid Howells 	int			error;		/* local error incurred */
30417926a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
30595c96174SEric Dumazet 	unsigned int		call_counter;	/* call ID counter */
30617926a79SDavid Howells 	atomic_t		serial;		/* packet serial number counter */
30717926a79SDavid Howells 	atomic_t		hi_serial;	/* highest serial number received */
308999b69f8SDavid Howells 	atomic_t		avail_chans;	/* number of channels available */
30917926a79SDavid Howells 	u8			size_align;	/* data size alignment (for security) */
31017926a79SDavid Howells 	u8			header_size;	/* rxrpc + security header size */
31117926a79SDavid Howells 	u8			security_size;	/* security header size */
31217926a79SDavid Howells 	u32			security_nonce;	/* response re-use preventer */
31317926a79SDavid Howells 	u8			security_ix;	/* security type */
31417926a79SDavid Howells 	u8			out_clientflag;	/* RXRPC_CLIENT_INITIATED if we are client */
31517926a79SDavid Howells };
31617926a79SDavid Howells 
31717926a79SDavid Howells /*
3185b8848d1SDavid Howells  * Flags in call->flags.
3195b8848d1SDavid Howells  */
3205b8848d1SDavid Howells enum rxrpc_call_flag {
3215b8848d1SDavid Howells 	RXRPC_CALL_RELEASED,		/* call has been released - no more message to userspace */
3225b8848d1SDavid Howells 	RXRPC_CALL_TERMINAL_MSG,	/* call has given the socket its final message */
3235b8848d1SDavid Howells 	RXRPC_CALL_RCVD_LAST,		/* all packets received */
3245b8848d1SDavid Howells 	RXRPC_CALL_RUN_RTIMER,		/* Tx resend timer started */
3255b8848d1SDavid Howells 	RXRPC_CALL_TX_SOFT_ACK,		/* sent some soft ACKs */
3265b8848d1SDavid Howells 	RXRPC_CALL_PROC_BUSY,		/* the processor is busy */
3275b8848d1SDavid Howells 	RXRPC_CALL_INIT_ACCEPT,		/* acceptance was initiated */
3285b8848d1SDavid Howells 	RXRPC_CALL_HAS_USERID,		/* has a user ID attached */
3295b8848d1SDavid Howells 	RXRPC_CALL_EXPECT_OOS,		/* expect out of sequence packets */
3305b8848d1SDavid Howells };
3315b8848d1SDavid Howells 
3325b8848d1SDavid Howells /*
3335b8848d1SDavid Howells  * Events that can be raised on a call.
3345b8848d1SDavid Howells  */
3355b8848d1SDavid Howells enum rxrpc_call_event {
3364c198ad1SDavid Howells 	RXRPC_CALL_EV_RCVD_ACKALL,	/* ACKALL or reply received */
3374c198ad1SDavid Howells 	RXRPC_CALL_EV_RCVD_BUSY,	/* busy packet received */
3384c198ad1SDavid Howells 	RXRPC_CALL_EV_RCVD_ABORT,	/* abort packet received */
3394c198ad1SDavid Howells 	RXRPC_CALL_EV_RCVD_ERROR,	/* network error received */
3404c198ad1SDavid Howells 	RXRPC_CALL_EV_ACK_FINAL,	/* need to generate final ACK (and release call) */
3414c198ad1SDavid Howells 	RXRPC_CALL_EV_ACK,		/* need to generate ACK */
3424c198ad1SDavid Howells 	RXRPC_CALL_EV_REJECT_BUSY,	/* need to generate busy message */
3434c198ad1SDavid Howells 	RXRPC_CALL_EV_ABORT,		/* need to generate abort */
3444c198ad1SDavid Howells 	RXRPC_CALL_EV_CONN_ABORT,	/* local connection abort generated */
3454c198ad1SDavid Howells 	RXRPC_CALL_EV_RESEND_TIMER,	/* Tx resend timer expired */
3464c198ad1SDavid Howells 	RXRPC_CALL_EV_RESEND,		/* Tx resend required */
3474c198ad1SDavid Howells 	RXRPC_CALL_EV_DRAIN_RX_OOS,	/* drain the Rx out of sequence queue */
3484c198ad1SDavid Howells 	RXRPC_CALL_EV_LIFE_TIMER,	/* call's lifetimer ran out */
3494c198ad1SDavid Howells 	RXRPC_CALL_EV_ACCEPTED,		/* incoming call accepted by userspace app */
3504c198ad1SDavid Howells 	RXRPC_CALL_EV_SECURED,		/* incoming call's connection is now secure */
3514c198ad1SDavid Howells 	RXRPC_CALL_EV_POST_ACCEPT,	/* need to post an "accept?" message to the app */
3524c198ad1SDavid Howells 	RXRPC_CALL_EV_RELEASE,		/* need to release the call's resources */
3535b8848d1SDavid Howells };
3545b8848d1SDavid Howells 
3555b8848d1SDavid Howells /*
3565b8848d1SDavid Howells  * The states that a call can be in.
3575b8848d1SDavid Howells  */
3585b8848d1SDavid Howells enum rxrpc_call_state {
359999b69f8SDavid Howells 	RXRPC_CALL_UNINITIALISED,
360999b69f8SDavid Howells 	RXRPC_CALL_CLIENT_AWAIT_CONN,	/* - client waiting for connection to become available */
3615b8848d1SDavid Howells 	RXRPC_CALL_CLIENT_SEND_REQUEST,	/* - client sending request phase */
3625b8848d1SDavid Howells 	RXRPC_CALL_CLIENT_AWAIT_REPLY,	/* - client awaiting reply */
3635b8848d1SDavid Howells 	RXRPC_CALL_CLIENT_RECV_REPLY,	/* - client receiving reply phase */
3645b8848d1SDavid Howells 	RXRPC_CALL_CLIENT_FINAL_ACK,	/* - client sending final ACK phase */
3655b8848d1SDavid Howells 	RXRPC_CALL_SERVER_SECURING,	/* - server securing request connection */
3665b8848d1SDavid Howells 	RXRPC_CALL_SERVER_ACCEPTING,	/* - server accepting request */
3675b8848d1SDavid Howells 	RXRPC_CALL_SERVER_RECV_REQUEST,	/* - server receiving request */
3685b8848d1SDavid Howells 	RXRPC_CALL_SERVER_ACK_REQUEST,	/* - server pending ACK of request */
3695b8848d1SDavid Howells 	RXRPC_CALL_SERVER_SEND_REPLY,	/* - server sending reply */
3705b8848d1SDavid Howells 	RXRPC_CALL_SERVER_AWAIT_ACK,	/* - server awaiting final ACK */
3715b8848d1SDavid Howells 	RXRPC_CALL_COMPLETE,		/* - call completed */
3725b8848d1SDavid Howells 	RXRPC_CALL_SERVER_BUSY,		/* - call rejected by busy server */
3735b8848d1SDavid Howells 	RXRPC_CALL_REMOTELY_ABORTED,	/* - call aborted by peer */
3745b8848d1SDavid Howells 	RXRPC_CALL_LOCALLY_ABORTED,	/* - call aborted locally on error or close */
3755b8848d1SDavid Howells 	RXRPC_CALL_NETWORK_ERROR,	/* - call terminated by network error */
3765b8848d1SDavid Howells 	RXRPC_CALL_DEAD,		/* - call is dead */
3775b8848d1SDavid Howells 	NR__RXRPC_CALL_STATES
3785b8848d1SDavid Howells };
3795b8848d1SDavid Howells 
3805b8848d1SDavid Howells /*
38117926a79SDavid Howells  * RxRPC call definition
38217926a79SDavid Howells  * - matched by { connection, call_id }
38317926a79SDavid Howells  */
38417926a79SDavid Howells struct rxrpc_call {
38517926a79SDavid Howells 	struct rxrpc_connection	*conn;		/* connection carrying call */
38617926a79SDavid Howells 	struct rxrpc_sock	*socket;	/* socket responsible */
38717926a79SDavid Howells 	struct timer_list	lifetimer;	/* lifetime remaining on call */
38817926a79SDavid Howells 	struct timer_list	deadspan;	/* reap timer for re-ACK'ing, etc  */
38917926a79SDavid Howells 	struct timer_list	ack_timer;	/* ACK generation timer */
39017926a79SDavid Howells 	struct timer_list	resend_timer;	/* Tx resend timer */
39117926a79SDavid Howells 	struct work_struct	destroyer;	/* call destroyer */
39217926a79SDavid Howells 	struct work_struct	processor;	/* packet processor and ACK generator */
39317926a79SDavid Howells 	struct list_head	link;		/* link in master call list */
394f66d7490SDavid Howells 	struct hlist_node	error_link;	/* link in error distribution list */
39517926a79SDavid Howells 	struct list_head	accept_link;	/* calls awaiting acceptance */
39617926a79SDavid Howells 	struct rb_node		sock_node;	/* node in socket call tree */
39717926a79SDavid Howells 	struct rb_node		conn_node;	/* node in connection call tree */
39817926a79SDavid Howells 	struct sk_buff_head	rx_queue;	/* received packets */
39917926a79SDavid Howells 	struct sk_buff_head	rx_oos_queue;	/* packets received out of sequence */
40017926a79SDavid Howells 	struct sk_buff		*tx_pending;	/* Tx socket buffer being filled */
40117926a79SDavid Howells 	wait_queue_head_t	tx_waitq;	/* wait for Tx window space to become available */
40217926a79SDavid Howells 	unsigned long		user_call_ID;	/* user-defined call ID */
40317926a79SDavid Howells 	unsigned long		creation_jif;	/* time of call creation */
40417926a79SDavid Howells 	unsigned long		flags;
40517926a79SDavid Howells 	unsigned long		events;
40617926a79SDavid Howells 	spinlock_t		lock;
40717926a79SDavid Howells 	rwlock_t		state_lock;	/* lock for state transition */
40817926a79SDavid Howells 	atomic_t		usage;
40917926a79SDavid Howells 	atomic_t		sequence;	/* Tx data packet sequence counter */
410dc44b3a0SDavid Howells 	u32			local_abort;	/* local abort code */
411dc44b3a0SDavid Howells 	u32			remote_abort;	/* remote abort code */
412f66d7490SDavid Howells 	int			error_report;	/* Network error (ICMP/local transport) */
413f66d7490SDavid Howells 	int			error;		/* Local error incurred */
4145b8848d1SDavid Howells 	enum rxrpc_call_state	state : 8;	/* current state of call */
41517926a79SDavid Howells 	int			debug_id;	/* debug ID for printks */
41617926a79SDavid Howells 	u8			channel;	/* connection channel occupied by this call */
41717926a79SDavid Howells 
41817926a79SDavid Howells 	/* transmission-phase ACK management */
4194e36a95eSDavid Howells 	u8			acks_head;	/* offset into window of first entry */
4204e36a95eSDavid Howells 	u8			acks_tail;	/* offset into window of last entry */
4214e36a95eSDavid Howells 	u8			acks_winsz;	/* size of un-ACK'd window */
4224e36a95eSDavid Howells 	u8			acks_unacked;	/* lowest unacked packet in last ACK received */
42317926a79SDavid Howells 	int			acks_latest;	/* serial number of latest ACK received */
42417926a79SDavid Howells 	rxrpc_seq_t		acks_hard;	/* highest definitively ACK'd msg seq */
42517926a79SDavid Howells 	unsigned long		*acks_window;	/* sent packet window
42617926a79SDavid Howells 						 * - elements are pointers with LSB set if ACK'd
42717926a79SDavid Howells 						 */
42817926a79SDavid Howells 
42917926a79SDavid Howells 	/* receive-phase ACK management */
43017926a79SDavid Howells 	rxrpc_seq_t		rx_data_expect;	/* next data seq ID expected to be received */
43117926a79SDavid Howells 	rxrpc_seq_t		rx_data_post;	/* next data seq ID expected to be posted */
43217926a79SDavid Howells 	rxrpc_seq_t		rx_data_recv;	/* last data seq ID encountered by recvmsg */
43317926a79SDavid Howells 	rxrpc_seq_t		rx_data_eaten;	/* last data seq ID consumed by recvmsg */
43417926a79SDavid Howells 	rxrpc_seq_t		rx_first_oos;	/* first packet in rx_oos_queue (or 0) */
43517926a79SDavid Howells 	rxrpc_seq_t		ackr_win_top;	/* top of ACK window (rx_data_eaten is bottom) */
4360d12f8a4SDavid Howells 	rxrpc_seq_t		ackr_prev_seq;	/* previous sequence number received */
4374e36a95eSDavid Howells 	u8			ackr_reason;	/* reason to ACK */
4380d12f8a4SDavid Howells 	rxrpc_serial_t		ackr_serial;	/* serial of packet being ACK'd */
43917926a79SDavid Howells 	atomic_t		ackr_not_idle;	/* number of packets in Rx queue */
44017926a79SDavid Howells 
44117926a79SDavid Howells 	/* received packet records, 1 bit per record */
44217926a79SDavid Howells #define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG)
44317926a79SDavid Howells 	unsigned long		ackr_window[RXRPC_ACKR_WINDOW_ASZ + 1];
44417926a79SDavid Howells 
4457727640cSTim Smith 	struct hlist_node	hash_node;
4467727640cSTim Smith 	unsigned long		hash_key;	/* Full hash key */
4477727640cSTim Smith 	u8			in_clientflag;	/* Copy of conn->in_clientflag for hashing */
4487727640cSTim Smith 	struct rxrpc_local	*local;		/* Local endpoint. Used for hashing. */
44919ffa01cSDavid Howells 	sa_family_t		family;		/* Frame protocol */
4500d12f8a4SDavid Howells 	u32			call_id;	/* call ID on connection  */
4510d12f8a4SDavid Howells 	u32			cid;		/* connection ID plus channel index */
4520d12f8a4SDavid Howells 	u32			epoch;		/* epoch of this connection */
4530d12f8a4SDavid Howells 	u16			service_id;	/* service ID */
4547727640cSTim Smith 	union {					/* Peer IP address for hashing */
4557727640cSTim Smith 		__be32	ipv4_addr;
4567727640cSTim Smith 		__u8	ipv6_addr[16];		/* Anticipates eventual IPv6 support */
4577727640cSTim Smith 	} peer_ip;
45817926a79SDavid Howells };
45917926a79SDavid Howells 
46017926a79SDavid Howells /*
46117926a79SDavid Howells  * locally abort an RxRPC call
46217926a79SDavid Howells  */
46317926a79SDavid Howells static inline void rxrpc_abort_call(struct rxrpc_call *call, u32 abort_code)
46417926a79SDavid Howells {
46517926a79SDavid Howells 	write_lock_bh(&call->state_lock);
46617926a79SDavid Howells 	if (call->state < RXRPC_CALL_COMPLETE) {
467dc44b3a0SDavid Howells 		call->local_abort = abort_code;
46817926a79SDavid Howells 		call->state = RXRPC_CALL_LOCALLY_ABORTED;
4694c198ad1SDavid Howells 		set_bit(RXRPC_CALL_EV_ABORT, &call->events);
47017926a79SDavid Howells 	}
47117926a79SDavid Howells 	write_unlock_bh(&call->state_lock);
47217926a79SDavid Howells }
47317926a79SDavid Howells 
47417926a79SDavid Howells /*
475651350d1SDavid Howells  * af_rxrpc.c
47617926a79SDavid Howells  */
477651350d1SDavid Howells extern atomic_t rxrpc_n_skbs;
4780d12f8a4SDavid Howells extern u32 rxrpc_epoch;
479651350d1SDavid Howells extern atomic_t rxrpc_debug_id;
480651350d1SDavid Howells extern struct workqueue_struct *rxrpc_workqueue;
48117926a79SDavid Howells 
48217926a79SDavid Howells /*
4830d81a51aSDavid Howells  * call_accept.c
48417926a79SDavid Howells  */
4854f95dd78SDavid Howells void rxrpc_accept_incoming_calls(struct rxrpc_local *);
486c1b1203dSJoe Perches struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long);
487c1b1203dSJoe Perches int rxrpc_reject_call(struct rxrpc_sock *);
48817926a79SDavid Howells 
48917926a79SDavid Howells /*
4900d81a51aSDavid Howells  * call_event.c
49117926a79SDavid Howells  */
4920d12f8a4SDavid Howells void __rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool);
4930d12f8a4SDavid Howells void rxrpc_propose_ACK(struct rxrpc_call *, u8, u32, bool);
494c1b1203dSJoe Perches void rxrpc_process_call(struct work_struct *);
49517926a79SDavid Howells 
49617926a79SDavid Howells /*
4970d81a51aSDavid Howells  * call_object.c
49817926a79SDavid Howells  */
499dad8aff7SDavid Howells extern unsigned int rxrpc_max_call_lifetime;
500dad8aff7SDavid Howells extern unsigned int rxrpc_dead_call_expiry;
50117926a79SDavid Howells extern struct kmem_cache *rxrpc_call_jar;
50217926a79SDavid Howells extern struct list_head rxrpc_calls;
50317926a79SDavid Howells extern rwlock_t rxrpc_call_lock;
50417926a79SDavid Howells 
5050d12f8a4SDavid Howells struct rxrpc_call *rxrpc_find_call_hash(struct rxrpc_host_header *,
5060d12f8a4SDavid Howells 					void *, sa_family_t, const void *);
5072341e077SDavid Howells struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
5082341e077SDavid Howells struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
50919ffa01cSDavid Howells 					 struct rxrpc_conn_parameters *,
510999b69f8SDavid Howells 					 struct sockaddr_rxrpc *,
5112341e077SDavid Howells 					 unsigned long, gfp_t);
512c1b1203dSJoe Perches struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *,
51317926a79SDavid Howells 				       struct rxrpc_connection *,
51442886ffeSDavid Howells 				       struct sk_buff *);
515c1b1203dSJoe Perches void rxrpc_release_call(struct rxrpc_call *);
516c1b1203dSJoe Perches void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
517c1b1203dSJoe Perches void __rxrpc_put_call(struct rxrpc_call *);
518c1b1203dSJoe Perches void __exit rxrpc_destroy_all_calls(void);
51917926a79SDavid Howells 
52017926a79SDavid Howells /*
5214a3388c8SDavid Howells  * conn_client.c
5224a3388c8SDavid Howells  */
5234a3388c8SDavid Howells extern struct idr rxrpc_client_conn_ids;
5244a3388c8SDavid Howells 
525999b69f8SDavid Howells int rxrpc_get_client_connection_id(struct rxrpc_connection *, gfp_t);
5264a3388c8SDavid Howells void rxrpc_put_client_connection_id(struct rxrpc_connection *);
5274a3388c8SDavid Howells 
5284a3388c8SDavid Howells /*
5290d81a51aSDavid Howells  * conn_event.c
5300d81a51aSDavid Howells  */
5310d81a51aSDavid Howells void rxrpc_process_connection(struct work_struct *);
5320d81a51aSDavid Howells void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *);
5334f95dd78SDavid Howells void rxrpc_reject_packets(struct rxrpc_local *);
5340d81a51aSDavid Howells 
5350d81a51aSDavid Howells /*
5360d81a51aSDavid Howells  * conn_object.c
53717926a79SDavid Howells  */
538dad8aff7SDavid Howells extern unsigned int rxrpc_connection_expiry;
53917926a79SDavid Howells extern struct list_head rxrpc_connections;
54017926a79SDavid Howells extern rwlock_t rxrpc_connection_lock;
54117926a79SDavid Howells 
542999b69f8SDavid Howells int rxrpc_connect_call(struct rxrpc_call *, struct rxrpc_conn_parameters *,
543999b69f8SDavid Howells 		       struct sockaddr_rxrpc *, gfp_t);
544aa390bbeSDavid Howells struct rxrpc_connection *rxrpc_find_connection(struct rxrpc_local *,
545aa390bbeSDavid Howells 					       struct rxrpc_peer *,
546aa390bbeSDavid Howells 					       struct sk_buff *);
547999b69f8SDavid Howells void rxrpc_disconnect_call(struct rxrpc_call *);
548c1b1203dSJoe Perches void rxrpc_put_connection(struct rxrpc_connection *);
549c1b1203dSJoe Perches void __exit rxrpc_destroy_all_connections(void);
550aa390bbeSDavid Howells struct rxrpc_connection *rxrpc_incoming_connection(struct rxrpc_local *,
551aa390bbeSDavid Howells 						   struct rxrpc_peer *,
55242886ffeSDavid Howells 						   struct sk_buff *);
55317926a79SDavid Howells 
55419ffa01cSDavid Howells static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
55519ffa01cSDavid Howells {
55619ffa01cSDavid Howells 	return conn->out_clientflag;
55719ffa01cSDavid Howells }
55819ffa01cSDavid Howells 
55919ffa01cSDavid Howells static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
56019ffa01cSDavid Howells {
56119ffa01cSDavid Howells 	return conn->proto.in_clientflag;
56219ffa01cSDavid Howells }
56319ffa01cSDavid Howells 
5645627cc8bSDavid Howells static inline void rxrpc_get_connection(struct rxrpc_connection *conn)
5655627cc8bSDavid Howells {
5665627cc8bSDavid Howells 	atomic_inc(&conn->usage);
5675627cc8bSDavid Howells }
5685627cc8bSDavid Howells 
56917926a79SDavid Howells /*
5700d81a51aSDavid Howells  * input.c
57117926a79SDavid Howells  */
572676d2369SDavid S. Miller void rxrpc_data_ready(struct sock *);
573c1b1203dSJoe Perches int rxrpc_queue_rcv_skb(struct rxrpc_call *, struct sk_buff *, bool, bool);
574c1b1203dSJoe Perches void rxrpc_fast_process_packet(struct rxrpc_call *, struct sk_buff *);
57517926a79SDavid Howells 
57617926a79SDavid Howells /*
5770d81a51aSDavid Howells  * insecure.c
57817926a79SDavid Howells  */
5790d81a51aSDavid Howells extern const struct rxrpc_security rxrpc_no_security;
58017926a79SDavid Howells 
58117926a79SDavid Howells /*
5820d81a51aSDavid Howells  * key.c
58317926a79SDavid Howells  */
58417926a79SDavid Howells extern struct key_type key_type_rxrpc;
58517926a79SDavid Howells extern struct key_type key_type_rxrpc_s;
58617926a79SDavid Howells 
587c1b1203dSJoe Perches int rxrpc_request_key(struct rxrpc_sock *, char __user *, int);
588c1b1203dSJoe Perches int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int);
589c1b1203dSJoe Perches int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time_t,
590c1b1203dSJoe Perches 			      u32);
59117926a79SDavid Howells 
59217926a79SDavid Howells /*
59387563616SDavid Howells  * local_event.c
59487563616SDavid Howells  */
5954f95dd78SDavid Howells extern void rxrpc_process_local_events(struct rxrpc_local *);
59687563616SDavid Howells 
59787563616SDavid Howells /*
5980d81a51aSDavid Howells  * local_object.c
59917926a79SDavid Howells  */
6004f95dd78SDavid Howells struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *);
6014f95dd78SDavid Howells void __rxrpc_put_local(struct rxrpc_local *);
6020d81a51aSDavid Howells void __exit rxrpc_destroy_all_locals(void);
603e0e4d82fSDavid Howells 
6044f95dd78SDavid Howells static inline void rxrpc_get_local(struct rxrpc_local *local)
6054f95dd78SDavid Howells {
6064f95dd78SDavid Howells 	atomic_inc(&local->usage);
6074f95dd78SDavid Howells }
6084f95dd78SDavid Howells 
6094f95dd78SDavid Howells static inline
6104f95dd78SDavid Howells struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
6114f95dd78SDavid Howells {
6124f95dd78SDavid Howells 	return atomic_inc_not_zero(&local->usage) ? local : NULL;
6134f95dd78SDavid Howells }
6144f95dd78SDavid Howells 
6154f95dd78SDavid Howells static inline void rxrpc_put_local(struct rxrpc_local *local)
6164f95dd78SDavid Howells {
6175627cc8bSDavid Howells 	if (local && atomic_dec_and_test(&local->usage))
6184f95dd78SDavid Howells 		__rxrpc_put_local(local);
6194f95dd78SDavid Howells }
6204f95dd78SDavid Howells 
621e0e4d82fSDavid Howells /*
6228e688d9cSDavid Howells  * misc.c
6238e688d9cSDavid Howells  */
6240e119b41SDavid Howells extern unsigned int rxrpc_max_backlog __read_mostly;
6258e688d9cSDavid Howells extern unsigned int rxrpc_requested_ack_delay;
6268e688d9cSDavid Howells extern unsigned int rxrpc_soft_ack_delay;
6278e688d9cSDavid Howells extern unsigned int rxrpc_idle_ack_delay;
6288e688d9cSDavid Howells extern unsigned int rxrpc_rx_window_size;
6298e688d9cSDavid Howells extern unsigned int rxrpc_rx_mtu;
6308e688d9cSDavid Howells extern unsigned int rxrpc_rx_jumbo_max;
6318e688d9cSDavid Howells 
6325b3e87f1SDavid Howells extern const char *const rxrpc_pkts[];
6338e688d9cSDavid Howells extern const s8 rxrpc_ack_priority[];
6348e688d9cSDavid Howells 
6358e688d9cSDavid Howells extern const char *rxrpc_acks(u8 reason);
6368e688d9cSDavid Howells 
6378e688d9cSDavid Howells /*
6380d81a51aSDavid Howells  * output.c
6390d81a51aSDavid Howells  */
6400d81a51aSDavid Howells extern unsigned int rxrpc_resend_timeout;
6410d81a51aSDavid Howells 
642985a5c82SDavid Howells int rxrpc_send_data_packet(struct rxrpc_connection *, struct sk_buff *);
6430d81a51aSDavid Howells int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
6440d81a51aSDavid Howells 
6450d81a51aSDavid Howells /*
646abe89ef0SDavid Howells  * peer_event.c
6470d81a51aSDavid Howells  */
648abe89ef0SDavid Howells void rxrpc_error_report(struct sock *);
649f66d7490SDavid Howells void rxrpc_peer_error_distributor(struct work_struct *);
6500d81a51aSDavid Howells 
6510d81a51aSDavid Howells /*
6520d81a51aSDavid Howells  * peer_object.c
6530d81a51aSDavid Howells  */
654be6e6707SDavid Howells struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
655be6e6707SDavid Howells 					 const struct sockaddr_rxrpc *);
656be6e6707SDavid Howells struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_local *,
657be6e6707SDavid Howells 				     struct sockaddr_rxrpc *, gfp_t);
658be6e6707SDavid Howells struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
659be6e6707SDavid Howells 
660be6e6707SDavid Howells static inline void rxrpc_get_peer(struct rxrpc_peer *peer)
661be6e6707SDavid Howells {
662be6e6707SDavid Howells 	atomic_inc(&peer->usage);
663be6e6707SDavid Howells }
664be6e6707SDavid Howells 
665be6e6707SDavid Howells static inline
666be6e6707SDavid Howells struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
667be6e6707SDavid Howells {
668be6e6707SDavid Howells 	return atomic_inc_not_zero(&peer->usage) ? peer : NULL;
669be6e6707SDavid Howells }
670be6e6707SDavid Howells 
671be6e6707SDavid Howells extern void __rxrpc_put_peer(struct rxrpc_peer *peer);
672be6e6707SDavid Howells static inline void rxrpc_put_peer(struct rxrpc_peer *peer)
673be6e6707SDavid Howells {
6745627cc8bSDavid Howells 	if (peer && atomic_dec_and_test(&peer->usage))
675be6e6707SDavid Howells 		__rxrpc_put_peer(peer);
676be6e6707SDavid Howells }
6770d81a51aSDavid Howells 
6780d81a51aSDavid Howells /*
6790d81a51aSDavid Howells  * proc.c
6800d81a51aSDavid Howells  */
6810d81a51aSDavid Howells extern const char *const rxrpc_call_states[];
6820d81a51aSDavid Howells extern const struct file_operations rxrpc_call_seq_fops;
6830d81a51aSDavid Howells extern const struct file_operations rxrpc_connection_seq_fops;
6840d81a51aSDavid Howells 
6850d81a51aSDavid Howells /*
6860d81a51aSDavid Howells  * recvmsg.c
6870d81a51aSDavid Howells  */
6880d81a51aSDavid Howells void rxrpc_remove_user_ID(struct rxrpc_sock *, struct rxrpc_call *);
6890d81a51aSDavid Howells int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
6900d81a51aSDavid Howells 
6910d81a51aSDavid Howells /*
692648af7fcSDavid Howells  * rxkad.c
693648af7fcSDavid Howells  */
694648af7fcSDavid Howells #ifdef CONFIG_RXKAD
695648af7fcSDavid Howells extern const struct rxrpc_security rxkad;
696648af7fcSDavid Howells #endif
697648af7fcSDavid Howells 
698648af7fcSDavid Howells /*
6990d81a51aSDavid Howells  * security.c
7000d81a51aSDavid Howells  */
7010d81a51aSDavid Howells int __init rxrpc_init_security(void);
7020d81a51aSDavid Howells void rxrpc_exit_security(void);
7030d81a51aSDavid Howells int rxrpc_init_client_conn_security(struct rxrpc_connection *);
7040d81a51aSDavid Howells int rxrpc_init_server_conn_security(struct rxrpc_connection *);
7050d81a51aSDavid Howells 
7060d81a51aSDavid Howells /*
7070d81a51aSDavid Howells  * skbuff.c
7080d81a51aSDavid Howells  */
7090d81a51aSDavid Howells void rxrpc_packet_destructor(struct sk_buff *);
7100d81a51aSDavid Howells 
7110d81a51aSDavid Howells /*
7125873c083SDavid Howells  * sysctl.c
7135873c083SDavid Howells  */
7145873c083SDavid Howells #ifdef CONFIG_SYSCTL
7155873c083SDavid Howells extern int __init rxrpc_sysctl_init(void);
7165873c083SDavid Howells extern void rxrpc_sysctl_exit(void);
7175873c083SDavid Howells #else
7185873c083SDavid Howells static inline int __init rxrpc_sysctl_init(void) { return 0; }
7195873c083SDavid Howells static inline void rxrpc_sysctl_exit(void) {}
7205873c083SDavid Howells #endif
7215873c083SDavid Howells 
7225873c083SDavid Howells /*
723be6e6707SDavid Howells  * utils.c
724be6e6707SDavid Howells  */
725be6e6707SDavid Howells void rxrpc_get_addr_from_skb(struct rxrpc_local *, const struct sk_buff *,
726be6e6707SDavid Howells 			     struct sockaddr_rxrpc *);
727be6e6707SDavid Howells 
728be6e6707SDavid Howells /*
72917926a79SDavid Howells  * debug tracing
73017926a79SDavid Howells  */
73195c96174SEric Dumazet extern unsigned int rxrpc_debug;
73217926a79SDavid Howells 
73317926a79SDavid Howells #define dbgprintk(FMT,...) \
7349f389f4bSSven Schnelle 	printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
73517926a79SDavid Howells 
7360dc47877SHarvey Harrison #define kenter(FMT,...)	dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
7370dc47877SHarvey Harrison #define kleave(FMT,...)	dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
73817926a79SDavid Howells #define kdebug(FMT,...)	dbgprintk("    "FMT ,##__VA_ARGS__)
73917926a79SDavid Howells #define kproto(FMT,...)	dbgprintk("### "FMT ,##__VA_ARGS__)
74017926a79SDavid Howells #define knet(FMT,...)	dbgprintk("@@@ "FMT ,##__VA_ARGS__)
74117926a79SDavid Howells 
74217926a79SDavid Howells 
74317926a79SDavid Howells #if defined(__KDEBUG)
74417926a79SDavid Howells #define _enter(FMT,...)	kenter(FMT,##__VA_ARGS__)
74517926a79SDavid Howells #define _leave(FMT,...)	kleave(FMT,##__VA_ARGS__)
74617926a79SDavid Howells #define _debug(FMT,...)	kdebug(FMT,##__VA_ARGS__)
74717926a79SDavid Howells #define _proto(FMT,...)	kproto(FMT,##__VA_ARGS__)
74817926a79SDavid Howells #define _net(FMT,...)	knet(FMT,##__VA_ARGS__)
74917926a79SDavid Howells 
75017926a79SDavid Howells #elif defined(CONFIG_AF_RXRPC_DEBUG)
75117926a79SDavid Howells #define RXRPC_DEBUG_KENTER	0x01
75217926a79SDavid Howells #define RXRPC_DEBUG_KLEAVE	0x02
75317926a79SDavid Howells #define RXRPC_DEBUG_KDEBUG	0x04
75417926a79SDavid Howells #define RXRPC_DEBUG_KPROTO	0x08
75517926a79SDavid Howells #define RXRPC_DEBUG_KNET	0x10
75617926a79SDavid Howells 
75717926a79SDavid Howells #define _enter(FMT,...)					\
75817926a79SDavid Howells do {							\
75917926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER))	\
76017926a79SDavid Howells 		kenter(FMT,##__VA_ARGS__);		\
76117926a79SDavid Howells } while (0)
76217926a79SDavid Howells 
76317926a79SDavid Howells #define _leave(FMT,...)					\
76417926a79SDavid Howells do {							\
76517926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE))	\
76617926a79SDavid Howells 		kleave(FMT,##__VA_ARGS__);		\
76717926a79SDavid Howells } while (0)
76817926a79SDavid Howells 
76917926a79SDavid Howells #define _debug(FMT,...)					\
77017926a79SDavid Howells do {							\
77117926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG))	\
77217926a79SDavid Howells 		kdebug(FMT,##__VA_ARGS__);		\
77317926a79SDavid Howells } while (0)
77417926a79SDavid Howells 
77517926a79SDavid Howells #define _proto(FMT,...)					\
77617926a79SDavid Howells do {							\
77717926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO))	\
77817926a79SDavid Howells 		kproto(FMT,##__VA_ARGS__);		\
77917926a79SDavid Howells } while (0)
78017926a79SDavid Howells 
78117926a79SDavid Howells #define _net(FMT,...)					\
78217926a79SDavid Howells do {							\
78317926a79SDavid Howells 	if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET))	\
78417926a79SDavid Howells 		knet(FMT,##__VA_ARGS__);		\
78517926a79SDavid Howells } while (0)
78617926a79SDavid Howells 
78717926a79SDavid Howells #else
78812fdff3fSDavid Howells #define _enter(FMT,...)	no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
78912fdff3fSDavid Howells #define _leave(FMT,...)	no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
79012fdff3fSDavid Howells #define _debug(FMT,...)	no_printk("    "FMT ,##__VA_ARGS__)
79112fdff3fSDavid Howells #define _proto(FMT,...)	no_printk("### "FMT ,##__VA_ARGS__)
79212fdff3fSDavid Howells #define _net(FMT,...)	no_printk("@@@ "FMT ,##__VA_ARGS__)
79317926a79SDavid Howells #endif
79417926a79SDavid Howells 
79517926a79SDavid Howells /*
79617926a79SDavid Howells  * debug assertion checking
79717926a79SDavid Howells  */
79817926a79SDavid Howells #if 1 // defined(__KDEBUGALL)
79917926a79SDavid Howells 
80017926a79SDavid Howells #define ASSERT(X)						\
80117926a79SDavid Howells do {								\
80217926a79SDavid Howells 	if (unlikely(!(X))) {					\
8039b6d5398SJoe Perches 		pr_err("Assertion failed\n");			\
80417926a79SDavid Howells 		BUG();						\
80517926a79SDavid Howells 	}							\
80617926a79SDavid Howells } while (0)
80717926a79SDavid Howells 
80817926a79SDavid Howells #define ASSERTCMP(X, OP, Y)						\
80917926a79SDavid Howells do {									\
8109b6d5398SJoe Perches 	unsigned long _x = (unsigned long)(X);				\
8119b6d5398SJoe Perches 	unsigned long _y = (unsigned long)(Y);				\
8129b6d5398SJoe Perches 	if (unlikely(!(_x OP _y))) {					\
8139b6d5398SJoe Perches 		pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n",			\
8149b6d5398SJoe Perches 		       _x, _x, #OP, _y, _y);				\
81517926a79SDavid Howells 		BUG();							\
81617926a79SDavid Howells 	}								\
81717926a79SDavid Howells } while (0)
81817926a79SDavid Howells 
81917926a79SDavid Howells #define ASSERTIF(C, X)						\
82017926a79SDavid Howells do {								\
82117926a79SDavid Howells 	if (unlikely((C) && !(X))) {				\
8229b6d5398SJoe Perches 		pr_err("Assertion failed\n");			\
82317926a79SDavid Howells 		BUG();						\
82417926a79SDavid Howells 	}							\
82517926a79SDavid Howells } while (0)
82617926a79SDavid Howells 
82717926a79SDavid Howells #define ASSERTIFCMP(C, X, OP, Y)					\
82817926a79SDavid Howells do {									\
8299b6d5398SJoe Perches 	unsigned long _x = (unsigned long)(X);				\
8309b6d5398SJoe Perches 	unsigned long _y = (unsigned long)(Y);				\
8319b6d5398SJoe Perches 	if (unlikely((C) && !(_x OP _y))) {				\
8329b6d5398SJoe Perches 		pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
8339b6d5398SJoe Perches 		       _x, _x, #OP, _y, _y);				\
83417926a79SDavid Howells 		BUG();							\
83517926a79SDavid Howells 	}								\
83617926a79SDavid Howells } while (0)
83717926a79SDavid Howells 
83817926a79SDavid Howells #else
83917926a79SDavid Howells 
84017926a79SDavid Howells #define ASSERT(X)				\
84117926a79SDavid Howells do {						\
84217926a79SDavid Howells } while (0)
84317926a79SDavid Howells 
84417926a79SDavid Howells #define ASSERTCMP(X, OP, Y)			\
84517926a79SDavid Howells do {						\
84617926a79SDavid Howells } while (0)
84717926a79SDavid Howells 
84817926a79SDavid Howells #define ASSERTIF(C, X)				\
84917926a79SDavid Howells do {						\
85017926a79SDavid Howells } while (0)
85117926a79SDavid Howells 
85217926a79SDavid Howells #define ASSERTIFCMP(C, X, OP, Y)		\
85317926a79SDavid Howells do {						\
85417926a79SDavid Howells } while (0)
85517926a79SDavid Howells 
85617926a79SDavid Howells #endif /* __KDEBUGALL */
85717926a79SDavid Howells 
85817926a79SDavid Howells /*
85917926a79SDavid Howells  * socket buffer accounting / leak finding
86017926a79SDavid Howells  */
86117926a79SDavid Howells static inline void __rxrpc_new_skb(struct sk_buff *skb, const char *fn)
86217926a79SDavid Howells {
86317926a79SDavid Howells 	//_net("new skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
86417926a79SDavid Howells 	//atomic_inc(&rxrpc_n_skbs);
86517926a79SDavid Howells }
86617926a79SDavid Howells 
86717926a79SDavid Howells #define rxrpc_new_skb(skb) __rxrpc_new_skb((skb), __func__)
86817926a79SDavid Howells 
86917926a79SDavid Howells static inline void __rxrpc_kill_skb(struct sk_buff *skb, const char *fn)
87017926a79SDavid Howells {
87117926a79SDavid Howells 	//_net("kill skb %p %s [%d]", skb, fn, atomic_read(&rxrpc_n_skbs));
87217926a79SDavid Howells 	//atomic_dec(&rxrpc_n_skbs);
87317926a79SDavid Howells }
87417926a79SDavid Howells 
87517926a79SDavid Howells #define rxrpc_kill_skb(skb) __rxrpc_kill_skb((skb), __func__)
87617926a79SDavid Howells 
87717926a79SDavid Howells static inline void __rxrpc_free_skb(struct sk_buff *skb, const char *fn)
87817926a79SDavid Howells {
87917926a79SDavid Howells 	if (skb) {
88017926a79SDavid Howells 		CHECK_SLAB_OKAY(&skb->users);
88117926a79SDavid Howells 		//_net("free skb %p %s [%d]",
88217926a79SDavid Howells 		//     skb, fn, atomic_read(&rxrpc_n_skbs));
88317926a79SDavid Howells 		//atomic_dec(&rxrpc_n_skbs);
88417926a79SDavid Howells 		kfree_skb(skb);
88517926a79SDavid Howells 	}
88617926a79SDavid Howells }
88717926a79SDavid Howells 
88817926a79SDavid Howells #define rxrpc_free_skb(skb) __rxrpc_free_skb((skb), __func__)
88917926a79SDavid Howells 
89017926a79SDavid Howells static inline void rxrpc_purge_queue(struct sk_buff_head *list)
89117926a79SDavid Howells {
89217926a79SDavid Howells 	struct sk_buff *skb;
89317926a79SDavid Howells 	while ((skb = skb_dequeue((list))) != NULL)
89417926a79SDavid Howells 		rxrpc_free_skb(skb);
89517926a79SDavid Howells }
89617926a79SDavid Howells 
89717926a79SDavid Howells #define rxrpc_get_call(CALL)				\
89817926a79SDavid Howells do {							\
89917926a79SDavid Howells 	CHECK_SLAB_OKAY(&(CALL)->usage);		\
90017926a79SDavid Howells 	if (atomic_inc_return(&(CALL)->usage) == 1)	\
90117926a79SDavid Howells 		BUG();					\
90217926a79SDavid Howells } while (0)
90317926a79SDavid Howells 
90417926a79SDavid Howells #define rxrpc_put_call(CALL)				\
90517926a79SDavid Howells do {							\
90617926a79SDavid Howells 	__rxrpc_put_call(CALL);				\
90717926a79SDavid Howells } while (0)
908