1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/lockd/clntxdr.c
5 * XDR functions to encode/decode NLM version 3 RPC arguments and results.
6 * NLM version 3 is backwards compatible with NLM versions 1 and 2.
8 * NLM client-side only.
10 * Copyright (C) 2010, Oracle. All rights reserved.
13 #include <linux/types.h>
14 #include <linux/sunrpc/xdr.h>
15 #include <linux/sunrpc/clnt.h>
16 #include <linux/sunrpc/stats.h>
17 #include <linux/lockd/lockd.h>
19 #include <uapi/linux/nfs2.h>
21 #define NLMDBG_FACILITY NLMDBG_XDR
23 #if (NLMCLNT_OHSIZE > XDR_MAX_NETOBJ)
24 # error "NLM host name cannot be larger than XDR_MAX_NETOBJ!"
28 * Declare the space requirements for NLM arguments and replies as
29 * number of 32bit-words
31 #define NLM_cookie_sz (1+(NLM_MAXCOOKIELEN>>2))
32 #define NLM_caller_sz (1+(NLMCLNT_OHSIZE>>2))
33 #define NLM_owner_sz (1+(NLMCLNT_OHSIZE>>2))
34 #define NLM_fhandle_sz (1+(NFS2_FHSIZE>>2))
35 #define NLM_lock_sz (3+NLM_caller_sz+NLM_owner_sz+NLM_fhandle_sz)
36 #define NLM_holder_sz (4+NLM_owner_sz)
38 #define NLM_testargs_sz (NLM_cookie_sz+1+NLM_lock_sz)
39 #define NLM_lockargs_sz (NLM_cookie_sz+4+NLM_lock_sz)
40 #define NLM_cancargs_sz (NLM_cookie_sz+2+NLM_lock_sz)
41 #define NLM_unlockargs_sz (NLM_cookie_sz+NLM_lock_sz)
43 #define NLM_testres_sz (NLM_cookie_sz+1+NLM_holder_sz)
44 #define NLM_res_sz (NLM_cookie_sz+1)
45 #define NLM_norep_sz (0)
48 static s32
loff_t_to_s32(loff_t offset
)
52 if (offset
>= NLM_OFFSET_MAX
)
54 else if (offset
<= -NLM_OFFSET_MAX
)
55 res
= -NLM_OFFSET_MAX
;
61 static void nlm_compute_offsets(const struct nlm_lock
*lock
,
62 u32
*l_offset
, u32
*l_len
)
64 const struct file_lock
*fl
= &lock
->fl
;
66 *l_offset
= loff_t_to_s32(fl
->fl_start
);
67 if (fl
->fl_end
== OFFSET_MAX
)
70 *l_len
= loff_t_to_s32(fl
->fl_end
- fl
->fl_start
+ 1);
74 * Encode/decode NLMv3 basic data types
76 * Basic NLMv3 data types are not defined in an IETF standards
77 * document. X/Open has a description of these data types that
78 * is useful. See Chapter 10 of "Protocols for Interworking:
81 * Not all basic data types have their own encoding and decoding
82 * functions. For run-time efficiency, some data types are encoded
86 static void encode_bool(struct xdr_stream
*xdr
, const int value
)
90 p
= xdr_reserve_space(xdr
, 4);
91 *p
= value
? xdr_one
: xdr_zero
;
94 static void encode_int32(struct xdr_stream
*xdr
, const s32 value
)
98 p
= xdr_reserve_space(xdr
, 4);
99 *p
= cpu_to_be32(value
);
103 * typedef opaque netobj<MAXNETOBJ_SZ>
105 static void encode_netobj(struct xdr_stream
*xdr
,
106 const u8
*data
, const unsigned int length
)
110 p
= xdr_reserve_space(xdr
, 4 + length
);
111 xdr_encode_opaque(p
, data
, length
);
114 static int decode_netobj(struct xdr_stream
*xdr
,
115 struct xdr_netobj
*obj
)
119 ret
= xdr_stream_decode_opaque_inline(xdr
, (void *)&obj
->data
,
121 if (unlikely(ret
< 0))
130 static void encode_cookie(struct xdr_stream
*xdr
,
131 const struct nlm_cookie
*cookie
)
133 encode_netobj(xdr
, (u8
*)&cookie
->data
, cookie
->len
);
136 static int decode_cookie(struct xdr_stream
*xdr
,
137 struct nlm_cookie
*cookie
)
142 p
= xdr_inline_decode(xdr
, 4);
143 if (unlikely(p
== NULL
))
145 length
= be32_to_cpup(p
++);
146 /* apparently HPUX can return empty cookies */
149 if (length
> NLM_MAXCOOKIELEN
)
151 p
= xdr_inline_decode(xdr
, length
);
152 if (unlikely(p
== NULL
))
154 cookie
->len
= length
;
155 memcpy(cookie
->data
, p
, length
);
159 memset(cookie
->data
, 0, 4);
162 dprintk("NFS: returned cookie was too long: %u\n", length
);
171 static void encode_fh(struct xdr_stream
*xdr
, const struct nfs_fh
*fh
)
173 encode_netobj(xdr
, (u8
*)&fh
->data
, NFS2_FHSIZE
);
180 * LCK_DENIED_NOLOCKS = 2,
182 * LCK_DENIED_GRACE_PERIOD = 4
190 * NB: we don't swap bytes for the NLM status values. The upper
191 * layers deal directly with the status value in network byte
195 static void encode_nlm_stat(struct xdr_stream
*xdr
,
200 WARN_ON_ONCE(be32_to_cpu(stat
) > NLM_LCK_DENIED_GRACE_PERIOD
);
201 p
= xdr_reserve_space(xdr
, 4);
205 static int decode_nlm_stat(struct xdr_stream
*xdr
,
210 p
= xdr_inline_decode(xdr
, 4);
211 if (unlikely(p
== NULL
))
213 if (unlikely(ntohl(*p
) > ntohl(nlm_lck_denied_grace_period
)))
218 dprintk("%s: server returned invalid nlm_stats value: %u\n",
219 __func__
, be32_to_cpup(p
));
226 * struct nlm_holder {
234 static void encode_nlm_holder(struct xdr_stream
*xdr
,
235 const struct nlm_res
*result
)
237 const struct nlm_lock
*lock
= &result
->lock
;
241 encode_bool(xdr
, lock
->fl
.fl_type
== F_RDLCK
);
242 encode_int32(xdr
, lock
->svid
);
243 encode_netobj(xdr
, lock
->oh
.data
, lock
->oh
.len
);
245 p
= xdr_reserve_space(xdr
, 4 + 4);
246 nlm_compute_offsets(lock
, &l_offset
, &l_len
);
247 *p
++ = cpu_to_be32(l_offset
);
248 *p
= cpu_to_be32(l_len
);
251 static int decode_nlm_holder(struct xdr_stream
*xdr
, struct nlm_res
*result
)
253 struct nlm_lock
*lock
= &result
->lock
;
254 struct file_lock
*fl
= &lock
->fl
;
255 u32 exclusive
, l_offset
, l_len
;
260 memset(lock
, 0, sizeof(*lock
));
263 p
= xdr_inline_decode(xdr
, 4 + 4);
264 if (unlikely(p
== NULL
))
266 exclusive
= be32_to_cpup(p
++);
267 lock
->svid
= be32_to_cpup(p
);
268 fl
->fl_pid
= (pid_t
)lock
->svid
;
270 error
= decode_netobj(xdr
, &lock
->oh
);
274 p
= xdr_inline_decode(xdr
, 4 + 4);
275 if (unlikely(p
== NULL
))
278 fl
->fl_flags
= FL_POSIX
;
279 fl
->fl_type
= exclusive
!= 0 ? F_WRLCK
: F_RDLCK
;
280 l_offset
= be32_to_cpup(p
++);
281 l_len
= be32_to_cpup(p
);
282 end
= l_offset
+ l_len
- 1;
284 fl
->fl_start
= (loff_t
)l_offset
;
285 if (l_len
== 0 || end
< 0)
286 fl
->fl_end
= OFFSET_MAX
;
288 fl
->fl_end
= (loff_t
)end
;
297 * string caller_name<LM_MAXSTRLEN>;
299 static void encode_caller_name(struct xdr_stream
*xdr
, const char *name
)
301 /* NB: client-side does not set lock->len */
302 u32 length
= strlen(name
);
305 p
= xdr_reserve_space(xdr
, 4 + length
);
306 xdr_encode_opaque(p
, name
, length
);
311 * string caller_name<LM_MAXSTRLEN>;
319 static void encode_nlm_lock(struct xdr_stream
*xdr
,
320 const struct nlm_lock
*lock
)
325 encode_caller_name(xdr
, lock
->caller
);
326 encode_fh(xdr
, &lock
->fh
);
327 encode_netobj(xdr
, lock
->oh
.data
, lock
->oh
.len
);
329 p
= xdr_reserve_space(xdr
, 4 + 4 + 4);
330 *p
++ = cpu_to_be32(lock
->svid
);
332 nlm_compute_offsets(lock
, &l_offset
, &l_len
);
333 *p
++ = cpu_to_be32(l_offset
);
334 *p
= cpu_to_be32(l_len
);
339 * NLMv3 XDR encode functions
341 * NLMv3 argument types are defined in Chapter 10 of The Open Group's
342 * "Protocols for Interworking: XNFS, Version 3W".
346 * struct nlm_testargs {
349 * struct nlm_lock alock;
352 static void nlm_xdr_enc_testargs(struct rpc_rqst
*req
,
353 struct xdr_stream
*xdr
,
356 const struct nlm_args
*args
= data
;
357 const struct nlm_lock
*lock
= &args
->lock
;
359 encode_cookie(xdr
, &args
->cookie
);
360 encode_bool(xdr
, lock
->fl
.fl_type
== F_WRLCK
);
361 encode_nlm_lock(xdr
, lock
);
365 * struct nlm_lockargs {
369 * struct nlm_lock alock;
374 static void nlm_xdr_enc_lockargs(struct rpc_rqst
*req
,
375 struct xdr_stream
*xdr
,
378 const struct nlm_args
*args
= data
;
379 const struct nlm_lock
*lock
= &args
->lock
;
381 encode_cookie(xdr
, &args
->cookie
);
382 encode_bool(xdr
, args
->block
);
383 encode_bool(xdr
, lock
->fl
.fl_type
== F_WRLCK
);
384 encode_nlm_lock(xdr
, lock
);
385 encode_bool(xdr
, args
->reclaim
);
386 encode_int32(xdr
, args
->state
);
390 * struct nlm_cancargs {
394 * struct nlm_lock alock;
397 static void nlm_xdr_enc_cancargs(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
);
411 * struct nlm_unlockargs {
413 * struct nlm_lock alock;
416 static void nlm_xdr_enc_unlockargs(struct rpc_rqst
*req
,
417 struct xdr_stream
*xdr
,
420 const struct nlm_args
*args
= data
;
421 const struct nlm_lock
*lock
= &args
->lock
;
423 encode_cookie(xdr
, &args
->cookie
);
424 encode_nlm_lock(xdr
, lock
);
433 static void nlm_xdr_enc_res(struct rpc_rqst
*req
,
434 struct xdr_stream
*xdr
,
437 const struct nlm_res
*result
= data
;
439 encode_cookie(xdr
, &result
->cookie
);
440 encode_nlm_stat(xdr
, result
->status
);
444 * union nlm_testrply switch (nlm_stats stat) {
446 * struct nlm_holder holder;
451 * struct nlm_testres {
453 * nlm_testrply test_stat;
456 static void encode_nlm_testrply(struct xdr_stream
*xdr
,
457 const struct nlm_res
*result
)
459 if (result
->status
== nlm_lck_denied
)
460 encode_nlm_holder(xdr
, result
);
463 static void nlm_xdr_enc_testres(struct rpc_rqst
*req
,
464 struct xdr_stream
*xdr
,
467 const struct nlm_res
*result
= data
;
469 encode_cookie(xdr
, &result
->cookie
);
470 encode_nlm_stat(xdr
, result
->status
);
471 encode_nlm_testrply(xdr
, result
);
476 * NLMv3 XDR decode functions
478 * NLMv3 result types are defined in Chapter 10 of The Open Group's
479 * "Protocols for Interworking: XNFS, Version 3W".
483 * union nlm_testrply switch (nlm_stats stat) {
485 * struct nlm_holder holder;
490 * struct nlm_testres {
492 * nlm_testrply test_stat;
495 static int decode_nlm_testrply(struct xdr_stream
*xdr
,
496 struct nlm_res
*result
)
500 error
= decode_nlm_stat(xdr
, &result
->status
);
503 if (result
->status
== nlm_lck_denied
)
504 error
= decode_nlm_holder(xdr
, result
);
509 static int nlm_xdr_dec_testres(struct rpc_rqst
*req
,
510 struct xdr_stream
*xdr
,
513 struct nlm_res
*result
= data
;
516 error
= decode_cookie(xdr
, &result
->cookie
);
519 error
= decode_nlm_testrply(xdr
, result
);
530 static int nlm_xdr_dec_res(struct rpc_rqst
*req
,
531 struct xdr_stream
*xdr
,
534 struct nlm_res
*result
= data
;
537 error
= decode_cookie(xdr
, &result
->cookie
);
540 error
= decode_nlm_stat(xdr
, &result
->status
);
547 * For NLM, a void procedure really returns nothing
549 #define nlm_xdr_dec_norep NULL
551 #define PROC(proc, argtype, restype) \
552 [NLMPROC_##proc] = { \
553 .p_proc = NLMPROC_##proc, \
554 .p_encode = nlm_xdr_enc_##argtype, \
555 .p_decode = nlm_xdr_dec_##restype, \
556 .p_arglen = NLM_##argtype##_sz, \
557 .p_replen = NLM_##restype##_sz, \
558 .p_statidx = NLMPROC_##proc, \
562 static const struct rpc_procinfo nlm_procedures
[] = {
563 PROC(TEST
, testargs
, testres
),
564 PROC(LOCK
, lockargs
, res
),
565 PROC(CANCEL
, cancargs
, res
),
566 PROC(UNLOCK
, unlockargs
, res
),
567 PROC(GRANTED
, testargs
, res
),
568 PROC(TEST_MSG
, testargs
, norep
),
569 PROC(LOCK_MSG
, lockargs
, norep
),
570 PROC(CANCEL_MSG
, cancargs
, norep
),
571 PROC(UNLOCK_MSG
, unlockargs
, norep
),
572 PROC(GRANTED_MSG
, testargs
, norep
),
573 PROC(TEST_RES
, testres
, norep
),
574 PROC(LOCK_RES
, res
, norep
),
575 PROC(CANCEL_RES
, res
, norep
),
576 PROC(UNLOCK_RES
, res
, norep
),
577 PROC(GRANTED_RES
, res
, norep
),
580 static unsigned int nlm_version1_counts
[ARRAY_SIZE(nlm_procedures
)];
581 static const struct rpc_version nlm_version1
= {
583 .nrprocs
= ARRAY_SIZE(nlm_procedures
),
584 .procs
= nlm_procedures
,
585 .counts
= nlm_version1_counts
,
588 static unsigned int nlm_version3_counts
[ARRAY_SIZE(nlm_procedures
)];
589 static const struct rpc_version nlm_version3
= {
591 .nrprocs
= ARRAY_SIZE(nlm_procedures
),
592 .procs
= nlm_procedures
,
593 .counts
= nlm_version3_counts
,
596 static const struct rpc_version
*nlm_versions
[] = {
599 #ifdef CONFIG_LOCKD_V4
604 static struct rpc_stat nlm_rpc_stats
;
606 const struct rpc_program nlm_program
= {
608 .number
= NLM_PROGRAM
,
609 .nrvers
= ARRAY_SIZE(nlm_versions
),
610 .version
= nlm_versions
,
611 .stats
= &nlm_rpc_stats
,