powerpc/hugetlb: Don't do runtime allocation of 16G pages in LPAR configuration
[linux-2.6-block.git] / include / linux / nfs_xdr.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _LINUX_NFS_XDR_H
3#define _LINUX_NFS_XDR_H
4
b7fa0554 5#include <linux/nfsacl.h>
5a5ea0d4 6#include <linux/sunrpc/gss_api.h>
1da177e4 7
40859d7e
CL
8/*
9 * To change the maximum rsize and wsize supported by the NFS client, adjust
10 * NFS_MAX_FILE_IO_SIZE. 64KB is a typical maximum, but some servers can
11 * support a megabyte or more. The default is left at 4096 bytes, which is
12 * reasonable for NFS over UDP.
13 */
14#define NFS_MAX_FILE_IO_SIZE (1048576U)
15#define NFS_DEF_FILE_IO_SIZE (4096U)
16#define NFS_MIN_FILE_IO_SIZE (1024U)
17
6926afd1
TM
18struct nfs4_string {
19 unsigned int len;
20 char *data;
21};
22
8b4bdcf8
TM
23struct nfs_fsid {
24 uint64_t major;
25 uint64_t minor;
1da177e4
LT
26};
27
8b4bdcf8
TM
28/*
29 * Helper for checking equality between 2 fsids.
30 */
31static inline int nfs_fsid_equal(const struct nfs_fsid *a, const struct nfs_fsid *b)
32{
33 return a->major == b->major && a->minor == b->minor;
34}
35
88034c3d
AA
36struct nfs4_threshold {
37 __u32 bm;
38 __u32 l_type;
39 __u64 rd_sz;
40 __u64 wr_sz;
41 __u64 rd_io_sz;
42 __u64 wr_io_sz;
43};
44
1da177e4 45struct nfs_fattr {
9e6e70f8 46 unsigned int valid; /* which fields are valid */
bca79478 47 umode_t mode;
1da177e4 48 __u32 nlink;
54f834cd
EB
49 kuid_t uid;
50 kgid_t gid;
9fa8d66f 51 dev_t rdev;
1da177e4
LT
52 __u64 size;
53 union {
54 struct {
55 __u32 blocksize;
56 __u32 blocks;
57 } nfs2;
58 struct {
59 __u64 used;
60 } nfs3;
61 } du;
8b4bdcf8 62 struct nfs_fsid fsid;
1da177e4 63 __u64 fileid;
28331a46 64 __u64 mounted_on_fileid;
1da177e4
LT
65 struct timespec atime;
66 struct timespec mtime;
67 struct timespec ctime;
1da177e4
LT
68 __u64 change_attr; /* NFSv4 change attribute */
69 __u64 pre_change_attr;/* pre-op NFSv4 change attribute */
1ca277d8
TM
70 __u64 pre_size; /* pre_op_attr.size */
71 struct timespec pre_mtime; /* pre_op_attr.mtime */
72 struct timespec pre_ctime; /* pre_op_attr.ctime */
33801147 73 unsigned long time_start;
4704f0e2 74 unsigned long gencount;
6926afd1
TM
75 struct nfs4_string *owner_name;
76 struct nfs4_string *group_name;
88034c3d 77 struct nfs4_threshold *mdsthreshold; /* pNFS threshold hints */
1da177e4
LT
78};
79
9e6e70f8
TM
80#define NFS_ATTR_FATTR_TYPE (1U << 0)
81#define NFS_ATTR_FATTR_MODE (1U << 1)
82#define NFS_ATTR_FATTR_NLINK (1U << 2)
83#define NFS_ATTR_FATTR_OWNER (1U << 3)
84#define NFS_ATTR_FATTR_GROUP (1U << 4)
85#define NFS_ATTR_FATTR_RDEV (1U << 5)
86#define NFS_ATTR_FATTR_SIZE (1U << 6)
87#define NFS_ATTR_FATTR_PRESIZE (1U << 7)
88#define NFS_ATTR_FATTR_BLOCKS_USED (1U << 8)
89#define NFS_ATTR_FATTR_SPACE_USED (1U << 9)
90#define NFS_ATTR_FATTR_FSID (1U << 10)
91#define NFS_ATTR_FATTR_FILEID (1U << 11)
92#define NFS_ATTR_FATTR_ATIME (1U << 12)
93#define NFS_ATTR_FATTR_MTIME (1U << 13)
94#define NFS_ATTR_FATTR_CTIME (1U << 14)
95#define NFS_ATTR_FATTR_PREMTIME (1U << 15)
96#define NFS_ATTR_FATTR_PRECTIME (1U << 16)
97#define NFS_ATTR_FATTR_CHANGE (1U << 17)
98#define NFS_ATTR_FATTR_PRECHANGE (1U << 18)
81934ddb
CL
99#define NFS_ATTR_FATTR_V4_LOCATIONS (1U << 19)
100#define NFS_ATTR_FATTR_V4_REFERRAL (1U << 20)
101#define NFS_ATTR_FATTR_MOUNTPOINT (1U << 21)
102#define NFS_ATTR_FATTR_MOUNTED_ON_FILEID (1U << 22)
103#define NFS_ATTR_FATTR_OWNER_NAME (1U << 23)
104#define NFS_ATTR_FATTR_GROUP_NAME (1U << 24)
e64a4210 105#define NFS_ATTR_FATTR_V4_SECURITY_LABEL (1U << 25)
9e6e70f8
TM
106
107#define NFS_ATTR_FATTR (NFS_ATTR_FATTR_TYPE \
108 | NFS_ATTR_FATTR_MODE \
109 | NFS_ATTR_FATTR_NLINK \
110 | NFS_ATTR_FATTR_OWNER \
111 | NFS_ATTR_FATTR_GROUP \
112 | NFS_ATTR_FATTR_RDEV \
113 | NFS_ATTR_FATTR_SIZE \
114 | NFS_ATTR_FATTR_FSID \
115 | NFS_ATTR_FATTR_FILEID \
116 | NFS_ATTR_FATTR_ATIME \
117 | NFS_ATTR_FATTR_MTIME \
3a1556e8
TM
118 | NFS_ATTR_FATTR_CTIME \
119 | NFS_ATTR_FATTR_CHANGE)
9e6e70f8
TM
120#define NFS_ATTR_FATTR_V2 (NFS_ATTR_FATTR \
121 | NFS_ATTR_FATTR_BLOCKS_USED)
122#define NFS_ATTR_FATTR_V3 (NFS_ATTR_FATTR \
123 | NFS_ATTR_FATTR_SPACE_USED)
124#define NFS_ATTR_FATTR_V4 (NFS_ATTR_FATTR \
e64a4210
DQ
125 | NFS_ATTR_FATTR_SPACE_USED \
126 | NFS_ATTR_FATTR_V4_SECURITY_LABEL)
1da177e4 127
3132e49e
JL
128/*
129 * Maximal number of supported layout drivers.
130 */
131#define NFS_MAX_LAYOUT_TYPES 8
132
1da177e4
LT
133/*
134 * Info on the file system
135 */
136struct nfs_fsinfo {
137 struct nfs_fattr *fattr; /* Post-op attributes */
138 __u32 rtmax; /* max. read transfer size */
139 __u32 rtpref; /* pref. read transfer size */
140 __u32 rtmult; /* reads should be multiple of this */
141 __u32 wtmax; /* max. write transfer size */
142 __u32 wtpref; /* pref. write transfer size */
143 __u32 wtmult; /* writes should be multiple of this */
144 __u32 dtpref; /* pref. readdir transfer size */
145 __u64 maxfilesize;
6b96724e 146 struct timespec time_delta; /* server time granularity */
1da177e4 147 __u32 lease_time; /* in seconds */
ca440c38 148 __u32 nlayouttypes; /* number of layouttypes */
3132e49e 149 __u32 layouttype[NFS_MAX_LAYOUT_TYPES]; /* supported pnfs layout driver */
dae100c2 150 __u32 blksize; /* preferred pnfs io block size */
2a92ee92 151 __u32 clone_blksize; /* granularity of a CLONE operation */
1da177e4
LT
152};
153
154struct nfs_fsstat {
155 struct nfs_fattr *fattr; /* Post-op attributes */
156 __u64 tbytes; /* total size in bytes */
157 __u64 fbytes; /* # of free bytes */
158 __u64 abytes; /* # of bytes available to user */
159 __u64 tfiles; /* # of files */
160 __u64 ffiles; /* # of free files */
161 __u64 afiles; /* # of files available to user */
162};
163
164struct nfs2_fsstat {
165 __u32 tsize; /* Server transfer size */
166 __u32 bsize; /* Filesystem block size */
167 __u32 blocks; /* No. of "bsize" blocks on filesystem */
168 __u32 bfree; /* No. of free "bsize" blocks */
169 __u32 bavail; /* No. of available "bsize" blocks */
170};
171
172struct nfs_pathconf {
173 struct nfs_fattr *fattr; /* Post-op attributes */
174 __u32 max_link; /* max # of hard links */
175 __u32 max_namelen; /* max name length */
176};
177
178struct nfs4_change_info {
179 u32 atomic;
180 u64 before;
181 u64 after;
182};
183
cee54fc9 184struct nfs_seqid;
9ff71c3a 185
557134a3
AA
186/* nfs41 sessions channel attributes */
187struct nfs4_channel_attrs {
557134a3
AA
188 u32 max_rqst_sz;
189 u32 max_resp_sz;
190 u32 max_resp_sz_cached;
191 u32 max_ops;
192 u32 max_reqs;
193};
194
76e697ba 195struct nfs4_slot;
9ff71c3a 196struct nfs4_sequence_args {
2b2fa717 197 struct nfs4_slot *sa_slot;
8fe72bac
TM
198 u8 sa_cache_this : 1,
199 sa_privileged : 1;
9ff71c3a
BH
200};
201
202struct nfs4_sequence_res {
dfb4f309 203 struct nfs4_slot *sr_slot; /* slot used to send request */
8e63b6a8 204 unsigned long sr_timestamp;
fbcd4abc 205 int sr_status; /* sequence operation status */
0629e370 206 u32 sr_status_flags;
da0507b7 207 u32 sr_highest_slotid;
464ee9f9 208 u32 sr_target_highest_slotid;
9ff71c3a
BH
209};
210
2050f0cc
AA
211struct nfs4_get_lease_time_args {
212 struct nfs4_sequence_args la_seq_args;
213};
214
215struct nfs4_get_lease_time_res {
2050f0cc 216 struct nfs4_sequence_res lr_seq_res;
62ae082d 217 struct nfs_fsinfo *lr_fsinfo;
2050f0cc
AA
218};
219
f8c3cf9d
TM
220struct xdr_stream;
221struct nfs4_xdr_opaque_data;
222
223struct nfs4_xdr_opaque_ops {
224 void (*encode)(struct xdr_stream *, const void *args,
225 const struct nfs4_xdr_opaque_data *);
226 void (*free)(struct nfs4_xdr_opaque_data *);
227};
228
229struct nfs4_xdr_opaque_data {
230 const struct nfs4_xdr_opaque_ops *ops;
231 void *data;
232};
233
b1f69b75
AA
234#define PNFS_LAYOUT_MAXSIZE 4096
235
236struct nfs4_layoutdriver_data {
35124a09
WAA
237 struct page **pages;
238 __u32 pglen;
b1f69b75 239 __u32 len;
b1f69b75
AA
240};
241
242struct pnfs_layout_range {
243 u32 iomode;
244 u64 offset;
245 u64 length;
246};
247
248struct nfs4_layoutget_args {
62ae082d 249 struct nfs4_sequence_args seq_args;
b1f69b75
AA
250 __u32 type;
251 struct pnfs_layout_range range;
252 __u64 minlength;
253 __u32 maxcount;
254 struct inode *inode;
255 struct nfs_open_context *ctx;
cf7d63f1 256 nfs4_stateid stateid;
35124a09 257 struct nfs4_layoutdriver_data layout;
b1f69b75
AA
258};
259
260struct nfs4_layoutget_res {
62ae082d 261 struct nfs4_sequence_res seq_res;
808ba32a 262 int status;
b1f69b75
AA
263 __u32 return_on_close;
264 struct pnfs_layout_range range;
265 __u32 type;
266 nfs4_stateid stateid;
35124a09 267 struct nfs4_layoutdriver_data *layoutp;
b1f69b75
AA
268};
269
270struct nfs4_layoutget {
271 struct nfs4_layoutget_args args;
272 struct nfs4_layoutget_res res;
a52458b4 273 const struct cred *cred;
a75b9df9 274 gfp_t gfp_flags;
b1f69b75
AA
275};
276
277struct nfs4_getdeviceinfo_args {
b1f69b75 278 struct nfs4_sequence_args seq_args;
62ae082d 279 struct pnfs_device *pdev;
4e590803 280 __u32 notify_types;
b1f69b75
AA
281};
282
283struct nfs4_getdeviceinfo_res {
b1f69b75 284 struct nfs4_sequence_res seq_res;
62ae082d 285 struct pnfs_device *pdev;
4e590803 286 __u32 notification;
b1f69b75
AA
287};
288
863a3c6c 289struct nfs4_layoutcommit_args {
62ae082d 290 struct nfs4_sequence_args seq_args;
863a3c6c
AA
291 nfs4_stateid stateid;
292 __u64 lastbytewritten;
293 struct inode *inode;
294 const u32 *bitmask;
5f919c9f
CH
295 size_t layoutupdate_len;
296 struct page *layoutupdate_page;
297 struct page **layoutupdate_pages;
c8975706 298 __be32 *start_p;
863a3c6c
AA
299};
300
301struct nfs4_layoutcommit_res {
62ae082d 302 struct nfs4_sequence_res seq_res;
863a3c6c
AA
303 struct nfs_fattr *fattr;
304 const struct nfs_server *server;
db29c089 305 int status;
863a3c6c
AA
306};
307
308struct nfs4_layoutcommit_data {
309 struct rpc_task task;
310 struct nfs_fattr fattr;
a9bae566 311 struct list_head lseg_list;
a52458b4 312 const struct cred *cred;
472e2594 313 struct inode *inode;
863a3c6c
AA
314 struct nfs4_layoutcommit_args args;
315 struct nfs4_layoutcommit_res res;
316};
317
cbe82603 318struct nfs4_layoutreturn_args {
62ae082d 319 struct nfs4_sequence_args seq_args;
a56aaa02 320 struct pnfs_layout_hdr *layout;
cbe82603 321 struct inode *inode;
15eb67c1 322 struct pnfs_layout_range range;
cbe82603 323 nfs4_stateid stateid;
a56aaa02 324 __u32 layout_type;
4d796d75 325 struct nfs4_xdr_opaque_data *ld_private;
cbe82603
BH
326};
327
328struct nfs4_layoutreturn_res {
329 struct nfs4_sequence_res seq_res;
330 u32 lrs_present;
331 nfs4_stateid stateid;
332};
333
334struct nfs4_layoutreturn {
335 struct nfs4_layoutreturn_args args;
336 struct nfs4_layoutreturn_res res;
a52458b4 337 const struct cred *cred;
cbe82603 338 struct nfs_client *clp;
5a0ec8ac 339 struct inode *inode;
cbe82603 340 int rpc_status;
4d796d75 341 struct nfs4_xdr_opaque_data ld_private;
cbe82603
BH
342};
343
be3a5d23
TM
344#define PNFS_LAYOUTSTATS_MAXSIZE 256
345
346struct nfs42_layoutstat_args;
347struct nfs42_layoutstat_devinfo;
348typedef void (*layoutstats_encode_t)(struct xdr_stream *,
349 struct nfs42_layoutstat_args *,
350 struct nfs42_layoutstat_devinfo *);
351
352/* Per file per deviceid layoutstats */
353struct nfs42_layoutstat_devinfo {
354 struct nfs4_deviceid dev_id;
355 __u64 offset;
356 __u64 length;
357 __u64 read_count;
358 __u64 read_bytes;
359 __u64 write_count;
360 __u64 write_bytes;
361 __u32 layout_type;
422c93c8 362 struct nfs4_xdr_opaque_data ld_private;
be3a5d23
TM
363};
364
365struct nfs42_layoutstat_args {
366 struct nfs4_sequence_args seq_args;
367 struct nfs_fh *fh;
368 struct inode *inode;
369 nfs4_stateid stateid;
370 int num_dev;
371 struct nfs42_layoutstat_devinfo *devinfo;
372};
373
374struct nfs42_layoutstat_res {
375 struct nfs4_sequence_res seq_res;
376 int num_dev;
377 int rpc_status;
378};
379
380struct nfs42_layoutstat_data {
381 struct inode *inode;
382 struct nfs42_layoutstat_args args;
383 struct nfs42_layoutstat_res res;
384};
385
36022770
PT
386struct nfs42_clone_args {
387 struct nfs4_sequence_args seq_args;
388 struct nfs_fh *src_fh;
389 struct nfs_fh *dst_fh;
390 nfs4_stateid src_stateid;
391 nfs4_stateid dst_stateid;
392 __u64 src_offset;
393 __u64 dst_offset;
394 __u64 count;
395 const u32 *dst_bitmask;
396};
397
398struct nfs42_clone_res {
399 struct nfs4_sequence_res seq_res;
400 unsigned int rpc_status;
401 struct nfs_fattr *dst_fattr;
402 const struct nfs_server *server;
403};
404
95b72eb0
TM
405struct stateowner_id {
406 __u64 create_time;
407 __u32 uniquifier;
408};
409
1da177e4
LT
410/*
411 * Arguments to the open call.
412 */
413struct nfs_openargs {
62ae082d 414 struct nfs4_sequence_args seq_args;
1da177e4 415 const struct nfs_fh * fh;
cee54fc9 416 struct nfs_seqid * seqid;
1da177e4 417 int open_flags;
dc0b027d 418 fmode_t fmode;
6ae37339 419 u32 share_access;
6168f62c 420 u32 access;
1da177e4 421 __u64 clientid;
95b72eb0 422 struct stateowner_id id;
1da177e4 423 union {
d77d76ff 424 struct {
5334c5bd 425 struct iattr * attrs; /* UNCHECKED, GUARDED, EXCLUSIVE4_1 */
d77d76ff
TM
426 nfs4_verifier verifier; /* EXCLUSIVE */
427 };
1da177e4 428 nfs4_stateid delegation; /* CLAIM_DELEGATE_CUR */
bd7bf9d5 429 fmode_t delegation_type; /* CLAIM_PREVIOUS */
1da177e4
LT
430 } u;
431 const struct qstr * name;
432 const struct nfs_server *server; /* Needed for ID mapping */
433 const u32 * bitmask;
1549210f 434 const u32 * open_bitmap;
2a606188 435 enum open_claim_type4 claim;
549b19cc 436 enum createmode4 createmode;
e058f70b 437 const struct nfs4_label *label;
dff25ddb 438 umode_t umask;
56f487f8 439 struct nfs4_layoutget_args *lg_args;
1da177e4
LT
440};
441
442struct nfs_openres {
62ae082d 443 struct nfs4_sequence_res seq_res;
1da177e4
LT
444 nfs4_stateid stateid;
445 struct nfs_fh fh;
446 struct nfs4_change_info cinfo;
447 __u32 rflags;
448 struct nfs_fattr * f_attr;
e058f70b 449 struct nfs4_label *f_label;
c1d51931 450 struct nfs_seqid * seqid;
1da177e4 451 const struct nfs_server *server;
bd7bf9d5 452 fmode_t delegation_type;
1da177e4 453 nfs4_stateid delegation;
7d160a6c 454 unsigned long pagemod_limit;
1da177e4 455 __u32 do_recall;
aa53ed54 456 __u32 attrset[NFS4_BITMAP_SIZE];
6926afd1
TM
457 struct nfs4_string *owner;
458 struct nfs4_string *group_owner;
ae2bb032 459 __u32 access_request;
6168f62c
WAA
460 __u32 access_supported;
461 __u32 access_result;
56f487f8 462 struct nfs4_layoutget_res *lg_res;
1da177e4
LT
463};
464
465/*
466 * Arguments to the open_confirm call.
467 */
468struct nfs_open_confirmargs {
17ead6c8 469 struct nfs4_sequence_args seq_args;
1da177e4 470 const struct nfs_fh * fh;
cdd4e68b 471 nfs4_stateid * stateid;
cee54fc9 472 struct nfs_seqid * seqid;
1da177e4
LT
473};
474
475struct nfs_open_confirmres {
17ead6c8 476 struct nfs4_sequence_res seq_res;
1da177e4 477 nfs4_stateid stateid;
c1d51931 478 struct nfs_seqid * seqid;
1da177e4
LT
479};
480
481/*
482 * Arguments to the close call.
483 */
484struct nfs_closeargs {
62ae082d 485 struct nfs4_sequence_args seq_args;
1da177e4 486 struct nfs_fh * fh;
566fcec6 487 nfs4_stateid stateid;
cee54fc9 488 struct nfs_seqid * seqid;
dc0b027d 489 fmode_t fmode;
6ae37339 490 u32 share_access;
516a6af6 491 const u32 * bitmask;
cf805165 492 struct nfs4_layoutreturn_args *lr_args;
1da177e4
LT
493};
494
495struct nfs_closeres {
62ae082d 496 struct nfs4_sequence_res seq_res;
1da177e4 497 nfs4_stateid stateid;
516a6af6 498 struct nfs_fattr * fattr;
c1d51931 499 struct nfs_seqid * seqid;
516a6af6 500 const struct nfs_server *server;
cf805165
TM
501 struct nfs4_layoutreturn_res *lr_res;
502 int lr_ret;
1da177e4
LT
503};
504/*
505 * * Arguments to the lock,lockt, and locku call.
506 * */
507struct nfs_lowner {
911d1aaf 508 __u64 clientid;
9f958ab8 509 __u64 id;
d035c36c 510 dev_t s_dev;
1da177e4
LT
511};
512
911d1aaf 513struct nfs_lock_args {
62ae082d 514 struct nfs4_sequence_args seq_args;
911d1aaf
TM
515 struct nfs_fh * fh;
516 struct file_lock * fl;
cee54fc9 517 struct nfs_seqid * lock_seqid;
425c1d4e 518 nfs4_stateid lock_stateid;
06735b34 519 struct nfs_seqid * open_seqid;
425c1d4e 520 nfs4_stateid open_stateid;
911d1aaf
TM
521 struct nfs_lowner lock_owner;
522 unsigned char block : 1;
523 unsigned char reclaim : 1;
c69899a1 524 unsigned char new_lock : 1;
911d1aaf
TM
525 unsigned char new_lock_owner : 1;
526};
527
528struct nfs_lock_res {
62ae082d 529 struct nfs4_sequence_res seq_res;
c1d51931
TM
530 nfs4_stateid stateid;
531 struct nfs_seqid * lock_seqid;
532 struct nfs_seqid * open_seqid;
1da177e4
LT
533};
534
911d1aaf 535struct nfs_locku_args {
62ae082d 536 struct nfs4_sequence_args seq_args;
911d1aaf
TM
537 struct nfs_fh * fh;
538 struct file_lock * fl;
cee54fc9 539 struct nfs_seqid * seqid;
425c1d4e 540 nfs4_stateid stateid;
1da177e4
LT
541};
542
911d1aaf 543struct nfs_locku_res {
62ae082d 544 struct nfs4_sequence_res seq_res;
c1d51931
TM
545 nfs4_stateid stateid;
546 struct nfs_seqid * seqid;
1da177e4
LT
547};
548
911d1aaf 549struct nfs_lockt_args {
62ae082d 550 struct nfs4_sequence_args seq_args;
911d1aaf
TM
551 struct nfs_fh * fh;
552 struct file_lock * fl;
553 struct nfs_lowner lock_owner;
1da177e4
LT
554};
555
911d1aaf 556struct nfs_lockt_res {
9ff71c3a 557 struct nfs4_sequence_res seq_res;
62ae082d 558 struct file_lock * denied; /* LOCK, LOCKT failed */
1da177e4
LT
559};
560
d3c7b7cc 561struct nfs_release_lockowner_args {
b7e63a10 562 struct nfs4_sequence_args seq_args;
d3c7b7cc
TM
563 struct nfs_lowner lock_owner;
564};
565
b7e63a10
TM
566struct nfs_release_lockowner_res {
567 struct nfs4_sequence_res seq_res;
568};
569
1da177e4 570struct nfs4_delegreturnargs {
62ae082d 571 struct nfs4_sequence_args seq_args;
1da177e4
LT
572 const struct nfs_fh *fhandle;
573 const nfs4_stateid *stateid;
fa178f29 574 const u32 * bitmask;
586f1c39 575 struct nfs4_layoutreturn_args *lr_args;
fa178f29
TM
576};
577
578struct nfs4_delegreturnres {
62ae082d 579 struct nfs4_sequence_res seq_res;
fa178f29 580 struct nfs_fattr * fattr;
516285eb 581 struct nfs_server *server;
586f1c39
TM
582 struct nfs4_layoutreturn_res *lr_res;
583 int lr_ret;
1da177e4
LT
584};
585
1da177e4
LT
586/*
587 * Arguments to the write call.
588 */
2f2c63bc
TM
589struct nfs_write_verifier {
590 char data[8];
591};
592
1da177e4 593struct nfs_writeverf {
2f2c63bc 594 struct nfs_write_verifier verifier;
1da177e4 595 enum nfs3_stable_how committed;
1da177e4
LT
596};
597
3c6b899c
AS
598/*
599 * Arguments shared by the read and write call.
600 */
601struct nfs_pgio_args {
602 struct nfs4_sequence_args seq_args;
603 struct nfs_fh * fh;
604 struct nfs_open_context *context;
605 struct nfs_lock_context *lock_context;
606 nfs4_stateid stateid;
607 __u64 offset;
608 __u32 count;
609 unsigned int pgbase;
610 struct page ** pages;
28d52235
TM
611 union {
612 unsigned int replen; /* used by read */
613 struct {
614 const u32 * bitmask; /* used by write */
615 enum nfs3_stable_how stable; /* used by write */
616 };
617 };
3c6b899c
AS
618};
619
9137bdf3
AS
620struct nfs_pgio_res {
621 struct nfs4_sequence_res seq_res;
622 struct nfs_fattr * fattr;
623 __u32 count;
aabff4dd 624 __u32 op_status;
28d52235
TM
625 union {
626 struct {
627 unsigned int replen; /* used by read */
628 int eof; /* used by read */
629 };
630 struct {
631 struct nfs_writeverf * verf; /* used by write */
632 const struct nfs_server *server; /* used by write */
633 };
634 };
9137bdf3
AS
635};
636
0b7c0153
FI
637/*
638 * Arguments to the commit call.
639 */
640struct nfs_commitargs {
62ae082d 641 struct nfs4_sequence_args seq_args;
0b7c0153
FI
642 struct nfs_fh *fh;
643 __u64 offset;
644 __u32 count;
645 const u32 *bitmask;
0b7c0153
FI
646};
647
648struct nfs_commitres {
62ae082d 649 struct nfs4_sequence_res seq_res;
aabff4dd 650 __u32 op_status;
0b7c0153
FI
651 struct nfs_fattr *fattr;
652 struct nfs_writeverf *verf;
653 const struct nfs_server *server;
0b7c0153
FI
654};
655
4fdc17b2
TM
656/*
657 * Common arguments to the unlink call
658 */
659struct nfs_removeargs {
62ae082d 660 struct nfs4_sequence_args seq_args;
4fdc17b2
TM
661 const struct nfs_fh *fh;
662 struct qstr name;
4fdc17b2
TM
663};
664
665struct nfs_removeres {
62ae082d 666 struct nfs4_sequence_res seq_res;
516285eb 667 struct nfs_server *server;
d346890b 668 struct nfs_fattr *dir_attr;
4fdc17b2 669 struct nfs4_change_info cinfo;
4fdc17b2
TM
670};
671
920769f0
JL
672/*
673 * Common arguments to the rename call
674 */
675struct nfs_renameargs {
62ae082d 676 struct nfs4_sequence_args seq_args;
920769f0
JL
677 const struct nfs_fh *old_dir;
678 const struct nfs_fh *new_dir;
679 const struct qstr *old_name;
680 const struct qstr *new_name;
920769f0
JL
681};
682
e8582a8b 683struct nfs_renameres {
62ae082d 684 struct nfs4_sequence_res seq_res;
516285eb 685 struct nfs_server *server;
e8582a8b
JL
686 struct nfs4_change_info old_cinfo;
687 struct nfs_fattr *old_fattr;
688 struct nfs4_change_info new_cinfo;
689 struct nfs_fattr *new_fattr;
e8582a8b
JL
690};
691
a3f73c27 692/* parsed sec= options */
4d4b69dd 693#define NFS_AUTH_INFO_MAX_FLAVORS 12 /* see fs/nfs/super.c */
a3f73c27
WAA
694struct nfs_auth_info {
695 unsigned int flavor_len;
4d4b69dd 696 rpc_authflavor_t flavors[NFS_AUTH_INFO_MAX_FLAVORS];
a3f73c27
WAA
697};
698
1da177e4
LT
699/*
700 * Argument struct for decode_entry function
701 */
702struct nfs_entry {
703 __u64 ino;
704 __u64 cookie,
705 prev_cookie;
706 const char * name;
707 unsigned int len;
708 int eof;
709 struct nfs_fh * fh;
710 struct nfs_fattr * fattr;
e058f70b 711 struct nfs4_label *label;
0b26a0bf 712 unsigned char d_type;
573c4e1e 713 struct nfs_server * server;
1da177e4
LT
714};
715
716/*
717 * The following types are for NFSv2 only.
718 */
719struct nfs_sattrargs {
720 struct nfs_fh * fh;
721 struct iattr * sattr;
722};
723
724struct nfs_diropargs {
725 struct nfs_fh * fh;
726 const char * name;
727 unsigned int len;
728};
729
730struct nfs_createargs {
731 struct nfs_fh * fh;
732 const char * name;
733 unsigned int len;
734 struct iattr * sattr;
735};
736
1da177e4 737struct nfs_setattrargs {
62ae082d 738 struct nfs4_sequence_args seq_args;
1da177e4
LT
739 struct nfs_fh * fh;
740 nfs4_stateid stateid;
741 struct iattr * iap;
742 const struct nfs_server * server; /* Needed for name mapping */
743 const u32 * bitmask;
e058f70b 744 const struct nfs4_label *label;
1da177e4
LT
745};
746
23ec6965 747struct nfs_setaclargs {
62ae082d 748 struct nfs4_sequence_args seq_args;
23ec6965
BF
749 struct nfs_fh * fh;
750 size_t acl_len;
23ec6965
BF
751 struct page ** acl_pages;
752};
753
73c403a9
BH
754struct nfs_setaclres {
755 struct nfs4_sequence_res seq_res;
756};
757
029d105e 758struct nfs_getaclargs {
62ae082d 759 struct nfs4_sequence_args seq_args;
029d105e
BF
760 struct nfs_fh * fh;
761 size_t acl_len;
029d105e
BF
762 struct page ** acl_pages;
763};
764
bf118a34 765/* getxattr ACL interface flags */
1f1ea6c2 766#define NFS4_ACL_TRUNC 0x0001 /* ACL was truncated */
663c79b3 767struct nfs_getaclres {
62ae082d 768 struct nfs4_sequence_res seq_res;
663c79b3 769 size_t acl_len;
bf118a34
AA
770 size_t acl_data_offset;
771 int acl_flags;
331818f1 772 struct page * acl_scratch;
663c79b3
BH
773};
774
1da177e4 775struct nfs_setattrres {
62ae082d 776 struct nfs4_sequence_res seq_res;
1da177e4 777 struct nfs_fattr * fattr;
e058f70b 778 struct nfs4_label *label;
1da177e4
LT
779 const struct nfs_server * server;
780};
781
782struct nfs_linkargs {
783 struct nfs_fh * fromfh;
784 struct nfs_fh * tofh;
785 const char * toname;
786 unsigned int tolen;
787};
788
789struct nfs_symlinkargs {
790 struct nfs_fh * fromfh;
791 const char * fromname;
792 unsigned int fromlen;
94a6d753
CL
793 struct page ** pages;
794 unsigned int pathlen;
1da177e4
LT
795 struct iattr * sattr;
796};
797
798struct nfs_readdirargs {
799 struct nfs_fh * fh;
800 __u32 cookie;
801 unsigned int count;
802 struct page ** pages;
803};
804
b7fa0554
AG
805struct nfs3_getaclargs {
806 struct nfs_fh * fh;
807 int mask;
808 struct page ** pages;
809};
810
811struct nfs3_setaclargs {
812 struct inode * inode;
813 int mask;
814 struct posix_acl * acl_access;
815 struct posix_acl * acl_default;
ae46141f
TM
816 size_t len;
817 unsigned int npages;
b7fa0554
AG
818 struct page ** pages;
819};
820
1da177e4
LT
821struct nfs_diropok {
822 struct nfs_fh * fh;
823 struct nfs_fattr * fattr;
824};
825
826struct nfs_readlinkargs {
827 struct nfs_fh * fh;
828 unsigned int pgbase;
829 unsigned int pglen;
830 struct page ** pages;
831};
832
833struct nfs3_sattrargs {
834 struct nfs_fh * fh;
835 struct iattr * sattr;
836 unsigned int guard;
837 struct timespec guardtime;
838};
839
840struct nfs3_diropargs {
841 struct nfs_fh * fh;
842 const char * name;
843 unsigned int len;
844};
845
846struct nfs3_accessargs {
847 struct nfs_fh * fh;
848 __u32 access;
849};
850
851struct nfs3_createargs {
852 struct nfs_fh * fh;
853 const char * name;
854 unsigned int len;
855 struct iattr * sattr;
856 enum nfs3_createmode createmode;
bc4785cd 857 __be32 verifier[2];
1da177e4
LT
858};
859
860struct nfs3_mkdirargs {
861 struct nfs_fh * fh;
862 const char * name;
863 unsigned int len;
864 struct iattr * sattr;
865};
866
867struct nfs3_symlinkargs {
868 struct nfs_fh * fromfh;
869 const char * fromname;
870 unsigned int fromlen;
94a6d753
CL
871 struct page ** pages;
872 unsigned int pathlen;
1da177e4
LT
873 struct iattr * sattr;
874};
875
876struct nfs3_mknodargs {
877 struct nfs_fh * fh;
878 const char * name;
879 unsigned int len;
880 enum nfs3_ftype type;
881 struct iattr * sattr;
882 dev_t rdev;
883};
884
1da177e4
LT
885struct nfs3_linkargs {
886 struct nfs_fh * fromfh;
887 struct nfs_fh * tofh;
888 const char * toname;
889 unsigned int tolen;
890};
891
892struct nfs3_readdirargs {
893 struct nfs_fh * fh;
894 __u64 cookie;
bc4785cd 895 __be32 verf[2];
a7a3b1e9 896 bool plus;
1da177e4
LT
897 unsigned int count;
898 struct page ** pages;
899};
900
901struct nfs3_diropres {
902 struct nfs_fattr * dir_attr;
903 struct nfs_fh * fh;
904 struct nfs_fattr * fattr;
905};
906
907struct nfs3_accessres {
908 struct nfs_fattr * fattr;
909 __u32 access;
910};
911
912struct nfs3_readlinkargs {
913 struct nfs_fh * fh;
914 unsigned int pgbase;
915 unsigned int pglen;
916 struct page ** pages;
917};
918
1da177e4
LT
919struct nfs3_linkres {
920 struct nfs_fattr * dir_attr;
921 struct nfs_fattr * fattr;
922};
923
924struct nfs3_readdirres {
925 struct nfs_fattr * dir_attr;
bc4785cd 926 __be32 * verf;
a7a3b1e9 927 bool plus;
1da177e4
LT
928};
929
b7fa0554
AG
930struct nfs3_getaclres {
931 struct nfs_fattr * fattr;
932 int mask;
933 unsigned int acl_access_count;
934 unsigned int acl_default_count;
935 struct posix_acl * acl_access;
936 struct posix_acl * acl_default;
937};
938
89d77c8f 939#if IS_ENABLED(CONFIG_NFS_V4)
1da177e4
LT
940
941typedef u64 clientid4;
942
943struct nfs4_accessargs {
62ae082d 944 struct nfs4_sequence_args seq_args;
1da177e4 945 const struct nfs_fh * fh;
76b32999 946 const u32 * bitmask;
1da177e4
LT
947 u32 access;
948};
949
950struct nfs4_accessres {
62ae082d 951 struct nfs4_sequence_res seq_res;
76b32999
TM
952 const struct nfs_server * server;
953 struct nfs_fattr * fattr;
1da177e4
LT
954 u32 supported;
955 u32 access;
956};
957
958struct nfs4_create_arg {
62ae082d 959 struct nfs4_sequence_args seq_args;
1da177e4
LT
960 u32 ftype;
961 union {
94a6d753
CL
962 struct {
963 struct page ** pages;
964 unsigned int len;
965 } symlink; /* NF4LNK */
1da177e4
LT
966 struct {
967 u32 specdata1;
968 u32 specdata2;
969 } device; /* NF4BLK, NF4CHR */
970 } u;
971 const struct qstr * name;
972 const struct nfs_server * server;
973 const struct iattr * attrs;
974 const struct nfs_fh * dir_fh;
975 const u32 * bitmask;
e058f70b 976 const struct nfs4_label *label;
dff25ddb 977 umode_t umask;
1da177e4
LT
978};
979
980struct nfs4_create_res {
62ae082d 981 struct nfs4_sequence_res seq_res;
1da177e4
LT
982 const struct nfs_server * server;
983 struct nfs_fh * fh;
984 struct nfs_fattr * fattr;
e058f70b 985 struct nfs4_label *label;
1da177e4
LT
986 struct nfs4_change_info dir_cinfo;
987};
988
989struct nfs4_fsinfo_arg {
62ae082d 990 struct nfs4_sequence_args seq_args;
1da177e4
LT
991 const struct nfs_fh * fh;
992 const u32 * bitmask;
993};
994
3dda5e43 995struct nfs4_fsinfo_res {
3dda5e43 996 struct nfs4_sequence_res seq_res;
62ae082d 997 struct nfs_fsinfo *fsinfo;
3dda5e43
BH
998};
999
1da177e4 1000struct nfs4_getattr_arg {
62ae082d 1001 struct nfs4_sequence_args seq_args;
1da177e4
LT
1002 const struct nfs_fh * fh;
1003 const u32 * bitmask;
1004};
1005
1006struct nfs4_getattr_res {
62ae082d 1007 struct nfs4_sequence_res seq_res;
1da177e4
LT
1008 const struct nfs_server * server;
1009 struct nfs_fattr * fattr;
e058f70b 1010 struct nfs4_label *label;
1da177e4
LT
1011};
1012
1013struct nfs4_link_arg {
62ae082d 1014 struct nfs4_sequence_args seq_args;
1da177e4
LT
1015 const struct nfs_fh * fh;
1016 const struct nfs_fh * dir_fh;
1017 const struct qstr * name;
91ba2eee
TM
1018 const u32 * bitmask;
1019};
1020
1021struct nfs4_link_res {
62ae082d 1022 struct nfs4_sequence_res seq_res;
91ba2eee
TM
1023 const struct nfs_server * server;
1024 struct nfs_fattr * fattr;
e058f70b 1025 struct nfs4_label *label;
91ba2eee
TM
1026 struct nfs4_change_info cinfo;
1027 struct nfs_fattr * dir_attr;
1da177e4
LT
1028};
1029
1030struct nfs4_lookup_arg {
62ae082d 1031 struct nfs4_sequence_args seq_args;
1da177e4
LT
1032 const struct nfs_fh * dir_fh;
1033 const struct qstr * name;
1034 const u32 * bitmask;
1035};
1036
1037struct nfs4_lookup_res {
62ae082d 1038 struct nfs4_sequence_res seq_res;
1da177e4
LT
1039 const struct nfs_server * server;
1040 struct nfs_fattr * fattr;
1041 struct nfs_fh * fh;
e058f70b 1042 struct nfs4_label *label;
1da177e4
LT
1043};
1044
5b5faaf6
JL
1045struct nfs4_lookupp_arg {
1046 struct nfs4_sequence_args seq_args;
1047 const struct nfs_fh *fh;
1048 const u32 *bitmask;
1049};
1050
1051struct nfs4_lookupp_res {
1052 struct nfs4_sequence_res seq_res;
1053 const struct nfs_server *server;
1054 struct nfs_fattr *fattr;
1055 struct nfs_fh *fh;
1056 struct nfs4_label *label;
1057};
1058
1da177e4 1059struct nfs4_lookup_root_arg {
9ff71c3a 1060 struct nfs4_sequence_args seq_args;
62ae082d 1061 const u32 * bitmask;
1da177e4
LT
1062};
1063
1064struct nfs4_pathconf_arg {
62ae082d 1065 struct nfs4_sequence_args seq_args;
1da177e4
LT
1066 const struct nfs_fh * fh;
1067 const u32 * bitmask;
1068};
1069
d45b2989 1070struct nfs4_pathconf_res {
d45b2989 1071 struct nfs4_sequence_res seq_res;
62ae082d 1072 struct nfs_pathconf *pathconf;
d45b2989
BH
1073};
1074
1da177e4 1075struct nfs4_readdir_arg {
62ae082d 1076 struct nfs4_sequence_args seq_args;
1da177e4
LT
1077 const struct nfs_fh * fh;
1078 u64 cookie;
1079 nfs4_verifier verifier;
1080 u32 count;
1081 struct page ** pages; /* zero-copy data */
1082 unsigned int pgbase; /* zero-copy data */
1083 const u32 * bitmask;
a7a3b1e9 1084 bool plus;
1da177e4
LT
1085};
1086
1087struct nfs4_readdir_res {
62ae082d 1088 struct nfs4_sequence_res seq_res;
1da177e4
LT
1089 nfs4_verifier verifier;
1090 unsigned int pgbase;
1091};
1092
1093struct nfs4_readlink {
62ae082d 1094 struct nfs4_sequence_args seq_args;
1da177e4
LT
1095 const struct nfs_fh * fh;
1096 unsigned int pgbase;
1097 unsigned int pglen; /* zero-copy data */
1098 struct page ** pages; /* zero-copy data */
1099};
1100
f50c7000
BH
1101struct nfs4_readlink_res {
1102 struct nfs4_sequence_res seq_res;
1103};
1104
1da177e4 1105struct nfs4_setclientid {
cc38bac3 1106 const nfs4_verifier * sc_verifier;
cc38bac3 1107 u32 sc_prog;
1da177e4 1108 unsigned int sc_netid_len;
d1ce02e1 1109 char sc_netid[RPCBIND_MAXNETIDLEN + 1];
1da177e4 1110 unsigned int sc_uaddr_len;
d1ce02e1 1111 char sc_uaddr[RPCBIND_MAXUADDRLEN + 1];
3a6bb738 1112 struct nfs_client *sc_clnt;
f11b2a1c 1113 struct rpc_cred *sc_cred;
1da177e4
LT
1114};
1115
bb8b27e5
TM
1116struct nfs4_setclientid_res {
1117 u64 clientid;
1118 nfs4_verifier confirm;
1119};
1120
1da177e4 1121struct nfs4_statfs_arg {
62ae082d 1122 struct nfs4_sequence_args seq_args;
1da177e4
LT
1123 const struct nfs_fh * fh;
1124 const u32 * bitmask;
1125};
1126
24ad148a 1127struct nfs4_statfs_res {
24ad148a 1128 struct nfs4_sequence_res seq_res;
62ae082d 1129 struct nfs_fsstat *fsstat;
24ad148a
BH
1130};
1131
43652ad5 1132struct nfs4_server_caps_arg {
43652ad5 1133 struct nfs4_sequence_args seq_args;
62ae082d 1134 struct nfs_fh *fhandle;
8c61282f 1135 const u32 * bitmask;
43652ad5
BH
1136};
1137
1da177e4 1138struct nfs4_server_caps_res {
62ae082d 1139 struct nfs4_sequence_res seq_res;
dae100c2 1140 u32 attr_bitmask[3];
8c61282f 1141 u32 exclcreat_bitmask[3];
1da177e4
LT
1142 u32 acl_bitmask;
1143 u32 has_links;
1144 u32 has_symlinks;
264e6351 1145 u32 fh_expire_type;
1da177e4
LT
1146};
1147
7aaa0b3b
MN
1148#define NFS4_PATHNAME_MAXCOMPONENTS 512
1149struct nfs4_pathname {
1150 unsigned int ncomponents;
1151 struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS];
1152};
1153
1154#define NFS4_FS_LOCATION_MAXSERVERS 10
1155struct nfs4_fs_location {
1156 unsigned int nservers;
1157 struct nfs4_string servers[NFS4_FS_LOCATION_MAXSERVERS];
1158 struct nfs4_pathname rootpath;
1159};
1160
1161#define NFS4_FS_LOCATIONS_MAXENTRIES 10
1162struct nfs4_fs_locations {
683b57b4
TM
1163 struct nfs_fattr fattr;
1164 const struct nfs_server *server;
7aaa0b3b 1165 struct nfs4_pathname fs_path;
683b57b4 1166 int nlocations;
7aaa0b3b 1167 struct nfs4_fs_location locations[NFS4_FS_LOCATIONS_MAXENTRIES];
683b57b4
TM
1168};
1169
1170struct nfs4_fs_locations_arg {
62ae082d 1171 struct nfs4_sequence_args seq_args;
683b57b4 1172 const struct nfs_fh *dir_fh;
b03d735b 1173 const struct nfs_fh *fh;
683b57b4
TM
1174 const struct qstr *name;
1175 struct page *page;
1176 const u32 *bitmask;
b03d735b
CL
1177 clientid4 clientid;
1178 unsigned char migration:1, renew:1;
683b57b4
TM
1179};
1180
22958463 1181struct nfs4_fs_locations_res {
22958463 1182 struct nfs4_sequence_res seq_res;
62ae082d 1183 struct nfs4_fs_locations *fs_locations;
b03d735b 1184 unsigned char migration:1, renew:1;
22958463
BH
1185};
1186
fb15b26f
CL
1187struct nfs4_secinfo4 {
1188 u32 flavor;
1189 struct rpcsec_gss_info flavor_info;
5a5ea0d4
BS
1190};
1191
1192struct nfs4_secinfo_flavors {
fb15b26f
CL
1193 unsigned int num_flavors;
1194 struct nfs4_secinfo4 flavors[0];
5a5ea0d4
BS
1195};
1196
1197struct nfs4_secinfo_arg {
62ae082d 1198 struct nfs4_sequence_args seq_args;
5a5ea0d4
BS
1199 const struct nfs_fh *dir_fh;
1200 const struct qstr *name;
5a5ea0d4
BS
1201};
1202
1203struct nfs4_secinfo_res {
5a5ea0d4 1204 struct nfs4_sequence_res seq_res;
62ae082d 1205 struct nfs4_secinfo_flavors *flavors;
5a5ea0d4
BS
1206};
1207
44c99933
CL
1208struct nfs4_fsid_present_arg {
1209 struct nfs4_sequence_args seq_args;
1210 const struct nfs_fh *fh;
1211 clientid4 clientid;
1212 unsigned char renew:1;
1213};
1214
1215struct nfs4_fsid_present_res {
1216 struct nfs4_sequence_res seq_res;
1217 struct nfs_fh *fh;
1218 unsigned char renew:1;
1219};
1220
1da177e4
LT
1221#endif /* CONFIG_NFS_V4 */
1222
99fe60d0
BH
1223struct nfstime4 {
1224 u64 seconds;
1225 u32 nseconds;
1226};
1227
1228#ifdef CONFIG_NFS_V4_1
ea2cf228
FI
1229
1230struct pnfs_commit_bucket {
1231 struct list_head written;
1232 struct list_head committing;
1233 struct pnfs_layout_segment *wlseg;
1234 struct pnfs_layout_segment *clseg;
5002c586 1235 struct nfs_writeverf direct_verf;
ea2cf228
FI
1236};
1237
1238struct pnfs_ds_commit_info {
1239 int nwritten;
1240 int ncommitting;
1241 int nbuckets;
1242 struct pnfs_commit_bucket *buckets;
1243};
1244
2031cd1a
WAA
1245struct nfs41_state_protection {
1246 u32 how;
1247 struct nfs4_op_map enforce;
1248 struct nfs4_op_map allow;
1249};
1250
99fe60d0
BH
1251struct nfs41_exchange_id_args {
1252 struct nfs_client *client;
fd40559c 1253 nfs4_verifier verifier;
99fe60d0 1254 u32 flags;
2031cd1a 1255 struct nfs41_state_protection state_protect;
99fe60d0
BH
1256};
1257
acdeb69d 1258struct nfs41_server_owner {
99fe60d0
BH
1259 uint64_t minor_id;
1260 uint32_t major_id_sz;
1261 char major_id[NFS4_OPAQUE_LIMIT];
1262};
1263
79d4e1f0 1264struct nfs41_server_scope {
99fe60d0
BH
1265 uint32_t server_scope_sz;
1266 char server_scope[NFS4_OPAQUE_LIMIT];
1267};
1268
7d2ed9ac
WAA
1269struct nfs41_impl_id {
1270 char domain[NFS4_OPAQUE_LIMIT + 1];
1271 char name[NFS4_OPAQUE_LIMIT + 1];
1272 struct nfstime4 date;
1273};
1274
71a097c6
TM
1275struct nfs41_bind_conn_to_session_args {
1276 struct nfs_client *client;
1277 struct nfs4_sessionid sessionid;
1278 u32 dir;
1279 bool use_conn_in_rdma_mode;
1280};
1281
7c44f1ae 1282struct nfs41_bind_conn_to_session_res {
71a097c6 1283 struct nfs4_sessionid sessionid;
7c44f1ae
WAA
1284 u32 dir;
1285 bool use_conn_in_rdma_mode;
1286};
1287
99fe60d0 1288struct nfs41_exchange_id_res {
32b01310
TM
1289 u64 clientid;
1290 u32 seqid;
99fe60d0 1291 u32 flags;
acdeb69d 1292 struct nfs41_server_owner *server_owner;
79d4e1f0 1293 struct nfs41_server_scope *server_scope;
7d2ed9ac 1294 struct nfs41_impl_id *impl_id;
2031cd1a 1295 struct nfs41_state_protection state_protect;
99fe60d0 1296};
fc931582
AA
1297
1298struct nfs41_create_session_args {
1299 struct nfs_client *client;
79969dd1
TM
1300 u64 clientid;
1301 uint32_t seqid;
fc931582
AA
1302 uint32_t flags;
1303 uint32_t cb_program;
1304 struct nfs4_channel_attrs fc_attrs; /* Fore Channel */
1305 struct nfs4_channel_attrs bc_attrs; /* Back Channel */
1306};
1307
1308struct nfs41_create_session_res {
79969dd1
TM
1309 struct nfs4_sessionid sessionid;
1310 uint32_t seqid;
1311 uint32_t flags;
1312 struct nfs4_channel_attrs fc_attrs; /* Fore Channel */
1313 struct nfs4_channel_attrs bc_attrs; /* Back Channel */
fc931582 1314};
18019753
RL
1315
1316struct nfs41_reclaim_complete_args {
62ae082d 1317 struct nfs4_sequence_args seq_args;
18019753
RL
1318 /* In the future extend to include curr_fh for use with migration */
1319 unsigned char one_fs:1;
18019753
RL
1320};
1321
1322struct nfs41_reclaim_complete_res {
1323 struct nfs4_sequence_res seq_res;
1324};
fca78d6d
BS
1325
1326#define SECINFO_STYLE_CURRENT_FH 0
1327#define SECINFO_STYLE_PARENT 1
1328struct nfs41_secinfo_no_name_args {
fca78d6d 1329 struct nfs4_sequence_args seq_args;
62ae082d 1330 int style;
fca78d6d
BS
1331};
1332
7d974794 1333struct nfs41_test_stateid_args {
7d974794 1334 struct nfs4_sequence_args seq_args;
62ae082d 1335 nfs4_stateid *stateid;
7d974794
BS
1336};
1337
1338struct nfs41_test_stateid_res {
7d974794 1339 struct nfs4_sequence_res seq_res;
62ae082d 1340 unsigned int status;
7d974794
BS
1341};
1342
9aeda35f 1343struct nfs41_free_stateid_args {
9aeda35f 1344 struct nfs4_sequence_args seq_args;
7c1d5fae 1345 nfs4_stateid stateid;
9aeda35f
BS
1346};
1347
1348struct nfs41_free_stateid_res {
9aeda35f 1349 struct nfs4_sequence_res seq_res;
62ae082d 1350 unsigned int status;
9aeda35f
BS
1351};
1352
8c393f9a
PT
1353static inline void
1354nfs_free_pnfs_ds_cinfo(struct pnfs_ds_commit_info *cinfo)
1355{
1356 kfree(cinfo->buckets);
1357}
1358
4f97615d
TM
1359#else
1360
1361struct pnfs_ds_commit_info {
1362};
1363
8c393f9a
PT
1364static inline void
1365nfs_free_pnfs_ds_cinfo(struct pnfs_ds_commit_info *cinfo)
1366{
1367}
1368
99fe60d0
BH
1369#endif /* CONFIG_NFS_V4_1 */
1370
1c6dcbe5 1371#ifdef CONFIG_NFS_V4_2
f4ac1674
AS
1372struct nfs42_falloc_args {
1373 struct nfs4_sequence_args seq_args;
1374
1375 struct nfs_fh *falloc_fh;
1376 nfs4_stateid falloc_stateid;
1377 u64 falloc_offset;
1378 u64 falloc_length;
9a51940b 1379 const u32 *falloc_bitmask;
f4ac1674
AS
1380};
1381
1382struct nfs42_falloc_res {
1383 struct nfs4_sequence_res seq_res;
1384 unsigned int status;
9a51940b
AS
1385
1386 struct nfs_fattr *falloc_fattr;
1387 const struct nfs_server *falloc_server;
f4ac1674
AS
1388};
1389
2e72448b
AS
1390struct nfs42_copy_args {
1391 struct nfs4_sequence_args seq_args;
1392
1393 struct nfs_fh *src_fh;
1394 nfs4_stateid src_stateid;
1395 u64 src_pos;
1396
1397 struct nfs_fh *dst_fh;
1398 nfs4_stateid dst_stateid;
1399 u64 dst_pos;
1400
1401 u64 count;
62164f31 1402 bool sync;
2e72448b
AS
1403};
1404
1405struct nfs42_write_res {
67aa7444 1406 nfs4_stateid stateid;
2e72448b
AS
1407 u64 count;
1408 struct nfs_writeverf verifier;
1409};
1410
1411struct nfs42_copy_res {
1412 struct nfs4_sequence_res seq_res;
1413 struct nfs42_write_res write_res;
1414 bool consecutive;
1415 bool synchronous;
e0926934 1416 struct nfs_commitres commit_res;
2e72448b
AS
1417};
1418
cb95deea
OK
1419struct nfs42_offload_status_args {
1420 struct nfs4_sequence_args osa_seq_args;
1421 struct nfs_fh *osa_src_fh;
1422 nfs4_stateid osa_stateid;
1423};
1424
1425struct nfs42_offload_status_res {
1426 struct nfs4_sequence_res osr_seq_res;
1427 uint64_t osr_count;
1428 int osr_status;
1429};
1430
1c6dcbe5
AS
1431struct nfs42_seek_args {
1432 struct nfs4_sequence_args seq_args;
1433
1434 struct nfs_fh *sa_fh;
1435 nfs4_stateid sa_stateid;
1436 u64 sa_offset;
1437 u32 sa_what;
1438};
1439
1440struct nfs42_seek_res {
1441 struct nfs4_sequence_res seq_res;
1442 unsigned int status;
1443
1444 u32 sr_eof;
1445 u64 sr_offset;
1446};
1447#endif
1448
1da177e4
LT
1449struct nfs_page;
1450
40859d7e
CL
1451#define NFS_PAGEVEC_SIZE (8U)
1452
30dd374f
FI
1453struct nfs_page_array {
1454 struct page **pagevec;
1455 unsigned int npages; /* Max length of pagevec */
1456 struct page *page_array[NFS_PAGEVEC_SIZE];
1457};
1458
4db6e0b7
FI
1459/* used as flag bits in nfs_pgio_header */
1460enum {
1461 NFS_IOHDR_ERROR = 0,
1462 NFS_IOHDR_EOF,
1463 NFS_IOHDR_REDO,
37e9ed22 1464 NFS_IOHDR_STAT,
42f86b44
TM
1465 NFS_IOHDR_RESEND_PNFS,
1466 NFS_IOHDR_RESEND_MDS,
4db6e0b7
FI
1467};
1468
919e3bd9 1469struct nfs_io_completion;
cd841605
FI
1470struct nfs_pgio_header {
1471 struct inode *inode;
a52458b4 1472 const struct cred *cred;
cd841605
FI
1473 struct list_head pages;
1474 struct nfs_page *req;
f79d06f5 1475 struct nfs_writeverf verf; /* Used for writes */
fbe77c30 1476 fmode_t rw_mode;
cd841605 1477 struct pnfs_layout_segment *lseg;
4db6e0b7 1478 loff_t io_start;
cd841605 1479 const struct rpc_call_ops *mds_ops;
4db6e0b7 1480 void (*release) (struct nfs_pgio_header *hdr);
061ae2ed 1481 const struct nfs_pgio_completion_ops *completion_ops;
4a0de55c 1482 const struct nfs_rw_ops *rw_ops;
919e3bd9 1483 struct nfs_io_completion *io_completion;
584aa810 1484 struct nfs_direct_req *dreq;
1c6c4b74 1485
cd841605 1486 int pnfs_error;
4db6e0b7 1487 int error; /* merge with pnfs_error */
1c6c4b74 1488 unsigned int good_bytes; /* boundary of good data */
4db6e0b7 1489 unsigned long flags;
d45f60c6
WAA
1490
1491 /*
1492 * rpc data
1493 */
1494 struct rpc_task task;
1495 struct nfs_fattr fattr;
d45f60c6
WAA
1496 struct nfs_pgio_args args; /* argument struct */
1497 struct nfs_pgio_res res; /* result struct */
1498 unsigned long timestamp; /* For lease renewal */
1499 int (*pgio_done_cb)(struct rpc_task *, struct nfs_pgio_header *);
1500 __u64 mds_offset; /* Filelayout dense stripe */
1501 struct nfs_page_array page_array;
1502 struct nfs_client *ds_clp; /* pNFS data server */
6cccbb6f 1503 int ds_commit_idx; /* ds index if ds_clp is set */
a7d42ddb 1504 int pgio_mirror_idx;/* mirror index in pgio layer */
cd841605
FI
1505};
1506
ea2cf228
FI
1507struct nfs_mds_commit_info {
1508 atomic_t rpcs_out;
5cb953d4 1509 atomic_long_t ncommit;
ea2cf228
FI
1510 struct list_head list;
1511};
1512
b20135d0 1513struct nfs_commit_info;
f453a54a
FI
1514struct nfs_commit_data;
1515struct nfs_inode;
1516struct nfs_commit_completion_ops {
f453a54a 1517 void (*completion) (struct nfs_commit_data *data);
b20135d0 1518 void (*resched_write) (struct nfs_commit_info *, struct nfs_page *);
f453a54a
FI
1519};
1520
ea2cf228 1521struct nfs_commit_info {
fe238e60 1522 struct inode *inode; /* Needed for inode->i_lock */
ea2cf228
FI
1523 struct nfs_mds_commit_info *mds;
1524 struct pnfs_ds_commit_info *ds;
b359f9d0 1525 struct nfs_direct_req *dreq; /* O_DIRECT request */
f453a54a 1526 const struct nfs_commit_completion_ops *completion_ops;
ea2cf228
FI
1527};
1528
0b7c0153
FI
1529struct nfs_commit_data {
1530 struct rpc_task task;
1531 struct inode *inode;
a52458b4 1532 const struct cred *cred;
0b7c0153
FI
1533 struct nfs_fattr fattr;
1534 struct nfs_writeverf verf;
1535 struct list_head pages; /* Coalesced requests we wish to flush */
1536 struct list_head list; /* lists of struct nfs_write_data */
1537 struct nfs_direct_req *dreq; /* O_DIRECT request */
1538 struct nfs_commitargs args; /* argument struct */
1539 struct nfs_commitres res; /* result struct */
1540 struct nfs_open_context *context;
1541 struct pnfs_layout_segment *lseg;
1542 struct nfs_client *ds_clp; /* pNFS data server */
1543 int ds_commit_index;
378520b8 1544 loff_t lwb;
0b7c0153 1545 const struct rpc_call_ops *mds_ops;
f453a54a 1546 const struct nfs_commit_completion_ops *completion_ops;
0b7c0153 1547 int (*commit_done_cb) (struct rpc_task *task, struct nfs_commit_data *data);
37e9ed22 1548 unsigned long flags;
0b7c0153
FI
1549};
1550
061ae2ed
FI
1551struct nfs_pgio_completion_ops {
1552 void (*error_cleanup)(struct list_head *head);
584aa810 1553 void (*init_hdr)(struct nfs_pgio_header *hdr);
061ae2ed 1554 void (*completion)(struct nfs_pgio_header *hdr);
dc602dd7 1555 void (*reschedule_io)(struct nfs_pgio_header *hdr);
061ae2ed
FI
1556};
1557
34e137cc 1558struct nfs_unlinkdata {
34e137cc
BS
1559 struct nfs_removeargs args;
1560 struct nfs_removeres res;
884be175
AV
1561 struct dentry *dentry;
1562 wait_queue_head_t wq;
a52458b4 1563 const struct cred *cred;
34e137cc 1564 struct nfs_fattr dir_attr;
8478eaa1 1565 long timeout;
34e137cc
BS
1566};
1567
c6bfa1a1
BS
1568struct nfs_renamedata {
1569 struct nfs_renameargs args;
1570 struct nfs_renameres res;
a52458b4 1571 const struct cred *cred;
c6bfa1a1
BS
1572 struct inode *old_dir;
1573 struct dentry *old_dentry;
1574 struct nfs_fattr old_fattr;
1575 struct inode *new_dir;
1576 struct dentry *new_dentry;
1577 struct nfs_fattr new_fattr;
96f9d8c0 1578 void (*complete)(struct rpc_task *, struct nfs_renamedata *);
8478eaa1 1579 long timeout;
818a8dbe 1580 bool cancelled;
c6bfa1a1
BS
1581};
1582
1da177e4 1583struct nfs_access_entry;
45a52a02 1584struct nfs_client;
e0dca7a0 1585struct rpc_timeout;
ff9099f2
BS
1586struct nfs_subversion;
1587struct nfs_mount_info;
6663ee7f 1588struct nfs_client_initdata;
1abb5088 1589struct nfs_pageio_descriptor;
1da177e4
LT
1590
1591/*
1592 * RPC procedure vector for NFSv2/NFSv3 demuxing
1593 */
1594struct nfs_rpc_ops {
c0e07cb6 1595 u32 version; /* Protocol version */
f786aa90 1596 const struct dentry_operations *dentry_ops;
c5ef1c42
AV
1597 const struct inode_operations *dir_inode_ops;
1598 const struct inode_operations *file_inode_ops;
1788ea6e 1599 const struct file_operations *file_ops;
b1ece737 1600 const struct nlmclnt_operations *nlmclnt_ops;
1da177e4
LT
1601
1602 int (*getroot) (struct nfs_server *, struct nfs_fh *,
1603 struct nfs_fsinfo *);
281cad46
BS
1604 struct vfsmount *(*submount) (struct nfs_server *, struct dentry *,
1605 struct nfs_fh *, struct nfs_fattr *);
ff9099f2
BS
1606 struct dentry *(*try_mount) (int, const char *, struct nfs_mount_info *,
1607 struct nfs_subversion *);
1da177e4 1608 int (*getattr) (struct nfs_server *, struct nfs_fh *,
a841b54d
TM
1609 struct nfs_fattr *, struct nfs4_label *,
1610 struct inode *);
1da177e4
LT
1611 int (*setattr) (struct dentry *, struct nfs_fattr *,
1612 struct iattr *);
beffb8fe 1613 int (*lookup) (struct inode *, const struct qstr *,
1775fd3e
DQ
1614 struct nfs_fh *, struct nfs_fattr *,
1615 struct nfs4_label *);
5b5faaf6
JL
1616 int (*lookupp) (struct inode *, struct nfs_fh *,
1617 struct nfs_fattr *, struct nfs4_label *);
1da177e4
LT
1618 int (*access) (struct inode *, struct nfs_access_entry *);
1619 int (*readlink)(struct inode *, struct page *, unsigned int,
1620 unsigned int);
1da177e4 1621 int (*create) (struct inode *, struct dentry *,
8867fe58 1622 struct iattr *, int);
912678db 1623 int (*remove) (struct inode *, struct dentry *);
ed7e9ad0 1624 void (*unlink_setup) (struct rpc_message *, struct dentry *, struct inode *);
34e137cc 1625 void (*unlink_rpc_prepare) (struct rpc_task *, struct nfs_unlinkdata *);
e4eff1a6 1626 int (*unlink_done) (struct rpc_task *, struct inode *);
f2c2c552
TM
1627 void (*rename_setup) (struct rpc_message *msg,
1628 struct dentry *old_dentry,
1629 struct dentry *new_dentry);
c6bfa1a1 1630 void (*rename_rpc_prepare)(struct rpc_task *task, struct nfs_renamedata *);
d3d4152a 1631 int (*rename_done) (struct rpc_task *task, struct inode *old_dir, struct inode *new_dir);
beffb8fe 1632 int (*link) (struct inode *, struct inode *, const struct qstr *);
94a6d753
CL
1633 int (*symlink) (struct inode *, struct dentry *, struct page *,
1634 unsigned int, struct iattr *);
1da177e4 1635 int (*mkdir) (struct inode *, struct dentry *, struct iattr *);
beffb8fe 1636 int (*rmdir) (struct inode *, const struct qstr *);
684f39b4 1637 int (*readdir) (struct dentry *, const struct cred *,
a7a3b1e9 1638 u64, struct page **, unsigned int, bool);
1da177e4
LT
1639 int (*mknod) (struct inode *, struct dentry *, struct iattr *,
1640 dev_t);
1641 int (*statfs) (struct nfs_server *, struct nfs_fh *,
1642 struct nfs_fsstat *);
1643 int (*fsinfo) (struct nfs_server *, struct nfs_fh *,
1644 struct nfs_fsinfo *);
1645 int (*pathconf) (struct nfs_server *, struct nfs_fh *,
1646 struct nfs_pathconf *);
e9326dca 1647 int (*set_capabilities)(struct nfs_server *, struct nfs_fh *);
a7a3b1e9 1648 int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, bool);
d45f60c6
WAA
1649 int (*pgio_rpc_prepare)(struct rpc_task *,
1650 struct nfs_pgio_header *);
1651 void (*read_setup)(struct nfs_pgio_header *, struct rpc_message *);
1652 int (*read_done)(struct rpc_task *, struct nfs_pgio_header *);
fb91fb0e
AS
1653 void (*write_setup)(struct nfs_pgio_header *, struct rpc_message *,
1654 struct rpc_clnt **);
d45f60c6 1655 int (*write_done)(struct rpc_task *, struct nfs_pgio_header *);
e9ae1ee2
AS
1656 void (*commit_setup) (struct nfs_commit_data *, struct rpc_message *,
1657 struct rpc_clnt **);
0b7c0153
FI
1658 void (*commit_rpc_prepare)(struct rpc_task *, struct nfs_commit_data *);
1659 int (*commit_done) (struct rpc_task *, struct nfs_commit_data *);
1da177e4 1660 int (*lock)(struct file *, int, struct file_lock *);
2116271a 1661 int (*lock_check_bounds)(const struct file_lock *);
ada70d94 1662 void (*clear_acl_cache)(struct inode *);
7fe5c398 1663 void (*close_context)(struct nfs_open_context *ctx, int);
2b484297
TM
1664 struct inode * (*open_context) (struct inode *dir,
1665 struct nfs_open_context *ctx,
1666 int open_flags,
5bc2afc2
TM
1667 struct iattr *iattr,
1668 int *);
011e2a7f 1669 int (*have_delegation)(struct inode *, fmode_t);
6663ee7f 1670 struct nfs_client *(*alloc_client) (const struct nfs_client_initdata *);
5c6e5b60
TM
1671 struct nfs_client *(*init_client) (struct nfs_client *,
1672 const struct nfs_client_initdata *);
cdb7eced 1673 void (*free_client) (struct nfs_client *);
1179acc6
BS
1674 struct nfs_server *(*create_server)(struct nfs_mount_info *, struct nfs_subversion *);
1675 struct nfs_server *(*clone_server)(struct nfs_server *, struct nfs_fh *,
1676 struct nfs_fattr *, rpc_authflavor_t);
1da177e4
LT
1677};
1678
1679/*
1680 * NFS_CALL(getattr, inode, (fattr));
1681 * into
1682 * NFS_PROTO(inode)->getattr(fattr);
1683 */
1684#define NFS_CALL(op, inode, args) NFS_PROTO(inode)->op args
1685
1686/*
1687 * Function vectors etc. for the NFS client
1688 */
509de811
DH
1689extern const struct nfs_rpc_ops nfs_v2_clientops;
1690extern const struct nfs_rpc_ops nfs_v3_clientops;
1691extern const struct nfs_rpc_ops nfs_v4_clientops;
a613fa16
TM
1692extern const struct rpc_version nfs_version2;
1693extern const struct rpc_version nfs_version3;
1694extern const struct rpc_version nfs_version4;
1da177e4 1695
a613fa16
TM
1696extern const struct rpc_version nfsacl_version3;
1697extern const struct rpc_program nfsacl_program;
b7fa0554 1698
1da177e4 1699#endif