nfs3xdr.c 29.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * linux/fs/nfs/nfs3xdr.c
 *
 * XDR functions to encode/decode NFSv3 RPC arguments and results.
 *
 * Copyright (C) 1996, 1997 Olaf Kirch
 */

#include <linux/param.h>
#include <linux/time.h>
#include <linux/mm.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/in.h>
#include <linux/pagemap.h>
#include <linux/proc_fs.h>
#include <linux/kdev_t.h>
#include <linux/sunrpc/clnt.h>
#include <linux/nfs.h>
#include <linux/nfs3.h>
#include <linux/nfs_fs.h>
22
#include <linux/nfsacl.h>
D
David Howells 已提交
23
#include "internal.h"
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50

#define NFSDBG_FACILITY		NFSDBG_XDR

/* Mapping from NFS error code to "errno" error code. */
#define errno_NFSERR_IO		EIO

/*
 * Declare the space requirements for NFS arguments and replies as
 * number of 32bit-words
 */
#define NFS3_fhandle_sz		(1+16)
#define NFS3_fh_sz		(NFS3_fhandle_sz)	/* shorthand */
#define NFS3_sattr_sz		(15)
#define NFS3_filename_sz	(1+(NFS3_MAXNAMLEN>>2))
#define NFS3_path_sz		(1+(NFS3_MAXPATHLEN>>2))
#define NFS3_fattr_sz		(21)
#define NFS3_wcc_attr_sz		(6)
#define NFS3_pre_op_attr_sz	(1+NFS3_wcc_attr_sz)
#define NFS3_post_op_attr_sz	(1+NFS3_fattr_sz)
#define NFS3_wcc_data_sz		(NFS3_pre_op_attr_sz+NFS3_post_op_attr_sz)
#define NFS3_fsstat_sz		
#define NFS3_fsinfo_sz		
#define NFS3_pathconf_sz		
#define NFS3_entry_sz		(NFS3_filename_sz+3)

#define NFS3_sattrargs_sz	(NFS3_fh_sz+NFS3_sattr_sz+3)
#define NFS3_diropargs_sz	(NFS3_fh_sz+NFS3_filename_sz)
51
#define NFS3_removeargs_sz	(NFS3_fh_sz+NFS3_filename_sz)
L
Linus Torvalds 已提交
52 53 54 55 56 57
#define NFS3_accessargs_sz	(NFS3_fh_sz+1)
#define NFS3_readlinkargs_sz	(NFS3_fh_sz)
#define NFS3_readargs_sz	(NFS3_fh_sz+3)
#define NFS3_writeargs_sz	(NFS3_fh_sz+5)
#define NFS3_createargs_sz	(NFS3_diropargs_sz+NFS3_sattr_sz)
#define NFS3_mkdirargs_sz	(NFS3_diropargs_sz+NFS3_sattr_sz)
58
#define NFS3_symlinkargs_sz	(NFS3_diropargs_sz+1+NFS3_sattr_sz)
L
Linus Torvalds 已提交
59 60 61 62 63 64 65 66
#define NFS3_mknodargs_sz	(NFS3_diropargs_sz+2+NFS3_sattr_sz)
#define NFS3_renameargs_sz	(NFS3_diropargs_sz+NFS3_diropargs_sz)
#define NFS3_linkargs_sz		(NFS3_fh_sz+NFS3_diropargs_sz)
#define NFS3_readdirargs_sz	(NFS3_fh_sz+2)
#define NFS3_commitargs_sz	(NFS3_fh_sz+3)

#define NFS3_attrstat_sz	(1+NFS3_fattr_sz)
#define NFS3_wccstat_sz		(1+NFS3_wcc_data_sz)
67
#define NFS3_removeres_sz	(NFS3_wccstat_sz)
L
Linus Torvalds 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81
#define NFS3_lookupres_sz	(1+NFS3_fh_sz+(2 * NFS3_post_op_attr_sz))
#define NFS3_accessres_sz	(1+NFS3_post_op_attr_sz+1)
#define NFS3_readlinkres_sz	(1+NFS3_post_op_attr_sz+1)
#define NFS3_readres_sz		(1+NFS3_post_op_attr_sz+3)
#define NFS3_writeres_sz	(1+NFS3_wcc_data_sz+4)
#define NFS3_createres_sz	(1+NFS3_fh_sz+NFS3_post_op_attr_sz+NFS3_wcc_data_sz)
#define NFS3_renameres_sz	(1+(2 * NFS3_wcc_data_sz))
#define NFS3_linkres_sz		(1+NFS3_post_op_attr_sz+NFS3_wcc_data_sz)
#define NFS3_readdirres_sz	(1+NFS3_post_op_attr_sz+2)
#define NFS3_fsstatres_sz	(1+NFS3_post_op_attr_sz+13)
#define NFS3_fsinfores_sz	(1+NFS3_post_op_attr_sz+12)
#define NFS3_pathconfres_sz	(1+NFS3_post_op_attr_sz+6)
#define NFS3_commitres_sz	(1+NFS3_wcc_data_sz+2)

82
#define ACL3_getaclargs_sz	(NFS3_fh_sz+1)
T
Trond Myklebust 已提交
83 84 85 86
#define ACL3_setaclargs_sz	(NFS3_fh_sz+1+ \
				XDR_QUADLEN(NFS_ACL_INLINE_BUFSIZE))
#define ACL3_getaclres_sz	(1+NFS3_post_op_attr_sz+1+ \
				XDR_QUADLEN(NFS_ACL_INLINE_BUFSIZE))
87 88
#define ACL3_setaclres_sz	(1+NFS3_post_op_attr_sz)

L
Linus Torvalds 已提交
89 90 91
/*
 * Map file type to S_IFMT bits
 */
92 93 94 95 96 97 98 99 100
static const umode_t nfs_type2fmt[] = {
	[NF3BAD] = 0,
	[NF3REG] = S_IFREG,
	[NF3DIR] = S_IFDIR,
	[NF3BLK] = S_IFBLK,
	[NF3CHR] = S_IFCHR,
	[NF3LNK] = S_IFLNK,
	[NF3SOCK] = S_IFSOCK,
	[NF3FIFO] = S_IFIFO,
L
Linus Torvalds 已提交
101 102
};

103 104 105 106 107 108 109
static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
{
	dprintk("nfs: %s: prematurely hit end of receive buffer. "
		"Remaining buffer length is %tu words.\n",
		func, xdr->end - xdr->p);
}

