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 #define NLMDBG_FACILITY NLMDBG_XDR
20 #if (NLMCLNT_OHSIZE > XDR_MAX_NETOBJ)
21 # error "NLM host name cannot be larger than XDR_MAX_NETOBJ!"
25 * Declare the space requirements for NLM arguments and replies as
26 * number of 32bit-words
28 #define NLM_cookie_sz (1+(NLM_MAXCOOKIELEN>>2))
29 #define NLM_caller_sz (1+(NLMCLNT_OHSIZE>>2))
30 #define NLM_owner_sz (1+(NLMCLNT_OHSIZE>>2))
31 #define NLM_fhandle_sz (1+(NFS2_FHSIZE>>2))
32 #define NLM_lock_sz (3+NLM_caller_sz+NLM_owner_sz+NLM_fhandle_sz)
33 #define NLM_holder_sz (4+NLM_owner_sz)
35 #define NLM_testargs_sz (NLM_cookie_sz+1+NLM_lock_sz)
36 #define NLM_lockargs_sz (NLM_cookie_sz+4+NLM_lock_sz)
37 #define NLM_cancargs_sz (NLM_cookie_sz+2+NLM_lock_sz)
38 #define NLM_unlockargs_sz (NLM_cookie_sz+NLM_lock_sz)
40 #define NLM_testres_sz (NLM_cookie_sz+1+NLM_holder_sz)
41 #define NLM_res_sz (NLM_cookie_sz+1)
42 #define NLM_norep_sz (0)
45 static s32
loff_t_to_s32(loff_t offset
)
49 if (offset
>= NLM_OFFSET_MAX
)
51 else if (offset
<= -NLM_OFFSET_MAX
)
52 res
= -NLM_OFFSET_MAX
;
58 static void nlm_compute_offsets(const struct nlm_lock
*lock
,
59 u32
*l_offset
, u32
*l_len
)
61 const struct file_lock
*fl
= &lock
->fl
;
63 BUG_ON(fl
->fl_start
> NLM_OFFSET_MAX
);
64 BUG_ON(fl
->fl_end
> NLM_OFFSET_MAX
&&
65 fl
->fl_end
!= OFFSET_MAX
);
67 *l_offset
= loff_t_to_s32(fl
->fl_start
);
68 if (fl
->fl_end
== OFFSET_MAX
)
71 *l_len
= loff_t_to_s32(fl
->fl_end
- fl
->fl_start
+ 1);
75 * Handle decode buffer overflows out-of-line.
77 static void print_overflow_msg(const char *func
, const struct xdr_stream
*xdr
)
79 dprintk("lockd: %s prematurely hit the end of our receive buffer. "
80 "Remaining buffer length is %tu words.\n",
81 func
, xdr
->end
- xdr
->p
);
86 * Encode/decode NLMv3 basic data types
88 * Basic NLMv3 data types are not defined in an IETF standards
89 * document. X/Open has a description of these data types that
90 * is useful. See Chapter 10 of "Protocols for Interworking:
93 * Not all basic data types have their own encoding and decoding
94 * functions. For run-time efficiency, some data types are encoded
98 static void encode_bool(struct xdr_stream
*xdr
, const int value
)
102 p
= xdr_reserve_space(xdr
, 4);
103 *p
= value
? xdr_one
: xdr_zero
;
106 static void encode_int32(struct xdr_stream
*xdr
, const s32 value
)
110 p
= xdr_reserve_space(xdr
, 4);
111 *p
= cpu_to_be32(value
);
115 * typedef opaque netobj<MAXNETOBJ_SZ>
117 static void encode_netobj(struct xdr_stream
*xdr
,
118 const u8
*data
, const unsigned int length
)
122 BUG_ON(length
> XDR_MAX_NETOBJ
);
123 p
= xdr_reserve_space(xdr
, 4 + length
);
124 xdr_encode_opaque(p
, data
, length
);
127 static int decode_netobj(struct xdr_stream
*xdr
,
128 struct xdr_netobj
*obj
)
133 p
= xdr_inline_decode(xdr
, 4);
134 if (unlikely(p
== NULL
))
136 length
= be32_to_cpup(p
++);
137 if (unlikely(length
> XDR_MAX_NETOBJ
))
143 dprintk("NFS: returned netobj was too long: %u\n", length
);
146 print_overflow_msg(__func__
, xdr
);
153 static void encode_cookie(struct xdr_stream
*xdr
,
154 const struct nlm_cookie
*cookie
)
156 BUG_ON(cookie
->len
> NLM_MAXCOOKIELEN
);
157 encode_netobj(xdr
, (u8
*)&cookie
->data
, cookie
->len
);
160 static int decode_cookie(struct xdr_stream
*xdr
,
161 struct nlm_cookie
*cookie
)
166 p
= xdr_inline_decode(xdr
, 4);
167 if (unlikely(p
== NULL
))
169 length
= be32_to_cpup(p
++);
170 /* apparently HPUX can return empty cookies */
173 if (length
> NLM_MAXCOOKIELEN
)
175 p
= xdr_inline_decode(xdr
, length
);
176 if (unlikely(p
== NULL
))
178 cookie
->len
= length
;
179 memcpy(cookie
->data
, p
, length
);
183 memset(cookie
->data
, 0, 4);
186 dprintk("NFS: returned cookie was too long: %u\n", length
);
189 print_overflow_msg(__func__
, xdr
);
196 static void encode_fh(struct xdr_stream
*xdr
, const struct nfs_fh
*fh
)
198 BUG_ON(fh
->size
!= NFS2_FHSIZE
);
199 encode_netobj(xdr
, (u8
*)&fh
->data
, NFS2_FHSIZE
);
206 * LCK_DENIED_NOLOCKS = 2,
208 * LCK_DENIED_GRACE_PERIOD = 4
216 * NB: we don't swap bytes for the NLM status values. The upper
217 * layers deal directly with the status value in network byte
221 static void encode_nlm_stat(struct xdr_stream
*xdr
,
226 BUG_ON(be32_to_cpu(stat
) > NLM_LCK_DENIED_GRACE_PERIOD
);
227 p
= xdr_reserve_space(xdr
, 4);
231 static int decode_nlm_stat(struct xdr_stream
*xdr
,
236 p
= xdr_inline_decode(xdr
, 4);
237 if (unlikely(p
== NULL
))
239 if (unlikely(*p
> nlm_lck_denied_grace_period
))
244 dprintk("%s: server returned invalid nlm_stats value: %u\n",
245 __func__
, be32_to_cpup(p
));
248 print_overflow_msg(__func__
, xdr
);
253 * struct nlm_holder {
261 static void encode_nlm_holder(struct xdr_stream
*xdr
,
262 const struct nlm_res
*result
)
264 const struct nlm_lock
*lock
= &result
->lock
;
268 encode_bool(xdr
, lock
->fl
.fl_type
== F_RDLCK
);
269 encode_int32(xdr
, lock
->svid
);
270 encode_netobj(xdr
, lock
->oh
.data
, lock
->oh
.len
);
272 p
= xdr_reserve_space(xdr
, 4 + 4);
273 nlm_compute_offsets(lock
, &l_offset
, &l_len
);
274 *p
++ = cpu_to_be32(l_offset
);
275 *p
= cpu_to_be32(l_len
);
278 static int decode_nlm_holder(struct xdr_stream
*xdr
, struct nlm_res
*result
)
280 struct nlm_lock
*lock
= &result
->lock
;
281 struct file_lock
*fl
= &lock
->fl
;
282 u32 exclusive
, l_offset
, l_len
;
287 memset(lock
, 0, sizeof(*lock
));
290 p
= xdr_inline_decode(xdr
, 4 + 4);
291 if (unlikely(p
== NULL
))
293 exclusive
= be32_to_cpup(p
++);
294 lock
->svid
= be32_to_cpup(p
);
295 fl
->fl_pid
= (pid_t
)lock
->svid
;
297 error
= decode_netobj(xdr
, &lock
->oh
);
301 p
= xdr_inline_decode(xdr
, 4 + 4);
302 if (unlikely(p
== NULL
))
305 fl
->fl_flags
= FL_POSIX
;
306 fl
->fl_type
= exclusive
!= 0 ? F_WRLCK
: F_RDLCK
;
307 l_offset
= be32_to_cpup(p
++);
308 l_len
= be32_to_cpup(p
);
309 end
= l_offset
+ l_len
- 1;
311 fl
->fl_start
= (loff_t
)l_offset
;
312 if (l_len
== 0 || end
< 0)
313 fl
->fl_end
= OFFSET_MAX
;
315 fl
->fl_end
= (loff_t
)end
;
320 print_overflow_msg(__func__
, xdr
);
325 * string caller_name<LM_MAXSTRLEN>;
327 static void encode_caller_name(struct xdr_stream
*xdr
, const char *name
)
329 /* NB: client-side does not set lock->len */
330 u32 length
= strlen(name
);
333 BUG_ON(length
> NLM_MAXSTRLEN
);
334 p
= xdr_reserve_space(xdr
, 4 + length
);
335 xdr_encode_opaque(p
, name
, length
);
340 * string caller_name<LM_MAXSTRLEN>;
348 static void encode_nlm_lock(struct xdr_stream
*xdr
,
349 const struct nlm_lock
*lock
)
354 encode_caller_name(xdr
, lock
->caller
);
355 encode_fh(xdr
, &lock
->fh
);
356 encode_netobj(xdr
, lock
->oh
.data
, lock
->oh
.len
);
358 p
= xdr_reserve_space(xdr
, 4 + 4 + 4);
359 *p
++ = cpu_to_be32(lock
->svid
);
361 nlm_compute_offsets(lock
, &l_offset
, &l_len
);
362 *p
++ = cpu_to_be32(l_offset
);
363 *p
= cpu_to_be32(l_len
);
368 * NLMv3 XDR encode functions
370 * NLMv3 argument types are defined in Chapter 10 of The Open Group's
371 * "Protocols for Interworking: XNFS, Version 3W".
375 * struct nlm_testargs {
378 * struct nlm_lock alock;
381 static void nlm_xdr_enc_testargs(struct rpc_rqst
*req
,
382 struct xdr_stream
*xdr
,
383 const struct nlm_args
*args
)
385 const struct nlm_lock
*lock
= &args
->lock
;
387 encode_cookie(xdr
, &args
->cookie
);
388 encode_bool(xdr
, lock
->fl
.fl_type
== F_WRLCK
);
389 encode_nlm_lock(xdr
, lock
);
393 * struct nlm_lockargs {
397 * struct nlm_lock alock;
402 static void nlm_xdr_enc_lockargs(struct rpc_rqst
*req
,
403 struct xdr_stream
*xdr
,
404 const struct nlm_args
*args
)
406 const struct nlm_lock
*lock
= &args
->lock
;
408 encode_cookie(xdr
, &args
->cookie
);
409 encode_bool(xdr
, args
->block
);
410 encode_bool(xdr
, lock
->fl
.fl_type
== F_WRLCK
);
411 encode_nlm_lock(xdr
, lock
);
412 encode_bool(xdr
, args
->reclaim
);
413 encode_int32(xdr
, args
->state
);
417 * struct nlm_cancargs {
421 * struct nlm_lock alock;
424 static void nlm_xdr_enc_cancargs(struct rpc_rqst
*req
,
425 struct xdr_stream
*xdr
,
426 const struct nlm_args
*args
)
428 const struct nlm_lock
*lock
= &args
->lock
;
430 encode_cookie(xdr
, &args
->cookie
);
431 encode_bool(xdr
, args
->block
);
432 encode_bool(xdr
, lock
->fl
.fl_type
== F_WRLCK
);
433 encode_nlm_lock(xdr
, lock
);
437 * struct nlm_unlockargs {
439 * struct nlm_lock alock;
442 static void nlm_xdr_enc_unlockargs(struct rpc_rqst
*req
,
443 struct xdr_stream
*xdr
,
444 const struct nlm_args
*args
)
446 const struct nlm_lock
*lock
= &args
->lock
;
448 encode_cookie(xdr
, &args
->cookie
);
449 encode_nlm_lock(xdr
, lock
);
458 static void nlm_xdr_enc_res(struct rpc_rqst
*req
,
459 struct xdr_stream
*xdr
,
460 const struct nlm_res
*result
)
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
,
488 const struct nlm_res
*result
)
490 encode_cookie(xdr
, &result
->cookie
);
491 encode_nlm_stat(xdr
, result
->status
);
492 encode_nlm_testrply(xdr
, result
);
497 * NLMv3 XDR decode functions
499 * NLMv3 result types are defined in Chapter 10 of The Open Group's
500 * "Protocols for Interworking: XNFS, Version 3W".
504 * union nlm_testrply switch (nlm_stats stat) {
506 * struct nlm_holder holder;
511 * struct nlm_testres {
513 * nlm_testrply test_stat;
516 static int decode_nlm_testrply(struct xdr_stream
*xdr
,
517 struct nlm_res
*result
)
521 error
= decode_nlm_stat(xdr
, &result
->status
);
524 if (result
->status
== nlm_lck_denied
)
525 error
= decode_nlm_holder(xdr
, result
);
530 static int nlm_xdr_dec_testres(struct rpc_rqst
*req
,
531 struct xdr_stream
*xdr
,
532 struct nlm_res
*result
)
536 error
= decode_cookie(xdr
, &result
->cookie
);
539 error
= decode_nlm_testrply(xdr
, result
);
550 static int nlm_xdr_dec_res(struct rpc_rqst
*req
,
551 struct xdr_stream
*xdr
,
552 struct nlm_res
*result
)
556 error
= decode_cookie(xdr
, &result
->cookie
);
559 error
= decode_nlm_stat(xdr
, &result
->status
);
566 * For NLM, a void procedure really returns nothing
568 #define nlm_xdr_dec_norep NULL
570 #define PROC(proc, argtype, restype) \
571 [NLMPROC_##proc] = { \
572 .p_proc = NLMPROC_##proc, \
573 .p_encode = (kxdreproc_t)nlm_xdr_enc_##argtype, \
574 .p_decode = (kxdrdproc_t)nlm_xdr_dec_##restype, \
575 .p_arglen = NLM_##argtype##_sz, \
576 .p_replen = NLM_##restype##_sz, \
577 .p_statidx = NLMPROC_##proc, \
581 static struct rpc_procinfo nlm_procedures
[] = {
582 PROC(TEST
, testargs
, testres
),
583 PROC(LOCK
, lockargs
, res
),
584 PROC(CANCEL
, cancargs
, res
),
585 PROC(UNLOCK
, unlockargs
, res
),
586 PROC(GRANTED
, testargs
, res
),
587 PROC(TEST_MSG
, testargs
, norep
),
588 PROC(LOCK_MSG
, lockargs
, norep
),
589 PROC(CANCEL_MSG
, cancargs
, norep
),
590 PROC(UNLOCK_MSG
, unlockargs
, norep
),
591 PROC(GRANTED_MSG
, testargs
, norep
),
592 PROC(TEST_RES
, testres
, norep
),
593 PROC(LOCK_RES
, res
, norep
),
594 PROC(CANCEL_RES
, res
, norep
),
595 PROC(UNLOCK_RES
, res
, norep
),
596 PROC(GRANTED_RES
, res
, norep
),
599 static struct rpc_version nlm_version1
= {
601 .nrprocs
= ARRAY_SIZE(nlm_procedures
),
602 .procs
= nlm_procedures
,
605 static struct rpc_version nlm_version3
= {
607 .nrprocs
= ARRAY_SIZE(nlm_procedures
),
608 .procs
= nlm_procedures
,
611 static struct rpc_version
*nlm_versions
[] = {
614 #ifdef CONFIG_LOCKD_V4
619 static struct rpc_stat nlm_rpc_stats
;
621 struct rpc_program nlm_program
= {
623 .number
= NLM_PROGRAM
,
624 .nrvers
= ARRAY_SIZE(nlm_versions
),
625 .version
= nlm_versions
,
626 .stats
= &nlm_rpc_stats
,