nfsxdr.c 13.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * XDR support for nfsd
 *
 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
 */

A
Al Viro 已提交
7
#include "vfs.h"
8
#include "xdr.h"
9
#include "auth.h"
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

#define NFSDDBG_FACILITY		NFSDDBG_XDR

/*
 * Mapping of S_IF* types to NFS file types
 */
static u32	nfs_ftypes[] = {
	NFNON,  NFCHR,  NFCHR, NFBAD,
	NFDIR,  NFBAD,  NFBLK, NFBAD,
	NFREG,  NFBAD,  NFLNK, NFBAD,
	NFSOCK, NFBAD,  NFLNK, NFBAD,
};


/*
 * XDR functions for basic NFS types
 */
A
Al Viro 已提交
27 28
static __be32 *
decode_fh(__be32 *p, struct svc_fh *fhp)
L
Linus Torvalds 已提交
29 30 31 32 33 34 35 36 37 38
{
	fh_init(fhp, NFS_FHSIZE);
	memcpy(&fhp->fh_handle.fh_base, p, NFS_FHSIZE);
	fhp->fh_handle.fh_size = NFS_FHSIZE;

	/* FIXME: Look up export pointer here and verify
	 * Sun Secure RPC if requested */
	return p + (NFS_FHSIZE >> 2);
}

39
/* Helper function for NFSv2 ACL code */
A
Al Viro 已提交
40
__be32 *nfs2svc_decode_fh(__be32 *p, struct svc_fh *fhp)
41 42 43 44
{
	return decode_fh(p, fhp);
}

A
Adrian Bunk 已提交
45
static __be32 *
A
Al Viro 已提交
46
encode_fh(__be32 *p, struct svc_fh *fhp)
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54 55
{
	memcpy(p, &fhp->fh_handle.fh_base, NFS_FHSIZE);
	return p + (NFS_FHSIZE>> 2);
}

/*
 * Decode a file name and make sure that the path contains
 * no slashes or null bytes.
 */
A
Adrian Bunk 已提交
56
static __be32 *
57
decode_filename(__be32 *p, char **namp, unsigned int *lenp)
L
Linus Torvalds 已提交
58 59
{
	char		*name;
60
	unsigned int	i;
L
Linus Torvalds 已提交
61 62 63 64 65 66 67 68 69 70 71

	if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXNAMLEN)) != NULL) {
		for (i = 0, name = *namp; i < *lenp; i++, name++) {
			if (*name == '\0' || *name == '/')
				return NULL;
		}
	}

	return p;
}

A
Adrian Bunk 已提交
72
static __be32 *
73
decode_pathname(__be32 *p, char **namp, unsigned int *lenp)
L
Linus Torvalds 已提交
74 75
{
	char		*name;
76
	unsigned int	i;
L
Linus Torvalds 已提交
77 78 79 80 81 82 83 84 85 86 87

	if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXPATHLEN)) != NULL) {
		for (i = 0, name = *namp; i < *lenp; i++, name++) {
			if (*name == '\0')
				return NULL;
		}
	}

	return p;
}