L
Linus Torvalds 已提交
110 111 112
/*
 * Common NFS XDR functions as inlines
 */
A
Al Viro 已提交
113
static inline __be32 *
114
xdr_encode_fhandle(__be32 *p, const struct nfs_fh *fh)
L
Linus Torvalds 已提交
115 116 117 118
{
	return xdr_encode_array(p, fh->data, fh->size);
}

A
Al Viro 已提交
119 120
static inline __be32 *
xdr_decode_fhandle(__be32 *p, struct nfs_fh *fh)
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128
{
	if ((fh->size = ntohl(*p++)) <= NFS3_FHSIZE) {
		memcpy(fh->data, p, fh->size);
		return p + XDR_QUADLEN(fh->size);
	}
	return NULL;
}

129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
static inline __be32 *
xdr_decode_fhandle_stream(struct xdr_stream *xdr, struct nfs_fh *fh)
{
	__be32 *p;
	p = xdr_inline_decode(xdr, 4);
	if (unlikely(!p))
		goto out_overflow;
	fh->size = ntohl(*p++);

	if (fh->size <= NFS3_FHSIZE) {
		p = xdr_inline_decode(xdr, fh->size);
		if (unlikely(!p))
			goto out_overflow;
		memcpy(fh->data, p, fh->size);
		return p + XDR_QUADLEN(fh->size);
	}
	return NULL;

out_overflow:
	print_overflow_msg(__func__, xdr);
	return ERR_PTR(-EIO);
}

L
Linus Torvalds 已提交
152 153 154
/*
 * Encode/decode time.
 */
A
Al Viro 已提交
155 156
static inline __be32 *
xdr_encode_time3(__be32 *p, struct timespec *timep)
L
Linus Torvalds 已提交
157 158 159 160 161 162
{
	*p++ = htonl(timep->tv_sec);
	*p++ = htonl(timep->tv_nsec);
	return p;
}

A
Al Viro 已提交
163 164
static inline __be32 *
xdr_decode_time3(__be32 *p, struct timespec *timep)
L
Linus Torvalds 已提交
165 166 167 168 169 170
{
	timep->tv_sec = ntohl(*p++);
	timep->tv_nsec = ntohl(*p++);
	return p;
}

A
Al Viro 已提交
171 172
static __be32 *
xdr_decode_fattr(__be32 *p, struct nfs_fattr *fattr)
L
Linus Torvalds 已提交
173 174
{
	unsigned int	type, major, minor;
175
	umode_t		fmode;
L
Linus Torvalds 已提交
176 177

	type = ntohl(*p++);
178 179 180
	if (type > NF3FIFO)
		type = NF3NON;
	fmode = nfs_type2fmt[type];
L
Linus Torvalds 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194
	fattr->mode = (ntohl(*p++) & ~S_IFMT) | fmode;
	fattr->nlink = ntohl(*p++);
	fattr->uid = ntohl(*p++);
	fattr->gid = ntohl(*p++);
	p = xdr_decode_hyper(p, &fattr->size);
	p = xdr_decode_hyper(p, &fattr->du.nfs3.used);

	/* Turn remote device info into Linux-specific dev_t */
	major = ntohl(*p++);
	minor = ntohl(*p++);
	fattr->rdev = MKDEV(major, minor);
	if (MAJOR(fattr->rdev) != major || MINOR(fattr->rdev) != minor)
		fattr->rdev = 0;

195 196
	p = xdr_decode_hyper(p, &fattr->fsid.major);
	fattr->fsid.minor = 0;
L
Linus Torvalds 已提交
197 198 199 200 201 202
	p = xdr_decode_hyper(p, &fattr->fileid);
	p = xdr_decode_time3(p, &fattr->atime);
	p = xdr_decode_time3(p, &fattr->mtime);
	p = xdr_decode_time3(p, &fattr->ctime);

	/* Update the mode bits */
203
	fattr->valid |= NFS_ATTR_FATTR_V3;
L
Linus Torvalds 已提交
204 205 206
	return p;
}

A
Al Viro 已提交
207 208
static inline __be32 *
xdr_encode_sattr(__be32 *p, struct iattr *attr)
L
Linus Torvalds 已提交
209 210 211
{
	if (attr->ia_valid & ATTR_MODE) {
		*p++ = xdr_one;
212
		*p++ = htonl(attr->ia_mode & S_IALLUGO);
L
Linus Torvalds 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
	} else {
		*p++ = xdr_zero;
	}
	if (attr->ia_valid & ATTR_UID) {
		*p++ = xdr_one;
		*p++ = htonl(attr->ia_uid);
	} else {
		*p++ = xdr_zero;
	}
	if (attr->ia_valid & ATTR_GID) {
		*p++ = xdr_one;
		*p++ = htonl(attr->ia_gid);
	} else {
		*p++ = xdr_zero;
	}
	if (attr->ia_valid & ATTR_SIZE) {
		*p++ = xdr_one;
		p = xdr_encode_hyper(p, (__u64) attr->ia_size);
	} else {
		*p++ = xdr_zero;
	}
	if (attr->ia_valid & ATTR_ATIME_SET) {
		*p++ = xdr_two;
		p = xdr_encode_time3(p, &attr->ia_atime);
	} else if (attr->ia_valid & ATTR_ATIME) {
		*p++ = xdr_one;
	} else {
		*p++ = xdr_zero;
	}
	if (attr->ia_valid & ATTR_MTIME_SET) {
		*p++ = xdr_two;
		p = xdr_encode_time3(p, &attr->ia_mtime);
	} else if (attr->ia_valid & ATTR_MTIME) {
		*p++ = xdr_one;
	} else {
		*p++ = xdr_zero;
	}
	return p;
}

A
Al Viro 已提交
253 254
static inline __be32 *
xdr_decode_wcc_attr(__be32 *p, struct nfs_fattr *fattr)
L
Linus Torvalds 已提交
255 256 257 258
{
	p = xdr_decode_hyper(p, &fattr->pre_size);
	p = xdr_decode_time3(p, &fattr->pre_mtime);
	p = xdr_decode_time3(p, &fattr->pre_ctime);
259 260 261
	fattr->valid |= NFS_ATTR_FATTR_PRESIZE
		| NFS_ATTR_FATTR_PREMTIME
		| NFS_ATTR_FATTR_PRECTIME;
L
Linus Torvalds 已提交
262 263 264
	return p;
}

