fsclient.c 45.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
static const struct afs_fid afs_zero_fid;

21 22 23 24 25 26
/*
 * 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];

27
static inline void afs_use_fs_server(struct afs_call *call, struct afs_cb_interest *cbi)
28
{
29
	call->cbi = afs_get_cb_interest(cbi);
30 31
}

32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * 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 已提交
45
/*
46
 * decode an AFSFetchStatus block
L
Linus Torvalds 已提交
47
 */
48
static void xdr_decode_AFSFetchStatus(const __be32 **_bp,
49
				      struct afs_file_status *status,
50 51
				      struct afs_vnode *vnode,
				      afs_dataversion_t *store_version)
L
Linus Torvalds 已提交
52
{
53
	afs_dataversion_t expected_version;
54 55
	const __be32 *bp = *_bp;
	umode_t mode;
56
	u64 data_version, size;
57
	bool changed = false;
58 59
	kuid_t owner;
	kgid_t group;
60

61 62
	if (vnode)
		write_seqlock(&vnode->cb_lock);
63

64 65 66
#define EXTRACT(DST)				\
	do {					\
		u32 x = ntohl(*bp++);		\
67 68
		if (DST != x)			\
			changed |= true;	\
69 70 71
		DST = x;			\
	} while (0)

72 73 74 75
	status->if_version = ntohl(*bp++);
	EXTRACT(status->type);
	EXTRACT(status->nlink);
	size = ntohl(*bp++);
76
	data_version = ntohl(*bp++);
77
	EXTRACT(status->author);
78 79 80
	owner = make_kuid(&init_user_ns, ntohl(*bp++));
	changed |= !uid_eq(owner, status->owner);
	status->owner = owner;
81 82 83
	EXTRACT(status->caller_access); /* call ticket dependent */
	EXTRACT(status->anon_access);
	EXTRACT(status->mode);
D
David Howells 已提交
84 85
	bp++; /* parent.vnode */
	bp++; /* parent.unique */
86
	bp++; /* seg size */
87 88
	status->mtime_client = ntohl(*bp++);
	status->mtime_server = ntohl(*bp++);
89 90 91
	group = make_kgid(&init_user_ns, ntohl(*bp++));
	changed |= !gid_eq(group, status->group);
	status->group = group;
92 93
	bp++; /* sync counter */
	data_version |= (u64) ntohl(*bp++) << 32;
D
David Howells 已提交
94
	EXTRACT(status->lock_count);
95 96
	size |= (u64) ntohl(*bp++) << 32;
	bp++; /* spare 4 */
97 98
	*_bp = bp;

99 100 101
	if (size != status->size) {
		status->size = size;
		changed |= true;
102
	}
103
	status->mode &= S_IALLUGO;
104 105

	_debug("vnode time %lx, %lx",
106 107 108 109 110 111 112 113
	       status->mtime_client, status->mtime_server);

	if (vnode) {
		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;
114
			vnode->vfs_inode.i_generation = vnode->fid.unique;
M
Miklos Szeredi 已提交
115
			set_nlink(&vnode->vfs_inode, status->nlink);
116 117 118 119 120 121 122 123

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

124
		vnode->vfs_inode.i_ctime.tv_sec	= status->mtime_client;
125 126
		vnode->vfs_inode.i_mtime	= vnode->vfs_inode.i_ctime;
		vnode->vfs_inode.i_atime	= vnode->vfs_inode.i_ctime;
127
		vnode->vfs_inode.i_version	= data_version;
128 129
	}

130 131 132 133 134
	expected_version = status->data_version;
	if (store_version)
		expected_version = *store_version;

	if (expected_version != data_version) {
135 136 137
		status->data_version = data_version;
		if (vnode && !test_bit(AFS_VNODE_UNSET, &vnode->flags)) {
			_debug("vnode modified %llx on {%x:%u}",
138 139
			       (unsigned long long) data_version,
			       vnode->fid.vid, vnode->fid.vnode);
140
			set_bit(AFS_VNODE_DIR_MODIFIED, &vnode->flags);
141 142
			set_bit(AFS_VNODE_ZAP_DATA, &vnode->flags);
		}
143 144
	} else if (store_version) {
		status->data_version = data_version;
L
Linus Torvalds 已提交
145
	}
146

147 148
	if (vnode)
		write_sequnlock(&vnode->cb_lock);
D
David Howells 已提交
149
}
L
Linus Torvalds 已提交
150 151

/*
152
 * decode an AFSCallBack block
L
Linus Torvalds 已提交
153
 */
154 155 156
static void xdr_decode_AFSCallBack(struct afs_call *call,
				   struct afs_vnode *vnode,
				   const __be32 **_bp)
L
Linus Torvalds 已提交
157
{
158
	struct afs_cb_interest *old, *cbi = call->cbi;
159
	const __be32 *bp = *_bp;
160 161 162 163
	u32 cb_expiry;

	write_seqlock(&vnode->cb_lock);

164
	if (call->cb_break == (vnode->cb_break + cbi->server->cb_s_break)) {
165 166 167 168
		vnode->cb_version	= ntohl(*bp++);
		cb_expiry		= ntohl(*bp++);
		vnode->cb_type		= ntohl(*bp++);
		vnode->cb_expires_at	= cb_expiry + ktime_get_real_seconds();
169 170 171 172 173
		old = vnode->cb_interest;
		if (old != call->cbi) {
			vnode->cb_interest = cbi;
			cbi = old;
		}
174 175 176 177
		set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
	} else {
		bp += 3;
	}
L
Linus Torvalds 已提交
178

179
	write_sequnlock(&vnode->cb_lock);
180
	call->cbi = cbi;
181
	*_bp = bp;
D
David Howells 已提交
182
}
L
Linus Torvalds 已提交
183

184 185 186 187 188 189 190 191 192 193 194
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 已提交
195
/*
196
 * decode an AFSVolSync block
L
Linus Torvalds 已提交
197
 */
198 199
static void xdr_decode_AFSVolSync(const __be32 **_bp,
				  struct afs_volsync *volsync)