A
Adrian Bunk 已提交
88
static __be32 *
A
Al Viro 已提交
89
decode_sattr(__be32 *p, struct iattr *iap)
L
Linus Torvalds 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103
{
	u32	tmp, tmp1;

	iap->ia_valid = 0;

	/* Sun client bug compatibility check: some sun clients seem to
	 * put 0xffff in the mode field when they mean 0xffffffff.
	 * Quoting the 4.4BSD nfs server code: Nah nah nah nah na nah.
	 */
	if ((tmp = ntohl(*p++)) != (u32)-1 && tmp != 0xffff) {
		iap->ia_valid |= ATTR_MODE;
		iap->ia_mode = tmp;
	}
	if ((tmp = ntohl(*p++)) != (u32)-1) {
104 105 106
		iap->ia_uid = make_kuid(&init_user_ns, tmp);
		if (uid_valid(iap->ia_uid))
			iap->ia_valid |= ATTR_UID;
L
Linus Torvalds 已提交
107 108
	}
	if ((tmp = ntohl(*p++)) != (u32)-1) {
109 110 111
		iap->ia_gid = make_kgid(&init_user_ns, tmp);
		if (gid_valid(iap->ia_gid))
			iap->ia_valid |= ATTR_GID;
L
Linus Torvalds 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
	}
	if ((tmp = ntohl(*p++)) != (u32)-1) {
		iap->ia_valid |= ATTR_SIZE;
		iap->ia_size = tmp;
	}
	tmp  = ntohl(*p++); tmp1 = ntohl(*p++);
	if (tmp != (u32)-1 && tmp1 != (u32)-1) {
		iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
		iap->ia_atime.tv_sec = tmp;
		iap->ia_atime.tv_nsec = tmp1 * 1000; 
	}
	tmp  = ntohl(*p++); tmp1 = ntohl(*p++);
	if (tmp != (u32)-1 && tmp1 != (u32)-1) {
		iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
		iap->ia_mtime.tv_sec = tmp;
		iap->ia_mtime.tv_nsec = tmp1 * 1000; 
		/*
		 * Passing the invalid value useconds=1000000 for mtime
		 * is a Sun convention for "set both mtime and atime to
		 * current server time".  It's needed to make permissions
		 * checks for the "touch" program across v2 mounts to
		 * Solaris and Irix boxes work correctly. See description of
		 * sattr in section 6.1 of "NFS Illustrated" by
		 * Brent Callaghan, Addison-Wesley, ISBN 0-201-32750-5
		 */
		if (tmp1 == 1000000)
			iap->ia_valid &= ~(ATTR_ATIME_SET|ATTR_MTIME_SET);
	}
	return p;
}

A
Al Viro 已提交
143 144
static __be32 *
encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp,
145
	     struct kstat *stat)
L
Linus Torvalds 已提交
146 147 148 149
{
	struct dentry	*dentry = fhp->fh_dentry;
	int type;
	struct timespec time;
150
	u32 f;
L
Linus Torvalds 已提交
151

152
	type = (stat->mode & S_IFMT);
L
Linus Torvalds 已提交
153 154

	*p++ = htonl(nfs_ftypes[type >> 12]);
155
	*p++ = htonl((u32) stat->mode);
156
	*p++ = htonl((u32) stat->nlink);
157 158
	*p++ = htonl((u32) from_kuid(&init_user_ns, stat->uid));
	*p++ = htonl((u32) from_kgid(&init_user_ns, stat->gid));
L
Linus Torvalds 已提交
159

160
	if (S_ISLNK(type) && stat->size > NFS_MAXPATHLEN) {
L
Linus Torvalds 已提交
161 162
		*p++ = htonl(NFS_MAXPATHLEN);
	} else {
163
		*p++ = htonl((u32) stat->size);
L
Linus Torvalds 已提交
164
	}
165
	*p++ = htonl((u32) stat->blksize);
L
Linus Torvalds 已提交
166
	if (S_ISCHR(type) || S_ISBLK(type))
167
		*p++ = htonl(new_encode_dev(stat->rdev));
L
Linus Torvalds 已提交
168 169
	else
		*p++ = htonl(0xffffffff);
170
	*p++ = htonl((u32) stat->blocks);
171 172 173
	switch (fsid_source(fhp)) {
	default:
	case FSIDSOURCE_DEV:
174
		*p++ = htonl(new_encode_dev(stat->dev));
175 176 177 178 179 180 181 182 183 184 185 186
		break;
	case FSIDSOURCE_FSID:
		*p++ = htonl((u32) fhp->fh_export->ex_fsid);
		break;
	case FSIDSOURCE_UUID:
		f = ((u32*)fhp->fh_export->ex_uuid)[0];
		f ^= ((u32*)fhp->fh_export->ex_uuid)[1];
		f ^= ((u32*)fhp->fh_export->ex_uuid)[2];
		f ^= ((u32*)fhp->fh_export->ex_uuid)[3];
		*p++ = htonl(f);
		break;
	}
187 188 189
	*p++ = htonl((u32) stat->ino);
	*p++ = htonl((u32) stat->atime.tv_sec);
	*p++ = htonl(stat->atime.tv_nsec ? stat->atime.tv_nsec / 1000 : 0);
190
	lease_get_mtime(d_inode(dentry), &time); 
L
Linus Torvalds 已提交
191 192
	*p++ = htonl((u32) time.tv_sec);
	*p++ = htonl(time.tv_nsec ? time.tv_nsec / 1000 : 0); 
193 194
	*p++ = htonl((u32) stat->ctime.tv_sec);
	*p++ = htonl(stat->ctime.tv_nsec ? stat->ctime.tv_nsec / 1000 : 0);
L
Linus Torvalds 已提交
195 196 197 198

	return p;
}

