blob: 95682f7d738a0ffbd5195fa12a9c237d098f56af [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_NFS_XDR_H
2#define _LINUX_NFS_XDR_H
3
4#include <linux/sunrpc/xprt.h>
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00005#include <linux/nfsacl.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 {
31 unsigned short valid; /* which fields are valid */
32 __u64 pre_size; /* pre_op_attr.size */
33 struct timespec pre_mtime; /* pre_op_attr.mtime */
34 struct timespec pre_ctime; /* pre_op_attr.ctime */
35 enum nfs_ftype type; /* always use NFSv2 types */
36 __u32 mode;
37 __u32 nlink;
38 __u32 uid;
39 __u32 gid;
40 __u64 size;
41 union {
42 struct {
43 __u32 blocksize;
44 __u32 blocks;
45 } nfs2;
46 struct {
47 __u64 used;
48 } nfs3;
49 } du;
50 dev_t rdev;
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -040051 struct nfs_fsid fsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 __u64 fileid;
53 struct timespec atime;
54 struct timespec mtime;
55 struct timespec ctime;
56 __u32 bitmap[2]; /* NFSv4 returned attribute bitmap */
57 __u64 change_attr; /* NFSv4 change attribute */
58 __u64 pre_change_attr;/* pre-op NFSv4 change attribute */
Trond Myklebust33801142005-10-27 22:12:39 -040059 unsigned long time_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
62#define NFS_ATTR_WCC 0x0001 /* pre-op WCC data */
63#define NFS_ATTR_FATTR 0x0002 /* post-op attributes */
64#define NFS_ATTR_FATTR_V3 0x0004 /* NFSv3 attributes */
Trond Myklebust73a3d072006-05-25 01:40:47 -040065#define NFS_ATTR_FATTR_V4 0x0008 /* NFSv4 change attribute */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/*
68 * Info on the file system
69 */
70struct nfs_fsinfo {
71 struct nfs_fattr *fattr; /* Post-op attributes */
72 __u32 rtmax; /* max. read transfer size */
73 __u32 rtpref; /* pref. read transfer size */
74 __u32 rtmult; /* reads should be multiple of this */
75 __u32 wtmax; /* max. write transfer size */
76 __u32 wtpref; /* pref. write transfer size */
77 __u32 wtmult; /* writes should be multiple of this */
78 __u32 dtpref; /* pref. readdir transfer size */
79 __u64 maxfilesize;
80 __u32 lease_time; /* in seconds */
81};
82
83struct nfs_fsstat {
84 struct nfs_fattr *fattr; /* Post-op attributes */
85 __u64 tbytes; /* total size in bytes */
86 __u64 fbytes; /* # of free bytes */
87 __u64 abytes; /* # of bytes available to user */
88 __u64 tfiles; /* # of files */
89 __u64 ffiles; /* # of free files */
90 __u64 afiles; /* # of files available to user */
91};
92
93struct nfs2_fsstat {
94 __u32 tsize; /* Server transfer size */
95 __u32 bsize; /* Filesystem block size */
96 __u32 blocks; /* No. of "bsize" blocks on filesystem */
97 __u32 bfree; /* No. of free "bsize" blocks */
98 __u32 bavail; /* No. of available "bsize" blocks */
99};
100
101struct nfs_pathconf {
102 struct nfs_fattr *fattr; /* Post-op attributes */
103 __u32 max_link; /* max # of hard links */
104 __u32 max_namelen; /* max name length */
105};
106
107struct nfs4_change_info {
108 u32 atomic;
109 u64 before;
110 u64 after;
111};
112
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700113struct nfs_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
115 * Arguments to the open call.
116 */
117struct nfs_openargs {
118 const struct nfs_fh * fh;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700119 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 int open_flags;
121 __u64 clientid;
122 __u32 id;
123 union {
124 struct iattr * attrs; /* UNCHECKED, GUARDED */
125 nfs4_verifier verifier; /* EXCLUSIVE */
126 nfs4_stateid delegation; /* CLAIM_DELEGATE_CUR */
127 int delegation_type; /* CLAIM_PREVIOUS */
128 } u;
129 const struct qstr * name;
130 const struct nfs_server *server; /* Needed for ID mapping */
131 const u32 * bitmask;
132 __u32 claim;
133};
134
135struct nfs_openres {
136 nfs4_stateid stateid;
137 struct nfs_fh fh;
138 struct nfs4_change_info cinfo;
139 __u32 rflags;
140 struct nfs_fattr * f_attr;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400141 struct nfs_fattr * dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 const struct nfs_server *server;
143 int delegation_type;
144 nfs4_stateid delegation;
145 __u32 do_recall;
146 __u64 maxsize;
147};
148
149/*
150 * Arguments to the open_confirm call.
151 */
152struct nfs_open_confirmargs {
153 const struct nfs_fh * fh;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100154 nfs4_stateid * stateid;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700155 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
158struct nfs_open_confirmres {
159 nfs4_stateid stateid;
160};
161
162/*
163 * Arguments to the close call.
164 */
165struct nfs_closeargs {
166 struct nfs_fh * fh;
Trond Myklebust95121352005-10-18 14:20:12 -0700167 nfs4_stateid * stateid;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700168 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int open_flags;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400170 const u32 * bitmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172
173struct nfs_closeres {
174 nfs4_stateid stateid;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400175 struct nfs_fattr * fattr;
176 const struct nfs_server *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178/*
179 * * Arguments to the lock,lockt, and locku call.
180 * */
181struct nfs_lowner {
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100182 __u64 clientid;
183 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100186struct nfs_lock_args {
187 struct nfs_fh * fh;
188 struct file_lock * fl;
Trond Myklebust06735b32005-10-18 14:20:15 -0700189 struct nfs_seqid * lock_seqid;
190 nfs4_stateid * lock_stateid;
191 struct nfs_seqid * open_seqid;
192 nfs4_stateid * open_stateid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100193 struct nfs_lowner lock_owner;
194 unsigned char block : 1;
195 unsigned char reclaim : 1;
196 unsigned char new_lock_owner : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197};
198
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100199struct nfs_lock_res {
200 nfs4_stateid stateid;
201};
202
203struct nfs_locku_args {
204 struct nfs_fh * fh;
205 struct file_lock * fl;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700206 struct nfs_seqid * seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -0700207 nfs4_stateid * stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100210struct nfs_locku_res {
211 nfs4_stateid stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100214struct nfs_lockt_args {
215 struct nfs_fh * fh;
216 struct file_lock * fl;
217 struct nfs_lowner lock_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100220struct nfs_lockt_res {
221 struct file_lock * denied; /* LOCK, LOCKT failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222};
223
224struct nfs4_delegreturnargs {
225 const struct nfs_fh *fhandle;
226 const nfs4_stateid *stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100227 const u32 * bitmask;
228};
229
230struct nfs4_delegreturnres {
231 struct nfs_fattr * fattr;
232 const struct nfs_server *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
235/*
236 * Arguments to the read call.
237 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238struct nfs_readargs {
239 struct nfs_fh * fh;
240 struct nfs_open_context *context;
241 __u64 offset;
242 __u32 count;
243 unsigned int pgbase;
244 struct page ** pages;
245};
246
247struct nfs_readres {
248 struct nfs_fattr * fattr;
249 __u32 count;
250 int eof;
251};
252
253/*
254 * Arguments to the write call.
255 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256struct nfs_writeargs {
257 struct nfs_fh * fh;
258 struct nfs_open_context *context;
259 __u64 offset;
260 __u32 count;
261 enum nfs3_stable_how stable;
262 unsigned int pgbase;
263 struct page ** pages;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400264 const u32 * bitmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265};
266
267struct nfs_writeverf {
268 enum nfs3_stable_how committed;
269 __u32 verifier[2];
270};
271
272struct nfs_writeres {
273 struct nfs_fattr * fattr;
274 struct nfs_writeverf * verf;
275 __u32 count;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400276 const struct nfs_server *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277};
278
279/*
280 * Argument struct for decode_entry function
281 */
282struct nfs_entry {
283 __u64 ino;
284 __u64 cookie,
285 prev_cookie;
286 const char * name;
287 unsigned int len;
288 int eof;
289 struct nfs_fh * fh;
290 struct nfs_fattr * fattr;
291};
292
293/*
294 * The following types are for NFSv2 only.
295 */
296struct nfs_sattrargs {
297 struct nfs_fh * fh;
298 struct iattr * sattr;
299};
300
301struct nfs_diropargs {
302 struct nfs_fh * fh;
303 const char * name;
304 unsigned int len;
305};
306
307struct nfs_createargs {
308 struct nfs_fh * fh;
309 const char * name;
310 unsigned int len;
311 struct iattr * sattr;
312};
313
314struct nfs_renameargs {
315 struct nfs_fh * fromfh;
316 const char * fromname;
317 unsigned int fromlen;
318 struct nfs_fh * tofh;
319 const char * toname;
320 unsigned int tolen;
321};
322
323struct nfs_setattrargs {
324 struct nfs_fh * fh;
325 nfs4_stateid stateid;
326 struct iattr * iap;
327 const struct nfs_server * server; /* Needed for name mapping */
328 const u32 * bitmask;
329};
330
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000331struct nfs_setaclargs {
332 struct nfs_fh * fh;
333 size_t acl_len;
334 unsigned int acl_pgbase;
335 struct page ** acl_pages;
336};
337
J. Bruce Fields029d1052005-06-22 17:16:22 +0000338struct nfs_getaclargs {
339 struct nfs_fh * fh;
340 size_t acl_len;
341 unsigned int acl_pgbase;
342 struct page ** acl_pages;
343};
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345struct nfs_setattrres {
346 struct nfs_fattr * fattr;
347 const struct nfs_server * server;
348};
349
350struct nfs_linkargs {
351 struct nfs_fh * fromfh;
352 struct nfs_fh * tofh;
353 const char * toname;
354 unsigned int tolen;
355};
356
357struct nfs_symlinkargs {
358 struct nfs_fh * fromfh;
359 const char * fromname;
360 unsigned int fromlen;
361 const char * topath;
362 unsigned int tolen;
363 struct iattr * sattr;
364};
365
366struct nfs_readdirargs {
367 struct nfs_fh * fh;
368 __u32 cookie;
369 unsigned int count;
370 struct page ** pages;
371};
372
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000373struct nfs3_getaclargs {
374 struct nfs_fh * fh;
375 int mask;
376 struct page ** pages;
377};
378
379struct nfs3_setaclargs {
380 struct inode * inode;
381 int mask;
382 struct posix_acl * acl_access;
383 struct posix_acl * acl_default;
384 struct page ** pages;
385};
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387struct nfs_diropok {
388 struct nfs_fh * fh;
389 struct nfs_fattr * fattr;
390};
391
392struct nfs_readlinkargs {
393 struct nfs_fh * fh;
394 unsigned int pgbase;
395 unsigned int pglen;
396 struct page ** pages;
397};
398
399struct nfs3_sattrargs {
400 struct nfs_fh * fh;
401 struct iattr * sattr;
402 unsigned int guard;
403 struct timespec guardtime;
404};
405
406struct nfs3_diropargs {
407 struct nfs_fh * fh;
408 const char * name;
409 unsigned int len;
410};
411
412struct nfs3_accessargs {
413 struct nfs_fh * fh;
414 __u32 access;
415};
416
417struct nfs3_createargs {
418 struct nfs_fh * fh;
419 const char * name;
420 unsigned int len;
421 struct iattr * sattr;
422 enum nfs3_createmode createmode;
423 __u32 verifier[2];
424};
425
426struct nfs3_mkdirargs {
427 struct nfs_fh * fh;
428 const char * name;
429 unsigned int len;
430 struct iattr * sattr;
431};
432
433struct nfs3_symlinkargs {
434 struct nfs_fh * fromfh;
435 const char * fromname;
436 unsigned int fromlen;
437 const char * topath;
438 unsigned int tolen;
439 struct iattr * sattr;
440};
441
442struct nfs3_mknodargs {
443 struct nfs_fh * fh;
444 const char * name;
445 unsigned int len;
446 enum nfs3_ftype type;
447 struct iattr * sattr;
448 dev_t rdev;
449};
450
451struct nfs3_renameargs {
452 struct nfs_fh * fromfh;
453 const char * fromname;
454 unsigned int fromlen;
455 struct nfs_fh * tofh;
456 const char * toname;
457 unsigned int tolen;
458};
459
460struct nfs3_linkargs {
461 struct nfs_fh * fromfh;
462 struct nfs_fh * tofh;
463 const char * toname;
464 unsigned int tolen;
465};
466
467struct nfs3_readdirargs {
468 struct nfs_fh * fh;
469 __u64 cookie;
470 __u32 verf[2];
471 int plus;
472 unsigned int count;
473 struct page ** pages;
474};
475
476struct nfs3_diropres {
477 struct nfs_fattr * dir_attr;
478 struct nfs_fh * fh;
479 struct nfs_fattr * fattr;
480};
481
482struct nfs3_accessres {
483 struct nfs_fattr * fattr;
484 __u32 access;
485};
486
487struct nfs3_readlinkargs {
488 struct nfs_fh * fh;
489 unsigned int pgbase;
490 unsigned int pglen;
491 struct page ** pages;
492};
493
494struct nfs3_renameres {
495 struct nfs_fattr * fromattr;
496 struct nfs_fattr * toattr;
497};
498
499struct nfs3_linkres {
500 struct nfs_fattr * dir_attr;
501 struct nfs_fattr * fattr;
502};
503
504struct nfs3_readdirres {
505 struct nfs_fattr * dir_attr;
506 __u32 * verf;
507 int plus;
508};
509
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000510struct nfs3_getaclres {
511 struct nfs_fattr * fattr;
512 int mask;
513 unsigned int acl_access_count;
514 unsigned int acl_default_count;
515 struct posix_acl * acl_access;
516 struct posix_acl * acl_default;
517};
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519#ifdef CONFIG_NFS_V4
520
521typedef u64 clientid4;
522
523struct nfs4_accessargs {
524 const struct nfs_fh * fh;
525 u32 access;
526};
527
528struct nfs4_accessres {
529 u32 supported;
530 u32 access;
531};
532
533struct nfs4_create_arg {
534 u32 ftype;
535 union {
536 struct qstr * symlink; /* NF4LNK */
537 struct {
538 u32 specdata1;
539 u32 specdata2;
540 } device; /* NF4BLK, NF4CHR */
541 } u;
542 const struct qstr * name;
543 const struct nfs_server * server;
544 const struct iattr * attrs;
545 const struct nfs_fh * dir_fh;
546 const u32 * bitmask;
547};
548
549struct nfs4_create_res {
550 const struct nfs_server * server;
551 struct nfs_fh * fh;
552 struct nfs_fattr * fattr;
553 struct nfs4_change_info dir_cinfo;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400554 struct nfs_fattr * dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555};
556
557struct nfs4_fsinfo_arg {
558 const struct nfs_fh * fh;
559 const u32 * bitmask;
560};
561
562struct nfs4_getattr_arg {
563 const struct nfs_fh * fh;
564 const u32 * bitmask;
565};
566
567struct nfs4_getattr_res {
568 const struct nfs_server * server;
569 struct nfs_fattr * fattr;
570};
571
572struct nfs4_link_arg {
573 const struct nfs_fh * fh;
574 const struct nfs_fh * dir_fh;
575 const struct qstr * name;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400576 const u32 * bitmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577};
578
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400579struct nfs4_link_res {
580 const struct nfs_server * server;
581 struct nfs_fattr * fattr;
582 struct nfs4_change_info cinfo;
583 struct nfs_fattr * dir_attr;
584};
585
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587struct nfs4_lookup_arg {
588 const struct nfs_fh * dir_fh;
589 const struct qstr * name;
590 const u32 * bitmask;
591};
592
593struct nfs4_lookup_res {
594 const struct nfs_server * server;
595 struct nfs_fattr * fattr;
596 struct nfs_fh * fh;
597};
598
599struct nfs4_lookup_root_arg {
600 const u32 * bitmask;
601};
602
603struct nfs4_pathconf_arg {
604 const struct nfs_fh * fh;
605 const u32 * bitmask;
606};
607
608struct nfs4_readdir_arg {
609 const struct nfs_fh * fh;
610 u64 cookie;
611 nfs4_verifier verifier;
612 u32 count;
613 struct page ** pages; /* zero-copy data */
614 unsigned int pgbase; /* zero-copy data */
615 const u32 * bitmask;
616};
617
618struct nfs4_readdir_res {
619 nfs4_verifier verifier;
620 unsigned int pgbase;
621};
622
623struct nfs4_readlink {
624 const struct nfs_fh * fh;
625 unsigned int pgbase;
626 unsigned int pglen; /* zero-copy data */
627 struct page ** pages; /* zero-copy data */
628};
629
630struct nfs4_remove_arg {
631 const struct nfs_fh * fh;
632 const struct qstr * name;
Trond Myklebust16e42952005-10-27 22:12:44 -0400633 const u32 * bitmask;
634};
635
636struct nfs4_remove_res {
637 const struct nfs_server * server;
638 struct nfs4_change_info cinfo;
639 struct nfs_fattr * dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640};
641
642struct nfs4_rename_arg {
643 const struct nfs_fh * old_dir;
644 const struct nfs_fh * new_dir;
645 const struct qstr * old_name;
646 const struct qstr * new_name;
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400647 const u32 * bitmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648};
649
650struct nfs4_rename_res {
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400651 const struct nfs_server * server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 struct nfs4_change_info old_cinfo;
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400653 struct nfs_fattr * old_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 struct nfs4_change_info new_cinfo;
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400655 struct nfs_fattr * new_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656};
657
658struct nfs4_setclientid {
659 const nfs4_verifier * sc_verifier; /* request */
660 unsigned int sc_name_len;
661 char sc_name[32]; /* request */
662 u32 sc_prog; /* request */
663 unsigned int sc_netid_len;
664 char sc_netid[4]; /* request */
665 unsigned int sc_uaddr_len;
666 char sc_uaddr[24]; /* request */
667 u32 sc_cb_ident; /* request */
668};
669
670struct nfs4_statfs_arg {
671 const struct nfs_fh * fh;
672 const u32 * bitmask;
673};
674
675struct nfs4_server_caps_res {
676 u32 attr_bitmask[2];
677 u32 acl_bitmask;
678 u32 has_links;
679 u32 has_symlinks;
680};
681
682#endif /* CONFIG_NFS_V4 */
683
684struct nfs_page;
685
Chuck Lever40859d72005-11-30 18:09:02 -0500686#define NFS_PAGEVEC_SIZE (8U)
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688struct nfs_read_data {
689 int flags;
690 struct rpc_task task;
691 struct inode *inode;
692 struct rpc_cred *cred;
693 struct nfs_fattr fattr; /* fattr storage */
694 struct list_head pages; /* Coalesced read requests */
695 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -0500696 struct page **pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 struct nfs_readargs args;
698 struct nfs_readres res;
699#ifdef CONFIG_NFS_V4
700 unsigned long timestamp; /* For lease renewal */
701#endif
Chuck Lever0d0b5cb2006-05-25 01:40:53 -0400702 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703};
704
705struct nfs_write_data {
706 int flags;
707 struct rpc_task task;
708 struct inode *inode;
709 struct rpc_cred *cred;
710 struct nfs_fattr fattr;
711 struct nfs_writeverf verf;
712 struct list_head pages; /* Coalesced requests we wish to flush */
713 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -0500714 struct page **pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct nfs_writeargs args; /* argument struct */
716 struct nfs_writeres res; /* result struct */
717#ifdef CONFIG_NFS_V4
718 unsigned long timestamp; /* For lease renewal */
719#endif
Chuck Lever0d0b5cb2006-05-25 01:40:53 -0400720 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721};
722
723struct nfs_access_entry;
724
725/*
726 * RPC procedure vector for NFSv2/NFSv3 demuxing
727 */
728struct nfs_rpc_ops {
729 int version; /* Protocol version */
730 struct dentry_operations *dentry_ops;
731 struct inode_operations *dir_inode_ops;
J. Bruce Fields92cfc622005-06-22 17:16:22 +0000732 struct inode_operations *file_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 int (*getroot) (struct nfs_server *, struct nfs_fh *,
735 struct nfs_fsinfo *);
736 int (*getattr) (struct nfs_server *, struct nfs_fh *,
737 struct nfs_fattr *);
738 int (*setattr) (struct dentry *, struct nfs_fattr *,
739 struct iattr *);
740 int (*lookup) (struct inode *, struct qstr *,
741 struct nfs_fh *, struct nfs_fattr *);
742 int (*access) (struct inode *, struct nfs_access_entry *);
743 int (*readlink)(struct inode *, struct page *, unsigned int,
744 unsigned int);
745 int (*read) (struct nfs_read_data *);
746 int (*write) (struct nfs_write_data *);
747 int (*commit) (struct nfs_write_data *);
748 int (*create) (struct inode *, struct dentry *,
Trond Myklebust02a913a2005-10-18 14:20:17 -0700749 struct iattr *, int, struct nameidata *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 int (*remove) (struct inode *, struct qstr *);
751 int (*unlink_setup) (struct rpc_message *,
752 struct dentry *, struct qstr *);
753 int (*unlink_done) (struct dentry *, struct rpc_task *);
754 int (*rename) (struct inode *, struct qstr *,
755 struct inode *, struct qstr *);
756 int (*link) (struct inode *, struct inode *, struct qstr *);
757 int (*symlink) (struct inode *, struct qstr *, struct qstr *,
758 struct iattr *, struct nfs_fh *,
759 struct nfs_fattr *);
760 int (*mkdir) (struct inode *, struct dentry *, struct iattr *);
761 int (*rmdir) (struct inode *, struct qstr *);
762 int (*readdir) (struct dentry *, struct rpc_cred *,
763 u64, struct page *, unsigned int, int);
764 int (*mknod) (struct inode *, struct dentry *, struct iattr *,
765 dev_t);
766 int (*statfs) (struct nfs_server *, struct nfs_fh *,
767 struct nfs_fsstat *);
768 int (*fsinfo) (struct nfs_server *, struct nfs_fh *,
769 struct nfs_fsinfo *);
770 int (*pathconf) (struct nfs_server *, struct nfs_fh *,
771 struct nfs_pathconf *);
772 u32 * (*decode_dirent)(u32 *, struct nfs_entry *, int plus);
773 void (*read_setup) (struct nfs_read_data *);
Trond Myklebustec06c092006-03-20 13:44:27 -0500774 int (*read_done) (struct rpc_task *, struct nfs_read_data *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 void (*write_setup) (struct nfs_write_data *, int how);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500776 int (*write_done) (struct rpc_task *, struct nfs_write_data *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 void (*commit_setup) (struct nfs_write_data *, int how);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500778 int (*commit_done) (struct rpc_task *, struct nfs_write_data *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 int (*file_open) (struct inode *, struct file *);
780 int (*file_release) (struct inode *, struct file *);
781 int (*lock)(struct file *, int, struct file_lock *);
Trond Myklebustada70d92005-06-22 17:16:22 +0000782 void (*clear_acl_cache)(struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783};
784
785/*
786 * NFS_CALL(getattr, inode, (fattr));
787 * into
788 * NFS_PROTO(inode)->getattr(fattr);
789 */
790#define NFS_CALL(op, inode, args) NFS_PROTO(inode)->op args
791
792/*
793 * Function vectors etc. for the NFS client
794 */
795extern struct nfs_rpc_ops nfs_v2_clientops;
796extern struct nfs_rpc_ops nfs_v3_clientops;
797extern struct nfs_rpc_ops nfs_v4_clientops;
798extern struct rpc_version nfs_version2;
799extern struct rpc_version nfs_version3;
800extern struct rpc_version nfs_version4;
801
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000802extern struct rpc_version nfsacl_version3;
803extern struct rpc_program nfsacl_program;
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805#endif