fsclient.c 43.7 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
static inline void afs_use_fs_server(struct afs_call *call, struct afs_cb_interest *cbi)
26
{
27
	call->cbi = afs_get_cb_interest(cbi);
28 29
}

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

59 60
	if (vnode)
		write_seqlock(&vnode->cb_lock);
61

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

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

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

	_debug("vnode time %lx, %lx",
104 105 106 107 108 109 110 111
	       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;
112
			vnode->vfs_inode.i_generation = vnode->fid.unique;
M
Miklos Szeredi 已提交
113
			set_nlink(&vnode->vfs_inode, status->nlink);
114 115 116 117 118 119 120 121

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

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

128 129 130 131 132
	expected_version = status->data_version;
	if (store_version)
		expected_version = *store_version;

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

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

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

	write_seqlock(&vnode->cb_lock);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

325
	call->key = fc->key;
326 327
	call->reply[0] = vnode;
	call->reply[1] = volsync;
L
Linus Torvalds 已提交
328 329

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

336 337 338
	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
339
}
L
Linus Torvalds 已提交
340 341

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

353
	_enter("{%u,%zu/%u;%llu/%llu}",
354 355
	       call->unmarshall, call->offset, call->count,
	       req->remain, req->actual_len);
356 357 358

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

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

376 377
		req->actual_len = ntohl(call->tmp);
		req->actual_len <<= 32;
D
David Howells 已提交
378 379 380 381 382 383
		call->offset = 0;
		call->unmarshall++;

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

389 390 391 392 393 394 395 396
		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;
397 398
		call->unmarshall++;

399
	begin_page:
400
		ASSERTCMP(req->index, <, req->nr_pages);
401 402 403 404 405 406 407 408
		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;

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

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

450
	no_more_data:
451
		call->offset = 0;
452
		call->unmarshall = 5;
L
Linus Torvalds 已提交
453

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

		bp = call->buffer;
462
		xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
463
		xdr_decode_AFSCallBack(call, vnode, &bp);
464 465
		if (call->reply[1])
			xdr_decode_AFSVolSync(&bp, call->reply[1]);
466 467 468

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

470
	case 6:
471
		break;
L
Linus Torvalds 已提交
472 473
	}

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

483 484
	_leave(" = 0 [done]");
	return 0;
D
David Howells 已提交
485
}
L
Linus Torvalds 已提交
486

487 488
static void afs_fetch_data_destructor(struct afs_call *call)
{
489
	struct afs_read *req = call->reply[2];
490 491 492 493 494

	afs_put_read(req);
	afs_flat_call_destructor(call);
}

L
Linus Torvalds 已提交
495
/*
496
 * FS.FetchData operation type
L
Linus Torvalds 已提交
497
 */
498
static const struct afs_call_type afs_RXFSFetchData = {
D
David Howells 已提交
499
	.name		= "FS.FetchData",
500
	.deliver	= afs_deliver_fs_fetch_data,
501
	.destructor	= afs_fetch_data_destructor,
502 503
};

D
David Howells 已提交
504 505 506
static const struct afs_call_type afs_RXFSFetchData64 = {
	.name		= "FS.FetchData64",
	.deliver	= afs_deliver_fs_fetch_data,
507
	.destructor	= afs_fetch_data_destructor,
D
David Howells 已提交
508 509 510 511 512
};

/*
 * fetch data from a very large file
 */
513
static int afs_fs_fetch_data64(struct afs_fs_cursor *fc, struct afs_read *req)
D
David Howells 已提交
514
{
515
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
516
	struct afs_call *call;
517
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
518 519 520 521
	__be32 *bp;

	_enter("");

522
	call = afs_alloc_flat_call(net, &afs_RXFSFetchData64, 32, (21 + 3 + 6) * 4);
D
David Howells 已提交
523 524 525
	if (!call)
		return -ENOMEM;

526
	call->key = fc->key;
527 528 529
	call->reply[0] = vnode;
	call->reply[1] = NULL; /* volsync */
	call->reply[2] = req;
D
David Howells 已提交
530 531 532 533 534 535 536 537
	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);
