fsclient.c 62.3 KB
Newer Older
1
/* AFS File Server client stubs
L
Linus Torvalds 已提交
2
 *
3
 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#include <linux/init.h>
13
#include <linux/slab.h>
L
Linus Torvalds 已提交
14
#include <linux/sched.h>
15
#include <linux/circ_buf.h>
J
Jeff Layton 已提交
16
#include <linux/iversion.h>
L
Linus Torvalds 已提交
17
#include "internal.h"
18
#include "afs_fs.h"
D
David Howells 已提交
19
#include "xdr_fs.h"
20
#include "protocol_yfs.h"
L
Linus Torvalds 已提交
21

22 23
static const struct afs_fid afs_zero_fid;

24
static inline void afs_use_fs_server(struct afs_call *call, struct afs_cb_interest *cbi)
25
{
26
	call->cbi = afs_get_cb_interest(cbi);
27 28
}

29 30 31 32 33 34 35 36 37 38 39 40 41
/*
 * decode an AFSFid block
 */
static void xdr_decode_AFSFid(const __be32 **_bp, struct afs_fid *fid)
{
	const __be32 *bp = *_bp;

	fid->vid		= ntohl(*bp++);
	fid->vnode		= ntohl(*bp++);
	fid->unique		= ntohl(*bp++);
	*_bp = bp;
}

D
David Howells 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
/*
 * Dump a bad file status record.
 */
static void xdr_dump_bad(const __be32 *bp)
{
	__be32 x[4];
	int i;

	pr_notice("AFS XDR: Bad status record\n");
	for (i = 0; i < 5 * 4 * 4; i += 16) {
		memcpy(x, bp, 16);
		bp += 4;
		pr_notice("%03x: %08x %08x %08x %08x\n",
			  i, ntohl(x[0]), ntohl(x[1]), ntohl(x[2]), ntohl(x[3]));
	}

	memcpy(x, bp, 4);
	pr_notice("0x50: %08x\n", ntohl(x[0]));
}

L
Linus Torvalds 已提交
62
/*
D
David Howells 已提交
63
 * Update the core inode struct from a returned status record.
L
Linus Torvalds 已提交
64
 */
D
David Howells 已提交
65 66 67 68
void afs_update_inode_from_status(struct afs_vnode *vnode,
				  struct afs_file_status *status,
				  const afs_dataversion_t *expected_version,
				  u8 flags)
L
Linus Torvalds 已提交
69
{
70
	struct timespec64 t;
71
	umode_t mode;
D
David Howells 已提交
72

73
	t = status->mtime_client;
D
David Howells 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
	vnode->vfs_inode.i_ctime = t;
	vnode->vfs_inode.i_mtime = t;
	vnode->vfs_inode.i_atime = t;

	if (flags & (AFS_VNODE_META_CHANGED | AFS_VNODE_NOT_YET_SET)) {
		vnode->vfs_inode.i_uid = make_kuid(&init_user_ns, status->owner);
		vnode->vfs_inode.i_gid = make_kgid(&init_user_ns, status->group);
		set_nlink(&vnode->vfs_inode, status->nlink);

		mode = vnode->vfs_inode.i_mode;
		mode &= ~S_IALLUGO;
		mode |= status->mode;
		barrier();
		vnode->vfs_inode.i_mode = mode;
	}

	if (!(flags & AFS_VNODE_NOT_YET_SET)) {
		if (expected_version &&
		    *expected_version != status->data_version) {
93
			_debug("vnode modified %llx on {%llx:%llu} [exp %llx]",
D
David Howells 已提交
94 95 96
			       (unsigned long long) status->data_version,
			       vnode->fid.vid, vnode->fid.vnode,
			       (unsigned long long) *expected_version);
97
			vnode->invalid_before = status->data_version;
D
David Howells 已提交
98 99 100 101 102 103
			if (vnode->status.type == AFS_FTYPE_DIR) {
				if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags))
					afs_stat_v(vnode, n_inval);
			} else {
				set_bit(AFS_VNODE_ZAP_DATA, &vnode->flags);
			}
104 105 106 107 108 109 110
		} else if (vnode->status.type == AFS_FTYPE_DIR) {
			/* Expected directory change is handled elsewhere so
			 * that we can locally edit the directory and save on a
			 * download.
			 */
			if (test_bit(AFS_VNODE_DIR_VALID, &vnode->flags))
				flags &= ~AFS_VNODE_DATA_CHANGED;
D
David Howells 已提交
111 112 113 114 115 116 117 118 119 120 121 122
		}
	}

	if (flags & (AFS_VNODE_DATA_CHANGED | AFS_VNODE_NOT_YET_SET)) {
		inode_set_iversion_raw(&vnode->vfs_inode, status->data_version);
		i_size_write(&vnode->vfs_inode, status->size);
	}
}

/*
 * decode an AFSFetchStatus block
 */
D
David Howells 已提交
123 124
static int xdr_decode_AFSFetchStatus(struct afs_call *call,
				     const __be32 **_bp,
D
David Howells 已提交
125 126 127
				     struct afs_file_status *status,
				     struct afs_vnode *vnode,
				     const afs_dataversion_t *expected_version,
D
David Howells 已提交
128
				     struct afs_read *read_req)
D
David Howells 已提交
129 130
{
	const struct afs_xdr_AFSFetchStatus *xdr = (const void *)*_bp;
131
	bool inline_error = (call->operation_ID == afs_FS_InlineBulkStatus);
132
	u64 data_version, size;
D
David Howells 已提交
133 134
	u32 type, abort_code;
	u8 flags = 0;
135

136 137
	abort_code = ntohl(xdr->abort_code);

D
David Howells 已提交
138
	if (xdr->if_version != htonl(AFS_FSTATUS_VERSION)) {
139 140 141 142 143 144 145 146
		if (xdr->if_version == htonl(0) &&
		    abort_code != 0 &&
		    inline_error) {
			/* The OpenAFS fileserver has a bug in FS.InlineBulkStatus
			 * whereby it doesn't set the interface version in the error
			 * case.
			 */
			status->abort_code = abort_code;
147
			return 0;
148 149
		}

D
David Howells 已提交
150 151 152
		pr_warn("Unknown AFSFetchStatus version %u\n", ntohl(xdr->if_version));
		goto bad;
	}
153

154 155
	if (abort_code != 0 && inline_error) {
		status->abort_code = abort_code;
156
		return 0;
157 158
	}

D
David Howells 已提交
159 160
	type = ntohl(xdr->type);
	switch (type) {
D
David Howells 已提交
161 162 163
	case AFS_FTYPE_FILE:
	case AFS_FTYPE_DIR:
	case AFS_FTYPE_SYMLINK:
D
David Howells 已提交
164 165 166
		if (type != status->type &&
		    vnode &&
		    !test_bit(AFS_VNODE_UNSET, &vnode->flags)) {
167
			pr_warning("Vnode %llx:%llx:%x changed type %u to %u\n",
D
David Howells 已提交
168 169 170 171 172 173 174
				   vnode->fid.vid,
				   vnode->fid.vnode,
				   vnode->fid.unique,
				   status->type, type);
			goto bad;
		}
		status->type = type;
D
David Howells 已提交
175 176
		break;
	default:
D
David Howells 已提交
177
		goto bad;
D
David Howells 已提交
178 179
	}

D
David Howells 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
#define EXTRACT_M(FIELD)					\
	do {							\
		u32 x = ntohl(xdr->FIELD);			\
		if (status->FIELD != x) {			\
			flags |= AFS_VNODE_META_CHANGED;	\
			status->FIELD = x;			\
		}						\
	} while (0)

	EXTRACT_M(nlink);
	EXTRACT_M(author);
	EXTRACT_M(owner);
	EXTRACT_M(caller_access); /* call ticket dependent */
	EXTRACT_M(anon_access);
	EXTRACT_M(mode);
	EXTRACT_M(group);

197 198 199 200
	status->mtime_client.tv_sec = ntohl(xdr->mtime_client);
	status->mtime_client.tv_nsec = 0;
	status->mtime_server.tv_sec = ntohl(xdr->mtime_server);
	status->mtime_server.tv_nsec = 0;
D
David Howells 已提交
201 202 203 204
	status->lock_count   = ntohl(xdr->lock_count);

	size  = (u64)ntohl(xdr->size_lo);
	size |= (u64)ntohl(xdr->size_hi) << 32;
205
	status->size = size;
D
David Howells 已提交
206 207 208 209 210 211

	data_version  = (u64)ntohl(xdr->data_version_lo);
	data_version |= (u64)ntohl(xdr->data_version_hi) << 32;
	if (data_version != status->data_version) {
		status->data_version = data_version;
		flags |= AFS_VNODE_DATA_CHANGED;
212
	}
D
David Howells 已提交
213 214 215 216 217

	if (read_req) {
		read_req->data_version = data_version;
		read_req->file_size = size;
	}
218

D
David Howells 已提交
219
	*_bp = (const void *)*_bp + sizeof(*xdr);
220 221

	if (vnode) {
D
David Howells 已提交
222 223 224 225
		if (test_bit(AFS_VNODE_UNSET, &vnode->flags))
			flags |= AFS_VNODE_NOT_YET_SET;
		afs_update_inode_from_status(vnode, status, expected_version,
					     flags);
226 227
	}

228
	return 0;
D
David Howells 已提交
229 230 231

bad:
	xdr_dump_bad(*_bp);
232
	return afs_protocol_error(call, -EBADMSG, afs_eproto_bad_status);
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
}

/*
 * Decode the file status.  We need to lock the target vnode if we're going to
 * update its status so that stat() sees the attributes update atomically.
 */
static int afs_decode_status(struct afs_call *call,
			     const __be32 **_bp,
			     struct afs_file_status *status,
			     struct afs_vnode *vnode,
			     const afs_dataversion_t *expected_version,
			     struct afs_read *read_req)
{
	int ret;

	if (!vnode)
		return xdr_decode_AFSFetchStatus(call, _bp, status, vnode,
						 expected_version, read_req);

	write_seqlock(&vnode->cb_lock);
	ret = xdr_decode_AFSFetchStatus(call, _bp, status, vnode,
					expected_version, read_req);
	write_sequnlock(&vnode->cb_lock);
	return ret;
D
David Howells 已提交
257
}
L
Linus Torvalds 已提交
258 259

/*
260
 * decode an AFSCallBack block
L
Linus Torvalds 已提交
261
 */
262 263 264
static void xdr_decode_AFSCallBack(struct afs_call *call,
				   struct afs_vnode *vnode,
				   const __be32 **_bp)
L
Linus Torvalds 已提交
265
{
266
	struct afs_cb_interest *old, *cbi = call->cbi;
267
	const __be32 *bp = *_bp;
268 269 270 271
	u32 cb_expiry;

	write_seqlock(&vnode->cb_lock);

D
David Howells 已提交
272
	if (!afs_cb_is_broken(call->cb_break, vnode, cbi)) {
273 274 275 276
		vnode->cb_version	= ntohl(*bp++);
		cb_expiry		= ntohl(*bp++);
		vnode->cb_type		= ntohl(*bp++);
		vnode->cb_expires_at	= cb_expiry + ktime_get_real_seconds();
277 278 279 280 281
		old = vnode->cb_interest;
		if (old != call->cbi) {
			vnode->cb_interest = cbi;
			cbi = old;
		}
282 283 284 285
		set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
	} else {
		bp += 3;
	}
L
Linus Torvalds 已提交
286

287
	write_sequnlock(&vnode->cb_lock);
288
	call->cbi = cbi;
289
	*_bp = bp;
D
David Howells 已提交
290
}
L
Linus Torvalds 已提交
291

