1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/lockd/clnt4xdr.c
5 * XDR functions to encode/decode NLM version 4 RPC arguments and results.
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/nfs3.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!"
26 #if (NLMCLNT_OHSIZE > NLM_MAXSTRLEN)
27 # error "NLM host name cannot be larger than NLM's maximum string length!"
31 * Declare the space requirements for NLM arguments and replies as
32 * number of 32bit-words
34 #define NLM4_void_sz (0)
35 #define NLM4_cookie_sz (1+(NLM_MAXCOOKIELEN>>2))
36 #define NLM4_caller_sz (1+(NLMCLNT_OHSIZE>>2))
37 #define NLM4_owner_sz (1+(NLMCLNT_OHSIZE>>2))
38 #define NLM4_fhandle_sz (1+(NFS3_FHSIZE>>2))
39 #define NLM4_lock_sz (5+NLM4_caller_sz+NLM4_owner_sz+NLM4_fhandle_sz)
40 #define NLM4_holder_sz (6+NLM4_owner_sz)
42 #define NLM4_testargs_sz (NLM4_cookie_sz+1+NLM4_lock_sz)
43 #define NLM4_lockargs_sz (NLM4_cookie_sz+4+NLM4_lock_sz)
44 #define NLM4_cancargs_sz (NLM4_cookie_sz+2+NLM4_lock_sz)
45 #define NLM4_unlockargs_sz (NLM4_cookie_sz+NLM4_lock_sz)
47 #define NLM4_testres_sz (NLM4_cookie_sz+1+NLM4_holder_sz)
48 #define NLM4_res_sz (NLM4_cookie_sz+1)
49 #define NLM4_norep_sz (0)
52 static s64 loff_t_to_s64(loff_t offset)
56 if (offset >= NLM4_OFFSET_MAX)
57 res = NLM4_OFFSET_MAX;
58 else if (offset <= -NLM4_OFFSET_MAX)
59 res = -NLM4_OFFSET_MAX;
65 static void nlm4_compute_offsets(const struct nlm_lock *lock,
66 u64 *l_offset, u64 *l_len)
68 const struct file_lock *fl = &lock->fl;
70 *l_offset = loff_t_to_s64(fl->fl_start);
71 if (fl->fl_end == OFFSET_MAX)
74 *l_len = loff_t_to_s64(fl->fl_end - fl->fl_start + 1);
78 * Encode/decode NLMv4 basic data types
80 * Basic NLMv4 data types are defined in Appendix II, section 6.1.4
81 * of RFC 1813: "NFS Version 3 Protocol Specification" and in Chapter
82 * 10 of X/Open's "Protocols for Interworking: XNFS, Version 3W".
84 * Not all basic data types have their own encoding and decoding
85 * functions. For run-time efficiency, some data types are encoded
89 static void encode_bool(struct xdr_stream *xdr, const int value)
93 p = xdr_reserve_space(xdr, 4);
94 *p = value ? xdr_one : xdr_zero;
97 static void encode_int32(struct xdr_stream *xdr, const s32 value)
101 p = xdr_reserve_space(xdr, 4);
102 *p = cpu_to_be32(value);
106 * typedef opaque netobj<MAXNETOBJ_SZ>
108 static void encode_netobj(struct xdr_stream *xdr,
109 const u8 *data, const unsigned int length)
113 p = xdr_reserve_space(xdr, 4 + length);
114 xdr_encode_opaque(p, data, length);
117 static int decode_netobj(struct xdr_stream *xdr,
118 struct xdr_netobj *obj)
122 ret = xdr_stream_decode_opaque_inline(xdr, (void *)&obj->data,
124 if (unlikely(ret < 0))
133 static void encode_cookie(struct xdr_stream *xdr,
134 const struct nlm_cookie *cookie)
136 encode_netobj(xdr, (u8 *)&cookie->data, cookie->len);
139 static int decode_cookie(struct xdr_stream *xdr,
140 struct nlm_cookie *cookie)
145 p = xdr_inline_decode(xdr, 4);
146 if (unlikely(p == NULL))
148 length = be32_to_cpup(p++);
149 /* apparently HPUX can return empty cookies */
152 if (length > NLM_MAXCOOKIELEN)
154 p = xdr_inline_decode(xdr, length);
155 if (unlikely(p == NULL))
157 cookie->len = length;
158 memcpy(cookie->data, p, length);
162 memset(cookie->data, 0, 4);
165 dprintk("NFS: returned cookie was too long: %u\n", length);
174 static void encode_fh(struct xdr_stream *xdr, const struct nfs_fh *fh)
176 encode_netobj(xdr, (u8 *)&fh->data, fh->size);
183 * NLM4_DENIED_NOLOCKS = 2,
185 * NLM4_DENIED_GRACE_PERIOD = 4,
197 * NB: we don't swap bytes for the NLM status values. The upper
198 * layers deal directly with the status value in network byte
201 static void encode_nlm4_stat(struct xdr_stream *xdr,
206 BUG_ON(be32_to_cpu(stat) > NLM_FAILED);
207 p = xdr_reserve_space(xdr, 4);
211 static int decode_nlm4_stat(struct xdr_stream *xdr, __be32 *stat)
215 p = xdr_inline_decode(xdr, 4);
216 if (unlikely(p == NULL))
218 if (unlikely(ntohl(*p) > ntohl(nlm4_failed)))
223 dprintk("%s: server returned invalid nlm4_stats value: %u\n",
224 __func__, be32_to_cpup(p));
231 * struct nlm4_holder {
239 static void encode_nlm4_holder(struct xdr_stream *xdr,
240 const struct nlm_res *result)
242 const struct nlm_lock *lock = &result->lock;
246 encode_bool(xdr, lock->fl.fl_type == F_RDLCK);
247 encode_int32(xdr, lock->svid);
248 encode_netobj(xdr, lock->oh.data, lock->oh.len);
250 p = xdr_reserve_space(xdr, 4 + 4);
251 nlm4_compute_offsets(lock, &l_offset, &l_len);
252 p = xdr_encode_hyper(p, l_offset);
253 xdr_encode_hyper(p, l_len);
256 static int decode_nlm4_holder(struct xdr_stream *xdr, struct nlm_res *result)
258 struct nlm_lock *lock = &result->lock;
259 struct file_lock *fl = &lock->fl;
265 memset(lock, 0, sizeof(*lock));
268 p = xdr_inline_decode(xdr, 4 + 4);
269 if (unlikely(p == NULL))
271 exclusive = be32_to_cpup(p++);
272 lock->svid = be32_to_cpup(p);
273 fl->fl_pid = (pid_t)lock->svid;
275 error = decode_netobj(xdr, &lock->oh);
279 p = xdr_inline_decode(xdr, 8 + 8);
280 if (unlikely(p == NULL))
283 fl->fl_flags = FL_POSIX;
284 fl->fl_type = exclusive != 0 ? F_WRLCK : F_RDLCK;
285 p = xdr_decode_hyper(p, &l_offset);
286 xdr_decode_hyper(p, &l_len);
287 nlm4svc_set_file_lock_range(fl, l_offset, l_len);
296 * string caller_name<LM_MAXSTRLEN>;
298 static void encode_caller_name(struct xdr_stream *xdr, const char *name)
300 /* NB: client-side does not set lock->len */
301 u32 length = strlen(name);
304 p = xdr_reserve_space(xdr, 4 + length);
305 xdr_encode_opaque(p, name, length);
310 * string caller_name<LM_MAXSTRLEN>;
318 static void encode_nlm4_lock(struct xdr_stream *xdr,
319 const struct nlm_lock *lock)
324 encode_caller_name(xdr, lock->caller);
325 encode_fh(xdr, &lock->fh);
326 encode_netobj(xdr, lock->oh.data, lock->oh.len);
328 p = xdr_reserve_space(xdr, 4 + 8 + 8);
329 *p++ = cpu_to_be32(lock->svid);
331 nlm4_compute_offsets(lock, &l_offset, &l_len);
332 p = xdr_encode_hyper(p, l_offset);
333 xdr_encode_hyper(p, l_len);
338 * NLMv4 XDR encode functions
340 * NLMv4 argument types are defined in Appendix II of RFC 1813:
341 * "NFS Version 3 Protocol Specification" and Chapter 10 of X/Open's
342 * "Protocols for Interworking: XNFS, Version 3W".
346 * struct nlm4_testargs {
349 * struct nlm4_lock alock;
352 static void nlm4_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_nlm4_lock(xdr, lock);
365 * struct nlm4_lockargs {
369 * struct nlm4_lock alock;
374 static void nlm4_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_nlm4_lock(xdr, lock);
385 encode_bool(xdr, args->reclaim);
386 encode_int32(xdr, args->state);
390 * struct nlm4_cancargs {
394 * struct nlm4_lock alock;
397 static void nlm4_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_nlm4_lock(xdr, lock);
411 * struct nlm4_unlockargs {
413 * struct nlm4_lock alock;
416 static void nlm4_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_nlm4_lock(xdr, lock);
433 static void nlm4_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_nlm4_stat(xdr, result->status);
444 * union nlm4_testrply switch (nlm4_stats stat) {
446 * struct nlm4_holder holder;
451 * struct nlm4_testres {
453 * nlm4_testrply test_stat;
456 static void nlm4_xdr_enc_testres(struct rpc_rqst *req,
457 struct xdr_stream *xdr,
460 const struct nlm_res *result = data;
462 encode_cookie(xdr, &result->cookie);
463 encode_nlm4_stat(xdr, result->status);
464 if (result->status == nlm_lck_denied)
465 encode_nlm4_holder(xdr, result);
470 * NLMv4 XDR decode functions
472 * NLMv4 argument types are defined in Appendix II of RFC 1813:
473 * "NFS Version 3 Protocol Specification" and Chapter 10 of X/Open's
474 * "Protocols for Interworking: XNFS, Version 3W".
478 * union nlm4_testrply switch (nlm4_stats stat) {
480 * struct nlm4_holder holder;
485 * struct nlm4_testres {
487 * nlm4_testrply test_stat;
490 static int decode_nlm4_testrply(struct xdr_stream *xdr,
491 struct nlm_res *result)
495 error = decode_nlm4_stat(xdr, &result->status);
498 if (result->status == nlm_lck_denied)
499 error = decode_nlm4_holder(xdr, result);
504 static int nlm4_xdr_dec_testres(struct rpc_rqst *req,
505 struct xdr_stream *xdr,
508 struct nlm_res *result = data;
511 error = decode_cookie(xdr, &result->cookie);
514 error = decode_nlm4_testrply(xdr, result);
525 static int nlm4_xdr_dec_res(struct rpc_rqst *req,
526 struct xdr_stream *xdr,
529 struct nlm_res *result = data;
532 error = decode_cookie(xdr, &result->cookie);
535 error = decode_nlm4_stat(xdr, &result->status);
542 * For NLM, a void procedure really returns nothing
544 #define nlm4_xdr_dec_norep NULL
546 #define PROC(proc, argtype, restype) \
547 [NLMPROC_##proc] = { \
548 .p_proc = NLMPROC_##proc, \
549 .p_encode = nlm4_xdr_enc_##argtype, \
550 .p_decode = nlm4_xdr_dec_##restype, \
551 .p_arglen = NLM4_##argtype##_sz, \
552 .p_replen = NLM4_##restype##_sz, \
553 .p_statidx = NLMPROC_##proc, \
557 static const struct rpc_procinfo nlm4_procedures[] = {
558 PROC(TEST, testargs, testres),
559 PROC(LOCK, lockargs, res),
560 PROC(CANCEL, cancargs, res),
561 PROC(UNLOCK, unlockargs, res),
562 PROC(GRANTED, testargs, res),
563 PROC(TEST_MSG, testargs, norep),
564 PROC(LOCK_MSG, lockargs, norep),
565 PROC(CANCEL_MSG, cancargs, norep),
566 PROC(UNLOCK_MSG, unlockargs, norep),
567 PROC(GRANTED_MSG, testargs, norep),
568 PROC(TEST_RES, testres, norep),
569 PROC(LOCK_RES, res, norep),
570 PROC(CANCEL_RES, res, norep),
571 PROC(UNLOCK_RES, res, norep),
572 PROC(GRANTED_RES, res, norep),
575 static unsigned int nlm_version4_counts[ARRAY_SIZE(nlm4_procedures)];
576 const struct rpc_version nlm_version4 = {
578 .nrprocs = ARRAY_SIZE(nlm4_procedures),
579 .procs = nlm4_procedures,
580 .counts = nlm_version4_counts,