L
Linus Torvalds 已提交
200
{
201
	const __be32 *bp = *_bp;
L
Linus Torvalds 已提交
202

203 204 205 206 207 208 209 210
	volsync->creation = ntohl(*bp++);
	bp++; /* spare2 */
	bp++; /* spare3 */
	bp++; /* spare4 */
	bp++; /* spare5 */
	bp++; /* spare6 */
	*_bp = bp;
}
L
Linus Torvalds 已提交
211

212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
/*
 * 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;
228
		owner = from_kuid(&init_user_ns, attr->ia_uid);
229 230 231 232
	}

	if (attr->ia_valid & ATTR_GID) {
		mask |= AFS_SET_GROUP;
233
		group = from_kgid(&init_user_ns, attr->ia_gid);
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
	}

	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 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
/*
 * 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;
}

273 274 275
/*
 * deliver reply data to an FS.FetchStatus
 */
276
static int afs_deliver_fs_fetch_status(struct afs_call *call)
277
{
278
	struct afs_vnode *vnode = call->reply[0];
279
	const __be32 *bp;
280
	int ret;
L
Linus Torvalds 已提交
281

282
	ret = afs_transfer_reply(call);
283 284
	if (ret < 0)
		return ret;
L
Linus Torvalds 已提交
285

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

288 289
	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
290
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
291
	xdr_decode_AFSCallBack(call, vnode, &bp);
292 293
	if (call->reply[1])
		xdr_decode_AFSVolSync(&bp, call->reply[1]);
L
Linus Torvalds 已提交
294

295 296
	_leave(" = 0 [done]");
	return 0;
D
David Howells 已提交
297
}
298 299 300 301 302

/*
 * FS.FetchStatus operation type
 */
static const struct afs_call_type afs_RXFSFetchStatus = {
D
David Howells 已提交
303
	.name		= "FS.FetchStatus",
304
	.op		= afs_FS_FetchStatus,
305 306 307
	.deliver	= afs_deliver_fs_fetch_status,
	.destructor	= afs_flat_call_destructor,
};
L
Linus Torvalds 已提交
308 309 310 311

/*
 * fetch the status information for a file
 */
312
int afs_fs_fetch_file_status(struct afs_fs_cursor *fc, struct afs_volsync *volsync)
L
Linus Torvalds 已提交
313
{
314
	struct afs_vnode *vnode = fc->vnode;
315
	struct afs_call *call;
316
	struct afs_net *net = afs_v2net(vnode);
L
Linus Torvalds 已提交
317 318
	__be32 *bp;

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

322
	call = afs_alloc_flat_call(net, &afs_RXFSFetchStatus, 16, (21 + 3 + 6) * 4);
323 324
	if (!call) {
		fc->ac.error = -ENOMEM;
325
		return -ENOMEM;
326
	}
L
Linus Torvalds 已提交
327

328
	call->key = fc->key;
329 330
	call->reply[0] = vnode;
	call->reply[1] = volsync;
L
Linus Torvalds 已提交
331 332

	/* marshall the parameters */
333
	bp = call->request;
L
Linus Torvalds 已提交
334 335 336 337 338
	bp[0] = htonl(FSFETCHSTATUS);
	bp[1] = htonl(vnode->fid.vid);
	bp[2] = htonl(vnode->fid.vnode);
	bp[3] = htonl(vnode->fid.unique);

339 340
	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
341
	trace_afs_make_fs_call(call, &vnode->fid);
342
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
343
}
L
Linus Torvalds 已提交
344 345

/*
346
 * deliver reply data to an FS.FetchData
L
Linus Torvalds 已提交
347
 */