292 293 294 295 296 297 298
static ktime_t xdr_decode_expiry(struct afs_call *call, u32 expiry)
{
	return ktime_add_ns(call->reply_time, expiry * NSEC_PER_SEC);
}

static void xdr_decode_AFSCallBack_raw(struct afs_call *call,
				       const __be32 **_bp,
299 300 301 302 303
				       struct afs_callback *cb)
{
	const __be32 *bp = *_bp;

	cb->version	= ntohl(*bp++);
304
	cb->expires_at	= xdr_decode_expiry(call, ntohl(*bp++));
305 306 307 308
	cb->type	= ntohl(*bp++);
	*_bp = bp;
}

L
Linus Torvalds 已提交
309
/*
310
 * decode an AFSVolSync block
L
Linus Torvalds 已提交
311
 */
312 313
static void xdr_decode_AFSVolSync(const __be32 **_bp,
				  struct afs_volsync *volsync)
L
Linus Torvalds 已提交
314
{
315
	const __be32 *bp = *_bp;
316
	u32 creation;
L
Linus Torvalds 已提交
317

318
	creation = ntohl(*bp++);
319 320 321 322 323 324
	bp++; /* spare2 */
	bp++; /* spare3 */
	bp++; /* spare4 */
	bp++; /* spare5 */
	bp++; /* spare6 */
	*_bp = bp;
325 326 327

	if (volsync)
		volsync->creation = creation;
328
}
L
Linus Torvalds 已提交
329

330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
/*
 * encode the requested attributes into an AFSStoreStatus block
 */
static void xdr_encode_AFS_StoreStatus(__be32 **_bp, struct iattr *attr)
{
	__be32 *bp = *_bp;
	u32 mask = 0, mtime = 0, owner = 0, group = 0, mode = 0;

	mask = 0;
	if (attr->ia_valid & ATTR_MTIME) {
		mask |= AFS_SET_MTIME;
		mtime = attr->ia_mtime.tv_sec;
	}

	if (attr->ia_valid & ATTR_UID) {
		mask |= AFS_SET_OWNER;
346
		owner = from_kuid(&init_user_ns, attr->ia_uid);
347 348 349 350
	}

	if (attr->ia_valid & ATTR_GID) {
		mask |= AFS_SET_GROUP;
351
		group = from_kgid(&init_user_ns, attr->ia_gid);
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
	}

	if (attr->ia_valid & ATTR_MODE) {
		mask |= AFS_SET_MODE;
		mode = attr->ia_mode & S_IALLUGO;
	}

	*bp++ = htonl(mask);
	*bp++ = htonl(mtime);
	*bp++ = htonl(owner);
	*bp++ = htonl(group);
	*bp++ = htonl(mode);
	*bp++ = 0;		/* segment size */
	*_bp = bp;
}

D
David Howells 已提交
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
/*
 * decode an AFSFetchVolumeStatus block
 */
static void xdr_decode_AFSFetchVolumeStatus(const __be32 **_bp,
					    struct afs_volume_status *vs)
{
	const __be32 *bp = *_bp;

	vs->vid			= ntohl(*bp++);
	vs->parent_id		= ntohl(*bp++);
	vs->online		= ntohl(*bp++);
	vs->in_service		= ntohl(*bp++);
	vs->blessed		= ntohl(*bp++);
	vs->needs_salvage	= ntohl(*bp++);
	vs->type		= ntohl(*bp++);
	vs->min_quota		= ntohl(*bp++);
	vs->max_quota		= ntohl(*bp++);
	vs->blocks_in_use	= ntohl(*bp++);
	vs->part_blocks_avail	= ntohl(*bp++);
	vs->part_max_blocks	= ntohl(*bp++);
388 389
	vs->vol_copy_date	= 0;
	vs->vol_backup_date	= 0;
D
David Howells 已提交
390 391 392
	*_bp = bp;
}

393 394 395
/*
 * deliver reply data to an FS.FetchStatus
 */
396
static int afs_deliver_fs_fetch_status_vnode(struct afs_call *call)
397
{
398
	struct afs_vnode *vnode = call->reply[0];
399
	const __be32 *bp;
400
	int ret;
L
Linus Torvalds 已提交
401

402
	ret = afs_transfer_reply(call);
403 404
	if (ret < 0)
		return ret;
L
Linus Torvalds 已提交
405

406
	_enter("{%llx:%llu}", vnode->fid.vid, vnode->fid.vnode);
407

408 409
	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
410 411 412 413
	ret = afs_decode_status(call, &bp, &vnode->status, vnode,
				&call->expected_version, NULL);
	if (ret < 0)
		return ret;
414
	xdr_decode_AFSCallBack(call, vnode, &bp);
415
	xdr_decode_AFSVolSync(&bp, call->reply[1]);
L
Linus Torvalds 已提交
416

417 418
	_leave(" = 0 [done]");
	return 0;
D
David Howells 已提交
419
}
420 421 422 423

/*
 * FS.FetchStatus operation type
 */
424 425
static const struct afs_call_type afs_RXFSFetchStatus_vnode = {
	.name		= "FS.FetchStatus(vnode)",
426
	.op		= afs_FS_FetchStatus,
427
	.deliver	= afs_deliver_fs_fetch_status_vnode,
428 429
	.destructor	= afs_flat_call_destructor,
};
L
Linus Torvalds 已提交
430 431 432 433

/*
 * fetch the status information for a file
 */
434 435
int afs_fs_fetch_file_status(struct afs_fs_cursor *fc, struct afs_volsync *volsync,
			     bool new_inode)
L
Linus Torvalds 已提交
436
{
437
	struct afs_vnode *vnode = fc->vnode;
438
	struct afs_call *call;
439
	struct afs_net *net = afs_v2net(vnode);
L
Linus Torvalds 已提交
440 441
	__be32 *bp;

442 443 444
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_fetch_file_status(fc, volsync, new_inode);

445
	_enter(",%x,{%llx:%llu},,",
446
	       key_serial(fc->key), vnode->fid.vid, vnode->fid.vnode);
L
Linus Torvalds 已提交
447

448 449
	call = afs_alloc_flat_call(net, &afs_RXFSFetchStatus_vnode,
				   16, (21 + 3 + 6) * 4);
450 451
	if (!call) {
		fc->ac.error = -ENOMEM;
452
		return -ENOMEM;
453
	}
L
Linus Torvalds 已提交
454

455
	call->key = fc->key;
456 457
	call->reply[0] = vnode;
	call->reply[1] = volsync;
458
	call->expected_version = new_inode ? 1 : vnode->status.data_version;
459
	call->want_reply_time = true;
L
Linus Torvalds 已提交
460 461

	/* marshall the parameters */
462
	bp = call->request;
L
Linus Torvalds 已提交
463 464 465 466 467
	bp[0] = htonl(FSFETCHSTATUS);
	bp[1] = htonl(vnode->fid.vid);
	bp[2] = htonl(vnode->fid.vnode);
	bp[3] = htonl(vnode->fid.unique);

468 469
	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
470
	trace_afs_make_fs_call(call, &vnode->fid);
471 472 473

	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
D
David Howells 已提交
474
}
L
Linus Torvalds 已提交
475 476

/*
477
 * deliver reply data to an FS.FetchData
L
Linus Torvalds 已提交
478
 */
479
static int afs_deliver_fs_fetch_data(struct afs_call *call)
L
Linus Torvalds 已提交
480
{
481 482
	struct afs_vnode *vnode = call->reply[0];
	struct afs_read *req = call->reply[2];
483
	const __be32 *bp;
484
	unsigned int size;
L
Linus Torvalds 已提交
485 486
	int ret;

487 488
	_enter("{%u,%zu/%llu}",
	       call->unmarshall, iov_iter_count(&call->iter), req->actual_len);
489 490 491

	switch (call->unmarshall) {
	case 0:
492
		req->actual_len = 0;
493 494
		req->index = 0;
		req->offset = req->pos & (PAGE_SIZE - 1);
495
		call->unmarshall++;
496 497 498 499 500
		if (call->operation_ID == FSFETCHDATA64) {
			afs_extract_to_tmp64(call);
		} else {
			call->tmp_u = htonl(0);
			afs_extract_to_tmp(call);
D
David Howells 已提交
501
		}
502

503
		/* Fall through - and extract the returned data length */
504
	case 1:
505
		_debug("extract data length");
506
		ret = afs_extract_data(call, true);
507 508
		if (ret < 0)
			return ret;
L
Linus Torvalds 已提交
509

510
		req->actual_len = be64_to_cpu(call->tmp64);
511
		_debug("DATA length: %llu", req->actual_len);
512 513
		req->remain = min(req->len, req->actual_len);
		if (req->remain == 0)
514
			goto no_more_data;
515

516 517
		call->unmarshall++;

518
	begin_page:
519
		ASSERTCMP(req->index, <, req->nr_pages);
520 521
		if (req->remain > PAGE_SIZE - req->offset)
			size = PAGE_SIZE - req->offset;
522 523
		else
			size = req->remain;
524 525 526 527 528
		call->bvec[0].bv_len = size;
		call->bvec[0].bv_offset = req->offset;
		call->bvec[0].bv_page = req->pages[req->index];
		iov_iter_bvec(&call->iter, READ, call->bvec, 1, size);
		ASSERTCMP(size, <=, PAGE_SIZE);
529

530
		/* Fall through - and extract the returned data */
531 532 533
	case 2:
		_debug("extract data %zu/%llu",
		       iov_iter_count(&call->iter), req->remain);
534

535
		ret = afs_extract_data(call, true);
536 537
		if (ret < 0)
			return ret;
538 539 540 541 542
		req->remain -= call->bvec[0].bv_len;
		req->offset += call->bvec[0].bv_len;
		ASSERTCMP(req->offset, <=, PAGE_SIZE);
		if (req->offset == PAGE_SIZE) {
			req->offset = 0;
543 544
			if (req->page_done)
				req->page_done(call, req);
D
David Howells 已提交
545
			req->index++;
546
			if (req->remain > 0)
547
				goto begin_page;
548
		}
549 550 551 552

		ASSERTCMP(req->remain, ==, 0);
		if (req->actual_len <= req->len)
			goto no_more_data;
553 554

		/* Discard any excess data the server gave us */
555 556
		iov_iter_discard(&call->iter, READ, req->actual_len - req->len);
		call->unmarshall = 3;
557 558

		/* Fall through */
559 560 561 562 563
	case 3:
		_debug("extract discard %zu/%llu",
		       iov_iter_count(&call->iter), req->actual_len - req->len);

		ret = afs_extract_data(call, true);
564 565
		if (ret < 0)
			return ret;
L
Linus Torvalds 已提交
566

567
	no_more_data:
568 569
		call->unmarshall = 4;
		afs_extract_to_buf(call, (21 + 3 + 6) * 4);
L
Linus Torvalds 已提交
570

571
		/* Fall through - and extract the metadata */
572 573
	case 4:
		ret = afs_extract_data(call, false);
574 575
		if (ret < 0)
			return ret;
576 577

		bp = call->buffer;
578 579 580 581
		ret = afs_decode_status(call, &bp, &vnode->status, vnode,
					&vnode->status.data_version, req);
		if (ret < 0)
			return ret;
582
		xdr_decode_AFSCallBack(call, vnode, &bp);
583
		xdr_decode_AFSVolSync(&bp, call->reply[1]);
584 585

		call->unmarshall++;
L
Linus Torvalds 已提交
586

587
	case 5:
588
		break;
L
Linus Torvalds 已提交
589 590
	}

591
	for (; req->index < req->nr_pages; req->index++) {
592
		if (req->offset < PAGE_SIZE)
593
			zero_user_segment(req->pages[req->index],
594
					  req->offset, PAGE_SIZE);
595 596
		if (req->page_done)
			req->page_done(call, req);
597
		req->offset = 0;
D
David Howells 已提交
598 599
	}

600 601
	_leave(" = 0 [done]");
	return 0;
D
David Howells 已提交
602
}
L
Linus Torvalds 已提交
603

