Btrfs: use the normal checksumming infrastructure for free space cache
[linux-2.6/btrfs-unstable.git] / fs / nfs / callback_xdr.c
blob00ecf62ce7c19023ee3abaedbe480478121524cc
1 /*
2 * linux/fs/nfs/callback_xdr.c
4 * Copyright (C) 2004 Trond Myklebust
6 * NFSv4 callback encode/decode procedures
7 */
8 #include <linux/kernel.h>
9 #include <linux/sunrpc/svc.h>
10 #include <linux/nfs4.h>
11 #include <linux/nfs_fs.h>
12 #include <linux/slab.h>
13 #include <linux/sunrpc/bc_xprt.h>
14 #include "nfs4_fs.h"
15 #include "callback.h"
16 #include "internal.h"
18 #define CB_OP_TAGLEN_MAXSZ (512)
19 #define CB_OP_HDR_RES_MAXSZ (2 + CB_OP_TAGLEN_MAXSZ)
20 #define CB_OP_GETATTR_BITMAP_MAXSZ (4)
21 #define CB_OP_GETATTR_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ + \
22 CB_OP_GETATTR_BITMAP_MAXSZ + \
23 2 + 2 + 3 + 3)
24 #define CB_OP_RECALL_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
26 #if defined(CONFIG_NFS_V4_1)
27 #define CB_OP_LAYOUTRECALL_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
28 #define CB_OP_SEQUENCE_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ + \
29 4 + 1 + 3)
30 #define CB_OP_RECALLANY_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
31 #define CB_OP_RECALLSLOT_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
32 #endif /* CONFIG_NFS_V4_1 */
34 #define NFSDBG_FACILITY NFSDBG_CALLBACK
36 /* Internal error code */
37 #define NFS4ERR_RESOURCE_HDR 11050
39 typedef __be32 (*callback_process_op_t)(void *, void *,
40 struct cb_process_state *);
41 typedef __be32 (*callback_decode_arg_t)(struct svc_rqst *, struct xdr_stream *, void *);
42 typedef __be32 (*callback_encode_res_t)(struct svc_rqst *, struct xdr_stream *, void *);
45 struct callback_op {
46 callback_process_op_t process_op;
47 callback_decode_arg_t decode_args;
48 callback_encode_res_t encode_res;
49 long res_maxsize;
52 static struct callback_op callback_ops[];
54 static __be32 nfs4_callback_null(struct svc_rqst *rqstp, void *argp, void *resp)
56 return htonl(NFS4_OK);
59 static int nfs4_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
61 return xdr_argsize_check(rqstp, p);
64 static int nfs4_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
66 return xdr_ressize_check(rqstp, p);
69 static __be32 *read_buf(struct xdr_stream *xdr, int nbytes)
71 __be32 *p;
73 p = xdr_inline_decode(xdr, nbytes);
74 if (unlikely(p == NULL))
75 printk(KERN_WARNING "NFSv4 callback reply buffer overflowed!\n");
76 return p;
79 static __be32 decode_string(struct xdr_stream *xdr, unsigned int *len, const char **str)
81 __be32 *p;
83 p = read_buf(xdr, 4);
84 if (unlikely(p == NULL))
85 return htonl(NFS4ERR_RESOURCE);
86 *len = ntohl(*p);
88 if (*len != 0) {
89 p = read_buf(xdr, *len);
90 if (unlikely(p == NULL))
91 return htonl(NFS4ERR_RESOURCE);
92 *str = (const char *)p;
93 } else
94 *str = NULL;
96 return 0;
99 static __be32 decode_fh(struct xdr_stream *xdr, struct nfs_fh *fh)
101 __be32 *p;
103 p = read_buf(xdr, 4);
104 if (unlikely(p == NULL))
105 return htonl(NFS4ERR_RESOURCE);
106 fh->size = ntohl(*p);
107 if (fh->size > NFS4_FHSIZE)
108 return htonl(NFS4ERR_BADHANDLE);
109 p = read_buf(xdr, fh->size);
110 if (unlikely(p == NULL))
111 return htonl(NFS4ERR_RESOURCE);
112 memcpy(&fh->data[0], p, fh->size);
113 memset(&fh->data[fh->size], 0, sizeof(fh->data) - fh->size);
114 return 0;
117 static __be32 decode_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
119 __be32 *p;
120 unsigned int attrlen;
122 p = read_buf(xdr, 4);
123 if (unlikely(p == NULL))
124 return htonl(NFS4ERR_RESOURCE);
125 attrlen = ntohl(*p);
126 p = read_buf(xdr, attrlen << 2);
127 if (unlikely(p == NULL))
128 return htonl(NFS4ERR_RESOURCE);
129 if (likely(attrlen > 0))
130 bitmap[0] = ntohl(*p++);
131 if (attrlen > 1)
132 bitmap[1] = ntohl(*p);
133 return 0;
136 static __be32 decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
138 __be32 *p;
140 p = read_buf(xdr, 16);
141 if (unlikely(p == NULL))
142 return htonl(NFS4ERR_RESOURCE);
143 memcpy(stateid->data, p, 16);
144 return 0;
147 static __be32 decode_compound_hdr_arg(struct xdr_stream *xdr, struct cb_compound_hdr_arg *hdr)
149 __be32 *p;
150 __be32 status;
152 status = decode_string(xdr, &hdr->taglen, &hdr->tag);
153 if (unlikely(status != 0))
154 return status;
155 /* We do not like overly long tags! */
156 if (hdr->taglen > CB_OP_TAGLEN_MAXSZ - 12) {
157 printk("NFSv4 CALLBACK %s: client sent tag of length %u\n",
158 __func__, hdr->taglen);
159 return htonl(NFS4ERR_RESOURCE);
161 p = read_buf(xdr, 12);
162 if (unlikely(p == NULL))
163 return htonl(NFS4ERR_RESOURCE);
164 hdr->minorversion = ntohl(*p++);
165 /* Check minor version is zero or one. */
166 if (hdr->minorversion <= 1) {
167 hdr->cb_ident = ntohl(*p++); /* ignored by v4.1 */
168 } else {
169 printk(KERN_WARNING "%s: NFSv4 server callback with "
170 "illegal minor version %u!\n",
171 __func__, hdr->minorversion);
172 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
174 hdr->nops = ntohl(*p);
175 dprintk("%s: minorversion %d nops %d\n", __func__,
176 hdr->minorversion, hdr->nops);
177 return 0;
180 static __be32 decode_op_hdr(struct xdr_stream *xdr, unsigned int *op)
182 __be32 *p;
183 p = read_buf(xdr, 4);
184 if (unlikely(p == NULL))
185 return htonl(NFS4ERR_RESOURCE_HDR);
186 *op = ntohl(*p);
187 return 0;
190 static __be32 decode_getattr_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_getattrargs *args)
192 __be32 status;
194 status = decode_fh(xdr, &args->fh);
195 if (unlikely(status != 0))
196 goto out;
197 args->addr = svc_addr(rqstp);
198 status = decode_bitmap(xdr, args->bitmap);
199 out:
200 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
201 return status;
204 static __be32 decode_recall_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_recallargs *args)
206 __be32 *p;
207 __be32 status;
209 args->addr = svc_addr(rqstp);
210 status = decode_stateid(xdr, &args->stateid);
211 if (unlikely(status != 0))
212 goto out;
213 p = read_buf(xdr, 4);
214 if (unlikely(p == NULL)) {
215 status = htonl(NFS4ERR_RESOURCE);
216 goto out;
218 args->truncate = ntohl(*p);
219 status = decode_fh(xdr, &args->fh);
220 out:
221 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
222 return status;
225 #if defined(CONFIG_NFS_V4_1)
227 static __be32 decode_layoutrecall_args(struct svc_rqst *rqstp,
228 struct xdr_stream *xdr,
229 struct cb_layoutrecallargs *args)
231 __be32 *p;
232 __be32 status = 0;
233 uint32_t iomode;
235 args->cbl_addr = svc_addr(rqstp);
236 p = read_buf(xdr, 4 * sizeof(uint32_t));
237 if (unlikely(p == NULL)) {
238 status = htonl(NFS4ERR_BADXDR);
239 goto out;
242 args->cbl_layout_type = ntohl(*p++);
243 /* Depite the spec's xdr, iomode really belongs in the FILE switch,
244 * as it is unusable and ignored with the other types.
246 iomode = ntohl(*p++);
247 args->cbl_layoutchanged = ntohl(*p++);
248 args->cbl_recall_type = ntohl(*p++);
250 if (args->cbl_recall_type == RETURN_FILE) {
251 args->cbl_range.iomode = iomode;
252 status = decode_fh(xdr, &args->cbl_fh);
253 if (unlikely(status != 0))
254 goto out;
256 p = read_buf(xdr, 2 * sizeof(uint64_t));
257 if (unlikely(p == NULL)) {
258 status = htonl(NFS4ERR_BADXDR);
259 goto out;
261 p = xdr_decode_hyper(p, &args->cbl_range.offset);
262 p = xdr_decode_hyper(p, &args->cbl_range.length);
263 status = decode_stateid(xdr, &args->cbl_stateid);
264 if (unlikely(status != 0))
265 goto out;
266 } else if (args->cbl_recall_type == RETURN_FSID) {
267 p = read_buf(xdr, 2 * sizeof(uint64_t));
268 if (unlikely(p == NULL)) {
269 status = htonl(NFS4ERR_BADXDR);
270 goto out;
272 p = xdr_decode_hyper(p, &args->cbl_fsid.major);
273 p = xdr_decode_hyper(p, &args->cbl_fsid.minor);
274 } else if (args->cbl_recall_type != RETURN_ALL) {
275 status = htonl(NFS4ERR_BADXDR);
276 goto out;
278 dprintk("%s: ltype 0x%x iomode %d changed %d recall_type %d\n",
279 __func__,
280 args->cbl_layout_type, iomode,
281 args->cbl_layoutchanged, args->cbl_recall_type);
282 out:
283 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
284 return status;
287 static __be32 decode_sessionid(struct xdr_stream *xdr,
288 struct nfs4_sessionid *sid)
290 __be32 *p;
291 int len = NFS4_MAX_SESSIONID_LEN;
293 p = read_buf(xdr, len);
294 if (unlikely(p == NULL))
295 return htonl(NFS4ERR_RESOURCE);
297 memcpy(sid->data, p, len);
298 return 0;
301 static __be32 decode_rc_list(struct xdr_stream *xdr,
302 struct referring_call_list *rc_list)
304 __be32 *p;
305 int i;
306 __be32 status;
308 status = decode_sessionid(xdr, &rc_list->rcl_sessionid);
309 if (status)
310 goto out;
312 status = htonl(NFS4ERR_RESOURCE);
313 p = read_buf(xdr, sizeof(uint32_t));
314 if (unlikely(p == NULL))
315 goto out;
317 rc_list->rcl_nrefcalls = ntohl(*p++);
318 if (rc_list->rcl_nrefcalls) {
319 p = read_buf(xdr,
320 rc_list->rcl_nrefcalls * 2 * sizeof(uint32_t));
321 if (unlikely(p == NULL))
322 goto out;
323 rc_list->rcl_refcalls = kmalloc(rc_list->rcl_nrefcalls *
324 sizeof(*rc_list->rcl_refcalls),
325 GFP_KERNEL);
326 if (unlikely(rc_list->rcl_refcalls == NULL))
327 goto out;
328 for (i = 0; i < rc_list->rcl_nrefcalls; i++) {
329 rc_list->rcl_refcalls[i].rc_sequenceid = ntohl(*p++);
330 rc_list->rcl_refcalls[i].rc_slotid = ntohl(*p++);
333 status = 0;
335 out:
336 return status;
339 static __be32 decode_cb_sequence_args(struct svc_rqst *rqstp,
340 struct xdr_stream *xdr,
341 struct cb_sequenceargs *args)
343 __be32 *p;
344 int i;
345 __be32 status;
347 status = decode_sessionid(xdr, &args->csa_sessionid);
348 if (status)
349 goto out;
351 status = htonl(NFS4ERR_RESOURCE);
352 p = read_buf(xdr, 5 * sizeof(uint32_t));
353 if (unlikely(p == NULL))
354 goto out;
356 args->csa_addr = svc_addr(rqstp);
357 args->csa_sequenceid = ntohl(*p++);
358 args->csa_slotid = ntohl(*p++);
359 args->csa_highestslotid = ntohl(*p++);
360 args->csa_cachethis = ntohl(*p++);
361 args->csa_nrclists = ntohl(*p++);
362 args->csa_rclists = NULL;
363 if (args->csa_nrclists) {
364 args->csa_rclists = kmalloc(args->csa_nrclists *
365 sizeof(*args->csa_rclists),
366 GFP_KERNEL);
367 if (unlikely(args->csa_rclists == NULL))
368 goto out;
370 for (i = 0; i < args->csa_nrclists; i++) {
371 status = decode_rc_list(xdr, &args->csa_rclists[i]);
372 if (status)
373 goto out_free;
376 status = 0;
378 dprintk("%s: sessionid %x:%x:%x:%x sequenceid %u slotid %u "
379 "highestslotid %u cachethis %d nrclists %u\n",
380 __func__,
381 ((u32 *)&args->csa_sessionid)[0],
382 ((u32 *)&args->csa_sessionid)[1],
383 ((u32 *)&args->csa_sessionid)[2],
384 ((u32 *)&args->csa_sessionid)[3],
385 args->csa_sequenceid, args->csa_slotid,
386 args->csa_highestslotid, args->csa_cachethis,
387 args->csa_nrclists);
388 out:
389 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
390 return status;
392 out_free:
393 for (i = 0; i < args->csa_nrclists; i++)
394 kfree(args->csa_rclists[i].rcl_refcalls);
395 kfree(args->csa_rclists);
396 goto out;
399 static __be32 decode_recallany_args(struct svc_rqst *rqstp,
400 struct xdr_stream *xdr,
401 struct cb_recallanyargs *args)
403 __be32 *p;
405 args->craa_addr = svc_addr(rqstp);
406 p = read_buf(xdr, 4);
407 if (unlikely(p == NULL))
408 return htonl(NFS4ERR_BADXDR);
409 args->craa_objs_to_keep = ntohl(*p++);
410 p = read_buf(xdr, 4);
411 if (unlikely(p == NULL))
412 return htonl(NFS4ERR_BADXDR);
413 args->craa_type_mask = ntohl(*p);
415 return 0;
418 static __be32 decode_recallslot_args(struct svc_rqst *rqstp,
419 struct xdr_stream *xdr,
420 struct cb_recallslotargs *args)
422 __be32 *p;
424 args->crsa_addr = svc_addr(rqstp);
425 p = read_buf(xdr, 4);
426 if (unlikely(p == NULL))
427 return htonl(NFS4ERR_BADXDR);
428 args->crsa_target_max_slots = ntohl(*p++);
429 return 0;
432 #endif /* CONFIG_NFS_V4_1 */
434 static __be32 encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
436 __be32 *p;
438 p = xdr_reserve_space(xdr, 4 + len);
439 if (unlikely(p == NULL))
440 return htonl(NFS4ERR_RESOURCE);
441 xdr_encode_opaque(p, str, len);
442 return 0;
445 #define CB_SUPPORTED_ATTR0 (FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE)
446 #define CB_SUPPORTED_ATTR1 (FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY)
447 static __be32 encode_attr_bitmap(struct xdr_stream *xdr, const uint32_t *bitmap, __be32 **savep)
449 __be32 bm[2];
450 __be32 *p;
452 bm[0] = htonl(bitmap[0] & CB_SUPPORTED_ATTR0);
453 bm[1] = htonl(bitmap[1] & CB_SUPPORTED_ATTR1);
454 if (bm[1] != 0) {
455 p = xdr_reserve_space(xdr, 16);
456 if (unlikely(p == NULL))
457 return htonl(NFS4ERR_RESOURCE);
458 *p++ = htonl(2);
459 *p++ = bm[0];
460 *p++ = bm[1];
461 } else if (bm[0] != 0) {
462 p = xdr_reserve_space(xdr, 12);
463 if (unlikely(p == NULL))
464 return htonl(NFS4ERR_RESOURCE);
465 *p++ = htonl(1);
466 *p++ = bm[0];
467 } else {
468 p = xdr_reserve_space(xdr, 8);
469 if (unlikely(p == NULL))
470 return htonl(NFS4ERR_RESOURCE);
471 *p++ = htonl(0);
473 *savep = p;
474 return 0;
477 static __be32 encode_attr_change(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t change)
479 __be32 *p;
481 if (!(bitmap[0] & FATTR4_WORD0_CHANGE))
482 return 0;
483 p = xdr_reserve_space(xdr, 8);
484 if (unlikely(!p))
485 return htonl(NFS4ERR_RESOURCE);
486 p = xdr_encode_hyper(p, change);
487 return 0;
490 static __be32 encode_attr_size(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t size)
492 __be32 *p;
494 if (!(bitmap[0] & FATTR4_WORD0_SIZE))
495 return 0;
496 p = xdr_reserve_space(xdr, 8);
497 if (unlikely(!p))
498 return htonl(NFS4ERR_RESOURCE);
499 p = xdr_encode_hyper(p, size);
500 return 0;
503 static __be32 encode_attr_time(struct xdr_stream *xdr, const struct timespec *time)
505 __be32 *p;
507 p = xdr_reserve_space(xdr, 12);
508 if (unlikely(!p))
509 return htonl(NFS4ERR_RESOURCE);
510 p = xdr_encode_hyper(p, time->tv_sec);
511 *p = htonl(time->tv_nsec);
512 return 0;
515 static __be32 encode_attr_ctime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
517 if (!(bitmap[1] & FATTR4_WORD1_TIME_METADATA))
518 return 0;
519 return encode_attr_time(xdr,time);
522 static __be32 encode_attr_mtime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
524 if (!(bitmap[1] & FATTR4_WORD1_TIME_MODIFY))
525 return 0;
526 return encode_attr_time(xdr,time);
529 static __be32 encode_compound_hdr_res(struct xdr_stream *xdr, struct cb_compound_hdr_res *hdr)
531 __be32 status;
533 hdr->status = xdr_reserve_space(xdr, 4);
534 if (unlikely(hdr->status == NULL))
535 return htonl(NFS4ERR_RESOURCE);
536 status = encode_string(xdr, hdr->taglen, hdr->tag);
537 if (unlikely(status != 0))
538 return status;
539 hdr->nops = xdr_reserve_space(xdr, 4);
540 if (unlikely(hdr->nops == NULL))
541 return htonl(NFS4ERR_RESOURCE);
542 return 0;
545 static __be32 encode_op_hdr(struct xdr_stream *xdr, uint32_t op, __be32 res)
547 __be32 *p;
549 p = xdr_reserve_space(xdr, 8);
550 if (unlikely(p == NULL))
551 return htonl(NFS4ERR_RESOURCE_HDR);
552 *p++ = htonl(op);
553 *p = res;
554 return 0;
557 static __be32 encode_getattr_res(struct svc_rqst *rqstp, struct xdr_stream *xdr, const struct cb_getattrres *res)
559 __be32 *savep = NULL;
560 __be32 status = res->status;
562 if (unlikely(status != 0))
563 goto out;
564 status = encode_attr_bitmap(xdr, res->bitmap, &savep);
565 if (unlikely(status != 0))
566 goto out;
567 status = encode_attr_change(xdr, res->bitmap, res->change_attr);
568 if (unlikely(status != 0))
569 goto out;
570 status = encode_attr_size(xdr, res->bitmap, res->size);
571 if (unlikely(status != 0))
572 goto out;
573 status = encode_attr_ctime(xdr, res->bitmap, &res->ctime);
574 if (unlikely(status != 0))
575 goto out;
576 status = encode_attr_mtime(xdr, res->bitmap, &res->mtime);
577 *savep = htonl((unsigned int)((char *)xdr->p - (char *)(savep+1)));
578 out:
579 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
580 return status;
583 #if defined(CONFIG_NFS_V4_1)
585 static __be32 encode_sessionid(struct xdr_stream *xdr,
586 const struct nfs4_sessionid *sid)
588 __be32 *p;
589 int len = NFS4_MAX_SESSIONID_LEN;
591 p = xdr_reserve_space(xdr, len);
592 if (unlikely(p == NULL))
593 return htonl(NFS4ERR_RESOURCE);
595 memcpy(p, sid, len);
596 return 0;
599 static __be32 encode_cb_sequence_res(struct svc_rqst *rqstp,
600 struct xdr_stream *xdr,
601 const struct cb_sequenceres *res)
603 __be32 *p;
604 unsigned status = res->csr_status;
606 if (unlikely(status != 0))
607 goto out;
609 encode_sessionid(xdr, &res->csr_sessionid);
611 p = xdr_reserve_space(xdr, 4 * sizeof(uint32_t));
612 if (unlikely(p == NULL))
613 return htonl(NFS4ERR_RESOURCE);
615 *p++ = htonl(res->csr_sequenceid);
616 *p++ = htonl(res->csr_slotid);
617 *p++ = htonl(res->csr_highestslotid);
618 *p++ = htonl(res->csr_target_highestslotid);
619 out:
620 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
621 return status;
624 static __be32
625 preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op)
627 if (op_nr == OP_CB_SEQUENCE) {
628 if (nop != 0)
629 return htonl(NFS4ERR_SEQUENCE_POS);
630 } else {
631 if (nop == 0)
632 return htonl(NFS4ERR_OP_NOT_IN_SESSION);
635 switch (op_nr) {
636 case OP_CB_GETATTR:
637 case OP_CB_RECALL:
638 case OP_CB_SEQUENCE:
639 case OP_CB_RECALL_ANY:
640 case OP_CB_RECALL_SLOT:
641 case OP_CB_LAYOUTRECALL:
642 *op = &callback_ops[op_nr];
643 break;
645 case OP_CB_NOTIFY_DEVICEID:
646 case OP_CB_NOTIFY:
647 case OP_CB_PUSH_DELEG:
648 case OP_CB_RECALLABLE_OBJ_AVAIL:
649 case OP_CB_WANTS_CANCELLED:
650 case OP_CB_NOTIFY_LOCK:
651 return htonl(NFS4ERR_NOTSUPP);
653 default:
654 return htonl(NFS4ERR_OP_ILLEGAL);
657 return htonl(NFS_OK);
660 static void nfs4_callback_free_slot(struct nfs4_session *session)
662 struct nfs4_slot_table *tbl = &session->bc_slot_table;
664 spin_lock(&tbl->slot_tbl_lock);
666 * Let the state manager know callback processing done.
667 * A single slot, so highest used slotid is either 0 or -1
669 tbl->highest_used_slotid--;
670 nfs4_check_drain_bc_complete(session);
671 spin_unlock(&tbl->slot_tbl_lock);
674 static void nfs4_cb_free_slot(struct nfs_client *clp)
676 if (clp && clp->cl_session)
677 nfs4_callback_free_slot(clp->cl_session);
680 /* A single slot, so highest used slotid is either 0 or -1 */
681 void nfs4_cb_take_slot(struct nfs_client *clp)
683 struct nfs4_slot_table *tbl = &clp->cl_session->bc_slot_table;
685 spin_lock(&tbl->slot_tbl_lock);
686 tbl->highest_used_slotid++;
687 BUG_ON(tbl->highest_used_slotid != 0);
688 spin_unlock(&tbl->slot_tbl_lock);
691 #else /* CONFIG_NFS_V4_1 */
693 static __be32
694 preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op)
696 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
699 static void nfs4_cb_free_slot(struct nfs_client *clp)
702 #endif /* CONFIG_NFS_V4_1 */
704 static __be32
705 preprocess_nfs4_op(unsigned int op_nr, struct callback_op **op)
707 switch (op_nr) {
708 case OP_CB_GETATTR:
709 case OP_CB_RECALL:
710 *op = &callback_ops[op_nr];
711 break;
712 default:
713 return htonl(NFS4ERR_OP_ILLEGAL);
716 return htonl(NFS_OK);
719 static __be32 process_op(uint32_t minorversion, int nop,
720 struct svc_rqst *rqstp,
721 struct xdr_stream *xdr_in, void *argp,
722 struct xdr_stream *xdr_out, void *resp,
723 struct cb_process_state *cps)
725 struct callback_op *op = &callback_ops[0];
726 unsigned int op_nr;
727 __be32 status;
728 long maxlen;
729 __be32 res;
731 dprintk("%s: start\n", __func__);
732 status = decode_op_hdr(xdr_in, &op_nr);
733 if (unlikely(status))
734 return status;
736 dprintk("%s: minorversion=%d nop=%d op_nr=%u\n",
737 __func__, minorversion, nop, op_nr);
739 status = minorversion ? preprocess_nfs41_op(nop, op_nr, &op) :
740 preprocess_nfs4_op(op_nr, &op);
741 if (status == htonl(NFS4ERR_OP_ILLEGAL))
742 op_nr = OP_CB_ILLEGAL;
743 if (status)
744 goto encode_hdr;
746 if (cps->drc_status) {
747 status = cps->drc_status;
748 goto encode_hdr;
751 maxlen = xdr_out->end - xdr_out->p;
752 if (maxlen > 0 && maxlen < PAGE_SIZE) {
753 status = op->decode_args(rqstp, xdr_in, argp);
754 if (likely(status == 0))
755 status = op->process_op(argp, resp, cps);
756 } else
757 status = htonl(NFS4ERR_RESOURCE);
759 encode_hdr:
760 res = encode_op_hdr(xdr_out, op_nr, status);
761 if (unlikely(res))
762 return res;
763 if (op->encode_res != NULL && status == 0)
764 status = op->encode_res(rqstp, xdr_out, resp);
765 dprintk("%s: done, status = %d\n", __func__, ntohl(status));
766 return status;
770 * Decode, process and encode a COMPOUND
772 static __be32 nfs4_callback_compound(struct svc_rqst *rqstp, void *argp, void *resp)
774 struct cb_compound_hdr_arg hdr_arg = { 0 };
775 struct cb_compound_hdr_res hdr_res = { NULL };
776 struct xdr_stream xdr_in, xdr_out;
777 __be32 *p, status;
778 struct cb_process_state cps = {
779 .drc_status = 0,
780 .clp = NULL,
782 unsigned int nops = 0;
784 dprintk("%s: start\n", __func__);
786 xdr_init_decode(&xdr_in, &rqstp->rq_arg, rqstp->rq_arg.head[0].iov_base);
788 p = (__be32*)((char *)rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len);
789 xdr_init_encode(&xdr_out, &rqstp->rq_res, p);
791 status = decode_compound_hdr_arg(&xdr_in, &hdr_arg);
792 if (status == __constant_htonl(NFS4ERR_RESOURCE))
793 return rpc_garbage_args;
795 if (hdr_arg.minorversion == 0) {
796 cps.clp = nfs4_find_client_ident(hdr_arg.cb_ident);
797 if (!cps.clp || !check_gss_callback_principal(cps.clp, rqstp))
798 return rpc_drop_reply;
801 hdr_res.taglen = hdr_arg.taglen;
802 hdr_res.tag = hdr_arg.tag;
803 if (encode_compound_hdr_res(&xdr_out, &hdr_res) != 0)
804 return rpc_system_err;
806 while (status == 0 && nops != hdr_arg.nops) {
807 status = process_op(hdr_arg.minorversion, nops, rqstp,
808 &xdr_in, argp, &xdr_out, resp, &cps);
809 nops++;
812 /* Buffer overflow in decode_ops_hdr or encode_ops_hdr. Return
813 * resource error in cb_compound status without returning op */
814 if (unlikely(status == htonl(NFS4ERR_RESOURCE_HDR))) {
815 status = htonl(NFS4ERR_RESOURCE);
816 nops--;
819 *hdr_res.status = status;
820 *hdr_res.nops = htonl(nops);
821 nfs4_cb_free_slot(cps.clp);
822 nfs_put_client(cps.clp);
823 dprintk("%s: done, status = %u\n", __func__, ntohl(status));
824 return rpc_success;
828 * Define NFS4 callback COMPOUND ops.
830 static struct callback_op callback_ops[] = {
831 [0] = {
832 .res_maxsize = CB_OP_HDR_RES_MAXSZ,
834 [OP_CB_GETATTR] = {
835 .process_op = (callback_process_op_t)nfs4_callback_getattr,
836 .decode_args = (callback_decode_arg_t)decode_getattr_args,
837 .encode_res = (callback_encode_res_t)encode_getattr_res,
838 .res_maxsize = CB_OP_GETATTR_RES_MAXSZ,
840 [OP_CB_RECALL] = {
841 .process_op = (callback_process_op_t)nfs4_callback_recall,
842 .decode_args = (callback_decode_arg_t)decode_recall_args,
843 .res_maxsize = CB_OP_RECALL_RES_MAXSZ,
845 #if defined(CONFIG_NFS_V4_1)
846 [OP_CB_LAYOUTRECALL] = {
847 .process_op = (callback_process_op_t)nfs4_callback_layoutrecall,
848 .decode_args =
849 (callback_decode_arg_t)decode_layoutrecall_args,
850 .res_maxsize = CB_OP_LAYOUTRECALL_RES_MAXSZ,
852 [OP_CB_SEQUENCE] = {
853 .process_op = (callback_process_op_t)nfs4_callback_sequence,
854 .decode_args = (callback_decode_arg_t)decode_cb_sequence_args,
855 .encode_res = (callback_encode_res_t)encode_cb_sequence_res,
856 .res_maxsize = CB_OP_SEQUENCE_RES_MAXSZ,
858 [OP_CB_RECALL_ANY] = {
859 .process_op = (callback_process_op_t)nfs4_callback_recallany,
860 .decode_args = (callback_decode_arg_t)decode_recallany_args,
861 .res_maxsize = CB_OP_RECALLANY_RES_MAXSZ,
863 [OP_CB_RECALL_SLOT] = {
864 .process_op = (callback_process_op_t)nfs4_callback_recallslot,
865 .decode_args = (callback_decode_arg_t)decode_recallslot_args,
866 .res_maxsize = CB_OP_RECALLSLOT_RES_MAXSZ,
868 #endif /* CONFIG_NFS_V4_1 */
872 * Define NFS4 callback procedures
874 static struct svc_procedure nfs4_callback_procedures1[] = {
875 [CB_NULL] = {
876 .pc_func = nfs4_callback_null,
877 .pc_decode = (kxdrproc_t)nfs4_decode_void,
878 .pc_encode = (kxdrproc_t)nfs4_encode_void,
879 .pc_xdrressize = 1,
881 [CB_COMPOUND] = {
882 .pc_func = nfs4_callback_compound,
883 .pc_encode = (kxdrproc_t)nfs4_encode_void,
884 .pc_argsize = 256,
885 .pc_ressize = 256,
886 .pc_xdrressize = NFS4_CALLBACK_BUFSIZE,
890 struct svc_version nfs4_callback_version1 = {
891 .vs_vers = 1,
892 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
893 .vs_proc = nfs4_callback_procedures1,
894 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
895 .vs_dispatch = NULL,
896 .vs_hidden = 1,
899 struct svc_version nfs4_callback_version4 = {
900 .vs_vers = 4,
901 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
902 .vs_proc = nfs4_callback_procedures1,
903 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
904 .vs_dispatch = NULL,