348
static int afs_deliver_fs_fetch_data(struct afs_call *call)
L
Linus Torvalds 已提交
349
{
350 351
	struct afs_vnode *vnode = call->reply[0];
	struct afs_read *req = call->reply[2];
352
	const __be32 *bp;
353
	unsigned int size;
354
	void *buffer;
L
Linus Torvalds 已提交
355 356
	int ret;

357
	_enter("{%u,%zu/%u;%llu/%llu}",
358 359
	       call->unmarshall, call->offset, call->count,
	       req->remain, req->actual_len);
360 361 362

	switch (call->unmarshall) {
	case 0:
363
		req->actual_len = 0;
364 365
		call->offset = 0;
		call->unmarshall++;
D
David Howells 已提交
366 367 368 369
		if (call->operation_ID != FSFETCHDATA64) {
			call->unmarshall++;
			goto no_msw;
		}
370

D
David Howells 已提交
371 372 373
		/* extract the upper part of the returned data length of an
		 * FSFETCHDATA64 op (which should always be 0 using this
		 * client) */
374
	case 1:
D
David Howells 已提交
375
		_debug("extract data length (MSW)");
376
		ret = afs_extract_data(call, &call->tmp, 4, true);
377 378
		if (ret < 0)
			return ret;
D
David Howells 已提交
379

380 381
		req->actual_len = ntohl(call->tmp);
		req->actual_len <<= 32;
D
David Howells 已提交
382 383 384 385 386 387
		call->offset = 0;
		call->unmarshall++;

	no_msw:
		/* extract the returned data length */
	case 2:
388
		_debug("extract data length");
389
		ret = afs_extract_data(call, &call->tmp, 4, true);
390 391
		if (ret < 0)
			return ret;
L
Linus Torvalds 已提交
392

393 394 395 396 397 398 399 400
		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;
401 402
		call->unmarshall++;

403
	begin_page:
404
		ASSERTCMP(req->index, <, req->nr_pages);
405 406 407 408 409 410 411 412
		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;

413
		/* extract the returned data */
D
David Howells 已提交
414
	case 3:
415
		_debug("extract data %llu/%llu %zu/%u",
416 417 418 419 420 421 422 423 424 425
		       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 已提交
426
			req->index++;
427 428
			if (req->remain > 0) {
				call->offset = 0;
429 430
				if (req->index >= req->nr_pages) {
					call->unmarshall = 4;
431
					goto begin_discard;
432
				}
433 434
				goto begin_page;
			}
435
		}
436 437 438 439 440
		goto no_more_data;

		/* Discard any excess data the server gave us */
	begin_discard:
	case 4:
441
		size = min_t(loff_t, sizeof(afs_discard_buffer), req->remain);
442
		call->count = size;
443
		_debug("extract discard %llu/%llu %zu/%u",
444 445 446 447 448 449 450 451 452
		       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 已提交
453

454
	no_more_data:
455
		call->offset = 0;
456
		call->unmarshall = 5;
L
Linus Torvalds 已提交
457

458
		/* extract the metadata */
459
	case 5:
460 461
		ret = afs_extract_data(call, call->buffer,
				       (21 + 3 + 6) * 4, false);
462 463
		if (ret < 0)
			return ret;
464 465

		bp = call->buffer;
466
		xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
467
		xdr_decode_AFSCallBack(call, vnode, &bp);
468 469
		if (call->reply[1])
			xdr_decode_AFSVolSync(&bp, call->reply[1]);
470 471 472

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

474
	case 6:
475
		break;
L
Linus Torvalds 已提交
476 477
	}

478 479 480 481
	for (; req->index < req->nr_pages; req->index++) {
		if (call->count < PAGE_SIZE)
			zero_user_segment(req->pages[req->index],
					  call->count, PAGE_SIZE);
482 483
		if (req->page_done)
			req->page_done(call, req);
484
		call->count = 0;
D
David Howells 已提交
485 486
	}

487 488
	_leave(" = 0 [done]");
	return 0;
D
David Howells 已提交
489
}
L
Linus Torvalds 已提交
490

491 492
static void afs_fetch_data_destructor(struct afs_call *call)
{
493
	struct afs_read *req = call->reply[2];
494 495 496 497 498

	afs_put_read(req);
	afs_flat_call_destructor(call);
}

L
Linus Torvalds 已提交
499
/*
500
 * FS.FetchData operation type
L
Linus Torvalds 已提交
501
 */
502
static const struct afs_call_type afs_RXFSFetchData = {
D
David Howells 已提交
503
	.name		= "FS.FetchData",
504
	.op		= afs_FS_FetchData,
505
	.deliver	= afs_deliver_fs_fetch_data,
506
	.destructor	= afs_fetch_data_destructor,
507 508
};

D
David Howells 已提交
509 510
static const struct afs_call_type afs_RXFSFetchData64 = {
	.name		= "FS.FetchData64",
511
	.op		= afs_FS_FetchData64,
D
David Howells 已提交
512
	.deliver	= afs_deliver_fs_fetch_data,
513
	.destructor	= afs_fetch_data_destructor,
D
David Howells 已提交
514 515 516 517 518
};

/*
 * fetch data from a very large file
 */
519
static int afs_fs_fetch_data64(struct afs_fs_cursor *fc, struct afs_read *req)
D
David Howells 已提交
520
{
521
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
522
	struct afs_call *call;
523
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
524 525 526 527
	__be32 *bp;

	_enter("");

528
	call = afs_alloc_flat_call(net, &afs_RXFSFetchData64, 32, (21 + 3 + 6) * 4);
D
David Howells 已提交
529 530 531
	if (!call)
		return -ENOMEM;

532
	call->key = fc->key;
533 534 535
	call->reply[0] = vnode;
	call->reply[1] = NULL; /* volsync */
	call->reply[2] = req;
D
David Howells 已提交
536 537 538 539 540 541 542

	/* 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);
543 544
	bp[4] = htonl(upper_32_bits(req->pos));
	bp[5] = htonl(lower_32_bits(req->pos));
D
David Howells 已提交
545
	bp[6] = 0;
546
	bp[7] = htonl(lower_32_bits(req->len));
D
David Howells 已提交
547

548
	atomic_inc(&req->usage);
549 550
	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
551
	trace_afs_make_fs_call(call, &vnode->fid);
552
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
553 554
}

555 556 557
/*
 * fetch data from a file
 */
558
int afs_fs_fetch_data(struct afs_fs_cursor *fc, struct afs_read *req)
L
Linus Torvalds 已提交
559
{
560
	struct afs_vnode *vnode = fc->vnode;
561
	struct afs_call *call;
562
	struct afs_net *net = afs_v2net(vnode);
L
Linus Torvalds 已提交
563 564
	__be32 *bp;

565 566 567
	if (upper_32_bits(req->pos) ||
	    upper_32_bits(req->len) ||
	    upper_32_bits(req->pos + req->len))
568
		return afs_fs_fetch_data64(fc, req);
D
David Howells 已提交
569

570
	_enter("");
L
Linus Torvalds 已提交
571

572
	call = afs_alloc_flat_call(net, &afs_RXFSFetchData, 24, (21 + 3 + 6) * 4);
573 574
	if (!call)
		return -ENOMEM;
L
Linus Torvalds 已提交
575

576
	call->key = fc->key;
577 578 579
	call->reply[0] = vnode;
	call->reply[1] = NULL; /* volsync */
	call->reply[2] = req;
L
Linus Torvalds 已提交
580 581

	/* marshall the parameters */
582 583 584 585 586
	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);
587 588
	bp[4] = htonl(lower_32_bits(req->pos));
	bp[5] = htonl(lower_32_bits(req->len));
L
Linus Torvalds 已提交
589

590
	atomic_inc(&req->usage);
591 592
	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
593
	trace_afs_make_fs_call(call, &vnode->fid);
594
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
595
}
596 597 598 599

/*
 * deliver reply data to an FS.CreateFile or an FS.MakeDir
 */
600
static int afs_deliver_fs_create_vnode(struct afs_call *call)
601
{
602
	struct afs_vnode *vnode = call->reply[0];
603
	const __be32 *bp;
604
	int ret;
605

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

608
	ret = afs_transfer_reply(call);
609 610
	if (ret < 0)
		return ret;
611 612 613

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
614 615
	xdr_decode_AFSFid(&bp, call->reply[1]);
	xdr_decode_AFSFetchStatus(&bp, call->reply[2], NULL, NULL);
616
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
617 618
	xdr_decode_AFSCallBack_raw(&bp, call->reply[3]);
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
619 620 621 622 623 624 625 626

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

/*
 * FS.CreateFile and FS.MakeDir operation type
 */
627 628 629 630 631 632 633 634 635 636
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,
637 638 639 640 641 642 643
	.deliver	= afs_deliver_fs_create_vnode,
	.destructor	= afs_flat_call_destructor,
};

/*
 * create a file or make a directory
 */
D
David Howells 已提交
644
int afs_fs_create(struct afs_fs_cursor *fc,
645 646 647 648
		  const char *name,
		  umode_t mode,
		  struct afs_fid *newfid,
		  struct afs_file_status *newstatus,
649
		  struct afs_callback *newcb)
650
{
651
	struct afs_vnode *vnode = fc->vnode;
652
	struct afs_call *call;
653
	struct afs_net *net = afs_v2net(vnode);
654 655 656 657 658 659 660 661 662
	size_t namesz, reqsz, padsz;
	__be32 *bp;

	_enter("");

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

663 664 665
	call = afs_alloc_flat_call(
		net, S_ISDIR(mode) ? &afs_RXFSMakeDir : &afs_RXFSCreateFile,
		reqsz, (3 + 21 + 21 + 3 + 6) * 4);
666 667 668
	if (!call)
		return -ENOMEM;

669
	call->key = fc->key;
670 671 672 673
	call->reply[0] = vnode;
	call->reply[1] = newfid;
	call->reply[2] = newstatus;
	call->reply[3] = newcb;
674 675 676 677 678 679 680 681 682 683 684 685 686 687

	/* 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;
	}
688 689
	*bp++ = htonl(AFS_SET_MODE | AFS_SET_MTIME);
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
690 691 692 693 694
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = htonl(mode & S_IALLUGO); /* unix mode */
	*bp++ = 0; /* segment size */

695
	afs_use_fs_server(call, fc->cbi);
696
	trace_afs_make_fs_call(call, &vnode->fid);
697
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
698 699 700 701 702
}

/*
 * deliver reply data to an FS.RemoveFile or FS.RemoveDir
 */
703
static int afs_deliver_fs_remove(struct afs_call *call)
704
{
705
	struct afs_vnode *vnode = call->reply[0];
706
	const __be32 *bp;
707
	int ret;
708

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

711
	ret = afs_transfer_reply(call);
712 713
	if (ret < 0)
		return ret;
714 715 716

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
717
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
718
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
719 720 721 722 723 724 725 726

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

/*
 * FS.RemoveDir/FS.RemoveFile operation type
 */
727 728 729 730 731 732 733 734 735 736
static const struct afs_call_type afs_RXFSRemoveFile = {
	.name		= "FS.RemoveFile",
	.op		= afs_FS_RemoveFile,
	.deliver	= afs_deliver_fs_remove,
	.destructor	= afs_flat_call_destructor,
};

static const struct afs_call_type afs_RXFSRemoveDir = {
	.name		= "FS.RemoveDir",
	.op		= afs_FS_RemoveDir,
737 738 739 740 741 742 743
	.deliver	= afs_deliver_fs_remove,
	.destructor	= afs_flat_call_destructor,
};

/*
 * remove a file or directory
 */
744
int afs_fs_remove(struct afs_fs_cursor *fc, const char *name, bool isdir)
745
{
746
	struct afs_vnode *vnode = fc->vnode;
747
	struct afs_call *call;
748
	struct afs_net *net = afs_v2net(vnode);
749 750 751 752 753 754 755 756 757
	size_t namesz, reqsz, padsz;
	__be32 *bp;

	_enter("");

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

758 759 760
	call = afs_alloc_flat_call(
		net, isdir ? &afs_RXFSRemoveDir : &afs_RXFSRemoveFile,
		reqsz, (21 + 6) * 4);
761 762 763
	if (!call)
		return -ENOMEM;

764
	call->key = fc->key;
765
	call->reply[0] = vnode;
766 767 768 769 770 771 772 773 774 775 776 777 778 779 780

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

781
	afs_use_fs_server(call, fc->cbi);
782
	trace_afs_make_fs_call(call, &vnode->fid);
783
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
784 785 786 787 788
}

/*
 * deliver reply data to an FS.Link
 */
789
static int afs_deliver_fs_link(struct afs_call *call)
790
{
791
	struct afs_vnode *dvnode = call->reply[0], *vnode = call->reply[1];
792
	const __be32 *bp;
793
	int ret;
794

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

797
	ret = afs_transfer_reply(call);
798 799
	if (ret < 0)
		return ret;
800 801 802

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
803 804
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
	xdr_decode_AFSFetchStatus(&bp, &dvnode->status, dvnode, NULL);
805
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
806 807 808 809 810 811 812 813 814 815

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

/*
 * FS.Link operation type
 */
static const struct afs_call_type afs_RXFSLink = {
	.name		= "FS.Link",
816
	.op		= afs_FS_Link,
817 818 819 820 821 822 823
	.deliver	= afs_deliver_fs_link,
	.destructor	= afs_flat_call_destructor,
};

/*
 * make a hard link
 */
824 825
int afs_fs_link(struct afs_fs_cursor *fc, struct afs_vnode *vnode,
		const char *name)
826
{
827
	struct afs_vnode *dvnode = fc->vnode;
828
	struct afs_call *call;
829
	struct afs_net *net = afs_v2net(vnode);
830 831 832 833 834 835 836 837 838
	size_t namesz, reqsz, padsz;
	__be32 *bp;

	_enter("");

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

839
	call = afs_alloc_flat_call(net, &afs_RXFSLink, reqsz, (21 + 21 + 6) * 4);
840 841 842
	if (!call)
		return -ENOMEM;

843
	call->key = fc->key;
844 845
	call->reply[0] = dvnode;
	call->reply[1] = vnode;
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863

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

864
	afs_use_fs_server(call, fc->cbi);
865
	trace_afs_make_fs_call(call, &vnode->fid);
866
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
867 868 869 870 871
}

/*
 * deliver reply data to an FS.Symlink
 */
872
static int afs_deliver_fs_symlink(struct afs_call *call)
873
{
874
	struct afs_vnode *vnode = call->reply[0];
875
	const __be32 *bp;
876
	int ret;
877

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

880
	ret = afs_transfer_reply(call);
881 882
	if (ret < 0)
		return ret;
883 884 885

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
886 887
	xdr_decode_AFSFid(&bp, call->reply[1]);
	xdr_decode_AFSFetchStatus(&bp, call->reply[2], NULL, NULL);
888
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
889
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
890 891 892 893 894 895 896 897 898 899

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

/*
 * FS.Symlink operation type
 */
static const struct afs_call_type afs_RXFSSymlink = {
	.name		= "FS.Symlink",
900
	.op		= afs_FS_Symlink,
901 902 903 904 905 906 907
	.deliver	= afs_deliver_fs_symlink,
	.destructor	= afs_flat_call_destructor,
};

/*
 * create a symbolic link
 */
D
David Howells 已提交
908
int afs_fs_symlink(struct afs_fs_cursor *fc,
909 910 911
		   const char *name,
		   const char *contents,
		   struct afs_fid *newfid,
912
		   struct afs_file_status *newstatus)
913
{
914
	struct afs_vnode *vnode = fc->vnode;
915
	struct afs_call *call;
916
	struct afs_net *net = afs_v2net(vnode);
917 918 919 920 921 922 923 924 925 926 927 928 929
	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);

930
	call = afs_alloc_flat_call(net, &afs_RXFSSymlink, reqsz,
931 932 933 934
				   (3 + 21 + 21 + 6) * 4);
	if (!call)
		return -ENOMEM;

935
	call->key = fc->key;
936 937 938
	call->reply[0] = vnode;
	call->reply[1] = newfid;
	call->reply[2] = newstatus;
939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959

	/* 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;
	}
960 961
	*bp++ = htonl(AFS_SET_MODE | AFS_SET_MTIME);
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
962 963 964 965 966
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = htonl(S_IRWXUGO); /* unix mode */
	*bp++ = 0; /* segment size */

967
	afs_use_fs_server(call, fc->cbi);
968
	trace_afs_make_fs_call(call, &vnode->fid);
969
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
970 971 972 973 974
}

/*
 * deliver reply data to an FS.Rename
 */
975
static int afs_deliver_fs_rename(struct afs_call *call)
976
{
977
	struct afs_vnode *orig_dvnode = call->reply[0], *new_dvnode = call->reply[1];
978
	const __be32 *bp;
979
	int ret;
980

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

983
	ret = afs_transfer_reply(call);
984 985
	if (ret < 0)
		return ret;
986 987 988

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
989
	xdr_decode_AFSFetchStatus(&bp, &orig_dvnode->status, orig_dvnode, NULL);
990
	if (new_dvnode != orig_dvnode)
991 992
		xdr_decode_AFSFetchStatus(&bp, &new_dvnode->status, new_dvnode,
					  NULL);
993
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
994 995 996 997 998 999 1000 1001 1002 1003

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

/*
 * FS.Rename operation type
 */
static const struct afs_call_type afs_RXFSRename = {
	.name		= "FS.Rename",
1004
	.op		= afs_FS_Rename,
1005 1006 1007 1008 1009 1010 1011
	.deliver	= afs_deliver_fs_rename,
	.destructor	= afs_flat_call_destructor,
};

/*
 * create a symbolic link
 */
D
David Howells 已提交
1012
int afs_fs_rename(struct afs_fs_cursor *fc,
1013 1014
		  const char *orig_name,
		  struct afs_vnode *new_dvnode,
1015
		  const char *new_name)
1016
{
1017
	struct afs_vnode *orig_dvnode = fc->vnode;
1018
	struct afs_call *call;
1019
	struct afs_net *net = afs_v2net(orig_dvnode);
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
	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;

1036
	call = afs_alloc_flat_call(net, &afs_RXFSRename, reqsz, (21 + 21 + 6) * 4);
1037 1038 1039
	if (!call)
		return -ENOMEM;

1040
	call->key = fc->key;
1041 1042
	call->reply[0] = orig_dvnode;
	call->reply[1] = new_dvnode;
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068

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

1069
	afs_use_fs_server(call, fc->cbi);
1070
	trace_afs_make_fs_call(call, &orig_dvnode->fid);
1071
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
1072
}
1073 1074 1075 1076

/*
 * deliver reply data to an FS.StoreData
 */
1077
static int afs_deliver_fs_store_data(struct afs_call *call)
1078
{
1079
	struct afs_vnode *vnode = call->reply[0];
1080
	const __be32 *bp;
1081
	int ret;
1082

1083
	_enter("");
1084

1085
	ret = afs_transfer_reply(call);
1086 1087
	if (ret < 0)
		return ret;
1088 1089 1090 1091 1092

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode,
				  &call->store_version);
1093
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105

	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",
1106
	.op		= afs_FS_StoreData,
1107 1108 1109 1110
	.deliver	= afs_deliver_fs_store_data,
	.destructor	= afs_flat_call_destructor,
};

D
David Howells 已提交
1111 1112
static const struct afs_call_type afs_RXFSStoreData64 = {
	.name		= "FS.StoreData64",
1113
	.op		= afs_FS_StoreData64,
D
David Howells 已提交
1114 1115 1116 1117 1118 1119 1120
	.deliver	= afs_deliver_fs_store_data,
	.destructor	= afs_flat_call_destructor,
};

/*
 * store a set of pages to a very large file
 */
D
David Howells 已提交
1121
static int afs_fs_store_data64(struct afs_fs_cursor *fc,
D
David Howells 已提交
1122 1123 1124
			       struct afs_writeback *wb,
			       pgoff_t first, pgoff_t last,
			       unsigned offset, unsigned to,
1125
			       loff_t size, loff_t pos, loff_t i_size)
D
David Howells 已提交
1126 1127 1128
{
	struct afs_vnode *vnode = wb->vnode;
	struct afs_call *call;
1129
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1130 1131 1132 1133 1134
	__be32 *bp;

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

1135
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData64,
D
David Howells 已提交
1136 1137 1138 1139 1140 1141 1142
				   (4 + 6 + 3 * 2) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->wb = wb;
	call->key = wb->key;
1143
	call->reply[0] = vnode;
D
David Howells 已提交
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
	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);

1159 1160
	*bp++ = htonl(AFS_SET_MTIME); /* mask */
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
D
David Howells 已提交
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172
	*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);

1173
	trace_afs_make_fs_call(call, &vnode->fid);
1174
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
1175 1176
}

1177 1178 1179
/*
 * store a set of pages
 */
D
David Howells 已提交
1180
int afs_fs_store_data(struct afs_fs_cursor *fc, struct afs_writeback *wb,
1181
		      pgoff_t first, pgoff_t last,
1182
		      unsigned offset, unsigned to)
1183 1184 1185
{
	struct afs_vnode *vnode = wb->vnode;
	struct afs_call *call;
1186
	struct afs_net *net = afs_v2net(vnode);
1187 1188 1189 1190 1191 1192
	loff_t size, pos, i_size;
	__be32 *bp;

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

1193
	size = (loff_t)to - (loff_t)offset;
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
	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 已提交
1207
	if (pos >> 32 || i_size >> 32 || size >> 32 || (pos + size) >> 32)
D
David Howells 已提交
1208
		return afs_fs_store_data64(fc, wb, first, last, offset, to,
1209
					   size, pos, i_size);
1210

1211
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData,
1212 1213 1214 1215 1216 1217 1218
				   (4 + 6 + 3) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->wb = wb;
	call->key = wb->key;
1219
	call->reply[0] = vnode;
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
	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);

1235 1236
	*bp++ = htonl(AFS_SET_MTIME); /* mask */
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
1237 1238 1239 1240 1241 1242 1243 1244 1245
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = 0; /* unix mode */
	*bp++ = 0; /* segment size */

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

1246
	afs_use_fs_server(call, fc->cbi);
1247
	trace_afs_make_fs_call(call, &vnode->fid);
1248
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
1249 1250 1251 1252 1253
}