604 605
static void afs_fetch_data_destructor(struct afs_call *call)
{
606
	struct afs_read *req = call->reply[2];
607 608 609 610 611

	afs_put_read(req);
	afs_flat_call_destructor(call);
}

L
Linus Torvalds 已提交
612
/*
613
 * FS.FetchData operation type
L
Linus Torvalds 已提交
614
 */
615
static const struct afs_call_type afs_RXFSFetchData = {
D
David Howells 已提交
616
	.name		= "FS.FetchData",
617
	.op		= afs_FS_FetchData,
618
	.deliver	= afs_deliver_fs_fetch_data,
619
	.destructor	= afs_fetch_data_destructor,
620 621
};

D
David Howells 已提交
622 623
static const struct afs_call_type afs_RXFSFetchData64 = {
	.name		= "FS.FetchData64",
624
	.op		= afs_FS_FetchData64,
D
David Howells 已提交
625
	.deliver	= afs_deliver_fs_fetch_data,
626
	.destructor	= afs_fetch_data_destructor,
D
David Howells 已提交
627 628 629 630 631
};

/*
 * fetch data from a very large file
 */
632
static int afs_fs_fetch_data64(struct afs_fs_cursor *fc, struct afs_read *req)
D
David Howells 已提交
633
{
634
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
635
	struct afs_call *call;
636
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
637 638 639 640
	__be32 *bp;

	_enter("");

641
	call = afs_alloc_flat_call(net, &afs_RXFSFetchData64, 32, (21 + 3 + 6) * 4);
D
David Howells 已提交
642 643 644
	if (!call)
		return -ENOMEM;

645
	call->key = fc->key;
646 647 648
	call->reply[0] = vnode;
	call->reply[1] = NULL; /* volsync */
	call->reply[2] = req;
649
	call->expected_version = vnode->status.data_version;
650
	call->want_reply_time = true;
D
David Howells 已提交
651 652 653 654 655 656 657

	/* marshall the parameters */
	bp = call->request;
	bp[0] = htonl(FSFETCHDATA64);
	bp[1] = htonl(vnode->fid.vid);
	bp[2] = htonl(vnode->fid.vnode);
	bp[3] = htonl(vnode->fid.unique);
658 659
	bp[4] = htonl(upper_32_bits(req->pos));
	bp[5] = htonl(lower_32_bits(req->pos));
D
David Howells 已提交
660
	bp[6] = 0;
661
	bp[7] = htonl(lower_32_bits(req->len));
D
David Howells 已提交
662

D
David Howells 已提交
663
	refcount_inc(&req->usage);
664 665
	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
666
	trace_afs_make_fs_call(call, &vnode->fid);
667 668
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
D
David Howells 已提交
669 670
}

671 672 673
/*
 * fetch data from a file
 */
674
int afs_fs_fetch_data(struct afs_fs_cursor *fc, struct afs_read *req)
L
Linus Torvalds 已提交
675
{
676
	struct afs_vnode *vnode = fc->vnode;
677
	struct afs_call *call;
678
	struct afs_net *net = afs_v2net(vnode);
L
Linus Torvalds 已提交
679 680
	__be32 *bp;

681 682 683
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_fetch_data(fc, req);

684 685 686
	if (upper_32_bits(req->pos) ||
	    upper_32_bits(req->len) ||
	    upper_32_bits(req->pos + req->len))
687
		return afs_fs_fetch_data64(fc, req);
D
David Howells 已提交
688

689
	_enter("");
L
Linus Torvalds 已提交
690

691
	call = afs_alloc_flat_call(net, &afs_RXFSFetchData, 24, (21 + 3 + 6) * 4);
692 693
	if (!call)
		return -ENOMEM;
L
Linus Torvalds 已提交
694

695
	call->key = fc->key;
696 697 698
	call->reply[0] = vnode;
	call->reply[1] = NULL; /* volsync */
	call->reply[2] = req;
699
	call->expected_version = vnode->status.data_version;
700
	call->want_reply_time = true;
L
Linus Torvalds 已提交
701 702

	/* marshall the parameters */
703 704 705 706 707
	bp = call->request;
	bp[0] = htonl(FSFETCHDATA);
	bp[1] = htonl(vnode->fid.vid);
	bp[2] = htonl(vnode->fid.vnode);
	bp[3] = htonl(vnode->fid.unique);
708 709
	bp[4] = htonl(lower_32_bits(req->pos));
	bp[5] = htonl(lower_32_bits(req->len));
L
Linus Torvalds 已提交
710

D
David Howells 已提交
711
	refcount_inc(&req->usage);
712 713
	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
714
	trace_afs_make_fs_call(call, &vnode->fid);
715 716
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
D
David Howells 已提交
717
}
718 719 720 721

/*
 * deliver reply data to an FS.CreateFile or an FS.MakeDir
 */
722
static int afs_deliver_fs_create_vnode(struct afs_call *call)
723
{
724
	struct afs_vnode *vnode = call->reply[0];
725
	const __be32 *bp;
726
	int ret;
727

728
	_enter("{%u}", call->unmarshall);
729

730
	ret = afs_transfer_reply(call);
731 732
	if (ret < 0)
		return ret;
733 734 735

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
736
	xdr_decode_AFSFid(&bp, call->reply[1]);
737 738 739 740 741 742 743
	ret = afs_decode_status(call, &bp, call->reply[2], NULL, NULL, NULL);
	if (ret < 0)
		return ret;
	ret = afs_decode_status(call, &bp, &vnode->status, vnode,
				&call->expected_version, NULL);
	if (ret < 0)
		return ret;
744
	xdr_decode_AFSCallBack_raw(call, &bp, call->reply[3]);
745
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
746 747 748 749 750 751 752 753

	_leave(" = 0 [done]");
	return 0;
}

/*
 * FS.CreateFile and FS.MakeDir operation type
 */
754 755 756 757 758 759 760 761 762 763
static const struct afs_call_type afs_RXFSCreateFile = {
	.name		= "FS.CreateFile",
	.op		= afs_FS_CreateFile,
	.deliver	= afs_deliver_fs_create_vnode,
	.destructor	= afs_flat_call_destructor,
};

static const struct afs_call_type afs_RXFSMakeDir = {
	.name		= "FS.MakeDir",
	.op		= afs_FS_MakeDir,
764 765 766 767 768 769 770
	.deliver	= afs_deliver_fs_create_vnode,
	.destructor	= afs_flat_call_destructor,
};

/*
 * create a file or make a directory
 */
D
David Howells 已提交
771
int afs_fs_create(struct afs_fs_cursor *fc,
772 773
		  const char *name,
		  umode_t mode,
774
		  u64 current_data_version,
775 776
		  struct afs_fid *newfid,
		  struct afs_file_status *newstatus,
777
		  struct afs_callback *newcb)
778
{
779
	struct afs_vnode *vnode = fc->vnode;
780
	struct afs_call *call;
781
	struct afs_net *net = afs_v2net(vnode);
782 783 784
	size_t namesz, reqsz, padsz;
	__be32 *bp;

785 786 787 788 789 790 791 792 793
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags)){
		if (S_ISDIR(mode))
			return yfs_fs_make_dir(fc, name, mode, current_data_version,
					       newfid, newstatus, newcb);
		else
			return yfs_fs_create_file(fc, name, mode, current_data_version,
						  newfid, newstatus, newcb);
	}

794 795 796 797 798 799
	_enter("");

	namesz = strlen(name);
	padsz = (4 - (namesz & 3)) & 3;
	reqsz = (5 * 4) + namesz + padsz + (6 * 4);

800 801 802
	call = afs_alloc_flat_call(
		net, S_ISDIR(mode) ? &afs_RXFSMakeDir : &afs_RXFSCreateFile,
		reqsz, (3 + 21 + 21 + 3 + 6) * 4);
803 804 805
	if (!call)
		return -ENOMEM;

806
	call->key = fc->key;
807 808 809 810
	call->reply[0] = vnode;
	call->reply[1] = newfid;
	call->reply[2] = newstatus;
	call->reply[3] = newcb;
811
	call->expected_version = current_data_version + 1;
812
	call->want_reply_time = true;
813 814 815 816 817 818 819 820 821 822 823 824 825 826

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(S_ISDIR(mode) ? FSMAKEDIR : FSCREATEFILE);
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);
	*bp++ = htonl(namesz);
	memcpy(bp, name, namesz);
	bp = (void *) bp + namesz;
	if (padsz > 0) {
		memset(bp, 0, padsz);
		bp = (void *) bp + padsz;
	}
827 828
	*bp++ = htonl(AFS_SET_MODE | AFS_SET_MTIME);
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
829 830 831 832 833
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = htonl(mode & S_IALLUGO); /* unix mode */
	*bp++ = 0; /* segment size */

834
	afs_use_fs_server(call, fc->cbi);
D
David Howells 已提交
835
	trace_afs_make_fs_call1(call, &vnode->fid, name);
836 837
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
838 839 840
}

/*
J
Joe Gorse 已提交
841 842
 * Deliver reply data to any operation that returns file status and volume
 * sync.
843
 */
J
Joe Gorse 已提交
844
static int afs_deliver_fs_status_and_vol(struct afs_call *call)
845
{
846
	struct afs_vnode *vnode = call->reply[0];
847
	const __be32 *bp;
848
	int ret;
849

850
	_enter("{%u}", call->unmarshall);
851

852
	ret = afs_transfer_reply(call);
853 854
	if (ret < 0)
		return ret;
855 856 857

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
858 859 860 861
	ret = afs_decode_status(call, &bp, &vnode->status, vnode,
				&call->expected_version, NULL);
	if (ret < 0)
		return ret;
862
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
863 864 865 866 867 868 869 870

	_leave(" = 0 [done]");
	return 0;
}

/*
 * FS.RemoveDir/FS.RemoveFile operation type
 */
871 872 873
static const struct afs_call_type afs_RXFSRemoveFile = {
	.name		= "FS.RemoveFile",
	.op		= afs_FS_RemoveFile,
J
Joe Gorse 已提交
874
	.deliver	= afs_deliver_fs_status_and_vol,
875 876 877 878 879 880
	.destructor	= afs_flat_call_destructor,
};

static const struct afs_call_type afs_RXFSRemoveDir = {
	.name		= "FS.RemoveDir",
	.op		= afs_FS_RemoveDir,
J
Joe Gorse 已提交
881
	.deliver	= afs_deliver_fs_status_and_vol,
882 883 884 885 886 887
	.destructor	= afs_flat_call_destructor,
};

/*
 * remove a file or directory
 */