A
Al Viro 已提交
265 266
static inline __be32 *
xdr_decode_post_op_attr(__be32 *p, struct nfs_fattr *fattr)
L
Linus Torvalds 已提交
267 268 269 270 271 272
{
	if (*p++)
		p = xdr_decode_fattr(p, fattr);
	return p;
}

273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
static inline __be32 *
xdr_decode_post_op_attr_stream(struct xdr_stream *xdr, struct nfs_fattr *fattr)
{
	__be32 *p;

	p = xdr_inline_decode(xdr, 4);
	if (unlikely(!p))
		goto out_overflow;
	if (ntohl(*p++)) {
		p = xdr_inline_decode(xdr, 84);
		if (unlikely(!p))
			goto out_overflow;
		p = xdr_decode_fattr(p, fattr);
	}
	return p;
out_overflow:
	print_overflow_msg(__func__, xdr);
	return ERR_PTR(-EIO);
}

A
Al Viro 已提交
293 294
static inline __be32 *
xdr_decode_pre_op_attr(__be32 *p, struct nfs_fattr *fattr)
L
Linus Torvalds 已提交
295 296 297 298 299 300 301
{
	if (*p++)
		return xdr_decode_wcc_attr(p, fattr);
	return p;
}


A
Al Viro 已提交
302 303
static inline __be32 *
xdr_decode_wcc_data(__be32 *p, struct nfs_fattr *fattr)
L
Linus Torvalds 已提交
304 305 306 307 308 309 310 311 312 313 314 315 316
{
	p = xdr_decode_pre_op_attr(p, fattr);
	return xdr_decode_post_op_attr(p, fattr);
}

/*
 * NFS encode functions
 */

/*
 * Encode file handle argument
 */
