blob: 80f07198a31a682814684d7946915cedd1df5d56 [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 Halevydfb4f3092010-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;
211};
212
213struct nfs4_layoutget_res {
214 __u32 return_on_close;
215 struct pnfs_layout_range range;
216 __u32 type;
217 nfs4_stateid stateid;
218 struct nfs4_layoutdriver_data layout;
219 struct nfs4_sequence_res seq_res;
220};
221
222struct nfs4_layoutget {
223 struct nfs4_layoutget_args args;
224 struct nfs4_layoutget_res res;
225 struct pnfs_layout_segment **lsegpp;
226 int status;
227};
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
240 * Arguments to the open call.
241 */
242struct nfs_openargs {
243 const struct nfs_fh * fh;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700244 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 int open_flags;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500246 fmode_t fmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 __u64 clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400248 __u64 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 union {
Trond Myklebustd77d76f2010-06-16 09:52:27 -0400250 struct {
251 struct iattr * attrs; /* UNCHECKED, GUARDED */
252 nfs4_verifier verifier; /* EXCLUSIVE */
253 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 nfs4_stateid delegation; /* CLAIM_DELEGATE_CUR */
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -0500255 fmode_t delegation_type; /* CLAIM_PREVIOUS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 } u;
257 const struct qstr * name;
258 const struct nfs_server *server; /* Needed for ID mapping */
259 const u32 * bitmask;
260 __u32 claim;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400261 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262};
263
264struct nfs_openres {
265 nfs4_stateid stateid;
266 struct nfs_fh fh;
267 struct nfs4_change_info cinfo;
268 __u32 rflags;
269 struct nfs_fattr * f_attr;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400270 struct nfs_fattr * dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400271 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 const struct nfs_server *server;
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -0500273 fmode_t delegation_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 nfs4_stateid delegation;
275 __u32 do_recall;
276 __u64 maxsize;
Jeff Laytonaa53ed52007-06-05 14:49:03 -0400277 __u32 attrset[NFS4_BITMAP_SIZE];
Benny Halevy9ff71c32009-04-01 09:21:52 -0400278 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279};
280
281/*
282 * Arguments to the open_confirm call.
283 */
284struct nfs_open_confirmargs {
285 const struct nfs_fh * fh;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100286 nfs4_stateid * stateid;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700287 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288};
289
290struct nfs_open_confirmres {
291 nfs4_stateid stateid;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400292 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293};
294
295/*
296 * Arguments to the close call.
297 */
298struct nfs_closeargs {
299 struct nfs_fh * fh;
Trond Myklebust95121352005-10-18 14:20:12 -0700300 nfs4_stateid * stateid;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700301 struct nfs_seqid * seqid;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500302 fmode_t fmode;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400303 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400304 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305};
306
307struct nfs_closeres {
308 nfs4_stateid stateid;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400309 struct nfs_fattr * fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400310 struct nfs_seqid * seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400311 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400312 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313};
314/*
315 * * Arguments to the lock,lockt, and locku call.
316 * */
317struct nfs_lowner {
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100318 __u64 clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400319 __u64 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320};
321
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100322struct nfs_lock_args {
323 struct nfs_fh * fh;
324 struct file_lock * fl;
Trond Myklebust06735b32005-10-18 14:20:15 -0700325 struct nfs_seqid * lock_seqid;
326 nfs4_stateid * lock_stateid;
327 struct nfs_seqid * open_seqid;
328 nfs4_stateid * open_stateid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100329 struct nfs_lowner lock_owner;
330 unsigned char block : 1;
331 unsigned char reclaim : 1;
332 unsigned char new_lock_owner : 1;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400333 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334};
335
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100336struct nfs_lock_res {
Trond Myklebustc1d51932008-04-07 13:20:54 -0400337 nfs4_stateid stateid;
338 struct nfs_seqid * lock_seqid;
339 struct nfs_seqid * open_seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400340 struct nfs4_sequence_res seq_res;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100341};
342
343struct nfs_locku_args {
344 struct nfs_fh * fh;
345 struct file_lock * fl;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700346 struct nfs_seqid * seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -0700347 nfs4_stateid * stateid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400348 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349};
350
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100351struct nfs_locku_res {
Trond Myklebustc1d51932008-04-07 13:20:54 -0400352 nfs4_stateid stateid;
353 struct nfs_seqid * seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400354 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355};
356
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100357struct nfs_lockt_args {
358 struct nfs_fh * fh;
359 struct file_lock * fl;
360 struct nfs_lowner lock_owner;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400361 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362};
363
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100364struct nfs_lockt_res {
365 struct file_lock * denied; /* LOCK, LOCKT failed */
Benny Halevy9ff71c32009-04-01 09:21:52 -0400366 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367};
368
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400369struct nfs_release_lockowner_args {
370 struct nfs_lowner lock_owner;
371};
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373struct nfs4_delegreturnargs {
374 const struct nfs_fh *fhandle;
375 const nfs4_stateid *stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100376 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400377 struct nfs4_sequence_args seq_args;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100378};
379
380struct nfs4_delegreturnres {
381 struct nfs_fattr * fattr;
382 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400383 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384};
385
386/*
387 * Arguments to the read call.
388 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389struct nfs_readargs {
390 struct nfs_fh * fh;
391 struct nfs_open_context *context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400392 struct nfs_lock_context *lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 __u64 offset;
394 __u32 count;
395 unsigned int pgbase;
396 struct page ** pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400397 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398};
399
400struct nfs_readres {
401 struct nfs_fattr * fattr;
402 __u32 count;
403 int eof;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400404 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405};
406
407/*
408 * Arguments to the write call.
409 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410struct nfs_writeargs {
411 struct nfs_fh * fh;
412 struct nfs_open_context *context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400413 struct nfs_lock_context *lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 __u64 offset;
415 __u32 count;
416 enum nfs3_stable_how stable;
417 unsigned int pgbase;
418 struct page ** pages;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400419 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400420 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421};
422
423struct nfs_writeverf {
424 enum nfs3_stable_how committed;
Al Virobc4785c2006-10-19 23:28:51 -0700425 __be32 verifier[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426};
427
428struct nfs_writeres {
429 struct nfs_fattr * fattr;
430 struct nfs_writeverf * verf;
431 __u32 count;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400432 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400433 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434};
435
436/*
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400437 * Common arguments to the unlink call
438 */
439struct nfs_removeargs {
440 const struct nfs_fh *fh;
441 struct qstr name;
442 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400443 struct nfs4_sequence_args seq_args;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400444};
445
446struct nfs_removeres {
447 const struct nfs_server *server;
Trond Myklebustd3468902010-04-16 16:22:50 -0400448 struct nfs_fattr *dir_attr;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400449 struct nfs4_change_info cinfo;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400450 struct nfs4_sequence_res seq_res;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400451};
452
453/*
Jeff Layton920769f2010-09-17 17:30:25 -0400454 * Common arguments to the rename call
455 */
456struct nfs_renameargs {
457 const struct nfs_fh *old_dir;
458 const struct nfs_fh *new_dir;
459 const struct qstr *old_name;
460 const struct qstr *new_name;
461 const u32 *bitmask;
462 struct nfs4_sequence_args seq_args;
463};
464
Jeff Laytone8582a82010-09-17 17:31:06 -0400465struct nfs_renameres {
466 const struct nfs_server *server;
467 struct nfs4_change_info old_cinfo;
468 struct nfs_fattr *old_fattr;
469 struct nfs4_change_info new_cinfo;
470 struct nfs_fattr *new_fattr;
471 struct nfs4_sequence_res seq_res;
472};
473
Jeff Layton920769f2010-09-17 17:30:25 -0400474/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * Argument struct for decode_entry function
476 */
477struct nfs_entry {
478 __u64 ino;
479 __u64 cookie,
480 prev_cookie;
481 const char * name;
482 unsigned int len;
483 int eof;
484 struct nfs_fh * fh;
485 struct nfs_fattr * fattr;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500486 unsigned char d_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487};
488
489/*
490 * The following types are for NFSv2 only.
491 */
492struct nfs_sattrargs {
493 struct nfs_fh * fh;
494 struct iattr * sattr;
495};
496
497struct nfs_diropargs {
498 struct nfs_fh * fh;
499 const char * name;
500 unsigned int len;
501};
502
503struct nfs_createargs {
504 struct nfs_fh * fh;
505 const char * name;
506 unsigned int len;
507 struct iattr * sattr;
508};
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510struct nfs_setattrargs {
511 struct nfs_fh * fh;
512 nfs4_stateid stateid;
513 struct iattr * iap;
514 const struct nfs_server * server; /* Needed for name mapping */
515 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400516 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517};
518
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000519struct nfs_setaclargs {
520 struct nfs_fh * fh;
521 size_t acl_len;
522 unsigned int acl_pgbase;
523 struct page ** acl_pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400524 struct nfs4_sequence_args seq_args;
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000525};
526
Benny Halevy73c403a2009-04-01 09:22:01 -0400527struct nfs_setaclres {
528 struct nfs4_sequence_res seq_res;
529};
530
J. Bruce Fields029d1052005-06-22 17:16:22 +0000531struct nfs_getaclargs {
532 struct nfs_fh * fh;
533 size_t acl_len;
534 unsigned int acl_pgbase;
535 struct page ** acl_pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400536 struct nfs4_sequence_args seq_args;
J. Bruce Fields029d1052005-06-22 17:16:22 +0000537};
538
Benny Halevy663c79b2009-04-01 09:21:59 -0400539struct nfs_getaclres {
540 size_t acl_len;
541 struct nfs4_sequence_res seq_res;
542};
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544struct nfs_setattrres {
545 struct nfs_fattr * fattr;
546 const struct nfs_server * server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400547 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548};
549
550struct nfs_linkargs {
551 struct nfs_fh * fromfh;
552 struct nfs_fh * tofh;
553 const char * toname;
554 unsigned int tolen;
555};
556
557struct nfs_symlinkargs {
558 struct nfs_fh * fromfh;
559 const char * fromname;
560 unsigned int fromlen;
Chuck Lever94a6d752006-08-22 20:06:23 -0400561 struct page ** pages;
562 unsigned int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 struct iattr * sattr;
564};
565
566struct nfs_readdirargs {
567 struct nfs_fh * fh;
568 __u32 cookie;
569 unsigned int count;
570 struct page ** pages;
571};
572
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000573struct nfs3_getaclargs {
574 struct nfs_fh * fh;
575 int mask;
576 struct page ** pages;
577};
578
579struct nfs3_setaclargs {
580 struct inode * inode;
581 int mask;
582 struct posix_acl * acl_access;
583 struct posix_acl * acl_default;
Trond Myklebustae461412009-03-10 20:33:18 -0400584 size_t len;
585 unsigned int npages;
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000586 struct page ** pages;
587};
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589struct nfs_diropok {
590 struct nfs_fh * fh;
591 struct nfs_fattr * fattr;
592};
593
594struct nfs_readlinkargs {
595 struct nfs_fh * fh;
596 unsigned int pgbase;
597 unsigned int pglen;
598 struct page ** pages;
599};
600
601struct nfs3_sattrargs {
602 struct nfs_fh * fh;
603 struct iattr * sattr;
604 unsigned int guard;
605 struct timespec guardtime;
606};
607
608struct nfs3_diropargs {
609 struct nfs_fh * fh;
610 const char * name;
611 unsigned int len;
612};
613
614struct nfs3_accessargs {
615 struct nfs_fh * fh;
616 __u32 access;
617};
618
619struct nfs3_createargs {
620 struct nfs_fh * fh;
621 const char * name;
622 unsigned int len;
623 struct iattr * sattr;
624 enum nfs3_createmode createmode;
Al Virobc4785c2006-10-19 23:28:51 -0700625 __be32 verifier[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626};
627
628struct nfs3_mkdirargs {
629 struct nfs_fh * fh;
630 const char * name;
631 unsigned int len;
632 struct iattr * sattr;
633};
634
635struct nfs3_symlinkargs {
636 struct nfs_fh * fromfh;
637 const char * fromname;
638 unsigned int fromlen;
Chuck Lever94a6d752006-08-22 20:06:23 -0400639 struct page ** pages;
640 unsigned int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 struct iattr * sattr;
642};
643
644struct nfs3_mknodargs {
645 struct nfs_fh * fh;
646 const char * name;
647 unsigned int len;
648 enum nfs3_ftype type;
649 struct iattr * sattr;
650 dev_t rdev;
651};
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653struct nfs3_linkargs {
654 struct nfs_fh * fromfh;
655 struct nfs_fh * tofh;
656 const char * toname;
657 unsigned int tolen;
658};
659
660struct nfs3_readdirargs {
661 struct nfs_fh * fh;
662 __u64 cookie;
Al Virobc4785c2006-10-19 23:28:51 -0700663 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 int plus;
665 unsigned int count;
666 struct page ** pages;
667};
668
669struct nfs3_diropres {
670 struct nfs_fattr * dir_attr;
671 struct nfs_fh * fh;
672 struct nfs_fattr * fattr;
673};
674
675struct nfs3_accessres {
676 struct nfs_fattr * fattr;
677 __u32 access;
678};
679
680struct nfs3_readlinkargs {
681 struct nfs_fh * fh;
682 unsigned int pgbase;
683 unsigned int pglen;
684 struct page ** pages;
685};
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687struct nfs3_linkres {
688 struct nfs_fattr * dir_attr;
689 struct nfs_fattr * fattr;
690};
691
692struct nfs3_readdirres {
693 struct nfs_fattr * dir_attr;
Al Virobc4785c2006-10-19 23:28:51 -0700694 __be32 * verf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 int plus;
696};
697
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000698struct nfs3_getaclres {
699 struct nfs_fattr * fattr;
700 int mask;
701 unsigned int acl_access_count;
702 unsigned int acl_default_count;
703 struct posix_acl * acl_access;
704 struct posix_acl * acl_default;
705};
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707#ifdef CONFIG_NFS_V4
708
709typedef u64 clientid4;
710
711struct nfs4_accessargs {
712 const struct nfs_fh * fh;
Trond Myklebust76b32992007-08-10 17:45:11 -0400713 const u32 * bitmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 u32 access;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400715 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716};
717
718struct nfs4_accessres {
Trond Myklebust76b32992007-08-10 17:45:11 -0400719 const struct nfs_server * server;
720 struct nfs_fattr * fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 u32 supported;
722 u32 access;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400723 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724};
725
726struct nfs4_create_arg {
727 u32 ftype;
728 union {
Chuck Lever94a6d752006-08-22 20:06:23 -0400729 struct {
730 struct page ** pages;
731 unsigned int len;
732 } symlink; /* NF4LNK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 struct {
734 u32 specdata1;
735 u32 specdata2;
736 } device; /* NF4BLK, NF4CHR */
737 } u;
738 const struct qstr * name;
739 const struct nfs_server * server;
740 const struct iattr * attrs;
741 const struct nfs_fh * dir_fh;
742 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400743 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744};
745
746struct nfs4_create_res {
747 const struct nfs_server * server;
748 struct nfs_fh * fh;
749 struct nfs_fattr * fattr;
750 struct nfs4_change_info dir_cinfo;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400751 struct nfs_fattr * dir_fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400752 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753};
754
755struct nfs4_fsinfo_arg {
756 const struct nfs_fh * fh;
757 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400758 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759};
760
Benny Halevy3dda5e42009-04-01 09:21:57 -0400761struct nfs4_fsinfo_res {
762 struct nfs_fsinfo *fsinfo;
763 struct nfs4_sequence_res seq_res;
764};
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766struct nfs4_getattr_arg {
767 const struct nfs_fh * fh;
768 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400769 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770};
771
772struct nfs4_getattr_res {
773 const struct nfs_server * server;
774 struct nfs_fattr * fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400775 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776};
777
778struct nfs4_link_arg {
779 const struct nfs_fh * fh;
780 const struct nfs_fh * dir_fh;
781 const struct qstr * name;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400782 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
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400786struct nfs4_link_res {
787 const struct nfs_server * server;
788 struct nfs_fattr * fattr;
789 struct nfs4_change_info cinfo;
790 struct nfs_fattr * dir_attr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400791 struct nfs4_sequence_res seq_res;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400792};
793
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795struct nfs4_lookup_arg {
796 const struct nfs_fh * dir_fh;
797 const struct qstr * name;
798 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400799 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800};
801
802struct nfs4_lookup_res {
803 const struct nfs_server * server;
804 struct nfs_fattr * fattr;
805 struct nfs_fh * fh;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400806 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807};
808
809struct nfs4_lookup_root_arg {
810 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400811 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812};
813
814struct nfs4_pathconf_arg {
815 const struct nfs_fh * fh;
816 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400817 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818};
819
Benny Halevyd45b2982009-04-01 09:21:58 -0400820struct nfs4_pathconf_res {
821 struct nfs_pathconf *pathconf;
822 struct nfs4_sequence_res seq_res;
823};
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825struct nfs4_readdir_arg {
826 const struct nfs_fh * fh;
827 u64 cookie;
828 nfs4_verifier verifier;
829 u32 count;
830 struct page ** pages; /* zero-copy data */
831 unsigned int pgbase; /* zero-copy data */
832 const u32 * bitmask;
Bryan Schumaker82f2e542010-10-21 16:33:18 -0400833 int plus;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400834 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835};
836
837struct nfs4_readdir_res {
838 nfs4_verifier verifier;
839 unsigned int pgbase;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400840 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841};
842
843struct nfs4_readlink {
844 const struct nfs_fh * fh;
845 unsigned int pgbase;
846 unsigned int pglen; /* zero-copy data */
847 struct page ** pages; /* zero-copy data */
Benny Halevy9ff71c32009-04-01 09:21:52 -0400848 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849};
850
Benny Halevyf50c7002009-04-01 09:21:55 -0400851struct nfs4_readlink_res {
852 struct nfs4_sequence_res seq_res;
853};
854
Trond Myklebust19d771f2008-10-08 13:54:52 -0400855#define NFS4_SETCLIENTID_NAMELEN (127)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856struct nfs4_setclientid {
Chuck Levercc38bac2007-12-10 14:56:54 -0500857 const nfs4_verifier * sc_verifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 unsigned int sc_name_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400859 char sc_name[NFS4_SETCLIENTID_NAMELEN + 1];
Chuck Levercc38bac2007-12-10 14:56:54 -0500860 u32 sc_prog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 unsigned int sc_netid_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400862 char sc_netid[RPCBIND_MAXNETIDLEN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 unsigned int sc_uaddr_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400864 char sc_uaddr[RPCBIND_MAXUADDRLEN + 1];
Chuck Levercc38bac2007-12-10 14:56:54 -0500865 u32 sc_cb_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866};
867
Trond Myklebustbb8b27e2010-04-16 16:43:06 -0400868struct nfs4_setclientid_res {
869 u64 clientid;
870 nfs4_verifier confirm;
871};
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873struct nfs4_statfs_arg {
874 const struct nfs_fh * fh;
875 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400876 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877};
878
Benny Halevy24ad1482009-04-01 09:21:56 -0400879struct nfs4_statfs_res {
880 struct nfs_fsstat *fsstat;
881 struct nfs4_sequence_res seq_res;
882};
883
Benny Halevy43652ad2009-04-01 09:21:54 -0400884struct nfs4_server_caps_arg {
885 struct nfs_fh *fhandle;
886 struct nfs4_sequence_args seq_args;
887};
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889struct nfs4_server_caps_res {
890 u32 attr_bitmask[2];
891 u32 acl_bitmask;
892 u32 has_links;
893 u32 has_symlinks;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400894 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895};
896
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400897struct nfs4_string {
898 unsigned int len;
899 char *data;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400900};
901
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400902#define NFS4_PATHNAME_MAXCOMPONENTS 512
903struct nfs4_pathname {
904 unsigned int ncomponents;
905 struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS];
906};
907
908#define NFS4_FS_LOCATION_MAXSERVERS 10
909struct nfs4_fs_location {
910 unsigned int nservers;
911 struct nfs4_string servers[NFS4_FS_LOCATION_MAXSERVERS];
912 struct nfs4_pathname rootpath;
913};
914
915#define NFS4_FS_LOCATIONS_MAXENTRIES 10
916struct nfs4_fs_locations {
Trond Myklebust683b57b2006-06-09 09:34:22 -0400917 struct nfs_fattr fattr;
918 const struct nfs_server *server;
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400919 struct nfs4_pathname fs_path;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400920 int nlocations;
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400921 struct nfs4_fs_location locations[NFS4_FS_LOCATIONS_MAXENTRIES];
Trond Myklebust683b57b2006-06-09 09:34:22 -0400922};
923
924struct nfs4_fs_locations_arg {
925 const struct nfs_fh *dir_fh;
926 const struct qstr *name;
927 struct page *page;
928 const u32 *bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400929 struct nfs4_sequence_args seq_args;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400930};
931
Benny Halevy22958462009-04-01 09:22:02 -0400932struct nfs4_fs_locations_res {
933 struct nfs4_fs_locations *fs_locations;
934 struct nfs4_sequence_res seq_res;
935};
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937#endif /* CONFIG_NFS_V4 */
938
Benny Halevy99fe60d2009-04-01 09:22:29 -0400939struct nfstime4 {
940 u64 seconds;
941 u32 nseconds;
942};
943
944#ifdef CONFIG_NFS_V4_1
945struct nfs_impl_id4 {
946 u32 domain_len;
947 char *domain;
948 u32 name_len;
949 char *name;
950 struct nfstime4 date;
951};
952
953#define NFS4_EXCHANGE_ID_LEN (48)
954struct nfs41_exchange_id_args {
955 struct nfs_client *client;
956 nfs4_verifier *verifier;
957 unsigned int id_len;
958 char id[NFS4_EXCHANGE_ID_LEN];
959 u32 flags;
960};
961
962struct server_owner {
963 uint64_t minor_id;
964 uint32_t major_id_sz;
965 char major_id[NFS4_OPAQUE_LIMIT];
966};
967
968struct server_scope {
969 uint32_t server_scope_sz;
970 char server_scope[NFS4_OPAQUE_LIMIT];
971};
972
973struct nfs41_exchange_id_res {
974 struct nfs_client *client;
975 u32 flags;
976};
Andy Adamsonfc931582009-04-01 09:22:31 -0400977
978struct nfs41_create_session_args {
979 struct nfs_client *client;
980 uint32_t flags;
981 uint32_t cb_program;
982 struct nfs4_channel_attrs fc_attrs; /* Fore Channel */
983 struct nfs4_channel_attrs bc_attrs; /* Back Channel */
984};
985
986struct nfs41_create_session_res {
987 struct nfs_client *client;
988};
Ricardo Labiaga180197532009-12-05 16:08:40 -0500989
990struct nfs41_reclaim_complete_args {
991 /* In the future extend to include curr_fh for use with migration */
992 unsigned char one_fs:1;
993 struct nfs4_sequence_args seq_args;
994};
995
996struct nfs41_reclaim_complete_res {
997 struct nfs4_sequence_res seq_res;
998};
Benny Halevy99fe60d2009-04-01 09:22:29 -0400999#endif /* CONFIG_NFS_V4_1 */
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001struct nfs_page;
1002
Chuck Lever40859d72005-11-30 18:09:02 -05001003#define NFS_PAGEVEC_SIZE (8U)
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005struct nfs_read_data {
1006 int flags;
1007 struct rpc_task task;
1008 struct inode *inode;
1009 struct rpc_cred *cred;
1010 struct nfs_fattr fattr; /* fattr storage */
1011 struct list_head pages; /* Coalesced read requests */
1012 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -05001013 struct page **pagevec;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001014 unsigned int npages; /* Max length of pagevec */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 struct nfs_readargs args;
1016 struct nfs_readres res;
1017#ifdef CONFIG_NFS_V4
1018 unsigned long timestamp; /* For lease renewal */
1019#endif
Chuck Lever0d0b5cb2006-05-25 01:40:53 -04001020 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021};
1022
1023struct nfs_write_data {
1024 int flags;
1025 struct rpc_task task;
1026 struct inode *inode;
1027 struct rpc_cred *cred;
1028 struct nfs_fattr fattr;
1029 struct nfs_writeverf verf;
1030 struct list_head pages; /* Coalesced requests we wish to flush */
1031 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -05001032 struct page **pagevec;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001033 unsigned int npages; /* Max length of pagevec */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct nfs_writeargs args; /* argument struct */
1035 struct nfs_writeres res; /* result struct */
1036#ifdef CONFIG_NFS_V4
1037 unsigned long timestamp; /* For lease renewal */
1038#endif
Chuck Lever0d0b5cb2006-05-25 01:40:53 -04001039 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040};
1041
1042struct nfs_access_entry;
1043
1044/*
1045 * RPC procedure vector for NFSv2/NFSv3 demuxing
1046 */
1047struct nfs_rpc_ops {
Chuck Leverc0e07cb2008-01-14 12:32:05 -05001048 u32 version; /* Protocol version */
Al Virof786aa92009-02-20 05:51:22 +00001049 const struct dentry_operations *dentry_ops;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001050 const struct inode_operations *dir_inode_ops;
1051 const struct inode_operations *file_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 int (*getroot) (struct nfs_server *, struct nfs_fh *,
1054 struct nfs_fsinfo *);
David Howells2b3de442006-08-22 20:06:09 -04001055 int (*lookupfh)(struct nfs_server *, struct nfs_fh *,
1056 struct qstr *, struct nfs_fh *,
1057 struct nfs_fattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 int (*getattr) (struct nfs_server *, struct nfs_fh *,
1059 struct nfs_fattr *);
1060 int (*setattr) (struct dentry *, struct nfs_fattr *,
1061 struct iattr *);
1062 int (*lookup) (struct inode *, struct qstr *,
1063 struct nfs_fh *, struct nfs_fattr *);
1064 int (*access) (struct inode *, struct nfs_access_entry *);
1065 int (*readlink)(struct inode *, struct page *, unsigned int,
1066 unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 int (*create) (struct inode *, struct dentry *,
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001068 struct iattr *, int, struct nfs_open_context *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 int (*remove) (struct inode *, struct qstr *);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001070 void (*unlink_setup) (struct rpc_message *, struct inode *dir);
1071 int (*unlink_done) (struct rpc_task *, struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 int (*rename) (struct inode *, struct qstr *,
1073 struct inode *, struct qstr *);
Jeff Laytond3d41522010-09-17 17:31:57 -04001074 void (*rename_setup) (struct rpc_message *msg, struct inode *dir);
1075 int (*rename_done) (struct rpc_task *task, struct inode *old_dir, struct inode *new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 int (*link) (struct inode *, struct inode *, struct qstr *);
Chuck Lever94a6d752006-08-22 20:06:23 -04001077 int (*symlink) (struct inode *, struct dentry *, struct page *,
1078 unsigned int, struct iattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 int (*mkdir) (struct inode *, struct dentry *, struct iattr *);
1080 int (*rmdir) (struct inode *, struct qstr *);
1081 int (*readdir) (struct dentry *, struct rpc_cred *,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04001082 u64, struct page **, unsigned int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 int (*mknod) (struct inode *, struct dentry *, struct iattr *,
1084 dev_t);
1085 int (*statfs) (struct nfs_server *, struct nfs_fh *,
1086 struct nfs_fsstat *);
1087 int (*fsinfo) (struct nfs_server *, struct nfs_fh *,
1088 struct nfs_fsinfo *);
1089 int (*pathconf) (struct nfs_server *, struct nfs_fh *,
1090 struct nfs_pathconf *);
David Howellse9326dc2006-08-22 20:06:10 -04001091 int (*set_capabilities)(struct nfs_server *, struct nfs_fh *);
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001092 __be32 *(*decode_dirent)(struct xdr_stream *, struct nfs_entry *, struct nfs_server *, int plus);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001093 void (*read_setup) (struct nfs_read_data *, struct rpc_message *);
Trond Myklebustec06c092006-03-20 13:44:27 -05001094 int (*read_done) (struct rpc_task *, struct nfs_read_data *);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001095 void (*write_setup) (struct nfs_write_data *, struct rpc_message *);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001096 int (*write_done) (struct rpc_task *, struct nfs_write_data *);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001097 void (*commit_setup) (struct nfs_write_data *, struct rpc_message *);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001098 int (*commit_done) (struct rpc_task *, struct nfs_write_data *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 int (*lock)(struct file *, int, struct file_lock *);
Trond Myklebust21162712008-05-20 19:34:39 -04001100 int (*lock_check_bounds)(const struct file_lock *);
Trond Myklebustada70d92005-06-22 17:16:22 +00001101 void (*clear_acl_cache)(struct inode *);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04001102 void (*close_context)(struct nfs_open_context *ctx, int);
Trond Myklebust2b484292010-09-17 10:56:51 -04001103 struct inode * (*open_context) (struct inode *dir,
1104 struct nfs_open_context *ctx,
1105 int open_flags,
1106 struct iattr *iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107};
1108
1109/*
1110 * NFS_CALL(getattr, inode, (fattr));
1111 * into
1112 * NFS_PROTO(inode)->getattr(fattr);
1113 */
1114#define NFS_CALL(op, inode, args) NFS_PROTO(inode)->op args
1115
1116/*
1117 * Function vectors etc. for the NFS client
1118 */
David Howells509de812006-08-22 20:06:11 -04001119extern const struct nfs_rpc_ops nfs_v2_clientops;
1120extern const struct nfs_rpc_ops nfs_v3_clientops;
1121extern const struct nfs_rpc_ops nfs_v4_clientops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122extern struct rpc_version nfs_version2;
1123extern struct rpc_version nfs_version3;
1124extern struct rpc_version nfs_version4;
1125
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00001126extern struct rpc_version nfsacl_version3;
1127extern struct rpc_program nfsacl_program;
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129#endif