888 889
int afs_fs_remove(struct afs_fs_cursor *fc, struct afs_vnode *vnode,
		  const char *name, bool isdir, u64 current_data_version)
890
{
891
	struct afs_vnode *dvnode = fc->vnode;
892
	struct afs_call *call;
893
	struct afs_net *net = afs_v2net(dvnode);
894 895 896
	size_t namesz, reqsz, padsz;
	__be32 *bp;

897 898 899
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_remove(fc, vnode, name, isdir, current_data_version);

900 901 902 903 904 905
	_enter("");

	namesz = strlen(name);
	padsz = (4 - (namesz & 3)) & 3;
	reqsz = (5 * 4) + namesz + padsz;

906 907 908
	call = afs_alloc_flat_call(
		net, isdir ? &afs_RXFSRemoveDir : &afs_RXFSRemoveFile,
		reqsz, (21 + 6) * 4);
909 910 911
	if (!call)
		return -ENOMEM;

912
	call->key = fc->key;
913 914
	call->reply[0] = dvnode;
	call->reply[1] = vnode;
915
	call->expected_version = current_data_version + 1;
916 917 918 919

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(isdir ? FSREMOVEDIR : FSREMOVEFILE);
920 921 922
	*bp++ = htonl(dvnode->fid.vid);
	*bp++ = htonl(dvnode->fid.vnode);
	*bp++ = htonl(dvnode->fid.unique);
923 924 925 926 927 928 929 930
	*bp++ = htonl(namesz);
	memcpy(bp, name, namesz);
	bp = (void *) bp + namesz;
	if (padsz > 0) {
		memset(bp, 0, padsz);
		bp = (void *) bp + padsz;
	}

931
	afs_use_fs_server(call, fc->cbi);
D
David Howells 已提交
932
	trace_afs_make_fs_call1(call, &dvnode->fid, name);
933 934
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
935 936 937 938 939
}

/*
 * deliver reply data to an FS.Link
 */
940
static int afs_deliver_fs_link(struct afs_call *call)
941
{
942
	struct afs_vnode *dvnode = call->reply[0], *vnode = call->reply[1];
943
	const __be32 *bp;
944
	int ret;
945

946
	_enter("{%u}", call->unmarshall);
947

948
	ret = afs_transfer_reply(call);
949 950
	if (ret < 0)
		return ret;
951 952 953

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
954 955 956 957 958 959 960
	ret = afs_decode_status(call, &bp, &vnode->status, vnode, NULL, NULL);
	if (ret < 0)
		return ret;
	ret = afs_decode_status(call, &bp, &dvnode->status, dvnode,
				&call->expected_version, NULL);
	if (ret < 0)
		return ret;
961
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
962 963 964 965 966 967 968 969 970 971

	_leave(" = 0 [done]");
	return 0;
}

/*
 * FS.Link operation type
 */
static const struct afs_call_type afs_RXFSLink = {
	.name		= "FS.Link",
972
	.op		= afs_FS_Link,
973 974 975 976 977 978 979
	.deliver	= afs_deliver_fs_link,
	.destructor	= afs_flat_call_destructor,
};

/*
 * make a hard link
 */
980
int afs_fs_link(struct afs_fs_cursor *fc, struct afs_vnode *vnode,
981
		const char *name, u64 current_data_version)
982
{
983
	struct afs_vnode *dvnode = fc->vnode;
984
	struct afs_call *call;
985
	struct afs_net *net = afs_v2net(vnode);
986 987 988
	size_t namesz, reqsz, padsz;
	__be32 *bp;

989 990 991
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_link(fc, vnode, name, current_data_version);

992 993 994 995 996 997
	_enter("");

	namesz = strlen(name);
	padsz = (4 - (namesz & 3)) & 3;
	reqsz = (5 * 4) + namesz + padsz + (3 * 4);

998
	call = afs_alloc_flat_call(net, &afs_RXFSLink, reqsz, (21 + 21 + 6) * 4);
999 1000 1001
	if (!call)
		return -ENOMEM;

1002
	call->key = fc->key;
1003 1004
	call->reply[0] = dvnode;
	call->reply[1] = vnode;
1005
	call->expected_version = current_data_version + 1;
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSLINK);
	*bp++ = htonl(dvnode->fid.vid);
	*bp++ = htonl(dvnode->fid.vnode);
	*bp++ = htonl(dvnode->fid.unique);
	*bp++ = htonl(namesz);
	memcpy(bp, name, namesz);
	bp = (void *) bp + namesz;
	if (padsz > 0) {
		memset(bp, 0, padsz);
		bp = (void *) bp + padsz;
	}
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);

1024
	afs_use_fs_server(call, fc->cbi);
D
David Howells 已提交
1025
	trace_afs_make_fs_call1(call, &vnode->fid, name);
1026 1027
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
1028 1029 1030 1031 1032
}

/*
 * deliver reply data to an FS.Symlink
 */
1033
static int afs_deliver_fs_symlink(struct afs_call *call)
1034
{
1035
	struct afs_vnode *vnode = call->reply[0];
1036
	const __be32 *bp;
1037
	int ret;
1038

1039
	_enter("{%u}", call->unmarshall);
1040

1041
	ret = afs_transfer_reply(call);
1042 1043
	if (ret < 0)
		return ret;
1044 1045 1046

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
1047
	xdr_decode_AFSFid(&bp, call->reply[1]);
1048 1049 1050 1051 1052 1053 1054
	ret = afs_decode_status(call, &bp, call->reply[2], NULL, NULL, NULL);
	if (ret < 0)
		return ret;
	ret = afs_decode_status(call, &bp, &vnode->status, vnode,
				&call->expected_version, NULL);
	if (ret < 0)
		return ret;
1055
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065

	_leave(" = 0 [done]");
	return 0;
}

/*
 * FS.Symlink operation type
 */
static const struct afs_call_type afs_RXFSSymlink = {
	.name		= "FS.Symlink",
1066
	.op		= afs_FS_Symlink,
1067 1068 1069 1070 1071 1072 1073
	.deliver	= afs_deliver_fs_symlink,
	.destructor	= afs_flat_call_destructor,
};

/*
 * create a symbolic link
 */
D
David Howells 已提交
1074
int afs_fs_symlink(struct afs_fs_cursor *fc,
1075 1076
		   const char *name,
		   const char *contents,
1077
		   u64 current_data_version,
1078
		   struct afs_fid *newfid,
1079
		   struct afs_file_status *newstatus)
1080
{
1081
	struct afs_vnode *vnode = fc->vnode;
1082
	struct afs_call *call;
1083
	struct afs_net *net = afs_v2net(vnode);
1084 1085 1086
	size_t namesz, reqsz, padsz, c_namesz, c_padsz;
	__be32 *bp;

1087 1088 1089 1090
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_symlink(fc, name, contents, current_data_version,
				      newfid, newstatus);

1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
	_enter("");

	namesz = strlen(name);
	padsz = (4 - (namesz & 3)) & 3;

	c_namesz = strlen(contents);
	c_padsz = (4 - (c_namesz & 3)) & 3;

	reqsz = (6 * 4) + namesz + padsz + c_namesz + c_padsz + (6 * 4);

1101
	call = afs_alloc_flat_call(net, &afs_RXFSSymlink, reqsz,
1102 1103 1104 1105
				   (3 + 21 + 21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1106
	call->key = fc->key;
1107 1108 1109
	call->reply[0] = vnode;
	call->reply[1] = newfid;
	call->reply[2] = newstatus;
1110
	call->expected_version = current_data_version + 1;
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSSYMLINK);
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);
	*bp++ = htonl(namesz);
	memcpy(bp, name, namesz);
	bp = (void *) bp + namesz;
	if (padsz > 0) {
		memset(bp, 0, padsz);
		bp = (void *) bp + padsz;
	}
	*bp++ = htonl(c_namesz);
	memcpy(bp, contents, c_namesz);
	bp = (void *) bp + c_namesz;
	if (c_padsz > 0) {
		memset(bp, 0, c_padsz);
		bp = (void *) bp + c_padsz;
	}
1132 1133
	*bp++ = htonl(AFS_SET_MODE | AFS_SET_MTIME);
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
1134 1135 1136 1137 1138
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = htonl(S_IRWXUGO); /* unix mode */
	*bp++ = 0; /* segment size */

1139
	afs_use_fs_server(call, fc->cbi);
D
David Howells 已提交
1140
	trace_afs_make_fs_call1(call, &vnode->fid, name);
1141 1142
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
1143 1144 1145 1146 1147
}

/*
 * deliver reply data to an FS.Rename
 */
1148
static int afs_deliver_fs_rename(struct afs_call *call)
1149
{
1150
	struct afs_vnode *orig_dvnode = call->reply[0], *new_dvnode = call->reply[1];
1151
	const __be32 *bp;
1152
	int ret;
1153

1154
	_enter("{%u}", call->unmarshall);
1155

1156
	ret = afs_transfer_reply(call);
1157 1158
	if (ret < 0)
		return ret;
1159 1160 1161

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
	ret = afs_decode_status(call, &bp, &orig_dvnode->status, orig_dvnode,
				&call->expected_version, NULL);
	if (ret < 0)
		return ret;
	if (new_dvnode != orig_dvnode) {
		ret = afs_decode_status(call, &bp, &new_dvnode->status, new_dvnode,
					&call->expected_version_2, NULL);
		if (ret < 0)
			return ret;
	}
1172
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1173 1174 1175 1176 1177 1178 1179 1180 1181 1182

	_leave(" = 0 [done]");
	return 0;
}

/*
 * FS.Rename operation type
 */
static const struct afs_call_type afs_RXFSRename = {
	.name		= "FS.Rename",
1183
	.op		= afs_FS_Rename,
1184 1185 1186 1187 1188 1189 1190
	.deliver	= afs_deliver_fs_rename,
	.destructor	= afs_flat_call_destructor,
};

/*
 * create a symbolic link
 */
D
David Howells 已提交
1191
int afs_fs_rename(struct afs_fs_cursor *fc,
1192 1193
		  const char *orig_name,
		  struct afs_vnode *new_dvnode,
1194 1195 1196
		  const char *new_name,
		  u64 current_orig_data_version,
		  u64 current_new_data_version)
1197
{
1198
	struct afs_vnode *orig_dvnode = fc->vnode;
1199
	struct afs_call *call;
1200
	struct afs_net *net = afs_v2net(orig_dvnode);
1201 1202 1203
	size_t reqsz, o_namesz, o_padsz, n_namesz, n_padsz;
	__be32 *bp;

1204 1205 1206 1207 1208 1209
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_rename(fc, orig_name,
				     new_dvnode, new_name,
				     current_orig_data_version,
				     current_new_data_version);

1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
	_enter("");

	o_namesz = strlen(orig_name);
	o_padsz = (4 - (o_namesz & 3)) & 3;

	n_namesz = strlen(new_name);
	n_padsz = (4 - (n_namesz & 3)) & 3;

	reqsz = (4 * 4) +
		4 + o_namesz + o_padsz +
		(3 * 4) +
		4 + n_namesz + n_padsz;

1223
	call = afs_alloc_flat_call(net, &afs_RXFSRename, reqsz, (21 + 21 + 6) * 4);
1224 1225 1226
	if (!call)
		return -ENOMEM;

1227
	call->key = fc->key;
1228 1229
	call->reply[0] = orig_dvnode;
	call->reply[1] = new_dvnode;
1230 1231
	call->expected_version = current_orig_data_version + 1;
	call->expected_version_2 = current_new_data_version + 1;
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSRENAME);
	*bp++ = htonl(orig_dvnode->fid.vid);
	*bp++ = htonl(orig_dvnode->fid.vnode);
	*bp++ = htonl(orig_dvnode->fid.unique);
	*bp++ = htonl(o_namesz);
	memcpy(bp, orig_name, o_namesz);
	bp = (void *) bp + o_namesz;
	if (o_padsz > 0) {
		memset(bp, 0, o_padsz);
		bp = (void *) bp + o_padsz;
	}

	*bp++ = htonl(new_dvnode->fid.vid);
	*bp++ = htonl(new_dvnode->fid.vnode);
	*bp++ = htonl(new_dvnode->fid.unique);
	*bp++ = htonl(n_namesz);
	memcpy(bp, new_name, n_namesz);
	bp = (void *) bp + n_namesz;
	if (n_padsz > 0) {
		memset(bp, 0, n_padsz);
		bp = (void *) bp + n_padsz;
	}