199
/* Helper function for NFSv2 ACL code */
200
__be32 *nfs2svc_encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, struct kstat *stat)
201
{
202
	return encode_fattr(rqstp, p, fhp, stat);
203
}
L
Linus Torvalds 已提交
204 205 206 207 208

/*
 * XDR decode functions
 */
int
209
nfssvc_decode_void(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
210 211 212 213 214
{
	return xdr_argsize_check(rqstp, p);
}

int
215
nfssvc_decode_fhandle(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
216
{
217 218
	struct nfsd_fhandle *args = rqstp->rq_argp;

219 220
	p = decode_fh(p, &args->fh);
	if (!p)
L
Linus Torvalds 已提交
221 222 223 224 225
		return 0;
	return xdr_argsize_check(rqstp, p);
}

int
226
nfssvc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
227
{
228 229
	struct nfsd_sattrargs *args = rqstp->rq_argp;

N
NeilBrown 已提交
230 231
	p = decode_fh(p, &args->fh);
	if (!p)
L
Linus Torvalds 已提交
232
		return 0;
N
NeilBrown 已提交
233
	p = decode_sattr(p, &args->attrs);
L
Linus Torvalds 已提交
234 235 236 237 238

	return xdr_argsize_check(rqstp, p);
}

int
239
nfssvc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
240
{
241 242
	struct nfsd_diropargs *args = rqstp->rq_argp;

L
Linus Torvalds 已提交
243 244 245 246
	if (!(p = decode_fh(p, &args->fh))
	 || !(p = decode_filename(p, &args->name, &args->len)))
		return 0;

247
	return xdr_argsize_check(rqstp, p);
L
Linus Torvalds 已提交
248 249 250
}

int
251
nfssvc_decode_readargs(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
252
{
253
	struct nfsd_readargs *args = rqstp->rq_argp;
L
Linus Torvalds 已提交
254
	unsigned int len;
255
	int v;
256 257
	p = decode_fh(p, &args->fh);
	if (!p)
L
Linus Torvalds 已提交
258 259 260 261 262 263
		return 0;

	args->offset    = ntohl(*p++);
	len = args->count     = ntohl(*p++);
	p++; /* totalcount - unused */

264 265 266
	if (!xdr_argsize_check(rqstp, p))
		return 0;

267
	len = min_t(unsigned int, len, NFSSVC_MAXBLKSIZE_V2);
L
Linus Torvalds 已提交
268 269 270 271 272 273

	/* set up somewhere to store response.
	 * We take pages, put them on reslist and include in iovec
	 */
	v=0;
	while (len > 0) {
274 275 276
		struct page *p = *(rqstp->rq_next_page++);

		rqstp->rq_vec[v].iov_base = page_address(p);
277
		rqstp->rq_vec[v].iov_len = min_t(unsigned int, len, PAGE_SIZE);
278
		len -= rqstp->rq_vec[v].iov_len;
L
Linus Torvalds 已提交
279 280 281
		v++;
	}
	args->vlen = v;
282
	return 1;
L
Linus Torvalds 已提交
283 284 285
}

int
286
nfssvc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
287
{
288
	struct nfsd_writeargs *args = rqstp->rq_argp;
289
	unsigned int len, hdr, dlen;
290
	struct kvec *head = rqstp->rq_arg.head;
L
Linus Torvalds 已提交
291
	int v;
292

293 294
	p = decode_fh(p, &args->fh);
	if (!p)
L
Linus Torvalds 已提交
295 296 297 298 299 300
		return 0;

	p++;				/* beginoffset */
	args->offset = ntohl(*p++);	/* offset */
	p++;				/* totalcount */
	len = args->len = ntohl(*p++);
301 302 303
	/*
	 * The protocol specifies a maximum of 8192 bytes.
	 */
304
	if (len > NFSSVC_MAXBLKSIZE_V2)
305 306 307 308 309 310
		return 0;

	/*
	 * Check to make sure that we got the right number of
	 * bytes.
	 */
311
	hdr = (void*)p - head->iov_base;
312 313
	if (hdr > head->iov_len)
		return 0;
314
	dlen = head->iov_len + rqstp->rq_arg.page_len - hdr;
N
NeilBrown 已提交
315

316 317 318 319
	/*
	 * Round the length of the data which was specified up to
	 * the next multiple of XDR units and then compare that
	 * against the length which was actually received.
320 321 322
	 * Note that when RPCSEC/GSS (for example) is used, the
	 * data buffer can be padded so dlen might be larger
	 * than required.  It must never be smaller.
323
	 */
324
	if (dlen < XDR_QUADLEN(len)*4)
325 326 327
		return 0;

	rqstp->rq_vec[0].iov_base = (void*)p;
328
	rqstp->rq_vec[0].iov_len = head->iov_len - hdr;
L
Linus Torvalds 已提交
329
	v = 0;
330 331
	while (len > rqstp->rq_vec[v].iov_len) {
		len -= rqstp->rq_vec[v].iov_len;
L
Linus Torvalds 已提交
332
		v++;
333 334
		rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_pages[v]);
		rqstp->rq_vec[v].iov_len = PAGE_SIZE;
L
Linus Torvalds 已提交
335
	}
336
	rqstp->rq_vec[v].iov_len = len;
337 338
	args->vlen = v + 1;
	return 1;
L
Linus Torvalds 已提交
339 340 341
}

int
342
nfssvc_decode_createargs(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
343
{
344 345
	struct nfsd_createargs *args = rqstp->rq_argp;

N
NeilBrown 已提交
346 347
	if (   !(p = decode_fh(p, &args->fh))
	    || !(p = decode_filename(p, &args->name, &args->len)))
L
Linus Torvalds 已提交
348
		return 0;
N
NeilBrown 已提交
349
	p = decode_sattr(p, &args->attrs);
L
Linus Torvalds 已提交
350 351 352 353 354

	return xdr_argsize_check(rqstp, p);
}

int
355
nfssvc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
356
{
357 358
	struct nfsd_renameargs *args = rqstp->rq_argp;

L
Linus Torvalds 已提交
359 360 361 362 363 364 365 366 367 368
	if (!(p = decode_fh(p, &args->ffh))
	 || !(p = decode_filename(p, &args->fname, &args->flen))
	 || !(p = decode_fh(p, &args->tfh))
	 || !(p = decode_filename(p, &args->tname, &args->tlen)))
		return 0;

	return xdr_argsize_check(rqstp, p);
}

int
369
nfssvc_decode_readlinkargs(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
370
{
371 372
	struct nfsd_readlinkargs *args = rqstp->rq_argp;

373 374
	p = decode_fh(p, &args->fh);
	if (!p)
L
Linus Torvalds 已提交
375
		return 0;
376 377
	if (!xdr_argsize_check(rqstp, p))
		return 0;
378
	args->buffer = page_address(*(rqstp->rq_next_page++));
L
Linus Torvalds 已提交
379

380
	return 1;
L
Linus Torvalds 已提交
381 382 383
}

int
384
nfssvc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
385
{
386 387
	struct nfsd_linkargs *args = rqstp->rq_argp;

L
Linus Torvalds 已提交
388 389 390 391 392 393 394 395 396
	if (!(p = decode_fh(p, &args->ffh))
	 || !(p = decode_fh(p, &args->tfh))
	 || !(p = decode_filename(p, &args->tname, &args->tlen)))
		return 0;

	return xdr_argsize_check(rqstp, p);
}

int
397
nfssvc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
398
{
399 400
	struct nfsd_symlinkargs *args = rqstp->rq_argp;

N
NeilBrown 已提交
401 402 403
	if (   !(p = decode_fh(p, &args->ffh))
	    || !(p = decode_filename(p, &args->fname, &args->flen))
	    || !(p = decode_pathname(p, &args->tname, &args->tlen)))
L
Linus Torvalds 已提交
404
		return 0;
N
NeilBrown 已提交
405
	p = decode_sattr(p, &args->attrs);
L
Linus Torvalds 已提交
406 407 408 409 410

	return xdr_argsize_check(rqstp, p);
}

int
411
nfssvc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
412
{
413 414
	struct nfsd_readdirargs *args = rqstp->rq_argp;

415 416
	p = decode_fh(p, &args->fh);
	if (!p)
L
Linus Torvalds 已提交
417 418 419
		return 0;
	args->cookie = ntohl(*p++);
	args->count  = ntohl(*p++);
420
	args->count  = min_t(u32, args->count, PAGE_SIZE);
421 422
	if (!xdr_argsize_check(rqstp, p))
		return 0;
423
	args->buffer = page_address(*(rqstp->rq_next_page++));
L
Linus Torvalds 已提交
424

425
	return 1;
L
Linus Torvalds 已提交
426 427 428 429 430 431
}

/*
 * XDR encode functions
 */
int
432
nfssvc_encode_void(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
433 434 435 436 437
{
	return xdr_ressize_check(rqstp, p);
}

int
438
nfssvc_encode_attrstat(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
439
{
440 441
	struct nfsd_attrstat *resp = rqstp->rq_resp;

442
	p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
L
Linus Torvalds 已提交
443 444 445 446
	return xdr_ressize_check(rqstp, p);
}

int
447
nfssvc_encode_diropres(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
448
{
449 450
	struct nfsd_diropres *resp = rqstp->rq_resp;

L
Linus Torvalds 已提交
451
	p = encode_fh(p, &resp->fh);
452
	p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
L
Linus Torvalds 已提交
453 454 455 456
	return xdr_ressize_check(rqstp, p);
}

int
457
nfssvc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
458
{
459 460
	struct nfsd_readlinkres *resp = rqstp->rq_resp;

L
Linus Torvalds 已提交
461 462 463 464 465 466 467 468 469 470 471 472 473
	*p++ = htonl(resp->len);
	xdr_ressize_check(rqstp, p);
	rqstp->rq_res.page_len = resp->len;
	if (resp->len & 3) {
		/* need to pad the tail */
		rqstp->rq_res.tail[0].iov_base = p;
		*p = 0;
		rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3);
	}
	return 1;
}

int
474
nfssvc_encode_readres(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
475
{
476 477
	struct nfsd_readres *resp = rqstp->rq_resp;

478
	p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
L
Linus Torvalds 已提交
479 480 481
	*p++ = htonl(resp->count);
	xdr_ressize_check(rqstp, p);

L
Lucas De Marchi 已提交
482
	/* now update rqstp->rq_res to reflect data as well */
L
Linus Torvalds 已提交
483 484 485 486 487 488 489 490 491 492 493
	rqstp->rq_res.page_len = resp->count;
	if (resp->count & 3) {
		/* need to pad the tail */
		rqstp->rq_res.tail[0].iov_base = p;
		*p = 0;
		rqstp->rq_res.tail[0].iov_len = 4 - (resp->count&3);
	}
	return 1;
}

int
494
nfssvc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
495
{
496 497
	struct nfsd_readdirres *resp = rqstp->rq_resp;

L
Linus Torvalds 已提交
498 499 500 501 502 503 504 505 506 507
	xdr_ressize_check(rqstp, p);
	p = resp->buffer;
	*p++ = 0;			/* no more entries */
	*p++ = htonl((resp->common.err == nfserr_eof));
	rqstp->rq_res.page_len = (((unsigned long)p-1) & ~PAGE_MASK)+1;

	return 1;
}

int
508
nfssvc_encode_statfsres(struct svc_rqst *rqstp, __be32 *p)
L
Linus Torvalds 已提交
509
{
510
	struct nfsd_statfsres *resp = rqstp->rq_resp;
L
Linus Torvalds 已提交
511 512
	struct kstatfs	*stat = &resp->stats;

513
	*p++ = htonl(NFSSVC_MAXBLKSIZE_V2);	/* max transfer size */
L
Linus Torvalds 已提交
514 515 516 517 518 519 520 521
	*p++ = htonl(stat->f_bsize);
	*p++ = htonl(stat->f_blocks);
	*p++ = htonl(stat->f_bfree);
	*p++ = htonl(stat->f_bavail);
	return xdr_ressize_check(rqstp, p);
}

int
522 523
nfssvc_encode_entry(void *ccdv, const char *name,
		    int namlen, loff_t offset, u64 ino, unsigned int d_type)
L
Linus Torvalds 已提交
524
{
525
	struct readdir_cd *ccd = ccdv;
L
Linus Torvalds 已提交
526
	struct nfsd_readdirres *cd = container_of(ccd, struct nfsd_readdirres, common);
A
Al Viro 已提交
527
	__be32	*p = cd->buffer;
L
Linus Torvalds 已提交
528 529 530 531 532 533 534 535 536 537 538 539 540 541
	int	buflen, slen;

	/*
	dprintk("nfsd: entry(%.*s off %ld ino %ld)\n",
			namlen, name, offset, ino);
	 */

	if (offset > ~((u32) 0)) {
		cd->common.err = nfserr_fbig;
		return -EINVAL;
	}
	if (cd->offset)
		*cd->offset = htonl(offset);

542 543
	/* truncate filename */
	namlen = min(namlen, NFS2_MAXNAMLEN);
L
Linus Torvalds 已提交
544
	slen = XDR_QUADLEN(namlen);
545

L
Linus Torvalds 已提交
546 547 548 549
	if ((buflen = cd->buflen - slen - 4) < 0) {
		cd->common.err = nfserr_toosmall;
		return -EINVAL;
	}
550 551 552 553
	if (ino > ~((u32) 0)) {
		cd->common.err = nfserr_fbig;
		return -EINVAL;
	}
L
Linus Torvalds 已提交
554 555 556 557
	*p++ = xdr_one;				/* mark entry present */
	*p++ = htonl((u32) ino);		/* file id */
	p    = xdr_encode_array(p, name, namlen);/* name length & name */
	cd->offset = p;			/* remember pointer */
A
Al Viro 已提交
558
	*p++ = htonl(~0U);		/* offset of next entry */
L
Linus Torvalds 已提交
559 560 561 562 563 564 565 566 567 568

	cd->buflen = buflen;
	cd->buffer = p;
	cd->common.err = nfs_ok;
	return 0;
}

/*
 * XDR release functions
 */
569 570
void
nfssvc_release_fhandle(struct svc_rqst *rqstp)
L
Linus Torvalds 已提交
571
{
572 573
	struct nfsd_fhandle *resp = rqstp->rq_resp;

L
Linus Torvalds 已提交
574 575
	fh_put(&resp->fh);
}