2 * linux/fs/lockd/clntxdr.c
4 * XDR functions to encode/decode NLM version 3 RPC arguments and results.
5 * NLM version 3 is backwards compatible with NLM versions 1 and 2.
7 * NLM client-side only.
9 * Copyright (C) 2010, Oracle. All rights reserved.
12 #include <linux/types.h>
13 #include <linux/sunrpc/xdr.h>
14 #include <linux/sunrpc/clnt.h>
15 #include <linux/sunrpc/stats.h>
16 #include <linux/lockd/lockd.h>
18 #include <uapi/linux/nfs2.h>
20 #define NLMDBG_FACILITY NLMDBG_XDR
22 #if (NLMCLNT_OHSIZE > XDR_MAX_NETOBJ)
23 # error "NLM host name cannot be larger than XDR_MAX_NETOBJ!"
27 * Declare the space requirements for NLM arguments and replies as
28 * number of 32bit-words
30 #define NLM_cookie_sz (1+(NLM_MAXCOOKIELEN>>2))
31 #define NLM_caller_sz (1+(NLMCLNT_OHSIZE>>2))
32 #define NLM_owner_sz (1+(NLMCLNT_OHSIZE>>2))
33 #define NLM_fhandle_sz (1+(NFS2_FHSIZE>>2))
34 #define NLM_lock_sz (3+NLM_caller_sz+NLM_owner_sz+NLM_fhandle_sz)
35 #define NLM_holder_sz (4+NLM_owner_sz)
37 #define NLM_testargs_sz (NLM_cookie_sz+1+NLM_lock_sz)
38 #define NLM_lockargs_sz (NLM_cookie_sz+4+NLM_lock_sz)
39 #define NLM_cancargs_sz (NLM_cookie_sz+2+NLM_lock_sz)
40 #define NLM_unlockargs_sz (NLM_cookie_sz+NLM_lock_sz)
42 #define NLM_testres_sz (NLM_cookie_sz+1+NLM_holder_sz)
43 #define NLM_res_sz (NLM_cookie_sz+1)
44 #define NLM_norep_sz (0)
47 static s32
loff_t_to_s32(loff_t offset
)
51 if (offset
>= NLM_OFFSET_MAX
)
53 else if (offset
<= -NLM_OFFSET_MAX
)
54 res
= -NLM_OFFSET_MAX
;
60 static void nlm_compute_offsets(const struct nlm_lock
*lock
,
61 u32
*l_offset
, u32
*l_len
)
63 const struct file_lock
*fl
= &lock
->fl
;
65 *l_offset
= loff_t_to_s32(fl
->fl_start
);
66 if (fl
->fl_end
== OFFSET_MAX
)
69 *l_len
= loff_t_to_s32(fl
->fl_end
- fl
->fl_start
+ 1);
73 * Handle decode buffer overflows out-of-line.
75 static void print_overflow_msg(const char *func
, const struct xdr_stream
*xdr
)
77 dprintk("lockd: %s prematurely hit the end of our receive buffer. "
78 "Remaining buffer length is %tu words.\n",
79 func
, xdr
->end
- xdr
->p
);
84 * Encode/decode NLMv3 basic data types
86 * Basic NLMv3 data types are not defined in an IETF standards
87 * document. X/Open has a description of these data types that
88 * is useful. See Chapter 10 of "Protocols for Interworking:
91 * Not all basic data types have their own encoding and decoding
92 * functions. For run-time efficiency, some data types are encoded
96 static void encode_bool(struct xdr_stream
*xdr
, const int value
)
100 p
= xdr_reserve_space(xdr
, 4);
101 *p
= value
? xdr_one
: xdr_zero
;
104 static void encode_int32(struct xdr_stream
*xdr
, const s32 value
)
108 p
= xdr_reserve_space(xdr
, 4);
109 *p
= cpu_to_be32(value
);
113 * typedef opaque netobj<MAXNETOBJ_SZ>
115 static void encode_netobj(struct xdr_stream
*xdr
,
116 const u8
*data
, const unsigned int length
)
120 p
= xdr_reserve_space(xdr
, 4 + length
);
121 xdr_encode_opaque(p
, data
, length
);
124 static int decode_netobj(struct xdr_stream
*xdr
,
125 struct xdr_netobj
*obj
)
130 p
= xdr_inline_decode(xdr
, 4);
131 if (unlikely(p
== NULL
))
133 length
= be32_to_cpup(p
++);
134 if (unlikely(length
> XDR_MAX_NETOBJ
))
140 dprintk("NFS: returned netobj was too long: %u\n", length
);
143 print_overflow_msg(__func__
, xdr
);
150 static void encode_cookie(struct xdr_stream
*xdr
,
151 const struct nlm_cookie
*cookie
)
153 encode_netobj(xdr
, (u8
*)&cookie
->data
, cookie
->len
);
156 static int decode_cookie(struct xdr_stream
*xdr
,
157 struct nlm_cookie
*cookie
)
162 p
= xdr_inline_decode(xdr
, 4);
163 if (unlikely(p
== NULL
))
165 length
= be32_to_cpup(p
++);
166 /* apparently HPUX can return empty cookies */
169 if (length
> NLM_MAXCOOKIELEN
)
171 p
= xdr_inline_decode(xdr
, length
);
172 if (unlikely(p
== NULL
))
174 cookie
->len
= length
;
175 memcpy(cookie
->data
, p
, length
);
179 memset(cookie
->data
, 0, 4);
182 dprintk("NFS: returned cookie was too long: %u\n", length
);
185 print_overflow_msg(__func__
, xdr
);
192 static void encode_fh(struct xdr_stream
*xdr
, const struct nfs_fh
*fh
)
194 encode_netobj(xdr
, (u8
*)&fh
->data
, NFS2_FHSIZE
);
201 * LCK_DENIED_NOLOCKS = 2,
203 * LCK_DENIED_GRACE_PERIOD = 4
211 * NB: we don't swap bytes for the NLM status values. The upper
212 * layers deal directly with the status value in network byte
216 static void encode_nlm_stat(struct xdr_stream
*xdr
,
221 WARN_ON_ONCE(be32_to_cpu(stat
) > NLM_LCK_DENIED_GRACE_PERIOD
);
222 p
= xdr_reserve_space(xdr
, 4);
226 static int decode_nlm_stat(struct xdr_stream
*xdr
,
231 p
= xdr_inline_decode(xdr
, 4);
232 if (unlikely(p
== NULL
))
234 if (unlikely(ntohl(*p
) > ntohl(nlm_lck_denied_grace_period
)))
239 dprintk("%s: server returned invalid nlm_stats value: %u\n",
240 __func__
, be32_to_cpup(p
));
243 print_overflow_msg(__func__
, xdr
);
248 * struct nlm_holder {
256 static void encode_nlm_holder(struct xdr_stream
*xdr
,
257 const struct nlm_res
*result
)
259 const struct nlm_lock
*lock
= &result
->lock
;
263 encode_bool(xdr
, lock
->fl
.fl_type
== F_RDLCK
);
264 encode_int32(xdr
, lock
->svid
);
265 encode_netobj(xdr
, lock
->oh
.data
, lock
->oh
.len
);
267 p
= xdr_reserve_space(xdr
, 4 + 4);
268 nlm_compute_offsets(lock
, &l_offset
, &l_len
);
269 *p
++ = cpu_to_be32(l_offset
);
270 *p
= cpu_to_be32(l_len
);
273 static int decode_nlm_holder(struct xdr_stream
*xdr
, struct nlm_res
*result
)
275 struct nlm_lock
*lock
= &result
->lock
;
276 struct file_lock
*fl
= &lock
->fl
;
277 u32 exclusive
, l_offset
, l_len
;
282 memset(lock
, 0, sizeof(*lock
));
285 p
= xdr_inline_decode(xdr
, 4 + 4);
286 if (unlikely(p
== NULL
))
288 exclusive
= be32_to_cpup(p
++);
289 lock
->svid
= be32_to_cpup(p
);
290 fl
->fl_pid
= (pid_t
)lock
->svid
;
292 error
= decode_netobj(xdr
, &lock
->oh
);
296 p
= xdr_inline_decode(xdr
, 4 + 4);
297 if (unlikely(p
== NULL
))
300 fl
->fl_flags
= FL_POSIX
;
301 fl
->fl_type
= exclusive
!= 0 ? F_WRLCK
: F_RDLCK
;
302 l_offset
= be32_to_cpup(p
++);
303 l_len
= be32_to_cpup(p
);
304 end
= l_offset
+ l_len
- 1;
306 fl
->fl_start
= (loff_t
)l_offset
;
307 if (l_len
== 0 || end
< 0)
308 fl
->fl_end
= OFFSET_MAX
;
310 fl
->fl_end
= (loff_t
)end
;
315 print_overflow_msg(__func__
, xdr
);
320 * string caller_name<LM_MAXSTRLEN>;
322 static void encode_caller_name(struct xdr_stream
*xdr
, const char *name
)
324 /* NB: client-side does not set lock->len */
325 u32 length
= strlen(name
);
328 p
= xdr_reserve_space(xdr
, 4 + length
);
329 xdr_encode_opaque(p
, name
, length
);
334 * string caller_name<LM_MAXSTRLEN>;
342 static void encode_nlm_lock(struct xdr_stream
*xdr
,
343 const struct nlm_lock
*lock
)
348 encode_caller_name(xdr
, lock
->caller
);
349 encode_fh(xdr
, &lock
->fh
);
350 encode_netobj(xdr
, lock
->oh
.data
, lock
->oh
.len
);
352 p
= xdr_reserve_space(xdr
, 4 + 4 + 4);
353 *p
++ = cpu_to_be32(lock
->svid
);
355 nlm_compute_offsets(lock
, &l_offset
, &l_len
);
356 *p
++ = cpu_to_be32(l_offset
);
357 *p
= cpu_to_be32(l_len
);
362 * NLMv3 XDR encode functions
364 * NLMv3 argument types are defined in Chapter 10 of The Open Group's
365 * "Protocols for Interworking: XNFS, Version 3W".
369 * struct nlm_testargs {
372 * struct nlm_lock alock;
375 static void nlm_xdr_enc_testargs(struct rpc_rqst
*req
,
376 struct xdr_stream
*xdr
,
379 const struct nlm_args
*args
= data
;
380 const struct nlm_lock
*lock
= &args
->lock
;
382 encode_cookie(xdr
, &args
->cookie
);
383 encode_bool(xdr
, lock
->fl
.fl_type
== F_WRLCK
);
384 encode_nlm_lock(xdr
, lock
);
388 * struct nlm_lockargs {
392 * struct nlm_lock alock;
397 static void nlm_xdr_enc_lockargs(struct rpc_rqst
*req
,
398 struct xdr_stream
*xdr
,
401 const struct nlm_args
*args
= data
;
402 const struct nlm_lock
*lock
= &args
->lock
;
404 encode_cookie(xdr
, &args
->cookie
);
405 encode_bool(xdr
, args
->block
);
406 encode_bool(xdr
, lock
->fl
.fl_type
== F_WRLCK
);
407 encode_nlm_lock(xdr
, lock
);
408 encode_bool(xdr
, args
->reclaim
);
409 encode_int32(xdr
, args
->state
);
413 * struct nlm_cancargs {
417 * struct nlm_lock alock;
420 static void nlm_xdr_enc_cancargs(struct rpc_rqst
*req
,
421 struct xdr_stream
*xdr
,
424 const struct nlm_args
*args
= data
;
425 const struct nlm_lock
*lock
= &args
->lock
;
427 encode_cookie(xdr
, &args
->cookie
);
428 encode_bool(xdr
, args
->block
);
429 encode_bool(xdr
, lock
->fl
.fl_type
== F_WRLCK
);
430 encode_nlm_lock(xdr
, lock
);
434 * struct nlm_unlockargs {
436 * struct nlm_lock alock;
439 static void nlm_xdr_enc_unlockargs(struct rpc_rqst
*req
,
440 struct xdr_stream
*xdr
,
443 const struct nlm_args
*args
= data
;
444 const struct nlm_lock
*lock
= &args
->lock
;
446 encode_cookie(xdr
, &args
->cookie
);
447 encode_nlm_lock(xdr
, lock
);
456 static void nlm_xdr_enc_res(struct rpc_rqst
*req
,
457 struct xdr_stream
*xdr
,
460 const struct nlm_res
*result
= data
;
462 encode_cookie(xdr
, &result
->cookie
);
463 encode_nlm_stat(xdr
, result
->status
);
467 * union nlm_testrply switch (nlm_stats stat) {
469 * struct nlm_holder holder;
474 * struct nlm_testres {
476 * nlm_testrply test_stat;
479 static void encode_nlm_testrply(struct xdr_stream
*xdr
,
480 const struct nlm_res
*result
)
482 if (result
->status
== nlm_lck_denied
)
483 encode_nlm_holder(xdr
, result
);
486 static void nlm_xdr_enc_testres(struct rpc_rqst
*req
,
487 struct xdr_stream
*xdr
,
490 const struct nlm_res
*result
= data
;
492 encode_cookie(xdr
, &result
->cookie
);
493 encode_nlm_stat(xdr
, result
->status
);
494 encode_nlm_testrply(xdr
, result
);
499 * NLMv3 XDR decode functions
501 * NLMv3 result types are defined in Chapter 10 of The Open Group's
502 * "Protocols for Interworking: XNFS, Version 3W".
506 * union nlm_testrply switch (nlm_stats stat) {
508 * struct nlm_holder holder;
513 * struct nlm_testres {
515 * nlm_testrply test_stat;
518 static int decode_nlm_testrply(struct xdr_stream
*xdr
,
519 struct nlm_res
*result
)
523 error
= decode_nlm_stat(xdr
, &result
->status
);
526 if (result
->status
== nlm_lck_denied
)
527 error
= decode_nlm_holder(xdr
, result
);
532 static int nlm_xdr_dec_testres(struct rpc_rqst
*req
,
533 struct xdr_stream
*xdr
,
536 struct nlm_res
*result
= data
;
539 error
= decode_cookie(xdr
, &result
->cookie
);
542 error
= decode_nlm_testrply(xdr
, result
);
553 static int nlm_xdr_dec_res(struct rpc_rqst
*req
,
554 struct xdr_stream
*xdr
,
557 struct nlm_res
*result
= data
;
560 error
= decode_cookie(xdr
, &result
->cookie
);
563 error
= decode_nlm_stat(xdr
, &result
->status
);
570 * For NLM, a void procedure really returns nothing
572 #define nlm_xdr_dec_norep NULL
574 #define PROC(proc, argtype, restype) \
575 [NLMPROC_##proc] = { \
576 .p_proc = NLMPROC_##proc, \
577 .p_encode = nlm_xdr_enc_##argtype, \
578 .p_decode = nlm_xdr_dec_##restype, \
579 .p_arglen = NLM_##argtype##_sz, \
580 .p_replen = NLM_##restype##_sz, \
581 .p_statidx = NLMPROC_##proc, \
585 static const struct rpc_procinfo nlm_procedures
[] = {
586 PROC(TEST
, testargs
, testres
),
587 PROC(LOCK
, lockargs
, res
),
588 PROC(CANCEL
, cancargs
, res
),
589 PROC(UNLOCK
, unlockargs
, res
),
590 PROC(GRANTED
, testargs
, res
),
591 PROC(TEST_MSG
, testargs
, norep
),
592 PROC(LOCK_MSG
, lockargs
, norep
),
593 PROC(CANCEL_MSG
, cancargs
, norep
),
594 PROC(UNLOCK_MSG
, unlockargs
, norep
),
595 PROC(GRANTED_MSG
, testargs
, norep
),
596 PROC(TEST_RES
, testres
, norep
),
597 PROC(LOCK_RES
, res
, norep
),
598 PROC(CANCEL_RES
, res
, norep
),
599 PROC(UNLOCK_RES
, res
, norep
),
600 PROC(GRANTED_RES
, res
, norep
),
603 static unsigned int nlm_version1_counts
[ARRAY_SIZE(nlm_procedures
)];
604 static const struct rpc_version nlm_version1
= {
606 .nrprocs
= ARRAY_SIZE(nlm_procedures
),
607 .procs
= nlm_procedures
,
608 .counts
= nlm_version1_counts
,
611 static unsigned int nlm_version3_counts
[ARRAY_SIZE(nlm_procedures
)];
612 static const struct rpc_version nlm_version3
= {
614 .nrprocs
= ARRAY_SIZE(nlm_procedures
),
615 .procs
= nlm_procedures
,
616 .counts
= nlm_version3_counts
,
619 static const struct rpc_version
*nlm_versions
[] = {
622 #ifdef CONFIG_LOCKD_V4
627 static struct rpc_stat nlm_rpc_stats
;
629 const struct rpc_program nlm_program
= {
631 .number
= NLM_PROGRAM
,
632 .nrvers
= ARRAY_SIZE(nlm_versions
),
633 .version
= nlm_versions
,
634 .stats
= &nlm_rpc_stats
,