blob: bdeba8538c719892407c0f112e809bb166cc179c [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>
Trond Myklebust6b6ca862006-09-05 12:55:57 -040015#include <linux/kref.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/sunrpc/sched.h>
17#include <linux/sunrpc/xdr.h>
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019extern unsigned int xprt_udp_slot_table_entries;
20extern unsigned int xprt_tcp_slot_table_entries;
21
22#define RPC_MIN_SLOT_TABLE (2U)
23#define RPC_DEF_SLOT_TABLE (16U)
24#define RPC_MAX_SLOT_TABLE (128U)
25
Chuck Levera246b012005-08-11 16:25:23 -040026/*
27 * RPC call and reply header size as number of 32bit words (verifier
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * size computed separately)
29 */
30#define RPC_CALLHDRSIZE 6
31#define RPC_REPHDRSIZE 4
32
33/*
Chuck Lever529b33c2005-08-25 16:25:54 -070034 * Parameters for choosing a free port
35 */
36extern unsigned int xprt_min_resvport;
37extern unsigned int xprt_max_resvport;
38
39#define RPC_MIN_RESVPORT (1U)
40#define RPC_MAX_RESVPORT (65535U)
Chuck Lever8e037092006-08-22 20:06:15 -040041#define RPC_DEF_MIN_RESVPORT (665U)
Chuck Lever529b33c2005-08-25 16:25:54 -070042#define RPC_DEF_MAX_RESVPORT (1023U)
43
44/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * This describes a timeout strategy
46 */
47struct rpc_timeout {
48 unsigned long to_initval, /* initial timeout */
49 to_maxval, /* max timeout */
50 to_increment; /* if !exponential */
51 unsigned int to_retries; /* max # of retries */
52 unsigned char to_exponential;
53};
54
Chuck Leveredb267a2006-08-22 20:06:18 -040055enum rpc_display_format_t {
56 RPC_DISPLAY_ADDR = 0,
57 RPC_DISPLAY_PORT,
58 RPC_DISPLAY_PROTO,
59 RPC_DISPLAY_ALL,
60 RPC_DISPLAY_MAX,
61};
62
Chuck Lever529b33c2005-08-25 16:25:54 -070063struct rpc_task;
64struct rpc_xprt;
Trond Myklebuste99170f2006-04-18 13:21:42 -040065struct seq_file;
Chuck Lever529b33c2005-08-25 16:25:54 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
68 * This describes a complete RPC request
69 */
70struct rpc_rqst {
71 /*
72 * This is the user-visible part
73 */
74 struct rpc_xprt * rq_xprt; /* RPC client */
75 struct xdr_buf rq_snd_buf; /* send buffer */
76 struct xdr_buf rq_rcv_buf; /* recv buffer */
77
78 /*
79 * This is the private part
80 */
81 struct rpc_task * rq_task; /* RPC task data */
82 __u32 rq_xid; /* request XID */
83 int rq_cong; /* has incremented xprt->cong */
84 int rq_received; /* receive completed */
85 u32 rq_seqno; /* gss seq no. used on req. */
J. Bruce Fieldsead5e1c2005-10-13 16:54:43 -040086 int rq_enc_pages_num;
87 struct page **rq_enc_pages; /* scratch pages for use by
88 gss privacy code */
89 void (*rq_release_snd_buf)(struct rpc_rqst *); /* release rq_enc_pages */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct list_head rq_list;
91
Chuck Lever02107142006-01-03 09:55:49 +010092 __u32 * rq_buffer; /* XDR encode buffer */
93 size_t rq_bufsize;
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct xdr_buf rq_private_buf; /* The receive buffer
96 * used in the softirq.
97 */
98 unsigned long rq_majortimeo; /* major timeout alarm */
99 unsigned long rq_timeout; /* Current timeout value */
100 unsigned int rq_retries; /* # of retries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 /*
103 * Partial send handling
104 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 u32 rq_bytes_sent; /* Bytes we have sent */
106
107 unsigned long rq_xtime; /* when transmitted */
108 int rq_ntrans;
109};
110#define rq_svec rq_snd_buf.head
111#define rq_slen rq_snd_buf.len
112
Chuck Levera246b012005-08-11 16:25:23 -0400113struct rpc_xprt_ops {
Chuck Lever470056c2005-08-25 16:25:56 -0700114 void (*set_buffer_size)(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize);
Chuck Leveredb267a2006-08-22 20:06:18 -0400115 char * (*print_addr)(struct rpc_xprt *xprt, enum rpc_display_format_t format);
Chuck Lever12a80462005-08-25 16:25:51 -0700116 int (*reserve_xprt)(struct rpc_task *task);
Chuck Lever49e9a892005-08-25 16:25:51 -0700117 void (*release_xprt)(struct rpc_xprt *xprt, struct rpc_task *task);
Chuck Leverbbf7c1d2006-08-22 20:06:16 -0400118 void (*rpcbind)(struct rpc_task *task);
Chuck Lever92200412006-01-03 09:55:51 +0100119 void (*set_port)(struct rpc_xprt *xprt, unsigned short port);
Chuck Levera246b012005-08-11 16:25:23 -0400120 void (*connect)(struct rpc_task *task);
Chuck Lever02107142006-01-03 09:55:49 +0100121 void * (*buf_alloc)(struct rpc_task *task, size_t size);
122 void (*buf_free)(struct rpc_task *task);
Chuck Levera246b012005-08-11 16:25:23 -0400123 int (*send_request)(struct rpc_task *task);
Chuck Leverfe3aca22005-08-25 16:25:50 -0700124 void (*set_retrans_timeout)(struct rpc_task *task);
Chuck Lever46c0ee82005-08-25 16:25:52 -0700125 void (*timer)(struct rpc_task *task);
Chuck Levera58dd392005-08-25 16:25:53 -0700126 void (*release_request)(struct rpc_task *task);
Chuck Levera246b012005-08-11 16:25:23 -0400127 void (*close)(struct rpc_xprt *xprt);
128 void (*destroy)(struct rpc_xprt *xprt);
Chuck Lever262ca072006-03-20 13:44:16 -0500129 void (*print_stats)(struct rpc_xprt *xprt, struct seq_file *seq);
Chuck Levera246b012005-08-11 16:25:23 -0400130};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132struct rpc_xprt {
Trond Myklebust6b6ca862006-09-05 12:55:57 -0400133 struct kref kref; /* Reference count */
Chuck Levera246b012005-08-11 16:25:23 -0400134 struct rpc_xprt_ops * ops; /* transport methods */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 struct socket * sock; /* BSD socket layer */
136 struct sock * inet; /* INET layer */
137
138 struct rpc_timeout timeout; /* timeout parms */
Chuck Leverc4efcb12006-08-22 20:06:19 -0400139 struct sockaddr_storage addr; /* server address */
140 size_t addrlen; /* size of server address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 int prot; /* IP protocol */
142
143 unsigned long cong; /* current congestion */
144 unsigned long cwnd; /* congestion window */
145
Chuck Lever470056c2005-08-25 16:25:56 -0700146 size_t rcvsize, /* transport rcv buffer size */
Chuck Lever55aa4f52005-08-11 16:25:47 -0400147 sndsize; /* transport send buffer size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 size_t max_payload; /* largest RPC payload size,
150 in bytes */
Chuck Lever808012f2005-08-25 16:25:49 -0700151 unsigned int tsh_size; /* size of transport specific
152 header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Chuck Lever4a681792006-08-22 20:06:15 -0400154 struct rpc_wait_queue binding; /* requests waiting on rpcbind */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct rpc_wait_queue sending; /* requests waiting to send */
156 struct rpc_wait_queue resend; /* requests waiting to resend */
157 struct rpc_wait_queue pending; /* requests in flight */
158 struct rpc_wait_queue backlog; /* waiting for slot */
159 struct list_head free; /* free slots */
160 struct rpc_rqst * slot; /* slot table storage */
161 unsigned int max_reqs; /* total slots */
Chuck Lever2226feb2005-08-11 16:25:38 -0400162 unsigned long state; /* transport state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 unsigned char shutdown : 1, /* being shut down */
Chuck Lever43118c22005-08-25 16:25:49 -0700164 resvport : 1; /* use a reserved port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /*
167 * XID
168 */
169 __u32 xid; /* Next XID value to use */
170
171 /*
172 * State of TCP reply receive stuff
173 */
174 u32 tcp_recm, /* Fragment header */
175 tcp_xid, /* Current XID */
176 tcp_reclen, /* fragment length */
177 tcp_offset; /* fragment offset */
178 unsigned long tcp_copied, /* copied to request */
179 tcp_flags;
180 /*
Chuck Lever55aa4f52005-08-11 16:25:47 -0400181 * Connection of transports
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 */
Chuck Lever03bf4b72005-08-25 16:25:55 -0700183 unsigned long connect_timeout,
184 bind_timeout,
185 reestablish_timeout;
Chuck Lever55aa4f52005-08-11 16:25:47 -0400186 struct work_struct connect_worker;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 unsigned short port;
Chuck Lever03bf4b72005-08-25 16:25:55 -0700188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 /*
Chuck Lever55aa4f52005-08-11 16:25:47 -0400190 * Disconnection of idle transports
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 */
192 struct work_struct task_cleanup;
193 struct timer_list timer;
Chuck Lever03bf4b72005-08-25 16:25:55 -0700194 unsigned long last_used,
195 idle_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /*
198 * Send stuff
199 */
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400200 spinlock_t transport_lock; /* lock transport info */
Chuck Lever5dc07722005-08-11 16:25:35 -0400201 spinlock_t reserve_lock; /* lock slot table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 struct rpc_task * snd_task; /* Task blocked in send */
203
204 struct list_head recv;
205
Chuck Lever262ca072006-03-20 13:44:16 -0500206 struct {
207 unsigned long bind_count, /* total number of binds */
208 connect_count, /* total number of connects */
209 connect_start, /* connect start timestamp */
210 connect_time, /* jiffies waiting for connect */
211 sends, /* how many complete requests */
212 recvs, /* how many complete requests */
213 bad_xids; /* lookup_rqst didn't find XID */
214
215 unsigned long long req_u, /* average requests on the wire */
216 bklog_u; /* backlog queue utilization */
217 } stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 void (*old_data_ready)(struct sock *, int);
220 void (*old_state_change)(struct sock *);
221 void (*old_write_space)(struct sock *);
Chuck Leveredb267a2006-08-22 20:06:18 -0400222
223 char * address_strings[RPC_DISPLAY_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224};
225
Chuck Levera246b012005-08-11 16:25:23 -0400226#define XPRT_LAST_FRAG (1 << 0)
227#define XPRT_COPY_RECM (1 << 1)
228#define XPRT_COPY_XID (1 << 2)
229#define XPRT_COPY_DATA (1 << 3)
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231#ifdef __KERNEL__
232
Chuck Lever55aa4f52005-08-11 16:25:47 -0400233/*
234 * Transport operations used by ULPs
235 */
Chuck Lever55aa4f52005-08-11 16:25:47 -0400236void xprt_set_timeout(struct rpc_timeout *to, unsigned int retr, unsigned long incr);
237
238/*
239 * Generic internal transport functions
240 */
Chuck Leverc2866762006-08-22 20:06:20 -0400241struct rpc_xprt * xprt_create_transport(int proto, struct sockaddr *addr, size_t size, struct rpc_timeout *toparms);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400242void xprt_connect(struct rpc_task *task);
243void xprt_reserve(struct rpc_task *task);
Chuck Lever12a80462005-08-25 16:25:51 -0700244int xprt_reserve_xprt(struct rpc_task *task);
245int xprt_reserve_xprt_cong(struct rpc_task *task);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400246int xprt_prepare_transmit(struct rpc_task *task);
247void xprt_transmit(struct rpc_task *task);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400248void xprt_end_transmit(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249int xprt_adjust_timeout(struct rpc_rqst *req);
Chuck Lever49e9a892005-08-25 16:25:51 -0700250void xprt_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task);
251void xprt_release_xprt_cong(struct rpc_xprt *xprt, struct rpc_task *task);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400252void xprt_release(struct rpc_task *task);
Trond Myklebust6b6ca862006-09-05 12:55:57 -0400253struct rpc_xprt * xprt_get(struct rpc_xprt *xprt);
254void xprt_put(struct rpc_xprt *xprt);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400255
Chuck Lever808012f2005-08-25 16:25:49 -0700256static inline u32 *xprt_skip_transport_header(struct rpc_xprt *xprt, u32 *p)
257{
258 return p + xprt->tsh_size;
259}
260
Chuck Lever55aa4f52005-08-11 16:25:47 -0400261/*
262 * Transport switch helper functions
263 */
Chuck Leverfe3aca22005-08-25 16:25:50 -0700264void xprt_set_retrans_timeout_def(struct rpc_task *task);
265void xprt_set_retrans_timeout_rtt(struct rpc_task *task);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400266void xprt_wake_pending_tasks(struct rpc_xprt *xprt, int status);
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400267void xprt_wait_for_buffer_space(struct rpc_task *task);
268void xprt_write_space(struct rpc_xprt *xprt);
Chuck Lever1570c1e2005-08-25 16:25:52 -0700269void xprt_update_rtt(struct rpc_task *task);
Chuck Lever46c0ee82005-08-25 16:25:52 -0700270void xprt_adjust_cwnd(struct rpc_task *task, int result);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400271struct rpc_rqst * xprt_lookup_rqst(struct rpc_xprt *xprt, u32 xid);
Chuck Lever1570c1e2005-08-25 16:25:52 -0700272void xprt_complete_rqst(struct rpc_task *task, int copied);
Chuck Levera58dd392005-08-25 16:25:53 -0700273void xprt_release_rqst_cong(struct rpc_task *task);
Chuck Lever55aa4f52005-08-11 16:25:47 -0400274void xprt_disconnect(struct rpc_xprt *xprt);
275
276/*
277 * Socket transport setup operations
278 */
279int xs_setup_udp(struct rpc_xprt *xprt, struct rpc_timeout *to);
280int xs_setup_tcp(struct rpc_xprt *xprt, struct rpc_timeout *to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Chuck Lever2226feb2005-08-11 16:25:38 -0400282/*
283 * Reserved bit positions in xprt->state
284 */
285#define XPRT_LOCKED (0)
286#define XPRT_CONNECTED (1)
287#define XPRT_CONNECTING (2)
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100288#define XPRT_CLOSE_WAIT (3)
Chuck Leverec739ef2006-08-22 20:06:15 -0400289#define XPRT_BOUND (4)
Chuck Lever4a681792006-08-22 20:06:15 -0400290#define XPRT_BINDING (5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Chuck Lever2226feb2005-08-11 16:25:38 -0400292static inline void xprt_set_connected(struct rpc_xprt *xprt)
293{
294 set_bit(XPRT_CONNECTED, &xprt->state);
295}
296
297static inline void xprt_clear_connected(struct rpc_xprt *xprt)
298{
299 clear_bit(XPRT_CONNECTED, &xprt->state);
300}
301
302static inline int xprt_connected(struct rpc_xprt *xprt)
303{
304 return test_bit(XPRT_CONNECTED, &xprt->state);
305}
306
307static inline int xprt_test_and_set_connected(struct rpc_xprt *xprt)
308{
309 return test_and_set_bit(XPRT_CONNECTED, &xprt->state);
310}
311
312static inline int xprt_test_and_clear_connected(struct rpc_xprt *xprt)
313{
314 return test_and_clear_bit(XPRT_CONNECTED, &xprt->state);
315}
316
317static inline void xprt_clear_connecting(struct rpc_xprt *xprt)
318{
319 smp_mb__before_clear_bit();
320 clear_bit(XPRT_CONNECTING, &xprt->state);
321 smp_mb__after_clear_bit();
322}
323
324static inline int xprt_connecting(struct rpc_xprt *xprt)
325{
326 return test_bit(XPRT_CONNECTING, &xprt->state);
327}
328
329static inline int xprt_test_and_set_connecting(struct rpc_xprt *xprt)
330{
331 return test_and_set_bit(XPRT_CONNECTING, &xprt->state);
332}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Chuck Leverec739ef2006-08-22 20:06:15 -0400334static inline void xprt_set_bound(struct rpc_xprt *xprt)
335{
336 test_and_set_bit(XPRT_BOUND, &xprt->state);
337}
338
339static inline int xprt_bound(struct rpc_xprt *xprt)
340{
341 return test_bit(XPRT_BOUND, &xprt->state);
342}
343
344static inline void xprt_clear_bound(struct rpc_xprt *xprt)
345{
346 clear_bit(XPRT_BOUND, &xprt->state);
347}
348
Chuck Lever4a681792006-08-22 20:06:15 -0400349static inline void xprt_clear_binding(struct rpc_xprt *xprt)
350{
351 smp_mb__before_clear_bit();
352 clear_bit(XPRT_BINDING, &xprt->state);
353 smp_mb__after_clear_bit();
354}
355
356static inline int xprt_test_and_set_binding(struct rpc_xprt *xprt)
357{
358 return test_and_set_bit(XPRT_BINDING, &xprt->state);
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#endif /* __KERNEL__*/
362
363#endif /* _LINUX_SUNRPC_XPRT_H */