blob: 99cad3ead81d85a77c4c7574fd74abfdea742ceb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Chuck Lever55aa4f52005-08-11 16:25:47 -04002 * linux/include/linux/sunrpc/xprt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Declarations for the RPC transport interface.
5 *
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
7 */
8
9#ifndef _LINUX_SUNRPC_XPRT_H
10#define _LINUX_SUNRPC_XPRT_H
11
12#include <linux/uio.h>
13#include <linux/socket.h>
14#include <linux/in.h>
15#include <linux/sunrpc/sched.h>
16#include <linux/sunrpc/xdr.h>
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018extern unsigned int xprt_udp_slot_table_entries;
19extern unsigned int xprt_tcp_slot_table_entries;
20
21#define RPC_MIN_SLOT_TABLE (2U)
22#define RPC_DEF_SLOT_TABLE (16U)
23#define RPC_MAX_SLOT_TABLE (128U)
24
Chuck Levera246b012005-08-11 16:25:23 -040025/*
26 * RPC call and reply header size as number of 32bit words (verifier
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * size computed separately)
28 */
29#define RPC_CALLHDRSIZE 6
30#define RPC_REPHDRSIZE 4
31
32/*
Chuck Lever529b33c2005-08-25 16:25:54 -070033 * Parameters for choosing a free port
34 */
35extern unsigned int xprt_min_resvport;
36extern unsigned int xprt_max_resvport;
37
38#define RPC_MIN_RESVPORT (1U)
39#define RPC_MAX_RESVPORT (65535U)
40#define RPC_DEF_MIN_RESVPORT (650U)
41#define RPC_DEF_MAX_RESVPORT (1023U)
42
43/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * This describes a timeout strategy
45 */
46struct rpc_timeout {
47 unsigned long to_initval, /* initial timeout */
48 to_maxval, /* max timeout */
49 to_increment; /* if !exponential */
50 unsigned int to_retries; /* max # of retries */
51 unsigned char to_exponential;
52};
53
Chuck Lever529b33c2005-08-25 16:25:54 -070054struct rpc_task;
55struct rpc_xprt;
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*
58 * This describes a complete RPC request
59 */
60struct rpc_rqst {
61 /*
62 * This is the user-visible part
63 */
64 struct rpc_xprt * rq_xprt; /* RPC client */
65 struct xdr_buf rq_snd_buf; /* send buffer */
66 struct xdr_buf rq_rcv_buf; /* recv buffer */
67
68 /*
69 * This is the private part
70 */
71 struct rpc_task * rq_task; /* RPC task data */
72 __u32 rq_xid; /* request XID */
73 int rq_cong; /* has incremented xprt->cong */
74 int rq_received; /* receive completed */
75 u32 rq_seqno; /* gss seq no. used on req. */
76
77 struct list_head rq_list;
78
79 struct xdr_buf rq_private_buf; /* The receive buffer
80 * used in the softirq.
81 */
82 unsigned long rq_majortimeo; /* major timeout alarm */
83 unsigned long rq_timeout; /* Current timeout value */
84 unsigned int rq_retries; /* # of retries */
85 /*
86 * For authentication (e.g. auth_des)
87 */
88 u32 rq_creddata[2];
89
90 /*
91 * Partial send handling
92 */
93
94 u32 rq_bytes_sent; /* Bytes we have sent */
95
96 unsigned long rq_xtime; /* when transmitted */
97 int rq_ntrans;
98};
99#define rq_svec rq_snd_buf.head
100#define rq_slen rq_snd_buf.len
101
Chuck Levera246b012005-08-11 16:25:23 -0400102struct rpc_xprt_ops {
Chuck Lever470056c2005-08-25 16:25:56 -0700103 void (*set_buffer_size)(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize);
Chuck Lever12a80462005-08-25 16:25:51 -0700104 int (*reserve_xprt)(struct rpc_task *task);
Chuck Lever49e9a892005-08-25 16:25:51 -0700105 void (*release_xprt)(struct rpc_xprt *xprt, struct rpc_task *task);
Chuck Levera246b012005-08-11 16:25:23 -0400106 void (*connect)(struct rpc_task *task);
107 int (*send_request)(struct rpc_task *task);
Chuck Leverfe3aca22005-08-25 16:25:50 -0700108 void (*set_retrans_timeout)(struct rpc_task *task);
Chuck Lever46c0ee82005-08-25 16:25:52 -0700109 void (*timer)(struct rpc_task *task);
Chuck Levera58dd392005-08-25 16:25:53 -0700110 void (*release_request)(struct rpc_task *task);
Chuck Levera246b012005-08-11 16:25:23 -0400111 void (*close)(struct rpc_xprt *xprt);
112 void (*destroy)(struct rpc_xprt *xprt);
113};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115struct rpc_xprt {
Chuck Levera246b012005-08-11 16:25:23 -0400116 struct rpc_xprt_ops * ops; /* transport methods */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 struct socket * sock; /* BSD socket layer */
118 struct sock * inet; /* INET layer */
119
120 struct rpc_timeout timeout; /* timeout parms */
121 struct sockaddr_in addr; /* server address */
122 int prot; /* IP protocol */
123
124 unsigned long cong; /* current congestion */
125 unsigned long cwnd; /* congestion window */
126
Chuck Lever470056c2005-08-25 16:25:56 -0700127 size_t rcvsize, /* transport rcv buffer size */
Chuck Lever55aa4f52005-08-11 16:25:47 -0400128 sndsize; /* transport send buffer size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 size_t max_payload; /* largest RPC payload size,
131 in bytes */
Chuck Lever808012f2005-08-25 16:25:49 -0700132 unsigned int tsh_size; /* size of transport specific
133 header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 struct rpc_wait_queue sending; /* requests waiting to send */
136 struct rpc_wait_queue resend; /* requests waiting to resend */
137 struct rpc_wait_queue pending; /* requests in flight */
138 struct rpc_wait_queue backlog; /* waiting for slot */
139 struct list_head free; /* free slots */
140 struct rpc_rqst * slot; /* slot table storage */
141 unsigned int max_reqs; /* total slots */
Chuck Lever2226feb2005-08-11 16:25:38 -0400142 unsigned long state; /* transport state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 unsigned char shutdown : 1, /* being shut down */
Chuck Lever43118c22005-08-25 16:25:49 -0700144 resvport : 1; /* use a reserved port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 /*
147 * XID
148 */
149 __u32 xid; /* Next XID value to use */
150
151 /*
152 * State of TCP reply receive stuff
153 */
154 u32 tcp_recm, /* Fragment header */
155 tcp_xid, /* Current XID */
156 tcp_reclen, /* fragment length */
157 tcp_offset; /* fragment offset */
158 unsigned long tcp_copied, /* copied to request */
159 tcp_flags;
160 /*
Chuck Lever55aa4f52005-08-11 16:25:47 -0400161 * Connection of transports
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 */
Chuck Lever03bf4b72005-08-25 16:25:55 -0700163 unsigned long connect_timeout,
164 bind_timeout,
165 reestablish_timeout;
Chuck Lever55aa4f52005-08-11 16:25:47 -0400166 struct work_struct connect_worker;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 unsigned short port;
Chuck Lever03bf4b72005-08-25 16:25:55 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 /*
Chuck Lever55aa4f52005-08-11 16:25:47 -0400170 * Disconnection of idle transports
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
172 struct work_struct task_cleanup;
173 struct timer_list timer;
Chuck Lever03bf4b72005-08-25 16:25:55 -0700174 unsigned long last_used,
175 idle_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 /*
178 * Send stuff
179 */
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400180 spinlock_t transport_lock; /* lock transport info */
Chuck Lever5dc07722005-08-11 16:25:35 -0400181 spinlock_t reserve_lock; /* lock slot table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 struct rpc_task * snd_task; /* Task blocked in send */
183
184 struct list_head recv;
185
186
187 void (*old_data_ready)(struct sock *, int);
188 void (*old_state_change)(struct sock *);
189 void (*old_write_space)(struct sock *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190};
191
Chuck Levera246b012005-08-11 16:25:23 -0400192#define XPRT_LAST_FRAG (1 << 0)
193#define XPRT_COPY_RECM (1 << 1)
194#define XPRT_COPY_XID (1 << 2)
195#define XPRT_COPY_DATA (1 << 3)
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#ifdef __KERNEL__
198
Chuck Lever55aa4f52005-08-11 16:25:47 -0400199/*
200 * Transport operations used by ULPs
201 */
202struct rpc_xprt * xprt_create_proto(int proto, struct sockaddr_in *addr, struct rpc_timeout *to);
203void xprt_set_timeout(struct rpc_timeout *to, unsigned int retr, unsigned long incr);
204
205/*
206 * Generic internal transport functions
207 */
208void xprt_connect(struct rpc_task *task);
209void xprt_reserve(struct rpc_task *task);
Chuck Lever12a80462005-08-25 16:25:51 -0700210int xprt_reserve_xprt(struct rpc_task *task);
211int xprt_reserve_xprt_cong(struct rpc_task *task);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400212int xprt_prepare_transmit(struct rpc_task *task);
213void xprt_transmit(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214int xprt_adjust_timeout(struct rpc_rqst *req);
Chuck Lever49e9a892005-08-25 16:25:51 -0700215void xprt_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task);
216void xprt_release_xprt_cong(struct rpc_xprt *xprt, struct rpc_task *task);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400217void xprt_release(struct rpc_task *task);
218int xprt_destroy(struct rpc_xprt *xprt);
219
Chuck Lever808012f2005-08-25 16:25:49 -0700220static inline u32 *xprt_skip_transport_header(struct rpc_xprt *xprt, u32 *p)
221{
222 return p + xprt->tsh_size;
223}
224
Chuck Lever55aa4f52005-08-11 16:25:47 -0400225/*
226 * Transport switch helper functions
227 */
Chuck Leverfe3aca22005-08-25 16:25:50 -0700228void xprt_set_retrans_timeout_def(struct rpc_task *task);
229void xprt_set_retrans_timeout_rtt(struct rpc_task *task);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400230void xprt_wake_pending_tasks(struct rpc_xprt *xprt, int status);
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400231void xprt_wait_for_buffer_space(struct rpc_task *task);
232void xprt_write_space(struct rpc_xprt *xprt);
Chuck Lever1570c1e2005-08-25 16:25:52 -0700233void xprt_update_rtt(struct rpc_task *task);
Chuck Lever46c0ee82005-08-25 16:25:52 -0700234void xprt_adjust_cwnd(struct rpc_task *task, int result);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400235struct rpc_rqst * xprt_lookup_rqst(struct rpc_xprt *xprt, u32 xid);
Chuck Lever1570c1e2005-08-25 16:25:52 -0700236void xprt_complete_rqst(struct rpc_task *task, int copied);
Chuck Levera58dd392005-08-25 16:25:53 -0700237void xprt_release_rqst_cong(struct rpc_task *task);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400238void xprt_disconnect(struct rpc_xprt *xprt);
239
240/*
241 * Socket transport setup operations
242 */
243int xs_setup_udp(struct rpc_xprt *xprt, struct rpc_timeout *to);
244int xs_setup_tcp(struct rpc_xprt *xprt, struct rpc_timeout *to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Chuck Lever2226feb2005-08-11 16:25:38 -0400246/*
247 * Reserved bit positions in xprt->state
248 */
249#define XPRT_LOCKED (0)
250#define XPRT_CONNECTED (1)
251#define XPRT_CONNECTING (2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Chuck Lever2226feb2005-08-11 16:25:38 -0400253static inline void xprt_set_connected(struct rpc_xprt *xprt)
254{
255 set_bit(XPRT_CONNECTED, &xprt->state);
256}
257
258static inline void xprt_clear_connected(struct rpc_xprt *xprt)
259{
260 clear_bit(XPRT_CONNECTED, &xprt->state);
261}
262
263static inline int xprt_connected(struct rpc_xprt *xprt)
264{
265 return test_bit(XPRT_CONNECTED, &xprt->state);
266}
267
268static inline int xprt_test_and_set_connected(struct rpc_xprt *xprt)
269{
270 return test_and_set_bit(XPRT_CONNECTED, &xprt->state);
271}
272
273static inline int xprt_test_and_clear_connected(struct rpc_xprt *xprt)
274{
275 return test_and_clear_bit(XPRT_CONNECTED, &xprt->state);
276}
277
278static inline void xprt_clear_connecting(struct rpc_xprt *xprt)
279{
280 smp_mb__before_clear_bit();
281 clear_bit(XPRT_CONNECTING, &xprt->state);
282 smp_mb__after_clear_bit();
283}
284
285static inline int xprt_connecting(struct rpc_xprt *xprt)
286{
287 return test_bit(XPRT_CONNECTING, &xprt->state);
288}
289
290static inline int xprt_test_and_set_connecting(struct rpc_xprt *xprt)
291{
292 return test_and_set_bit(XPRT_CONNECTING, &xprt->state);
293}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295#endif /* __KERNEL__*/
296
297#endif /* _LINUX_SUNRPC_XPRT_H */