Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * XDR types for NFSv3 in nfsd. |
| 4 | * |
| 5 | * Copyright (C) 1996-1998, Olaf Kirch <okir@monad.swb.de> |
| 6 | */ |
| 7 | |
| 8 | #ifndef _LINUX_NFSD_XDR3_H |
| 9 | #define _LINUX_NFSD_XDR3_H |
| 10 | |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 11 | #include "xdr.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
| 13 | struct nfsd3_sattrargs { |
| 14 | struct svc_fh fh; |
| 15 | struct iattr attrs; |
| 16 | int check_guard; |
Arnd Bergmann | 2a1aa48 | 2019-11-03 17:50:18 +0100 | [diff] [blame] | 17 | time64_t guardtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | }; |
| 19 | |
| 20 | struct nfsd3_diropargs { |
| 21 | struct svc_fh fh; |
| 22 | char * name; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 23 | unsigned int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | }; |
| 25 | |
| 26 | struct nfsd3_accessargs { |
| 27 | struct svc_fh fh; |
| 28 | unsigned int access; |
| 29 | }; |
| 30 | |
| 31 | struct nfsd3_readargs { |
| 32 | struct svc_fh fh; |
| 33 | __u64 offset; |
| 34 | __u32 count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | int vlen; |
| 36 | }; |
| 37 | |
| 38 | struct nfsd3_writeargs { |
| 39 | svc_fh fh; |
| 40 | __u64 offset; |
| 41 | __u32 count; |
| 42 | int stable; |
NeilBrown | 0ba7536 | 2005-11-07 01:00:26 -0800 | [diff] [blame] | 43 | __u32 len; |
Chuck Lever | 8154ef2 | 2018-03-27 10:54:07 -0400 | [diff] [blame] | 44 | struct kvec first; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | struct nfsd3_createargs { |
| 48 | struct svc_fh fh; |
| 49 | char * name; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 50 | unsigned int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | int createmode; |
| 52 | struct iattr attrs; |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 53 | __be32 * verf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | struct nfsd3_mknodargs { |
| 57 | struct svc_fh fh; |
| 58 | char * name; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 59 | unsigned int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | __u32 ftype; |
| 61 | __u32 major, minor; |
| 62 | struct iattr attrs; |
| 63 | }; |
| 64 | |
| 65 | struct nfsd3_renameargs { |
| 66 | struct svc_fh ffh; |
| 67 | char * fname; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 68 | unsigned int flen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | struct svc_fh tfh; |
| 70 | char * tname; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 71 | unsigned int tlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | struct nfsd3_readlinkargs { |
| 75 | struct svc_fh fh; |
| 76 | char * buffer; |
| 77 | }; |
| 78 | |
| 79 | struct nfsd3_linkargs { |
| 80 | struct svc_fh ffh; |
| 81 | struct svc_fh tfh; |
| 82 | char * tname; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 83 | unsigned int tlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | struct nfsd3_symlinkargs { |
| 87 | struct svc_fh ffh; |
| 88 | char * fname; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 89 | unsigned int flen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | char * tname; |
Chuck Lever | 48b4ba3 | 2007-11-01 16:57:25 -0400 | [diff] [blame] | 91 | unsigned int tlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | struct iattr attrs; |
Chuck Lever | 38a7031 | 2018-03-27 10:54:21 -0400 | [diff] [blame] | 93 | struct kvec first; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | struct nfsd3_readdirargs { |
| 97 | struct svc_fh fh; |
| 98 | __u64 cookie; |
| 99 | __u32 dircount; |
| 100 | __u32 count; |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 101 | __be32 * verf; |
| 102 | __be32 * buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | }; |
| 104 | |
| 105 | struct nfsd3_commitargs { |
| 106 | struct svc_fh fh; |
| 107 | __u64 offset; |
| 108 | __u32 count; |
| 109 | }; |
| 110 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 111 | struct nfsd3_getaclargs { |
| 112 | struct svc_fh fh; |
| 113 | int mask; |
| 114 | }; |
| 115 | |
| 116 | struct posix_acl; |
| 117 | struct nfsd3_setaclargs { |
| 118 | struct svc_fh fh; |
| 119 | int mask; |
| 120 | struct posix_acl *acl_access; |
| 121 | struct posix_acl *acl_default; |
| 122 | }; |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | struct nfsd3_attrstat { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 125 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | struct svc_fh fh; |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 127 | struct kstat stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | /* LOOKUP, CREATE, MKDIR, SYMLINK, MKNOD */ |
| 131 | struct nfsd3_diropres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 132 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | struct svc_fh dirfh; |
| 134 | struct svc_fh fh; |
| 135 | }; |
| 136 | |
| 137 | struct nfsd3_accessres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 138 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | struct svc_fh fh; |
| 140 | __u32 access; |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 141 | struct kstat stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | struct nfsd3_readlinkres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 145 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | struct svc_fh fh; |
| 147 | __u32 len; |
| 148 | }; |
| 149 | |
| 150 | struct nfsd3_readres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 151 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | struct svc_fh fh; |
| 153 | unsigned long count; |
Trond Myklebust | 83a6307 | 2019-08-26 13:03:11 -0400 | [diff] [blame] | 154 | __u32 eof; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | struct nfsd3_writeres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 158 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | struct svc_fh fh; |
| 160 | unsigned long count; |
| 161 | int committed; |
Trond Myklebust | 19e0663 | 2020-01-06 13:40:37 -0500 | [diff] [blame] | 162 | __be32 verf[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | }; |
| 164 | |
| 165 | struct nfsd3_renameres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 166 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | struct svc_fh ffh; |
| 168 | struct svc_fh tfh; |
| 169 | }; |
| 170 | |
| 171 | struct nfsd3_linkres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 172 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | struct svc_fh tfh; |
| 174 | struct svc_fh fh; |
| 175 | }; |
| 176 | |
| 177 | struct nfsd3_readdirres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 178 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | struct svc_fh fh; |
J. Bruce Fields | 068c34c | 2014-01-09 16:24:35 -0500 | [diff] [blame] | 180 | /* Just to save kmalloc on every readdirplus entry (svc_fh is a |
| 181 | * little large for the stack): */ |
| 182 | struct svc_fh scratch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | int count; |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 184 | __be32 verf[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
| 186 | struct readdir_cd common; |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 187 | __be32 * buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | int buflen; |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 189 | __be32 * offset; |
| 190 | __be32 * offset1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | struct svc_rqst * rqstp; |
| 192 | |
| 193 | }; |
| 194 | |
| 195 | struct nfsd3_fsstatres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 196 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | struct kstatfs stats; |
| 198 | __u32 invarsec; |
| 199 | }; |
| 200 | |
| 201 | struct nfsd3_fsinfores { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 202 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | __u32 f_rtmax; |
| 204 | __u32 f_rtpref; |
| 205 | __u32 f_rtmult; |
| 206 | __u32 f_wtmax; |
| 207 | __u32 f_wtpref; |
| 208 | __u32 f_wtmult; |
| 209 | __u32 f_dtpref; |
| 210 | __u64 f_maxfilesize; |
| 211 | __u32 f_properties; |
| 212 | }; |
| 213 | |
| 214 | struct nfsd3_pathconfres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 215 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | __u32 p_link_max; |
| 217 | __u32 p_name_max; |
| 218 | __u32 p_no_trunc; |
| 219 | __u32 p_chown_restricted; |
| 220 | __u32 p_case_insensitive; |
| 221 | __u32 p_case_preserving; |
| 222 | }; |
| 223 | |
| 224 | struct nfsd3_commitres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 225 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | struct svc_fh fh; |
Trond Myklebust | 524ff1a | 2020-01-06 13:40:36 -0500 | [diff] [blame] | 227 | __be32 verf[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | }; |
| 229 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 230 | struct nfsd3_getaclres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 231 | __be32 status; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 232 | struct svc_fh fh; |
| 233 | int mask; |
| 234 | struct posix_acl *acl_access; |
| 235 | struct posix_acl *acl_default; |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 236 | struct kstat stat; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 237 | }; |
| 238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | /* dummy type for release */ |
| 240 | struct nfsd3_fhandle_pair { |
| 241 | __u32 dummy; |
| 242 | struct svc_fh fh1; |
| 243 | struct svc_fh fh2; |
| 244 | }; |
| 245 | |
| 246 | /* |
| 247 | * Storage requirements for XDR arguments and results. |
| 248 | */ |
| 249 | union nfsd3_xdrstore { |
| 250 | struct nfsd3_sattrargs sattrargs; |
| 251 | struct nfsd3_diropargs diropargs; |
| 252 | struct nfsd3_readargs readargs; |
| 253 | struct nfsd3_writeargs writeargs; |
| 254 | struct nfsd3_createargs createargs; |
| 255 | struct nfsd3_renameargs renameargs; |
| 256 | struct nfsd3_linkargs linkargs; |
| 257 | struct nfsd3_symlinkargs symlinkargs; |
| 258 | struct nfsd3_readdirargs readdirargs; |
| 259 | struct nfsd3_diropres diropres; |
| 260 | struct nfsd3_accessres accessres; |
| 261 | struct nfsd3_readlinkres readlinkres; |
| 262 | struct nfsd3_readres readres; |
| 263 | struct nfsd3_writeres writeres; |
| 264 | struct nfsd3_renameres renameres; |
| 265 | struct nfsd3_linkres linkres; |
| 266 | struct nfsd3_readdirres readdirres; |
| 267 | struct nfsd3_fsstatres fsstatres; |
| 268 | struct nfsd3_fsinfores fsinfores; |
| 269 | struct nfsd3_pathconfres pathconfres; |
| 270 | struct nfsd3_commitres commitres; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 271 | struct nfsd3_getaclres getaclres; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | }; |
| 273 | |
| 274 | #define NFS3_SVC_XDRSIZE sizeof(union nfsd3_xdrstore) |
| 275 | |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 276 | int nfs3svc_decode_fhandle(struct svc_rqst *, __be32 *); |
| 277 | int nfs3svc_decode_sattrargs(struct svc_rqst *, __be32 *); |
| 278 | int nfs3svc_decode_diropargs(struct svc_rqst *, __be32 *); |
| 279 | int nfs3svc_decode_accessargs(struct svc_rqst *, __be32 *); |
| 280 | int nfs3svc_decode_readargs(struct svc_rqst *, __be32 *); |
| 281 | int nfs3svc_decode_writeargs(struct svc_rqst *, __be32 *); |
| 282 | int nfs3svc_decode_createargs(struct svc_rqst *, __be32 *); |
| 283 | int nfs3svc_decode_mkdirargs(struct svc_rqst *, __be32 *); |
| 284 | int nfs3svc_decode_mknodargs(struct svc_rqst *, __be32 *); |
| 285 | int nfs3svc_decode_renameargs(struct svc_rqst *, __be32 *); |
| 286 | int nfs3svc_decode_readlinkargs(struct svc_rqst *, __be32 *); |
| 287 | int nfs3svc_decode_linkargs(struct svc_rqst *, __be32 *); |
| 288 | int nfs3svc_decode_symlinkargs(struct svc_rqst *, __be32 *); |
| 289 | int nfs3svc_decode_readdirargs(struct svc_rqst *, __be32 *); |
| 290 | int nfs3svc_decode_readdirplusargs(struct svc_rqst *, __be32 *); |
| 291 | int nfs3svc_decode_commitargs(struct svc_rqst *, __be32 *); |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 292 | int nfs3svc_encode_voidres(struct svc_rqst *, __be32 *); |
| 293 | int nfs3svc_encode_attrstat(struct svc_rqst *, __be32 *); |
| 294 | int nfs3svc_encode_wccstat(struct svc_rqst *, __be32 *); |
| 295 | int nfs3svc_encode_diropres(struct svc_rqst *, __be32 *); |
| 296 | int nfs3svc_encode_accessres(struct svc_rqst *, __be32 *); |
| 297 | int nfs3svc_encode_readlinkres(struct svc_rqst *, __be32 *); |
| 298 | int nfs3svc_encode_readres(struct svc_rqst *, __be32 *); |
| 299 | int nfs3svc_encode_writeres(struct svc_rqst *, __be32 *); |
| 300 | int nfs3svc_encode_createres(struct svc_rqst *, __be32 *); |
| 301 | int nfs3svc_encode_renameres(struct svc_rqst *, __be32 *); |
| 302 | int nfs3svc_encode_linkres(struct svc_rqst *, __be32 *); |
| 303 | int nfs3svc_encode_readdirres(struct svc_rqst *, __be32 *); |
| 304 | int nfs3svc_encode_fsstatres(struct svc_rqst *, __be32 *); |
| 305 | int nfs3svc_encode_fsinfores(struct svc_rqst *, __be32 *); |
| 306 | int nfs3svc_encode_pathconfres(struct svc_rqst *, __be32 *); |
| 307 | int nfs3svc_encode_commitres(struct svc_rqst *, __be32 *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 309 | void nfs3svc_release_fhandle(struct svc_rqst *); |
| 310 | void nfs3svc_release_fhandle2(struct svc_rqst *); |
NeilBrown | a0ad13e | 2007-01-26 00:57:10 -0800 | [diff] [blame] | 311 | int nfs3svc_encode_entry(void *, const char *name, |
| 312 | int namlen, loff_t offset, u64 ino, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | unsigned int); |
NeilBrown | a0ad13e | 2007-01-26 00:57:10 -0800 | [diff] [blame] | 314 | int nfs3svc_encode_entry_plus(void *, const char *name, |
| 315 | int namlen, loff_t offset, u64 ino, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | unsigned int); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 317 | /* Helper functions for NFSv3 ACL code */ |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 318 | __be32 *nfs3svc_encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 319 | struct svc_fh *fhp); |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 320 | __be32 *nfs3svc_decode_fh(__be32 *p, struct svc_fh *fhp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
| 322 | |
| 323 | #endif /* _LINUX_NFSD_XDR3_H */ |