static int
A
Al Viro 已提交
317
nfs3_xdr_fhandle(struct rpc_rqst *req, __be32 *p, struct nfs_fh *fh)
L
Linus Torvalds 已提交
318 319 320 321 322 323 324 325 326 327
{
	p = xdr_encode_fhandle(p, fh);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

/*
 * Encode SETATTR arguments
 */
static int
A
Al Viro 已提交
328
nfs3_xdr_sattrargs(struct rpc_rqst *req, __be32 *p, struct nfs3_sattrargs *args)
L
Linus Torvalds 已提交
329 330 331 332 333 334 335 336 337 338 339 340 341 342
{
	p = xdr_encode_fhandle(p, args->fh);
	p = xdr_encode_sattr(p, args->sattr);
	*p++ = htonl(args->guard);
	if (args->guard)
		p = xdr_encode_time3(p, &args->guardtime);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

/*
 * Encode directory ops argument
 */
static int
A
Al Viro 已提交
343
nfs3_xdr_diropargs(struct rpc_rqst *req, __be32 *p, struct nfs3_diropargs *args)
L
Linus Torvalds 已提交
344 345 346 347 348 349 350
{
	p = xdr_encode_fhandle(p, args->fh);
	p = xdr_encode_array(p, args->name, args->len);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

351 352 353 354 355 356 357 358 359 360 361 362
/*
 * Encode REMOVE argument
 */
static int
nfs3_xdr_removeargs(struct rpc_rqst *req, __be32 *p, const struct nfs_removeargs *args)
{
	p = xdr_encode_fhandle(p, args->fh);
	p = xdr_encode_array(p, args->name.name, args->name.len);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

L
Linus Torvalds 已提交
363 364 365 366
/*
 * Encode access() argument
 */
static int
A
Al Viro 已提交
367
nfs3_xdr_accessargs(struct rpc_rqst *req, __be32 *p, struct nfs3_accessargs *args)
L
Linus Torvalds 已提交
368 369 370 371 372 373 374 375 376 377 378 379 380
{
	p = xdr_encode_fhandle(p, args->fh);
	*p++ = htonl(args->access);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

/*
 * Arguments to a READ call. Since we read data directly into the page
 * cache, we also set up the reply iovec here so that iov[1] points
 * exactly to the page we want to fetch.
 */
static int
A
Al Viro 已提交
381
nfs3_xdr_readargs(struct rpc_rqst *req, __be32 *p, struct nfs_readargs *args)
L
Linus Torvalds 已提交
382
{
383
	struct rpc_auth	*auth = req->rq_cred->cr_auth;
L
Linus Torvalds 已提交
384 385 386 387 388 389 390 391 392 393 394 395
	unsigned int replen;
	u32 count = args->count;

	p = xdr_encode_fhandle(p, args->fh);
	p = xdr_encode_hyper(p, args->offset);
	*p++ = htonl(count);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);

	/* Inline the page array */
	replen = (RPC_REPHDRSIZE + auth->au_rslack + NFS3_readres_sz) << 2;
	xdr_inline_pages(&req->rq_rcv_buf, replen,
			 args->pages, args->pgbase, count);
396
	req->rq_rcv_buf.flags |= XDRBUF_READ;
L
Linus Torvalds 已提交
397 398 399 400 401 402 403
	return 0;
}

/*
 * Write arguments. Splice the buffer to be written into the iovec.
 */
static int
A
Al Viro 已提交
404
nfs3_xdr_writeargs(struct rpc_rqst *req, __be32 *p, struct nfs_writeargs *args)
L
Linus Torvalds 已提交
405 406 407 408 409 410 411 412 413 414 415 416 417
{
	struct xdr_buf *sndbuf = &req->rq_snd_buf;
	u32 count = args->count;

	p = xdr_encode_fhandle(p, args->fh);
	p = xdr_encode_hyper(p, args->offset);
	*p++ = htonl(count);
	*p++ = htonl(args->stable);
	*p++ = htonl(count);
	sndbuf->len = xdr_adjust_iovec(sndbuf->head, p);

	/* Copy the page array */
	xdr_encode_pages(sndbuf, args->pages, args->pgbase, count);
418
	sndbuf->flags |= XDRBUF_WRITE;
L
Linus Torvalds 已提交
419 420 421 422 423 424 425
	return 0;
}

/*
 * Encode CREATE arguments
 */
static int
A
Al Viro 已提交
426
nfs3_xdr_createargs(struct rpc_rqst *req, __be32 *p, struct nfs3_createargs *args)
L
Linus Torvalds 已提交
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
{
	p = xdr_encode_fhandle(p, args->fh);
	p = xdr_encode_array(p, args->name, args->len);

	*p++ = htonl(args->createmode);
	if (args->createmode == NFS3_CREATE_EXCLUSIVE) {
		*p++ = args->verifier[0];
		*p++ = args->verifier[1];
	} else
		p = xdr_encode_sattr(p, args->sattr);

	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

/*
 * Encode MKDIR arguments
 */
static int
A
Al Viro 已提交
446
nfs3_xdr_mkdirargs(struct rpc_rqst *req, __be32 *p, struct nfs3_mkdirargs *args)
L
Linus Torvalds 已提交
447 448 449 450 451 452 453 454 455 456 457 458
{
	p = xdr_encode_fhandle(p, args->fh);
	p = xdr_encode_array(p, args->name, args->len);
	p = xdr_encode_sattr(p, args->sattr);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

/*
 * Encode SYMLINK arguments
 */
static int
A
Al Viro 已提交
459
nfs3_xdr_symlinkargs(struct rpc_rqst *req, __be32 *p, struct nfs3_symlinkargs *args)
L
Linus Torvalds 已提交
460 461 462 463
{
	p = xdr_encode_fhandle(p, args->fromfh);
	p = xdr_encode_array(p, args->fromname, args->fromlen);
	p = xdr_encode_sattr(p, args->sattr);
464
	*p++ = htonl(args->pathlen);
L
Linus Torvalds 已提交
465
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
466 467 468

	/* Copy the page */
	xdr_encode_pages(&req->rq_snd_buf, args->pages, 0, args->pathlen);
L
Linus Torvalds 已提交
469 470 471 472 473 474 475
	return 0;
}

/*
 * Encode MKNOD arguments
 */
static int
A
Al Viro 已提交
476
nfs3_xdr_mknodargs(struct rpc_rqst *req, __be32 *p, struct nfs3_mknodargs *args)
L
Linus Torvalds 已提交
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
{
	p = xdr_encode_fhandle(p, args->fh);
	p = xdr_encode_array(p, args->name, args->len);
	*p++ = htonl(args->type);
	p = xdr_encode_sattr(p, args->sattr);
	if (args->type == NF3CHR || args->type == NF3BLK) {
		*p++ = htonl(MAJOR(args->rdev));
		*p++ = htonl(MINOR(args->rdev));
	}

	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

/*
 * Encode RENAME arguments
 */
static int
495
nfs3_xdr_renameargs(struct rpc_rqst *req, __be32 *p, struct nfs_renameargs *args)
L
Linus Torvalds 已提交
496
{
497 498 499 500
	p = xdr_encode_fhandle(p, args->old_dir);
	p = xdr_encode_array(p, args->old_name->name, args->old_name->len);
	p = xdr_encode_fhandle(p, args->new_dir);
	p = xdr_encode_array(p, args->new_name->name, args->new_name->len);
L
Linus Torvalds 已提交
501 502 503 504 505 506 507 508
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

/*
 * Encode LINK arguments
 */
static int
A
Al Viro 已提交
509
nfs3_xdr_linkargs(struct rpc_rqst *req, __be32 *p, struct nfs3_linkargs *args)
L
Linus Torvalds 已提交
510 511 512 513 514 515 516 517 518 519 520 521
{
	p = xdr_encode_fhandle(p, args->fromfh);
	p = xdr_encode_fhandle(p, args->tofh);
	p = xdr_encode_array(p, args->toname, args->tolen);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

/*
 * Encode arguments to readdir call
 */
static int
A
Al Viro 已提交
522
nfs3_xdr_readdirargs(struct rpc_rqst *req, __be32 *p, struct nfs3_readdirargs *args)
L
Linus Torvalds 已提交
523
{
524
	struct rpc_auth	*auth = req->rq_cred->cr_auth;
L
Linus Torvalds 已提交
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
	unsigned int replen;
	u32 count = args->count;

	p = xdr_encode_fhandle(p, args->fh);
	p = xdr_encode_hyper(p, args->cookie);
	*p++ = args->verf[0];
	*p++ = args->verf[1];
	if (args->plus) {
		/* readdirplus: need dircount + buffer size.
		 * We just make sure we make dircount big enough */
		*p++ = htonl(count >> 3);
	}
	*p++ = htonl(count);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);

	/* Inline the page array */
	replen = (RPC_REPHDRSIZE + auth->au_rslack + NFS3_readdirres_sz) << 2;
	xdr_inline_pages(&req->rq_rcv_buf, replen, args->pages, 0, count);
	return 0;
}

/*
 * Decode the result of a readdir call.
 * We just check for syntactical correctness.
 */
static int
A
Al Viro 已提交
551
nfs3_xdr_readdirres(struct rpc_rqst *req, __be32 *p, struct nfs3_readdirres *res)
L
Linus Torvalds 已提交
552 553 554 555
{
	struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
	struct kvec *iov = rcvbuf->head;
	struct page **page;
556
	size_t hdrlen;
557
	u32 recvd, pglen;
558
	int status;
L
Linus Torvalds 已提交
559 560 561 562 563

	status = ntohl(*p++);
	/* Decode post_op_attrs */
	p = xdr_decode_post_op_attr(p, res->dir_attr);
	if (status)
564
		return nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
565 566 567 568 569 570 571 572 573 574
	/* Decode verifier cookie */
	if (res->verf) {
		res->verf[0] = *p++;
		res->verf[1] = *p++;
	} else {
		p += 2;
	}

	hdrlen = (u8 *) p - (u8 *) iov->iov_base;
	if (iov->iov_len < hdrlen) {
575
		dprintk("NFS: READDIR reply header overflowed:"
576
				"length %Zu > %Zu\n", hdrlen, iov->iov_len);
L
Linus Torvalds 已提交
577 578 579 580 581 582 583 584 585 586 587
		return -errno_NFSERR_IO;
	} else if (iov->iov_len != hdrlen) {
		dprintk("NFS: READDIR header is short. iovec will be shifted.\n");
		xdr_shift_buf(rcvbuf, iov->iov_len - hdrlen);
	}

	pglen = rcvbuf->page_len;
	recvd = rcvbuf->len - hdrlen;
	if (pglen > recvd)
		pglen = recvd;
	page = rcvbuf->pages;
588

589
	return pglen;
L
Linus Torvalds 已提交
590 591
}

592
__be32 *
B
Bryan Schumaker 已提交
593
nfs3_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry, struct nfs_server *server, int plus)
L
Linus Torvalds 已提交
594
{
595
	__be32 *p;
L
Linus Torvalds 已提交
596 597
	struct nfs_entry old = *entry;

598 599 600 601 602 603 604 605
	p = xdr_inline_decode(xdr, 4);
	if (unlikely(!p))
		goto out_overflow;
	if (!ntohl(*p++)) {
		p = xdr_inline_decode(xdr, 4);
		if (unlikely(!p))
			goto out_overflow;
		if (!ntohl(*p++))
L
Linus Torvalds 已提交
606 607 608 609 610
			return ERR_PTR(-EAGAIN);
		entry->eof = 1;
		return ERR_PTR(-EBADCOOKIE);
	}

611 612 613
	p = xdr_inline_decode(xdr, 12);
	if (unlikely(!p))
		goto out_overflow;
L
Linus Torvalds 已提交
614 615
	p = xdr_decode_hyper(p, &entry->ino);
	entry->len  = ntohl(*p++);
616 617 618 619

	p = xdr_inline_decode(xdr, entry->len + 8);
	if (unlikely(!p))
		goto out_overflow;
L
Linus Torvalds 已提交
620 621 622 623 624 625 626
	entry->name = (const char *) p;
	p += XDR_QUADLEN(entry->len);
	entry->prev_cookie = entry->cookie;
	p = xdr_decode_hyper(p, &entry->cookie);

	if (plus) {
		entry->fattr->valid = 0;
627 628 629
		p = xdr_decode_post_op_attr_stream(xdr, entry->fattr);
		if (IS_ERR(p))
			goto out_overflow_exit;
L
Linus Torvalds 已提交
630
		/* In fact, a post_op_fh3: */
631 632 633
		p = xdr_inline_decode(xdr, 4);
		if (unlikely(!p))
			goto out_overflow;
L
Linus Torvalds 已提交
634
		if (*p++) {
635 636 637
			p = xdr_decode_fhandle_stream(xdr, entry->fh);
			if (IS_ERR(p))
				goto out_overflow_exit;
L
Linus Torvalds 已提交
638 639 640 641 642 643 644 645 646 647
			/* Ugh -- server reply was truncated */
			if (p == NULL) {
				dprintk("NFS: FH truncated\n");
				*entry = old;
				return ERR_PTR(-EAGAIN);
			}
		} else
			memset((u8*)(entry->fh), 0, sizeof(*entry->fh));
	}

648 649 650 651 652 653
	p = xdr_inline_peek(xdr, 8);
	if (p != NULL)
		entry->eof = !p[0] && p[1];
	else
		entry->eof = 0;

L
Linus Torvalds 已提交
654
	return p;
655 656 657 658 659

out_overflow:
	print_overflow_msg(__func__, xdr);
out_overflow_exit:
	return ERR_PTR(-EIO);
L
Linus Torvalds 已提交
660 661 662 663 664 665
}

/*
 * Encode COMMIT arguments
 */
static int
A
Al Viro 已提交
666
nfs3_xdr_commitargs(struct rpc_rqst *req, __be32 *p, struct nfs_writeargs *args)
L
Linus Torvalds 已提交
667 668 669 670 671 672 673 674
{
	p = xdr_encode_fhandle(p, args->fh);
	p = xdr_encode_hyper(p, args->offset);
	*p++ = htonl(args->count);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	return 0;
}

675 676 677 678 679
#ifdef CONFIG_NFS_V3_ACL
/*
 * Encode GETACL arguments
 */
static int
A
Al Viro 已提交
680
nfs3_xdr_getaclargs(struct rpc_rqst *req, __be32 *p,
681 682
		    struct nfs3_getaclargs *args)
{
683
	struct rpc_auth	*auth = req->rq_cred->cr_auth;
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
	unsigned int replen;

	p = xdr_encode_fhandle(p, args->fh);
	*p++ = htonl(args->mask);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);

	if (args->mask & (NFS_ACL | NFS_DFACL)) {
		/* Inline the page array */
		replen = (RPC_REPHDRSIZE + auth->au_rslack +
			  ACL3_getaclres_sz) << 2;
		xdr_inline_pages(&req->rq_rcv_buf, replen, args->pages, 0,
				 NFSACL_MAXPAGES << PAGE_SHIFT);
	}
	return 0;
}

/*
 * Encode SETACL arguments
 */
static int
A
Al Viro 已提交
704
nfs3_xdr_setaclargs(struct rpc_rqst *req, __be32 *p,
705 706 707
                   struct nfs3_setaclargs *args)
{
	struct xdr_buf *buf = &req->rq_snd_buf;
T
Trond Myklebust 已提交
708 709
	unsigned int base;
	int err;
710 711 712

	p = xdr_encode_fhandle(p, NFS_FH(args->inode));
	*p++ = htonl(args->mask);
T
Trond Myklebust 已提交
713 714 715 716 717 718
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
	base = req->rq_slen;

	if (args->npages != 0)
		xdr_encode_pages(buf, args->pages, 0, args->len);
	else
719 720
		req->rq_slen = xdr_adjust_iovec(req->rq_svec,
				p + XDR_QUADLEN(args->len));
721 722 723 724 725 726 727 728 729 730 731 732 733

	err = nfsacl_encode(buf, base, args->inode,
			    (args->mask & NFS_ACL) ?
			    args->acl_access : NULL, 1, 0);
	if (err > 0)
		err = nfsacl_encode(buf, base + err, args->inode,
				    (args->mask & NFS_DFACL) ?
				    args->acl_default : NULL, 1,
				    NFS_ACL_DEFAULT);
	return (err > 0) ? 0 : err;
}
#endif  /* CONFIG_NFS_V3_ACL */

L
Linus Torvalds 已提交
734 735 736 737 738 739 740 741
/*
 * NFS XDR decode functions
 */

/*
 * Decode attrstat reply.
 */
static int
A
Al Viro 已提交
742
nfs3_xdr_attrstat(struct rpc_rqst *req, __be32 *p, struct nfs_fattr *fattr)
L
Linus Torvalds 已提交
743 744 745 746
{
	int	status;

	if ((status = ntohl(*p++)))
747
		return nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
748 749 750 751 752 753 754 755 756
	xdr_decode_fattr(p, fattr);
	return 0;
}

/*
 * Decode status+wcc_data reply
 * SATTR, REMOVE, RMDIR
 */
static int
A
Al Viro 已提交
757
nfs3_xdr_wccstat(struct rpc_rqst *req, __be32 *p, struct nfs_fattr *fattr)
L
Linus Torvalds 已提交
758 759 760 761
{
	int	status;

	if ((status = ntohl(*p++)))
762
		status = nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
763 764 765 766
	xdr_decode_wcc_data(p, fattr);
	return status;
}

767 768 769
static int
nfs3_xdr_removeres(struct rpc_rqst *req, __be32 *p, struct nfs_removeres *res)
{
770
	return nfs3_xdr_wccstat(req, p, res->dir_attr);
771 772
}

L
Linus Torvalds 已提交
773 774 775 776
/*
 * Decode LOOKUP reply
 */
static int
A
Al Viro 已提交
777
nfs3_xdr_lookupres(struct rpc_rqst *req, __be32 *p, struct nfs3_diropres *res)
L
Linus Torvalds 已提交
778 779 780 781
{
	int	status;

	if ((status = ntohl(*p++))) {
782
		status = nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
783 784 785 786 787 788 789 790 791 792 793 794 795
	} else {
		if (!(p = xdr_decode_fhandle(p, res->fh)))
			return -errno_NFSERR_IO;
		p = xdr_decode_post_op_attr(p, res->fattr);
	}
	xdr_decode_post_op_attr(p, res->dir_attr);
	return status;
}

/*
 * Decode ACCESS reply
 */
static int
A
Al Viro 已提交
796
nfs3_xdr_accessres(struct rpc_rqst *req, __be32 *p, struct nfs3_accessres *res)
L
Linus Torvalds 已提交
797 798 799 800 801
{
	int	status = ntohl(*p++);

	p = xdr_decode_post_op_attr(p, res->fattr);
	if (status)
802
		return nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
803 804 805 806 807
	res->access = ntohl(*p++);
	return 0;
}

static int
A
Al Viro 已提交
808
nfs3_xdr_readlinkargs(struct rpc_rqst *req, __be32 *p, struct nfs3_readlinkargs *args)
L
Linus Torvalds 已提交
809
{
810
	struct rpc_auth	*auth = req->rq_cred->cr_auth;
L
Linus Torvalds 已提交
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
	unsigned int replen;

	p = xdr_encode_fhandle(p, args->fh);
	req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);

	/* Inline the page array */
	replen = (RPC_REPHDRSIZE + auth->au_rslack + NFS3_readlinkres_sz) << 2;
	xdr_inline_pages(&req->rq_rcv_buf, replen, args->pages, args->pgbase, args->pglen);
	return 0;
}

/*
 * Decode READLINK reply
 */
static int
A
Al Viro 已提交
826
nfs3_xdr_readlinkres(struct rpc_rqst *req, __be32 *p, struct nfs_fattr *fattr)
L
Linus Torvalds 已提交
827 828 829
{
	struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
	struct kvec *iov = rcvbuf->head;
830 831
	size_t hdrlen;
	u32 len, recvd;
L
Linus Torvalds 已提交
832 833 834 835 836 837
	int	status;

	status = ntohl(*p++);
	p = xdr_decode_post_op_attr(p, fattr);

	if (status != 0)
838
		return nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
839 840 841

	/* Convert length of symlink */
	len = ntohl(*p++);
842
	if (len >= rcvbuf->page_len) {
843
		dprintk("nfs: server returned giant symlink!\n");
L
Linus Torvalds 已提交
844 845 846 847 848
		return -ENAMETOOLONG;
	}

	hdrlen = (u8 *) p - (u8 *) iov->iov_base;
	if (iov->iov_len < hdrlen) {
849
		dprintk("NFS: READLINK reply header overflowed:"
850
				"length %Zu > %Zu\n", hdrlen, iov->iov_len);
L
Linus Torvalds 已提交
851 852
		return -errno_NFSERR_IO;
	} else if (iov->iov_len != hdrlen) {
853 854
		dprintk("NFS: READLINK header is short. "
			"iovec will be shifted.\n");
L
Linus Torvalds 已提交
855 856 857 858
		xdr_shift_buf(rcvbuf, iov->iov_len - hdrlen);
	}
	recvd = req->rq_rcv_buf.len - hdrlen;
	if (recvd < len) {
859
		dprintk("NFS: server cheating in readlink reply: "
L
Linus Torvalds 已提交
860 861 862 863
				"count %u > recvd %u\n", len, recvd);
		return -EIO;
	}

864
	xdr_terminate_string(rcvbuf, len);
L
Linus Torvalds 已提交
865 866 867 868 869 870 871
	return 0;
}

/*
 * Decode READ reply
 */
static int
A
Al Viro 已提交
872
nfs3_xdr_readres(struct rpc_rqst *req, __be32 *p, struct nfs_readres *res)
L
Linus Torvalds 已提交
873 874
{
	struct kvec *iov = req->rq_rcv_buf.head;
875 876 877
	size_t hdrlen;
	u32 count, ocount, recvd;
	int status;
L
Linus Torvalds 已提交
878 879 880 881 882

	status = ntohl(*p++);
	p = xdr_decode_post_op_attr(p, res->fattr);

	if (status != 0)
883
		return nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
884

885
	/* Decode reply count and EOF flag. NFSv3 is somewhat redundant
L
Linus Torvalds 已提交
886 887 888 889 890 891 892
	 * in that it puts the count both in the res struct and in the
	 * opaque data count. */
	count    = ntohl(*p++);
	res->eof = ntohl(*p++);
	ocount   = ntohl(*p++);

	if (ocount != count) {
893
		dprintk("NFS: READ count doesn't match RPC opaque count.\n");
L
Linus Torvalds 已提交
894 895 896 897 898
		return -errno_NFSERR_IO;
	}

	hdrlen = (u8 *) p - (u8 *) iov->iov_base;
	if (iov->iov_len < hdrlen) {
899
		dprintk("NFS: READ reply header overflowed:"
900
				"length %Zu > %Zu\n", hdrlen, iov->iov_len);
L
Linus Torvalds 已提交
901 902 903 904 905 906 907 908
       		return -errno_NFSERR_IO;
	} else if (iov->iov_len != hdrlen) {
		dprintk("NFS: READ header is short. iovec will be shifted.\n");
		xdr_shift_buf(&req->rq_rcv_buf, iov->iov_len - hdrlen);
	}

	recvd = req->rq_rcv_buf.len - hdrlen;
	if (count > recvd) {
909
		dprintk("NFS: server cheating in read reply: "
910
			"count %u > recvd %u\n", count, recvd);
L
Linus Torvalds 已提交
911 912 913 914 915 916 917 918 919 920 921 922 923 924
		count = recvd;
		res->eof = 0;
	}

	if (count < res->count)
		res->count = count;

	return count;
}

/*
 * Decode WRITE response
 */
static int
A
Al Viro 已提交
925
nfs3_xdr_writeres(struct rpc_rqst *req, __be32 *p, struct nfs_writeres *res)
L
Linus Torvalds 已提交
926 927 928 929 930 931 932
{
	int	status;

	status = ntohl(*p++);
	p = xdr_decode_wcc_data(p, res->fattr);

	if (status != 0)
933
		return nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
934 935 936 937 938 939 940 941 942 943 944 945 946

	res->count = ntohl(*p++);
	res->verf->committed = (enum nfs3_stable_how)ntohl(*p++);
	res->verf->verifier[0] = *p++;
	res->verf->verifier[1] = *p++;

	return res->count;
}

/*
 * Decode a CREATE response
 */
static int
A
Al Viro 已提交
947
nfs3_xdr_createres(struct rpc_rqst *req, __be32 *p, struct nfs3_diropres *res)
L
Linus Torvalds 已提交
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
{
	int	status;

	status = ntohl(*p++);
	if (status == 0) {
		if (*p++) {
			if (!(p = xdr_decode_fhandle(p, res->fh)))
				return -errno_NFSERR_IO;
			p = xdr_decode_post_op_attr(p, res->fattr);
		} else {
			memset(res->fh, 0, sizeof(*res->fh));
			/* Do decode post_op_attr but set it to NULL */
			p = xdr_decode_post_op_attr(p, res->fattr);
			res->fattr->valid = 0;
		}
	} else {
964
		status = nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
965 966 967 968 969 970 971 972 973
	}
	p = xdr_decode_wcc_data(p, res->dir_attr);
	return status;
}

/*
 * Decode RENAME reply
 */
static int
974
nfs3_xdr_renameres(struct rpc_rqst *req, __be32 *p, struct nfs_renameres *res)
L
Linus Torvalds 已提交
975 976 977 978
{
	int	status;

	if ((status = ntohl(*p++)) != 0)
979
		status = nfs_stat_to_errno(status);
980 981
	p = xdr_decode_wcc_data(p, res->old_fattr);
	p = xdr_decode_wcc_data(p, res->new_fattr);
L
Linus Torvalds 已提交
982 983 984 985 986 987 988
	return status;
}

/*
 * Decode LINK reply
 */
static int
A
Al Viro 已提交
989
nfs3_xdr_linkres(struct rpc_rqst *req, __be32 *p, struct nfs3_linkres *res)
L
Linus Torvalds 已提交
990 991 992 993
{
	int	status;

	if ((status = ntohl(*p++)) != 0)
994
		status = nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
995 996 997 998 999 1000 1001 1002 1003
	p = xdr_decode_post_op_attr(p, res->fattr);
	p = xdr_decode_wcc_data(p, res->dir_attr);
	return status;
}

/*
 * Decode FSSTAT reply
 */
static int
A
Al Viro 已提交
1004
nfs3_xdr_fsstatres(struct rpc_rqst *req, __be32 *p, struct nfs_fsstat *res)
L
Linus Torvalds 已提交
1005 1006 1007 1008 1009 1010 1011
{
	int		status;

	status = ntohl(*p++);

	p = xdr_decode_post_op_attr(p, res->fattr);
	if (status != 0)
1012
		return nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028

	p = xdr_decode_hyper(p, &res->tbytes);
	p = xdr_decode_hyper(p, &res->fbytes);
	p = xdr_decode_hyper(p, &res->abytes);
	p = xdr_decode_hyper(p, &res->tfiles);
	p = xdr_decode_hyper(p, &res->ffiles);
	p = xdr_decode_hyper(p, &res->afiles);

	/* ignore invarsec */
	return 0;
}

/*
 * Decode FSINFO reply
 */
static int
A
Al Viro 已提交
1029
nfs3_xdr_fsinfores(struct rpc_rqst *req, __be32 *p, struct nfs_fsinfo *res)
L
Linus Torvalds 已提交
1030 1031 1032 1033 1034 1035 1036
{
	int		status;

	status = ntohl(*p++);

	p = xdr_decode_post_op_attr(p, res->fattr);
	if (status != 0)
1037
		return nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
1038 1039 1040 1041 1042 1043 1044 1045 1046

	res->rtmax  = ntohl(*p++);
	res->rtpref = ntohl(*p++);
	res->rtmult = ntohl(*p++);
	res->wtmax  = ntohl(*p++);
	res->wtpref = ntohl(*p++);
	res->wtmult = ntohl(*p++);
	res->dtpref = ntohl(*p++);
	p = xdr_decode_hyper(p, &res->maxfilesize);
R
Ricardo Labiaga 已提交
1047
	p = xdr_decode_time3(p, &res->time_delta);
L
Linus Torvalds 已提交
1048

R
Ricardo Labiaga 已提交
1049
	/* ignore properties */
L
Linus Torvalds 已提交
1050 1051 1052 1053 1054 1055 1056 1057
	res->lease_time = 0;
	return 0;
}

/*
 * Decode PATHCONF reply
 */
static int
A
Al Viro 已提交
1058
nfs3_xdr_pathconfres(struct rpc_rqst *req, __be32 *p, struct nfs_pathconf *res)
L
Linus Torvalds 已提交
1059 1060 1061 1062 1063 1064 1065
{
	int		status;

	status = ntohl(*p++);

	p = xdr_decode_post_op_attr(p, res->fattr);
	if (status != 0)
1066
		return nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
	res->max_link = ntohl(*p++);
	res->max_namelen = ntohl(*p++);

	/* ignore remaining fields */
	return 0;
}

/*
 * Decode COMMIT reply
 */
static int
A
Al Viro 已提交
1078
nfs3_xdr_commitres(struct rpc_rqst *req, __be32 *p, struct nfs_writeres *res)
L
Linus Torvalds 已提交
1079 1080 1081 1082 1083 1084
{
	int		status;

	status = ntohl(*p++);
	p = xdr_decode_wcc_data(p, res->fattr);
	if (status != 0)
1085
		return nfs_stat_to_errno(status);
L
Linus Torvalds 已提交
1086 1087 1088 1089 1090 1091

	res->verf->verifier[0] = *p++;
	res->verf->verifier[1] = *p++;
	return 0;
}

1092 1093 1094 1095 1096
#ifdef CONFIG_NFS_V3_ACL
/*
 * Decode GETACL reply
 */
static int
A
Al Viro 已提交
1097
nfs3_xdr_getaclres(struct rpc_rqst *req, __be32 *p,
1098 1099 1100 1101 1102 1103 1104 1105 1106
		   struct nfs3_getaclres *res)
{
	struct xdr_buf *buf = &req->rq_rcv_buf;
	int status = ntohl(*p++);
	struct posix_acl **acl;
	unsigned int *aclcnt;
	int err, base;

	if (status != 0)
1107
		return nfs_stat_to_errno(status);
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
	p = xdr_decode_post_op_attr(p, res->fattr);
	res->mask = ntohl(*p++);
	if (res->mask & ~(NFS_ACL|NFS_ACLCNT|NFS_DFACL|NFS_DFACLCNT))
		return -EINVAL;
	base = (char *)p - (char *)req->rq_rcv_buf.head->iov_base;

	acl = (res->mask & NFS_ACL) ? &res->acl_access : NULL;
	aclcnt = (res->mask & NFS_ACLCNT) ? &res->acl_access_count : NULL;
	err = nfsacl_decode(buf, base, aclcnt, acl);

	acl = (res->mask & NFS_DFACL) ? &res->acl_default : NULL;
	aclcnt = (res->mask & NFS_DFACLCNT) ? &res->acl_default_count : NULL;
	if (err > 0)
		err = nfsacl_decode(buf, base + err, aclcnt, acl);
	return (err > 0) ? 0 : err;
}

/*
 * Decode setacl reply.
 */
static int
A
Al Viro 已提交
1129
nfs3_xdr_setaclres(struct rpc_rqst *req, __be32 *p, struct nfs_fattr *fattr)
1130 1131 1132 1133
{
	int status = ntohl(*p++);

	if (status)
1134
		return nfs_stat_to_errno(status);
1135 1136 1137 1138 1139
	xdr_decode_post_op_attr(p, fattr);
	return 0;
}
#endif  /* CONFIG_NFS_V3_ACL */

L
Linus Torvalds 已提交
1140 1141 1142 1143 1144
#define PROC(proc, argtype, restype, timer)				\
[NFS3PROC_##proc] = {							\
	.p_proc      = NFS3PROC_##proc,					\
	.p_encode    = (kxdrproc_t) nfs3_xdr_##argtype,			\
	.p_decode    = (kxdrproc_t) nfs3_xdr_##restype,			\
1145 1146
	.p_arglen    = NFS3_##argtype##_sz,				\
	.p_replen    = NFS3_##restype##_sz,				\
1147 1148 1149
	.p_timer     = timer,						\
	.p_statidx   = NFS3PROC_##proc,					\
	.p_name      = #proc,						\
L
Linus Torvalds 已提交
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
	}

struct rpc_procinfo	nfs3_procedures[] = {
  PROC(GETATTR,		fhandle,	attrstat, 1),
  PROC(SETATTR, 	sattrargs,	wccstat, 0),
  PROC(LOOKUP,		diropargs,	lookupres, 2),
  PROC(ACCESS,		accessargs,	accessres, 1),
  PROC(READLINK,	readlinkargs,	readlinkres, 3),
  PROC(READ,		readargs,	readres, 3),
  PROC(WRITE,		writeargs,	writeres, 4),
  PROC(CREATE,		createargs,	createres, 0),
  PROC(MKDIR,		mkdirargs,	createres, 0),
  PROC(SYMLINK,		symlinkargs,	createres, 0),
  PROC(MKNOD,		mknodargs,	createres, 0),
1164
  PROC(REMOVE,		removeargs,	removeres, 0),
L
Linus Torvalds 已提交
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
  PROC(RMDIR,		diropargs,	wccstat, 0),
  PROC(RENAME,		renameargs,	renameres, 0),
  PROC(LINK,		linkargs,	linkres, 0),
  PROC(READDIR,		readdirargs,	readdirres, 3),
  PROC(READDIRPLUS,	readdirargs,	readdirres, 3),
  PROC(FSSTAT,		fhandle,	fsstatres, 0),
  PROC(FSINFO,  	fhandle,	fsinfores, 0),
  PROC(PATHCONF,	fhandle,	pathconfres, 0),
  PROC(COMMIT,		commitargs,	commitres, 5),
};

struct rpc_version		nfs_version3 = {
	.number			= 3,
1178
	.nrprocs		= ARRAY_SIZE(nfs3_procedures),
L
Linus Torvalds 已提交
1179 1180 1181
	.procs			= nfs3_procedures
};

1182 1183 1184 1185 1186 1187
#ifdef CONFIG_NFS_V3_ACL
static struct rpc_procinfo	nfs3_acl_procedures[] = {
	[ACLPROC3_GETACL] = {
		.p_proc = ACLPROC3_GETACL,
		.p_encode = (kxdrproc_t) nfs3_xdr_getaclargs,
		.p_decode = (kxdrproc_t) nfs3_xdr_getaclres,
1188 1189
		.p_arglen = ACL3_getaclargs_sz,
		.p_replen = ACL3_getaclres_sz,
1190
		.p_timer = 1,
1191
		.p_name = "GETACL",
1192 1193 1194 1195 1196
	},
	[ACLPROC3_SETACL] = {
		.p_proc = ACLPROC3_SETACL,
		.p_encode = (kxdrproc_t) nfs3_xdr_setaclargs,
		.p_decode = (kxdrproc_t) nfs3_xdr_setaclres,
1197 1198
		.p_arglen = ACL3_setaclargs_sz,
		.p_replen = ACL3_setaclres_sz,
1199
		.p_timer = 0,
1200
		.p_name = "SETACL",
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
	},
};

struct rpc_version		nfsacl_version3 = {
	.number			= 3,
	.nrprocs		= sizeof(nfs3_acl_procedures)/
				  sizeof(nfs3_acl_procedures[0]),
	.procs			= nfs3_acl_procedures,
};
#endif  /* CONFIG_NFS_V3_ACL */