1258
	afs_use_fs_server(call, fc->cbi);
D
David Howells 已提交
1259
	trace_afs_make_fs_call2(call, &orig_dvnode->fid, orig_name, new_name);
1260 1261
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
1262
}
1263 1264 1265 1266

/*
 * deliver reply data to an FS.StoreData
 */
1267
static int afs_deliver_fs_store_data(struct afs_call *call)
1268
{
1269
	struct afs_vnode *vnode = call->reply[0];
1270
	const __be32 *bp;
1271
	int ret;
1272

1273
	_enter("");
1274

1275
	ret = afs_transfer_reply(call);
1276 1277
	if (ret < 0)
		return ret;
1278 1279 1280

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
1281 1282 1283 1284
	ret = afs_decode_status(call, &bp, &vnode->status, vnode,
				&call->expected_version, NULL);
	if (ret < 0)
		return ret;
1285
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297

	afs_pages_written_back(vnode, call);

	_leave(" = 0 [done]");
	return 0;
}

/*
 * FS.StoreData operation type
 */
static const struct afs_call_type afs_RXFSStoreData = {
	.name		= "FS.StoreData",
1298
	.op		= afs_FS_StoreData,
1299 1300 1301 1302
	.deliver	= afs_deliver_fs_store_data,
	.destructor	= afs_flat_call_destructor,
};

D
David Howells 已提交
1303 1304
static const struct afs_call_type afs_RXFSStoreData64 = {
	.name		= "FS.StoreData64",
1305
	.op		= afs_FS_StoreData64,
D
David Howells 已提交
1306 1307 1308 1309 1310 1311 1312
	.deliver	= afs_deliver_fs_store_data,
	.destructor	= afs_flat_call_destructor,
};

/*
 * store a set of pages to a very large file
 */
D
David Howells 已提交
1313
static int afs_fs_store_data64(struct afs_fs_cursor *fc,
1314
			       struct address_space *mapping,
D
David Howells 已提交
1315 1316
			       pgoff_t first, pgoff_t last,
			       unsigned offset, unsigned to,
1317
			       loff_t size, loff_t pos, loff_t i_size)
D
David Howells 已提交
1318
{
1319
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1320
	struct afs_call *call;
1321
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1322 1323
	__be32 *bp;

1324
	_enter(",%x,{%llx:%llu},,",
1325
	       key_serial(fc->key), vnode->fid.vid, vnode->fid.vnode);
D
David Howells 已提交
1326

1327
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData64,
D
David Howells 已提交
1328 1329 1330 1331 1332
				   (4 + 6 + 3 * 2) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1333 1334
	call->key = fc->key;
	call->mapping = mapping;
1335
	call->reply[0] = vnode;
D
David Howells 已提交
1336 1337 1338 1339 1340
	call->first = first;
	call->last = last;
	call->first_offset = offset;
	call->last_to = to;
	call->send_pages = true;
1341
	call->expected_version = vnode->status.data_version + 1;
D
David Howells 已提交
1342 1343 1344 1345 1346 1347 1348 1349

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSSTOREDATA64);
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);

1350 1351
	*bp++ = htonl(AFS_SET_MTIME); /* mask */
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
D
David Howells 已提交
1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = 0; /* unix mode */
	*bp++ = 0; /* segment size */

	*bp++ = htonl(pos >> 32);
	*bp++ = htonl((u32) pos);
	*bp++ = htonl(size >> 32);
	*bp++ = htonl((u32) size);
	*bp++ = htonl(i_size >> 32);
	*bp++ = htonl((u32) i_size);

1364
	trace_afs_make_fs_call(call, &vnode->fid);
1365 1366
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
D
David Howells 已提交
1367 1368
}

1369 1370 1371
/*
 * store a set of pages
 */
1372
int afs_fs_store_data(struct afs_fs_cursor *fc, struct address_space *mapping,
1373
		      pgoff_t first, pgoff_t last,
1374
		      unsigned offset, unsigned to)
1375
{
1376
	struct afs_vnode *vnode = fc->vnode;
1377
	struct afs_call *call;
1378
	struct afs_net *net = afs_v2net(vnode);
1379 1380 1381
	loff_t size, pos, i_size;
	__be32 *bp;

1382 1383 1384
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_store_data(fc, mapping, first, last, offset, to);

1385
	_enter(",%x,{%llx:%llu},,",
1386
	       key_serial(fc->key), vnode->fid.vid, vnode->fid.vnode);
1387

1388
	size = (loff_t)to - (loff_t)offset;
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
	if (first != last)
		size += (loff_t)(last - first) << PAGE_SHIFT;
	pos = (loff_t)first << PAGE_SHIFT;
	pos += offset;

	i_size = i_size_read(&vnode->vfs_inode);
	if (pos + size > i_size)
		i_size = size + pos;

	_debug("size %llx, at %llx, i_size %llx",
	       (unsigned long long) size, (unsigned long long) pos,
	       (unsigned long long) i_size);

D
David Howells 已提交
1402
	if (pos >> 32 || i_size >> 32 || size >> 32 || (pos + size) >> 32)
1403
		return afs_fs_store_data64(fc, mapping, first, last, offset, to,
1404
					   size, pos, i_size);
1405

1406
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData,
1407 1408 1409 1410 1411
				   (4 + 6 + 3) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1412 1413
	call->key = fc->key;
	call->mapping = mapping;
1414
	call->reply[0] = vnode;
1415 1416 1417 1418 1419
	call->first = first;
	call->last = last;
	call->first_offset = offset;
	call->last_to = to;
	call->send_pages = true;
1420
	call->expected_version = vnode->status.data_version + 1;
1421 1422 1423 1424 1425 1426 1427 1428

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSSTOREDATA);
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);

1429 1430
	*bp++ = htonl(AFS_SET_MTIME); /* mask */
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
1431 1432 1433 1434 1435 1436 1437 1438 1439
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = 0; /* unix mode */
	*bp++ = 0; /* segment size */

	*bp++ = htonl(pos);
	*bp++ = htonl(size);
	*bp++ = htonl(i_size);

1440
	afs_use_fs_server(call, fc->cbi);
1441
	trace_afs_make_fs_call(call, &vnode->fid);
1442 1443
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
1444 1445 1446 1447 1448
}

/*
 * deliver reply data to an FS.StoreStatus
 */
1449
static int afs_deliver_fs_store_status(struct afs_call *call)
1450
{
1451
	struct afs_vnode *vnode = call->reply[0];
1452
	const __be32 *bp;
1453
	int ret;
1454

1455
	_enter("");
1456

1457
	ret = afs_transfer_reply(call);
1458 1459
	if (ret < 0)
		return ret;
1460 1461 1462

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
1463 1464 1465 1466
	ret = afs_decode_status(call, &bp, &vnode->status, vnode,
				&call->expected_version, NULL);
	if (ret < 0)
		return ret;
1467
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477

	_leave(" = 0 [done]");
	return 0;
}

/*
 * FS.StoreStatus operation type
 */
static const struct afs_call_type afs_RXFSStoreStatus = {
	.name		= "FS.StoreStatus",
1478
	.op		= afs_FS_StoreStatus,
1479 1480 1481 1482 1483 1484
	.deliver	= afs_deliver_fs_store_status,
	.destructor	= afs_flat_call_destructor,
};

static const struct afs_call_type afs_RXFSStoreData_as_Status = {
	.name		= "FS.StoreData",
1485
	.op		= afs_FS_StoreData,
1486 1487 1488 1489
	.deliver	= afs_deliver_fs_store_status,
	.destructor	= afs_flat_call_destructor,
};

D
David Howells 已提交
1490 1491
static const struct afs_call_type afs_RXFSStoreData64_as_Status = {
	.name		= "FS.StoreData64",
1492
	.op		= afs_FS_StoreData64,
D
David Howells 已提交
1493 1494 1495 1496 1497 1498 1499 1500
	.deliver	= afs_deliver_fs_store_status,
	.destructor	= afs_flat_call_destructor,
};

/*
 * set the attributes on a very large file, using FS.StoreData rather than
 * FS.StoreStatus so as to alter the file size also
 */
1501
static int afs_fs_setattr_size64(struct afs_fs_cursor *fc, struct iattr *attr)
D
David Howells 已提交
1502
{
1503
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1504
	struct afs_call *call;
1505
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1506 1507
	__be32 *bp;

1508
	_enter(",%x,{%llx:%llu},,",
1509
	       key_serial(fc->key), vnode->fid.vid, vnode->fid.vnode);
D
David Howells 已提交
1510 1511 1512

	ASSERT(attr->ia_valid & ATTR_SIZE);

1513
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData64_as_Status,
D
David Howells 已提交
1514 1515 1516 1517 1518
				   (4 + 6 + 3 * 2) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1519
	call->key = fc->key;
1520
	call->reply[0] = vnode;
1521
	call->expected_version = vnode->status.data_version + 1;
D
David Howells 已提交
1522 1523 1524 1525 1526 1527 1528 1529 1530 1531

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSSTOREDATA64);
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);

	xdr_encode_AFS_StoreStatus(&bp, attr);

1532 1533
	*bp++ = htonl(attr->ia_size >> 32);	/* position of start of write */
	*bp++ = htonl((u32) attr->ia_size);
D
David Howells 已提交
1534 1535 1536 1537 1538
	*bp++ = 0;				/* size of write */
	*bp++ = 0;
	*bp++ = htonl(attr->ia_size >> 32);	/* new file length */
	*bp++ = htonl((u32) attr->ia_size);

1539
	afs_use_fs_server(call, fc->cbi);
1540
	trace_afs_make_fs_call(call, &vnode->fid);
1541 1542
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
D
David Howells 已提交
1543 1544
}

1545 1546 1547 1548
/*
 * set the attributes on a file, using FS.StoreData rather than FS.StoreStatus
 * so as to alter the file size also
 */
1549
static int afs_fs_setattr_size(struct afs_fs_cursor *fc, struct iattr *attr)
1550
{
1551
	struct afs_vnode *vnode = fc->vnode;
1552
	struct afs_call *call;
1553
	struct afs_net *net = afs_v2net(vnode);
1554 1555
	__be32 *bp;

1556
	_enter(",%x,{%llx:%llu},,",
1557
	       key_serial(fc->key), vnode->fid.vid, vnode->fid.vnode);
1558 1559

	ASSERT(attr->ia_valid & ATTR_SIZE);
D
David Howells 已提交
1560
	if (attr->ia_size >> 32)
1561
		return afs_fs_setattr_size64(fc, attr);
1562

1563
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData_as_Status,
1564 1565 1566 1567 1568
				   (4 + 6 + 3) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1569
	call->key = fc->key;
1570
	call->reply[0] = vnode;
1571
	call->expected_version = vnode->status.data_version + 1;
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSSTOREDATA);
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);

	xdr_encode_AFS_StoreStatus(&bp, attr);