/*
 * deliver reply data to an FS.StoreStatus
 */
1254
static int afs_deliver_fs_store_status(struct afs_call *call)
1255 1256
{
	afs_dataversion_t *store_version;
1257
	struct afs_vnode *vnode = call->reply[0];
1258
	const __be32 *bp;
1259
	int ret;
1260

1261
	_enter("");
1262

1263
	ret = afs_transfer_reply(call);
1264 1265
	if (ret < 0)
		return ret;
1266 1267 1268 1269 1270 1271 1272 1273

	/* 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);
1274
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284

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

/*
 * FS.StoreStatus operation type
 */
static const struct afs_call_type afs_RXFSStoreStatus = {
	.name		= "FS.StoreStatus",
1285
	.op		= afs_FS_StoreStatus,
1286 1287 1288 1289 1290 1291
	.deliver	= afs_deliver_fs_store_status,
	.destructor	= afs_flat_call_destructor,
};

static const struct afs_call_type afs_RXFSStoreData_as_Status = {
	.name		= "FS.StoreData",
1292
	.op		= afs_FS_StoreData,
1293 1294 1295 1296
	.deliver	= afs_deliver_fs_store_status,
	.destructor	= afs_flat_call_destructor,
};

D
David Howells 已提交
1297 1298
static const struct afs_call_type afs_RXFSStoreData64_as_Status = {
	.name		= "FS.StoreData64",
1299
	.op		= afs_FS_StoreData64,
D
David Howells 已提交
1300 1301 1302 1303 1304 1305 1306 1307
	.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
 */
1308
static int afs_fs_setattr_size64(struct afs_fs_cursor *fc, struct iattr *attr)
D
David Howells 已提交
1309
{
1310
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1311
	struct afs_call *call;
1312
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1313 1314 1315
	__be32 *bp;

	_enter(",%x,{%x:%u},,",
1316
	       key_serial(fc->key), vnode->fid.vid, vnode->fid.vnode);
D
David Howells 已提交
1317 1318 1319

	ASSERT(attr->ia_valid & ATTR_SIZE);

1320
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData64_as_Status,
D
David Howells 已提交
1321 1322 1323 1324 1325
				   (4 + 6 + 3 * 2) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1326
	call->key = fc->key;
1327
	call->reply[0] = vnode;
D
David Howells 已提交
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
	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);

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

1346
	afs_use_fs_server(call, fc->cbi);
1347
	trace_afs_make_fs_call(call, &vnode->fid);
1348
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
1349 1350
}

1351 1352 1353 1354
/*
 * set the attributes on a file, using FS.StoreData rather than FS.StoreStatus
 * so as to alter the file size also
 */
1355
static int afs_fs_setattr_size(struct afs_fs_cursor *fc, struct iattr *attr)
1356
{
1357
	struct afs_vnode *vnode = fc->vnode;
1358
	struct afs_call *call;
1359
	struct afs_net *net = afs_v2net(vnode);
1360 1361 1362
	__be32 *bp;

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

	ASSERT(attr->ia_valid & ATTR_SIZE);
D
David Howells 已提交
1366
	if (attr->ia_size >> 32)
1367
		return afs_fs_setattr_size64(fc, attr);
1368

1369
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData_as_Status,
1370 1371 1372 1373 1374
				   (4 + 6 + 3) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1375
	call->key = fc->key;
1376
	call->reply[0] = vnode;
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
	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);

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

1392
	afs_use_fs_server(call, fc->cbi);
1393
	trace_afs_make_fs_call(call, &vnode->fid);
1394
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
1395 1396 1397 1398 1399 1400
}

