fsclient.c 42.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>
L
Linus Torvalds 已提交
16
#include "internal.h"
17
#include "afs_fs.h"
L
Linus Torvalds 已提交
18

19 20 21 22 23 24
/*
 * We need somewhere to discard into in case the server helpfully returns more
 * than we asked for in FS.FetchData{,64}.
 */
static u8 afs_discard_buffer[64];

25 26 27 28 29 30 31 32 33 34 35 36 37
/*
 * 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;
}

L
Linus Torvalds 已提交
38
/*
39
 * decode an AFSFetchStatus block
L
Linus Torvalds 已提交
40
 */
41
static void xdr_decode_AFSFetchStatus(const __be32 **_bp,
42
				      struct afs_file_status *status,
43 44
				      struct afs_vnode *vnode,
				      afs_dataversion_t *store_version)
L
Linus Torvalds 已提交
45
{
46
	afs_dataversion_t expected_version;
47 48
	const __be32 *bp = *_bp;
	umode_t mode;
49
	u64 data_version, size;
50
	u32 changed = 0; /* becomes non-zero if ctime-type changes seen */
51 52
	kuid_t owner;
	kgid_t group;
53 54 55 56 57 58 59 60

#define EXTRACT(DST)				\
	do {					\
		u32 x = ntohl(*bp++);		\
		changed |= DST - x;		\
		DST = x;			\
	} while (0)

61 62 63 64
	status->if_version = ntohl(*bp++);
	EXTRACT(status->type);
	EXTRACT(status->nlink);
	size = ntohl(*bp++);
65
	data_version = ntohl(*bp++);
66
	EXTRACT(status->author);
67 68 69
	owner = make_kuid(&init_user_ns, ntohl(*bp++));
	changed |= !uid_eq(owner, status->owner);
	status->owner = owner;
70 71 72 73 74
	EXTRACT(status->caller_access); /* call ticket dependent */
	EXTRACT(status->anon_access);
	EXTRACT(status->mode);
	EXTRACT(status->parent.vnode);
	EXTRACT(status->parent.unique);
75
	bp++; /* seg size */
76 77
	status->mtime_client = ntohl(*bp++);
	status->mtime_server = ntohl(*bp++);
78 79 80
	group = make_kgid(&init_user_ns, ntohl(*bp++));
	changed |= !gid_eq(group, status->group);
	status->group = group;
81 82
	bp++; /* sync counter */
	data_version |= (u64) ntohl(*bp++) << 32;
D
David Howells 已提交
83
	EXTRACT(status->lock_count);
84 85
	size |= (u64) ntohl(*bp++) << 32;
	bp++; /* spare 4 */
86 87
	*_bp = bp;

88 89 90
	if (size != status->size) {
		status->size = size;
		changed |= true;
91
	}
92
	status->mode &= S_IALLUGO;
93 94

	_debug("vnode time %lx, %lx",
95 96 97 98 99 100 101 102 103
	       status->mtime_client, status->mtime_server);

	if (vnode) {
		status->parent.vid = vnode->fid.vid;
		if (changed && !test_bit(AFS_VNODE_UNSET, &vnode->flags)) {
			_debug("vnode changed");
			i_size_write(&vnode->vfs_inode, size);
			vnode->vfs_inode.i_uid = status->owner;
			vnode->vfs_inode.i_gid = status->group;
104
			vnode->vfs_inode.i_generation = vnode->fid.unique;
M
Miklos Szeredi 已提交
105
			set_nlink(&vnode->vfs_inode, status->nlink);
106 107 108 109 110 111 112 113

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

114
		vnode->vfs_inode.i_ctime.tv_sec	= status->mtime_client;
115 116
		vnode->vfs_inode.i_mtime	= vnode->vfs_inode.i_ctime;
		vnode->vfs_inode.i_atime	= vnode->vfs_inode.i_ctime;
117
		vnode->vfs_inode.i_version	= data_version;
118 119
	}

120 121 122 123 124
	expected_version = status->data_version;
	if (store_version)
		expected_version = *store_version;

	if (expected_version != data_version) {
125 126 127
		status->data_version = data_version;
		if (vnode && !test_bit(AFS_VNODE_UNSET, &vnode->flags)) {
			_debug("vnode modified %llx on {%x:%u}",
128 129
			       (unsigned long long) data_version,
			       vnode->fid.vid, vnode->fid.vnode);
130 131 132
			set_bit(AFS_VNODE_MODIFIED, &vnode->flags);
			set_bit(AFS_VNODE_ZAP_DATA, &vnode->flags);
		}
133 134
	} else if (store_version) {
		status->data_version = data_version;
L
Linus Torvalds 已提交
135
	}
D
David Howells 已提交
136
}
L
Linus Torvalds 已提交
137 138

/*
139
 * decode an AFSCallBack block
L
Linus Torvalds 已提交
140
 */
141
static void xdr_decode_AFSCallBack(const __be32 **_bp, struct afs_vnode *vnode)
L
Linus Torvalds 已提交
142
{
143
	const __be32 *bp = *_bp;
L
Linus Torvalds 已提交
144

145 146 147
	vnode->cb_version	= ntohl(*bp++);
	vnode->cb_expiry	= ntohl(*bp++);
	vnode->cb_type		= ntohl(*bp++);
148
	vnode->cb_expires	= vnode->cb_expiry + ktime_get_real_seconds();
149
	*_bp = bp;
D
David Howells 已提交
150
}
L
Linus Torvalds 已提交
151

152 153 154 155 156 157 158 159 160 161 162
static void xdr_decode_AFSCallBack_raw(const __be32 **_bp,
				       struct afs_callback *cb)
{
	const __be32 *bp = *_bp;

	cb->version	= ntohl(*bp++);
	cb->expiry	= ntohl(*bp++);
	cb->type	= ntohl(*bp++);
	*_bp = bp;
}

L
Linus Torvalds 已提交
163
/*
164
 * decode an AFSVolSync block
L
Linus Torvalds 已提交
165
 */
166 167
static void xdr_decode_AFSVolSync(const __be32 **_bp,
				  struct afs_volsync *volsync)
L
Linus Torvalds 已提交
168
{
169
	const __be32 *bp = *_bp;
L
Linus Torvalds 已提交
170

171 172 173 174 175 176 177 178
	volsync->creation = ntohl(*bp++);
	bp++; /* spare2 */
	bp++; /* spare3 */
	bp++; /* spare4 */
	bp++; /* spare5 */
	bp++; /* spare6 */
	*_bp = bp;
}
L
Linus Torvalds 已提交
179

180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
/*
 * 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;
196
		owner = from_kuid(&init_user_ns, attr->ia_uid);
197 198 199 200
	}

	if (attr->ia_valid & ATTR_GID) {
		mask |= AFS_SET_GROUP;
201
		group = from_kgid(&init_user_ns, attr->ia_gid);
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
	}

	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 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
/*
 * 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++);
	*_bp = bp;
}

241 242 243
/*
 * deliver reply data to an FS.FetchStatus
 */
244
static int afs_deliver_fs_fetch_status(struct afs_call *call)
245
{
246
	struct afs_vnode *vnode = call->reply[0];
247
	const __be32 *bp;
248
	int ret;
L
Linus Torvalds 已提交
249

250
	_enter("");
L
Linus Torvalds 已提交
251

252
	ret = afs_transfer_reply(call);
253 254
	if (ret < 0)
		return ret;
L
Linus Torvalds 已提交
255

256 257
	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
258
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
259
	xdr_decode_AFSCallBack(&bp, vnode);
260 261
	if (call->reply[1])
		xdr_decode_AFSVolSync(&bp, call->reply[1]);
L
Linus Torvalds 已提交
262

263 264
	_leave(" = 0 [done]");
	return 0;
D
David Howells 已提交
265
}
266 267 268 269 270

/*
 * FS.FetchStatus operation type
 */
static const struct afs_call_type afs_RXFSFetchStatus = {
D
David Howells 已提交
271
	.name		= "FS.FetchStatus",
272 273 274
	.deliver	= afs_deliver_fs_fetch_status,
	.destructor	= afs_flat_call_destructor,
};
L
Linus Torvalds 已提交
275 276 277 278

/*
 * fetch the status information for a file
 */
279
int afs_fs_fetch_file_status(struct afs_server *server,
D
David Howells 已提交
280
			     struct key *key,
281 282
			     struct afs_vnode *vnode,
			     struct afs_volsync *volsync,
D
David Howells 已提交
283
			     bool async)
L
Linus Torvalds 已提交
284
{
285
	struct afs_call *call;
286
	struct afs_net *net = afs_v2net(vnode);
L
Linus Torvalds 已提交
287 288
	__be32 *bp;

D
David Howells 已提交
289
	_enter(",%x,{%x:%u},,",
290
	       key_serial(key), vnode->fid.vid, vnode->fid.vnode);
L
Linus Torvalds 已提交
291

292
	call = afs_alloc_flat_call(net, &afs_RXFSFetchStatus, 16, (21 + 3 + 6) * 4);
293 294
	if (!call)
		return -ENOMEM;
L
Linus Torvalds 已提交
295

D
David Howells 已提交
296
	call->key = key;
297 298
	call->reply[0] = vnode;
	call->reply[1] = volsync;
L
Linus Torvalds 已提交
299 300

	/* marshall the parameters */
301
	bp = call->request;
L
Linus Torvalds 已提交
302 303 304 305 306
	bp[0] = htonl(FSFETCHSTATUS);
	bp[1] = htonl(vnode->fid.vid);
	bp[2] = htonl(vnode->fid.vnode);
	bp[3] = htonl(vnode->fid.unique);

D
David Howells 已提交
307
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
D
David Howells 已提交
308
}
L
Linus Torvalds 已提交
309 310

/*
311
 * deliver reply data to an FS.FetchData
L
Linus Torvalds 已提交
312
 */
313
static int afs_deliver_fs_fetch_data(struct afs_call *call)
L
Linus Torvalds 已提交
314
{
315 316
	struct afs_vnode *vnode = call->reply[0];
	struct afs_read *req = call->reply[2];
317
	const __be32 *bp;
318
	unsigned int size;
319
	void *buffer;
L
Linus Torvalds 已提交
320 321
	int ret;

322
	_enter("{%u,%zu/%u;%llu/%llu}",
323 324
	       call->unmarshall, call->offset, call->count,
	       req->remain, req->actual_len);
325 326 327

	switch (call->unmarshall) {
	case 0:
328
		req->actual_len = 0;
329 330
		call->offset = 0;
		call->unmarshall++;
D
David Howells 已提交
331 332 333 334
		if (call->operation_ID != FSFETCHDATA64) {
			call->unmarshall++;
			goto no_msw;
		}
335

D
David Howells 已提交
336 337 338
		/* extract the upper part of the returned data length of an
		 * FSFETCHDATA64 op (which should always be 0 using this
		 * client) */
339
	case 1:
D
David Howells 已提交
340
		_debug("extract data length (MSW)");
341
		ret = afs_extract_data(call, &call->tmp, 4, true);
342 343
		if (ret < 0)
			return ret;
D
David Howells 已提交
344

345 346
		req->actual_len = ntohl(call->tmp);
		req->actual_len <<= 32;
D
David Howells 已提交
347 348 349 350 351 352
		call->offset = 0;
		call->unmarshall++;

	no_msw:
		/* extract the returned data length */
	case 2:
353
		_debug("extract data length");
354
		ret = afs_extract_data(call, &call->tmp, 4, true);
355 356
		if (ret < 0)
			return ret;
L
Linus Torvalds 已提交
357

358 359 360 361 362 363 364 365
		req->actual_len |= ntohl(call->tmp);
		_debug("DATA length: %llu", req->actual_len);

		req->remain = req->actual_len;
		call->offset = req->pos & (PAGE_SIZE - 1);
		req->index = 0;
		if (req->actual_len == 0)
			goto no_more_data;
366 367
		call->unmarshall++;

368
	begin_page:
369
		ASSERTCMP(req->index, <, req->nr_pages);
370 371 372 373 374 375 376 377
		if (req->remain > PAGE_SIZE - call->offset)
			size = PAGE_SIZE - call->offset;
		else
			size = req->remain;
		call->count = call->offset + size;
		ASSERTCMP(call->count, <=, PAGE_SIZE);
		req->remain -= size;

378
		/* extract the returned data */
D
David Howells 已提交
379
	case 3:
380
		_debug("extract data %llu/%llu %zu/%u",
381 382 383 384 385 386 387 388 389 390
		       req->remain, req->actual_len, call->offset, call->count);

		buffer = kmap(req->pages[req->index]);
		ret = afs_extract_data(call, buffer, call->count, true);
		kunmap(req->pages[req->index]);
		if (ret < 0)
			return ret;
		if (call->offset == PAGE_SIZE) {
			if (req->page_done)
				req->page_done(call, req);
D
David Howells 已提交
391
			req->index++;
392 393
			if (req->remain > 0) {
				call->offset = 0;
394 395
				if (req->index >= req->nr_pages) {
					call->unmarshall = 4;
396
					goto begin_discard;
397
				}
398 399
				goto begin_page;
			}
400
		}
401 402 403 404 405
		goto no_more_data;

		/* Discard any excess data the server gave us */
	begin_discard:
	case 4:
406
		size = min_t(loff_t, sizeof(afs_discard_buffer), req->remain);
407
		call->count = size;
408
		_debug("extract discard %llu/%llu %zu/%u",
409 410 411 412 413 414 415 416 417
		       req->remain, req->actual_len, call->offset, call->count);

		call->offset = 0;
		ret = afs_extract_data(call, afs_discard_buffer, call->count, true);
		req->remain -= call->offset;
		if (ret < 0)
			return ret;
		if (req->remain > 0)
			goto begin_discard;
L
Linus Torvalds 已提交
418

419
	no_more_data:
420
		call->offset = 0;
421
		call->unmarshall = 5;
L
Linus Torvalds 已提交
422

423
		/* extract the metadata */
424
	case 5:
425 426
		ret = afs_extract_data(call, call->buffer,
				       (21 + 3 + 6) * 4, false);
427 428
		if (ret < 0)
			return ret;
429 430

		bp = call->buffer;
431
		xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
432
		xdr_decode_AFSCallBack(&bp, vnode);
433 434
		if (call->reply[1])
			xdr_decode_AFSVolSync(&bp, call->reply[1]);
435 436 437

		call->offset = 0;
		call->unmarshall++;
L
Linus Torvalds 已提交
438

439
	case 6:
440
		break;
L
Linus Torvalds 已提交
441 442
	}

443 444 445 446
	for (; req->index < req->nr_pages; req->index++) {
		if (call->count < PAGE_SIZE)
			zero_user_segment(req->pages[req->index],
					  call->count, PAGE_SIZE);
447 448
		if (req->page_done)
			req->page_done(call, req);
449
		call->count = 0;
D
David Howells 已提交
450 451
	}

452 453
	_leave(" = 0 [done]");
	return 0;
D
David Howells 已提交
454
}
L
Linus Torvalds 已提交
455

456 457
static void afs_fetch_data_destructor(struct afs_call *call)
{
458
	struct afs_read *req = call->reply[2];
459 460 461 462 463

	afs_put_read(req);
	afs_flat_call_destructor(call);
}

L
Linus Torvalds 已提交
464
/*
465
 * FS.FetchData operation type
L
Linus Torvalds 已提交
466
 */
467
static const struct afs_call_type afs_RXFSFetchData = {
D
David Howells 已提交
468
	.name		= "FS.FetchData",
469
	.deliver	= afs_deliver_fs_fetch_data,
470
	.destructor	= afs_fetch_data_destructor,
471 472
};

D
David Howells 已提交
473 474 475
static const struct afs_call_type afs_RXFSFetchData64 = {
	.name		= "FS.FetchData64",
	.deliver	= afs_deliver_fs_fetch_data,
476
	.destructor	= afs_fetch_data_destructor,
D
David Howells 已提交
477 478 479 480 481 482 483 484
};

/*
 * fetch data from a very large file
 */
static int afs_fs_fetch_data64(struct afs_server *server,
			       struct key *key,
			       struct afs_vnode *vnode,
485
			       struct afs_read *req,
D
David Howells 已提交
486
			       bool async)
D
David Howells 已提交
487 488
{
	struct afs_call *call;
489
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
490 491 492 493
	__be32 *bp;

	_enter("");

494
	call = afs_alloc_flat_call(net, &afs_RXFSFetchData64, 32, (21 + 3 + 6) * 4);
D
David Howells 已提交
495 496 497 498
	if (!call)
		return -ENOMEM;

	call->key = key;
499 500 501
	call->reply[0] = vnode;
	call->reply[1] = NULL; /* volsync */
	call->reply[2] = req;
D
David Howells 已提交
502 503 504 505 506 507 508 509
	call->operation_ID = FSFETCHDATA64;

	/* 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);
510 511
	bp[4] = htonl(upper_32_bits(req->pos));
	bp[5] = htonl(lower_32_bits(req->pos));
D
David Howells 已提交
512
	bp[6] = 0;
513
	bp[7] = htonl(lower_32_bits(req->len));
D
David Howells 已提交
514

515
	atomic_inc(&req->usage);
D
David Howells 已提交
516
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
D
David Howells 已提交
517 518
}

519 520 521 522
/*
 * fetch data from a file
 */
int afs_fs_fetch_data(struct afs_server *server,
D
David Howells 已提交
523
		      struct key *key,
524
		      struct afs_vnode *vnode,
525
		      struct afs_read *req,
D
David Howells 已提交
526
		      bool async)
L
Linus Torvalds 已提交
527
{
528
	struct afs_call *call;
529
	struct afs_net *net = afs_v2net(vnode);
L
Linus Torvalds 已提交
530 531
	__be32 *bp;

532 533 534
	if (upper_32_bits(req->pos) ||
	    upper_32_bits(req->len) ||
	    upper_32_bits(req->pos + req->len))
D
David Howells 已提交
535
		return afs_fs_fetch_data64(server, key, vnode, req, async);
D
David Howells 已提交
536

537
	_enter("");
L
Linus Torvalds 已提交
538

539
	call = afs_alloc_flat_call(net, &afs_RXFSFetchData, 24, (21 + 3 + 6) * 4);
540 541
	if (!call)
		return -ENOMEM;
L
Linus Torvalds 已提交
542

D
David Howells 已提交
543
	call->key = key;
544 545 546
	call->reply[0] = vnode;
	call->reply[1] = NULL; /* volsync */
	call->reply[2] = req;
D
David Howells 已提交
547
	call->operation_ID = FSFETCHDATA;
L
Linus Torvalds 已提交
548 549

	/* marshall the parameters */
550 551 552 553 554
	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);
555 556
	bp[4] = htonl(lower_32_bits(req->pos));
	bp[5] = htonl(lower_32_bits(req->len));
L
Linus Torvalds 已提交
557

558
	atomic_inc(&req->usage);
D
David Howells 已提交
559
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
560
}
L
Linus Torvalds 已提交
561

562 563 564
/*
 * deliver reply data to an FS.GiveUpCallBacks
 */
565
static int afs_deliver_fs_give_up_callbacks(struct afs_call *call)
566
{
567
	_enter("");
L
Linus Torvalds 已提交
568

569
	/* shouldn't be any reply data */
570
	return afs_extract_data(call, NULL, 0, false);
D
David Howells 已提交
571
}
L
Linus Torvalds 已提交
572 573

/*
574 575 576
 * FS.GiveUpCallBacks operation type
 */
static const struct afs_call_type afs_RXFSGiveUpCallBacks = {
D
David Howells 已提交
577
	.name		= "FS.GiveUpCallBacks",
578 579 580 581 582 583 584
	.deliver	= afs_deliver_fs_give_up_callbacks,
	.destructor	= afs_flat_call_destructor,
};

/*
 * give up a set of callbacks
 * - the callbacks are held in the server->cb_break ring
L
Linus Torvalds 已提交
585
 */
586 587
int afs_fs_give_up_callbacks(struct afs_net *net,
			     struct afs_server *server,
D
David Howells 已提交
588
			     bool async)
L
Linus Torvalds 已提交
589
{
590 591 592 593
	struct afs_call *call;
	size_t ncallbacks;
	__be32 *bp, *tp;
	int loop;
L
Linus Torvalds 已提交
594

595 596
	ncallbacks = CIRC_CNT(server->cb_break_head, server->cb_break_tail,
			      ARRAY_SIZE(server->cb_break));
L
Linus Torvalds 已提交
597

598
	_enter("{%zu},", ncallbacks);
L
Linus Torvalds 已提交
599

600 601 602 603
	if (ncallbacks == 0)
		return 0;
	if (ncallbacks > AFSCBMAX)
		ncallbacks = AFSCBMAX;
L
Linus Torvalds 已提交
604

605
	_debug("break %zu callbacks", ncallbacks);
L
Linus Torvalds 已提交
606

607
	call = afs_alloc_flat_call(net, &afs_RXFSGiveUpCallBacks,
608 609 610 611
				   12 + ncallbacks * 6 * 4, 0);
	if (!call)
		return -ENOMEM;

L
Linus Torvalds 已提交
612 613

	/* marshall the parameters */
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
	bp = call->request;
	tp = bp + 2 + ncallbacks * 3;
	*bp++ = htonl(FSGIVEUPCALLBACKS);
	*bp++ = htonl(ncallbacks);
	*tp++ = htonl(ncallbacks);

	atomic_sub(ncallbacks, &server->cb_break_n);
	for (loop = ncallbacks; loop > 0; loop--) {
		struct afs_callback *cb =
			&server->cb_break[server->cb_break_tail];

		*bp++ = htonl(cb->fid.vid);
		*bp++ = htonl(cb->fid.vnode);
		*bp++ = htonl(cb->fid.unique);
		*tp++ = htonl(cb->version);
		*tp++ = htonl(cb->expiry);
		*tp++ = htonl(cb->type);
		smp_mb();
		server->cb_break_tail =
			(server->cb_break_tail + 1) &
			(ARRAY_SIZE(server->cb_break) - 1);
L
Linus Torvalds 已提交
635 636
	}

637 638
	ASSERT(ncallbacks > 0);
	wake_up_nr(&server->cb_break_waitq, ncallbacks);
L
Linus Torvalds 已提交
639

D
David Howells 已提交
640
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
D
David Howells 已提交
641
}
642 643 644 645

/*
 * deliver reply data to an FS.CreateFile or an FS.MakeDir
 */
646
static int afs_deliver_fs_create_vnode(struct afs_call *call)
647
{
648
	struct afs_vnode *vnode = call->reply[0];
649
	const __be32 *bp;
650
	int ret;
651

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

654
	ret = afs_transfer_reply(call);
655 656
	if (ret < 0)
		return ret;
657 658 659

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
660 661
	xdr_decode_AFSFid(&bp, call->reply[1]);
	xdr_decode_AFSFetchStatus(&bp, call->reply[2], NULL, NULL);
662
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
663 664
	xdr_decode_AFSCallBack_raw(&bp, call->reply[3]);
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689

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

/*
 * FS.CreateFile and FS.MakeDir operation type
 */
static const struct afs_call_type afs_RXFSCreateXXXX = {
	.name		= "FS.CreateXXXX",
	.deliver	= afs_deliver_fs_create_vnode,
	.destructor	= afs_flat_call_destructor,
};

/*
 * create a file or make a directory
 */
int afs_fs_create(struct afs_server *server,
		  struct key *key,
		  struct afs_vnode *vnode,
		  const char *name,
		  umode_t mode,
		  struct afs_fid *newfid,
		  struct afs_file_status *newstatus,
		  struct afs_callback *newcb,
D
David Howells 已提交
690
		  bool async)
691 692
{
	struct afs_call *call;
693
	struct afs_net *net = afs_v2net(vnode);
694 695 696 697 698 699 700 701 702
	size_t namesz, reqsz, padsz;
	__be32 *bp;

	_enter("");

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

703
	call = afs_alloc_flat_call(net, &afs_RXFSCreateXXXX, reqsz,
704 705 706 707 708
				   (3 + 21 + 21 + 3 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->key = key;
709 710 711 712
	call->reply[0] = vnode;
	call->reply[1] = newfid;
	call->reply[2] = newstatus;
	call->reply[3] = newcb;
713 714 715 716 717 718 719 720 721 722 723 724 725 726

	/* 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;
	}
727 728
	*bp++ = htonl(AFS_SET_MODE | AFS_SET_MTIME);
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
729 730 731 732 733
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = htonl(mode & S_IALLUGO); /* unix mode */
	*bp++ = 0; /* segment size */

D
David Howells 已提交
734
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
735 736 737 738 739
}

/*
 * deliver reply data to an FS.RemoveFile or FS.RemoveDir
 */
740
static int afs_deliver_fs_remove(struct afs_call *call)
741
{
742
	struct afs_vnode *vnode = call->reply[0];
743
	const __be32 *bp;
744
	int ret;
745

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

748
	ret = afs_transfer_reply(call);
749 750
	if (ret < 0)
		return ret;
751 752 753

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
754
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
755
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777

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

/*
 * FS.RemoveDir/FS.RemoveFile operation type
 */
static const struct afs_call_type afs_RXFSRemoveXXXX = {
	.name		= "FS.RemoveXXXX",
	.deliver	= afs_deliver_fs_remove,
	.destructor	= afs_flat_call_destructor,
};

/*
 * remove a file or directory
 */
int afs_fs_remove(struct afs_server *server,
		  struct key *key,
		  struct afs_vnode *vnode,
		  const char *name,
		  bool isdir,
D
David Howells 已提交
778
		  bool async)
779 780
{
	struct afs_call *call;
781
	struct afs_net *net = afs_v2net(vnode);
782 783 784 785 786 787 788 789 790
	size_t namesz, reqsz, padsz;
	__be32 *bp;

	_enter("");

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

791
	call = afs_alloc_flat_call(net, &afs_RXFSRemoveXXXX, reqsz, (21 + 6) * 4);
792 793 794 795
	if (!call)
		return -ENOMEM;

	call->key = key;
796
	call->reply[0] = vnode;
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811

	/* marshall the parameters */
	bp = call->request;
	*bp++ = htonl(isdir ? FSREMOVEDIR : FSREMOVEFILE);
	*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;
	}

D
David Howells 已提交
812
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
813 814 815 816 817
}

/*
 * deliver reply data to an FS.Link
 */
818
static int afs_deliver_fs_link(struct afs_call *call)
819
{
820
	struct afs_vnode *dvnode = call->reply[0], *vnode = call->reply[1];
821
	const __be32 *bp;
822
	int ret;
823

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

826
	ret = afs_transfer_reply(call);
827 828
	if (ret < 0)
		return ret;
829 830 831

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
832 833
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
	xdr_decode_AFSFetchStatus(&bp, &dvnode->status, dvnode, NULL);
834
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856

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

/*
 * FS.Link operation type
 */
static const struct afs_call_type afs_RXFSLink = {
	.name		= "FS.Link",
	.deliver	= afs_deliver_fs_link,
	.destructor	= afs_flat_call_destructor,
};

/*
 * make a hard link
 */
int afs_fs_link(struct afs_server *server,
		struct key *key,
		struct afs_vnode *dvnode,
		struct afs_vnode *vnode,
		const char *name,
D
David Howells 已提交
857
		bool async)
858 859
{
	struct afs_call *call;
860
	struct afs_net *net = afs_v2net(vnode);
861 862 863 864 865 866 867 868 869
	size_t namesz, reqsz, padsz;
	__be32 *bp;

	_enter("");

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

870
	call = afs_alloc_flat_call(net, &afs_RXFSLink, reqsz, (21 + 21 + 6) * 4);
871 872 873 874
	if (!call)
		return -ENOMEM;

	call->key = key;
875 876
	call->reply[0] = dvnode;
	call->reply[1] = vnode;
877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894

	/* 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);

D
David Howells 已提交
895
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
896 897 898 899 900
}

/*
 * deliver reply data to an FS.Symlink
 */
901
static int afs_deliver_fs_symlink(struct afs_call *call)
902
{
903
	struct afs_vnode *vnode = call->reply[0];
904
	const __be32 *bp;
905
	int ret;
906

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

909
	ret = afs_transfer_reply(call);
910 911
	if (ret < 0)
		return ret;
912 913 914

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
915 916
	xdr_decode_AFSFid(&bp, call->reply[1]);
	xdr_decode_AFSFetchStatus(&bp, call->reply[2], NULL, NULL);
917
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
918
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942

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

/*
 * FS.Symlink operation type
 */
static const struct afs_call_type afs_RXFSSymlink = {
	.name		= "FS.Symlink",
	.deliver	= afs_deliver_fs_symlink,
	.destructor	= afs_flat_call_destructor,
};

/*
 * create a symbolic link
 */
int afs_fs_symlink(struct afs_server *server,
		   struct key *key,
		   struct afs_vnode *vnode,
		   const char *name,
		   const char *contents,
		   struct afs_fid *newfid,
		   struct afs_file_status *newstatus,
D
David Howells 已提交
943
		   bool async)
944 945
{
	struct afs_call *call;
946
	struct afs_net *net = afs_v2net(vnode);
947 948 949 950 951 952 953 954 955 956 957 958 959
	size_t namesz, reqsz, padsz, c_namesz, c_padsz;
	__be32 *bp;

	_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);

960
	call = afs_alloc_flat_call(net, &afs_RXFSSymlink, reqsz,
961 962 963 964 965
				   (3 + 21 + 21 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->key = key;
966 967 968
	call->reply[0] = vnode;
	call->reply[1] = newfid;
	call->reply[2] = newstatus;
969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989

	/* 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;
	}
990 991
	*bp++ = htonl(AFS_SET_MODE | AFS_SET_MTIME);
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
992 993 994 995 996
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = htonl(S_IRWXUGO); /* unix mode */
	*bp++ = 0; /* segment size */

D
David Howells 已提交
997
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
998 999 1000 1001 1002
}

/*
 * deliver reply data to an FS.Rename
 */
1003
static int afs_deliver_fs_rename(struct afs_call *call)
1004
{
1005
	struct afs_vnode *orig_dvnode = call->reply[0], *new_dvnode = call->reply[1];
1006
	const __be32 *bp;
1007
	int ret;
1008

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

1011
	ret = afs_transfer_reply(call);
1012 1013
	if (ret < 0)
		return ret;
1014 1015 1016

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
1017
	xdr_decode_AFSFetchStatus(&bp, &orig_dvnode->status, orig_dvnode, NULL);
1018
	if (new_dvnode != orig_dvnode)
1019 1020
		xdr_decode_AFSFetchStatus(&bp, &new_dvnode->status, new_dvnode,
					  NULL);
1021
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044

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

/*
 * FS.Rename operation type
 */
static const struct afs_call_type afs_RXFSRename = {
	.name		= "FS.Rename",
	.deliver	= afs_deliver_fs_rename,
	.destructor	= afs_flat_call_destructor,
};

/*
 * create a symbolic link
 */
int afs_fs_rename(struct afs_server *server,
		  struct key *key,
		  struct afs_vnode *orig_dvnode,
		  const char *orig_name,
		  struct afs_vnode *new_dvnode,
		  const char *new_name,
D
David Howells 已提交
1045
		  bool async)
1046 1047
{
	struct afs_call *call;
1048
	struct afs_net *net = afs_v2net(orig_dvnode);
1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
	size_t reqsz, o_namesz, o_padsz, n_namesz, n_padsz;
	__be32 *bp;

	_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;

1065
	call = afs_alloc_flat_call(net, &afs_RXFSRename, reqsz, (21 + 21 + 6) * 4);
1066 1067 1068 1069
	if (!call)
		return -ENOMEM;

	call->key = key;
1070 1071
	call->reply[0] = orig_dvnode;
	call->reply[1] = new_dvnode;
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097

	/* 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;
	}

D
David Howells 已提交
1098
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
1099
}
1100 1101 1102 1103

/*
 * deliver reply data to an FS.StoreData
 */
1104
static int afs_deliver_fs_store_data(struct afs_call *call)
1105
{
1106
	struct afs_vnode *vnode = call->reply[0];
1107
	const __be32 *bp;
1108
	int ret;
1109

1110
	_enter("");
1111

1112
	ret = afs_transfer_reply(call);
1113 1114
	if (ret < 0)
		return ret;
1115 1116 1117 1118 1119

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode,
				  &call->store_version);
1120
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136

	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",
	.deliver	= afs_deliver_fs_store_data,
	.destructor	= afs_flat_call_destructor,
};

D
David Howells 已提交
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
static const struct afs_call_type afs_RXFSStoreData64 = {
	.name		= "FS.StoreData64",
	.deliver	= afs_deliver_fs_store_data,
	.destructor	= afs_flat_call_destructor,
};

/*
 * store a set of pages to a very large file
 */
static int afs_fs_store_data64(struct afs_server *server,
			       struct afs_writeback *wb,
			       pgoff_t first, pgoff_t last,
			       unsigned offset, unsigned to,
			       loff_t size, loff_t pos, loff_t i_size,
D
David Howells 已提交
1151
			       bool async)
D
David Howells 已提交
1152 1153 1154
{
	struct afs_vnode *vnode = wb->vnode;
	struct afs_call *call;
1155
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1156 1157 1158 1159 1160
	__be32 *bp;

	_enter(",%x,{%x:%u},,",
	       key_serial(wb->key), vnode->fid.vid, vnode->fid.vnode);

1161
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData64,
D
David Howells 已提交
1162 1163 1164 1165 1166 1167 1168
				   (4 + 6 + 3 * 2) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->wb = wb;
	call->key = wb->key;
1169
	call->reply[0] = vnode;
D
David Howells 已提交
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
	call->mapping = vnode->vfs_inode.i_mapping;
	call->first = first;
	call->last = last;
	call->first_offset = offset;
	call->last_to = to;
	call->send_pages = true;
	call->store_version = vnode->status.data_version + 1;

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

1185 1186
	*bp++ = htonl(AFS_SET_MTIME); /* mask */
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
D
David Howells 已提交
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
	*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);

D
David Howells 已提交
1199
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
D
David Howells 已提交
1200 1201
}

1202 1203 1204 1205 1206 1207
/*
 * store a set of pages
 */
int afs_fs_store_data(struct afs_server *server, struct afs_writeback *wb,
		      pgoff_t first, pgoff_t last,
		      unsigned offset, unsigned to,
D
David Howells 已提交
1208
		      bool async)
1209 1210 1211
{
	struct afs_vnode *vnode = wb->vnode;
	struct afs_call *call;
1212
	struct afs_net *net = afs_v2net(vnode);
1213 1214 1215 1216 1217 1218
	loff_t size, pos, i_size;
	__be32 *bp;

	_enter(",%x,{%x:%u},,",
	       key_serial(wb->key), vnode->fid.vid, vnode->fid.vnode);

1219
	size = (loff_t)to - (loff_t)offset;
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
	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 已提交
1233 1234
	if (pos >> 32 || i_size >> 32 || size >> 32 || (pos + size) >> 32)
		return afs_fs_store_data64(server, wb, first, last, offset, to,
D
David Howells 已提交
1235
					   size, pos, i_size, async);
1236

1237
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData,
1238 1239 1240 1241 1242 1243 1244
				   (4 + 6 + 3) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->wb = wb;
	call->key = wb->key;
1245
	call->reply[0] = vnode;
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
	call->mapping = vnode->vfs_inode.i_mapping;
	call->first = first;
	call->last = last;
	call->first_offset = offset;
	call->last_to = to;
	call->send_pages = true;
	call->store_version = vnode->status.data_version + 1;

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

1261 1262
	*bp++ = htonl(AFS_SET_MTIME); /* mask */
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
1263 1264 1265 1266 1267 1268 1269 1270 1271
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = 0; /* unix mode */
	*bp++ = 0; /* segment size */

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

D
David Howells 已提交
1272
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
1273 1274 1275 1276 1277
}

/*
 * deliver reply data to an FS.StoreStatus
 */
1278
static int afs_deliver_fs_store_status(struct afs_call *call)
1279 1280
{
	afs_dataversion_t *store_version;
1281
	struct afs_vnode *vnode = call->reply[0];
1282
	const __be32 *bp;
1283
	int ret;
1284

1285
	_enter("");
1286

1287
	ret = afs_transfer_reply(call);
1288 1289
	if (ret < 0)
		return ret;
1290 1291 1292 1293 1294 1295 1296 1297

	/* unmarshall the reply once we've received all of it */
	store_version = NULL;
	if (call->operation_ID == FSSTOREDATA)
		store_version = &call->store_version;

	bp = call->buffer;
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, store_version);
1298
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318

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

/*
 * FS.StoreStatus operation type
 */
static const struct afs_call_type afs_RXFSStoreStatus = {
	.name		= "FS.StoreStatus",
	.deliver	= afs_deliver_fs_store_status,
	.destructor	= afs_flat_call_destructor,
};

static const struct afs_call_type afs_RXFSStoreData_as_Status = {
	.name		= "FS.StoreData",
	.deliver	= afs_deliver_fs_store_status,
	.destructor	= afs_flat_call_destructor,
};

D
David Howells 已提交
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
static const struct afs_call_type afs_RXFSStoreData64_as_Status = {
	.name		= "FS.StoreData64",
	.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
 */
static int afs_fs_setattr_size64(struct afs_server *server, struct key *key,
				 struct afs_vnode *vnode, struct iattr *attr,
D
David Howells 已提交
1331
				 bool async)
D
David Howells 已提交
1332 1333
{
	struct afs_call *call;
1334
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1335 1336 1337 1338 1339 1340 1341
	__be32 *bp;

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

	ASSERT(attr->ia_valid & ATTR_SIZE);

1342
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData64_as_Status,
D
David Howells 已提交
1343 1344 1345 1346 1347 1348
				   (4 + 6 + 3 * 2) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->key = key;
1349
	call->reply[0] = vnode;
D
David Howells 已提交
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
	call->store_version = vnode->status.data_version + 1;
	call->operation_ID = FSSTOREDATA;

	/* 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);

	*bp++ = 0;				/* position of start of write */
	*bp++ = 0;
	*bp++ = 0;				/* size of write */
	*bp++ = 0;
	*bp++ = htonl(attr->ia_size >> 32);	/* new file length */
	*bp++ = htonl((u32) attr->ia_size);

D
David Howells 已提交
1369
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
D
David Howells 已提交
1370 1371
}

1372 1373 1374 1375 1376 1377
/*
 * set the attributes on a file, using FS.StoreData rather than FS.StoreStatus
 * so as to alter the file size also
 */
static int afs_fs_setattr_size(struct afs_server *server, struct key *key,
			       struct afs_vnode *vnode, struct iattr *attr,
D
David Howells 已提交
1378
			       bool async)
1379 1380
{
	struct afs_call *call;
1381
	struct afs_net *net = afs_v2net(vnode);
1382 1383 1384 1385 1386 1387
	__be32 *bp;

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

	ASSERT(attr->ia_valid & ATTR_SIZE);
D
David Howells 已提交
1388 1389
	if (attr->ia_size >> 32)
		return afs_fs_setattr_size64(server, key, vnode, attr,
D
David Howells 已提交
1390
					     async);
1391

1392
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData_as_Status,
1393 1394 1395 1396 1397 1398
				   (4 + 6 + 3) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->key = key;
1399
	call->reply[0] = vnode;
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
	call->store_version = vnode->status.data_version + 1;
	call->operation_ID = FSSTOREDATA;

	/* 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);

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

D
David Howells 已提交
1416
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
1417 1418 1419 1420 1421 1422 1423 1424
}

/*
 * set the attributes on a file, using FS.StoreData if there's a change in file
 * size, and FS.StoreStatus otherwise
 */
int afs_fs_setattr(struct afs_server *server, struct key *key,
		   struct afs_vnode *vnode, struct iattr *attr,
D
David Howells 已提交
1425
		   bool async)
1426 1427
{
	struct afs_call *call;
1428
	struct afs_net *net = afs_v2net(vnode);
1429 1430 1431 1432
	__be32 *bp;

	if (attr->ia_valid & ATTR_SIZE)
		return afs_fs_setattr_size(server, key, vnode, attr,
D
David Howells 已提交
1433
					   async);
1434 1435 1436 1437

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

1438
	call = afs_alloc_flat_call(net, &afs_RXFSStoreStatus,
1439 1440 1441 1442 1443 1444
				   (4 + 6) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->key = key;
1445
	call->reply[0] = vnode;
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
	call->operation_ID = FSSTORESTATUS;

	/* 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);

D
David Howells 已提交
1457
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
1458
}
D
David Howells 已提交
1459 1460 1461 1462

/*
 * deliver reply data to an FS.GetVolumeStatus
 */
1463
static int afs_deliver_fs_get_volume_status(struct afs_call *call)
D
David Howells 已提交
1464 1465 1466 1467 1468
{
	const __be32 *bp;
	char *p;
	int ret;

1469
	_enter("{%u}", call->unmarshall);
D
David Howells 已提交
1470 1471 1472 1473 1474 1475 1476 1477 1478

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

		/* extract the returned status record */
	case 1:
		_debug("extract status");
1479 1480
		ret = afs_extract_data(call, call->buffer,
				       12 * 4, true);
1481 1482
		if (ret < 0)
			return ret;
D
David Howells 已提交
1483 1484

		bp = call->buffer;
1485
		xdr_decode_AFSFetchVolumeStatus(&bp, call->reply[1]);
D
David Howells 已提交
1486 1487 1488 1489 1490
		call->offset = 0;
		call->unmarshall++;

		/* extract the volume name length */
	case 2:
1491
		ret = afs_extract_data(call, &call->tmp, 4, true);
1492 1493
		if (ret < 0)
			return ret;
D
David Howells 已提交
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505

		call->count = ntohl(call->tmp);
		_debug("volname length: %u", call->count);
		if (call->count >= AFSNAMEMAX)
			return -EBADMSG;
		call->offset = 0;
		call->unmarshall++;

		/* extract the volume name */
	case 3:
		_debug("extract volname");
		if (call->count > 0) {
1506
			ret = afs_extract_data(call, call->reply[2],
1507
					       call->count, true);
1508 1509
			if (ret < 0)
				return ret;
D
David Howells 已提交
1510 1511
		}

1512
		p = call->reply[2];
D
David Howells 已提交
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
		p[call->count] = 0;
		_debug("volname '%s'", p);

		call->offset = 0;
		call->unmarshall++;

		/* extract the volume name padding */
		if ((call->count & 3) == 0) {
			call->unmarshall++;
			goto no_volname_padding;
		}
		call->count = 4 - (call->count & 3);

	case 4:
1527 1528
		ret = afs_extract_data(call, call->buffer,
				       call->count, true);
1529 1530
		if (ret < 0)
			return ret;
D
David Howells 已提交
1531 1532 1533 1534 1535 1536 1537

		call->offset = 0;
		call->unmarshall++;
	no_volname_padding:

		/* extract the offline message length */
	case 5:
1538
		ret = afs_extract_data(call, &call->tmp, 4, true);
1539 1540
		if (ret < 0)
			return ret;
D
David Howells 已提交
1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552

		call->count = ntohl(call->tmp);
		_debug("offline msg length: %u", call->count);
		if (call->count >= AFSNAMEMAX)
			return -EBADMSG;
		call->offset = 0;
		call->unmarshall++;

		/* extract the offline message */
	case 6:
		_debug("extract offline");
		if (call->count > 0) {
1553
			ret = afs_extract_data(call, call->reply[2],
1554
					       call->count, true);
1555 1556
			if (ret < 0)
				return ret;
D
David Howells 已提交
1557 1558
		}

1559
		p = call->reply[2];
D
David Howells 已提交
1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573
		p[call->count] = 0;
		_debug("offline '%s'", p);

		call->offset = 0;
		call->unmarshall++;

		/* extract the offline message padding */
		if ((call->count & 3) == 0) {
			call->unmarshall++;
			goto no_offline_padding;
		}
		call->count = 4 - (call->count & 3);

	case 7:
1574 1575
		ret = afs_extract_data(call, call->buffer,
				       call->count, true);
1576 1577
		if (ret < 0)
			return ret;
D
David Howells 已提交
1578 1579 1580 1581 1582 1583 1584

		call->offset = 0;
		call->unmarshall++;
	no_offline_padding:

		/* extract the message of the day length */
	case 8:
1585
		ret = afs_extract_data(call, &call->tmp, 4, true);
1586 1587
		if (ret < 0)
			return ret;
D
David Howells 已提交
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599

		call->count = ntohl(call->tmp);
		_debug("motd length: %u", call->count);
		if (call->count >= AFSNAMEMAX)
			return -EBADMSG;
		call->offset = 0;
		call->unmarshall++;

		/* extract the message of the day */
	case 9:
		_debug("extract motd");
		if (call->count > 0) {
1600
			ret = afs_extract_data(call, call->reply[2],
1601
					       call->count, true);
1602 1603
			if (ret < 0)
				return ret;
D
David Howells 已提交
1604 1605
		}

1606
		p = call->reply[2];
D
David Howells 已提交
1607 1608 1609 1610 1611 1612 1613
		p[call->count] = 0;
		_debug("motd '%s'", p);

		call->offset = 0;
		call->unmarshall++;

		/* extract the message of the day padding */
1614
		call->count = (4 - (call->count & 3)) & 3;
D
David Howells 已提交
1615 1616

	case 10:
1617 1618
		ret = afs_extract_data(call, call->buffer,
				       call->count, false);
1619 1620
		if (ret < 0)
			return ret;
D
David Howells 已提交
1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636

		call->offset = 0;
		call->unmarshall++;
	case 11:
		break;
	}

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

/*
 * destroy an FS.GetVolumeStatus call
 */
static void afs_get_volume_status_call_destructor(struct afs_call *call)
{
1637 1638
	kfree(call->reply[2]);
	call->reply[2] = NULL;
D
David Howells 已提交
1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657
	afs_flat_call_destructor(call);
}

/*
 * FS.GetVolumeStatus operation type
 */
static const struct afs_call_type afs_RXFSGetVolumeStatus = {
	.name		= "FS.GetVolumeStatus",
	.deliver	= afs_deliver_fs_get_volume_status,
	.destructor	= afs_get_volume_status_call_destructor,
};

/*
 * fetch the status of a volume
 */
int afs_fs_get_volume_status(struct afs_server *server,
			     struct key *key,
			     struct afs_vnode *vnode,
			     struct afs_volume_status *vs,
D
David Howells 已提交
1658
			     bool async)
D
David Howells 已提交
1659 1660
{
	struct afs_call *call;
1661
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1662 1663 1664 1665 1666 1667 1668 1669 1670
	__be32 *bp;
	void *tmpbuf;

	_enter("");

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

1671
	call = afs_alloc_flat_call(net, &afs_RXFSGetVolumeStatus, 2 * 4, 12 * 4);
D
David Howells 已提交
1672 1673 1674 1675 1676 1677
	if (!call) {
		kfree(tmpbuf);
		return -ENOMEM;
	}

	call->key = key;
1678 1679 1680
	call->reply[0] = vnode;
	call->reply[1] = vs;
	call->reply[2] = tmpbuf;
D
David Howells 已提交
1681 1682 1683 1684 1685 1686

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

D
David Howells 已提交
1687
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
D
David Howells 已提交
1688
}
D
David Howells 已提交
1689 1690 1691 1692

/*
 * deliver reply data to an FS.SetLock, FS.ExtendLock or FS.ReleaseLock
 */
1693
static int afs_deliver_fs_xxxx_lock(struct afs_call *call)
D
David Howells 已提交
1694 1695
{
	const __be32 *bp;
1696
	int ret;
D
David Howells 已提交
1697

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

1700
	ret = afs_transfer_reply(call);
1701 1702
	if (ret < 0)
		return ret;
D
David Howells 已提交
1703 1704 1705

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
1706
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
D
David Howells 已提交
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745

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

/*
 * FS.SetLock operation type
 */
static const struct afs_call_type afs_RXFSSetLock = {
	.name		= "FS.SetLock",
	.deliver	= afs_deliver_fs_xxxx_lock,
	.destructor	= afs_flat_call_destructor,
};

/*
 * FS.ExtendLock operation type
 */
static const struct afs_call_type afs_RXFSExtendLock = {
	.name		= "FS.ExtendLock",
	.deliver	= afs_deliver_fs_xxxx_lock,
	.destructor	= afs_flat_call_destructor,
};

/*
 * FS.ReleaseLock operation type
 */
static const struct afs_call_type afs_RXFSReleaseLock = {
	.name		= "FS.ReleaseLock",
	.deliver	= afs_deliver_fs_xxxx_lock,
	.destructor	= afs_flat_call_destructor,
};

/*
 * get a lock on a file
 */
int afs_fs_set_lock(struct afs_server *server,
		    struct key *key,
		    struct afs_vnode *vnode,
		    afs_lock_type_t type,
D
David Howells 已提交
1746
		    bool async)
D
David Howells 已提交
1747 1748
{
	struct afs_call *call;
1749
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1750 1751 1752 1753
	__be32 *bp;

	_enter("");

1754
	call = afs_alloc_flat_call(net, &afs_RXFSSetLock, 5 * 4, 6 * 4);
D
David Howells 已提交
1755 1756 1757 1758
	if (!call)
		return -ENOMEM;

	call->key = key;
1759
	call->reply[0] = vnode;
D
David Howells 已提交
1760 1761 1762 1763 1764 1765 1766 1767 1768

	/* 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);

D
David Howells 已提交
1769
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
D
David Howells 已提交
1770 1771 1772 1773 1774 1775 1776 1777
}

/*
 * extend a lock on a file
 */
int afs_fs_extend_lock(struct afs_server *server,
		       struct key *key,
		       struct afs_vnode *vnode,
D
David Howells 已提交
1778
		       bool async)
D
David Howells 已提交
1779 1780
{
	struct afs_call *call;
1781
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1782 1783 1784 1785
	__be32 *bp;

	_enter("");

1786
	call = afs_alloc_flat_call(net, &afs_RXFSExtendLock, 4 * 4, 6 * 4);
D
David Howells 已提交
1787 1788 1789 1790
	if (!call)
		return -ENOMEM;

	call->key = key;
1791
	call->reply[0] = vnode;
D
David Howells 已提交
1792 1793 1794 1795 1796 1797 1798 1799

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

D
David Howells 已提交
1800
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
D
David Howells 已提交
1801 1802 1803 1804 1805 1806 1807 1808
}

/*
 * release a lock on a file
 */
int afs_fs_release_lock(struct afs_server *server,
			struct key *key,
			struct afs_vnode *vnode,
D
David Howells 已提交
1809
			bool async)
D
David Howells 已提交
1810 1811
{
	struct afs_call *call;
1812
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1813 1814 1815 1816
	__be32 *bp;

	_enter("");

1817
	call = afs_alloc_flat_call(net, &afs_RXFSReleaseLock, 4 * 4, 6 * 4);
D
David Howells 已提交
1818 1819 1820 1821
	if (!call)
		return -ENOMEM;

	call->key = key;
1822
	call->reply[0] = vnode;
D
David Howells 已提交
1823 1824 1825 1826 1827 1828 1829 1830

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

D
David Howells 已提交
1831
	return afs_make_call(&server->addr, call, GFP_NOFS, async);
D
David Howells 已提交
1832
}