1582
	*bp++ = htonl(attr->ia_size);		/* position of start of write */
1583 1584 1585
	*bp++ = 0;				/* size of write */
	*bp++ = htonl(attr->ia_size);		/* new file length */

1586
	afs_use_fs_server(call, fc->cbi);
1587
	trace_afs_make_fs_call(call, &vnode->fid);
1588 1589
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
1590 1591 1592 1593 1594 1595
}

/*
 * set the attributes on a file, using FS.StoreData if there's a change in file
 * size, and FS.StoreStatus otherwise
 */
1596
int afs_fs_setattr(struct afs_fs_cursor *fc, struct iattr *attr)
1597
{
1598
	struct afs_vnode *vnode = fc->vnode;
1599
	struct afs_call *call;
1600
	struct afs_net *net = afs_v2net(vnode);
1601 1602
	__be32 *bp;

1603 1604 1605
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_setattr(fc, attr);

1606
	if (attr->ia_valid & ATTR_SIZE)
1607
		return afs_fs_setattr_size(fc, attr);
1608

1609
	_enter(",%x,{%llx:%llu},,",
1610
	       key_serial(fc->key), vnode->fid.vid, vnode->fid.vnode);
1611

1612
	call = afs_alloc_flat_call(net, &afs_RXFSStoreStatus,
1613 1614 1615 1616 1617
				   (4 + 6) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1618
	call->key = fc->key;
1619
	call->reply[0] = vnode;
1620
	call->expected_version = vnode->status.data_version;
1621 1622 1623 1624 1625 1626 1627 1628 1629 1630

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSSTORESTATUS);
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);

	xdr_encode_AFS_StoreStatus(&bp, attr);

1631
	afs_use_fs_server(call, fc->cbi);
1632
	trace_afs_make_fs_call(call, &vnode->fid);
1633 1634
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
1635
}
D
David Howells 已提交
1636 1637 1638 1639

/*
 * deliver reply data to an FS.GetVolumeStatus
 */
1640
static int afs_deliver_fs_get_volume_status(struct afs_call *call)
D
David Howells 已提交
1641 1642 1643
{
	const __be32 *bp;
	char *p;
1644
	u32 size;
D
David Howells 已提交
1645 1646
	int ret;

1647
	_enter("{%u}", call->unmarshall);
D
David Howells 已提交
1648 1649 1650 1651

	switch (call->unmarshall) {
	case 0:
		call->unmarshall++;
1652
		afs_extract_to_buf(call, 12 * 4);
D
David Howells 已提交
1653

1654
		/* Fall through - and extract the returned status record */
D
David Howells 已提交
1655 1656
	case 1:
		_debug("extract status");
1657
		ret = afs_extract_data(call, true);
1658 1659
		if (ret < 0)
			return ret;
D
David Howells 已提交
1660 1661

		bp = call->buffer;
1662
		xdr_decode_AFSFetchVolumeStatus(&bp, call->reply[1]);
D
David Howells 已提交
1663
		call->unmarshall++;
1664
		afs_extract_to_tmp(call);
D
David Howells 已提交
1665

1666
		/* Fall through - and extract the volume name length */
D
David Howells 已提交
1667
	case 2:
1668
		ret = afs_extract_data(call, true);
1669 1670
		if (ret < 0)
			return ret;
D
David Howells 已提交
1671 1672 1673 1674

		call->count = ntohl(call->tmp);
		_debug("volname length: %u", call->count);
		if (call->count >= AFSNAMEMAX)
1675 1676
			return afs_protocol_error(call, -EBADMSG,
						  afs_eproto_volname_len);
1677 1678
		size = (call->count + 3) & ~3; /* It's padded */
		afs_extract_begin(call, call->reply[2], size);
D
David Howells 已提交
1679 1680
		call->unmarshall++;

1681
		/* Fall through - and extract the volume name */
D
David Howells 已提交
1682 1683
	case 3:
		_debug("extract volname");
1684 1685 1686
		ret = afs_extract_data(call, true);
		if (ret < 0)
			return ret;
D
David Howells 已提交
1687

1688
		p = call->reply[2];
D
David Howells 已提交
1689 1690
		p[call->count] = 0;
		_debug("volname '%s'", p);
1691
		afs_extract_to_tmp(call);
D
David Howells 已提交
1692 1693
		call->unmarshall++;

1694
		/* Fall through - and extract the offline message length */
1695 1696
	case 4:
		ret = afs_extract_data(call, true);
1697 1698
		if (ret < 0)
			return ret;
D
David Howells 已提交
1699 1700 1701 1702

		call->count = ntohl(call->tmp);
		_debug("offline msg length: %u", call->count);
		if (call->count >= AFSNAMEMAX)
1703 1704
			return afs_protocol_error(call, -EBADMSG,
						  afs_eproto_offline_msg_len);
1705 1706
		size = (call->count + 3) & ~3; /* It's padded */
		afs_extract_begin(call, call->reply[2], size);
D
David Howells 已提交
1707 1708
		call->unmarshall++;

1709
		/* Fall through - and extract the offline message */
1710
	case 5:
D
David Howells 已提交
1711
		_debug("extract offline");
1712 1713 1714
		ret = afs_extract_data(call, true);
		if (ret < 0)
			return ret;
D
David Howells 已提交
1715

1716
		p = call->reply[2];
D
David Howells 已提交
1717 1718 1719
		p[call->count] = 0;
		_debug("offline '%s'", p);

1720
		afs_extract_to_tmp(call);
D
David Howells 已提交
1721 1722
		call->unmarshall++;

1723
		/* Fall through - and extract the message of the day length */
1724 1725
	case 6:
		ret = afs_extract_data(call, true);
1726 1727
		if (ret < 0)
			return ret;
D
David Howells 已提交
1728 1729 1730 1731

		call->count = ntohl(call->tmp);
		_debug("motd length: %u", call->count);
		if (call->count >= AFSNAMEMAX)
1732 1733
			return afs_protocol_error(call, -EBADMSG,
						  afs_eproto_motd_len);
1734 1735
		size = (call->count + 3) & ~3; /* It's padded */
		afs_extract_begin(call, call->reply[2], size);
D
David Howells 已提交
1736 1737
		call->unmarshall++;

1738
		/* Fall through - and extract the message of the day */
1739
	case 7:
D
David Howells 已提交
1740
		_debug("extract motd");
1741 1742 1743
		ret = afs_extract_data(call, false);
		if (ret < 0)
			return ret;
D
David Howells 已提交
1744

1745
		p = call->reply[2];
D
David Howells 已提交
1746 1747 1748 1749 1750
		p[call->count] = 0;
		_debug("motd '%s'", p);

		call->unmarshall++;

1751
	case 8:
D
David Howells 已提交
1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763
		break;
	}

	_leave(" = 0 [done]");
	return 0;
}

/*
 * destroy an FS.GetVolumeStatus call
 */
static void afs_get_volume_status_call_destructor(struct afs_call *call)
{
1764 1765
	kfree(call->reply[2]);
	call->reply[2] = NULL;
D
David Howells 已提交
1766 1767 1768 1769 1770 1771 1772 1773
	afs_flat_call_destructor(call);
}

/*
 * FS.GetVolumeStatus operation type
 */
static const struct afs_call_type afs_RXFSGetVolumeStatus = {
	.name		= "FS.GetVolumeStatus",
1774
	.op		= afs_FS_GetVolumeStatus,
D
David Howells 已提交
1775 1776 1777 1778 1779 1780 1781
	.deliver	= afs_deliver_fs_get_volume_status,
	.destructor	= afs_get_volume_status_call_destructor,
};

/*
 * fetch the status of a volume
 */
D
David Howells 已提交
1782
int afs_fs_get_volume_status(struct afs_fs_cursor *fc,
1783
			     struct afs_volume_status *vs)
D
David Howells 已提交
1784
{
1785
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1786
	struct afs_call *call;
1787
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1788 1789 1790
	__be32 *bp;
	void *tmpbuf;

1791 1792 1793
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_get_volume_status(fc, vs);

D
David Howells 已提交
1794 1795 1796 1797 1798 1799
	_enter("");

	tmpbuf = kmalloc(AFSOPAQUEMAX, GFP_KERNEL);
	if (!tmpbuf)
		return -ENOMEM;

1800
	call = afs_alloc_flat_call(net, &afs_RXFSGetVolumeStatus, 2 * 4, 12 * 4);
D
David Howells 已提交
1801 1802 1803 1804 1805
	if (!call) {
		kfree(tmpbuf);
		return -ENOMEM;
	}

1806
	call->key = fc->key;
1807 1808 1809
	call->reply[0] = vnode;
	call->reply[1] = vs;
	call->reply[2] = tmpbuf;
D
David Howells 已提交
1810 1811 1812 1813 1814 1815

	/* marshall the parameters */
	bp = call->request;
	bp[0] = htonl(FSGETVOLUMESTATUS);
	bp[1] = htonl(vnode->fid.vid);

1816
	afs_use_fs_server(call, fc->cbi);
1817
	trace_afs_make_fs_call(call, &vnode->fid);
1818 1819
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
D
David Howells 已提交
1820
}
D
David Howells 已提交
1821 1822 1823 1824

/*
 * deliver reply data to an FS.SetLock, FS.ExtendLock or FS.ReleaseLock
 */
1825
static int afs_deliver_fs_xxxx_lock(struct afs_call *call)
D
David Howells 已提交
1826 1827
{
	const __be32 *bp;
1828
	int ret;
D
David Howells 已提交
1829

1830
	_enter("{%u}", call->unmarshall);
D
David Howells 已提交
1831

1832
	ret = afs_transfer_reply(call);
1833 1834
	if (ret < 0)
		return ret;
D
David Howells 已提交
1835 1836 1837

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
1838
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
D
David Howells 已提交
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848

	_leave(" = 0 [done]");
	return 0;
}

/*
 * FS.SetLock operation type
 */
static const struct afs_call_type afs_RXFSSetLock = {
	.name		= "FS.SetLock",
1849
	.op		= afs_FS_SetLock,
D
David Howells 已提交
1850
	.deliver	= afs_deliver_fs_xxxx_lock,
1851
	.done		= afs_lock_op_done,
D
David Howells 已提交
1852 1853 1854 1855 1856 1857 1858 1859
	.destructor	= afs_flat_call_destructor,
};

/*
 * FS.ExtendLock operation type
 */
static const struct afs_call_type afs_RXFSExtendLock = {
	.name		= "FS.ExtendLock",
1860
	.op		= afs_FS_ExtendLock,
D
David Howells 已提交
1861
	.deliver	= afs_deliver_fs_xxxx_lock,
1862
	.done		= afs_lock_op_done,
D
David Howells 已提交
1863 1864 1865 1866 1867 1868 1869 1870
	.destructor	= afs_flat_call_destructor,
};

/*
 * FS.ReleaseLock operation type
 */