/*
 * set the attributes on a file, using FS.StoreData if there's a change in file
 * size, and FS.StoreStatus otherwise
 */
1401
int afs_fs_setattr(struct afs_fs_cursor *fc, struct iattr *attr)
1402
{
1403
	struct afs_vnode *vnode = fc->vnode;
1404
	struct afs_call *call;
1405
	struct afs_net *net = afs_v2net(vnode);
1406 1407 1408
	__be32 *bp;

	if (attr->ia_valid & ATTR_SIZE)
1409
		return afs_fs_setattr_size(fc, attr);
1410 1411

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

1414
	call = afs_alloc_flat_call(net, &afs_RXFSStoreStatus,
1415 1416 1417 1418 1419
				   (4 + 6) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1420
	call->key = fc->key;
1421
	call->reply[0] = vnode;
1422 1423 1424 1425 1426 1427 1428 1429 1430 1431

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

1432
	afs_use_fs_server(call, fc->cbi);
1433
	trace_afs_make_fs_call(call, &vnode->fid);
1434
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
1435
}
D
David Howells 已提交
1436 1437 1438 1439

/*
 * deliver reply data to an FS.GetVolumeStatus
 */
1440
static int afs_deliver_fs_get_volume_status(struct afs_call *call)
D
David Howells 已提交
1441 1442 1443 1444 1445
{
	const __be32 *bp;
	char *p;
	int ret;

1446
	_enter("{%u}", call->unmarshall);
D
David Howells 已提交
1447 1448 1449 1450 1451 1452 1453 1454 1455

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

		/* extract the returned status record */
	case 1:
		_debug("extract status");
1456 1457
		ret = afs_extract_data(call, call->buffer,
				       12 * 4, true);
1458 1459
		if (ret < 0)
			return ret;
D
David Howells 已提交
1460 1461

		bp = call->buffer;
1462
		xdr_decode_AFSFetchVolumeStatus(&bp, call->reply[1]);
D
David Howells 已提交
1463 1464 1465 1466 1467
		call->offset = 0;
		call->unmarshall++;

		/* extract the volume name length */
	case 2:
1468
		ret = afs_extract_data(call, &call->tmp, 4, true);
1469 1470
		if (ret < 0)
			return ret;
D
David Howells 已提交
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482

		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) {
1483
			ret = afs_extract_data(call, call->reply[2],
1484
					       call->count, true);
1485 1486
			if (ret < 0)
				return ret;
D
David Howells 已提交
1487 1488
		}

1489
		p = call->reply[2];
D
David Howells 已提交
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503
		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:
1504 1505
		ret = afs_extract_data(call, call->buffer,
				       call->count, true);
1506 1507
		if (ret < 0)
			return ret;
D
David Howells 已提交
1508 1509 1510 1511 1512 1513 1514

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

		/* extract the offline message length */
	case 5:
1515
		ret = afs_extract_data(call, &call->tmp, 4, true);
1516 1517
		if (ret < 0)
			return ret;
D
David Howells 已提交
1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529

		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) {
1530
			ret = afs_extract_data(call, call->reply[2],
1531
					       call->count, true);
1532 1533
			if (ret < 0)
				return ret;
D
David Howells 已提交
1534 1535
		}