538 539
	bp[4] = htonl(upper_32_bits(req->pos));
	bp[5] = htonl(lower_32_bits(req->pos));
D
David Howells 已提交
540
	bp[6] = 0;
541
	bp[7] = htonl(lower_32_bits(req->len));
D
David Howells 已提交
542

543
	atomic_inc(&req->usage);
544 545 546
	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
547 548
}

549 550 551
/*
 * fetch data from a file
 */
552
int afs_fs_fetch_data(struct afs_fs_cursor *fc, struct afs_read *req)
L
Linus Torvalds 已提交
553
{
554
	struct afs_vnode *vnode = fc->vnode;
555
	struct afs_call *call;
556
	struct afs_net *net = afs_v2net(vnode);
L
Linus Torvalds 已提交
557 558
	__be32 *bp;

559 560 561
	if (upper_32_bits(req->pos) ||
	    upper_32_bits(req->len) ||
	    upper_32_bits(req->pos + req->len))
562
		return afs_fs_fetch_data64(fc, req);
D
David Howells 已提交
563

564
	_enter("");
L
Linus Torvalds 已提交
565

566
	call = afs_alloc_flat_call(net, &afs_RXFSFetchData, 24, (21 + 3 + 6) * 4);
567 568
	if (!call)
		return -ENOMEM;
L
Linus Torvalds 已提交
569

570
	call->key = fc->key;
571 572 573
	call->reply[0] = vnode;
	call->reply[1] = NULL; /* volsync */
	call->reply[2] = req;
D
David Howells 已提交
574
	call->operation_ID = FSFETCHDATA;
L
Linus Torvalds 已提交
575 576

	/* marshall the parameters */
577 578 579 580 581
	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);
582 583
	bp[4] = htonl(lower_32_bits(req->pos));
	bp[5] = htonl(lower_32_bits(req->len));
L
Linus Torvalds 已提交
584

585
	atomic_inc(&req->usage);
586 587 588
	call->cb_break = fc->cb_break;
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
589
}
590 591 592 593

/*
 * deliver reply data to an FS.CreateFile or an FS.MakeDir
 */