static const struct afs_call_type afs_RXFSReleaseLock = {
	.name		= "FS.ReleaseLock",
1871
	.op		= afs_FS_ReleaseLock,
D
David Howells 已提交
1872 1873 1874 1875 1876
	.deliver	= afs_deliver_fs_xxxx_lock,
	.destructor	= afs_flat_call_destructor,
};

/*
1877
 * Set a lock on a file
D
David Howells 已提交
1878
 */
1879
int afs_fs_set_lock(struct afs_fs_cursor *fc, afs_lock_type_t type)
D
David Howells 已提交
1880
{
1881
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1882
	struct afs_call *call;
1883
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1884 1885
	__be32 *bp;

1886 1887 1888
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_set_lock(fc, type);

D
David Howells 已提交
1889 1890
	_enter("");

1891
	call = afs_alloc_flat_call(net, &afs_RXFSSetLock, 5 * 4, 6 * 4);
D
David Howells 已提交
1892 1893 1894
	if (!call)
		return -ENOMEM;

1895
	call->key = fc->key;
1896
	call->reply[0] = vnode;
1897
	call->want_reply_time = true;
D
David Howells 已提交
1898 1899 1900 1901 1902 1903 1904 1905 1906

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSSETLOCK);
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);
	*bp++ = htonl(type);

1907
	afs_use_fs_server(call, fc->cbi);
1908
	trace_afs_make_fs_calli(call, &vnode->fid, type);
1909 1910
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
D
David Howells 已提交
1911 1912 1913 1914 1915
}

/*
 * extend a lock on a file
 */
1916
int afs_fs_extend_lock(struct afs_fs_cursor *fc)
D
David Howells 已提交
1917
{
1918
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1919
	struct afs_call *call;
1920
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1921 1922
	__be32 *bp;

1923 1924 1925
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_extend_lock(fc);

D
David Howells 已提交
1926 1927
	_enter("");

1928
	call = afs_alloc_flat_call(net, &afs_RXFSExtendLock, 4 * 4, 6 * 4);
D
David Howells 已提交
1929 1930 1931
	if (!call)
		return -ENOMEM;

1932
	call->key = fc->key;
1933
	call->reply[0] = vnode;
1934
	call->want_reply_time = true;
D
David Howells 已提交
1935 1936 1937 1938 1939 1940 1941 1942

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSEXTENDLOCK);
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);

1943
	afs_use_fs_server(call, fc->cbi);
1944
	trace_afs_make_fs_call(call, &vnode->fid);
1945 1946
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
D
David Howells 已提交
1947 1948 1949 1950 1951
}

/*
 * release a lock on a file
 */
1952
int afs_fs_release_lock(struct afs_fs_cursor *fc)
D
David Howells 已提交
1953
{
1954
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1955
	struct afs_call *call;
1956
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1957 1958
	__be32 *bp;

1959 1960 1961
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_release_lock(fc);

D
David Howells 已提交
1962 1963
	_enter("");

1964
	call = afs_alloc_flat_call(net, &afs_RXFSReleaseLock, 4 * 4, 6 * 4);
D
David Howells 已提交
1965 1966 1967
	if (!call)
		return -ENOMEM;

1968
	call->key = fc->key;
1969
	call->reply[0] = vnode;
D
David Howells 已提交
1970 1971 1972 1973 1974 1975 1976 1977

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSRELEASELOCK);
	*bp++ = htonl(vnode->fid.vid);
	*bp++ = htonl(vnode->fid.vnode);
	*bp++ = htonl(vnode->fid.unique);

1978
	afs_use_fs_server(call, fc->cbi);
1979
	trace_afs_make_fs_call(call, &vnode->fid);
1980 1981
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996
}

/*
 * Deliver reply data to an FS.GiveUpAllCallBacks operation.
 */
static int afs_deliver_fs_give_up_all_callbacks(struct afs_call *call)
{
	return afs_transfer_reply(call);
}

/*
 * FS.GiveUpAllCallBacks operation type
 */
static const struct afs_call_type afs_RXFSGiveUpAllCallBacks = {
	.name		= "FS.GiveUpAllCallBacks",
1997
	.op		= afs_FS_GiveUpAllCallBacks,
1998 1999 2000 2001 2002 2003 2004
	.deliver	= afs_deliver_fs_give_up_all_callbacks,
	.destructor	= afs_flat_call_destructor,
};

/*
 * Flush all the callbacks we have on a server.
 */
2005 2006
int afs_fs_give_up_all_callbacks(struct afs_net *net,
				 struct afs_server *server,
D
David Howells 已提交
2007
				 struct afs_addr_cursor *ac,
2008
				 struct key *key)
2009 2010 2011 2012 2013 2014
{
	struct afs_call *call;
	__be32 *bp;

	_enter("");

2015
	call = afs_alloc_flat_call(net, &afs_RXFSGiveUpAllCallBacks, 1 * 4, 0);
2016 2017 2018 2019 2020 2021 2022 2023 2024 2025
	if (!call)
		return -ENOMEM;

	call->key = key;

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSGIVEUPALLCALLBACKS);

	/* Can't take a ref on server */
2026 2027
	afs_make_call(ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, ac);
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037
}

/*
 * Deliver reply data to an FS.GetCapabilities operation.
 */
static int afs_deliver_fs_get_capabilities(struct afs_call *call)
{
	u32 count;
	int ret;

2038
	_enter("{%u,%zu}", call->unmarshall, iov_iter_count(&call->iter));
2039 2040 2041

	switch (call->unmarshall) {
	case 0:
2042
		afs_extract_to_tmp(call);
2043 2044
		call->unmarshall++;

2045
		/* Fall through - and extract the capabilities word count */
2046
	case 1:
2047
		ret = afs_extract_data(call, true);
2048 2049 2050 2051 2052 2053 2054
		if (ret < 0)
			return ret;

		count = ntohl(call->tmp);

		call->count = count;
		call->count2 = count;
2055
		iov_iter_discard(&call->iter, READ, count * sizeof(__be32));
2056 2057
		call->unmarshall++;

2058
		/* Fall through - and extract capabilities words */
2059
	case 2:
2060
		ret = afs_extract_data(call, false);
2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073
		if (ret < 0)
			return ret;

		/* TODO: Examine capabilities */

		call->unmarshall++;
		break;
	}

	_leave(" = 0 [done]");
	return 0;
}

2074 2075 2076 2077 2078 2079 2080 2081
static void afs_destroy_fs_get_capabilities(struct afs_call *call)
{
	struct afs_server *server = call->reply[0];

	afs_put_server(call->net, server);
	afs_flat_call_destructor(call);
}

2082 2083 2084 2085 2086
/*
 * FS.GetCapabilities operation type
 */
static const struct afs_call_type afs_RXFSGetCapabilities = {
	.name		= "FS.GetCapabilities",
2087
	.op		= afs_FS_GetCapabilities,
2088
	.deliver	= afs_deliver_fs_get_capabilities,
2089 2090
	.done		= afs_fileserver_probe_result,
	.destructor	= afs_destroy_fs_get_capabilities,
2091 2092 2093 2094 2095 2096
};

/*
 * Probe a fileserver for the capabilities that it supports.  This can
 * return up to 196 words.
 */
2097 2098 2099 2100 2101
struct afs_call *afs_fs_get_capabilities(struct afs_net *net,
					 struct afs_server *server,
					 struct afs_addr_cursor *ac,
					 struct key *key,
					 unsigned int server_index)
2102 2103 2104 2105 2106 2107 2108 2109
{
	struct afs_call *call;
	__be32 *bp;

	_enter("");

	call = afs_alloc_flat_call(net, &afs_RXFSGetCapabilities, 1 * 4, 16 * 4);
	if (!call)
2110
		return ERR_PTR(-ENOMEM);
2111 2112

	call->key = key;
2113 2114
	call->reply[0] = afs_get_server(server);
	call->reply[1] = (void *)(long)server_index;
2115
	call->upgrade = true;
2116
	call->want_reply_time = true;
2117
	call->async = true;
2118
	call->max_lifespan = AFS_PROBE_MAX_LIFESPAN;
2119 2120 2121 2122 2123 2124

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSGETCAPABILITIES);

	/* Can't take a ref on server */
2125
	trace_afs_make_fs_call(call, NULL);
2126 2127
	afs_make_call(ac, call, GFP_NOFS);
	return call;
D
David Howells 已提交
2128
}
2129 2130 2131 2132 2133 2134 2135 2136 2137

/*
 * Deliver reply data to an FS.FetchStatus with no vnode.
 */
static int afs_deliver_fs_fetch_status(struct afs_call *call)
{
	struct afs_file_status *status = call->reply[1];
	struct afs_callback *callback = call->reply[2];
	struct afs_volsync *volsync = call->reply[3];
2138
	struct afs_fid *fid = call->reply[0];
2139 2140 2141 2142 2143 2144 2145
	const __be32 *bp;
	int ret;

	ret = afs_transfer_reply(call);
	if (ret < 0)
		return ret;

2146
	_enter("{%llx:%llu}", fid->vid, fid->vnode);
2147 2148 2149

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
2150
	ret = afs_decode_status(call, &bp, status, NULL,
2151 2152 2153
				&call->expected_version, NULL);
	if (ret < 0)
		return ret;
2154
	xdr_decode_AFSCallBack_raw(call, &bp, callback);
2155
	xdr_decode_AFSVolSync(&bp, volsync);
2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183

	_leave(" = 0 [done]");
	return 0;
}

/*
 * FS.FetchStatus operation type
 */
static const struct afs_call_type afs_RXFSFetchStatus = {
	.name		= "FS.FetchStatus",
	.op		= afs_FS_FetchStatus,
	.deliver	= afs_deliver_fs_fetch_status,
	.destructor	= afs_flat_call_destructor,
};

/*
 * Fetch the status information for a fid without needing a vnode handle.
 */
int afs_fs_fetch_status(struct afs_fs_cursor *fc,
			struct afs_net *net,
			struct afs_fid *fid,
			struct afs_file_status *status,
			struct afs_callback *callback,
			struct afs_volsync *volsync)
{
	struct afs_call *call;
	__be32 *bp;

2184 2185 2186
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_fetch_status(fc, net, fid, status, callback, volsync);

2187
	_enter(",%x,{%llx:%llu},,",
2188 2189 2190 2191 2192 2193 2194 2195 2196
	       key_serial(fc->key), fid->vid, fid->vnode);

	call = afs_alloc_flat_call(net, &afs_RXFSFetchStatus, 16, (21 + 3 + 6) * 4);
	if (!call) {
		fc->ac.error = -ENOMEM;
		return -ENOMEM;
	}

	call->key = fc->key;
2197
	call->reply[0] = fid;
2198 2199 2200
	call->reply[1] = status;
	call->reply[2] = callback;
	call->reply[3] = volsync;
2201
	call->expected_version = 1; /* vnode->status.data_version */
2202
	call->want_reply_time = true;
2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213

	/* marshall the parameters */
	bp = call->request;
	bp[0] = htonl(FSFETCHSTATUS);
	bp[1] = htonl(fid->vid);
	bp[2] = htonl(fid->vnode);
	bp[3] = htonl(fid->unique);

	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
	trace_afs_make_fs_call(call, fid);
2214 2215
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233
}

/*
 * Deliver reply data to an FS.InlineBulkStatus call
 */