1536
		p = call->reply[2];
D
David Howells 已提交
1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
		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:
1551 1552
		ret = afs_extract_data(call, call->buffer,
				       call->count, true);
1553 1554
		if (ret < 0)
			return ret;
D
David Howells 已提交
1555 1556 1557 1558 1559 1560 1561

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

		/* extract the message of the day length */
	case 8:
1562
		ret = afs_extract_data(call, &call->tmp, 4, true);
1563 1564
		if (ret < 0)
			return ret;
D
David Howells 已提交
1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576

		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) {
1577
			ret = afs_extract_data(call, call->reply[2],
1578
					       call->count, true);
1579 1580
			if (ret < 0)
				return ret;
D
David Howells 已提交
1581 1582
		}

1583
		p = call->reply[2];
D
David Howells 已提交
1584 1585 1586 1587 1588 1589 1590
		p[call->count] = 0;
		_debug("motd '%s'", p);

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

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

	case 10:
1594 1595
		ret = afs_extract_data(call, call->buffer,
				       call->count, false);
1596 1597
		if (ret < 0)
			return ret;
D
David Howells 已提交
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613

		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)
{
1614 1615
	kfree(call->reply[2]);
	call->reply[2] = NULL;
D
David Howells 已提交
1616 1617 1618 1619 1620 1621 1622 1623
	afs_flat_call_destructor(call);
}