594
static int afs_deliver_fs_create_vnode(struct afs_call *call)
595
{
596
	struct afs_vnode *vnode = call->reply[0];
597
	const __be32 *bp;
598
	int ret;
599

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

602
	ret = afs_transfer_reply(call);
603 604
	if (ret < 0)
		return ret;
605 606 607

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

	_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
 */
D
David Howells 已提交
630
int afs_fs_create(struct afs_fs_cursor *fc,
631 632 633 634
		  const char *name,
		  umode_t mode,
		  struct afs_fid *newfid,
		  struct afs_file_status *newstatus,
635
		  struct afs_callback *newcb)
636
{
637
	struct afs_vnode *vnode = fc->vnode;
638
	struct afs_call *call;
639
	struct afs_net *net = afs_v2net(vnode);
640 641 642 643 644 645 646 647 648
	size_t namesz, reqsz, padsz;
	__be32 *bp;

	_enter("");

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

649
	call = afs_alloc_flat_call(net, &afs_RXFSCreateXXXX, reqsz,
650 651 652 653
				   (3 + 21 + 21 + 3 + 6) * 4);
	if (!call)
		return -ENOMEM;

654
	call->key = fc->key;
655 656 657 658
	call->reply[0] = vnode;
	call->reply[1] = newfid;
	call->reply[2] = newstatus;
	call->reply[3] = newcb;
659 660 661 662 663 664 665 666 667 668 669 670 671 672

	/* 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;
	}
673 674
	*bp++ = htonl(AFS_SET_MODE | AFS_SET_MTIME);
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
675 676 677 678 679
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = htonl(mode & S_IALLUGO); /* unix mode */
	*bp++ = 0; /* segment size */

680 681
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
682 683 684 685 686
}

/*
 * deliver reply data to an FS.RemoveFile or FS.RemoveDir
 */
687
static int afs_deliver_fs_remove(struct afs_call *call)
688
{
689
	struct afs_vnode *vnode = call->reply[0];
690
	const __be32 *bp;
691
	int ret;
692

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

695
	ret = afs_transfer_reply(call);
696 697
	if (ret < 0)
		return ret;
698 699 700

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
701
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
702
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719

	_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
 */
720
int afs_fs_remove(struct afs_fs_cursor *fc, const char *name, bool isdir)
721
{
722
	struct afs_vnode *vnode = fc->vnode;
723
	struct afs_call *call;
724
	struct afs_net *net = afs_v2net(vnode);
725 726 727 728 729 730 731 732 733
	size_t namesz, reqsz, padsz;
	__be32 *bp;

	_enter("");

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

734
	call = afs_alloc_flat_call(net, &afs_RXFSRemoveXXXX, reqsz, (21 + 6) * 4);
735 736 737
	if (!call)
		return -ENOMEM;

738
	call->key = fc->key;
739
	call->reply[0] = vnode;
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754

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

755 756
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
757 758 759 760 761
}

/*
 * deliver reply data to an FS.Link
 */
762
static int afs_deliver_fs_link(struct afs_call *call)
763
{
764
	struct afs_vnode *dvnode = call->reply[0], *vnode = call->reply[1];
765
	const __be32 *bp;
766
	int ret;
767

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

770
	ret = afs_transfer_reply(call);
771 772
	if (ret < 0)
		return ret;
773 774 775

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
776 777
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
	xdr_decode_AFSFetchStatus(&bp, &dvnode->status, dvnode, NULL);
778
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795

	_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
 */
796 797
int afs_fs_link(struct afs_fs_cursor *fc, struct afs_vnode *vnode,
		const char *name)
798
{
799
	struct afs_vnode *dvnode = fc->vnode;
800
	struct afs_call *call;
801
	struct afs_net *net = afs_v2net(vnode);
802 803 804 805 806 807 808 809 810
	size_t namesz, reqsz, padsz;
	__be32 *bp;

	_enter("");

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

811
	call = afs_alloc_flat_call(net, &afs_RXFSLink, reqsz, (21 + 21 + 6) * 4);
812 813 814
	if (!call)
		return -ENOMEM;

815
	call->key = fc->key;
816 817
	call->reply[0] = dvnode;
	call->reply[1] = vnode;
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835

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

836 837
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
838 839 840 841 842
}

/*
 * deliver reply data to an FS.Symlink
 */
843
static int afs_deliver_fs_symlink(struct afs_call *call)
844
{
845
	struct afs_vnode *vnode = call->reply[0];
846
	const __be32 *bp;
847
	int ret;
848

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

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

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
857 858
	xdr_decode_AFSFid(&bp, call->reply[1]);
	xdr_decode_AFSFetchStatus(&bp, call->reply[2], NULL, NULL);
859
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode, NULL);
860
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877

	_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
 */
D
David Howells 已提交
878
int afs_fs_symlink(struct afs_fs_cursor *fc,
879 880 881
		   const char *name,
		   const char *contents,
		   struct afs_fid *newfid,
882
		   struct afs_file_status *newstatus)
883
{
884
	struct afs_vnode *vnode = fc->vnode;
885
	struct afs_call *call;
886
	struct afs_net *net = afs_v2net(vnode);
887 888 889 890 891 892 893 894 895 896 897 898 899
	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);

900
	call = afs_alloc_flat_call(net, &afs_RXFSSymlink, reqsz,
901 902 903 904
				   (3 + 21 + 21 + 6) * 4);
	if (!call)
		return -ENOMEM;

905
	call->key = fc->key;
906 907 908
	call->reply[0] = vnode;
	call->reply[1] = newfid;
	call->reply[2] = newstatus;
909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929

	/* 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;
	}
930 931
	*bp++ = htonl(AFS_SET_MODE | AFS_SET_MTIME);
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
932 933 934 935 936
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = htonl(S_IRWXUGO); /* unix mode */
	*bp++ = 0; /* segment size */

937 938
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
939 940 941 942 943
}

/*
 * deliver reply data to an FS.Rename
 */
944
static int afs_deliver_fs_rename(struct afs_call *call)
945
{
946
	struct afs_vnode *orig_dvnode = call->reply[0], *new_dvnode = call->reply[1];
947
	const __be32 *bp;
948
	int ret;
949

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

952
	ret = afs_transfer_reply(call);
953 954
	if (ret < 0)
		return ret;
955 956 957

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
958
	xdr_decode_AFSFetchStatus(&bp, &orig_dvnode->status, orig_dvnode, NULL);
959
	if (new_dvnode != orig_dvnode)
960 961
		xdr_decode_AFSFetchStatus(&bp, &new_dvnode->status, new_dvnode,
					  NULL);
962
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979

	_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
 */
D
David Howells 已提交
980
int afs_fs_rename(struct afs_fs_cursor *fc,
981 982
		  const char *orig_name,
		  struct afs_vnode *new_dvnode,
983
		  const char *new_name)
984
{
985
	struct afs_vnode *orig_dvnode = fc->vnode;
986
	struct afs_call *call;
987
	struct afs_net *net = afs_v2net(orig_dvnode);
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
	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;

1004
	call = afs_alloc_flat_call(net, &afs_RXFSRename, reqsz, (21 + 21 + 6) * 4);
1005 1006 1007
	if (!call)
		return -ENOMEM;

1008
	call->key = fc->key;
1009 1010
	call->reply[0] = orig_dvnode;
	call->reply[1] = new_dvnode;
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036

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

1037 1038
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
1039
}
1040 1041 1042 1043

/*
 * deliver reply data to an FS.StoreData
 */
1044
static int afs_deliver_fs_store_data(struct afs_call *call)
1045
{
1046
	struct afs_vnode *vnode = call->reply[0];
1047
	const __be32 *bp;
1048
	int ret;
1049

1050
	_enter("");
1051

1052
	ret = afs_transfer_reply(call);
1053 1054
	if (ret < 0)
		return ret;
1055 1056 1057 1058 1059

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
	xdr_decode_AFSFetchStatus(&bp, &vnode->status, vnode,
				  &call->store_version);
1060
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076

	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 已提交
1077 1078 1079 1080 1081 1082 1083 1084 1085
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
 */
D
David Howells 已提交
1086
static int afs_fs_store_data64(struct afs_fs_cursor *fc,
D
David Howells 已提交
1087 1088 1089
			       struct afs_writeback *wb,
			       pgoff_t first, pgoff_t last,
			       unsigned offset, unsigned to,
1090
			       loff_t size, loff_t pos, loff_t i_size)
D
David Howells 已提交
1091 1092 1093
{
	struct afs_vnode *vnode = wb->vnode;
	struct afs_call *call;
1094
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1095 1096 1097 1098 1099
	__be32 *bp;

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

1100
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData64,
D
David Howells 已提交
1101 1102 1103 1104 1105 1106 1107
				   (4 + 6 + 3 * 2) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->wb = wb;
	call->key = wb->key;
1108
	call->reply[0] = vnode;
D
David Howells 已提交
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
	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);

1124 1125
	*bp++ = htonl(AFS_SET_MTIME); /* mask */
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
D
David Howells 已提交
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
	*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);

1138
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
1139 1140
}

1141 1142 1143
/*
 * store a set of pages
 */
D
David Howells 已提交
1144
int afs_fs_store_data(struct afs_fs_cursor *fc, struct afs_writeback *wb,
1145
		      pgoff_t first, pgoff_t last,
1146
		      unsigned offset, unsigned to)
1147 1148 1149
{
	struct afs_vnode *vnode = wb->vnode;
	struct afs_call *call;
1150
	struct afs_net *net = afs_v2net(vnode);
1151 1152 1153 1154 1155 1156
	loff_t size, pos, i_size;
	__be32 *bp;

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

1157
	size = (loff_t)to - (loff_t)offset;
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
	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 已提交
1171
	if (pos >> 32 || i_size >> 32 || size >> 32 || (pos + size) >> 32)
D
David Howells 已提交
1172
		return afs_fs_store_data64(fc, wb, first, last, offset, to,
1173
					   size, pos, i_size);
1174

1175
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData,
1176 1177 1178 1179 1180 1181 1182
				   (4 + 6 + 3) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

	call->wb = wb;
	call->key = wb->key;
1183
	call->reply[0] = vnode;
1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
	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);

1199 1200
	*bp++ = htonl(AFS_SET_MTIME); /* mask */
	*bp++ = htonl(vnode->vfs_inode.i_mtime.tv_sec); /* mtime */
1201 1202 1203 1204 1205 1206 1207 1208 1209
	*bp++ = 0; /* owner */
	*bp++ = 0; /* group */
	*bp++ = 0; /* unix mode */
	*bp++ = 0; /* segment size */

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

1210 1211
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
1212 1213 1214 1215 1216
}

/*
 * deliver reply data to an FS.StoreStatus
 */
1217
static int afs_deliver_fs_store_status(struct afs_call *call)
1218 1219
{
	afs_dataversion_t *store_version;
1220
	struct afs_vnode *vnode = call->reply[0];
1221
	const __be32 *bp;
1222
	int ret;
1223

1224
	_enter("");
1225

1226
	ret = afs_transfer_reply(call);
1227 1228
	if (ret < 0)
		return ret;
1229 1230 1231 1232 1233 1234 1235 1236

	/* 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);
1237
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257

	_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 已提交
1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
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
 */
1268
static int afs_fs_setattr_size64(struct afs_fs_cursor *fc, struct iattr *attr)
D
David Howells 已提交
1269
{
1270
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1271
	struct afs_call *call;
1272
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1273 1274 1275
	__be32 *bp;

	_enter(",%x,{%x:%u},,",
1276
	       key_serial(fc->key), vnode->fid.vid, vnode->fid.vnode);
D
David Howells 已提交
1277 1278 1279

	ASSERT(attr->ia_valid & ATTR_SIZE);

1280
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData64_as_Status,
D
David Howells 已提交
1281 1282 1283 1284 1285
				   (4 + 6 + 3 * 2) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1286
	call->key = fc->key;
1287
	call->reply[0] = vnode;
D
David Howells 已提交
1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
	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);

1307 1308
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
1309 1310
}

1311 1312 1313 1314
/*
 * set the attributes on a file, using FS.StoreData rather than FS.StoreStatus
 * so as to alter the file size also
 */
1315
static int afs_fs_setattr_size(struct afs_fs_cursor *fc, struct iattr *attr)
1316
{
1317
	struct afs_vnode *vnode = fc->vnode;
1318
	struct afs_call *call;
1319
	struct afs_net *net = afs_v2net(vnode);
1320 1321 1322
	__be32 *bp;

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

	ASSERT(attr->ia_valid & ATTR_SIZE);
D
David Howells 已提交
1326
	if (attr->ia_size >> 32)
1327
		return afs_fs_setattr_size64(fc, attr);
1328

1329
	call = afs_alloc_flat_call(net, &afs_RXFSStoreData_as_Status,
1330 1331 1332 1333 1334
				   (4 + 6 + 3) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

1335
	call->key = fc->key;
1336
	call->reply[0] = vnode;
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
	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 */

1353 1354
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
1355 1356 1357 1358 1359 1360
}

/*
 * set the attributes on a file, using FS.StoreData if there's a change in file
 * size, and FS.StoreStatus otherwise
 */
1361
int afs_fs_setattr(struct afs_fs_cursor *fc, struct iattr *attr)
1362
{
1363
	struct afs_vnode *vnode = fc->vnode;
1364
	struct afs_call *call;
1365
	struct afs_net *net = afs_v2net(vnode);
1366 1367 1368
	__be32 *bp;

	if (attr->ia_valid & ATTR_SIZE)
1369
		return afs_fs_setattr_size(fc, attr);
1370 1371

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

1374
	call = afs_alloc_flat_call(net, &afs_RXFSStoreStatus,
1375 1376 1377 1378 1379
				   (4 + 6) * 4,
				   (21 + 6) * 4);
	if (!call)
		return -ENOMEM;

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

1393 1394
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
1395
}
D
David Howells 已提交
1396 1397 1398 1399

/*
 * deliver reply data to an FS.GetVolumeStatus
 */
1400
static int afs_deliver_fs_get_volume_status(struct afs_call *call)
D
David Howells 已提交
1401 1402 1403 1404 1405
{
	const __be32 *bp;
	char *p;
	int ret;

1406
	_enter("{%u}", call->unmarshall);
D
David Howells 已提交
1407 1408 1409 1410 1411 1412 1413 1414 1415

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

		/* extract the returned status record */
	case 1:
		_debug("extract status");
1416 1417
		ret = afs_extract_data(call, call->buffer,
				       12 * 4, true);
1418 1419
		if (ret < 0)
			return ret;
D
David Howells 已提交
1420 1421

		bp = call->buffer;
1422
		xdr_decode_AFSFetchVolumeStatus(&bp, call->reply[1]);
D
David Howells 已提交
1423 1424 1425 1426 1427
		call->offset = 0;
		call->unmarshall++;

		/* extract the volume name length */
	case 2:
1428
		ret = afs_extract_data(call, &call->tmp, 4, true);
1429 1430
		if (ret < 0)
			return ret;
D
David Howells 已提交
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442

		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) {
1443
			ret = afs_extract_data(call, call->reply[2],
1444
					       call->count, true);
1445 1446
			if (ret < 0)
				return ret;
D
David Howells 已提交
1447 1448
		}

1449
		p = call->reply[2];
D
David Howells 已提交
1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
		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:
1464 1465
		ret = afs_extract_data(call, call->buffer,
				       call->count, true);
1466 1467
		if (ret < 0)
			return ret;
D
David Howells 已提交
1468 1469 1470 1471 1472 1473 1474

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

		/* extract the offline message length */
	case 5:
1475
		ret = afs_extract_data(call, &call->tmp, 4, true);
1476 1477
		if (ret < 0)
			return ret;
D
David Howells 已提交
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489

		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) {
1490
			ret = afs_extract_data(call, call->reply[2],
1491
					       call->count, true);
1492 1493
			if (ret < 0)
				return ret;
D
David Howells 已提交
1494 1495
		}

1496
		p = call->reply[2];
D
David Howells 已提交
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
		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:
1511 1512
		ret = afs_extract_data(call, call->buffer,
				       call->count, true);
1513 1514
		if (ret < 0)
			return ret;
D
David Howells 已提交
1515 1516 1517 1518 1519 1520 1521

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

		/* extract the message of the day length */
	case 8:
1522
		ret = afs_extract_data(call, &call->tmp, 4, true);
1523 1524
		if (ret < 0)
			return ret;
D
David Howells 已提交
1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536

		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) {
1537
			ret = afs_extract_data(call, call->reply[2],
1538
					       call->count, true);
1539 1540
			if (ret < 0)
				return ret;
D
David Howells 已提交
1541 1542
		}

