1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/lockd/xdr4.c
5 * XDR support for lockd and the lock client.
7 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
8 * Copyright (C) 1999, Trond Myklebust <trond.myklebust@fys.uio.no>
11 #include <linux/types.h>
12 #include <linux/sched.h>
13 #include <linux/nfs.h>
15 #include <linux/sunrpc/xdr.h>
16 #include <linux/sunrpc/clnt.h>
17 #include <linux/sunrpc/svc.h>
18 #include <linux/sunrpc/stats.h>
19 #include <linux/lockd/lockd.h>
24 loff_t_to_s64(loff_t offset)
27 if (offset > NLM4_OFFSET_MAX)
28 res = NLM4_OFFSET_MAX;
29 else if (offset < -NLM4_OFFSET_MAX)
30 res = -NLM4_OFFSET_MAX;
36 void nlm4svc_set_file_lock_range(struct file_lock *fl, u64 off, u64 len)
38 s64 end = off + len - 1;
41 if (len == 0 || end < 0)
42 fl->fl_end = OFFSET_MAX;
48 * NLM file handles are defined by specification to be a variable-length
49 * XDR opaque no longer than 1024 bytes. However, this implementation
50 * limits their length to the size of an NFSv3 file handle.
53 svcxdr_decode_fhandle(struct xdr_stream *xdr, struct nfs_fh *fh)
58 if (xdr_stream_decode_u32(xdr, &len) < 0)
60 if (len > NFS_MAXFHSIZE)
63 p = xdr_inline_decode(xdr, len);
67 memcpy(fh->data, p, len);
68 memset(fh->data + len, 0, sizeof(fh->data) - len);
74 svcxdr_decode_lock(struct xdr_stream *xdr, struct nlm_lock *lock)
76 struct file_lock *fl = &lock->fl;
78 if (!svcxdr_decode_string(xdr, &lock->caller, &lock->len))
80 if (!svcxdr_decode_fhandle(xdr, &lock->fh))
82 if (!svcxdr_decode_owner(xdr, &lock->oh))
84 if (xdr_stream_decode_u32(xdr, &lock->svid) < 0)
86 if (xdr_stream_decode_u64(xdr, &lock->lock_start) < 0)
88 if (xdr_stream_decode_u64(xdr, &lock->lock_len) < 0)
92 fl->fl_flags = FL_POSIX;
93 fl->fl_type = F_RDLCK;
94 nlm4svc_set_file_lock_range(fl, lock->lock_start, lock->lock_len);
99 svcxdr_encode_holder(struct xdr_stream *xdr, const struct nlm_lock *lock)
101 const struct file_lock *fl = &lock->fl;
105 if (xdr_stream_encode_bool(xdr, fl->fl_type != F_RDLCK) < 0)
107 if (xdr_stream_encode_u32(xdr, lock->svid) < 0)
109 if (!svcxdr_encode_owner(xdr, &lock->oh))
111 start = loff_t_to_s64(fl->fl_start);
112 if (fl->fl_end == OFFSET_MAX)
115 len = loff_t_to_s64(fl->fl_end - fl->fl_start + 1);
116 if (xdr_stream_encode_u64(xdr, start) < 0)
118 if (xdr_stream_encode_u64(xdr, len) < 0)
125 svcxdr_encode_testrply(struct xdr_stream *xdr, const struct nlm_res *resp)
127 if (!svcxdr_encode_stats(xdr, resp->status))
129 switch (resp->status) {
131 if (!svcxdr_encode_holder(xdr, &resp->lock))
140 * Decode Call arguments
144 nlm4svc_decode_void(struct svc_rqst *rqstp, struct xdr_stream *xdr)
150 nlm4svc_decode_testargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
152 struct nlm_args *argp = rqstp->rq_argp;
155 if (!svcxdr_decode_cookie(xdr, &argp->cookie))
157 if (xdr_stream_decode_bool(xdr, &exclusive) < 0)
159 if (!svcxdr_decode_lock(xdr, &argp->lock))
162 argp->lock.fl.fl_type = F_WRLCK;
168 nlm4svc_decode_lockargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
170 struct nlm_args *argp = rqstp->rq_argp;
173 if (!svcxdr_decode_cookie(xdr, &argp->cookie))
175 if (xdr_stream_decode_bool(xdr, &argp->block) < 0)
177 if (xdr_stream_decode_bool(xdr, &exclusive) < 0)
179 if (!svcxdr_decode_lock(xdr, &argp->lock))
182 argp->lock.fl.fl_type = F_WRLCK;
183 if (xdr_stream_decode_bool(xdr, &argp->reclaim) < 0)
185 if (xdr_stream_decode_u32(xdr, &argp->state) < 0)
187 argp->monitor = 1; /* monitor client by default */
193 nlm4svc_decode_cancargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
195 struct nlm_args *argp = rqstp->rq_argp;
198 if (!svcxdr_decode_cookie(xdr, &argp->cookie))
200 if (xdr_stream_decode_bool(xdr, &argp->block) < 0)
202 if (xdr_stream_decode_bool(xdr, &exclusive) < 0)
204 if (!svcxdr_decode_lock(xdr, &argp->lock))
207 argp->lock.fl.fl_type = F_WRLCK;
213 nlm4svc_decode_unlockargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
215 struct nlm_args *argp = rqstp->rq_argp;
217 if (!svcxdr_decode_cookie(xdr, &argp->cookie))
219 if (!svcxdr_decode_lock(xdr, &argp->lock))
221 argp->lock.fl.fl_type = F_UNLCK;
227 nlm4svc_decode_res(struct svc_rqst *rqstp, struct xdr_stream *xdr)
229 struct nlm_res *resp = rqstp->rq_argp;
231 if (!svcxdr_decode_cookie(xdr, &resp->cookie))
233 if (!svcxdr_decode_stats(xdr, &resp->status))
240 nlm4svc_decode_reboot(struct svc_rqst *rqstp, struct xdr_stream *xdr)
242 struct nlm_reboot *argp = rqstp->rq_argp;
246 if (xdr_stream_decode_u32(xdr, &len) < 0)
248 if (len > SM_MAXSTRLEN)
250 p = xdr_inline_decode(xdr, len);
254 argp->mon = (char *)p;
255 if (xdr_stream_decode_u32(xdr, &argp->state) < 0)
257 p = xdr_inline_decode(xdr, SM_PRIV_SIZE);
260 memcpy(&argp->priv.data, p, sizeof(argp->priv.data));
266 nlm4svc_decode_shareargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
268 struct nlm_args *argp = rqstp->rq_argp;
269 struct nlm_lock *lock = &argp->lock;
271 memset(lock, 0, sizeof(*lock));
272 locks_init_lock(&lock->fl);
273 lock->svid = ~(u32)0;
275 if (!svcxdr_decode_cookie(xdr, &argp->cookie))
277 if (!svcxdr_decode_string(xdr, &lock->caller, &lock->len))
279 if (!svcxdr_decode_fhandle(xdr, &lock->fh))
281 if (!svcxdr_decode_owner(xdr, &lock->oh))
283 /* XXX: Range checks are missing in the original code */
284 if (xdr_stream_decode_u32(xdr, &argp->fsm_mode) < 0)
286 if (xdr_stream_decode_u32(xdr, &argp->fsm_access) < 0)
293 nlm4svc_decode_notify(struct svc_rqst *rqstp, struct xdr_stream *xdr)
295 struct nlm_args *argp = rqstp->rq_argp;
296 struct nlm_lock *lock = &argp->lock;
298 if (!svcxdr_decode_string(xdr, &lock->caller, &lock->len))
300 if (xdr_stream_decode_u32(xdr, &argp->state) < 0)
308 * Encode Reply results
312 nlm4svc_encode_void(struct svc_rqst *rqstp, struct xdr_stream *xdr)
318 nlm4svc_encode_testres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
320 struct nlm_res *resp = rqstp->rq_resp;
322 return svcxdr_encode_cookie(xdr, &resp->cookie) &&
323 svcxdr_encode_testrply(xdr, resp);
327 nlm4svc_encode_res(struct svc_rqst *rqstp, struct xdr_stream *xdr)
329 struct nlm_res *resp = rqstp->rq_resp;
331 return svcxdr_encode_cookie(xdr, &resp->cookie) &&
332 svcxdr_encode_stats(xdr, resp->status);
336 nlm4svc_encode_shareres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
338 struct nlm_res *resp = rqstp->rq_resp;
340 if (!svcxdr_encode_cookie(xdr, &resp->cookie))
342 if (!svcxdr_encode_stats(xdr, resp->status))
345 if (xdr_stream_encode_u32(xdr, 0) < 0)