/*
 * FS.GetVolumeStatus operation type
 */
static const struct afs_call_type afs_RXFSGetVolumeStatus = {
	.name		= "FS.GetVolumeStatus",
1624
	.op		= afs_FS_GetVolumeStatus,
D
David Howells 已提交
1625 1626 1627 1628 1629 1630 1631
	.deliver	= afs_deliver_fs_get_volume_status,
	.destructor	= afs_get_volume_status_call_destructor,
};

/*
 * fetch the status of a volume
 */
D
David Howells 已提交
1632
int afs_fs_get_volume_status(struct afs_fs_cursor *fc,
1633
			     struct afs_volume_status *vs)
D
David Howells 已提交
1634
{
1635
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1636
	struct afs_call *call;
1637
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1638 1639 1640 1641 1642 1643 1644 1645 1646
	__be32 *bp;
	void *tmpbuf;

	_enter("");

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

1647
	call = afs_alloc_flat_call(net, &afs_RXFSGetVolumeStatus, 2 * 4, 12 * 4);
D
David Howells 已提交
1648 1649 1650 1651 1652
	if (!call) {
		kfree(tmpbuf);
		return -ENOMEM;
	}

1653
	call->key = fc->key;
1654 1655 1656
	call->reply[0] = vnode;
	call->reply[1] = vs;
	call->reply[2] = tmpbuf;
D
David Howells 已提交
1657 1658 1659 1660 1661 1662

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

1663
	afs_use_fs_server(call, fc->cbi);
1664
	trace_afs_make_fs_call(call, &vnode->fid);
1665
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
1666
}
D
David Howells 已提交
1667 1668 1669 1670

/*
 * deliver reply data to an FS.SetLock, FS.ExtendLock or FS.ReleaseLock
 */
