]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/nfs_xdr.h
NFSv41: Clean up exclusive create
[net-next-2.6.git] / include / linux / nfs_xdr.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_NFS_XDR_H
2#define _LINUX_NFS_XDR_H
3
b7fa0554 4#include <linux/nfsacl.h>
d7031582 5#include <linux/nfs3.h>
1da177e4 6
40859d7e
CL
7/*
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
8b4bdcf8
TM
17struct nfs_fsid {
18 uint64_t major;
19 uint64_t minor;
1da177e4
LT
20};
21
8b4bdcf8
TM
22/*
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
1da177e4 30struct nfs_fattr {
9e6e70f8 31 unsigned int valid; /* which fields are valid */
bca79478 32 umode_t mode;
1da177e4
LT
33 __u32 nlink;
34 __u32 uid;
35 __u32 gid;
9fa8d66f 36 dev_t rdev;
1da177e4
LT
37 __u64 size;
38 union {
39 struct {
40 __u32 blocksize;
41 __u32 blocks;
42 } nfs2;
43 struct {
44 __u64 used;
45 } nfs3;
46 } du;
8b4bdcf8 47 struct nfs_fsid fsid;
1da177e4
LT
48 __u64 fileid;
49 struct timespec atime;
50 struct timespec mtime;
51 struct timespec ctime;
1da177e4
LT
52 __u64 change_attr; /* NFSv4 change attribute */
53 __u64 pre_change_attr;/* pre-op NFSv4 change attribute */
1ca277d8
TM
54 __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 */
33801147 57 unsigned long time_start;
4704f0e2 58 unsigned long gencount;
1da177e4
LT
59};
60
9e6e70f8
TM
61#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)
1da177e4
LT
101
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
cee54fc9 148struct nfs_seqid;
9ff71c3a 149
557134a3
AA
150/* 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
9ff71c3a 165struct nfs4_sequence_args {
f3752975 166 struct nfs4_session *sa_session;
fbcd4abc
AA
167 u8 sa_slotid;
168 u8 sa_cache_this;
9ff71c3a
BH
169};
170
171struct nfs4_sequence_res {
f3752975 172 struct nfs4_session *sr_session;
5f7dbd5c 173 u8 sr_slotid; /* slot used to send request */
fbcd4abc 174 int sr_status; /* sequence operation status */
a01878aa 175 unsigned long sr_renewal_time;
0629e370 176 u32 sr_status_flags;
9ff71c3a
BH
177};
178
2050f0cc
AA
179struct 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
1da177e4
LT
188/*
189 * Arguments to the open call.
190 */
191struct nfs_openargs {
192 const struct nfs_fh * fh;
cee54fc9 193 struct nfs_seqid * seqid;
1da177e4 194 int open_flags;
dc0b027d 195 fmode_t fmode;
1da177e4 196 __u64 clientid;
9f958ab8 197 __u64 id;
1da177e4 198 union {
d77d76ff
TM
199 struct {
200 struct iattr * attrs; /* UNCHECKED, GUARDED */
201 nfs4_verifier verifier; /* EXCLUSIVE */
202 };
1da177e4 203 nfs4_stateid delegation; /* CLAIM_DELEGATE_CUR */
bd7bf9d5 204 fmode_t delegation_type; /* CLAIM_PREVIOUS */
1da177e4
LT
205 } u;
206 const struct qstr * name;
207 const struct nfs_server *server; /* Needed for ID mapping */
208 const u32 * bitmask;
209 __u32 claim;
9ff71c3a 210 struct nfs4_sequence_args seq_args;
1da177e4
LT
211};
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;
56ae19f3 219 struct nfs_fattr * dir_attr;
c1d51931 220 struct nfs_seqid * seqid;
1da177e4 221 const struct nfs_server *server;
bd7bf9d5 222 fmode_t delegation_type;
1da177e4
LT
223 nfs4_stateid delegation;
224 __u32 do_recall;
225 __u64 maxsize;
aa53ed54 226 __u32 attrset[NFS4_BITMAP_SIZE];
9ff71c3a 227 struct nfs4_sequence_res seq_res;
1da177e4
LT
228};
229
230/*
231 * Arguments to the open_confirm call.
232 */
233struct nfs_open_confirmargs {
234 const struct nfs_fh * fh;
cdd4e68b 235 nfs4_stateid * stateid;
cee54fc9 236 struct nfs_seqid * seqid;
1da177e4
LT
237};
238
239struct nfs_open_confirmres {
240 nfs4_stateid stateid;
c1d51931 241 struct nfs_seqid * seqid;
1da177e4
LT
242};
243
244/*
245 * Arguments to the close call.
246 */
247struct nfs_closeargs {
248 struct nfs_fh * fh;
9512135d 249 nfs4_stateid * stateid;
cee54fc9 250 struct nfs_seqid * seqid;
dc0b027d 251 fmode_t fmode;
516a6af6 252 const u32 * bitmask;
9ff71c3a 253 struct nfs4_sequence_args seq_args;
1da177e4
LT
254};
255
256struct nfs_closeres {
257 nfs4_stateid stateid;
516a6af6 258 struct nfs_fattr * fattr;
c1d51931 259 struct nfs_seqid * seqid;
516a6af6 260 const struct nfs_server *server;
9ff71c3a 261 struct nfs4_sequence_res seq_res;
1da177e4
LT
262};
263/*
264 * * Arguments to the lock,lockt, and locku call.
265 * */
266struct nfs_lowner {
911d1aaf 267 __u64 clientid;
9f958ab8 268 __u64 id;
1da177e4
LT
269};
270
911d1aaf
TM
271struct nfs_lock_args {
272 struct nfs_fh * fh;
273 struct file_lock * fl;
cee54fc9 274 struct nfs_seqid * lock_seqid;
06735b34
TM
275 nfs4_stateid * lock_stateid;
276 struct nfs_seqid * open_seqid;
277 nfs4_stateid * open_stateid;
911d1aaf
TM
278 struct nfs_lowner lock_owner;
279 unsigned char block : 1;
280 unsigned char reclaim : 1;
281 unsigned char new_lock_owner : 1;
9ff71c3a 282 struct nfs4_sequence_args seq_args;
911d1aaf
TM
283};
284
285struct nfs_lock_res {
c1d51931
TM
286 nfs4_stateid stateid;
287 struct nfs_seqid * lock_seqid;
288 struct nfs_seqid * open_seqid;
9ff71c3a 289 struct nfs4_sequence_res seq_res;
1da177e4
LT
290};
291
911d1aaf
TM
292struct nfs_locku_args {
293 struct nfs_fh * fh;
294 struct file_lock * fl;
cee54fc9 295 struct nfs_seqid * seqid;
faf5f49c 296 nfs4_stateid * stateid;
9ff71c3a 297 struct nfs4_sequence_args seq_args;
1da177e4
LT
298};
299
911d1aaf 300struct nfs_locku_res {
c1d51931
TM
301 nfs4_stateid stateid;
302 struct nfs_seqid * seqid;
9ff71c3a 303 struct nfs4_sequence_res seq_res;
1da177e4
LT
304};
305
911d1aaf
TM
306struct nfs_lockt_args {
307 struct nfs_fh * fh;
308 struct file_lock * fl;
309 struct nfs_lowner lock_owner;
9ff71c3a 310 struct nfs4_sequence_args seq_args;
1da177e4
LT
311};
312
911d1aaf
TM
313struct nfs_lockt_res {
314 struct file_lock * denied; /* LOCK, LOCKT failed */
9ff71c3a 315 struct nfs4_sequence_res seq_res;
1da177e4
LT
316};
317
318struct nfs4_delegreturnargs {
319 const struct nfs_fh *fhandle;
320 const nfs4_stateid *stateid;
fa178f29 321 const u32 * bitmask;
9ff71c3a 322 struct nfs4_sequence_args seq_args;
fa178f29
TM
323};
324
325struct nfs4_delegreturnres {
326 struct nfs_fattr * fattr;
327 const struct nfs_server *server;
9ff71c3a 328 struct nfs4_sequence_res seq_res;
1da177e4
LT
329};
330
331/*
332 * Arguments to the read call.
333 */
1da177e4
LT
334struct nfs_readargs {
335 struct nfs_fh * fh;
336 struct nfs_open_context *context;
337 __u64 offset;
338 __u32 count;
339 unsigned int pgbase;
340 struct page ** pages;
9ff71c3a 341 struct nfs4_sequence_args seq_args;
1da177e4
LT
342};
343
344struct nfs_readres {
345 struct nfs_fattr * fattr;
346 __u32 count;
347 int eof;
9ff71c3a 348 struct nfs4_sequence_res seq_res;
1da177e4
LT
349};
350
351/*
352 * Arguments to the write call.
353 */
1da177e4
LT
354struct nfs_writeargs {
355 struct nfs_fh * fh;
356 struct nfs_open_context *context;
357 __u64 offset;
358 __u32 count;
359 enum nfs3_stable_how stable;
360 unsigned int pgbase;
361 struct page ** pages;
4f9838c7 362 const u32 * bitmask;
9ff71c3a 363 struct nfs4_sequence_args seq_args;
1da177e4
LT
364};
365
366struct nfs_writeverf {
367 enum nfs3_stable_how committed;
bc4785cd 368 __be32 verifier[2];
1da177e4
LT
369};
370
371struct nfs_writeres {
372 struct nfs_fattr * fattr;
373 struct nfs_writeverf * verf;
374 __u32 count;
4f9838c7 375 const struct nfs_server *server;
9ff71c3a 376 struct nfs4_sequence_res seq_res;
1da177e4
LT
377};
378
4fdc17b2
TM
379/*
380 * Common arguments to the unlink call
381 */
382struct nfs_removeargs {
383 const struct nfs_fh *fh;
384 struct qstr name;
385 const u32 * bitmask;
9ff71c3a 386 struct nfs4_sequence_args seq_args;
4fdc17b2
TM
387};
388
389struct nfs_removeres {
390 const struct nfs_server *server;
d346890b 391 struct nfs_fattr *dir_attr;
4fdc17b2 392 struct nfs4_change_info cinfo;
9ff71c3a 393 struct nfs4_sequence_res seq_res;
4fdc17b2
TM
394};
395
1da177e4
LT
396/*
397 * Argument struct for decode_entry function
398 */
399struct nfs_entry {
400 __u64 ino;
401 __u64 cookie,
402 prev_cookie;
403 const char * name;
404 unsigned int len;
405 int eof;
406 struct nfs_fh * fh;
407 struct nfs_fattr * fattr;
408};
409
410/*
411 * The following types are for NFSv2 only.
412 */
413struct nfs_sattrargs {
414 struct nfs_fh * fh;
415 struct iattr * sattr;
416};
417
418struct nfs_diropargs {
419 struct nfs_fh * fh;
420 const char * name;
421 unsigned int len;
422};
423
424struct nfs_createargs {
425 struct nfs_fh * fh;
426 const char * name;
427 unsigned int len;
428 struct iattr * sattr;
429};
430
431struct nfs_renameargs {
432 struct nfs_fh * fromfh;
433 const char * fromname;
434 unsigned int fromlen;
435 struct nfs_fh * tofh;
436 const char * toname;
437 unsigned int tolen;
438};
439
440struct nfs_setattrargs {
441 struct nfs_fh * fh;
442 nfs4_stateid stateid;
443 struct iattr * iap;
444 const struct nfs_server * server; /* Needed for name mapping */
445 const u32 * bitmask;
9ff71c3a 446 struct nfs4_sequence_args seq_args;
1da177e4
LT
447};
448
23ec6965
BF
449struct nfs_setaclargs {
450 struct nfs_fh * fh;
451 size_t acl_len;
452 unsigned int acl_pgbase;
453 struct page ** acl_pages;
9ff71c3a 454 struct nfs4_sequence_args seq_args;
23ec6965
BF
455};
456
73c403a9
BH
457struct nfs_setaclres {
458 struct nfs4_sequence_res seq_res;
459};
460
029d105e
BF
461struct nfs_getaclargs {
462 struct nfs_fh * fh;
463 size_t acl_len;
464 unsigned int acl_pgbase;
465 struct page ** acl_pages;
9ff71c3a 466 struct nfs4_sequence_args seq_args;
029d105e
BF
467};
468
663c79b3
BH
469struct nfs_getaclres {
470 size_t acl_len;
471 struct nfs4_sequence_res seq_res;
472};
473
1da177e4
LT
474struct nfs_setattrres {
475 struct nfs_fattr * fattr;
476 const struct nfs_server * server;
9ff71c3a 477 struct nfs4_sequence_res seq_res;
1da177e4
LT
478};
479
480struct nfs_linkargs {
481 struct nfs_fh * fromfh;
482 struct nfs_fh * tofh;
483 const char * toname;
484 unsigned int tolen;
485};
486
487struct nfs_symlinkargs {
488 struct nfs_fh * fromfh;
489 const char * fromname;
490 unsigned int fromlen;
94a6d753
CL
491 struct page ** pages;
492 unsigned int pathlen;
1da177e4
LT
493 struct iattr * sattr;
494};
495
496struct nfs_readdirargs {
497 struct nfs_fh * fh;
498 __u32 cookie;
499 unsigned int count;
500 struct page ** pages;
501};
502
b7fa0554
AG
503struct nfs3_getaclargs {
504 struct nfs_fh * fh;
505 int mask;
506 struct page ** pages;
507};
508
509struct nfs3_setaclargs {
510 struct inode * inode;
511 int mask;
512 struct posix_acl * acl_access;
513 struct posix_acl * acl_default;
ae46141f
TM
514 size_t len;
515 unsigned int npages;
b7fa0554
AG
516 struct page ** pages;
517};
518
1da177e4
LT
519struct nfs_diropok {
520 struct nfs_fh * fh;
521 struct nfs_fattr * fattr;
522};
523
524struct nfs_readlinkargs {
525 struct nfs_fh * fh;
526 unsigned int pgbase;
527 unsigned int pglen;
528 struct page ** pages;
529};
530
531struct nfs3_sattrargs {
532 struct nfs_fh * fh;
533 struct iattr * sattr;
534 unsigned int guard;
535 struct timespec guardtime;
536};
537
538struct nfs3_diropargs {
539 struct nfs_fh * fh;
540 const char * name;
541 unsigned int len;
542};
543
544struct nfs3_accessargs {
545 struct nfs_fh * fh;
546 __u32 access;
547};
548
549struct nfs3_createargs {
550 struct nfs_fh * fh;
551 const char * name;
552 unsigned int len;
553 struct iattr * sattr;
554 enum nfs3_createmode createmode;
bc4785cd 555 __be32 verifier[2];
1da177e4
LT
556};
557
558struct nfs3_mkdirargs {
559 struct nfs_fh * fh;
560 const char * name;
561 unsigned int len;
562 struct iattr * sattr;
563};
564
565struct nfs3_symlinkargs {
566 struct nfs_fh * fromfh;
567 const char * fromname;
568 unsigned int fromlen;
94a6d753
CL
569 struct page ** pages;
570 unsigned int pathlen;
1da177e4
LT
571 struct iattr * sattr;
572};
573
574struct nfs3_mknodargs {
575 struct nfs_fh * fh;
576 const char * name;
577 unsigned int len;
578 enum nfs3_ftype type;
579 struct iattr * sattr;
580 dev_t rdev;
581};
582
583struct nfs3_renameargs {
584 struct nfs_fh * fromfh;
585 const char * fromname;
586 unsigned int fromlen;
587 struct nfs_fh * tofh;
588 const char * toname;
589 unsigned int tolen;
590};
591
592struct 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;
bc4785cd 602 __be32 verf[2];
1da177e4
LT
603 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;
bc4785cd 638 __be32 * verf;
1da177e4
LT
639 int plus;
640};
641
b7fa0554
AG
642struct 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
1da177e4
LT
651#ifdef CONFIG_NFS_V4
652
653typedef u64 clientid4;
654
655struct nfs4_accessargs {
656 const struct nfs_fh * fh;
76b32999 657 const u32 * bitmask;
1da177e4 658 u32 access;
9ff71c3a 659 struct nfs4_sequence_args seq_args;
1da177e4
LT
660};
661
662struct nfs4_accessres {
76b32999
TM
663 const struct nfs_server * server;
664 struct nfs_fattr * fattr;
1da177e4
LT
665 u32 supported;
666 u32 access;
9ff71c3a 667 struct nfs4_sequence_res seq_res;
1da177e4
LT
668};
669
670struct nfs4_create_arg {
671 u32 ftype;
672 union {
94a6d753
CL
673 struct {
674 struct page ** pages;
675 unsigned int len;
676 } symlink; /* NF4LNK */
1da177e4
LT
677 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;
9ff71c3a 687 struct nfs4_sequence_args seq_args;
1da177e4
LT
688};
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;
56ae19f3 695 struct nfs_fattr * dir_fattr;
9ff71c3a 696 struct nfs4_sequence_res seq_res;
1da177e4
LT
697};
698
699struct nfs4_fsinfo_arg {
700 const struct nfs_fh * fh;
701 const u32 * bitmask;
9ff71c3a 702 struct nfs4_sequence_args seq_args;
1da177e4
LT
703};
704
3dda5e43
BH
705struct nfs4_fsinfo_res {
706 struct nfs_fsinfo *fsinfo;
707 struct nfs4_sequence_res seq_res;
708};
709
1da177e4
LT
710struct nfs4_getattr_arg {
711 const struct nfs_fh * fh;
712 const u32 * bitmask;
9ff71c3a 713 struct nfs4_sequence_args seq_args;
1da177e4
LT
714};
715
716struct nfs4_getattr_res {
717 const struct nfs_server * server;
718 struct nfs_fattr * fattr;
9ff71c3a 719 struct nfs4_sequence_res seq_res;
1da177e4
LT
720};
721
722struct nfs4_link_arg {
723 const struct nfs_fh * fh;
724 const struct nfs_fh * dir_fh;
725 const struct qstr * name;
91ba2eee 726 const u32 * bitmask;
9ff71c3a 727 struct nfs4_sequence_args seq_args;
91ba2eee
TM
728};
729
730struct 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;
9ff71c3a 735 struct nfs4_sequence_res seq_res;
1da177e4
LT
736};
737
91ba2eee 738
1da177e4
LT
739struct nfs4_lookup_arg {
740 const struct nfs_fh * dir_fh;
741 const struct qstr * name;
742 const u32 * bitmask;
9ff71c3a 743 struct nfs4_sequence_args seq_args;
1da177e4
LT
744};
745
746struct nfs4_lookup_res {
747 const struct nfs_server * server;
748 struct nfs_fattr * fattr;
749 struct nfs_fh * fh;
9ff71c3a 750 struct nfs4_sequence_res seq_res;
1da177e4
LT
751};
752
753struct nfs4_lookup_root_arg {
754 const u32 * bitmask;
9ff71c3a 755 struct nfs4_sequence_args seq_args;
1da177e4
LT
756};
757
758struct nfs4_pathconf_arg {
759 const struct nfs_fh * fh;
760 const u32 * bitmask;
9ff71c3a 761 struct nfs4_sequence_args seq_args;
1da177e4
LT
762};
763
d45b2989
BH
764struct nfs4_pathconf_res {
765 struct nfs_pathconf *pathconf;
766 struct nfs4_sequence_res seq_res;
767};
768
1da177e4
LT
769struct 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;
9ff71c3a 777 struct nfs4_sequence_args seq_args;
1da177e4
LT
778};
779
780struct nfs4_readdir_res {
781 nfs4_verifier verifier;
782 unsigned int pgbase;
9ff71c3a 783 struct nfs4_sequence_res seq_res;
1da177e4
LT
784};
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 */
9ff71c3a 791 struct nfs4_sequence_args seq_args;
1da177e4
LT
792};
793
f50c7000
BH
794struct nfs4_readlink_res {
795 struct nfs4_sequence_res seq_res;
796};
797
1da177e4
LT
798struct nfs4_rename_arg {
799 const struct nfs_fh * old_dir;
800 const struct nfs_fh * new_dir;
801 const struct qstr * old_name;
802 const struct qstr * new_name;
6caf2c82 803 const u32 * bitmask;
9ff71c3a 804 struct nfs4_sequence_args seq_args;
1da177e4
LT
805};
806
807struct nfs4_rename_res {
6caf2c82 808 const struct nfs_server * server;
1da177e4 809 struct nfs4_change_info old_cinfo;
6caf2c82 810 struct nfs_fattr * old_fattr;
1da177e4 811 struct nfs4_change_info new_cinfo;
6caf2c82 812 struct nfs_fattr * new_fattr;
9ff71c3a 813 struct nfs4_sequence_res seq_res;
1da177e4
LT
814};
815
19d771f3 816#define NFS4_SETCLIENTID_NAMELEN (127)
1da177e4 817struct nfs4_setclientid {
cc38bac3 818 const nfs4_verifier * sc_verifier;
1da177e4 819 unsigned int sc_name_len;
d1ce02e1 820 char sc_name[NFS4_SETCLIENTID_NAMELEN + 1];
cc38bac3 821 u32 sc_prog;
1da177e4 822 unsigned int sc_netid_len;
d1ce02e1 823 char sc_netid[RPCBIND_MAXNETIDLEN + 1];
1da177e4 824 unsigned int sc_uaddr_len;
d1ce02e1 825 char sc_uaddr[RPCBIND_MAXUADDRLEN + 1];
cc38bac3 826 u32 sc_cb_ident;
1da177e4
LT
827};
828
bb8b27e5
TM
829struct nfs4_setclientid_res {
830 u64 clientid;
831 nfs4_verifier confirm;
832};
833
1da177e4
LT
834struct nfs4_statfs_arg {
835 const struct nfs_fh * fh;
836 const u32 * bitmask;
9ff71c3a 837 struct nfs4_sequence_args seq_args;
1da177e4
LT
838};
839
24ad148a
BH
840struct nfs4_statfs_res {
841 struct nfs_fsstat *fsstat;
842 struct nfs4_sequence_res seq_res;
843};
844
43652ad5
BH
845struct nfs4_server_caps_arg {
846 struct nfs_fh *fhandle;
847 struct nfs4_sequence_args seq_args;
848};
849
1da177e4
LT
850struct nfs4_server_caps_res {
851 u32 attr_bitmask[2];
852 u32 acl_bitmask;
853 u32 has_links;
854 u32 has_symlinks;
9ff71c3a 855 struct nfs4_sequence_res seq_res;
1da177e4
LT
856};
857
7aaa0b3b
MN
858struct nfs4_string {
859 unsigned int len;
860 char *data;
683b57b4
TM
861};
862
7aaa0b3b
MN
863#define NFS4_PATHNAME_MAXCOMPONENTS 512
864struct nfs4_pathname {
865 unsigned int ncomponents;
866 struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS];
867};
868
869#define NFS4_FS_LOCATION_MAXSERVERS 10
870struct nfs4_fs_location {
871 unsigned int nservers;
872 struct nfs4_string servers[NFS4_FS_LOCATION_MAXSERVERS];
873 struct nfs4_pathname rootpath;
874};
875
876#define NFS4_FS_LOCATIONS_MAXENTRIES 10
877struct nfs4_fs_locations {
683b57b4
TM
878 struct nfs_fattr fattr;
879 const struct nfs_server *server;
7aaa0b3b 880 struct nfs4_pathname fs_path;
683b57b4 881 int nlocations;
7aaa0b3b 882 struct nfs4_fs_location locations[NFS4_FS_LOCATIONS_MAXENTRIES];
683b57b4
TM
883};
884
885struct nfs4_fs_locations_arg {
886 const struct nfs_fh *dir_fh;
887 const struct qstr *name;
888 struct page *page;
889 const u32 *bitmask;
9ff71c3a 890 struct nfs4_sequence_args seq_args;
683b57b4
TM
891};
892
22958463
BH
893struct nfs4_fs_locations_res {
894 struct nfs4_fs_locations *fs_locations;
895 struct nfs4_sequence_res seq_res;
896};
897
1da177e4
LT
898#endif /* CONFIG_NFS_V4 */
899
99fe60d0
BH
900struct nfstime4 {
901 u64 seconds;
902 u32 nseconds;
903};
904
905#ifdef CONFIG_NFS_V4_1
906struct nfs_impl_id4 {
907 u32 domain_len;
908 char *domain;
909 u32 name_len;
910 char *name;
911 struct nfstime4 date;
912};
913
914#define NFS4_EXCHANGE_ID_LEN (48)
915struct nfs41_exchange_id_args {
916 struct nfs_client *client;
917 nfs4_verifier *verifier;
918 unsigned int id_len;
919 char id[NFS4_EXCHANGE_ID_LEN];
920 u32 flags;
921};
922
923struct server_owner {
924 uint64_t minor_id;
925 uint32_t major_id_sz;
926 char major_id[NFS4_OPAQUE_LIMIT];
927};
928
929struct server_scope {
930 uint32_t server_scope_sz;
931 char server_scope[NFS4_OPAQUE_LIMIT];
932};
933
934struct nfs41_exchange_id_res {
935 struct nfs_client *client;
936 u32 flags;
937};
fc931582
AA
938
939struct nfs41_create_session_args {
940 struct nfs_client *client;
941 uint32_t flags;
942 uint32_t cb_program;
943 struct nfs4_channel_attrs fc_attrs; /* Fore Channel */
944 struct nfs4_channel_attrs bc_attrs; /* Back Channel */
945};
946
947struct nfs41_create_session_res {
948 struct nfs_client *client;
949};
18019753
RL
950
951struct nfs41_reclaim_complete_args {
952 /* In the future extend to include curr_fh for use with migration */
953 unsigned char one_fs:1;
954 struct nfs4_sequence_args seq_args;
955};
956
957struct nfs41_reclaim_complete_res {
958 struct nfs4_sequence_res seq_res;
959};
99fe60d0
BH
960#endif /* CONFIG_NFS_V4_1 */
961
1da177e4
LT
962struct nfs_page;
963
40859d7e
CL
964#define NFS_PAGEVEC_SIZE (8U)
965
1da177e4
LT
966struct nfs_read_data {
967 int flags;
968 struct rpc_task task;
969 struct inode *inode;
970 struct rpc_cred *cred;
971 struct nfs_fattr fattr; /* fattr storage */
972 struct list_head pages; /* Coalesced read requests */
973 struct nfs_page *req; /* multi ops per nfs_page */
40859d7e 974 struct page **pagevec;
e9f7bee1 975 unsigned int npages; /* Max length of pagevec */
1da177e4
LT
976 struct nfs_readargs args;
977 struct nfs_readres res;
978#ifdef CONFIG_NFS_V4
979 unsigned long timestamp; /* For lease renewal */
980#endif
0d0b5cb3 981 struct page *page_array[NFS_PAGEVEC_SIZE];
1da177e4
LT
982};
983
984struct nfs_write_data {
985 int flags;
986 struct rpc_task task;
987 struct inode *inode;
988 struct rpc_cred *cred;
989 struct nfs_fattr fattr;
990 struct nfs_writeverf verf;
991 struct list_head pages; /* Coalesced requests we wish to flush */
992 struct nfs_page *req; /* multi ops per nfs_page */
40859d7e 993 struct page **pagevec;
e9f7bee1 994 unsigned int npages; /* Max length of pagevec */
1da177e4
LT
995 struct nfs_writeargs args; /* argument struct */
996 struct nfs_writeres res; /* result struct */
997#ifdef CONFIG_NFS_V4
998 unsigned long timestamp; /* For lease renewal */
999#endif
0d0b5cb3 1000 struct page *page_array[NFS_PAGEVEC_SIZE];
1da177e4
LT
1001};
1002
1003struct nfs_access_entry;
1004
1005/*
1006 * RPC procedure vector for NFSv2/NFSv3 demuxing
1007 */
1008struct nfs_rpc_ops {
c0e07cb6 1009 u32 version; /* Protocol version */
f786aa90 1010 const struct dentry_operations *dentry_ops;
c5ef1c42
AV
1011 const struct inode_operations *dir_inode_ops;
1012 const struct inode_operations *file_inode_ops;
1da177e4
LT
1013
1014 int (*getroot) (struct nfs_server *, struct nfs_fh *,
1015 struct nfs_fsinfo *);
2b3de441
DH
1016 int (*lookupfh)(struct nfs_server *, struct nfs_fh *,
1017 struct qstr *, struct nfs_fh *,
1018 struct nfs_fattr *);
1da177e4
LT
1019 int (*getattr) (struct nfs_server *, struct nfs_fh *,
1020 struct nfs_fattr *);
1021 int (*setattr) (struct dentry *, struct nfs_fattr *,
1022 struct iattr *);
1023 int (*lookup) (struct inode *, struct qstr *,
1024 struct nfs_fh *, struct nfs_fattr *);
1025 int (*access) (struct inode *, struct nfs_access_entry *);
1026 int (*readlink)(struct inode *, struct page *, unsigned int,
1027 unsigned int);
1da177e4 1028 int (*create) (struct inode *, struct dentry *,
02a913a7 1029 struct iattr *, int, struct nameidata *);
1da177e4 1030 int (*remove) (struct inode *, struct qstr *);
e4eff1a6
TM
1031 void (*unlink_setup) (struct rpc_message *, struct inode *dir);
1032 int (*unlink_done) (struct rpc_task *, struct inode *);
1da177e4
LT
1033 int (*rename) (struct inode *, struct qstr *,
1034 struct inode *, struct qstr *);
1035 int (*link) (struct inode *, struct inode *, struct qstr *);
94a6d753
CL
1036 int (*symlink) (struct inode *, struct dentry *, struct page *,
1037 unsigned int, struct iattr *);
1da177e4
LT
1038 int (*mkdir) (struct inode *, struct dentry *, struct iattr *);
1039 int (*rmdir) (struct inode *, struct qstr *);
1040 int (*readdir) (struct dentry *, struct rpc_cred *,
1041 u64, struct page *, unsigned int, int);
1042 int (*mknod) (struct inode *, struct dentry *, struct iattr *,
1043 dev_t);
1044 int (*statfs) (struct nfs_server *, struct nfs_fh *,
1045 struct nfs_fsstat *);
1046 int (*fsinfo) (struct nfs_server *, struct nfs_fh *,
1047 struct nfs_fsinfo *);
1048 int (*pathconf) (struct nfs_server *, struct nfs_fh *,
1049 struct nfs_pathconf *);
e9326dca 1050 int (*set_capabilities)(struct nfs_server *, struct nfs_fh *);
0dbb4c67 1051 __be32 *(*decode_dirent)(__be32 *, struct nfs_entry *, int plus);
bdc7f021 1052 void (*read_setup) (struct nfs_read_data *, struct rpc_message *);
ec06c096 1053 int (*read_done) (struct rpc_task *, struct nfs_read_data *);
bdc7f021 1054 void (*write_setup) (struct nfs_write_data *, struct rpc_message *);
788e7a89 1055 int (*write_done) (struct rpc_task *, struct nfs_write_data *);
bdc7f021 1056 void (*commit_setup) (struct nfs_write_data *, struct rpc_message *);
788e7a89 1057 int (*commit_done) (struct rpc_task *, struct nfs_write_data *);
1da177e4 1058 int (*lock)(struct file *, int, struct file_lock *);
2116271a 1059 int (*lock_check_bounds)(const struct file_lock *);
ada70d94 1060 void (*clear_acl_cache)(struct inode *);
7fe5c398 1061 void (*close_context)(struct nfs_open_context *ctx, int);
1da177e4
LT
1062};
1063
1064/*
1065 * NFS_CALL(getattr, inode, (fattr));
1066 * into
1067 * NFS_PROTO(inode)->getattr(fattr);
1068 */
1069#define NFS_CALL(op, inode, args) NFS_PROTO(inode)->op args
1070
1071/*
1072 * Function vectors etc. for the NFS client
1073 */
509de811
DH
1074extern const struct nfs_rpc_ops nfs_v2_clientops;
1075extern const struct nfs_rpc_ops nfs_v3_clientops;
1076extern const struct nfs_rpc_ops nfs_v4_clientops;
1da177e4
LT
1077extern struct rpc_version nfs_version2;
1078extern struct rpc_version nfs_version3;
1079extern struct rpc_version nfs_version4;
1080
b7fa0554
AG
1081extern struct rpc_version nfsacl_version3;
1082extern struct rpc_program nfsacl_program;
1083
1da177e4 1084#endif