The NFSv2/NFSv3 server does not handle zero length WRITE requests correctly
[linux-2.6/verdex.git] / fs / nfsd / nfsxdr.c
blob6035e03655c68d44fe73005caea8d5146cda5c0a
1 /*
2 * linux/fs/nfsd/nfsxdr.c
4 * XDR support for nfsd
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
7 */
9 #include <linux/types.h>
10 #include <linux/time.h>
11 #include <linux/nfs.h>
12 #include <linux/vfs.h>
13 #include <linux/sunrpc/xdr.h>
14 #include <linux/sunrpc/svc.h>
15 #include <linux/nfsd/nfsd.h>
16 #include <linux/nfsd/xdr.h>
17 #include <linux/mm.h>
19 #define NFSDDBG_FACILITY NFSDDBG_XDR
22 * Mapping of S_IF* types to NFS file types
24 static u32 nfs_ftypes[] = {
25 NFNON, NFCHR, NFCHR, NFBAD,
26 NFDIR, NFBAD, NFBLK, NFBAD,
27 NFREG, NFBAD, NFLNK, NFBAD,
28 NFSOCK, NFBAD, NFLNK, NFBAD,
33 * XDR functions for basic NFS types
35 static __be32 *
36 decode_fh(__be32 *p, struct svc_fh *fhp)
38 fh_init(fhp, NFS_FHSIZE);
39 memcpy(&fhp->fh_handle.fh_base, p, NFS_FHSIZE);
40 fhp->fh_handle.fh_size = NFS_FHSIZE;
42 /* FIXME: Look up export pointer here and verify
43 * Sun Secure RPC if requested */
44 return p + (NFS_FHSIZE >> 2);
47 /* Helper function for NFSv2 ACL code */
48 __be32 *nfs2svc_decode_fh(__be32 *p, struct svc_fh *fhp)
50 return decode_fh(p, fhp);
53 static __be32 *
54 encode_fh(__be32 *p, struct svc_fh *fhp)
56 memcpy(p, &fhp->fh_handle.fh_base, NFS_FHSIZE);
57 return p + (NFS_FHSIZE>> 2);
61 * Decode a file name and make sure that the path contains
62 * no slashes or null bytes.
64 static __be32 *
65 decode_filename(__be32 *p, char **namp, int *lenp)
67 char *name;
68 int i;
70 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXNAMLEN)) != NULL) {
71 for (i = 0, name = *namp; i < *lenp; i++, name++) {
72 if (*name == '\0' || *name == '/')
73 return NULL;
77 return p;
80 static __be32 *
81 decode_pathname(__be32 *p, char **namp, int *lenp)
83 char *name;
84 int i;
86 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXPATHLEN)) != NULL) {
87 for (i = 0, name = *namp; i < *lenp; i++, name++) {
88 if (*name == '\0')
89 return NULL;
93 return p;
96 static __be32 *
97 decode_sattr(__be32 *p, struct iattr *iap)
99 u32 tmp, tmp1;
101 iap->ia_valid = 0;
103 /* Sun client bug compatibility check: some sun clients seem to
104 * put 0xffff in the mode field when they mean 0xffffffff.
105 * Quoting the 4.4BSD nfs server code: Nah nah nah nah na nah.
107 if ((tmp = ntohl(*p++)) != (u32)-1 && tmp != 0xffff) {
108 iap->ia_valid |= ATTR_MODE;
109 iap->ia_mode = tmp;
111 if ((tmp = ntohl(*p++)) != (u32)-1) {
112 iap->ia_valid |= ATTR_UID;
113 iap->ia_uid = tmp;
115 if ((tmp = ntohl(*p++)) != (u32)-1) {
116 iap->ia_valid |= ATTR_GID;
117 iap->ia_gid = tmp;
119 if ((tmp = ntohl(*p++)) != (u32)-1) {
120 iap->ia_valid |= ATTR_SIZE;
121 iap->ia_size = tmp;
123 tmp = ntohl(*p++); tmp1 = ntohl(*p++);
124 if (tmp != (u32)-1 && tmp1 != (u32)-1) {
125 iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
126 iap->ia_atime.tv_sec = tmp;
127 iap->ia_atime.tv_nsec = tmp1 * 1000;
129 tmp = ntohl(*p++); tmp1 = ntohl(*p++);
130 if (tmp != (u32)-1 && tmp1 != (u32)-1) {
131 iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
132 iap->ia_mtime.tv_sec = tmp;
133 iap->ia_mtime.tv_nsec = tmp1 * 1000;
135 * Passing the invalid value useconds=1000000 for mtime
136 * is a Sun convention for "set both mtime and atime to
137 * current server time". It's needed to make permissions
138 * checks for the "touch" program across v2 mounts to
139 * Solaris and Irix boxes work correctly. See description of
140 * sattr in section 6.1 of "NFS Illustrated" by
141 * Brent Callaghan, Addison-Wesley, ISBN 0-201-32750-5
143 if (tmp1 == 1000000)
144 iap->ia_valid &= ~(ATTR_ATIME_SET|ATTR_MTIME_SET);
146 return p;
149 static __be32 *
150 encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp,
151 struct kstat *stat)
153 struct dentry *dentry = fhp->fh_dentry;
154 int type;
155 struct timespec time;
156 u32 f;
158 type = (stat->mode & S_IFMT);
160 *p++ = htonl(nfs_ftypes[type >> 12]);
161 *p++ = htonl((u32) stat->mode);
162 *p++ = htonl((u32) stat->nlink);
163 *p++ = htonl((u32) nfsd_ruid(rqstp, stat->uid));
164 *p++ = htonl((u32) nfsd_rgid(rqstp, stat->gid));
166 if (S_ISLNK(type) && stat->size > NFS_MAXPATHLEN) {
167 *p++ = htonl(NFS_MAXPATHLEN);
168 } else {
169 *p++ = htonl((u32) stat->size);
171 *p++ = htonl((u32) stat->blksize);
172 if (S_ISCHR(type) || S_ISBLK(type))
173 *p++ = htonl(new_encode_dev(stat->rdev));
174 else
175 *p++ = htonl(0xffffffff);
176 *p++ = htonl((u32) stat->blocks);
177 switch (fsid_source(fhp)) {
178 default:
179 case FSIDSOURCE_DEV:
180 *p++ = htonl(new_encode_dev(stat->dev));
181 break;
182 case FSIDSOURCE_FSID:
183 *p++ = htonl((u32) fhp->fh_export->ex_fsid);
184 break;
185 case FSIDSOURCE_UUID:
186 f = ((u32*)fhp->fh_export->ex_uuid)[0];
187 f ^= ((u32*)fhp->fh_export->ex_uuid)[1];
188 f ^= ((u32*)fhp->fh_export->ex_uuid)[2];
189 f ^= ((u32*)fhp->fh_export->ex_uuid)[3];
190 *p++ = htonl(f);
191 break;
193 *p++ = htonl((u32) stat->ino);
194 *p++ = htonl((u32) stat->atime.tv_sec);
195 *p++ = htonl(stat->atime.tv_nsec ? stat->atime.tv_nsec / 1000 : 0);
196 lease_get_mtime(dentry->d_inode, &time);
197 *p++ = htonl((u32) time.tv_sec);
198 *p++ = htonl(time.tv_nsec ? time.tv_nsec / 1000 : 0);
199 *p++ = htonl((u32) stat->ctime.tv_sec);
200 *p++ = htonl(stat->ctime.tv_nsec ? stat->ctime.tv_nsec / 1000 : 0);
202 return p;
205 /* Helper function for NFSv2 ACL code */
206 __be32 *nfs2svc_encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
208 struct kstat stat;
209 vfs_getattr(fhp->fh_export->ex_mnt, fhp->fh_dentry, &stat);
210 return encode_fattr(rqstp, p, fhp, &stat);
214 * XDR decode functions
217 nfssvc_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
219 return xdr_argsize_check(rqstp, p);
223 nfssvc_decode_fhandle(struct svc_rqst *rqstp, __be32 *p, struct nfsd_fhandle *args)
225 if (!(p = decode_fh(p, &args->fh)))
226 return 0;
227 return xdr_argsize_check(rqstp, p);
231 nfssvc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p,
232 struct nfsd_sattrargs *args)
234 if (!(p = decode_fh(p, &args->fh))
235 || !(p = decode_sattr(p, &args->attrs)))
236 return 0;
238 return xdr_argsize_check(rqstp, p);
242 nfssvc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p,
243 struct nfsd_diropargs *args)
245 if (!(p = decode_fh(p, &args->fh))
246 || !(p = decode_filename(p, &args->name, &args->len)))
247 return 0;
249 return xdr_argsize_check(rqstp, p);
253 nfssvc_decode_readargs(struct svc_rqst *rqstp, __be32 *p,
254 struct nfsd_readargs *args)
256 unsigned int len;
257 int v,pn;
258 if (!(p = decode_fh(p, &args->fh)))
259 return 0;
261 args->offset = ntohl(*p++);
262 len = args->count = ntohl(*p++);
263 p++; /* totalcount - unused */
265 if (len > NFSSVC_MAXBLKSIZE_V2)
266 len = NFSSVC_MAXBLKSIZE_V2;
268 /* set up somewhere to store response.
269 * We take pages, put them on reslist and include in iovec
271 v=0;
272 while (len > 0) {
273 pn = rqstp->rq_resused++;
274 rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_respages[pn]);
275 rqstp->rq_vec[v].iov_len = len < PAGE_SIZE?len:PAGE_SIZE;
276 len -= rqstp->rq_vec[v].iov_len;
277 v++;
279 args->vlen = v;
280 return xdr_argsize_check(rqstp, p);
284 nfssvc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p,
285 struct nfsd_writeargs *args)
287 unsigned int len, hdr, dlen;
288 int v;
290 if (!(p = decode_fh(p, &args->fh)))
291 return 0;
293 p++; /* beginoffset */
294 args->offset = ntohl(*p++); /* offset */
295 p++; /* totalcount */
296 len = args->len = ntohl(*p++);
298 * The protocol specifies a maximum of 8192 bytes.
300 if (len > NFSSVC_MAXBLKSIZE_V2)
301 return 0;
304 * Check to make sure that we got the right number of
305 * bytes.
307 * If more than one page was used, then compute the length
308 * of the data in the request as the total size of the
309 * request minus the transport protocol headers minus the
310 * RPC protocol headers minus the NFS protocol fields
311 * already consumed. If the request fits into a single
312 * page, then compete the length of the data as the size
313 * of the NFS portion of the request minus the NFS
314 * protocol fields already consumed.
316 hdr = (void*)p - rqstp->rq_arg.head[0].iov_base;
317 if (rqstp->rq_respages != rqstp->rq_pages + 1) {
318 dlen = rqstp->rq_arg.len -
319 (PAGE_SIZE - rqstp->rq_arg.head[0].iov_len) - hdr;
320 } else {
321 dlen = rqstp->rq_arg.head[0].iov_len - hdr;
324 * Round the length of the data which was specified up to
325 * the next multiple of XDR units and then compare that
326 * against the length which was actually received.
328 if (dlen != ((len + 3) & ~0x3))
329 return 0;
331 rqstp->rq_vec[0].iov_base = (void*)p;
332 rqstp->rq_vec[0].iov_len = rqstp->rq_arg.head[0].iov_len - hdr;
333 v = 0;
334 while (len > rqstp->rq_vec[v].iov_len) {
335 len -= rqstp->rq_vec[v].iov_len;
336 v++;
337 rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_pages[v]);
338 rqstp->rq_vec[v].iov_len = PAGE_SIZE;
340 rqstp->rq_vec[v].iov_len = len;
341 args->vlen = v + 1;
342 return 1;
346 nfssvc_decode_createargs(struct svc_rqst *rqstp, __be32 *p,
347 struct nfsd_createargs *args)
349 if (!(p = decode_fh(p, &args->fh))
350 || !(p = decode_filename(p, &args->name, &args->len))
351 || !(p = decode_sattr(p, &args->attrs)))
352 return 0;
354 return xdr_argsize_check(rqstp, p);
358 nfssvc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p,
359 struct nfsd_renameargs *args)
361 if (!(p = decode_fh(p, &args->ffh))
362 || !(p = decode_filename(p, &args->fname, &args->flen))
363 || !(p = decode_fh(p, &args->tfh))
364 || !(p = decode_filename(p, &args->tname, &args->tlen)))
365 return 0;
367 return xdr_argsize_check(rqstp, p);
371 nfssvc_decode_readlinkargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd_readlinkargs *args)
373 if (!(p = decode_fh(p, &args->fh)))
374 return 0;
375 args->buffer = page_address(rqstp->rq_respages[rqstp->rq_resused++]);
377 return xdr_argsize_check(rqstp, p);
381 nfssvc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p,
382 struct nfsd_linkargs *args)
384 if (!(p = decode_fh(p, &args->ffh))
385 || !(p = decode_fh(p, &args->tfh))
386 || !(p = decode_filename(p, &args->tname, &args->tlen)))
387 return 0;
389 return xdr_argsize_check(rqstp, p);
393 nfssvc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p,
394 struct nfsd_symlinkargs *args)
396 if (!(p = decode_fh(p, &args->ffh))
397 || !(p = decode_filename(p, &args->fname, &args->flen))
398 || !(p = decode_pathname(p, &args->tname, &args->tlen))
399 || !(p = decode_sattr(p, &args->attrs)))
400 return 0;
402 return xdr_argsize_check(rqstp, p);
406 nfssvc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p,
407 struct nfsd_readdirargs *args)
409 if (!(p = decode_fh(p, &args->fh)))
410 return 0;
411 args->cookie = ntohl(*p++);
412 args->count = ntohl(*p++);
413 if (args->count > PAGE_SIZE)
414 args->count = PAGE_SIZE;
416 args->buffer = page_address(rqstp->rq_respages[rqstp->rq_resused++]);
418 return xdr_argsize_check(rqstp, p);
422 * XDR encode functions
425 nfssvc_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
427 return xdr_ressize_check(rqstp, p);
431 nfssvc_encode_attrstat(struct svc_rqst *rqstp, __be32 *p,
432 struct nfsd_attrstat *resp)
434 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
435 return xdr_ressize_check(rqstp, p);
439 nfssvc_encode_diropres(struct svc_rqst *rqstp, __be32 *p,
440 struct nfsd_diropres *resp)
442 p = encode_fh(p, &resp->fh);
443 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
444 return xdr_ressize_check(rqstp, p);
448 nfssvc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p,
449 struct nfsd_readlinkres *resp)
451 *p++ = htonl(resp->len);
452 xdr_ressize_check(rqstp, p);
453 rqstp->rq_res.page_len = resp->len;
454 if (resp->len & 3) {
455 /* need to pad the tail */
456 rqstp->rq_res.tail[0].iov_base = p;
457 *p = 0;
458 rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3);
460 return 1;
464 nfssvc_encode_readres(struct svc_rqst *rqstp, __be32 *p,
465 struct nfsd_readres *resp)
467 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
468 *p++ = htonl(resp->count);
469 xdr_ressize_check(rqstp, p);
471 /* now update rqstp->rq_res to reflect data aswell */
472 rqstp->rq_res.page_len = resp->count;
473 if (resp->count & 3) {
474 /* need to pad the tail */
475 rqstp->rq_res.tail[0].iov_base = p;
476 *p = 0;
477 rqstp->rq_res.tail[0].iov_len = 4 - (resp->count&3);
479 return 1;
483 nfssvc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p,
484 struct nfsd_readdirres *resp)
486 xdr_ressize_check(rqstp, p);
487 p = resp->buffer;
488 *p++ = 0; /* no more entries */
489 *p++ = htonl((resp->common.err == nfserr_eof));
490 rqstp->rq_res.page_len = (((unsigned long)p-1) & ~PAGE_MASK)+1;
492 return 1;
496 nfssvc_encode_statfsres(struct svc_rqst *rqstp, __be32 *p,
497 struct nfsd_statfsres *resp)
499 struct kstatfs *stat = &resp->stats;
501 *p++ = htonl(NFSSVC_MAXBLKSIZE_V2); /* max transfer size */
502 *p++ = htonl(stat->f_bsize);
503 *p++ = htonl(stat->f_blocks);
504 *p++ = htonl(stat->f_bfree);
505 *p++ = htonl(stat->f_bavail);
506 return xdr_ressize_check(rqstp, p);
510 nfssvc_encode_entry(void *ccdv, const char *name,
511 int namlen, loff_t offset, u64 ino, unsigned int d_type)
513 struct readdir_cd *ccd = ccdv;
514 struct nfsd_readdirres *cd = container_of(ccd, struct nfsd_readdirres, common);
515 __be32 *p = cd->buffer;
516 int buflen, slen;
519 dprintk("nfsd: entry(%.*s off %ld ino %ld)\n",
520 namlen, name, offset, ino);
523 if (offset > ~((u32) 0)) {
524 cd->common.err = nfserr_fbig;
525 return -EINVAL;
527 if (cd->offset)
528 *cd->offset = htonl(offset);
529 if (namlen > NFS2_MAXNAMLEN)
530 namlen = NFS2_MAXNAMLEN;/* truncate filename */
532 slen = XDR_QUADLEN(namlen);
533 if ((buflen = cd->buflen - slen - 4) < 0) {
534 cd->common.err = nfserr_toosmall;
535 return -EINVAL;
537 *p++ = xdr_one; /* mark entry present */
538 *p++ = htonl((u32) ino); /* file id */
539 p = xdr_encode_array(p, name, namlen);/* name length & name */
540 cd->offset = p; /* remember pointer */
541 *p++ = htonl(~0U); /* offset of next entry */
543 cd->buflen = buflen;
544 cd->buffer = p;
545 cd->common.err = nfs_ok;
546 return 0;
550 * XDR release functions
553 nfssvc_release_fhandle(struct svc_rqst *rqstp, __be32 *p,
554 struct nfsd_fhandle *resp)
556 fh_put(&resp->fh);
557 return 1;