1671
static int afs_deliver_fs_xxxx_lock(struct afs_call *call)
D
David Howells 已提交
1672 1673
{
	const __be32 *bp;
1674
	int ret;
D
David Howells 已提交
1675

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

1678
	ret = afs_transfer_reply(call);
1679 1680
	if (ret < 0)
		return ret;
D
David Howells 已提交
1681 1682 1683

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
1684
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
D
David Howells 已提交
1685 1686 1687 1688 1689 1690 1691 1692 1693 1694

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

/*
 * FS.SetLock operation type
 */
static const struct afs_call_type afs_RXFSSetLock = {
	.name		= "FS.SetLock",
1695
	.op		= afs_FS_SetLock,
D
David Howells 已提交
1696 1697 1698 1699 1700 1701 1702 1703 1704
	.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",
1705
	.op		= afs_FS_ExtendLock,
D
David Howells 已提交
1706 1707 1708 1709 1710 1711 1712 1713 1714
	.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",
1715
	.op		= afs_FS_ReleaseLock,
D
David Howells 已提交
1716 1717 1718 1719 1720
	.deliver	= afs_deliver_fs_xxxx_lock,
	.destructor	= afs_flat_call_destructor,
};

/*
1721
 * Set a lock on a file
D
David Howells 已提交
1722
 */
1723
int afs_fs_set_lock(struct afs_fs_cursor *fc, afs_lock_type_t type)
D
David Howells 已提交
1724
{
1725
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1726
	struct afs_call *call;
1727
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1728 1729 1730 1731
	__be32 *bp;

	_enter("");

1732
	call = afs_alloc_flat_call(net, &afs_RXFSSetLock, 5 * 4, 6 * 4);
D
David Howells 已提交
1733 1734 1735
	if (!call)
		return -ENOMEM;

1736
	call->key = fc->key;
1737
	call->reply[0] = vnode;
D
David Howells 已提交
1738 1739 1740 1741 1742 1743 1744 1745 1746

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

1747
	afs_use_fs_server(call, fc->cbi);
1748
	trace_afs_make_fs_call(call, &vnode->fid);
1749
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
1750 1751 1752 1753 1754
}

/*
 * extend a lock on a file
 */
1755
int afs_fs_extend_lock(struct afs_fs_cursor *fc)
D
David Howells 已提交
1756
{
1757
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1758
	struct afs_call *call;
1759
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1760 1761 1762 1763
	__be32 *bp;

	_enter("");

1764
	call = afs_alloc_flat_call(net, &afs_RXFSExtendLock, 4 * 4, 6 * 4);
D
David Howells 已提交
1765 1766 1767
	if (!call)
		return -ENOMEM;

1768
	call->key = fc->key;
1769
	call->reply[0] = vnode;
D
David Howells 已提交
1770 1771 1772 1773 1774 1775 1776 1777

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

1778
	afs_use_fs_server(call, fc->cbi);
1779
	trace_afs_make_fs_call(call, &vnode->fid);
1780
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
1781 1782 1783 1784 1785
}

/*
 * release a lock on a file
 */
1786
int afs_fs_release_lock(struct afs_fs_cursor *fc)
D
David Howells 已提交
1787
{
1788
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1789
	struct afs_call *call;
1790
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1791 1792 1793 1794
	__be32 *bp;

	_enter("");

1795
	call = afs_alloc_flat_call(net, &afs_RXFSReleaseLock, 4 * 4, 6 * 4);
D
David Howells 已提交
1796 1797 1798
	if (!call)
		return -ENOMEM;

1799
	call->key = fc->key;
1800
	call->reply[0] = vnode;
D
David Howells 已提交
1801 1802 1803 1804 1805 1806 1807 1808

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

1809
	afs_use_fs_server(call, fc->cbi);
1810
	trace_afs_make_fs_call(call, &vnode->fid);
1811
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826
}

/*
 * 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",
1827
	.op		= afs_FS_GiveUpAllCallBacks,
1828 1829 1830 1831 1832 1833 1834
	.deliver	= afs_deliver_fs_give_up_all_callbacks,
	.destructor	= afs_flat_call_destructor,
};

/*
 * Flush all the callbacks we have on a server.
 */
1835 1836
int afs_fs_give_up_all_callbacks(struct afs_net *net,
				 struct afs_server *server,
D
David Howells 已提交
1837
				 struct afs_addr_cursor *ac,
1838
				 struct key *key)
1839 1840 1841 1842 1843 1844
{
	struct afs_call *call;
	__be32 *bp;

	_enter("");

1845
	call = afs_alloc_flat_call(net, &afs_RXFSGiveUpAllCallBacks, 1 * 4, 0);
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855
	if (!call)
		return -ENOMEM;

	call->key = key;

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

	/* Can't take a ref on server */
1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917
	return afs_make_call(ac, call, GFP_NOFS, false);
}

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

	_enter("{%u,%zu/%u}", call->unmarshall, call->offset, call->count);

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

		/* Extract the capabilities word count */
	case 1:
		ret = afs_extract_data(call, &call->tmp,
				       1 * sizeof(__be32),
				       true);
		if (ret < 0)
			return ret;

		count = ntohl(call->tmp);

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

		/* Extract capabilities words */
	case 2:
		count = min(call->count, 16U);
		ret = afs_extract_data(call, call->buffer,
				       count * sizeof(__be32),
				       call->count > 16);
		if (ret < 0)
			return ret;

		/* TODO: Examine capabilities */

		call->count -= count;
		if (call->count > 0)
			goto again;
		call->offset = 0;
		call->unmarshall++;
		break;
	}

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

/*
 * FS.GetCapabilities operation type
 */
static const struct afs_call_type afs_RXFSGetCapabilities = {
	.name		= "FS.GetCapabilities",
1918
	.op		= afs_FS_GetCapabilities,
1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947
	.deliver	= afs_deliver_fs_get_capabilities,
	.destructor	= afs_flat_call_destructor,
};

/*
 * Probe a fileserver for the capabilities that it supports.  This can
 * return up to 196 words.
 */
int afs_fs_get_capabilities(struct afs_net *net,
			    struct afs_server *server,
			    struct afs_addr_cursor *ac,
			    struct key *key)
{
	struct afs_call *call;
	__be32 *bp;

	_enter("");

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

	call->key = key;

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

	/* Can't take a ref on server */
1948
	trace_afs_make_fs_call(call, NULL);
1949
	return afs_make_call(ac, call, GFP_NOFS, false);
D
David Howells 已提交
1950
}