1543
		p = call->reply[2];
D
David Howells 已提交
1544 1545 1546 1547 1548 1549 1550
		p[call->count] = 0;
		_debug("motd '%s'", p);

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

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

	case 10:
1554 1555
		ret = afs_extract_data(call, call->buffer,
				       call->count, false);
1556 1557
		if (ret < 0)
			return ret;
D
David Howells 已提交
1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573

		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)
{
1574 1575
	kfree(call->reply[2]);
	call->reply[2] = NULL;
D
David Howells 已提交
1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590
	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
 */
D
David Howells 已提交
1591
int afs_fs_get_volume_status(struct afs_fs_cursor *fc,
1592
			     struct afs_volume_status *vs)
D
David Howells 已提交
1593
{
1594
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1595
	struct afs_call *call;
1596
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1597 1598 1599 1600 1601 1602 1603 1604 1605
	__be32 *bp;
	void *tmpbuf;

	_enter("");

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

1606
	call = afs_alloc_flat_call(net, &afs_RXFSGetVolumeStatus, 2 * 4, 12 * 4);
D
David Howells 已提交
1607 1608 1609 1610 1611
	if (!call) {
		kfree(tmpbuf);
		return -ENOMEM;
	}

1612
	call->key = fc->key;
1613 1614 1615
	call->reply[0] = vnode;
	call->reply[1] = vs;
	call->reply[2] = tmpbuf;
D
David Howells 已提交
1616 1617 1618 1619 1620 1621

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

1622 1623
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
1624
}
D
David Howells 已提交
1625 1626 1627 1628

/*
 * deliver reply data to an FS.SetLock, FS.ExtendLock or FS.ReleaseLock
 */
1629
static int afs_deliver_fs_xxxx_lock(struct afs_call *call)
D
David Howells 已提交
1630 1631
{
	const __be32 *bp;
1632
	int ret;
D
David Howells 已提交
1633

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

1636
	ret = afs_transfer_reply(call);
1637 1638
	if (ret < 0)
		return ret;
D
David Howells 已提交
1639 1640 1641

	/* unmarshall the reply once we've received all of it */
	bp = call->buffer;
1642
	/* xdr_decode_AFSVolSync(&bp, call->reply[X]); */
D
David Howells 已提交
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675

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

/*
1676
 * Set a lock on a file
D
David Howells 已提交
1677
 */
1678
int afs_fs_set_lock(struct afs_fs_cursor *fc, afs_lock_type_t type)
D
David Howells 已提交
1679
{
1680
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1681
	struct afs_call *call;
1682
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1683 1684 1685 1686
	__be32 *bp;

	_enter("");

1687
	call = afs_alloc_flat_call(net, &afs_RXFSSetLock, 5 * 4, 6 * 4);
D
David Howells 已提交
1688 1689 1690
	if (!call)
		return -ENOMEM;

1691
	call->key = fc->key;
1692
	call->reply[0] = vnode;
D
David Howells 已提交
1693 1694 1695 1696 1697 1698 1699 1700 1701

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

1702 1703
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
1704 1705 1706 1707 1708
}

/*
 * extend a lock on a file
 */
1709
int afs_fs_extend_lock(struct afs_fs_cursor *fc)
D
David Howells 已提交
1710
{
1711
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1712
	struct afs_call *call;
1713
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1714 1715 1716 1717
	__be32 *bp;

	_enter("");

1718
	call = afs_alloc_flat_call(net, &afs_RXFSExtendLock, 4 * 4, 6 * 4);
D
David Howells 已提交
1719 1720 1721
	if (!call)
		return -ENOMEM;

1722
	call->key = fc->key;
1723
	call->reply[0] = vnode;
D
David Howells 已提交
1724 1725 1726 1727 1728 1729 1730 1731

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

1732 1733
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
D
David Howells 已提交
1734 1735 1736 1737 1738
}

/*
 * release a lock on a file
 */
1739
int afs_fs_release_lock(struct afs_fs_cursor *fc)
D
David Howells 已提交
1740
{
1741
	struct afs_vnode *vnode = fc->vnode;
D
David Howells 已提交
1742
	struct afs_call *call;
1743
	struct afs_net *net = afs_v2net(vnode);
D
David Howells 已提交
1744 1745 1746 1747
	__be32 *bp;

	_enter("");

1748
	call = afs_alloc_flat_call(net, &afs_RXFSReleaseLock, 4 * 4, 6 * 4);
D
David Howells 已提交
1749 1750 1751
	if (!call)
		return -ENOMEM;

1752
	call->key = fc->key;
1753
	call->reply[0] = vnode;
D
David Howells 已提交
1754 1755 1756 1757 1758 1759 1760 1761

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

1762 1763
	afs_use_fs_server(call, fc->cbi);
	return afs_make_call(&fc->ac, call, GFP_NOFS, false);
1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785
}

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

/*
 * Flush all the callbacks we have on a server.
 */
1786 1787
int afs_fs_give_up_all_callbacks(struct afs_net *net,
				 struct afs_server *server,
D
David Howells 已提交
1788
				 struct afs_addr_cursor *ac,
1789
				 struct key *key)
1790 1791 1792 1793 1794 1795
{
	struct afs_call *call;
	__be32 *bp;

	_enter("");

1796
	call = afs_alloc_flat_call(net, &afs_RXFSGiveUpAllCallBacks, 1 * 4, 0);
1797 1798 1799 1800 1801 1802 1803 1804 1805 1806
	if (!call)
		return -ENOMEM;

	call->key = key;

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

	/* Can't take a ref on server */
1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 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
	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",
	.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 */
	return afs_make_call(ac, call, GFP_NOFS, false);
D
David Howells 已提交
1899
}