Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Process version 3 NFS requests. |
| 3 | * |
| 4 | * Copyright (C) 1996, 1997, 1998 Olaf Kirch <okir@monad.swb.de> |
| 5 | */ |
| 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <linux/fs.h> |
| 8 | #include <linux/ext2_fs.h> |
Qinghuang Feng | 12214cb | 2009-01-12 03:13:53 +0800 | [diff] [blame] | 9 | #include <linux/magic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 11 | #include "cache.h" |
| 12 | #include "xdr3.h" |
J. Bruce Fields | 0a3adad | 2009-11-04 18:12:35 -0500 | [diff] [blame] | 13 | #include "vfs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
| 16 | |
| 17 | #define RETURN_STATUS(st) { resp->status = (st); return (st); } |
| 18 | |
| 19 | static int nfs3_ftypes[] = { |
| 20 | 0, /* NF3NON */ |
| 21 | S_IFREG, /* NF3REG */ |
| 22 | S_IFDIR, /* NF3DIR */ |
| 23 | S_IFBLK, /* NF3BLK */ |
| 24 | S_IFCHR, /* NF3CHR */ |
| 25 | S_IFLNK, /* NF3LNK */ |
| 26 | S_IFSOCK, /* NF3SOCK */ |
| 27 | S_IFIFO, /* NF3FIFO */ |
| 28 | }; |
| 29 | |
| 30 | /* |
| 31 | * NULL call. |
| 32 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 33 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | nfsd3_proc_null(struct svc_rqst *rqstp, void *argp, void *resp) |
| 35 | { |
| 36 | return nfs_ok; |
| 37 | } |
| 38 | |
| 39 | /* |
| 40 | * Get a file's attributes |
| 41 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 42 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | nfsd3_proc_getattr(struct svc_rqst *rqstp, struct nfsd_fhandle *argp, |
| 44 | struct nfsd3_attrstat *resp) |
| 45 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 46 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | dprintk("nfsd: GETATTR(3) %s\n", |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 49 | SVCFH_fmt(&argp->fh)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | fh_copy(&resp->fh, &argp->fh); |
J. Bruce Fields | 04716e6 | 2008-08-07 13:00:20 -0400 | [diff] [blame] | 52 | nfserr = fh_verify(rqstp, &resp->fh, 0, |
| 53 | NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT); |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 54 | if (nfserr) |
| 55 | RETURN_STATUS(nfserr); |
| 56 | |
Al Viro | 3dadecc | 2013-01-24 02:18:08 -0500 | [diff] [blame] | 57 | nfserr = fh_getattr(&resp->fh, &resp->stat); |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | RETURN_STATUS(nfserr); |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * Set a file's attributes |
| 64 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 65 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | nfsd3_proc_setattr(struct svc_rqst *rqstp, struct nfsd3_sattrargs *argp, |
| 67 | struct nfsd3_attrstat *resp) |
| 68 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 69 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | dprintk("nfsd: SETATTR(3) %s\n", |
| 72 | SVCFH_fmt(&argp->fh)); |
| 73 | |
| 74 | fh_copy(&resp->fh, &argp->fh); |
| 75 | nfserr = nfsd_setattr(rqstp, &resp->fh, &argp->attrs, |
| 76 | argp->check_guard, argp->guardtime); |
| 77 | RETURN_STATUS(nfserr); |
| 78 | } |
| 79 | |
| 80 | /* |
| 81 | * Look up a path name component |
| 82 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 83 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | nfsd3_proc_lookup(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp, |
| 85 | struct nfsd3_diropres *resp) |
| 86 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 87 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 89 | dprintk("nfsd: LOOKUP(3) %s %.*s\n", |
| 90 | SVCFH_fmt(&argp->fh), |
| 91 | argp->len, |
| 92 | argp->name); |
| 93 | |
| 94 | fh_copy(&resp->dirfh, &argp->fh); |
| 95 | fh_init(&resp->fh, NFS3_FHSIZE); |
| 96 | |
| 97 | nfserr = nfsd_lookup(rqstp, &resp->dirfh, |
| 98 | argp->name, |
| 99 | argp->len, |
| 100 | &resp->fh); |
| 101 | RETURN_STATUS(nfserr); |
| 102 | } |
| 103 | |
| 104 | /* |
| 105 | * Check file access |
| 106 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 107 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | nfsd3_proc_access(struct svc_rqst *rqstp, struct nfsd3_accessargs *argp, |
| 109 | struct nfsd3_accessres *resp) |
| 110 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 111 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | dprintk("nfsd: ACCESS(3) %s 0x%x\n", |
| 114 | SVCFH_fmt(&argp->fh), |
| 115 | argp->access); |
| 116 | |
| 117 | fh_copy(&resp->fh, &argp->fh); |
| 118 | resp->access = argp->access; |
| 119 | nfserr = nfsd_access(rqstp, &resp->fh, &resp->access, NULL); |
| 120 | RETURN_STATUS(nfserr); |
| 121 | } |
| 122 | |
| 123 | /* |
| 124 | * Read a symlink. |
| 125 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 126 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | nfsd3_proc_readlink(struct svc_rqst *rqstp, struct nfsd3_readlinkargs *argp, |
| 128 | struct nfsd3_readlinkres *resp) |
| 129 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 130 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
| 132 | dprintk("nfsd: READLINK(3) %s\n", SVCFH_fmt(&argp->fh)); |
| 133 | |
| 134 | /* Read the symlink. */ |
| 135 | fh_copy(&resp->fh, &argp->fh); |
| 136 | resp->len = NFS3_MAXPATHLEN; |
| 137 | nfserr = nfsd_readlink(rqstp, &resp->fh, argp->buffer, &resp->len); |
| 138 | RETURN_STATUS(nfserr); |
| 139 | } |
| 140 | |
| 141 | /* |
| 142 | * Read a portion of a file. |
| 143 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 144 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | nfsd3_proc_read(struct svc_rqst *rqstp, struct nfsd3_readargs *argp, |
| 146 | struct nfsd3_readres *resp) |
| 147 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 148 | __be32 nfserr; |
Greg Banks | 7adae48 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 149 | u32 max_blocksize = svc_max_payload(rqstp); |
Benjamin Coddington | ac503e4 | 2016-03-22 10:28:36 -0400 | [diff] [blame] | 150 | unsigned long cnt = min(argp->count, max_blocksize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
J. Bruce Fields | 18b631f | 2010-11-29 15:28:10 -0500 | [diff] [blame] | 152 | dprintk("nfsd: READ(3) %s %lu bytes at %Lu\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | SVCFH_fmt(&argp->fh), |
| 154 | (unsigned long) argp->count, |
J. Bruce Fields | 18b631f | 2010-11-29 15:28:10 -0500 | [diff] [blame] | 155 | (unsigned long long) argp->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
| 157 | /* Obtain buffer pointer for payload. |
| 158 | * 1 (status) + 22 (post_op_attr) + 1 (count) + 1 (eof) |
| 159 | * + 1 (xdr opaque byte count) = 26 |
| 160 | */ |
Benjamin Coddington | ac503e4 | 2016-03-22 10:28:36 -0400 | [diff] [blame] | 161 | resp->count = cnt; |
Jeff Layton | cd12301 | 2007-05-09 02:34:50 -0700 | [diff] [blame] | 162 | svc_reserve_auth(rqstp, ((1 + NFS3_POST_OP_ATTR_WORDS + 3)<<2) + resp->count +4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
| 164 | fh_copy(&resp->fh, &argp->fh); |
J. Bruce Fields | 039a87c | 2010-07-30 11:33:32 -0400 | [diff] [blame] | 165 | nfserr = nfsd_read(rqstp, &resp->fh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | argp->offset, |
NeilBrown | 3cc03b1 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 167 | rqstp->rq_vec, argp->vlen, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | &resp->count); |
| 169 | if (nfserr == 0) { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 170 | struct inode *inode = d_inode(resp->fh.fh_dentry); |
Benjamin Coddington | ac503e4 | 2016-03-22 10:28:36 -0400 | [diff] [blame] | 171 | resp->eof = nfsd_eof_on_read(cnt, resp->count, argp->offset, |
| 172 | inode->i_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | RETURN_STATUS(nfserr); |
| 176 | } |
| 177 | |
| 178 | /* |
| 179 | * Write data to a file |
| 180 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 181 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | nfsd3_proc_write(struct svc_rqst *rqstp, struct nfsd3_writeargs *argp, |
| 183 | struct nfsd3_writeres *resp) |
| 184 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 185 | __be32 nfserr; |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame] | 186 | unsigned long cnt = argp->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
J. Bruce Fields | 18b631f | 2010-11-29 15:28:10 -0500 | [diff] [blame] | 188 | dprintk("nfsd: WRITE(3) %s %d bytes at %Lu%s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | SVCFH_fmt(&argp->fh), |
| 190 | argp->len, |
J. Bruce Fields | 18b631f | 2010-11-29 15:28:10 -0500 | [diff] [blame] | 191 | (unsigned long long) argp->offset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | argp->stable? " stable" : ""); |
| 193 | |
| 194 | fh_copy(&resp->fh, &argp->fh); |
| 195 | resp->committed = argp->stable; |
| 196 | nfserr = nfsd_write(rqstp, &resp->fh, NULL, |
| 197 | argp->offset, |
NeilBrown | 3cc03b1 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 198 | rqstp->rq_vec, argp->vlen, |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame] | 199 | &cnt, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | &resp->committed); |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame] | 201 | resp->count = cnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | RETURN_STATUS(nfserr); |
| 203 | } |
| 204 | |
| 205 | /* |
| 206 | * With NFSv3, CREATE processing is a lot easier than with NFSv2. |
| 207 | * At least in theory; we'll see how it fares in practice when the |
| 208 | * first reports about SunOS compatibility problems start to pour in... |
| 209 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 210 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | nfsd3_proc_create(struct svc_rqst *rqstp, struct nfsd3_createargs *argp, |
| 212 | struct nfsd3_diropres *resp) |
| 213 | { |
| 214 | svc_fh *dirfhp, *newfhp = NULL; |
| 215 | struct iattr *attr; |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 216 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
| 218 | dprintk("nfsd: CREATE(3) %s %.*s\n", |
| 219 | SVCFH_fmt(&argp->fh), |
| 220 | argp->len, |
| 221 | argp->name); |
| 222 | |
| 223 | dirfhp = fh_copy(&resp->dirfh, &argp->fh); |
| 224 | newfhp = fh_init(&resp->fh, NFS3_FHSIZE); |
| 225 | attr = &argp->attrs; |
| 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | /* Unfudge the mode bits */ |
| 228 | attr->ia_mode &= ~S_IFMT; |
| 229 | if (!(attr->ia_valid & ATTR_MODE)) { |
| 230 | attr->ia_valid |= ATTR_MODE; |
| 231 | attr->ia_mode = S_IFREG; |
| 232 | } else { |
| 233 | attr->ia_mode = (attr->ia_mode & ~S_IFMT) | S_IFREG; |
| 234 | } |
| 235 | |
| 236 | /* Now create the file and set attributes */ |
Mi Jinlong | ac6721a | 2011-04-20 17:06:25 +0800 | [diff] [blame] | 237 | nfserr = do_nfsd_create(rqstp, dirfhp, argp->name, argp->len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | attr, newfhp, |
J. Bruce Fields | 95c7a20 | 2012-07-27 15:50:11 -0400 | [diff] [blame] | 239 | argp->createmode, (u32 *)argp->verf, NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
| 241 | RETURN_STATUS(nfserr); |
| 242 | } |
| 243 | |
| 244 | /* |
| 245 | * Make directory. This operation is not idempotent. |
| 246 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 247 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | nfsd3_proc_mkdir(struct svc_rqst *rqstp, struct nfsd3_createargs *argp, |
| 249 | struct nfsd3_diropres *resp) |
| 250 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 251 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
| 253 | dprintk("nfsd: MKDIR(3) %s %.*s\n", |
| 254 | SVCFH_fmt(&argp->fh), |
| 255 | argp->len, |
| 256 | argp->name); |
| 257 | |
| 258 | argp->attrs.ia_valid &= ~ATTR_SIZE; |
| 259 | fh_copy(&resp->dirfh, &argp->fh); |
| 260 | fh_init(&resp->fh, NFS3_FHSIZE); |
| 261 | nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len, |
| 262 | &argp->attrs, S_IFDIR, 0, &resp->fh); |
Chuck Lever | 43a9aa6 | 2010-07-06 16:53:34 -0400 | [diff] [blame] | 263 | fh_unlock(&resp->dirfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | RETURN_STATUS(nfserr); |
| 265 | } |
| 266 | |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 267 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | nfsd3_proc_symlink(struct svc_rqst *rqstp, struct nfsd3_symlinkargs *argp, |
| 269 | struct nfsd3_diropres *resp) |
| 270 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 271 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | dprintk("nfsd: SYMLINK(3) %s %.*s -> %.*s\n", |
| 274 | SVCFH_fmt(&argp->ffh), |
| 275 | argp->flen, argp->fname, |
| 276 | argp->tlen, argp->tname); |
| 277 | |
| 278 | fh_copy(&resp->dirfh, &argp->ffh); |
| 279 | fh_init(&resp->fh, NFS3_FHSIZE); |
| 280 | nfserr = nfsd_symlink(rqstp, &resp->dirfh, argp->fname, argp->flen, |
Kinglong Mee | 1e444f5 | 2014-07-01 17:48:02 +0800 | [diff] [blame] | 281 | argp->tname, &resp->fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | RETURN_STATUS(nfserr); |
| 283 | } |
| 284 | |
| 285 | /* |
| 286 | * Make socket/fifo/device. |
| 287 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 288 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | nfsd3_proc_mknod(struct svc_rqst *rqstp, struct nfsd3_mknodargs *argp, |
| 290 | struct nfsd3_diropres *resp) |
| 291 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 292 | __be32 nfserr; |
| 293 | int type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | dev_t rdev = 0; |
| 295 | |
| 296 | dprintk("nfsd: MKNOD(3) %s %.*s\n", |
| 297 | SVCFH_fmt(&argp->fh), |
| 298 | argp->len, |
| 299 | argp->name); |
| 300 | |
| 301 | fh_copy(&resp->dirfh, &argp->fh); |
| 302 | fh_init(&resp->fh, NFS3_FHSIZE); |
| 303 | |
| 304 | if (argp->ftype == 0 || argp->ftype >= NF3BAD) |
| 305 | RETURN_STATUS(nfserr_inval); |
| 306 | if (argp->ftype == NF3CHR || argp->ftype == NF3BLK) { |
| 307 | rdev = MKDEV(argp->major, argp->minor); |
| 308 | if (MAJOR(rdev) != argp->major || |
| 309 | MINOR(rdev) != argp->minor) |
| 310 | RETURN_STATUS(nfserr_inval); |
| 311 | } else |
| 312 | if (argp->ftype != NF3SOCK && argp->ftype != NF3FIFO) |
| 313 | RETURN_STATUS(nfserr_inval); |
| 314 | |
| 315 | type = nfs3_ftypes[argp->ftype]; |
| 316 | nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len, |
| 317 | &argp->attrs, type, rdev, &resp->fh); |
Chuck Lever | 43a9aa6 | 2010-07-06 16:53:34 -0400 | [diff] [blame] | 318 | fh_unlock(&resp->dirfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | RETURN_STATUS(nfserr); |
| 320 | } |
| 321 | |
| 322 | /* |
| 323 | * Remove file/fifo/socket etc. |
| 324 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 325 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | nfsd3_proc_remove(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp, |
| 327 | struct nfsd3_attrstat *resp) |
| 328 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 329 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
| 331 | dprintk("nfsd: REMOVE(3) %s %.*s\n", |
| 332 | SVCFH_fmt(&argp->fh), |
| 333 | argp->len, |
| 334 | argp->name); |
| 335 | |
| 336 | /* Unlink. -S_IFDIR means file must not be a directory */ |
| 337 | fh_copy(&resp->fh, &argp->fh); |
| 338 | nfserr = nfsd_unlink(rqstp, &resp->fh, -S_IFDIR, argp->name, argp->len); |
Chuck Lever | 43a9aa6 | 2010-07-06 16:53:34 -0400 | [diff] [blame] | 339 | fh_unlock(&resp->fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | RETURN_STATUS(nfserr); |
| 341 | } |
| 342 | |
| 343 | /* |
| 344 | * Remove a directory |
| 345 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 346 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | nfsd3_proc_rmdir(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp, |
| 348 | struct nfsd3_attrstat *resp) |
| 349 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 350 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
| 352 | dprintk("nfsd: RMDIR(3) %s %.*s\n", |
| 353 | SVCFH_fmt(&argp->fh), |
| 354 | argp->len, |
| 355 | argp->name); |
| 356 | |
| 357 | fh_copy(&resp->fh, &argp->fh); |
| 358 | nfserr = nfsd_unlink(rqstp, &resp->fh, S_IFDIR, argp->name, argp->len); |
Chuck Lever | 43a9aa6 | 2010-07-06 16:53:34 -0400 | [diff] [blame] | 359 | fh_unlock(&resp->fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | RETURN_STATUS(nfserr); |
| 361 | } |
| 362 | |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 363 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | nfsd3_proc_rename(struct svc_rqst *rqstp, struct nfsd3_renameargs *argp, |
| 365 | struct nfsd3_renameres *resp) |
| 366 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 367 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
| 369 | dprintk("nfsd: RENAME(3) %s %.*s ->\n", |
| 370 | SVCFH_fmt(&argp->ffh), |
| 371 | argp->flen, |
| 372 | argp->fname); |
| 373 | dprintk("nfsd: -> %s %.*s\n", |
| 374 | SVCFH_fmt(&argp->tfh), |
| 375 | argp->tlen, |
| 376 | argp->tname); |
| 377 | |
| 378 | fh_copy(&resp->ffh, &argp->ffh); |
| 379 | fh_copy(&resp->tfh, &argp->tfh); |
| 380 | nfserr = nfsd_rename(rqstp, &resp->ffh, argp->fname, argp->flen, |
| 381 | &resp->tfh, argp->tname, argp->tlen); |
| 382 | RETURN_STATUS(nfserr); |
| 383 | } |
| 384 | |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 385 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | nfsd3_proc_link(struct svc_rqst *rqstp, struct nfsd3_linkargs *argp, |
| 387 | struct nfsd3_linkres *resp) |
| 388 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 389 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
| 391 | dprintk("nfsd: LINK(3) %s ->\n", |
| 392 | SVCFH_fmt(&argp->ffh)); |
| 393 | dprintk("nfsd: -> %s %.*s\n", |
| 394 | SVCFH_fmt(&argp->tfh), |
| 395 | argp->tlen, |
| 396 | argp->tname); |
| 397 | |
| 398 | fh_copy(&resp->fh, &argp->ffh); |
| 399 | fh_copy(&resp->tfh, &argp->tfh); |
| 400 | nfserr = nfsd_link(rqstp, &resp->tfh, argp->tname, argp->tlen, |
| 401 | &resp->fh); |
| 402 | RETURN_STATUS(nfserr); |
| 403 | } |
| 404 | |
| 405 | /* |
| 406 | * Read a portion of a directory. |
| 407 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 408 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | nfsd3_proc_readdir(struct svc_rqst *rqstp, struct nfsd3_readdirargs *argp, |
| 410 | struct nfsd3_readdirres *resp) |
| 411 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 412 | __be32 nfserr; |
| 413 | int count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
| 415 | dprintk("nfsd: READDIR(3) %s %d bytes at %d\n", |
| 416 | SVCFH_fmt(&argp->fh), |
| 417 | argp->count, (u32) argp->cookie); |
| 418 | |
| 419 | /* Make sure we've room for the NULL ptr & eof flag, and shrink to |
| 420 | * client read size */ |
| 421 | count = (argp->count >> 2) - 2; |
| 422 | |
| 423 | /* Read directory and encode entries on the fly */ |
| 424 | fh_copy(&resp->fh, &argp->fh); |
| 425 | |
| 426 | resp->buflen = count; |
| 427 | resp->common.err = nfs_ok; |
| 428 | resp->buffer = argp->buffer; |
| 429 | resp->rqstp = rqstp; |
| 430 | nfserr = nfsd_readdir(rqstp, &resp->fh, (loff_t*) &argp->cookie, |
| 431 | &resp->common, nfs3svc_encode_entry); |
| 432 | memcpy(resp->verf, argp->verf, 8); |
| 433 | resp->count = resp->buffer - argp->buffer; |
NeilBrown | e4ea22f | 2019-03-04 14:08:22 +1100 | [diff] [blame] | 434 | if (resp->offset) { |
| 435 | loff_t offset = argp->cookie; |
| 436 | |
| 437 | if (unlikely(resp->offset1)) { |
| 438 | /* we ended up with offset on a page boundary */ |
| 439 | *resp->offset = htonl(offset >> 32); |
| 440 | *resp->offset1 = htonl(offset & 0xffffffff); |
| 441 | resp->offset1 = NULL; |
| 442 | } else { |
| 443 | xdr_encode_hyper(resp->offset, offset); |
| 444 | } |
| 445 | resp->offset = NULL; |
| 446 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
| 448 | RETURN_STATUS(nfserr); |
| 449 | } |
| 450 | |
| 451 | /* |
| 452 | * Read a portion of a directory, including file handles and attrs. |
| 453 | * For now, we choose to ignore the dircount parameter. |
| 454 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 455 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | nfsd3_proc_readdirplus(struct svc_rqst *rqstp, struct nfsd3_readdirargs *argp, |
| 457 | struct nfsd3_readdirres *resp) |
| 458 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 459 | __be32 nfserr; |
| 460 | int count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | loff_t offset; |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 462 | struct page **p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | caddr_t page_addr = NULL; |
| 464 | |
| 465 | dprintk("nfsd: READDIR+(3) %s %d bytes at %d\n", |
| 466 | SVCFH_fmt(&argp->fh), |
| 467 | argp->count, (u32) argp->cookie); |
| 468 | |
| 469 | /* Convert byte count to number of words (i.e. >> 2), |
| 470 | * and reserve room for the NULL ptr & eof flag (-2 words) */ |
| 471 | resp->count = (argp->count >> 2) - 2; |
| 472 | |
| 473 | /* Read directory and encode entries on the fly */ |
| 474 | fh_copy(&resp->fh, &argp->fh); |
| 475 | |
| 476 | resp->common.err = nfs_ok; |
| 477 | resp->buffer = argp->buffer; |
| 478 | resp->buflen = resp->count; |
| 479 | resp->rqstp = rqstp; |
| 480 | offset = argp->cookie; |
Rajesh Ghanekar | 18c01ab | 2014-08-01 22:17:30 -0400 | [diff] [blame] | 481 | |
| 482 | nfserr = fh_verify(rqstp, &resp->fh, S_IFDIR, NFSD_MAY_NOP); |
| 483 | if (nfserr) |
| 484 | RETURN_STATUS(nfserr); |
| 485 | |
| 486 | if (resp->fh.fh_export->ex_flags & NFSEXP_NOREADDIRPLUS) |
| 487 | RETURN_STATUS(nfserr_notsupp); |
| 488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | nfserr = nfsd_readdir(rqstp, &resp->fh, |
| 490 | &offset, |
| 491 | &resp->common, |
| 492 | nfs3svc_encode_entry_plus); |
| 493 | memcpy(resp->verf, argp->verf, 8); |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 494 | for (p = rqstp->rq_respages + 1; p < rqstp->rq_next_page; p++) { |
| 495 | page_addr = page_address(*p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
| 497 | if (((caddr_t)resp->buffer >= page_addr) && |
| 498 | ((caddr_t)resp->buffer < page_addr + PAGE_SIZE)) { |
| 499 | count += (caddr_t)resp->buffer - page_addr; |
| 500 | break; |
| 501 | } |
| 502 | count += PAGE_SIZE; |
| 503 | } |
| 504 | resp->count = count >> 2; |
| 505 | if (resp->offset) { |
| 506 | if (unlikely(resp->offset1)) { |
| 507 | /* we ended up with offset on a page boundary */ |
| 508 | *resp->offset = htonl(offset >> 32); |
| 509 | *resp->offset1 = htonl(offset & 0xffffffff); |
| 510 | resp->offset1 = NULL; |
| 511 | } else { |
| 512 | xdr_encode_hyper(resp->offset, offset); |
| 513 | } |
NeilBrown | e4ea22f | 2019-03-04 14:08:22 +1100 | [diff] [blame] | 514 | resp->offset = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | RETURN_STATUS(nfserr); |
| 518 | } |
| 519 | |
| 520 | /* |
| 521 | * Get file system stats |
| 522 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 523 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | nfsd3_proc_fsstat(struct svc_rqst * rqstp, struct nfsd_fhandle *argp, |
| 525 | struct nfsd3_fsstatres *resp) |
| 526 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 527 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
| 529 | dprintk("nfsd: FSSTAT(3) %s\n", |
| 530 | SVCFH_fmt(&argp->fh)); |
| 531 | |
J. Bruce Fields | 04716e6 | 2008-08-07 13:00:20 -0400 | [diff] [blame] | 532 | nfserr = nfsd_statfs(rqstp, &argp->fh, &resp->stats, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | fh_put(&argp->fh); |
| 534 | RETURN_STATUS(nfserr); |
| 535 | } |
| 536 | |
| 537 | /* |
| 538 | * Get file system info |
| 539 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 540 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | nfsd3_proc_fsinfo(struct svc_rqst * rqstp, struct nfsd_fhandle *argp, |
| 542 | struct nfsd3_fsinfores *resp) |
| 543 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 544 | __be32 nfserr; |
Greg Banks | 7adae48 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 545 | u32 max_blocksize = svc_max_payload(rqstp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | |
| 547 | dprintk("nfsd: FSINFO(3) %s\n", |
| 548 | SVCFH_fmt(&argp->fh)); |
| 549 | |
Greg Banks | 7adae48 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 550 | resp->f_rtmax = max_blocksize; |
| 551 | resp->f_rtpref = max_blocksize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | resp->f_rtmult = PAGE_SIZE; |
Greg Banks | 7adae48 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 553 | resp->f_wtmax = max_blocksize; |
| 554 | resp->f_wtpref = max_blocksize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | resp->f_wtmult = PAGE_SIZE; |
| 556 | resp->f_dtpref = PAGE_SIZE; |
| 557 | resp->f_maxfilesize = ~(u32) 0; |
| 558 | resp->f_properties = NFS3_FSF_DEFAULT; |
| 559 | |
J. Bruce Fields | 04716e6 | 2008-08-07 13:00:20 -0400 | [diff] [blame] | 560 | nfserr = fh_verify(rqstp, &argp->fh, 0, |
| 561 | NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
| 563 | /* Check special features of the file system. May request |
| 564 | * different read/write sizes for file systems known to have |
| 565 | * problems with large blocks */ |
| 566 | if (nfserr == 0) { |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 567 | struct super_block *sb = argp->fh.fh_dentry->d_sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
| 569 | /* Note that we don't care for remote fs's here */ |
Qinghuang Feng | 12214cb | 2009-01-12 03:13:53 +0800 | [diff] [blame] | 570 | if (sb->s_magic == MSDOS_SUPER_MAGIC) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | resp->f_properties = NFS3_FSF_BILLYBOY; |
| 572 | } |
| 573 | resp->f_maxfilesize = sb->s_maxbytes; |
| 574 | } |
| 575 | |
| 576 | fh_put(&argp->fh); |
| 577 | RETURN_STATUS(nfserr); |
| 578 | } |
| 579 | |
| 580 | /* |
| 581 | * Get pathconf info for the specified file |
| 582 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 583 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | nfsd3_proc_pathconf(struct svc_rqst * rqstp, struct nfsd_fhandle *argp, |
| 585 | struct nfsd3_pathconfres *resp) |
| 586 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 587 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | |
| 589 | dprintk("nfsd: PATHCONF(3) %s\n", |
| 590 | SVCFH_fmt(&argp->fh)); |
| 591 | |
| 592 | /* Set default pathconf */ |
| 593 | resp->p_link_max = 255; /* at least */ |
| 594 | resp->p_name_max = 255; /* at least */ |
| 595 | resp->p_no_trunc = 0; |
| 596 | resp->p_chown_restricted = 1; |
| 597 | resp->p_case_insensitive = 0; |
| 598 | resp->p_case_preserving = 1; |
| 599 | |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 600 | nfserr = fh_verify(rqstp, &argp->fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
| 602 | if (nfserr == 0) { |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 603 | struct super_block *sb = argp->fh.fh_dentry->d_sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
| 605 | /* Note that we don't care for remote fs's here */ |
| 606 | switch (sb->s_magic) { |
| 607 | case EXT2_SUPER_MAGIC: |
| 608 | resp->p_link_max = EXT2_LINK_MAX; |
| 609 | resp->p_name_max = EXT2_NAME_LEN; |
| 610 | break; |
Qinghuang Feng | 12214cb | 2009-01-12 03:13:53 +0800 | [diff] [blame] | 611 | case MSDOS_SUPER_MAGIC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | resp->p_case_insensitive = 1; |
| 613 | resp->p_case_preserving = 0; |
| 614 | break; |
| 615 | } |
| 616 | } |
| 617 | |
| 618 | fh_put(&argp->fh); |
| 619 | RETURN_STATUS(nfserr); |
| 620 | } |
| 621 | |
| 622 | |
| 623 | /* |
| 624 | * Commit a file (range) to stable storage. |
| 625 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 626 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | nfsd3_proc_commit(struct svc_rqst * rqstp, struct nfsd3_commitargs *argp, |
| 628 | struct nfsd3_commitres *resp) |
| 629 | { |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 630 | __be32 nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
| 632 | dprintk("nfsd: COMMIT(3) %s %u@%Lu\n", |
| 633 | SVCFH_fmt(&argp->fh), |
| 634 | argp->count, |
| 635 | (unsigned long long) argp->offset); |
| 636 | |
| 637 | if (argp->offset > NFS_OFFSET_MAX) |
| 638 | RETURN_STATUS(nfserr_inval); |
| 639 | |
| 640 | fh_copy(&resp->fh, &argp->fh); |
| 641 | nfserr = nfsd_commit(rqstp, &resp->fh, argp->offset, argp->count); |
| 642 | |
| 643 | RETURN_STATUS(nfserr); |
| 644 | } |
| 645 | |
| 646 | |
| 647 | /* |
| 648 | * NFSv3 Server procedures. |
| 649 | * Only the results of non-idempotent operations are cached. |
| 650 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | #define nfs3svc_decode_fhandleargs nfs3svc_decode_fhandle |
| 652 | #define nfs3svc_encode_attrstatres nfs3svc_encode_attrstat |
| 653 | #define nfs3svc_encode_wccstatres nfs3svc_encode_wccstat |
| 654 | #define nfsd3_mkdirargs nfsd3_createargs |
| 655 | #define nfsd3_readdirplusargs nfsd3_readdirargs |
| 656 | #define nfsd3_fhandleargs nfsd_fhandle |
| 657 | #define nfsd3_fhandleres nfsd3_attrstat |
| 658 | #define nfsd3_attrstatres nfsd3_attrstat |
| 659 | #define nfsd3_wccstatres nfsd3_attrstat |
| 660 | #define nfsd3_createres nfsd3_diropres |
| 661 | #define nfsd3_voidres nfsd3_voidargs |
| 662 | struct nfsd3_voidargs { int dummy; }; |
| 663 | |
| 664 | #define PROC(name, argt, rest, relt, cache, respsize) \ |
| 665 | { (svc_procfunc) nfsd3_proc_##name, \ |
| 666 | (kxdrproc_t) nfs3svc_decode_##argt##args, \ |
| 667 | (kxdrproc_t) nfs3svc_encode_##rest##res, \ |
| 668 | (kxdrproc_t) nfs3svc_release_##relt, \ |
| 669 | sizeof(struct nfsd3_##argt##args), \ |
| 670 | sizeof(struct nfsd3_##rest##res), \ |
| 671 | 0, \ |
| 672 | cache, \ |
| 673 | respsize, \ |
| 674 | } |
| 675 | |
| 676 | #define ST 1 /* status*/ |
| 677 | #define FH 17 /* filehandle with length */ |
| 678 | #define AT 21 /* attributes */ |
| 679 | #define pAT (1+AT) /* post attributes - conditional */ |
| 680 | #define WC (7+pAT) /* WCC attributes */ |
| 681 | |
| 682 | static struct svc_procedure nfsd_procedures3[22] = { |
Yu Zhiguo | b9081d9 | 2009-06-09 17:33:34 +0800 | [diff] [blame] | 683 | [NFS3PROC_NULL] = { |
| 684 | .pc_func = (svc_procfunc) nfsd3_proc_null, |
| 685 | .pc_encode = (kxdrproc_t) nfs3svc_encode_voidres, |
| 686 | .pc_argsize = sizeof(struct nfsd3_voidargs), |
| 687 | .pc_ressize = sizeof(struct nfsd3_voidres), |
| 688 | .pc_cachetype = RC_NOCACHE, |
| 689 | .pc_xdrressize = ST, |
| 690 | }, |
| 691 | [NFS3PROC_GETATTR] = { |
| 692 | .pc_func = (svc_procfunc) nfsd3_proc_getattr, |
| 693 | .pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs, |
| 694 | .pc_encode = (kxdrproc_t) nfs3svc_encode_attrstatres, |
| 695 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 696 | .pc_argsize = sizeof(struct nfsd3_fhandleargs), |
| 697 | .pc_ressize = sizeof(struct nfsd3_attrstatres), |
| 698 | .pc_cachetype = RC_NOCACHE, |
| 699 | .pc_xdrressize = ST+AT, |
| 700 | }, |
| 701 | [NFS3PROC_SETATTR] = { |
| 702 | .pc_func = (svc_procfunc) nfsd3_proc_setattr, |
| 703 | .pc_decode = (kxdrproc_t) nfs3svc_decode_sattrargs, |
| 704 | .pc_encode = (kxdrproc_t) nfs3svc_encode_wccstatres, |
| 705 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 706 | .pc_argsize = sizeof(struct nfsd3_sattrargs), |
| 707 | .pc_ressize = sizeof(struct nfsd3_wccstatres), |
| 708 | .pc_cachetype = RC_REPLBUFF, |
| 709 | .pc_xdrressize = ST+WC, |
| 710 | }, |
| 711 | [NFS3PROC_LOOKUP] = { |
| 712 | .pc_func = (svc_procfunc) nfsd3_proc_lookup, |
| 713 | .pc_decode = (kxdrproc_t) nfs3svc_decode_diropargs, |
| 714 | .pc_encode = (kxdrproc_t) nfs3svc_encode_diropres, |
| 715 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2, |
| 716 | .pc_argsize = sizeof(struct nfsd3_diropargs), |
| 717 | .pc_ressize = sizeof(struct nfsd3_diropres), |
| 718 | .pc_cachetype = RC_NOCACHE, |
| 719 | .pc_xdrressize = ST+FH+pAT+pAT, |
| 720 | }, |
| 721 | [NFS3PROC_ACCESS] = { |
| 722 | .pc_func = (svc_procfunc) nfsd3_proc_access, |
| 723 | .pc_decode = (kxdrproc_t) nfs3svc_decode_accessargs, |
| 724 | .pc_encode = (kxdrproc_t) nfs3svc_encode_accessres, |
| 725 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 726 | .pc_argsize = sizeof(struct nfsd3_accessargs), |
| 727 | .pc_ressize = sizeof(struct nfsd3_accessres), |
| 728 | .pc_cachetype = RC_NOCACHE, |
| 729 | .pc_xdrressize = ST+pAT+1, |
| 730 | }, |
| 731 | [NFS3PROC_READLINK] = { |
| 732 | .pc_func = (svc_procfunc) nfsd3_proc_readlink, |
| 733 | .pc_decode = (kxdrproc_t) nfs3svc_decode_readlinkargs, |
| 734 | .pc_encode = (kxdrproc_t) nfs3svc_encode_readlinkres, |
| 735 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 736 | .pc_argsize = sizeof(struct nfsd3_readlinkargs), |
| 737 | .pc_ressize = sizeof(struct nfsd3_readlinkres), |
| 738 | .pc_cachetype = RC_NOCACHE, |
| 739 | .pc_xdrressize = ST+pAT+1+NFS3_MAXPATHLEN/4, |
| 740 | }, |
| 741 | [NFS3PROC_READ] = { |
| 742 | .pc_func = (svc_procfunc) nfsd3_proc_read, |
| 743 | .pc_decode = (kxdrproc_t) nfs3svc_decode_readargs, |
| 744 | .pc_encode = (kxdrproc_t) nfs3svc_encode_readres, |
| 745 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 746 | .pc_argsize = sizeof(struct nfsd3_readargs), |
| 747 | .pc_ressize = sizeof(struct nfsd3_readres), |
| 748 | .pc_cachetype = RC_NOCACHE, |
| 749 | .pc_xdrressize = ST+pAT+4+NFSSVC_MAXBLKSIZE/4, |
| 750 | }, |
| 751 | [NFS3PROC_WRITE] = { |
| 752 | .pc_func = (svc_procfunc) nfsd3_proc_write, |
| 753 | .pc_decode = (kxdrproc_t) nfs3svc_decode_writeargs, |
| 754 | .pc_encode = (kxdrproc_t) nfs3svc_encode_writeres, |
| 755 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 756 | .pc_argsize = sizeof(struct nfsd3_writeargs), |
| 757 | .pc_ressize = sizeof(struct nfsd3_writeres), |
| 758 | .pc_cachetype = RC_REPLBUFF, |
| 759 | .pc_xdrressize = ST+WC+4, |
| 760 | }, |
| 761 | [NFS3PROC_CREATE] = { |
| 762 | .pc_func = (svc_procfunc) nfsd3_proc_create, |
| 763 | .pc_decode = (kxdrproc_t) nfs3svc_decode_createargs, |
| 764 | .pc_encode = (kxdrproc_t) nfs3svc_encode_createres, |
| 765 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2, |
| 766 | .pc_argsize = sizeof(struct nfsd3_createargs), |
| 767 | .pc_ressize = sizeof(struct nfsd3_createres), |
| 768 | .pc_cachetype = RC_REPLBUFF, |
| 769 | .pc_xdrressize = ST+(1+FH+pAT)+WC, |
| 770 | }, |
| 771 | [NFS3PROC_MKDIR] = { |
| 772 | .pc_func = (svc_procfunc) nfsd3_proc_mkdir, |
| 773 | .pc_decode = (kxdrproc_t) nfs3svc_decode_mkdirargs, |
| 774 | .pc_encode = (kxdrproc_t) nfs3svc_encode_createres, |
| 775 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2, |
| 776 | .pc_argsize = sizeof(struct nfsd3_mkdirargs), |
| 777 | .pc_ressize = sizeof(struct nfsd3_createres), |
| 778 | .pc_cachetype = RC_REPLBUFF, |
| 779 | .pc_xdrressize = ST+(1+FH+pAT)+WC, |
| 780 | }, |
| 781 | [NFS3PROC_SYMLINK] = { |
| 782 | .pc_func = (svc_procfunc) nfsd3_proc_symlink, |
| 783 | .pc_decode = (kxdrproc_t) nfs3svc_decode_symlinkargs, |
| 784 | .pc_encode = (kxdrproc_t) nfs3svc_encode_createres, |
| 785 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2, |
| 786 | .pc_argsize = sizeof(struct nfsd3_symlinkargs), |
| 787 | .pc_ressize = sizeof(struct nfsd3_createres), |
| 788 | .pc_cachetype = RC_REPLBUFF, |
| 789 | .pc_xdrressize = ST+(1+FH+pAT)+WC, |
| 790 | }, |
| 791 | [NFS3PROC_MKNOD] = { |
| 792 | .pc_func = (svc_procfunc) nfsd3_proc_mknod, |
| 793 | .pc_decode = (kxdrproc_t) nfs3svc_decode_mknodargs, |
| 794 | .pc_encode = (kxdrproc_t) nfs3svc_encode_createres, |
| 795 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2, |
| 796 | .pc_argsize = sizeof(struct nfsd3_mknodargs), |
| 797 | .pc_ressize = sizeof(struct nfsd3_createres), |
| 798 | .pc_cachetype = RC_REPLBUFF, |
| 799 | .pc_xdrressize = ST+(1+FH+pAT)+WC, |
| 800 | }, |
| 801 | [NFS3PROC_REMOVE] = { |
| 802 | .pc_func = (svc_procfunc) nfsd3_proc_remove, |
| 803 | .pc_decode = (kxdrproc_t) nfs3svc_decode_diropargs, |
| 804 | .pc_encode = (kxdrproc_t) nfs3svc_encode_wccstatres, |
| 805 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 806 | .pc_argsize = sizeof(struct nfsd3_diropargs), |
| 807 | .pc_ressize = sizeof(struct nfsd3_wccstatres), |
| 808 | .pc_cachetype = RC_REPLBUFF, |
| 809 | .pc_xdrressize = ST+WC, |
| 810 | }, |
| 811 | [NFS3PROC_RMDIR] = { |
| 812 | .pc_func = (svc_procfunc) nfsd3_proc_rmdir, |
| 813 | .pc_decode = (kxdrproc_t) nfs3svc_decode_diropargs, |
| 814 | .pc_encode = (kxdrproc_t) nfs3svc_encode_wccstatres, |
| 815 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 816 | .pc_argsize = sizeof(struct nfsd3_diropargs), |
| 817 | .pc_ressize = sizeof(struct nfsd3_wccstatres), |
| 818 | .pc_cachetype = RC_REPLBUFF, |
| 819 | .pc_xdrressize = ST+WC, |
| 820 | }, |
| 821 | [NFS3PROC_RENAME] = { |
| 822 | .pc_func = (svc_procfunc) nfsd3_proc_rename, |
| 823 | .pc_decode = (kxdrproc_t) nfs3svc_decode_renameargs, |
| 824 | .pc_encode = (kxdrproc_t) nfs3svc_encode_renameres, |
| 825 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2, |
| 826 | .pc_argsize = sizeof(struct nfsd3_renameargs), |
| 827 | .pc_ressize = sizeof(struct nfsd3_renameres), |
| 828 | .pc_cachetype = RC_REPLBUFF, |
| 829 | .pc_xdrressize = ST+WC+WC, |
| 830 | }, |
| 831 | [NFS3PROC_LINK] = { |
| 832 | .pc_func = (svc_procfunc) nfsd3_proc_link, |
| 833 | .pc_decode = (kxdrproc_t) nfs3svc_decode_linkargs, |
| 834 | .pc_encode = (kxdrproc_t) nfs3svc_encode_linkres, |
| 835 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2, |
| 836 | .pc_argsize = sizeof(struct nfsd3_linkargs), |
| 837 | .pc_ressize = sizeof(struct nfsd3_linkres), |
| 838 | .pc_cachetype = RC_REPLBUFF, |
| 839 | .pc_xdrressize = ST+pAT+WC, |
| 840 | }, |
| 841 | [NFS3PROC_READDIR] = { |
| 842 | .pc_func = (svc_procfunc) nfsd3_proc_readdir, |
| 843 | .pc_decode = (kxdrproc_t) nfs3svc_decode_readdirargs, |
| 844 | .pc_encode = (kxdrproc_t) nfs3svc_encode_readdirres, |
| 845 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 846 | .pc_argsize = sizeof(struct nfsd3_readdirargs), |
| 847 | .pc_ressize = sizeof(struct nfsd3_readdirres), |
| 848 | .pc_cachetype = RC_NOCACHE, |
| 849 | }, |
| 850 | [NFS3PROC_READDIRPLUS] = { |
| 851 | .pc_func = (svc_procfunc) nfsd3_proc_readdirplus, |
| 852 | .pc_decode = (kxdrproc_t) nfs3svc_decode_readdirplusargs, |
| 853 | .pc_encode = (kxdrproc_t) nfs3svc_encode_readdirres, |
| 854 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 855 | .pc_argsize = sizeof(struct nfsd3_readdirplusargs), |
| 856 | .pc_ressize = sizeof(struct nfsd3_readdirres), |
| 857 | .pc_cachetype = RC_NOCACHE, |
| 858 | }, |
| 859 | [NFS3PROC_FSSTAT] = { |
| 860 | .pc_func = (svc_procfunc) nfsd3_proc_fsstat, |
| 861 | .pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs, |
| 862 | .pc_encode = (kxdrproc_t) nfs3svc_encode_fsstatres, |
| 863 | .pc_argsize = sizeof(struct nfsd3_fhandleargs), |
| 864 | .pc_ressize = sizeof(struct nfsd3_fsstatres), |
| 865 | .pc_cachetype = RC_NOCACHE, |
| 866 | .pc_xdrressize = ST+pAT+2*6+1, |
| 867 | }, |
| 868 | [NFS3PROC_FSINFO] = { |
| 869 | .pc_func = (svc_procfunc) nfsd3_proc_fsinfo, |
| 870 | .pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs, |
| 871 | .pc_encode = (kxdrproc_t) nfs3svc_encode_fsinfores, |
| 872 | .pc_argsize = sizeof(struct nfsd3_fhandleargs), |
| 873 | .pc_ressize = sizeof(struct nfsd3_fsinfores), |
| 874 | .pc_cachetype = RC_NOCACHE, |
| 875 | .pc_xdrressize = ST+pAT+12, |
| 876 | }, |
| 877 | [NFS3PROC_PATHCONF] = { |
| 878 | .pc_func = (svc_procfunc) nfsd3_proc_pathconf, |
| 879 | .pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs, |
| 880 | .pc_encode = (kxdrproc_t) nfs3svc_encode_pathconfres, |
| 881 | .pc_argsize = sizeof(struct nfsd3_fhandleargs), |
| 882 | .pc_ressize = sizeof(struct nfsd3_pathconfres), |
| 883 | .pc_cachetype = RC_NOCACHE, |
| 884 | .pc_xdrressize = ST+pAT+6, |
| 885 | }, |
| 886 | [NFS3PROC_COMMIT] = { |
| 887 | .pc_func = (svc_procfunc) nfsd3_proc_commit, |
| 888 | .pc_decode = (kxdrproc_t) nfs3svc_decode_commitargs, |
| 889 | .pc_encode = (kxdrproc_t) nfs3svc_encode_commitres, |
| 890 | .pc_release = (kxdrproc_t) nfs3svc_release_fhandle, |
| 891 | .pc_argsize = sizeof(struct nfsd3_commitargs), |
| 892 | .pc_ressize = sizeof(struct nfsd3_commitres), |
| 893 | .pc_cachetype = RC_NOCACHE, |
| 894 | .pc_xdrressize = ST+WC+2, |
| 895 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | }; |
| 897 | |
| 898 | struct svc_version nfsd_version3 = { |
| 899 | .vs_vers = 3, |
| 900 | .vs_nproc = 22, |
| 901 | .vs_proc = nfsd_procedures3, |
| 902 | .vs_dispatch = nfsd_dispatch, |
| 903 | .vs_xdrsize = NFS3_SVC_XDRSIZE, |
| 904 | }; |