blob: 84f3585c572807ec03053137d33f1dd2604d2084 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_NFS_XDR_H
2#define _LINUX_NFS_XDR_H
3
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00004#include <linux/nfsacl.h>
Boaz Harroshd7031582009-12-03 20:28:47 +02005#include <linux/nfs3.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Chuck Lever40859d72005-11-30 18:09:02 -05007/*
8 * To change the maximum rsize and wsize supported by the NFS client, adjust
9 * NFS_MAX_FILE_IO_SIZE. 64KB is a typical maximum, but some servers can
10 * support a megabyte or more. The default is left at 4096 bytes, which is
11 * reasonable for NFS over UDP.
12 */
13#define NFS_MAX_FILE_IO_SIZE (1048576U)
14#define NFS_DEF_FILE_IO_SIZE (4096U)
15#define NFS_MIN_FILE_IO_SIZE (1024U)
16
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -040017struct nfs_fsid {
18 uint64_t major;
19 uint64_t minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020};
21
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -040022/*
23 * Helper for checking equality between 2 fsids.
24 */
25static inline int nfs_fsid_equal(const struct nfs_fsid *a, const struct nfs_fsid *b)
26{
27 return a->major == b->major && a->minor == b->minor;
28}
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030struct nfs_fattr {
Trond Myklebust9e6e70f2009-03-11 14:10:24 -040031 unsigned int valid; /* which fields are valid */
Trond Myklebustbca79472009-03-11 14:10:26 -040032 umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 __u32 nlink;
34 __u32 uid;
35 __u32 gid;
Richard Kennedy9fa8d662008-08-26 16:23:20 +010036 dev_t rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 __u64 size;
38 union {
39 struct {
40 __u32 blocksize;
41 __u32 blocks;
42 } nfs2;
43 struct {
44 __u64 used;
45 } nfs3;
46 } du;
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -040047 struct nfs_fsid fsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 __u64 fileid;
49 struct timespec atime;
50 struct timespec mtime;
51 struct timespec ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 __u64 change_attr; /* NFSv4 change attribute */
53 __u64 pre_change_attr;/* pre-op NFSv4 change attribute */
Trond Myklebust1ca277d2009-03-11 14:10:25 -040054 __u64 pre_size; /* pre_op_attr.size */
55 struct timespec pre_mtime; /* pre_op_attr.mtime */
56 struct timespec pre_ctime; /* pre_op_attr.ctime */
Trond Myklebust33801142005-10-27 22:12:39 -040057 unsigned long time_start;
Trond Myklebust4704f0e2008-10-14 19:16:07 -040058 unsigned long gencount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Trond Myklebust9e6e70f2009-03-11 14:10:24 -040061#define NFS_ATTR_FATTR_TYPE (1U << 0)
62#define NFS_ATTR_FATTR_MODE (1U << 1)
63#define NFS_ATTR_FATTR_NLINK (1U << 2)
64#define NFS_ATTR_FATTR_OWNER (1U << 3)
65#define NFS_ATTR_FATTR_GROUP (1U << 4)
66#define NFS_ATTR_FATTR_RDEV (1U << 5)
67#define NFS_ATTR_FATTR_SIZE (1U << 6)
68#define NFS_ATTR_FATTR_PRESIZE (1U << 7)
69#define NFS_ATTR_FATTR_BLOCKS_USED (1U << 8)
70#define NFS_ATTR_FATTR_SPACE_USED (1U << 9)
71#define NFS_ATTR_FATTR_FSID (1U << 10)
72#define NFS_ATTR_FATTR_FILEID (1U << 11)
73#define NFS_ATTR_FATTR_ATIME (1U << 12)
74#define NFS_ATTR_FATTR_MTIME (1U << 13)
75#define NFS_ATTR_FATTR_CTIME (1U << 14)
76#define NFS_ATTR_FATTR_PREMTIME (1U << 15)
77#define NFS_ATTR_FATTR_PRECTIME (1U << 16)
78#define NFS_ATTR_FATTR_CHANGE (1U << 17)
79#define NFS_ATTR_FATTR_PRECHANGE (1U << 18)
80#define NFS_ATTR_FATTR_V4_REFERRAL (1U << 19) /* NFSv4 referral */
81
82#define NFS_ATTR_FATTR (NFS_ATTR_FATTR_TYPE \
83 | NFS_ATTR_FATTR_MODE \
84 | NFS_ATTR_FATTR_NLINK \
85 | NFS_ATTR_FATTR_OWNER \
86 | NFS_ATTR_FATTR_GROUP \
87 | NFS_ATTR_FATTR_RDEV \
88 | NFS_ATTR_FATTR_SIZE \
89 | NFS_ATTR_FATTR_FSID \
90 | NFS_ATTR_FATTR_FILEID \
91 | NFS_ATTR_FATTR_ATIME \
92 | NFS_ATTR_FATTR_MTIME \
93 | NFS_ATTR_FATTR_CTIME)
94#define NFS_ATTR_FATTR_V2 (NFS_ATTR_FATTR \
95 | NFS_ATTR_FATTR_BLOCKS_USED)
96#define NFS_ATTR_FATTR_V3 (NFS_ATTR_FATTR \
97 | NFS_ATTR_FATTR_SPACE_USED)
98#define NFS_ATTR_FATTR_V4 (NFS_ATTR_FATTR \
99 | NFS_ATTR_FATTR_SPACE_USED \
100 | NFS_ATTR_FATTR_CHANGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102/*
103 * Info on the file system
104 */
105struct nfs_fsinfo {
106 struct nfs_fattr *fattr; /* Post-op attributes */
107 __u32 rtmax; /* max. read transfer size */
108 __u32 rtpref; /* pref. read transfer size */
109 __u32 rtmult; /* reads should be multiple of this */
110 __u32 wtmax; /* max. write transfer size */
111 __u32 wtpref; /* pref. write transfer size */
112 __u32 wtmult; /* writes should be multiple of this */
113 __u32 dtpref; /* pref. readdir transfer size */
114 __u64 maxfilesize;
Ricardo Labiaga6b967242010-10-12 16:30:05 -0700115 struct timespec time_delta; /* server time granularity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 __u32 lease_time; /* in seconds */
Andy Adamson504913f2010-10-20 00:17:57 -0400117 __u32 layouttype; /* supported pnfs layout driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
120struct nfs_fsstat {
121 struct nfs_fattr *fattr; /* Post-op attributes */
122 __u64 tbytes; /* total size in bytes */
123 __u64 fbytes; /* # of free bytes */
124 __u64 abytes; /* # of bytes available to user */
125 __u64 tfiles; /* # of files */
126 __u64 ffiles; /* # of free files */
127 __u64 afiles; /* # of files available to user */
128};
129
130struct nfs2_fsstat {
131 __u32 tsize; /* Server transfer size */
132 __u32 bsize; /* Filesystem block size */
133 __u32 blocks; /* No. of "bsize" blocks on filesystem */
134 __u32 bfree; /* No. of free "bsize" blocks */
135 __u32 bavail; /* No. of available "bsize" blocks */
136};
137
138struct nfs_pathconf {
139 struct nfs_fattr *fattr; /* Post-op attributes */
140 __u32 max_link; /* max # of hard links */
141 __u32 max_namelen; /* max name length */
142};
143
144struct nfs4_change_info {
145 u32 atomic;
146 u64 before;
147 u64 after;
148};
149
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700150struct nfs_seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400151
Andy Adamson557134a2009-04-01 09:21:53 -0400152/* nfs41 sessions channel attributes */
153struct nfs4_channel_attrs {
154 u32 headerpadsz;
155 u32 max_rqst_sz;
156 u32 max_resp_sz;
157 u32 max_resp_sz_cached;
158 u32 max_ops;
159 u32 max_reqs;
160};
161
162/* nfs41 sessions slot seqid */
163struct nfs4_slot {
164 u32 seq_nr;
165};
166
Benny Halevy9ff71c32009-04-01 09:21:52 -0400167struct nfs4_sequence_args {
Benny Halevyf3752972009-04-01 09:22:04 -0400168 struct nfs4_session *sa_session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400169 u8 sa_slotid;
170 u8 sa_cache_this;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400171};
172
173struct nfs4_sequence_res {
Benny Halevyf3752972009-04-01 09:22:04 -0400174 struct nfs4_session *sr_session;
Benny Halevydfb4f302010-09-24 09:17:01 -0400175 struct nfs4_slot *sr_slot; /* slot used to send request */
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400176 int sr_status; /* sequence operation status */
Richard Kennedya01878a2009-12-03 15:58:56 -0500177 unsigned long sr_renewal_time;
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500178 u32 sr_status_flags;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400179};
180
Andy Adamson2050f0c2009-04-01 09:22:30 -0400181struct nfs4_get_lease_time_args {
182 struct nfs4_sequence_args la_seq_args;
183};
184
185struct nfs4_get_lease_time_res {
186 struct nfs_fsinfo *lr_fsinfo;
187 struct nfs4_sequence_res lr_seq_res;
188};
189
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400190#define PNFS_LAYOUT_MAXSIZE 4096
191
192struct nfs4_layoutdriver_data {
193 __u32 len;
194 void *buf;
195};
196
197struct pnfs_layout_range {
198 u32 iomode;
199 u64 offset;
200 u64 length;
201};
202
203struct nfs4_layoutget_args {
204 __u32 type;
205 struct pnfs_layout_range range;
206 __u64 minlength;
207 __u32 maxcount;
208 struct inode *inode;
209 struct nfs_open_context *ctx;
210 struct nfs4_sequence_args seq_args;
Fred Isamancf7d63f2011-01-06 11:36:25 +0000211 nfs4_stateid stateid;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400212};
213
214struct nfs4_layoutget_res {
215 __u32 return_on_close;
216 struct pnfs_layout_range range;
217 __u32 type;
218 nfs4_stateid stateid;
219 struct nfs4_layoutdriver_data layout;
220 struct nfs4_sequence_res seq_res;
221};
222
223struct nfs4_layoutget {
224 struct nfs4_layoutget_args args;
225 struct nfs4_layoutget_res res;
226 struct pnfs_layout_segment **lsegpp;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400227};
228
229struct nfs4_getdeviceinfo_args {
230 struct pnfs_device *pdev;
231 struct nfs4_sequence_args seq_args;
232};
233
234struct nfs4_getdeviceinfo_res {
235 struct pnfs_device *pdev;
236 struct nfs4_sequence_res seq_res;
237};
238
Andy Adamson863a3c62011-03-23 13:27:54 +0000239struct nfs4_layoutcommit_args {
240 nfs4_stateid stateid;
241 __u64 lastbytewritten;
242 struct inode *inode;
243 const u32 *bitmask;
244 struct nfs4_sequence_args seq_args;
245};
246
247struct nfs4_layoutcommit_res {
248 struct nfs_fattr *fattr;
249 const struct nfs_server *server;
250 struct nfs4_sequence_res seq_res;
251};
252
253struct nfs4_layoutcommit_data {
254 struct rpc_task task;
255 struct nfs_fattr fattr;
256 struct pnfs_layout_segment *lseg;
257 struct rpc_cred *cred;
258 struct nfs4_layoutcommit_args args;
259 struct nfs4_layoutcommit_res res;
260};
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/*
263 * Arguments to the open call.
264 */
265struct nfs_openargs {
266 const struct nfs_fh * fh;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700267 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 int open_flags;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500269 fmode_t fmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 __u64 clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400271 __u64 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 union {
Trond Myklebustd77d76f2010-06-16 09:52:27 -0400273 struct {
274 struct iattr * attrs; /* UNCHECKED, GUARDED */
275 nfs4_verifier verifier; /* EXCLUSIVE */
276 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 nfs4_stateid delegation; /* CLAIM_DELEGATE_CUR */
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -0500278 fmode_t delegation_type; /* CLAIM_PREVIOUS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 } u;
280 const struct qstr * name;
281 const struct nfs_server *server; /* Needed for ID mapping */
282 const u32 * bitmask;
283 __u32 claim;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400284 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
287struct nfs_openres {
288 nfs4_stateid stateid;
289 struct nfs_fh fh;
290 struct nfs4_change_info cinfo;
291 __u32 rflags;
292 struct nfs_fattr * f_attr;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400293 struct nfs_fattr * dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400294 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 const struct nfs_server *server;
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -0500296 fmode_t delegation_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 nfs4_stateid delegation;
298 __u32 do_recall;
299 __u64 maxsize;
Jeff Laytonaa53ed52007-06-05 14:49:03 -0400300 __u32 attrset[NFS4_BITMAP_SIZE];
Benny Halevy9ff71c32009-04-01 09:21:52 -0400301 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
304/*
305 * Arguments to the open_confirm call.
306 */
307struct nfs_open_confirmargs {
308 const struct nfs_fh * fh;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100309 nfs4_stateid * stateid;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700310 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
313struct nfs_open_confirmres {
314 nfs4_stateid stateid;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400315 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316};
317
318/*
319 * Arguments to the close call.
320 */
321struct nfs_closeargs {
322 struct nfs_fh * fh;
Trond Myklebust95121352005-10-18 14:20:12 -0700323 nfs4_stateid * stateid;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700324 struct nfs_seqid * seqid;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500325 fmode_t fmode;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400326 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400327 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328};
329
330struct nfs_closeres {
331 nfs4_stateid stateid;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400332 struct nfs_fattr * fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400333 struct nfs_seqid * seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400334 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400335 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336};
337/*
338 * * Arguments to the lock,lockt, and locku call.
339 * */
340struct nfs_lowner {
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100341 __u64 clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400342 __u64 id;
Trond Myklebustd035c362010-12-21 10:45:27 -0500343 dev_t s_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344};
345
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100346struct nfs_lock_args {
347 struct nfs_fh * fh;
348 struct file_lock * fl;
Trond Myklebust06735b32005-10-18 14:20:15 -0700349 struct nfs_seqid * lock_seqid;
350 nfs4_stateid * lock_stateid;
351 struct nfs_seqid * open_seqid;
352 nfs4_stateid * open_stateid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100353 struct nfs_lowner lock_owner;
354 unsigned char block : 1;
355 unsigned char reclaim : 1;
356 unsigned char new_lock_owner : 1;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400357 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358};
359
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100360struct nfs_lock_res {
Trond Myklebustc1d51932008-04-07 13:20:54 -0400361 nfs4_stateid stateid;
362 struct nfs_seqid * lock_seqid;
363 struct nfs_seqid * open_seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400364 struct nfs4_sequence_res seq_res;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100365};
366
367struct nfs_locku_args {
368 struct nfs_fh * fh;
369 struct file_lock * fl;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700370 struct nfs_seqid * seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -0700371 nfs4_stateid * stateid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400372 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373};
374
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100375struct nfs_locku_res {
Trond Myklebustc1d51932008-04-07 13:20:54 -0400376 nfs4_stateid stateid;
377 struct nfs_seqid * seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400378 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379};
380
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100381struct nfs_lockt_args {
382 struct nfs_fh * fh;
383 struct file_lock * fl;
384 struct nfs_lowner lock_owner;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400385 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386};
387
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100388struct nfs_lockt_res {
389 struct file_lock * denied; /* LOCK, LOCKT failed */
Benny Halevy9ff71c32009-04-01 09:21:52 -0400390 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391};
392
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400393struct nfs_release_lockowner_args {
394 struct nfs_lowner lock_owner;
395};
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397struct nfs4_delegreturnargs {
398 const struct nfs_fh *fhandle;
399 const nfs4_stateid *stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100400 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400401 struct nfs4_sequence_args seq_args;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100402};
403
404struct nfs4_delegreturnres {
405 struct nfs_fattr * fattr;
406 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400407 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408};
409
410/*
411 * Arguments to the read call.
412 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413struct nfs_readargs {
414 struct nfs_fh * fh;
415 struct nfs_open_context *context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400416 struct nfs_lock_context *lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 __u64 offset;
418 __u32 count;
419 unsigned int pgbase;
420 struct page ** pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400421 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422};
423
424struct nfs_readres {
425 struct nfs_fattr * fattr;
426 __u32 count;
427 int eof;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400428 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429};
430
431/*
432 * Arguments to the write call.
433 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434struct nfs_writeargs {
435 struct nfs_fh * fh;
436 struct nfs_open_context *context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400437 struct nfs_lock_context *lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 __u64 offset;
439 __u32 count;
440 enum nfs3_stable_how stable;
441 unsigned int pgbase;
442 struct page ** pages;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400443 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400444 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445};
446
447struct nfs_writeverf {
448 enum nfs3_stable_how committed;
Al Virobc4785c2006-10-19 23:28:51 -0700449 __be32 verifier[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450};
451
452struct nfs_writeres {
453 struct nfs_fattr * fattr;
454 struct nfs_writeverf * verf;
455 __u32 count;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400456 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400457 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458};
459
460/*
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400461 * Common arguments to the unlink call
462 */
463struct nfs_removeargs {
464 const struct nfs_fh *fh;
465 struct qstr name;
466 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400467 struct nfs4_sequence_args seq_args;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400468};
469
470struct nfs_removeres {
471 const struct nfs_server *server;
Trond Myklebustd3468902010-04-16 16:22:50 -0400472 struct nfs_fattr *dir_attr;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400473 struct nfs4_change_info cinfo;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400474 struct nfs4_sequence_res seq_res;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400475};
476
477/*
Jeff Layton920769f2010-09-17 17:30:25 -0400478 * Common arguments to the rename call
479 */
480struct nfs_renameargs {
481 const struct nfs_fh *old_dir;
482 const struct nfs_fh *new_dir;
483 const struct qstr *old_name;
484 const struct qstr *new_name;
485 const u32 *bitmask;
486 struct nfs4_sequence_args seq_args;
487};
488
Jeff Laytone8582a82010-09-17 17:31:06 -0400489struct nfs_renameres {
490 const struct nfs_server *server;
491 struct nfs4_change_info old_cinfo;
492 struct nfs_fattr *old_fattr;
493 struct nfs4_change_info new_cinfo;
494 struct nfs_fattr *new_fattr;
495 struct nfs4_sequence_res seq_res;
496};
497
Jeff Layton920769f2010-09-17 17:30:25 -0400498/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * Argument struct for decode_entry function
500 */
501struct nfs_entry {
502 __u64 ino;
503 __u64 cookie,
504 prev_cookie;
505 const char * name;
506 unsigned int len;
507 int eof;
508 struct nfs_fh * fh;
509 struct nfs_fattr * fattr;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500510 unsigned char d_type;
Chuck Lever573c4e12010-12-14 14:58:11 +0000511 struct nfs_server * server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512};
513
514/*
515 * The following types are for NFSv2 only.
516 */
517struct nfs_sattrargs {
518 struct nfs_fh * fh;
519 struct iattr * sattr;
520};
521
522struct nfs_diropargs {
523 struct nfs_fh * fh;
524 const char * name;
525 unsigned int len;
526};
527
528struct nfs_createargs {
529 struct nfs_fh * fh;
530 const char * name;
531 unsigned int len;
532 struct iattr * sattr;
533};
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535struct nfs_setattrargs {
536 struct nfs_fh * fh;
537 nfs4_stateid stateid;
538 struct iattr * iap;
539 const struct nfs_server * server; /* Needed for name mapping */
540 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400541 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542};
543
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000544struct nfs_setaclargs {
545 struct nfs_fh * fh;
546 size_t acl_len;
547 unsigned int acl_pgbase;
548 struct page ** acl_pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400549 struct nfs4_sequence_args seq_args;
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000550};
551
Benny Halevy73c403a2009-04-01 09:22:01 -0400552struct nfs_setaclres {
553 struct nfs4_sequence_res seq_res;
554};
555
J. Bruce Fields029d1052005-06-22 17:16:22 +0000556struct nfs_getaclargs {
557 struct nfs_fh * fh;
558 size_t acl_len;
559 unsigned int acl_pgbase;
560 struct page ** acl_pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400561 struct nfs4_sequence_args seq_args;
J. Bruce Fields029d1052005-06-22 17:16:22 +0000562};
563
Benny Halevy663c79b2009-04-01 09:21:59 -0400564struct nfs_getaclres {
565 size_t acl_len;
566 struct nfs4_sequence_res seq_res;
567};
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569struct nfs_setattrres {
570 struct nfs_fattr * fattr;
571 const struct nfs_server * server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400572 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573};
574
575struct nfs_linkargs {
576 struct nfs_fh * fromfh;
577 struct nfs_fh * tofh;
578 const char * toname;
579 unsigned int tolen;
580};
581
582struct nfs_symlinkargs {
583 struct nfs_fh * fromfh;
584 const char * fromname;
585 unsigned int fromlen;
Chuck Lever94a6d752006-08-22 20:06:23 -0400586 struct page ** pages;
587 unsigned int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 struct iattr * sattr;
589};
590
591struct nfs_readdirargs {
592 struct nfs_fh * fh;
593 __u32 cookie;
594 unsigned int count;
595 struct page ** pages;
596};
597
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000598struct nfs3_getaclargs {
599 struct nfs_fh * fh;
600 int mask;
601 struct page ** pages;
602};
603
604struct nfs3_setaclargs {
605 struct inode * inode;
606 int mask;
607 struct posix_acl * acl_access;
608 struct posix_acl * acl_default;
Trond Myklebustae461412009-03-10 20:33:18 -0400609 size_t len;
610 unsigned int npages;
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000611 struct page ** pages;
612};
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614struct nfs_diropok {
615 struct nfs_fh * fh;
616 struct nfs_fattr * fattr;
617};
618
619struct nfs_readlinkargs {
620 struct nfs_fh * fh;
621 unsigned int pgbase;
622 unsigned int pglen;
623 struct page ** pages;
624};
625
626struct nfs3_sattrargs {
627 struct nfs_fh * fh;
628 struct iattr * sattr;
629 unsigned int guard;
630 struct timespec guardtime;
631};
632
633struct nfs3_diropargs {
634 struct nfs_fh * fh;
635 const char * name;
636 unsigned int len;
637};
638
639struct nfs3_accessargs {
640 struct nfs_fh * fh;
641 __u32 access;
642};
643
644struct nfs3_createargs {
645 struct nfs_fh * fh;
646 const char * name;
647 unsigned int len;
648 struct iattr * sattr;
649 enum nfs3_createmode createmode;
Al Virobc4785c2006-10-19 23:28:51 -0700650 __be32 verifier[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651};
652
653struct nfs3_mkdirargs {
654 struct nfs_fh * fh;
655 const char * name;
656 unsigned int len;
657 struct iattr * sattr;
658};
659
660struct nfs3_symlinkargs {
661 struct nfs_fh * fromfh;
662 const char * fromname;
663 unsigned int fromlen;
Chuck Lever94a6d752006-08-22 20:06:23 -0400664 struct page ** pages;
665 unsigned int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 struct iattr * sattr;
667};
668
669struct nfs3_mknodargs {
670 struct nfs_fh * fh;
671 const char * name;
672 unsigned int len;
673 enum nfs3_ftype type;
674 struct iattr * sattr;
675 dev_t rdev;
676};
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678struct nfs3_linkargs {
679 struct nfs_fh * fromfh;
680 struct nfs_fh * tofh;
681 const char * toname;
682 unsigned int tolen;
683};
684
685struct nfs3_readdirargs {
686 struct nfs_fh * fh;
687 __u64 cookie;
Al Virobc4785c2006-10-19 23:28:51 -0700688 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 int plus;
690 unsigned int count;
691 struct page ** pages;
692};
693
694struct nfs3_diropres {
695 struct nfs_fattr * dir_attr;
696 struct nfs_fh * fh;
697 struct nfs_fattr * fattr;
698};
699
700struct nfs3_accessres {
701 struct nfs_fattr * fattr;
702 __u32 access;
703};
704
705struct nfs3_readlinkargs {
706 struct nfs_fh * fh;
707 unsigned int pgbase;
708 unsigned int pglen;
709 struct page ** pages;
710};
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712struct nfs3_linkres {
713 struct nfs_fattr * dir_attr;
714 struct nfs_fattr * fattr;
715};
716
717struct nfs3_readdirres {
718 struct nfs_fattr * dir_attr;
Al Virobc4785c2006-10-19 23:28:51 -0700719 __be32 * verf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 int plus;
721};
722
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000723struct nfs3_getaclres {
724 struct nfs_fattr * fattr;
725 int mask;
726 unsigned int acl_access_count;
727 unsigned int acl_default_count;
728 struct posix_acl * acl_access;
729 struct posix_acl * acl_default;
730};
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732#ifdef CONFIG_NFS_V4
733
734typedef u64 clientid4;
735
736struct nfs4_accessargs {
737 const struct nfs_fh * fh;
Trond Myklebust76b32992007-08-10 17:45:11 -0400738 const u32 * bitmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 u32 access;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400740 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741};
742
743struct nfs4_accessres {
Trond Myklebust76b32992007-08-10 17:45:11 -0400744 const struct nfs_server * server;
745 struct nfs_fattr * fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 u32 supported;
747 u32 access;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400748 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749};
750
751struct nfs4_create_arg {
752 u32 ftype;
753 union {
Chuck Lever94a6d752006-08-22 20:06:23 -0400754 struct {
755 struct page ** pages;
756 unsigned int len;
757 } symlink; /* NF4LNK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 struct {
759 u32 specdata1;
760 u32 specdata2;
761 } device; /* NF4BLK, NF4CHR */
762 } u;
763 const struct qstr * name;
764 const struct nfs_server * server;
765 const struct iattr * attrs;
766 const struct nfs_fh * dir_fh;
767 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400768 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769};
770
771struct nfs4_create_res {
772 const struct nfs_server * server;
773 struct nfs_fh * fh;
774 struct nfs_fattr * fattr;
775 struct nfs4_change_info dir_cinfo;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400776 struct nfs_fattr * dir_fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400777 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778};
779
780struct nfs4_fsinfo_arg {
781 const struct nfs_fh * fh;
782 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400783 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784};
785
Benny Halevy3dda5e42009-04-01 09:21:57 -0400786struct nfs4_fsinfo_res {
787 struct nfs_fsinfo *fsinfo;
788 struct nfs4_sequence_res seq_res;
789};
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791struct nfs4_getattr_arg {
792 const struct nfs_fh * fh;
793 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400794 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795};
796
797struct nfs4_getattr_res {
798 const struct nfs_server * server;
799 struct nfs_fattr * fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400800 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801};
802
803struct nfs4_link_arg {
804 const struct nfs_fh * fh;
805 const struct nfs_fh * dir_fh;
806 const struct qstr * name;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400807 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400808 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809};
810
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400811struct nfs4_link_res {
812 const struct nfs_server * server;
813 struct nfs_fattr * fattr;
814 struct nfs4_change_info cinfo;
815 struct nfs_fattr * dir_attr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400816 struct nfs4_sequence_res seq_res;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400817};
818
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820struct nfs4_lookup_arg {
821 const struct nfs_fh * dir_fh;
822 const struct qstr * name;
823 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400824 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825};
826
827struct nfs4_lookup_res {
828 const struct nfs_server * server;
829 struct nfs_fattr * fattr;
830 struct nfs_fh * fh;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400831 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832};
833
834struct nfs4_lookup_root_arg {
835 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400836 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837};
838
839struct nfs4_pathconf_arg {
840 const struct nfs_fh * fh;
841 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400842 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843};
844
Benny Halevyd45b2982009-04-01 09:21:58 -0400845struct nfs4_pathconf_res {
846 struct nfs_pathconf *pathconf;
847 struct nfs4_sequence_res seq_res;
848};
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850struct nfs4_readdir_arg {
851 const struct nfs_fh * fh;
852 u64 cookie;
853 nfs4_verifier verifier;
854 u32 count;
855 struct page ** pages; /* zero-copy data */
856 unsigned int pgbase; /* zero-copy data */
857 const u32 * bitmask;
Bryan Schumaker82f2e542010-10-21 16:33:18 -0400858 int plus;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400859 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860};
861
862struct nfs4_readdir_res {
863 nfs4_verifier verifier;
864 unsigned int pgbase;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400865 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866};
867
868struct nfs4_readlink {
869 const struct nfs_fh * fh;
870 unsigned int pgbase;
871 unsigned int pglen; /* zero-copy data */
872 struct page ** pages; /* zero-copy data */
Benny Halevy9ff71c32009-04-01 09:21:52 -0400873 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874};
875
Benny Halevyf50c7002009-04-01 09:21:55 -0400876struct nfs4_readlink_res {
877 struct nfs4_sequence_res seq_res;
878};
879
Trond Myklebust19d771f2008-10-08 13:54:52 -0400880#define NFS4_SETCLIENTID_NAMELEN (127)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881struct nfs4_setclientid {
Chuck Levercc38bac2007-12-10 14:56:54 -0500882 const nfs4_verifier * sc_verifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 unsigned int sc_name_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400884 char sc_name[NFS4_SETCLIENTID_NAMELEN + 1];
Chuck Levercc38bac2007-12-10 14:56:54 -0500885 u32 sc_prog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 unsigned int sc_netid_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400887 char sc_netid[RPCBIND_MAXNETIDLEN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 unsigned int sc_uaddr_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400889 char sc_uaddr[RPCBIND_MAXUADDRLEN + 1];
Chuck Levercc38bac2007-12-10 14:56:54 -0500890 u32 sc_cb_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891};
892
Trond Myklebustbb8b27e2010-04-16 16:43:06 -0400893struct nfs4_setclientid_res {
894 u64 clientid;
895 nfs4_verifier confirm;
896};
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898struct nfs4_statfs_arg {
899 const struct nfs_fh * fh;
900 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400901 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902};
903
Benny Halevy24ad1482009-04-01 09:21:56 -0400904struct nfs4_statfs_res {
905 struct nfs_fsstat *fsstat;
906 struct nfs4_sequence_res seq_res;
907};
908
Benny Halevy43652ad2009-04-01 09:21:54 -0400909struct nfs4_server_caps_arg {
910 struct nfs_fh *fhandle;
911 struct nfs4_sequence_args seq_args;
912};
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914struct nfs4_server_caps_res {
915 u32 attr_bitmask[2];
916 u32 acl_bitmask;
917 u32 has_links;
918 u32 has_symlinks;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400919 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920};
921
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400922struct nfs4_string {
923 unsigned int len;
924 char *data;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400925};
926
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400927#define NFS4_PATHNAME_MAXCOMPONENTS 512
928struct nfs4_pathname {
929 unsigned int ncomponents;
930 struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS];
931};
932
933#define NFS4_FS_LOCATION_MAXSERVERS 10
934struct nfs4_fs_location {
935 unsigned int nservers;
936 struct nfs4_string servers[NFS4_FS_LOCATION_MAXSERVERS];
937 struct nfs4_pathname rootpath;
938};
939
940#define NFS4_FS_LOCATIONS_MAXENTRIES 10
941struct nfs4_fs_locations {
Trond Myklebust683b57b2006-06-09 09:34:22 -0400942 struct nfs_fattr fattr;
943 const struct nfs_server *server;
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400944 struct nfs4_pathname fs_path;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400945 int nlocations;
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400946 struct nfs4_fs_location locations[NFS4_FS_LOCATIONS_MAXENTRIES];
Trond Myklebust683b57b2006-06-09 09:34:22 -0400947};
948
949struct nfs4_fs_locations_arg {
950 const struct nfs_fh *dir_fh;
951 const struct qstr *name;
952 struct page *page;
953 const u32 *bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400954 struct nfs4_sequence_args seq_args;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400955};
956
Benny Halevy22958462009-04-01 09:22:02 -0400957struct nfs4_fs_locations_res {
958 struct nfs4_fs_locations *fs_locations;
959 struct nfs4_sequence_res seq_res;
960};
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962#endif /* CONFIG_NFS_V4 */
963
Benny Halevy99fe60d2009-04-01 09:22:29 -0400964struct nfstime4 {
965 u64 seconds;
966 u32 nseconds;
967};
968
969#ifdef CONFIG_NFS_V4_1
970struct nfs_impl_id4 {
971 u32 domain_len;
972 char *domain;
973 u32 name_len;
974 char *name;
975 struct nfstime4 date;
976};
977
978#define NFS4_EXCHANGE_ID_LEN (48)
979struct nfs41_exchange_id_args {
980 struct nfs_client *client;
981 nfs4_verifier *verifier;
982 unsigned int id_len;
983 char id[NFS4_EXCHANGE_ID_LEN];
984 u32 flags;
985};
986
987struct server_owner {
988 uint64_t minor_id;
989 uint32_t major_id_sz;
990 char major_id[NFS4_OPAQUE_LIMIT];
991};
992
993struct server_scope {
994 uint32_t server_scope_sz;
995 char server_scope[NFS4_OPAQUE_LIMIT];
996};
997
998struct nfs41_exchange_id_res {
999 struct nfs_client *client;
1000 u32 flags;
1001};
Andy Adamsonfc931582009-04-01 09:22:31 -04001002
1003struct nfs41_create_session_args {
1004 struct nfs_client *client;
1005 uint32_t flags;
1006 uint32_t cb_program;
1007 struct nfs4_channel_attrs fc_attrs; /* Fore Channel */
1008 struct nfs4_channel_attrs bc_attrs; /* Back Channel */
1009};
1010
1011struct nfs41_create_session_res {
1012 struct nfs_client *client;
1013};
Ricardo Labiaga18019752009-12-05 16:08:40 -05001014
1015struct nfs41_reclaim_complete_args {
1016 /* In the future extend to include curr_fh for use with migration */
1017 unsigned char one_fs:1;
1018 struct nfs4_sequence_args seq_args;
1019};
1020
1021struct nfs41_reclaim_complete_res {
1022 struct nfs4_sequence_res seq_res;
1023};
Benny Halevy99fe60d2009-04-01 09:22:29 -04001024#endif /* CONFIG_NFS_V4_1 */
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026struct nfs_page;
1027
Chuck Lever40859d72005-11-30 18:09:02 -05001028#define NFS_PAGEVEC_SIZE (8U)
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030struct nfs_read_data {
1031 int flags;
1032 struct rpc_task task;
1033 struct inode *inode;
1034 struct rpc_cred *cred;
1035 struct nfs_fattr fattr; /* fattr storage */
1036 struct list_head pages; /* Coalesced read requests */
1037 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -05001038 struct page **pagevec;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001039 unsigned int npages; /* Max length of pagevec */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 struct nfs_readargs args;
1041 struct nfs_readres res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 unsigned long timestamp; /* For lease renewal */
Fred Isamanbae724e2011-03-01 01:34:15 +00001043 struct pnfs_layout_segment *lseg;
Andy Adamsond83217c2011-03-01 01:34:17 +00001044 struct nfs_client *ds_clp; /* pNFS data server */
Andy Adamson64419a92011-03-01 01:34:16 +00001045 const struct rpc_call_ops *mds_ops;
Andy Adamsoncbdabc72011-03-01 01:34:20 +00001046 int (*read_done_cb) (struct rpc_task *task, struct nfs_read_data *data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +00001047 __u64 mds_offset;
Chuck Lever0d0b5cb2006-05-25 01:40:53 -04001048 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049};
1050
1051struct nfs_write_data {
1052 int flags;
1053 struct rpc_task task;
1054 struct inode *inode;
1055 struct rpc_cred *cred;
1056 struct nfs_fattr fattr;
1057 struct nfs_writeverf verf;
1058 struct list_head pages; /* Coalesced requests we wish to flush */
1059 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -05001060 struct page **pagevec;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001061 unsigned int npages; /* Max length of pagevec */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 struct nfs_writeargs args; /* argument struct */
1063 struct nfs_writeres res; /* result struct */
Fred Isaman5053aa52011-03-03 15:13:43 +00001064 struct pnfs_layout_segment *lseg;
Fred Isamana69aef12011-03-03 15:13:47 +00001065 struct nfs_client *ds_clp; /* pNFS data server */
Fred Isamane0c2b382011-03-23 13:27:53 +00001066 int ds_commit_index;
Andy Adamson0382b742011-03-03 15:13:45 +00001067 const struct rpc_call_ops *mds_ops;
Fred Isamanb029bc92011-03-03 15:13:42 +00001068 int (*write_done_cb) (struct rpc_task *task, struct nfs_write_data *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069#ifdef CONFIG_NFS_V4
1070 unsigned long timestamp; /* For lease renewal */
1071#endif
Fred Isamana69aef12011-03-03 15:13:47 +00001072 __u64 mds_offset; /* Filelayout dense stripe */
Chuck Lever0d0b5cb2006-05-25 01:40:53 -04001073 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074};
1075
1076struct nfs_access_entry;
Andy Adamson45a52a02011-03-01 01:34:08 +00001077struct nfs_client;
Trond Myklebuste0dca7a2011-03-14 18:20:01 -04001078struct rpc_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080/*
1081 * RPC procedure vector for NFSv2/NFSv3 demuxing
1082 */
1083struct nfs_rpc_ops {
Chuck Leverc0e07cb2008-01-14 12:32:05 -05001084 u32 version; /* Protocol version */
Al Virof786aa92009-02-20 05:51:22 +00001085 const struct dentry_operations *dentry_ops;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001086 const struct inode_operations *dir_inode_ops;
1087 const struct inode_operations *file_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 int (*getroot) (struct nfs_server *, struct nfs_fh *,
1090 struct nfs_fsinfo *);
David Howells2b3de442006-08-22 20:06:09 -04001091 int (*lookupfh)(struct nfs_server *, struct nfs_fh *,
1092 struct qstr *, struct nfs_fh *,
1093 struct nfs_fattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 int (*getattr) (struct nfs_server *, struct nfs_fh *,
1095 struct nfs_fattr *);
1096 int (*setattr) (struct dentry *, struct nfs_fattr *,
1097 struct iattr *);
1098 int (*lookup) (struct inode *, struct qstr *,
1099 struct nfs_fh *, struct nfs_fattr *);
1100 int (*access) (struct inode *, struct nfs_access_entry *);
1101 int (*readlink)(struct inode *, struct page *, unsigned int,
1102 unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 int (*create) (struct inode *, struct dentry *,
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001104 struct iattr *, int, struct nfs_open_context *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 int (*remove) (struct inode *, struct qstr *);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001106 void (*unlink_setup) (struct rpc_message *, struct inode *dir);
1107 int (*unlink_done) (struct rpc_task *, struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 int (*rename) (struct inode *, struct qstr *,
1109 struct inode *, struct qstr *);
Jeff Laytond3d41522010-09-17 17:31:57 -04001110 void (*rename_setup) (struct rpc_message *msg, struct inode *dir);
1111 int (*rename_done) (struct rpc_task *task, struct inode *old_dir, struct inode *new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 int (*link) (struct inode *, struct inode *, struct qstr *);
Chuck Lever94a6d752006-08-22 20:06:23 -04001113 int (*symlink) (struct inode *, struct dentry *, struct page *,
1114 unsigned int, struct iattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 int (*mkdir) (struct inode *, struct dentry *, struct iattr *);
1116 int (*rmdir) (struct inode *, struct qstr *);
1117 int (*readdir) (struct dentry *, struct rpc_cred *,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04001118 u64, struct page **, unsigned int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 int (*mknod) (struct inode *, struct dentry *, struct iattr *,
1120 dev_t);
1121 int (*statfs) (struct nfs_server *, struct nfs_fh *,
1122 struct nfs_fsstat *);
1123 int (*fsinfo) (struct nfs_server *, struct nfs_fh *,
1124 struct nfs_fsinfo *);
1125 int (*pathconf) (struct nfs_server *, struct nfs_fh *,
1126 struct nfs_pathconf *);
David Howellse9326dc2006-08-22 20:06:10 -04001127 int (*set_capabilities)(struct nfs_server *, struct nfs_fh *);
Chuck Lever573c4e12010-12-14 14:58:11 +00001128 int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, int);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001129 void (*read_setup) (struct nfs_read_data *, struct rpc_message *);
Trond Myklebustec06c092006-03-20 13:44:27 -05001130 int (*read_done) (struct rpc_task *, struct nfs_read_data *);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001131 void (*write_setup) (struct nfs_write_data *, struct rpc_message *);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001132 int (*write_done) (struct rpc_task *, struct nfs_write_data *);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001133 void (*commit_setup) (struct nfs_write_data *, struct rpc_message *);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001134 int (*commit_done) (struct rpc_task *, struct nfs_write_data *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 int (*lock)(struct file *, int, struct file_lock *);
Trond Myklebust21162712008-05-20 19:34:39 -04001136 int (*lock_check_bounds)(const struct file_lock *);
Trond Myklebustada70d92005-06-22 17:16:22 +00001137 void (*clear_acl_cache)(struct inode *);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04001138 void (*close_context)(struct nfs_open_context *ctx, int);
Trond Myklebust2b484292010-09-17 10:56:51 -04001139 struct inode * (*open_context) (struct inode *dir,
1140 struct nfs_open_context *ctx,
1141 int open_flags,
1142 struct iattr *iattr);
Andy Adamson45a52a02011-03-01 01:34:08 +00001143 int (*init_client) (struct nfs_client *, const struct rpc_timeout *,
1144 const char *, rpc_authflavor_t, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145};
1146
1147/*
1148 * NFS_CALL(getattr, inode, (fattr));
1149 * into
1150 * NFS_PROTO(inode)->getattr(fattr);
1151 */
1152#define NFS_CALL(op, inode, args) NFS_PROTO(inode)->op args
1153
1154/*
1155 * Function vectors etc. for the NFS client
1156 */
David Howells509de812006-08-22 20:06:11 -04001157extern const struct nfs_rpc_ops nfs_v2_clientops;
1158extern const struct nfs_rpc_ops nfs_v3_clientops;
1159extern const struct nfs_rpc_ops nfs_v4_clientops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160extern struct rpc_version nfs_version2;
1161extern struct rpc_version nfs_version3;
1162extern struct rpc_version nfs_version4;
1163
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00001164extern struct rpc_version nfsacl_version3;
1165extern struct rpc_program nfsacl_program;
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167#endif