static int afs_deliver_fs_inline_bulk_status(struct afs_call *call)
{
	struct afs_file_status *statuses;
	struct afs_callback *callbacks;
	struct afs_vnode *vnode = call->reply[0];
	const __be32 *bp;
	u32 tmp;
	int ret;

	_enter("{%u}", call->unmarshall);

	switch (call->unmarshall) {
	case 0:
2234
		afs_extract_to_tmp(call);
2235 2236 2237
		call->unmarshall++;

		/* Extract the file status count and array in two steps */
2238
		/* Fall through */
2239 2240
	case 1:
		_debug("extract status count");
2241
		ret = afs_extract_data(call, true);
2242 2243 2244 2245 2246 2247
		if (ret < 0)
			return ret;

		tmp = ntohl(call->tmp);
		_debug("status count: %u/%u", tmp, call->count2);
		if (tmp != call->count2)
2248 2249
			return afs_protocol_error(call, -EBADMSG,
						  afs_eproto_ibulkst_count);
2250 2251 2252 2253

		call->count = 0;
		call->unmarshall++;
	more_counts:
2254
		afs_extract_to_buf(call, 21 * sizeof(__be32));
2255

2256
		/* Fall through */
2257 2258
	case 2:
		_debug("extract status array %u", call->count);
2259
		ret = afs_extract_data(call, true);
2260 2261 2262 2263 2264
		if (ret < 0)
			return ret;

		bp = call->buffer;
		statuses = call->reply[1];
2265 2266 2267 2268 2269
		ret = afs_decode_status(call, &bp, &statuses[call->count],
					call->count == 0 ? vnode : NULL,
					NULL, NULL);
		if (ret < 0)
			return ret;
2270 2271 2272 2273 2274 2275 2276

		call->count++;
		if (call->count < call->count2)
			goto more_counts;

		call->count = 0;
		call->unmarshall++;
2277
		afs_extract_to_tmp(call);
2278 2279

		/* Extract the callback count and array in two steps */
2280
		/* Fall through */
2281 2282
	case 3:
		_debug("extract CB count");
2283
		ret = afs_extract_data(call, true);
2284 2285 2286 2287 2288 2289
		if (ret < 0)
			return ret;

		tmp = ntohl(call->tmp);
		_debug("CB count: %u", tmp);
		if (tmp != call->count2)
2290 2291
			return afs_protocol_error(call, -EBADMSG,
						  afs_eproto_ibulkst_cb_count);
2292 2293 2294
		call->count = 0;
		call->unmarshall++;
	more_cbs:
2295
		afs_extract_to_buf(call, 3 * sizeof(__be32));
2296

2297
		/* Fall through */
2298 2299
	case 4:
		_debug("extract CB array");
2300
		ret = afs_extract_data(call, true);
2301 2302 2303 2304 2305 2306 2307
		if (ret < 0)
			return ret;

		_debug("unmarshall CB array");
		bp = call->buffer;
		callbacks = call->reply[2];
		callbacks[call->count].version	= ntohl(bp[0]);
2308
		callbacks[call->count].expires_at = xdr_decode_expiry(call, ntohl(bp[1]));
2309 2310 2311 2312 2313 2314 2315 2316
		callbacks[call->count].type	= ntohl(bp[2]);
		statuses = call->reply[1];
		if (call->count == 0 && vnode && statuses[0].abort_code == 0)
			xdr_decode_AFSCallBack(call, vnode, &bp);
		call->count++;
		if (call->count < call->count2)
			goto more_cbs;

2317
		afs_extract_to_buf(call, 6 * sizeof(__be32));
2318 2319
		call->unmarshall++;

2320
		/* Fall through */
2321
	case 5:
2322
		ret = afs_extract_data(call, false);
2323 2324 2325 2326
		if (ret < 0)
			return ret;

		bp = call->buffer;
2327
		xdr_decode_AFSVolSync(&bp, call->reply[3]);
2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363

		call->unmarshall++;

	case 6:
		break;
	}

	_leave(" = 0 [done]");
	return 0;
}

/*
 * FS.InlineBulkStatus operation type
 */
static const struct afs_call_type afs_RXFSInlineBulkStatus = {
	.name		= "FS.InlineBulkStatus",
	.op		= afs_FS_InlineBulkStatus,
	.deliver	= afs_deliver_fs_inline_bulk_status,
	.destructor	= afs_flat_call_destructor,
};

/*
 * Fetch the status information for up to 50 files
 */
int afs_fs_inline_bulk_status(struct afs_fs_cursor *fc,
			      struct afs_net *net,
			      struct afs_fid *fids,
			      struct afs_file_status *statuses,
			      struct afs_callback *callbacks,
			      unsigned int nr_fids,
			      struct afs_volsync *volsync)
{
	struct afs_call *call;
	__be32 *bp;
	int i;

2364 2365 2366 2367
	if (test_bit(AFS_SERVER_FL_IS_YFS, &fc->cbi->server->flags))
		return yfs_fs_inline_bulk_status(fc, net, fids, statuses, callbacks,
						 nr_fids, volsync);

2368
	_enter(",%x,{%llx:%llu},%u",
2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384
	       key_serial(fc->key), fids[0].vid, fids[1].vnode, nr_fids);

	call = afs_alloc_flat_call(net, &afs_RXFSInlineBulkStatus,
				   (2 + nr_fids * 3) * 4,
				   21 * 4);
	if (!call) {
		fc->ac.error = -ENOMEM;
		return -ENOMEM;
	}

	call->key = fc->key;
	call->reply[0] = NULL; /* vnode for fid[0] */
	call->reply[1] = statuses;
	call->reply[2] = callbacks;
	call->reply[3] = volsync;
	call->count2 = nr_fids;
2385
	call->want_reply_time = true;
2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(FSINLINEBULKSTATUS);
	*bp++ = htonl(nr_fids);
	for (i = 0; i < nr_fids; i++) {
		*bp++ = htonl(fids[i].vid);
		*bp++ = htonl(fids[i].vnode);
		*bp++ = htonl(fids[i].unique);
	}

	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
	trace_afs_make_fs_call(call, &fids[0]);
2400 2401
	afs_make_call(&fc->ac, call, GFP_NOFS);
	return afs_wait_for_call_to_complete(call, &fc->ac);
2402
}
D
David Howells 已提交
2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524

/*
 * deliver reply data to an FS.FetchACL
 */
static int afs_deliver_fs_fetch_acl(struct afs_call *call)
{
	struct afs_vnode *vnode = call->reply[1];
	struct afs_acl *acl;
	const __be32 *bp;
	unsigned int size;
	int ret;

	_enter("{%u}", call->unmarshall);

	switch (call->unmarshall) {
	case 0:
		afs_extract_to_tmp(call);
		call->unmarshall++;

		/* extract the returned data length */
	case 1:
		ret = afs_extract_data(call, true);
		if (ret < 0)
			return ret;

		size = call->count2 = ntohl(call->tmp);
		size = round_up(size, 4);

		acl = kmalloc(struct_size(acl, data, size), GFP_KERNEL);
		if (!acl)
			return -ENOMEM;
		call->reply[0] = acl;
		acl->size = call->count2;
		afs_extract_begin(call, acl->data, size);
		call->unmarshall++;

		/* extract the returned data */
	case 2:
		ret = afs_extract_data(call, true);
		if (ret < 0)
			return ret;

		afs_extract_to_buf(call, (21 + 6) * 4);
		call->unmarshall++;

		/* extract the metadata */
	case 3:
		ret = afs_extract_data(call, false);
		if (ret < 0)
			return ret;

		bp = call->buffer;
		ret = afs_decode_status(call, &bp, &vnode->status, vnode,
					&vnode->status.data_version, NULL);
		if (ret < 0)
			return ret;
		xdr_decode_AFSVolSync(&bp, call->reply[2]);

		call->unmarshall++;

	case 4:
		break;
	}

	_leave(" = 0 [done]");
	return 0;
}

static void afs_destroy_fs_fetch_acl(struct afs_call *call)
{
	kfree(call->reply[0]);
	afs_flat_call_destructor(call);
}

/*
 * FS.FetchACL operation type
 */
static const struct afs_call_type afs_RXFSFetchACL = {
	.name		= "FS.FetchACL",
	.op		= afs_FS_FetchACL,
	.deliver	= afs_deliver_fs_fetch_acl,
	.destructor	= afs_destroy_fs_fetch_acl,
};

/*
 * Fetch the ACL for a file.
 */
struct afs_acl *afs_fs_fetch_acl(struct afs_fs_cursor *fc)
{
	struct afs_vnode *vnode = fc->vnode;
	struct afs_call *call;
	struct afs_net *net = afs_v2net(vnode);
	__be32 *bp;

	_enter(",%x,{%llx:%llu},,",
	       key_serial(fc->key), vnode->fid.vid, vnode->fid.vnode);

	call = afs_alloc_flat_call(net, &afs_RXFSFetchACL, 16, (21 + 6) * 4);
	if (!call) {
		fc->ac.error = -ENOMEM;
		return ERR_PTR(-ENOMEM);
	}

	call->key = fc->key;
	call->reply[0] = NULL;
	call->reply[1] = vnode;
	call->reply[2] = NULL; /* volsync */
	call->ret_reply0 = true;

	/* marshall the parameters */
	bp = call->request;
	bp[0] = htonl(FSFETCHACL);
	bp[1] = htonl(vnode->fid.vid);
	bp[2] = htonl(vnode->fid.vnode);
	bp[3] = htonl(vnode->fid.unique);

	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
	trace_afs_make_fs_call(call, &vnode->fid);
	afs_make_call(&fc->ac, call, GFP_KERNEL);
	return (struct afs_acl *)afs_wait_for_call_to_complete(call, &fc->ac);
}
J
Joe Gorse 已提交
2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575

/*
 * FS.StoreACL operation type
 */
static const struct afs_call_type afs_RXFSStoreACL = {
	.name		= "FS.StoreACL",
	.op		= afs_FS_StoreACL,
	.deliver	= afs_deliver_fs_status_and_vol,
	.destructor	= afs_flat_call_destructor,
};

/*
 * Fetch the ACL for a file.
 */
int afs_fs_store_acl(struct afs_fs_cursor *fc, const struct afs_acl *acl)
{
	struct afs_vnode *vnode = fc->vnode;
	struct afs_call *call;
	struct afs_net *net = afs_v2net(vnode);
	size_t size;
	__be32 *bp;

	_enter(",%x,{%llx:%llu},,",
	       key_serial(fc->key), vnode->fid.vid, vnode->fid.vnode);

	size = round_up(acl->size, 4);
	call = afs_alloc_flat_call(net, &afs_RXFSStoreACL,
				   5 * 4 + size, (21 + 6) * 4);
	if (!call) {
		fc->ac.error = -ENOMEM;
		return -ENOMEM;
	}

	call->key = fc->key;
	call->reply[0] = vnode;
	call->reply[2] = NULL; /* volsync */

	/* marshall the parameters */
	bp = call->request;
	bp[0] = htonl(FSSTOREACL);
	bp[1] = htonl(vnode->fid.vid);
	bp[2] = htonl(vnode->fid.vnode);
	bp[3] = htonl(vnode->fid.unique);
	bp[4] = htonl(acl->size);
	memcpy(&bp[5], acl->data, acl->size);
	if (acl->size != size)
		memset((void *)&bp[5] + acl->size, 0, size - acl->size);

	trace_afs_make_fs_call(call, &vnode->fid);
	afs_make_call(&fc->ac, call, GFP_KERNEL);
	return afs_wait_for_call_to_complete(call, &fc->ac);
2576
}