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 | * XDR support for nfsd |
| 3 | * |
| 4 | * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de> |
| 5 | */ |
| 6 | |
Al Viro | 3dadecc | 2013-01-24 02:18:08 -0500 | [diff] [blame] | 7 | #include "vfs.h" |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 8 | #include "xdr.h" |
J. Bruce Fields | 2e8138a | 2007-11-15 17:05:43 -0500 | [diff] [blame] | 9 | #include "auth.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
| 11 | #define NFSDDBG_FACILITY NFSDDBG_XDR |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | /* |
| 14 | * Mapping of S_IF* types to NFS file types |
| 15 | */ |
| 16 | static u32 nfs_ftypes[] = { |
| 17 | NFNON, NFCHR, NFCHR, NFBAD, |
| 18 | NFDIR, NFBAD, NFBLK, NFBAD, |
| 19 | NFREG, NFBAD, NFLNK, NFBAD, |
| 20 | NFSOCK, NFBAD, NFLNK, NFBAD, |
| 21 | }; |
| 22 | |
| 23 | |
| 24 | /* |
| 25 | * XDR functions for basic NFS types |
| 26 | */ |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 27 | static __be32 * |
| 28 | decode_fh(__be32 *p, struct svc_fh *fhp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | { |
| 30 | fh_init(fhp, NFS_FHSIZE); |
| 31 | memcpy(&fhp->fh_handle.fh_base, p, NFS_FHSIZE); |
| 32 | fhp->fh_handle.fh_size = NFS_FHSIZE; |
| 33 | |
| 34 | /* FIXME: Look up export pointer here and verify |
| 35 | * Sun Secure RPC if requested */ |
| 36 | return p + (NFS_FHSIZE >> 2); |
| 37 | } |
| 38 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 39 | /* Helper function for NFSv2 ACL code */ |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 40 | __be32 *nfs2svc_decode_fh(__be32 *p, struct svc_fh *fhp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 41 | { |
| 42 | return decode_fh(p, fhp); |
| 43 | } |
| 44 | |
Adrian Bunk | 3ee6f61 | 2006-12-06 20:40:23 -0800 | [diff] [blame] | 45 | static __be32 * |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 46 | encode_fh(__be32 *p, struct svc_fh *fhp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | { |
| 48 | memcpy(p, &fhp->fh_handle.fh_base, NFS_FHSIZE); |
| 49 | return p + (NFS_FHSIZE>> 2); |
| 50 | } |
| 51 | |
| 52 | /* |
| 53 | * Decode a file name and make sure that the path contains |
| 54 | * no slashes or null bytes. |
| 55 | */ |
Adrian Bunk | 3ee6f61 | 2006-12-06 20:40:23 -0800 | [diff] [blame] | 56 | static __be32 * |
Chuck Lever | ee1a95b | 2007-11-01 16:56:58 -0400 | [diff] [blame] | 57 | decode_filename(__be32 *p, char **namp, unsigned int *lenp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | { |
| 59 | char *name; |
Chuck Lever | ee1a95b | 2007-11-01 16:56:58 -0400 | [diff] [blame] | 60 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXNAMLEN)) != NULL) { |
| 63 | for (i = 0, name = *namp; i < *lenp; i++, name++) { |
| 64 | if (*name == '\0' || *name == '/') |
| 65 | return NULL; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | return p; |
| 70 | } |
| 71 | |
Adrian Bunk | 3ee6f61 | 2006-12-06 20:40:23 -0800 | [diff] [blame] | 72 | static __be32 * |
Chuck Lever | 9c7544d | 2007-11-01 16:57:14 -0400 | [diff] [blame] | 73 | decode_pathname(__be32 *p, char **namp, unsigned int *lenp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
| 75 | char *name; |
Chuck Lever | 9c7544d | 2007-11-01 16:57:14 -0400 | [diff] [blame] | 76 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
| 78 | if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXPATHLEN)) != NULL) { |
| 79 | for (i = 0, name = *namp; i < *lenp; i++, name++) { |
| 80 | if (*name == '\0') |
| 81 | return NULL; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | return p; |
| 86 | } |
| 87 | |
Adrian Bunk | 3ee6f61 | 2006-12-06 20:40:23 -0800 | [diff] [blame] | 88 | static __be32 * |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 89 | decode_sattr(__be32 *p, struct iattr *iap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { |
| 91 | u32 tmp, tmp1; |
| 92 | |
| 93 | iap->ia_valid = 0; |
| 94 | |
| 95 | /* Sun client bug compatibility check: some sun clients seem to |
| 96 | * put 0xffff in the mode field when they mean 0xffffffff. |
| 97 | * Quoting the 4.4BSD nfs server code: Nah nah nah nah na nah. |
| 98 | */ |
| 99 | if ((tmp = ntohl(*p++)) != (u32)-1 && tmp != 0xffff) { |
| 100 | iap->ia_valid |= ATTR_MODE; |
| 101 | iap->ia_mode = tmp; |
| 102 | } |
| 103 | if ((tmp = ntohl(*p++)) != (u32)-1) { |
| 104 | iap->ia_valid |= ATTR_UID; |
| 105 | iap->ia_uid = tmp; |
| 106 | } |
| 107 | if ((tmp = ntohl(*p++)) != (u32)-1) { |
| 108 | iap->ia_valid |= ATTR_GID; |
| 109 | iap->ia_gid = tmp; |
| 110 | } |
| 111 | if ((tmp = ntohl(*p++)) != (u32)-1) { |
| 112 | iap->ia_valid |= ATTR_SIZE; |
| 113 | iap->ia_size = tmp; |
| 114 | } |
| 115 | tmp = ntohl(*p++); tmp1 = ntohl(*p++); |
| 116 | if (tmp != (u32)-1 && tmp1 != (u32)-1) { |
| 117 | iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET; |
| 118 | iap->ia_atime.tv_sec = tmp; |
| 119 | iap->ia_atime.tv_nsec = tmp1 * 1000; |
| 120 | } |
| 121 | tmp = ntohl(*p++); tmp1 = ntohl(*p++); |
| 122 | if (tmp != (u32)-1 && tmp1 != (u32)-1) { |
| 123 | iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET; |
| 124 | iap->ia_mtime.tv_sec = tmp; |
| 125 | iap->ia_mtime.tv_nsec = tmp1 * 1000; |
| 126 | /* |
| 127 | * Passing the invalid value useconds=1000000 for mtime |
| 128 | * is a Sun convention for "set both mtime and atime to |
| 129 | * current server time". It's needed to make permissions |
| 130 | * checks for the "touch" program across v2 mounts to |
| 131 | * Solaris and Irix boxes work correctly. See description of |
| 132 | * sattr in section 6.1 of "NFS Illustrated" by |
| 133 | * Brent Callaghan, Addison-Wesley, ISBN 0-201-32750-5 |
| 134 | */ |
| 135 | if (tmp1 == 1000000) |
| 136 | iap->ia_valid &= ~(ATTR_ATIME_SET|ATTR_MTIME_SET); |
| 137 | } |
| 138 | return p; |
| 139 | } |
| 140 | |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 141 | static __be32 * |
| 142 | encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 143 | struct kstat *stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | struct dentry *dentry = fhp->fh_dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | int type; |
| 147 | struct timespec time; |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 148 | u32 f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 150 | type = (stat->mode & S_IFMT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | *p++ = htonl(nfs_ftypes[type >> 12]); |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 153 | *p++ = htonl((u32) stat->mode); |
| 154 | *p++ = htonl((u32) stat->nlink); |
| 155 | *p++ = htonl((u32) nfsd_ruid(rqstp, stat->uid)); |
| 156 | *p++ = htonl((u32) nfsd_rgid(rqstp, stat->gid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 158 | if (S_ISLNK(type) && stat->size > NFS_MAXPATHLEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | *p++ = htonl(NFS_MAXPATHLEN); |
| 160 | } else { |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 161 | *p++ = htonl((u32) stat->size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 163 | *p++ = htonl((u32) stat->blksize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | if (S_ISCHR(type) || S_ISBLK(type)) |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 165 | *p++ = htonl(new_encode_dev(stat->rdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | else |
| 167 | *p++ = htonl(0xffffffff); |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 168 | *p++ = htonl((u32) stat->blocks); |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 169 | switch (fsid_source(fhp)) { |
| 170 | default: |
| 171 | case FSIDSOURCE_DEV: |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 172 | *p++ = htonl(new_encode_dev(stat->dev)); |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 173 | break; |
| 174 | case FSIDSOURCE_FSID: |
| 175 | *p++ = htonl((u32) fhp->fh_export->ex_fsid); |
| 176 | break; |
| 177 | case FSIDSOURCE_UUID: |
| 178 | f = ((u32*)fhp->fh_export->ex_uuid)[0]; |
| 179 | f ^= ((u32*)fhp->fh_export->ex_uuid)[1]; |
| 180 | f ^= ((u32*)fhp->fh_export->ex_uuid)[2]; |
| 181 | f ^= ((u32*)fhp->fh_export->ex_uuid)[3]; |
| 182 | *p++ = htonl(f); |
| 183 | break; |
| 184 | } |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 185 | *p++ = htonl((u32) stat->ino); |
| 186 | *p++ = htonl((u32) stat->atime.tv_sec); |
| 187 | *p++ = htonl(stat->atime.tv_nsec ? stat->atime.tv_nsec / 1000 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | lease_get_mtime(dentry->d_inode, &time); |
| 189 | *p++ = htonl((u32) time.tv_sec); |
| 190 | *p++ = htonl(time.tv_nsec ? time.tv_nsec / 1000 : 0); |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 191 | *p++ = htonl((u32) stat->ctime.tv_sec); |
| 192 | *p++ = htonl(stat->ctime.tv_nsec ? stat->ctime.tv_nsec / 1000 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
| 194 | return p; |
| 195 | } |
| 196 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 197 | /* Helper function for NFSv2 ACL code */ |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame^] | 198 | __be32 *nfs2svc_encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, struct kstat *stat) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 199 | { |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame^] | 200 | return encode_fattr(rqstp, p, fhp, stat); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 201 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
| 203 | /* |
| 204 | * XDR decode functions |
| 205 | */ |
| 206 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 207 | nfssvc_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | { |
| 209 | return xdr_argsize_check(rqstp, p); |
| 210 | } |
| 211 | |
| 212 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 213 | nfssvc_decode_fhandle(struct svc_rqst *rqstp, __be32 *p, struct nfsd_fhandle *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
| 215 | if (!(p = decode_fh(p, &args->fh))) |
| 216 | return 0; |
| 217 | return xdr_argsize_check(rqstp, p); |
| 218 | } |
| 219 | |
| 220 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 221 | nfssvc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | struct nfsd_sattrargs *args) |
| 223 | { |
NeilBrown | 072f62e | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 224 | p = decode_fh(p, &args->fh); |
| 225 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return 0; |
NeilBrown | 072f62e | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 227 | p = decode_sattr(p, &args->attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
| 229 | return xdr_argsize_check(rqstp, p); |
| 230 | } |
| 231 | |
| 232 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 233 | nfssvc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | struct nfsd_diropargs *args) |
| 235 | { |
| 236 | if (!(p = decode_fh(p, &args->fh)) |
| 237 | || !(p = decode_filename(p, &args->name, &args->len))) |
| 238 | return 0; |
| 239 | |
| 240 | return xdr_argsize_check(rqstp, p); |
| 241 | } |
| 242 | |
| 243 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 244 | nfssvc_decode_readargs(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | struct nfsd_readargs *args) |
| 246 | { |
| 247 | unsigned int len; |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 248 | int v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | if (!(p = decode_fh(p, &args->fh))) |
| 250 | return 0; |
| 251 | |
| 252 | args->offset = ntohl(*p++); |
| 253 | len = args->count = ntohl(*p++); |
| 254 | p++; /* totalcount - unused */ |
| 255 | |
Greg Banks | 7adae48 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 256 | if (len > NFSSVC_MAXBLKSIZE_V2) |
| 257 | len = NFSSVC_MAXBLKSIZE_V2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
| 259 | /* set up somewhere to store response. |
| 260 | * We take pages, put them on reslist and include in iovec |
| 261 | */ |
| 262 | v=0; |
| 263 | while (len > 0) { |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 264 | struct page *p = *(rqstp->rq_next_page++); |
| 265 | |
| 266 | rqstp->rq_vec[v].iov_base = page_address(p); |
NeilBrown | 3cc03b1 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 267 | rqstp->rq_vec[v].iov_len = len < PAGE_SIZE?len:PAGE_SIZE; |
| 268 | len -= rqstp->rq_vec[v].iov_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | v++; |
| 270 | } |
| 271 | args->vlen = v; |
| 272 | return xdr_argsize_check(rqstp, p); |
| 273 | } |
| 274 | |
| 275 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 276 | nfssvc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | struct nfsd_writeargs *args) |
| 278 | { |
Peter Staubach | f34b956 | 2007-05-09 02:34:48 -0700 | [diff] [blame] | 279 | unsigned int len, hdr, dlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | int v; |
Peter Staubach | f34b956 | 2007-05-09 02:34:48 -0700 | [diff] [blame] | 281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | if (!(p = decode_fh(p, &args->fh))) |
| 283 | return 0; |
| 284 | |
| 285 | p++; /* beginoffset */ |
| 286 | args->offset = ntohl(*p++); /* offset */ |
| 287 | p++; /* totalcount */ |
| 288 | len = args->len = ntohl(*p++); |
Peter Staubach | f34b956 | 2007-05-09 02:34:48 -0700 | [diff] [blame] | 289 | /* |
| 290 | * The protocol specifies a maximum of 8192 bytes. |
| 291 | */ |
Greg Banks | 7adae48 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 292 | if (len > NFSSVC_MAXBLKSIZE_V2) |
Peter Staubach | f34b956 | 2007-05-09 02:34:48 -0700 | [diff] [blame] | 293 | return 0; |
| 294 | |
| 295 | /* |
| 296 | * Check to make sure that we got the right number of |
| 297 | * bytes. |
Peter Staubach | f34b956 | 2007-05-09 02:34:48 -0700 | [diff] [blame] | 298 | */ |
| 299 | hdr = (void*)p - rqstp->rq_arg.head[0].iov_base; |
NeilBrown | 072f62e | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 300 | dlen = rqstp->rq_arg.head[0].iov_len + rqstp->rq_arg.page_len |
| 301 | - hdr; |
| 302 | |
Peter Staubach | f34b956 | 2007-05-09 02:34:48 -0700 | [diff] [blame] | 303 | /* |
| 304 | * Round the length of the data which was specified up to |
| 305 | * the next multiple of XDR units and then compare that |
| 306 | * against the length which was actually received. |
NeilBrown | ba67a39 | 2008-01-11 17:06:52 -0500 | [diff] [blame] | 307 | * Note that when RPCSEC/GSS (for example) is used, the |
| 308 | * data buffer can be padded so dlen might be larger |
| 309 | * than required. It must never be smaller. |
Peter Staubach | f34b956 | 2007-05-09 02:34:48 -0700 | [diff] [blame] | 310 | */ |
NeilBrown | ba67a39 | 2008-01-11 17:06:52 -0500 | [diff] [blame] | 311 | if (dlen < XDR_QUADLEN(len)*4) |
Peter Staubach | f34b956 | 2007-05-09 02:34:48 -0700 | [diff] [blame] | 312 | return 0; |
| 313 | |
| 314 | rqstp->rq_vec[0].iov_base = (void*)p; |
| 315 | rqstp->rq_vec[0].iov_len = rqstp->rq_arg.head[0].iov_len - hdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | v = 0; |
NeilBrown | 3cc03b1 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 317 | while (len > rqstp->rq_vec[v].iov_len) { |
| 318 | len -= rqstp->rq_vec[v].iov_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | v++; |
NeilBrown | 3cc03b1 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 320 | rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_pages[v]); |
| 321 | rqstp->rq_vec[v].iov_len = PAGE_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
NeilBrown | 3cc03b1 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 323 | rqstp->rq_vec[v].iov_len = len; |
Peter Staubach | f34b956 | 2007-05-09 02:34:48 -0700 | [diff] [blame] | 324 | args->vlen = v + 1; |
| 325 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 329 | nfssvc_decode_createargs(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | struct nfsd_createargs *args) |
| 331 | { |
NeilBrown | 072f62e | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 332 | if ( !(p = decode_fh(p, &args->fh)) |
| 333 | || !(p = decode_filename(p, &args->name, &args->len))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | return 0; |
NeilBrown | 072f62e | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 335 | p = decode_sattr(p, &args->attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
| 337 | return xdr_argsize_check(rqstp, p); |
| 338 | } |
| 339 | |
| 340 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 341 | nfssvc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | struct nfsd_renameargs *args) |
| 343 | { |
| 344 | if (!(p = decode_fh(p, &args->ffh)) |
| 345 | || !(p = decode_filename(p, &args->fname, &args->flen)) |
| 346 | || !(p = decode_fh(p, &args->tfh)) |
| 347 | || !(p = decode_filename(p, &args->tname, &args->tlen))) |
| 348 | return 0; |
| 349 | |
| 350 | return xdr_argsize_check(rqstp, p); |
| 351 | } |
| 352 | |
| 353 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 354 | nfssvc_decode_readlinkargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd_readlinkargs *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | { |
| 356 | if (!(p = decode_fh(p, &args->fh))) |
| 357 | return 0; |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 358 | args->buffer = page_address(*(rqstp->rq_next_page++)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
| 360 | return xdr_argsize_check(rqstp, p); |
| 361 | } |
| 362 | |
| 363 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 364 | nfssvc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | struct nfsd_linkargs *args) |
| 366 | { |
| 367 | if (!(p = decode_fh(p, &args->ffh)) |
| 368 | || !(p = decode_fh(p, &args->tfh)) |
| 369 | || !(p = decode_filename(p, &args->tname, &args->tlen))) |
| 370 | return 0; |
| 371 | |
| 372 | return xdr_argsize_check(rqstp, p); |
| 373 | } |
| 374 | |
| 375 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 376 | nfssvc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | struct nfsd_symlinkargs *args) |
| 378 | { |
NeilBrown | 072f62e | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 379 | if ( !(p = decode_fh(p, &args->ffh)) |
| 380 | || !(p = decode_filename(p, &args->fname, &args->flen)) |
| 381 | || !(p = decode_pathname(p, &args->tname, &args->tlen))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | return 0; |
NeilBrown | 072f62e | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 383 | p = decode_sattr(p, &args->attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
| 385 | return xdr_argsize_check(rqstp, p); |
| 386 | } |
| 387 | |
| 388 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 389 | nfssvc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | struct nfsd_readdirargs *args) |
| 391 | { |
| 392 | if (!(p = decode_fh(p, &args->fh))) |
| 393 | return 0; |
| 394 | args->cookie = ntohl(*p++); |
| 395 | args->count = ntohl(*p++); |
| 396 | if (args->count > PAGE_SIZE) |
| 397 | args->count = PAGE_SIZE; |
| 398 | |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 399 | args->buffer = page_address(*(rqstp->rq_next_page++)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
| 401 | return xdr_argsize_check(rqstp, p); |
| 402 | } |
| 403 | |
| 404 | /* |
| 405 | * XDR encode functions |
| 406 | */ |
| 407 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 408 | nfssvc_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | { |
| 410 | return xdr_ressize_check(rqstp, p); |
| 411 | } |
| 412 | |
| 413 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 414 | nfssvc_encode_attrstat(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | struct nfsd_attrstat *resp) |
| 416 | { |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 417 | p = encode_fattr(rqstp, p, &resp->fh, &resp->stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | return xdr_ressize_check(rqstp, p); |
| 419 | } |
| 420 | |
| 421 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 422 | nfssvc_encode_diropres(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | struct nfsd_diropres *resp) |
| 424 | { |
| 425 | p = encode_fh(p, &resp->fh); |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 426 | p = encode_fattr(rqstp, p, &resp->fh, &resp->stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | return xdr_ressize_check(rqstp, p); |
| 428 | } |
| 429 | |
| 430 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 431 | nfssvc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | struct nfsd_readlinkres *resp) |
| 433 | { |
| 434 | *p++ = htonl(resp->len); |
| 435 | xdr_ressize_check(rqstp, p); |
| 436 | rqstp->rq_res.page_len = resp->len; |
| 437 | if (resp->len & 3) { |
| 438 | /* need to pad the tail */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | rqstp->rq_res.tail[0].iov_base = p; |
| 440 | *p = 0; |
| 441 | rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3); |
| 442 | } |
| 443 | return 1; |
| 444 | } |
| 445 | |
| 446 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 447 | nfssvc_encode_readres(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | struct nfsd_readres *resp) |
| 449 | { |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 450 | p = encode_fattr(rqstp, p, &resp->fh, &resp->stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | *p++ = htonl(resp->count); |
| 452 | xdr_ressize_check(rqstp, p); |
| 453 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 454 | /* now update rqstp->rq_res to reflect data as well */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | rqstp->rq_res.page_len = resp->count; |
| 456 | if (resp->count & 3) { |
| 457 | /* need to pad the tail */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | rqstp->rq_res.tail[0].iov_base = p; |
| 459 | *p = 0; |
| 460 | rqstp->rq_res.tail[0].iov_len = 4 - (resp->count&3); |
| 461 | } |
| 462 | return 1; |
| 463 | } |
| 464 | |
| 465 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 466 | nfssvc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | struct nfsd_readdirres *resp) |
| 468 | { |
| 469 | xdr_ressize_check(rqstp, p); |
| 470 | p = resp->buffer; |
| 471 | *p++ = 0; /* no more entries */ |
| 472 | *p++ = htonl((resp->common.err == nfserr_eof)); |
| 473 | rqstp->rq_res.page_len = (((unsigned long)p-1) & ~PAGE_MASK)+1; |
| 474 | |
| 475 | return 1; |
| 476 | } |
| 477 | |
| 478 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 479 | nfssvc_encode_statfsres(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | struct nfsd_statfsres *resp) |
| 481 | { |
| 482 | struct kstatfs *stat = &resp->stats; |
| 483 | |
Greg Banks | 7adae48 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 484 | *p++ = htonl(NFSSVC_MAXBLKSIZE_V2); /* max transfer size */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | *p++ = htonl(stat->f_bsize); |
| 486 | *p++ = htonl(stat->f_blocks); |
| 487 | *p++ = htonl(stat->f_bfree); |
| 488 | *p++ = htonl(stat->f_bavail); |
| 489 | return xdr_ressize_check(rqstp, p); |
| 490 | } |
| 491 | |
| 492 | int |
NeilBrown | a0ad13e | 2007-01-26 00:57:10 -0800 | [diff] [blame] | 493 | nfssvc_encode_entry(void *ccdv, const char *name, |
| 494 | int namlen, loff_t offset, u64 ino, unsigned int d_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | { |
NeilBrown | a0ad13e | 2007-01-26 00:57:10 -0800 | [diff] [blame] | 496 | struct readdir_cd *ccd = ccdv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | struct nfsd_readdirres *cd = container_of(ccd, struct nfsd_readdirres, common); |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 498 | __be32 *p = cd->buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | int buflen, slen; |
| 500 | |
| 501 | /* |
| 502 | dprintk("nfsd: entry(%.*s off %ld ino %ld)\n", |
| 503 | namlen, name, offset, ino); |
| 504 | */ |
| 505 | |
| 506 | if (offset > ~((u32) 0)) { |
| 507 | cd->common.err = nfserr_fbig; |
| 508 | return -EINVAL; |
| 509 | } |
| 510 | if (cd->offset) |
| 511 | *cd->offset = htonl(offset); |
| 512 | if (namlen > NFS2_MAXNAMLEN) |
| 513 | namlen = NFS2_MAXNAMLEN;/* truncate filename */ |
| 514 | |
| 515 | slen = XDR_QUADLEN(namlen); |
| 516 | if ((buflen = cd->buflen - slen - 4) < 0) { |
| 517 | cd->common.err = nfserr_toosmall; |
| 518 | return -EINVAL; |
| 519 | } |
Peter Staubach | 40ee5dc | 2007-08-16 12:10:07 -0400 | [diff] [blame] | 520 | if (ino > ~((u32) 0)) { |
| 521 | cd->common.err = nfserr_fbig; |
| 522 | return -EINVAL; |
| 523 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | *p++ = xdr_one; /* mark entry present */ |
| 525 | *p++ = htonl((u32) ino); /* file id */ |
| 526 | p = xdr_encode_array(p, name, namlen);/* name length & name */ |
| 527 | cd->offset = p; /* remember pointer */ |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 528 | *p++ = htonl(~0U); /* offset of next entry */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
| 530 | cd->buflen = buflen; |
| 531 | cd->buffer = p; |
| 532 | cd->common.err = nfs_ok; |
| 533 | return 0; |
| 534 | } |
| 535 | |
| 536 | /* |
| 537 | * XDR release functions |
| 538 | */ |
| 539 | int |
Al Viro | 131a21c | 2006-10-19 23:28:56 -0700 | [diff] [blame] | 540 | nfssvc_release_fhandle(struct svc_rqst *rqstp, __be32 *p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | struct nfsd_fhandle *resp) |
| 542 | { |
| 543 | fh_put(&resp->fh); |
| 544 | return 1; |
| 545 | } |