2 * linux/fs/nfs/callback_xdr.c
4 * Copyright (C) 2004 Trond Myklebust
6 * NFSv4 callback encode/decode procedures
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>
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 + \
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 + \
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 *);
46 callback_process_op_t process_op
;
47 callback_decode_arg_t decode_args
;
48 callback_encode_res_t encode_res
;
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
)
73 p
= xdr_inline_decode(xdr
, nbytes
);
74 if (unlikely(p
== NULL
))
75 printk(KERN_WARNING
"NFSv4 callback reply buffer overflowed!\n");
79 static __be32
decode_string(struct xdr_stream
*xdr
, unsigned int *len
, const char **str
)
84 if (unlikely(p
== NULL
))
85 return htonl(NFS4ERR_RESOURCE
);
89 p
= read_buf(xdr
, *len
);
90 if (unlikely(p
== NULL
))
91 return htonl(NFS4ERR_RESOURCE
);
92 *str
= (const char *)p
;
99 static __be32
decode_fh(struct xdr_stream
*xdr
, struct nfs_fh
*fh
)
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
);
117 static __be32
decode_bitmap(struct xdr_stream
*xdr
, uint32_t *bitmap
)
120 unsigned int attrlen
;
122 p
= read_buf(xdr
, 4);
123 if (unlikely(p
== NULL
))
124 return htonl(NFS4ERR_RESOURCE
);
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
++);
132 bitmap
[1] = ntohl(*p
);
136 static __be32
decode_stateid(struct xdr_stream
*xdr
, nfs4_stateid
*stateid
)
140 p
= read_buf(xdr
, 16);
141 if (unlikely(p
== NULL
))
142 return htonl(NFS4ERR_RESOURCE
);
143 memcpy(stateid
->data
, p
, 16);
147 static __be32
decode_compound_hdr_arg(struct xdr_stream
*xdr
, struct cb_compound_hdr_arg
*hdr
)
152 status
= decode_string(xdr
, &hdr
->taglen
, &hdr
->tag
);
153 if (unlikely(status
!= 0))
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 */
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
);
180 static __be32
decode_op_hdr(struct xdr_stream
*xdr
, unsigned int *op
)
183 p
= read_buf(xdr
, 4);
184 if (unlikely(p
== NULL
))
185 return htonl(NFS4ERR_RESOURCE_HDR
);
190 static __be32
decode_getattr_args(struct svc_rqst
*rqstp
, struct xdr_stream
*xdr
, struct cb_getattrargs
*args
)
194 status
= decode_fh(xdr
, &args
->fh
);
195 if (unlikely(status
!= 0))
197 args
->addr
= svc_addr(rqstp
);
198 status
= decode_bitmap(xdr
, args
->bitmap
);
200 dprintk("%s: exit with status = %d\n", __func__
, ntohl(status
));
204 static __be32
decode_recall_args(struct svc_rqst
*rqstp
, struct xdr_stream
*xdr
, struct cb_recallargs
*args
)
209 args
->addr
= svc_addr(rqstp
);
210 status
= decode_stateid(xdr
, &args
->stateid
);
211 if (unlikely(status
!= 0))
213 p
= read_buf(xdr
, 4);
214 if (unlikely(p
== NULL
)) {
215 status
= htonl(NFS4ERR_RESOURCE
);
218 args
->truncate
= ntohl(*p
);
219 status
= decode_fh(xdr
, &args
->fh
);
221 dprintk("%s: exit with status = %d\n", __func__
, ntohl(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
)
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
);
242 args
->cbl_layout_type
= ntohl(*p
++);
243 /* Depite the spec's xdr, iomode really belongs in the FILE switch,
244 * as it is unuseable 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))
256 p
= read_buf(xdr
, 2 * sizeof(uint64_t));
257 if (unlikely(p
== NULL
)) {
258 status
= htonl(NFS4ERR_BADXDR
);
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))
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
);
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
);
278 dprintk("%s: ltype 0x%x iomode %d changed %d recall_type %d\n",
280 args
->cbl_layout_type
, iomode
,
281 args
->cbl_layoutchanged
, args
->cbl_recall_type
);
283 dprintk("%s: exit with status = %d\n", __func__
, ntohl(status
));
287 static __be32
decode_sessionid(struct xdr_stream
*xdr
,
288 struct nfs4_sessionid
*sid
)
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
);
301 static __be32
decode_rc_list(struct xdr_stream
*xdr
,
302 struct referring_call_list
*rc_list
)
308 status
= decode_sessionid(xdr
, &rc_list
->rcl_sessionid
);
312 status
= htonl(NFS4ERR_RESOURCE
);
313 p
= read_buf(xdr
, sizeof(uint32_t));
314 if (unlikely(p
== NULL
))
317 rc_list
->rcl_nrefcalls
= ntohl(*p
++);
318 if (rc_list
->rcl_nrefcalls
) {
320 rc_list
->rcl_nrefcalls
* 2 * sizeof(uint32_t));
321 if (unlikely(p
== NULL
))
323 rc_list
->rcl_refcalls
= kmalloc(rc_list
->rcl_nrefcalls
*
324 sizeof(*rc_list
->rcl_refcalls
),
326 if (unlikely(rc_list
->rcl_refcalls
== NULL
))
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
++);
339 static __be32
decode_cb_sequence_args(struct svc_rqst
*rqstp
,
340 struct xdr_stream
*xdr
,
341 struct cb_sequenceargs
*args
)
347 status
= decode_sessionid(xdr
, &args
->csa_sessionid
);
351 status
= htonl(NFS4ERR_RESOURCE
);
352 p
= read_buf(xdr
, 5 * sizeof(uint32_t));
353 if (unlikely(p
== NULL
))
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
),
367 if (unlikely(args
->csa_rclists
== NULL
))
370 for (i
= 0; i
< args
->csa_nrclists
; i
++) {
371 status
= decode_rc_list(xdr
, &args
->csa_rclists
[i
]);
378 dprintk("%s: sessionid %x:%x:%x:%x sequenceid %u slotid %u "
379 "highestslotid %u cachethis %d nrclists %u\n",
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
,
389 dprintk("%s: exit with status = %d\n", __func__
, ntohl(status
));
393 for (i
= 0; i
< args
->csa_nrclists
; i
++)
394 kfree(args
->csa_rclists
[i
].rcl_refcalls
);
395 kfree(args
->csa_rclists
);
399 static __be32
decode_recallany_args(struct svc_rqst
*rqstp
,
400 struct xdr_stream
*xdr
,
401 struct cb_recallanyargs
*args
)
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
);
418 static __be32
decode_recallslot_args(struct svc_rqst
*rqstp
,
419 struct xdr_stream
*xdr
,
420 struct cb_recallslotargs
*args
)
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
++);
432 #endif /* CONFIG_NFS_V4_1 */
434 static __be32
encode_string(struct xdr_stream
*xdr
, unsigned int len
, const char *str
)
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
);
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
)
452 bm
[0] = htonl(bitmap
[0] & CB_SUPPORTED_ATTR0
);
453 bm
[1] = htonl(bitmap
[1] & CB_SUPPORTED_ATTR1
);
455 p
= xdr_reserve_space(xdr
, 16);
456 if (unlikely(p
== NULL
))
457 return htonl(NFS4ERR_RESOURCE
);
461 } else if (bm
[0] != 0) {
462 p
= xdr_reserve_space(xdr
, 12);
463 if (unlikely(p
== NULL
))
464 return htonl(NFS4ERR_RESOURCE
);
468 p
= xdr_reserve_space(xdr
, 8);
469 if (unlikely(p
== NULL
))
470 return htonl(NFS4ERR_RESOURCE
);
477 static __be32
encode_attr_change(struct xdr_stream
*xdr
, const uint32_t *bitmap
, uint64_t change
)
481 if (!(bitmap
[0] & FATTR4_WORD0_CHANGE
))
483 p
= xdr_reserve_space(xdr
, 8);
485 return htonl(NFS4ERR_RESOURCE
);
486 p
= xdr_encode_hyper(p
, change
);
490 static __be32
encode_attr_size(struct xdr_stream
*xdr
, const uint32_t *bitmap
, uint64_t size
)
494 if (!(bitmap
[0] & FATTR4_WORD0_SIZE
))
496 p
= xdr_reserve_space(xdr
, 8);
498 return htonl(NFS4ERR_RESOURCE
);
499 p
= xdr_encode_hyper(p
, size
);
503 static __be32
encode_attr_time(struct xdr_stream
*xdr
, const struct timespec
*time
)
507 p
= xdr_reserve_space(xdr
, 12);
509 return htonl(NFS4ERR_RESOURCE
);
510 p
= xdr_encode_hyper(p
, time
->tv_sec
);
511 *p
= htonl(time
->tv_nsec
);
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
))
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
))
526 return encode_attr_time(xdr
,time
);
529 static __be32
encode_compound_hdr_res(struct xdr_stream
*xdr
, struct cb_compound_hdr_res
*hdr
)
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))
539 hdr
->nops
= xdr_reserve_space(xdr
, 4);
540 if (unlikely(hdr
->nops
== NULL
))
541 return htonl(NFS4ERR_RESOURCE
);
545 static __be32
encode_op_hdr(struct xdr_stream
*xdr
, uint32_t op
, __be32 res
)
549 p
= xdr_reserve_space(xdr
, 8);
550 if (unlikely(p
== NULL
))
551 return htonl(NFS4ERR_RESOURCE_HDR
);
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))
564 status
= encode_attr_bitmap(xdr
, res
->bitmap
, &savep
);
565 if (unlikely(status
!= 0))
567 status
= encode_attr_change(xdr
, res
->bitmap
, res
->change_attr
);
568 if (unlikely(status
!= 0))
570 status
= encode_attr_size(xdr
, res
->bitmap
, res
->size
);
571 if (unlikely(status
!= 0))
573 status
= encode_attr_ctime(xdr
, res
->bitmap
, &res
->ctime
);
574 if (unlikely(status
!= 0))
576 status
= encode_attr_mtime(xdr
, res
->bitmap
, &res
->mtime
);
577 *savep
= htonl((unsigned int)((char *)xdr
->p
- (char *)(savep
+1)));
579 dprintk("%s: exit with status = %d\n", __func__
, ntohl(status
));
583 #if defined(CONFIG_NFS_V4_1)
585 static __be32
encode_sessionid(struct xdr_stream
*xdr
,
586 const struct nfs4_sessionid
*sid
)
589 int len
= NFS4_MAX_SESSIONID_LEN
;
591 p
= xdr_reserve_space(xdr
, len
);
592 if (unlikely(p
== NULL
))
593 return htonl(NFS4ERR_RESOURCE
);
599 static __be32
encode_cb_sequence_res(struct svc_rqst
*rqstp
,
600 struct xdr_stream
*xdr
,
601 const struct cb_sequenceres
*res
)
604 unsigned status
= res
->csr_status
;
606 if (unlikely(status
!= 0))
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
);
620 dprintk("%s: exit with status = %d\n", __func__
, ntohl(status
));
625 preprocess_nfs41_op(int nop
, unsigned int op_nr
, struct callback_op
**op
)
627 if (op_nr
== OP_CB_SEQUENCE
) {
629 return htonl(NFS4ERR_SEQUENCE_POS
);
632 return htonl(NFS4ERR_OP_NOT_IN_SESSION
);
639 case OP_CB_RECALL_ANY
:
640 case OP_CB_RECALL_SLOT
:
641 case OP_CB_LAYOUTRECALL
:
642 *op
= &callback_ops
[op_nr
];
645 case OP_CB_NOTIFY_DEVICEID
:
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
);
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 */
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 */
705 preprocess_nfs4_op(unsigned int op_nr
, struct callback_op
**op
)
710 *op
= &callback_ops
[op_nr
];
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];
731 dprintk("%s: start\n", __func__
);
732 status
= decode_op_hdr(xdr_in
, &op_nr
);
733 if (unlikely(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
;
746 if (cps
->drc_status
) {
747 status
= cps
->drc_status
;
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
);
757 status
= htonl(NFS4ERR_RESOURCE
);
760 res
= encode_op_hdr(xdr_out
, op_nr
, status
);
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
));
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
;
778 struct cb_process_state cps
= {
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
);
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
);
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
));
828 * Define NFS4 callback COMPOUND ops.
830 static struct callback_op callback_ops
[] = {
832 .res_maxsize
= CB_OP_HDR_RES_MAXSZ
,
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
,
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
,
849 (callback_decode_arg_t
)decode_layoutrecall_args
,
850 .res_maxsize
= CB_OP_LAYOUTRECALL_RES_MAXSZ
,
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
[] = {
876 .pc_func
= nfs4_callback_null
,
877 .pc_decode
= (kxdrproc_t
)nfs4_decode_void
,
878 .pc_encode
= (kxdrproc_t
)nfs4_encode_void
,
882 .pc_func
= nfs4_callback_compound
,
883 .pc_encode
= (kxdrproc_t
)nfs4_encode_void
,
886 .pc_xdrressize
= NFS4_CALLBACK_BUFSIZE
,
890 struct svc_version nfs4_callback_version1
= {
892 .vs_nproc
= ARRAY_SIZE(nfs4_callback_procedures1
),
893 .vs_proc
= nfs4_callback_procedures1
,
894 .vs_xdrsize
= NFS4_CALLBACK_XDRSIZE
,
899 struct svc_version nfs4_callback_version4
= {
901 .vs_nproc
= ARRAY_SIZE(nfs4_callback_procedures1
),
902 .vs_proc
= nfs4_callback_procedures1
,
903 .vs_xdrsize
= NFS4_CALLBACK_XDRSIZE
,