blob: ac0c0e51786e4de0cd62c39435717a10d56f833a [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;
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
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;
Trond Myklebustd035c362010-12-21 10:45:27 -0500320 dev_t s_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321};
322
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100323struct nfs_lock_args {
324 struct nfs_fh * fh;
325 struct file_lock * fl;
Trond Myklebust06735b32005-10-18 14:20:15 -0700326 struct nfs_seqid * lock_seqid;
327 nfs4_stateid * lock_stateid;
328 struct nfs_seqid * open_seqid;
329 nfs4_stateid * open_stateid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100330 struct nfs_lowner lock_owner;
331 unsigned char block : 1;
332 unsigned char reclaim : 1;
333 unsigned char new_lock_owner : 1;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400334 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335};
336
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100337struct nfs_lock_res {
Trond Myklebustc1d51932008-04-07 13:20:54 -0400338 nfs4_stateid stateid;
339 struct nfs_seqid * lock_seqid;
340 struct nfs_seqid * open_seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400341 struct nfs4_sequence_res seq_res;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100342};
343
344struct nfs_locku_args {
345 struct nfs_fh * fh;
346 struct file_lock * fl;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700347 struct nfs_seqid * seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -0700348 nfs4_stateid * stateid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400349 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350};
351
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100352struct nfs_locku_res {
Trond Myklebustc1d51932008-04-07 13:20:54 -0400353 nfs4_stateid stateid;
354 struct nfs_seqid * seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400355 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356};
357
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100358struct nfs_lockt_args {
359 struct nfs_fh * fh;
360 struct file_lock * fl;
361 struct nfs_lowner lock_owner;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400362 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363};
364
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100365struct nfs_lockt_res {
366 struct file_lock * denied; /* LOCK, LOCKT failed */
Benny Halevy9ff71c32009-04-01 09:21:52 -0400367 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368};
369
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400370struct nfs_release_lockowner_args {
371 struct nfs_lowner lock_owner;
372};
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374struct nfs4_delegreturnargs {
375 const struct nfs_fh *fhandle;
376 const nfs4_stateid *stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100377 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400378 struct nfs4_sequence_args seq_args;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100379};
380
381struct nfs4_delegreturnres {
382 struct nfs_fattr * fattr;
383 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400384 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
387/*
388 * Arguments to the read call.
389 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390struct nfs_readargs {
391 struct nfs_fh * fh;
392 struct nfs_open_context *context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400393 struct nfs_lock_context *lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 __u64 offset;
395 __u32 count;
396 unsigned int pgbase;
397 struct page ** pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400398 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399};
400
401struct nfs_readres {
402 struct nfs_fattr * fattr;
403 __u32 count;
404 int eof;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400405 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406};
407
408/*
409 * Arguments to the write call.
410 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411struct nfs_writeargs {
412 struct nfs_fh * fh;
413 struct nfs_open_context *context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400414 struct nfs_lock_context *lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 __u64 offset;
416 __u32 count;
417 enum nfs3_stable_how stable;
418 unsigned int pgbase;
419 struct page ** pages;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400420 const u32 * bitmask;
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_writeverf {
425 enum nfs3_stable_how committed;
Al Virobc4785c2006-10-19 23:28:51 -0700426 __be32 verifier[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427};
428
429struct nfs_writeres {
430 struct nfs_fattr * fattr;
431 struct nfs_writeverf * verf;
432 __u32 count;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400433 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400434 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435};
436
437/*
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400438 * Common arguments to the unlink call
439 */
440struct nfs_removeargs {
441 const struct nfs_fh *fh;
442 struct qstr name;
443 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400444 struct nfs4_sequence_args seq_args;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400445};
446
447struct nfs_removeres {
448 const struct nfs_server *server;
Trond Myklebustd3468902010-04-16 16:22:50 -0400449 struct nfs_fattr *dir_attr;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400450 struct nfs4_change_info cinfo;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400451 struct nfs4_sequence_res seq_res;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400452};
453
454/*
Jeff Layton920769f2010-09-17 17:30:25 -0400455 * Common arguments to the rename call
456 */
457struct nfs_renameargs {
458 const struct nfs_fh *old_dir;
459 const struct nfs_fh *new_dir;
460 const struct qstr *old_name;
461 const struct qstr *new_name;
462 const u32 *bitmask;
463 struct nfs4_sequence_args seq_args;
464};
465
Jeff Laytone8582a82010-09-17 17:31:06 -0400466struct nfs_renameres {
467 const struct nfs_server *server;
468 struct nfs4_change_info old_cinfo;
469 struct nfs_fattr *old_fattr;
470 struct nfs4_change_info new_cinfo;
471 struct nfs_fattr *new_fattr;
472 struct nfs4_sequence_res seq_res;
473};
474
Jeff Layton920769f2010-09-17 17:30:25 -0400475/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * Argument struct for decode_entry function
477 */
478struct nfs_entry {
479 __u64 ino;
480 __u64 cookie,
481 prev_cookie;
482 const char * name;
483 unsigned int len;
484 int eof;
485 struct nfs_fh * fh;
486 struct nfs_fattr * fattr;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500487 unsigned char d_type;
Chuck Lever573c4e12010-12-14 14:58:11 +0000488 struct nfs_server * server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489};
490
491/*
492 * The following types are for NFSv2 only.
493 */
494struct nfs_sattrargs {
495 struct nfs_fh * fh;
496 struct iattr * sattr;
497};
498
499struct nfs_diropargs {
500 struct nfs_fh * fh;
501 const char * name;
502 unsigned int len;
503};
504
505struct nfs_createargs {
506 struct nfs_fh * fh;
507 const char * name;
508 unsigned int len;
509 struct iattr * sattr;
510};
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512struct nfs_setattrargs {
513 struct nfs_fh * fh;
514 nfs4_stateid stateid;
515 struct iattr * iap;
516 const struct nfs_server * server; /* Needed for name mapping */
517 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400518 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519};
520
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000521struct nfs_setaclargs {
522 struct nfs_fh * fh;
523 size_t acl_len;
524 unsigned int acl_pgbase;
525 struct page ** acl_pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400526 struct nfs4_sequence_args seq_args;
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000527};
528
Benny Halevy73c403a2009-04-01 09:22:01 -0400529struct nfs_setaclres {
530 struct nfs4_sequence_res seq_res;
531};
532
J. Bruce Fields029d1052005-06-22 17:16:22 +0000533struct nfs_getaclargs {
534 struct nfs_fh * fh;
535 size_t acl_len;
536 unsigned int acl_pgbase;
537 struct page ** acl_pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400538 struct nfs4_sequence_args seq_args;
J. Bruce Fields029d1052005-06-22 17:16:22 +0000539};
540
Benny Halevy663c79b2009-04-01 09:21:59 -0400541struct nfs_getaclres {
542 size_t acl_len;
543 struct nfs4_sequence_res seq_res;
544};
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546struct nfs_setattrres {
547 struct nfs_fattr * fattr;
548 const struct nfs_server * server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400549 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550};
551
552struct nfs_linkargs {
553 struct nfs_fh * fromfh;
554 struct nfs_fh * tofh;
555 const char * toname;
556 unsigned int tolen;
557};
558
559struct nfs_symlinkargs {
560 struct nfs_fh * fromfh;
561 const char * fromname;
562 unsigned int fromlen;
Chuck Lever94a6d752006-08-22 20:06:23 -0400563 struct page ** pages;
564 unsigned int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 struct iattr * sattr;
566};
567
568struct nfs_readdirargs {
569 struct nfs_fh * fh;
570 __u32 cookie;
571 unsigned int count;
572 struct page ** pages;
573};
574
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000575struct nfs3_getaclargs {
576 struct nfs_fh * fh;
577 int mask;
578 struct page ** pages;
579};
580
581struct nfs3_setaclargs {
582 struct inode * inode;
583 int mask;
584 struct posix_acl * acl_access;
585 struct posix_acl * acl_default;
Trond Myklebustae461412009-03-10 20:33:18 -0400586 size_t len;
587 unsigned int npages;
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000588 struct page ** pages;
589};
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591struct nfs_diropok {
592 struct nfs_fh * fh;
593 struct nfs_fattr * fattr;
594};
595
596struct nfs_readlinkargs {
597 struct nfs_fh * fh;
598 unsigned int pgbase;
599 unsigned int pglen;
600 struct page ** pages;
601};
602
603struct nfs3_sattrargs {
604 struct nfs_fh * fh;
605 struct iattr * sattr;
606 unsigned int guard;
607 struct timespec guardtime;
608};
609
610struct nfs3_diropargs {
611 struct nfs_fh * fh;
612 const char * name;
613 unsigned int len;
614};
615
616struct nfs3_accessargs {
617 struct nfs_fh * fh;
618 __u32 access;
619};
620
621struct nfs3_createargs {
622 struct nfs_fh * fh;
623 const char * name;
624 unsigned int len;
625 struct iattr * sattr;
626 enum nfs3_createmode createmode;
Al Virobc4785c2006-10-19 23:28:51 -0700627 __be32 verifier[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628};
629
630struct nfs3_mkdirargs {
631 struct nfs_fh * fh;
632 const char * name;
633 unsigned int len;
634 struct iattr * sattr;
635};
636
637struct nfs3_symlinkargs {
638 struct nfs_fh * fromfh;
639 const char * fromname;
640 unsigned int fromlen;
Chuck Lever94a6d752006-08-22 20:06:23 -0400641 struct page ** pages;
642 unsigned int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 struct iattr * sattr;
644};
645
646struct nfs3_mknodargs {
647 struct nfs_fh * fh;
648 const char * name;
649 unsigned int len;
650 enum nfs3_ftype type;
651 struct iattr * sattr;
652 dev_t rdev;
653};
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655struct nfs3_linkargs {
656 struct nfs_fh * fromfh;
657 struct nfs_fh * tofh;
658 const char * toname;
659 unsigned int tolen;
660};
661
662struct nfs3_readdirargs {
663 struct nfs_fh * fh;
664 __u64 cookie;
Al Virobc4785c2006-10-19 23:28:51 -0700665 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 int plus;
667 unsigned int count;
668 struct page ** pages;
669};
670
671struct nfs3_diropres {
672 struct nfs_fattr * dir_attr;
673 struct nfs_fh * fh;
674 struct nfs_fattr * fattr;
675};
676
677struct nfs3_accessres {
678 struct nfs_fattr * fattr;
679 __u32 access;
680};
681
682struct nfs3_readlinkargs {
683 struct nfs_fh * fh;
684 unsigned int pgbase;
685 unsigned int pglen;
686 struct page ** pages;
687};
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689struct nfs3_linkres {
690 struct nfs_fattr * dir_attr;
691 struct nfs_fattr * fattr;
692};
693
694struct nfs3_readdirres {
695 struct nfs_fattr * dir_attr;
Al Virobc4785c2006-10-19 23:28:51 -0700696 __be32 * verf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 int plus;
698};
699
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000700struct nfs3_getaclres {
701 struct nfs_fattr * fattr;
702 int mask;
703 unsigned int acl_access_count;
704 unsigned int acl_default_count;
705 struct posix_acl * acl_access;
706 struct posix_acl * acl_default;
707};
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709#ifdef CONFIG_NFS_V4
710
711typedef u64 clientid4;
712
713struct nfs4_accessargs {
714 const struct nfs_fh * fh;
Trond Myklebust76b32992007-08-10 17:45:11 -0400715 const u32 * bitmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 u32 access;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400717 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718};
719
720struct nfs4_accessres {
Trond Myklebust76b32992007-08-10 17:45:11 -0400721 const struct nfs_server * server;
722 struct nfs_fattr * fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 u32 supported;
724 u32 access;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400725 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726};
727
728struct nfs4_create_arg {
729 u32 ftype;
730 union {
Chuck Lever94a6d752006-08-22 20:06:23 -0400731 struct {
732 struct page ** pages;
733 unsigned int len;
734 } symlink; /* NF4LNK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct {
736 u32 specdata1;
737 u32 specdata2;
738 } device; /* NF4BLK, NF4CHR */
739 } u;
740 const struct qstr * name;
741 const struct nfs_server * server;
742 const struct iattr * attrs;
743 const struct nfs_fh * dir_fh;
744 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400745 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746};
747
748struct nfs4_create_res {
749 const struct nfs_server * server;
750 struct nfs_fh * fh;
751 struct nfs_fattr * fattr;
752 struct nfs4_change_info dir_cinfo;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400753 struct nfs_fattr * dir_fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400754 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755};
756
757struct nfs4_fsinfo_arg {
758 const struct nfs_fh * fh;
759 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400760 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761};
762
Benny Halevy3dda5e42009-04-01 09:21:57 -0400763struct nfs4_fsinfo_res {
764 struct nfs_fsinfo *fsinfo;
765 struct nfs4_sequence_res seq_res;
766};
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768struct nfs4_getattr_arg {
769 const struct nfs_fh * fh;
770 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400771 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772};
773
774struct nfs4_getattr_res {
775 const struct nfs_server * server;
776 struct nfs_fattr * 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_link_arg {
781 const struct nfs_fh * fh;
782 const struct nfs_fh * dir_fh;
783 const struct qstr * name;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400784 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400785 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786};
787
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400788struct nfs4_link_res {
789 const struct nfs_server * server;
790 struct nfs_fattr * fattr;
791 struct nfs4_change_info cinfo;
792 struct nfs_fattr * dir_attr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400793 struct nfs4_sequence_res seq_res;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400794};
795
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797struct nfs4_lookup_arg {
798 const struct nfs_fh * dir_fh;
799 const struct qstr * name;
800 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400801 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802};
803
804struct nfs4_lookup_res {
805 const struct nfs_server * server;
806 struct nfs_fattr * fattr;
807 struct nfs_fh * fh;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400808 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809};
810
811struct nfs4_lookup_root_arg {
812 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400813 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814};
815
816struct nfs4_pathconf_arg {
817 const struct nfs_fh * fh;
818 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400819 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820};
821
Benny Halevyd45b2982009-04-01 09:21:58 -0400822struct nfs4_pathconf_res {
823 struct nfs_pathconf *pathconf;
824 struct nfs4_sequence_res seq_res;
825};
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827struct nfs4_readdir_arg {
828 const struct nfs_fh * fh;
829 u64 cookie;
830 nfs4_verifier verifier;
831 u32 count;
832 struct page ** pages; /* zero-copy data */
833 unsigned int pgbase; /* zero-copy data */
834 const u32 * bitmask;
Bryan Schumaker82f2e542010-10-21 16:33:18 -0400835 int plus;
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_readdir_res {
840 nfs4_verifier verifier;
841 unsigned int pgbase;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400842 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843};
844
845struct nfs4_readlink {
846 const struct nfs_fh * fh;
847 unsigned int pgbase;
848 unsigned int pglen; /* zero-copy data */
849 struct page ** pages; /* zero-copy data */
Benny Halevy9ff71c32009-04-01 09:21:52 -0400850 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851};
852
Benny Halevyf50c7002009-04-01 09:21:55 -0400853struct nfs4_readlink_res {
854 struct nfs4_sequence_res seq_res;
855};
856
Trond Myklebust19d771f2008-10-08 13:54:52 -0400857#define NFS4_SETCLIENTID_NAMELEN (127)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858struct nfs4_setclientid {
Chuck Levercc38bac2007-12-10 14:56:54 -0500859 const nfs4_verifier * sc_verifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 unsigned int sc_name_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400861 char sc_name[NFS4_SETCLIENTID_NAMELEN + 1];
Chuck Levercc38bac2007-12-10 14:56:54 -0500862 u32 sc_prog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 unsigned int sc_netid_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400864 char sc_netid[RPCBIND_MAXNETIDLEN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 unsigned int sc_uaddr_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400866 char sc_uaddr[RPCBIND_MAXUADDRLEN + 1];
Chuck Levercc38bac2007-12-10 14:56:54 -0500867 u32 sc_cb_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868};
869
Trond Myklebustbb8b27e2010-04-16 16:43:06 -0400870struct nfs4_setclientid_res {
871 u64 clientid;
872 nfs4_verifier confirm;
873};
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875struct nfs4_statfs_arg {
876 const struct nfs_fh * fh;
877 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400878 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879};
880
Benny Halevy24ad1482009-04-01 09:21:56 -0400881struct nfs4_statfs_res {
882 struct nfs_fsstat *fsstat;
883 struct nfs4_sequence_res seq_res;
884};
885
Benny Halevy43652ad2009-04-01 09:21:54 -0400886struct nfs4_server_caps_arg {
887 struct nfs_fh *fhandle;
888 struct nfs4_sequence_args seq_args;
889};
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891struct nfs4_server_caps_res {
892 u32 attr_bitmask[2];
893 u32 acl_bitmask;
894 u32 has_links;
895 u32 has_symlinks;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400896 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897};
898
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400899struct nfs4_string {
900 unsigned int len;
901 char *data;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400902};
903
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400904#define NFS4_PATHNAME_MAXCOMPONENTS 512
905struct nfs4_pathname {
906 unsigned int ncomponents;
907 struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS];
908};
909
910#define NFS4_FS_LOCATION_MAXSERVERS 10
911struct nfs4_fs_location {
912 unsigned int nservers;
913 struct nfs4_string servers[NFS4_FS_LOCATION_MAXSERVERS];
914 struct nfs4_pathname rootpath;
915};
916
917#define NFS4_FS_LOCATIONS_MAXENTRIES 10
918struct nfs4_fs_locations {
Trond Myklebust683b57b2006-06-09 09:34:22 -0400919 struct nfs_fattr fattr;
920 const struct nfs_server *server;
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400921 struct nfs4_pathname fs_path;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400922 int nlocations;
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400923 struct nfs4_fs_location locations[NFS4_FS_LOCATIONS_MAXENTRIES];
Trond Myklebust683b57b2006-06-09 09:34:22 -0400924};
925
926struct nfs4_fs_locations_arg {
927 const struct nfs_fh *dir_fh;
928 const struct qstr *name;
929 struct page *page;
930 const u32 *bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400931 struct nfs4_sequence_args seq_args;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400932};
933
Benny Halevy22958462009-04-01 09:22:02 -0400934struct nfs4_fs_locations_res {
935 struct nfs4_fs_locations *fs_locations;
936 struct nfs4_sequence_res seq_res;
937};
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939#endif /* CONFIG_NFS_V4 */
940
Benny Halevy99fe60d2009-04-01 09:22:29 -0400941struct nfstime4 {
942 u64 seconds;
943 u32 nseconds;
944};
945
946#ifdef CONFIG_NFS_V4_1
947struct nfs_impl_id4 {
948 u32 domain_len;
949 char *domain;
950 u32 name_len;
951 char *name;
952 struct nfstime4 date;
953};
954
955#define NFS4_EXCHANGE_ID_LEN (48)
956struct nfs41_exchange_id_args {
957 struct nfs_client *client;
958 nfs4_verifier *verifier;
959 unsigned int id_len;
960 char id[NFS4_EXCHANGE_ID_LEN];
961 u32 flags;
962};
963
964struct server_owner {
965 uint64_t minor_id;
966 uint32_t major_id_sz;
967 char major_id[NFS4_OPAQUE_LIMIT];
968};
969
970struct server_scope {
971 uint32_t server_scope_sz;
972 char server_scope[NFS4_OPAQUE_LIMIT];
973};
974
975struct nfs41_exchange_id_res {
976 struct nfs_client *client;
977 u32 flags;
978};
Andy Adamsonfc931582009-04-01 09:22:31 -0400979
980struct nfs41_create_session_args {
981 struct nfs_client *client;
982 uint32_t flags;
983 uint32_t cb_program;
984 struct nfs4_channel_attrs fc_attrs; /* Fore Channel */
985 struct nfs4_channel_attrs bc_attrs; /* Back Channel */
986};
987
988struct nfs41_create_session_res {
989 struct nfs_client *client;
990};
Ricardo Labiaga180197532009-12-05 16:08:40 -0500991
992struct nfs41_reclaim_complete_args {
993 /* In the future extend to include curr_fh for use with migration */
994 unsigned char one_fs:1;
995 struct nfs4_sequence_args seq_args;
996};
997
998struct nfs41_reclaim_complete_res {
999 struct nfs4_sequence_res seq_res;
1000};
Benny Halevy99fe60d2009-04-01 09:22:29 -04001001#endif /* CONFIG_NFS_V4_1 */
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003struct nfs_page;
1004
Chuck Lever40859d72005-11-30 18:09:02 -05001005#define NFS_PAGEVEC_SIZE (8U)
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007struct nfs_read_data {
1008 int flags;
1009 struct rpc_task task;
1010 struct inode *inode;
1011 struct rpc_cred *cred;
1012 struct nfs_fattr fattr; /* fattr storage */
1013 struct list_head pages; /* Coalesced read requests */
1014 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -05001015 struct page **pagevec;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001016 unsigned int npages; /* Max length of pagevec */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 struct nfs_readargs args;
1018 struct nfs_readres res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 unsigned long timestamp; /* For lease renewal */
Fred Isamanbae724e2011-03-01 01:34:15 +00001020 struct pnfs_layout_segment *lseg;
Andy Adamsond83217c2011-03-01 01:34:17 +00001021 struct nfs_client *ds_clp; /* pNFS data server */
Andy Adamson64419a92011-03-01 01:34:16 +00001022 const struct rpc_call_ops *mds_ops;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00001023 int (*read_done_cb) (struct rpc_task *task, struct nfs_read_data *data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +00001024 __u64 mds_offset;
Chuck Lever0d0b5cb2006-05-25 01:40:53 -04001025 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026};
1027
1028struct nfs_write_data {
1029 int flags;
1030 struct rpc_task task;
1031 struct inode *inode;
1032 struct rpc_cred *cred;
1033 struct nfs_fattr fattr;
1034 struct nfs_writeverf verf;
1035 struct list_head pages; /* Coalesced requests we wish to flush */
1036 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -05001037 struct page **pagevec;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001038 unsigned int npages; /* Max length of pagevec */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 struct nfs_writeargs args; /* argument struct */
1040 struct nfs_writeres res; /* result struct */
Fred Isaman5053aa52011-03-03 15:13:43 +00001041 struct pnfs_layout_segment *lseg;
Fred Isamana69aef12011-03-03 15:13:47 +00001042 struct nfs_client *ds_clp; /* pNFS data server */
Fred Isamane0c2b382011-03-23 13:27:53 +00001043 int ds_commit_index;
Andy Adamson0382b742011-03-03 15:13:45 +00001044 const struct rpc_call_ops *mds_ops;
Fred Isamanb029bc92011-03-03 15:13:42 +00001045 int (*write_done_cb) (struct rpc_task *task, struct nfs_write_data *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046#ifdef CONFIG_NFS_V4
1047 unsigned long timestamp; /* For lease renewal */
1048#endif
Fred Isamana69aef12011-03-03 15:13:47 +00001049 __u64 mds_offset; /* Filelayout dense stripe */
Chuck Lever0d0b5cb2006-05-25 01:40:53 -04001050 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051};
1052
1053struct nfs_access_entry;
Andy Adamson45a52a02011-03-01 01:34:08 +00001054struct nfs_client;
Trond Myklebuste0dca7a2011-03-14 18:20:01 -04001055struct rpc_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057/*
1058 * RPC procedure vector for NFSv2/NFSv3 demuxing
1059 */
1060struct nfs_rpc_ops {
Chuck Leverc0e07cb2008-01-14 12:32:05 -05001061 u32 version; /* Protocol version */
Al Virof786aa92009-02-20 05:51:22 +00001062 const struct dentry_operations *dentry_ops;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001063 const struct inode_operations *dir_inode_ops;
1064 const struct inode_operations *file_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 int (*getroot) (struct nfs_server *, struct nfs_fh *,
1067 struct nfs_fsinfo *);
David Howells2b3de442006-08-22 20:06:09 -04001068 int (*lookupfh)(struct nfs_server *, struct nfs_fh *,
1069 struct qstr *, struct nfs_fh *,
1070 struct nfs_fattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 int (*getattr) (struct nfs_server *, struct nfs_fh *,
1072 struct nfs_fattr *);
1073 int (*setattr) (struct dentry *, struct nfs_fattr *,
1074 struct iattr *);
1075 int (*lookup) (struct inode *, struct qstr *,
1076 struct nfs_fh *, struct nfs_fattr *);
1077 int (*access) (struct inode *, struct nfs_access_entry *);
1078 int (*readlink)(struct inode *, struct page *, unsigned int,
1079 unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 int (*create) (struct inode *, struct dentry *,
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001081 struct iattr *, int, struct nfs_open_context *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 int (*remove) (struct inode *, struct qstr *);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001083 void (*unlink_setup) (struct rpc_message *, struct inode *dir);
1084 int (*unlink_done) (struct rpc_task *, struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 int (*rename) (struct inode *, struct qstr *,
1086 struct inode *, struct qstr *);
Jeff Laytond3d41522010-09-17 17:31:57 -04001087 void (*rename_setup) (struct rpc_message *msg, struct inode *dir);
1088 int (*rename_done) (struct rpc_task *task, struct inode *old_dir, struct inode *new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 int (*link) (struct inode *, struct inode *, struct qstr *);
Chuck Lever94a6d752006-08-22 20:06:23 -04001090 int (*symlink) (struct inode *, struct dentry *, struct page *,
1091 unsigned int, struct iattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 int (*mkdir) (struct inode *, struct dentry *, struct iattr *);
1093 int (*rmdir) (struct inode *, struct qstr *);
1094 int (*readdir) (struct dentry *, struct rpc_cred *,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04001095 u64, struct page **, unsigned int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 int (*mknod) (struct inode *, struct dentry *, struct iattr *,
1097 dev_t);
1098 int (*statfs) (struct nfs_server *, struct nfs_fh *,
1099 struct nfs_fsstat *);
1100 int (*fsinfo) (struct nfs_server *, struct nfs_fh *,
1101 struct nfs_fsinfo *);
1102 int (*pathconf) (struct nfs_server *, struct nfs_fh *,
1103 struct nfs_pathconf *);
David Howellse9326dc2006-08-22 20:06:10 -04001104 int (*set_capabilities)(struct nfs_server *, struct nfs_fh *);
Chuck Lever573c4e12010-12-14 14:58:11 +00001105 int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, int);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001106 void (*read_setup) (struct nfs_read_data *, struct rpc_message *);
Trond Myklebustec06c092006-03-20 13:44:27 -05001107 int (*read_done) (struct rpc_task *, struct nfs_read_data *);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001108 void (*write_setup) (struct nfs_write_data *, struct rpc_message *);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001109 int (*write_done) (struct rpc_task *, struct nfs_write_data *);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001110 void (*commit_setup) (struct nfs_write_data *, struct rpc_message *);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001111 int (*commit_done) (struct rpc_task *, struct nfs_write_data *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 int (*lock)(struct file *, int, struct file_lock *);
Trond Myklebust21162712008-05-20 19:34:39 -04001113 int (*lock_check_bounds)(const struct file_lock *);
Trond Myklebustada70d92005-06-22 17:16:22 +00001114 void (*clear_acl_cache)(struct inode *);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04001115 void (*close_context)(struct nfs_open_context *ctx, int);
Trond Myklebust2b484292010-09-17 10:56:51 -04001116 struct inode * (*open_context) (struct inode *dir,
1117 struct nfs_open_context *ctx,
1118 int open_flags,
1119 struct iattr *iattr);
Andy Adamson45a52a02011-03-01 01:34:08 +00001120 int (*init_client) (struct nfs_client *, const struct rpc_timeout *,
1121 const char *, rpc_authflavor_t, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122};
1123
1124/*
1125 * NFS_CALL(getattr, inode, (fattr));
1126 * into
1127 * NFS_PROTO(inode)->getattr(fattr);
1128 */
1129#define NFS_CALL(op, inode, args) NFS_PROTO(inode)->op args
1130
1131/*
1132 * Function vectors etc. for the NFS client
1133 */
David Howells509de812006-08-22 20:06:11 -04001134extern const struct nfs_rpc_ops nfs_v2_clientops;
1135extern const struct nfs_rpc_ops nfs_v3_clientops;
1136extern const struct nfs_rpc_ops nfs_v4_clientops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137extern struct rpc_version nfs_version2;
1138extern struct rpc_version nfs_version3;
1139extern struct rpc_version nfs_version4;
1140
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00001141extern struct rpc_version nfsacl_version3;
1142extern struct rpc_program nfsacl_program;
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144#endif