blob: acb95fb27bccc51e386fe9421f1813ac36952277 [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 Myklebustbca794782009-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;
115 __u32 lease_time; /* in seconds */
116};
117
118struct nfs_fsstat {
119 struct nfs_fattr *fattr; /* Post-op attributes */
120 __u64 tbytes; /* total size in bytes */
121 __u64 fbytes; /* # of free bytes */
122 __u64 abytes; /* # of bytes available to user */
123 __u64 tfiles; /* # of files */
124 __u64 ffiles; /* # of free files */
125 __u64 afiles; /* # of files available to user */
126};
127
128struct nfs2_fsstat {
129 __u32 tsize; /* Server transfer size */
130 __u32 bsize; /* Filesystem block size */
131 __u32 blocks; /* No. of "bsize" blocks on filesystem */
132 __u32 bfree; /* No. of free "bsize" blocks */
133 __u32 bavail; /* No. of available "bsize" blocks */
134};
135
136struct nfs_pathconf {
137 struct nfs_fattr *fattr; /* Post-op attributes */
138 __u32 max_link; /* max # of hard links */
139 __u32 max_namelen; /* max name length */
140};
141
142struct nfs4_change_info {
143 u32 atomic;
144 u64 before;
145 u64 after;
146};
147
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700148struct nfs_seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400149
Andy Adamson557134a2009-04-01 09:21:53 -0400150/* nfs41 sessions channel attributes */
151struct nfs4_channel_attrs {
152 u32 headerpadsz;
153 u32 max_rqst_sz;
154 u32 max_resp_sz;
155 u32 max_resp_sz_cached;
156 u32 max_ops;
157 u32 max_reqs;
158};
159
160/* nfs41 sessions slot seqid */
161struct nfs4_slot {
162 u32 seq_nr;
163};
164
Benny Halevy9ff71c32009-04-01 09:21:52 -0400165struct nfs4_sequence_args {
Benny Halevyf3752972009-04-01 09:22:04 -0400166 struct nfs4_session *sa_session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400167 u8 sa_slotid;
168 u8 sa_cache_this;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400169};
170
171struct nfs4_sequence_res {
Benny Halevyf3752972009-04-01 09:22:04 -0400172 struct nfs4_session *sr_session;
Andy Adamson5f7dbd52009-04-01 09:22:05 -0400173 u8 sr_slotid; /* slot used to send request */
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400174 int sr_status; /* sequence operation status */
Richard Kennedya01878a2009-12-03 15:58:56 -0500175 unsigned long sr_renewal_time;
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500176 u32 sr_status_flags;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400177};
178
Andy Adamson2050f0c2009-04-01 09:22:30 -0400179struct nfs4_get_lease_time_args {
180 struct nfs4_sequence_args la_seq_args;
181};
182
183struct nfs4_get_lease_time_res {
184 struct nfs_fsinfo *lr_fsinfo;
185 struct nfs4_sequence_res lr_seq_res;
186};
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/*
189 * Arguments to the open call.
190 */
191struct nfs_openargs {
192 const struct nfs_fh * fh;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700193 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 int open_flags;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500195 fmode_t fmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 __u64 clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400197 __u64 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 union {
Trond Myklebustd77d76f2010-06-16 09:52:27 -0400199 struct {
200 struct iattr * attrs; /* UNCHECKED, GUARDED */
201 nfs4_verifier verifier; /* EXCLUSIVE */
202 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 nfs4_stateid delegation; /* CLAIM_DELEGATE_CUR */
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -0500204 fmode_t delegation_type; /* CLAIM_PREVIOUS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 } u;
206 const struct qstr * name;
207 const struct nfs_server *server; /* Needed for ID mapping */
208 const u32 * bitmask;
209 __u32 claim;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400210 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
213struct nfs_openres {
214 nfs4_stateid stateid;
215 struct nfs_fh fh;
216 struct nfs4_change_info cinfo;
217 __u32 rflags;
218 struct nfs_fattr * f_attr;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400219 struct nfs_fattr * dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400220 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 const struct nfs_server *server;
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -0500222 fmode_t delegation_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 nfs4_stateid delegation;
224 __u32 do_recall;
225 __u64 maxsize;
Jeff Laytonaa53ed52007-06-05 14:49:03 -0400226 __u32 attrset[NFS4_BITMAP_SIZE];
Benny Halevy9ff71c32009-04-01 09:21:52 -0400227 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
230/*
231 * Arguments to the open_confirm call.
232 */
233struct nfs_open_confirmargs {
234 const struct nfs_fh * fh;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100235 nfs4_stateid * stateid;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700236 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237};
238
239struct nfs_open_confirmres {
240 nfs4_stateid stateid;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400241 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242};
243
244/*
245 * Arguments to the close call.
246 */
247struct nfs_closeargs {
248 struct nfs_fh * fh;
Trond Myklebust95121352005-10-18 14:20:12 -0700249 nfs4_stateid * stateid;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700250 struct nfs_seqid * seqid;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500251 fmode_t fmode;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400252 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400253 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254};
255
256struct nfs_closeres {
257 nfs4_stateid stateid;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400258 struct nfs_fattr * fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400259 struct nfs_seqid * seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400260 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400261 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262};
263/*
264 * * Arguments to the lock,lockt, and locku call.
265 * */
266struct nfs_lowner {
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100267 __u64 clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400268 __u64 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100271struct nfs_lock_args {
272 struct nfs_fh * fh;
273 struct file_lock * fl;
Trond Myklebust06735b32005-10-18 14:20:15 -0700274 struct nfs_seqid * lock_seqid;
275 nfs4_stateid * lock_stateid;
276 struct nfs_seqid * open_seqid;
277 nfs4_stateid * open_stateid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100278 struct nfs_lowner lock_owner;
279 unsigned char block : 1;
280 unsigned char reclaim : 1;
281 unsigned char new_lock_owner : 1;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400282 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283};
284
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100285struct nfs_lock_res {
Trond Myklebustc1d51932008-04-07 13:20:54 -0400286 nfs4_stateid stateid;
287 struct nfs_seqid * lock_seqid;
288 struct nfs_seqid * open_seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400289 struct nfs4_sequence_res seq_res;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100290};
291
292struct nfs_locku_args {
293 struct nfs_fh * fh;
294 struct file_lock * fl;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700295 struct nfs_seqid * seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -0700296 nfs4_stateid * stateid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400297 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298};
299
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100300struct nfs_locku_res {
Trond Myklebustc1d51932008-04-07 13:20:54 -0400301 nfs4_stateid stateid;
302 struct nfs_seqid * seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400303 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304};
305
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100306struct nfs_lockt_args {
307 struct nfs_fh * fh;
308 struct file_lock * fl;
309 struct nfs_lowner lock_owner;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400310 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100313struct nfs_lockt_res {
314 struct file_lock * denied; /* LOCK, LOCKT failed */
Benny Halevy9ff71c32009-04-01 09:21:52 -0400315 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316};
317
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400318struct nfs_release_lockowner_args {
319 struct nfs_lowner lock_owner;
320};
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322struct nfs4_delegreturnargs {
323 const struct nfs_fh *fhandle;
324 const nfs4_stateid *stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100325 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400326 struct nfs4_sequence_args seq_args;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100327};
328
329struct nfs4_delegreturnres {
330 struct nfs_fattr * fattr;
331 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400332 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333};
334
335/*
336 * Arguments to the read call.
337 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338struct nfs_readargs {
339 struct nfs_fh * fh;
340 struct nfs_open_context *context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400341 struct nfs_lock_context *lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 __u64 offset;
343 __u32 count;
344 unsigned int pgbase;
345 struct page ** pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400346 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347};
348
349struct nfs_readres {
350 struct nfs_fattr * fattr;
351 __u32 count;
352 int eof;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400353 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354};
355
356/*
357 * Arguments to the write call.
358 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359struct nfs_writeargs {
360 struct nfs_fh * fh;
361 struct nfs_open_context *context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400362 struct nfs_lock_context *lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 __u64 offset;
364 __u32 count;
365 enum nfs3_stable_how stable;
366 unsigned int pgbase;
367 struct page ** pages;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400368 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400369 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370};
371
372struct nfs_writeverf {
373 enum nfs3_stable_how committed;
Al Virobc4785c2006-10-19 23:28:51 -0700374 __be32 verifier[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375};
376
377struct nfs_writeres {
378 struct nfs_fattr * fattr;
379 struct nfs_writeverf * verf;
380 __u32 count;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400381 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400382 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383};
384
385/*
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400386 * Common arguments to the unlink call
387 */
388struct nfs_removeargs {
389 const struct nfs_fh *fh;
390 struct qstr name;
391 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400392 struct nfs4_sequence_args seq_args;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400393};
394
395struct nfs_removeres {
396 const struct nfs_server *server;
Trond Myklebustd3468902010-04-16 16:22:50 -0400397 struct nfs_fattr *dir_attr;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400398 struct nfs4_change_info cinfo;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400399 struct nfs4_sequence_res seq_res;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400400};
401
402/*
Jeff Layton920769f2010-09-17 17:30:25 -0400403 * Common arguments to the rename call
404 */
405struct nfs_renameargs {
406 const struct nfs_fh *old_dir;
407 const struct nfs_fh *new_dir;
408 const struct qstr *old_name;
409 const struct qstr *new_name;
410 const u32 *bitmask;
411 struct nfs4_sequence_args seq_args;
412};
413
414/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 * Argument struct for decode_entry function
416 */
417struct nfs_entry {
418 __u64 ino;
419 __u64 cookie,
420 prev_cookie;
421 const char * name;
422 unsigned int len;
423 int eof;
424 struct nfs_fh * fh;
425 struct nfs_fattr * fattr;
426};
427
428/*
429 * The following types are for NFSv2 only.
430 */
431struct nfs_sattrargs {
432 struct nfs_fh * fh;
433 struct iattr * sattr;
434};
435
436struct nfs_diropargs {
437 struct nfs_fh * fh;
438 const char * name;
439 unsigned int len;
440};
441
442struct nfs_createargs {
443 struct nfs_fh * fh;
444 const char * name;
445 unsigned int len;
446 struct iattr * sattr;
447};
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449struct nfs_setattrargs {
450 struct nfs_fh * fh;
451 nfs4_stateid stateid;
452 struct iattr * iap;
453 const struct nfs_server * server; /* Needed for name mapping */
454 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400455 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456};
457
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000458struct nfs_setaclargs {
459 struct nfs_fh * fh;
460 size_t acl_len;
461 unsigned int acl_pgbase;
462 struct page ** acl_pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400463 struct nfs4_sequence_args seq_args;
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000464};
465
Benny Halevy73c403a2009-04-01 09:22:01 -0400466struct nfs_setaclres {
467 struct nfs4_sequence_res seq_res;
468};
469
J. Bruce Fields029d1052005-06-22 17:16:22 +0000470struct nfs_getaclargs {
471 struct nfs_fh * fh;
472 size_t acl_len;
473 unsigned int acl_pgbase;
474 struct page ** acl_pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400475 struct nfs4_sequence_args seq_args;
J. Bruce Fields029d1052005-06-22 17:16:22 +0000476};
477
Benny Halevy663c79b2009-04-01 09:21:59 -0400478struct nfs_getaclres {
479 size_t acl_len;
480 struct nfs4_sequence_res seq_res;
481};
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483struct nfs_setattrres {
484 struct nfs_fattr * fattr;
485 const struct nfs_server * server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400486 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487};
488
489struct nfs_linkargs {
490 struct nfs_fh * fromfh;
491 struct nfs_fh * tofh;
492 const char * toname;
493 unsigned int tolen;
494};
495
496struct nfs_symlinkargs {
497 struct nfs_fh * fromfh;
498 const char * fromname;
499 unsigned int fromlen;
Chuck Lever94a6d752006-08-22 20:06:23 -0400500 struct page ** pages;
501 unsigned int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 struct iattr * sattr;
503};
504
505struct nfs_readdirargs {
506 struct nfs_fh * fh;
507 __u32 cookie;
508 unsigned int count;
509 struct page ** pages;
510};
511
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000512struct nfs3_getaclargs {
513 struct nfs_fh * fh;
514 int mask;
515 struct page ** pages;
516};
517
518struct nfs3_setaclargs {
519 struct inode * inode;
520 int mask;
521 struct posix_acl * acl_access;
522 struct posix_acl * acl_default;
Trond Myklebustae461412009-03-10 20:33:18 -0400523 size_t len;
524 unsigned int npages;
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000525 struct page ** pages;
526};
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528struct nfs_diropok {
529 struct nfs_fh * fh;
530 struct nfs_fattr * fattr;
531};
532
533struct nfs_readlinkargs {
534 struct nfs_fh * fh;
535 unsigned int pgbase;
536 unsigned int pglen;
537 struct page ** pages;
538};
539
540struct nfs3_sattrargs {
541 struct nfs_fh * fh;
542 struct iattr * sattr;
543 unsigned int guard;
544 struct timespec guardtime;
545};
546
547struct nfs3_diropargs {
548 struct nfs_fh * fh;
549 const char * name;
550 unsigned int len;
551};
552
553struct nfs3_accessargs {
554 struct nfs_fh * fh;
555 __u32 access;
556};
557
558struct nfs3_createargs {
559 struct nfs_fh * fh;
560 const char * name;
561 unsigned int len;
562 struct iattr * sattr;
563 enum nfs3_createmode createmode;
Al Virobc4785c2006-10-19 23:28:51 -0700564 __be32 verifier[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565};
566
567struct nfs3_mkdirargs {
568 struct nfs_fh * fh;
569 const char * name;
570 unsigned int len;
571 struct iattr * sattr;
572};
573
574struct nfs3_symlinkargs {
575 struct nfs_fh * fromfh;
576 const char * fromname;
577 unsigned int fromlen;
Chuck Lever94a6d752006-08-22 20:06:23 -0400578 struct page ** pages;
579 unsigned int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 struct iattr * sattr;
581};
582
583struct nfs3_mknodargs {
584 struct nfs_fh * fh;
585 const char * name;
586 unsigned int len;
587 enum nfs3_ftype type;
588 struct iattr * sattr;
589 dev_t rdev;
590};
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592struct nfs3_linkargs {
593 struct nfs_fh * fromfh;
594 struct nfs_fh * tofh;
595 const char * toname;
596 unsigned int tolen;
597};
598
599struct nfs3_readdirargs {
600 struct nfs_fh * fh;
601 __u64 cookie;
Al Virobc4785c2006-10-19 23:28:51 -0700602 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 int plus;
604 unsigned int count;
605 struct page ** pages;
606};
607
608struct nfs3_diropres {
609 struct nfs_fattr * dir_attr;
610 struct nfs_fh * fh;
611 struct nfs_fattr * fattr;
612};
613
614struct nfs3_accessres {
615 struct nfs_fattr * fattr;
616 __u32 access;
617};
618
619struct nfs3_readlinkargs {
620 struct nfs_fh * fh;
621 unsigned int pgbase;
622 unsigned int pglen;
623 struct page ** pages;
624};
625
626struct nfs3_renameres {
627 struct nfs_fattr * fromattr;
628 struct nfs_fattr * toattr;
629};
630
631struct nfs3_linkres {
632 struct nfs_fattr * dir_attr;
633 struct nfs_fattr * fattr;
634};
635
636struct nfs3_readdirres {
637 struct nfs_fattr * dir_attr;
Al Virobc4785c2006-10-19 23:28:51 -0700638 __be32 * verf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 int plus;
640};
641
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000642struct nfs3_getaclres {
643 struct nfs_fattr * fattr;
644 int mask;
645 unsigned int acl_access_count;
646 unsigned int acl_default_count;
647 struct posix_acl * acl_access;
648 struct posix_acl * acl_default;
649};
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651#ifdef CONFIG_NFS_V4
652
653typedef u64 clientid4;
654
655struct nfs4_accessargs {
656 const struct nfs_fh * fh;
Trond Myklebust76b32992007-08-10 17:45:11 -0400657 const u32 * bitmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 u32 access;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400659 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660};
661
662struct nfs4_accessres {
Trond Myklebust76b32992007-08-10 17:45:11 -0400663 const struct nfs_server * server;
664 struct nfs_fattr * fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 u32 supported;
666 u32 access;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400667 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668};
669
670struct nfs4_create_arg {
671 u32 ftype;
672 union {
Chuck Lever94a6d752006-08-22 20:06:23 -0400673 struct {
674 struct page ** pages;
675 unsigned int len;
676 } symlink; /* NF4LNK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 struct {
678 u32 specdata1;
679 u32 specdata2;
680 } device; /* NF4BLK, NF4CHR */
681 } u;
682 const struct qstr * name;
683 const struct nfs_server * server;
684 const struct iattr * attrs;
685 const struct nfs_fh * dir_fh;
686 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400687 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688};
689
690struct nfs4_create_res {
691 const struct nfs_server * server;
692 struct nfs_fh * fh;
693 struct nfs_fattr * fattr;
694 struct nfs4_change_info dir_cinfo;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400695 struct nfs_fattr * dir_fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400696 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697};
698
699struct nfs4_fsinfo_arg {
700 const struct nfs_fh * fh;
701 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400702 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703};
704
Benny Halevy3dda5e42009-04-01 09:21:57 -0400705struct nfs4_fsinfo_res {
706 struct nfs_fsinfo *fsinfo;
707 struct nfs4_sequence_res seq_res;
708};
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710struct nfs4_getattr_arg {
711 const struct nfs_fh * fh;
712 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400713 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714};
715
716struct nfs4_getattr_res {
717 const struct nfs_server * server;
718 struct nfs_fattr * fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400719 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720};
721
722struct nfs4_link_arg {
723 const struct nfs_fh * fh;
724 const struct nfs_fh * dir_fh;
725 const struct qstr * name;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400726 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400727 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728};
729
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400730struct nfs4_link_res {
731 const struct nfs_server * server;
732 struct nfs_fattr * fattr;
733 struct nfs4_change_info cinfo;
734 struct nfs_fattr * dir_attr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400735 struct nfs4_sequence_res seq_res;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400736};
737
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739struct nfs4_lookup_arg {
740 const struct nfs_fh * dir_fh;
741 const struct qstr * name;
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_lookup_res {
747 const struct nfs_server * server;
748 struct nfs_fattr * fattr;
749 struct nfs_fh * fh;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400750 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751};
752
753struct nfs4_lookup_root_arg {
754 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400755 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756};
757
758struct nfs4_pathconf_arg {
759 const struct nfs_fh * fh;
760 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400761 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762};
763
Benny Halevyd45b2982009-04-01 09:21:58 -0400764struct nfs4_pathconf_res {
765 struct nfs_pathconf *pathconf;
766 struct nfs4_sequence_res seq_res;
767};
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769struct nfs4_readdir_arg {
770 const struct nfs_fh * fh;
771 u64 cookie;
772 nfs4_verifier verifier;
773 u32 count;
774 struct page ** pages; /* zero-copy data */
775 unsigned int pgbase; /* zero-copy data */
776 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400777 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778};
779
780struct nfs4_readdir_res {
781 nfs4_verifier verifier;
782 unsigned int pgbase;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400783 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784};
785
786struct nfs4_readlink {
787 const struct nfs_fh * fh;
788 unsigned int pgbase;
789 unsigned int pglen; /* zero-copy data */
790 struct page ** pages; /* zero-copy data */
Benny Halevy9ff71c32009-04-01 09:21:52 -0400791 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792};
793
Benny Halevyf50c7002009-04-01 09:21:55 -0400794struct nfs4_readlink_res {
795 struct nfs4_sequence_res seq_res;
796};
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798struct nfs4_rename_res {
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400799 const struct nfs_server * server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 struct nfs4_change_info old_cinfo;
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400801 struct nfs_fattr * old_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 struct nfs4_change_info new_cinfo;
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400803 struct nfs_fattr * new_fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400804 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805};
806
Trond Myklebust19d771f2008-10-08 13:54:52 -0400807#define NFS4_SETCLIENTID_NAMELEN (127)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808struct nfs4_setclientid {
Chuck Levercc38bac2007-12-10 14:56:54 -0500809 const nfs4_verifier * sc_verifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 unsigned int sc_name_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400811 char sc_name[NFS4_SETCLIENTID_NAMELEN + 1];
Chuck Levercc38bac2007-12-10 14:56:54 -0500812 u32 sc_prog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 unsigned int sc_netid_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400814 char sc_netid[RPCBIND_MAXNETIDLEN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 unsigned int sc_uaddr_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400816 char sc_uaddr[RPCBIND_MAXUADDRLEN + 1];
Chuck Levercc38bac2007-12-10 14:56:54 -0500817 u32 sc_cb_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818};
819
Trond Myklebustbb8b27e2010-04-16 16:43:06 -0400820struct nfs4_setclientid_res {
821 u64 clientid;
822 nfs4_verifier confirm;
823};
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825struct nfs4_statfs_arg {
826 const struct nfs_fh * fh;
827 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400828 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829};
830
Benny Halevy24ad1482009-04-01 09:21:56 -0400831struct nfs4_statfs_res {
832 struct nfs_fsstat *fsstat;
833 struct nfs4_sequence_res seq_res;
834};
835
Benny Halevy43652ad2009-04-01 09:21:54 -0400836struct nfs4_server_caps_arg {
837 struct nfs_fh *fhandle;
838 struct nfs4_sequence_args seq_args;
839};
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841struct nfs4_server_caps_res {
842 u32 attr_bitmask[2];
843 u32 acl_bitmask;
844 u32 has_links;
845 u32 has_symlinks;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400846 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847};
848
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400849struct nfs4_string {
850 unsigned int len;
851 char *data;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400852};
853
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400854#define NFS4_PATHNAME_MAXCOMPONENTS 512
855struct nfs4_pathname {
856 unsigned int ncomponents;
857 struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS];
858};
859
860#define NFS4_FS_LOCATION_MAXSERVERS 10
861struct nfs4_fs_location {
862 unsigned int nservers;
863 struct nfs4_string servers[NFS4_FS_LOCATION_MAXSERVERS];
864 struct nfs4_pathname rootpath;
865};
866
867#define NFS4_FS_LOCATIONS_MAXENTRIES 10
868struct nfs4_fs_locations {
Trond Myklebust683b57b2006-06-09 09:34:22 -0400869 struct nfs_fattr fattr;
870 const struct nfs_server *server;
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400871 struct nfs4_pathname fs_path;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400872 int nlocations;
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400873 struct nfs4_fs_location locations[NFS4_FS_LOCATIONS_MAXENTRIES];
Trond Myklebust683b57b2006-06-09 09:34:22 -0400874};
875
876struct nfs4_fs_locations_arg {
877 const struct nfs_fh *dir_fh;
878 const struct qstr *name;
879 struct page *page;
880 const u32 *bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400881 struct nfs4_sequence_args seq_args;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400882};
883
Benny Halevy22958462009-04-01 09:22:02 -0400884struct nfs4_fs_locations_res {
885 struct nfs4_fs_locations *fs_locations;
886 struct nfs4_sequence_res seq_res;
887};
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889#endif /* CONFIG_NFS_V4 */
890
Benny Halevy99fe60d2009-04-01 09:22:29 -0400891struct nfstime4 {
892 u64 seconds;
893 u32 nseconds;
894};
895
896#ifdef CONFIG_NFS_V4_1
897struct nfs_impl_id4 {
898 u32 domain_len;
899 char *domain;
900 u32 name_len;
901 char *name;
902 struct nfstime4 date;
903};
904
905#define NFS4_EXCHANGE_ID_LEN (48)
906struct nfs41_exchange_id_args {
907 struct nfs_client *client;
908 nfs4_verifier *verifier;
909 unsigned int id_len;
910 char id[NFS4_EXCHANGE_ID_LEN];
911 u32 flags;
912};
913
914struct server_owner {
915 uint64_t minor_id;
916 uint32_t major_id_sz;
917 char major_id[NFS4_OPAQUE_LIMIT];
918};
919
920struct server_scope {
921 uint32_t server_scope_sz;
922 char server_scope[NFS4_OPAQUE_LIMIT];
923};
924
925struct nfs41_exchange_id_res {
926 struct nfs_client *client;
927 u32 flags;
928};
Andy Adamsonfc931582009-04-01 09:22:31 -0400929
930struct nfs41_create_session_args {
931 struct nfs_client *client;
932 uint32_t flags;
933 uint32_t cb_program;
934 struct nfs4_channel_attrs fc_attrs; /* Fore Channel */
935 struct nfs4_channel_attrs bc_attrs; /* Back Channel */
936};
937
938struct nfs41_create_session_res {
939 struct nfs_client *client;
940};
Ricardo Labiaga18019752009-12-05 16:08:40 -0500941
942struct nfs41_reclaim_complete_args {
943 /* In the future extend to include curr_fh for use with migration */
944 unsigned char one_fs:1;
945 struct nfs4_sequence_args seq_args;
946};
947
948struct nfs41_reclaim_complete_res {
949 struct nfs4_sequence_res seq_res;
950};
Benny Halevy99fe60d2009-04-01 09:22:29 -0400951#endif /* CONFIG_NFS_V4_1 */
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953struct nfs_page;
954
Chuck Lever40859d72005-11-30 18:09:02 -0500955#define NFS_PAGEVEC_SIZE (8U)
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957struct nfs_read_data {
958 int flags;
959 struct rpc_task task;
960 struct inode *inode;
961 struct rpc_cred *cred;
962 struct nfs_fattr fattr; /* fattr storage */
963 struct list_head pages; /* Coalesced read requests */
964 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -0500965 struct page **pagevec;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700966 unsigned int npages; /* Max length of pagevec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 struct nfs_readargs args;
968 struct nfs_readres res;
969#ifdef CONFIG_NFS_V4
970 unsigned long timestamp; /* For lease renewal */
971#endif
Chuck Lever0d0b5cb2006-05-25 01:40:53 -0400972 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973};
974
975struct nfs_write_data {
976 int flags;
977 struct rpc_task task;
978 struct inode *inode;
979 struct rpc_cred *cred;
980 struct nfs_fattr fattr;
981 struct nfs_writeverf verf;
982 struct list_head pages; /* Coalesced requests we wish to flush */
983 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -0500984 struct page **pagevec;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700985 unsigned int npages; /* Max length of pagevec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 struct nfs_writeargs args; /* argument struct */
987 struct nfs_writeres res; /* result struct */
988#ifdef CONFIG_NFS_V4
989 unsigned long timestamp; /* For lease renewal */
990#endif
Chuck Lever0d0b5cb2006-05-25 01:40:53 -0400991 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992};
993
994struct nfs_access_entry;
995
996/*
997 * RPC procedure vector for NFSv2/NFSv3 demuxing
998 */
999struct nfs_rpc_ops {
Chuck Leverc0e07cb2008-01-14 12:32:05 -05001000 u32 version; /* Protocol version */
Al Virof786aa92009-02-20 05:51:22 +00001001 const struct dentry_operations *dentry_ops;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001002 const struct inode_operations *dir_inode_ops;
1003 const struct inode_operations *file_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 int (*getroot) (struct nfs_server *, struct nfs_fh *,
1006 struct nfs_fsinfo *);
David Howells2b3de442006-08-22 20:06:09 -04001007 int (*lookupfh)(struct nfs_server *, struct nfs_fh *,
1008 struct qstr *, struct nfs_fh *,
1009 struct nfs_fattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 int (*getattr) (struct nfs_server *, struct nfs_fh *,
1011 struct nfs_fattr *);
1012 int (*setattr) (struct dentry *, struct nfs_fattr *,
1013 struct iattr *);
1014 int (*lookup) (struct inode *, struct qstr *,
1015 struct nfs_fh *, struct nfs_fattr *);
1016 int (*access) (struct inode *, struct nfs_access_entry *);
1017 int (*readlink)(struct inode *, struct page *, unsigned int,
1018 unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 int (*create) (struct inode *, struct dentry *,
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001020 struct iattr *, int, struct nfs_open_context *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 int (*remove) (struct inode *, struct qstr *);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001022 void (*unlink_setup) (struct rpc_message *, struct inode *dir);
1023 int (*unlink_done) (struct rpc_task *, struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 int (*rename) (struct inode *, struct qstr *,
1025 struct inode *, struct qstr *);
1026 int (*link) (struct inode *, struct inode *, struct qstr *);
Chuck Lever94a6d752006-08-22 20:06:23 -04001027 int (*symlink) (struct inode *, struct dentry *, struct page *,
1028 unsigned int, struct iattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 int (*mkdir) (struct inode *, struct dentry *, struct iattr *);
1030 int (*rmdir) (struct inode *, struct qstr *);
1031 int (*readdir) (struct dentry *, struct rpc_cred *,
1032 u64, struct page *, unsigned int, int);
1033 int (*mknod) (struct inode *, struct dentry *, struct iattr *,
1034 dev_t);
1035 int (*statfs) (struct nfs_server *, struct nfs_fh *,
1036 struct nfs_fsstat *);
1037 int (*fsinfo) (struct nfs_server *, struct nfs_fh *,
1038 struct nfs_fsinfo *);
1039 int (*pathconf) (struct nfs_server *, struct nfs_fh *,
1040 struct nfs_pathconf *);
David Howellse9326dc2006-08-22 20:06:10 -04001041 int (*set_capabilities)(struct nfs_server *, struct nfs_fh *);
Al Viro0dbb4c62006-10-19 23:28:49 -07001042 __be32 *(*decode_dirent)(__be32 *, struct nfs_entry *, int plus);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001043 void (*read_setup) (struct nfs_read_data *, struct rpc_message *);
Trond Myklebustec06c092006-03-20 13:44:27 -05001044 int (*read_done) (struct rpc_task *, struct nfs_read_data *);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001045 void (*write_setup) (struct nfs_write_data *, struct rpc_message *);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001046 int (*write_done) (struct rpc_task *, struct nfs_write_data *);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001047 void (*commit_setup) (struct nfs_write_data *, struct rpc_message *);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001048 int (*commit_done) (struct rpc_task *, struct nfs_write_data *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 int (*lock)(struct file *, int, struct file_lock *);
Trond Myklebust21162712008-05-20 19:34:39 -04001050 int (*lock_check_bounds)(const struct file_lock *);
Trond Myklebustada70d92005-06-22 17:16:22 +00001051 void (*clear_acl_cache)(struct inode *);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04001052 void (*close_context)(struct nfs_open_context *ctx, int);
Trond Myklebust2b484292010-09-17 10:56:51 -04001053 struct inode * (*open_context) (struct inode *dir,
1054 struct nfs_open_context *ctx,
1055 int open_flags,
1056 struct iattr *iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057};
1058
1059/*
1060 * NFS_CALL(getattr, inode, (fattr));
1061 * into
1062 * NFS_PROTO(inode)->getattr(fattr);
1063 */
1064#define NFS_CALL(op, inode, args) NFS_PROTO(inode)->op args
1065
1066/*
1067 * Function vectors etc. for the NFS client
1068 */
David Howells509de812006-08-22 20:06:11 -04001069extern const struct nfs_rpc_ops nfs_v2_clientops;
1070extern const struct nfs_rpc_ops nfs_v3_clientops;
1071extern const struct nfs_rpc_ops nfs_v4_clientops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072extern struct rpc_version nfs_version2;
1073extern struct rpc_version nfs_version3;
1074extern struct rpc_version nfs_version4;
1075
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00001076extern struct rpc_version nfsacl_version3;
1077extern struct rpc_program nfsacl_program;
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079#endif