1 // SPDX-License-Identifier: GPL-2.0
5 * XDR support for lockd and the lock client.
10 #include <linux/types.h>
11 #include <linux/sched.h>
12 #include <linux/nfs.h>
14 #include <linux/sunrpc/xdr.h>
15 #include <linux/sunrpc/clnt.h>
16 #include <linux/sunrpc/svc.h>
17 #include <linux/sunrpc/stats.h>
18 #include <linux/lockd/lockd.h>
20 #include <uapi/linux/nfs2.h>
22 #define NLMDBG_FACILITY NLMDBG_XDR
26 s32_to_loff_t(__s32 offset)
28 return (loff_t)offset;
32 loff_t_to_s32(loff_t offset)
35 if (offset >= NLM_OFFSET_MAX)
37 else if (offset <= -NLM_OFFSET_MAX)
38 res = -NLM_OFFSET_MAX;
45 * XDR functions for basic NLM types
47 static __be32 *nlm_decode_cookie(__be32 *p, struct nlm_cookie *c)
56 memset(c->data, 0, 4); /* hockeypux brain damage */
58 else if(len<=NLM_MAXCOOKIELEN)
61 memcpy(c->data, p, len);
66 dprintk("lockd: bad cookie size %d (only cookies under "
67 "%d bytes are supported.)\n",
68 len, NLM_MAXCOOKIELEN);
74 static inline __be32 *
75 nlm_encode_cookie(__be32 *p, struct nlm_cookie *c)
78 memcpy(p, c->data, c->len);
79 p+=XDR_QUADLEN(c->len);
84 nlm_decode_fh(__be32 *p, struct nfs_fh *f)
88 if ((len = ntohl(*p++)) != NFS2_FHSIZE) {
89 dprintk("lockd: bad fhandle size %d (should be %d)\n",
93 f->size = NFS2_FHSIZE;
94 memset(f->data, 0, sizeof(f->data));
95 memcpy(f->data, p, NFS2_FHSIZE);
96 return p + XDR_QUADLEN(NFS2_FHSIZE);
100 * Encode and decode owner handle
102 static inline __be32 *
103 nlm_decode_oh(__be32 *p, struct xdr_netobj *oh)
105 return xdr_decode_netobj(p, oh);
108 static inline __be32 *
109 nlm_encode_oh(__be32 *p, struct xdr_netobj *oh)
111 return xdr_encode_netobj(p, oh);
115 nlm_decode_lock(__be32 *p, struct nlm_lock *lock)
117 struct file_lock *fl = &lock->fl;
120 if (!(p = xdr_decode_string_inplace(p, &lock->caller,
123 || !(p = nlm_decode_fh(p, &lock->fh))
124 || !(p = nlm_decode_oh(p, &lock->oh)))
126 lock->svid = ntohl(*p++);
129 fl->fl_flags = FL_POSIX;
130 fl->fl_type = F_RDLCK; /* as good as anything else */
133 end = start + len - 1;
135 fl->fl_start = s32_to_loff_t(start);
137 if (len == 0 || end < 0)
138 fl->fl_end = OFFSET_MAX;
140 fl->fl_end = s32_to_loff_t(end);
145 * Encode result of a TEST/TEST_MSG call
148 nlm_encode_testres(__be32 *p, struct nlm_res *resp)
152 if (!(p = nlm_encode_cookie(p, &resp->cookie)))
156 if (resp->status == nlm_lck_denied) {
157 struct file_lock *fl = &resp->lock.fl;
159 *p++ = (fl->fl_type == F_RDLCK)? xdr_zero : xdr_one;
160 *p++ = htonl(resp->lock.svid);
162 /* Encode owner handle. */
163 if (!(p = xdr_encode_netobj(p, &resp->lock.oh)))
166 start = loff_t_to_s32(fl->fl_start);
167 if (fl->fl_end == OFFSET_MAX)
170 len = loff_t_to_s32(fl->fl_end - fl->fl_start + 1);
181 * First, the server side XDR functions
184 nlmsvc_decode_testargs(struct svc_rqst *rqstp, __be32 *p)
186 struct nlm_args *argp = rqstp->rq_argp;
189 if (!(p = nlm_decode_cookie(p, &argp->cookie)))
192 exclusive = ntohl(*p++);
193 if (!(p = nlm_decode_lock(p, &argp->lock)))
196 argp->lock.fl.fl_type = F_WRLCK;
198 return xdr_argsize_check(rqstp, p);
202 nlmsvc_encode_testres(struct svc_rqst *rqstp, __be32 *p)
204 struct nlm_res *resp = rqstp->rq_resp;
206 if (!(p = nlm_encode_testres(p, resp)))
208 return xdr_ressize_check(rqstp, p);
212 nlmsvc_decode_lockargs(struct svc_rqst *rqstp, __be32 *p)
214 struct nlm_args *argp = rqstp->rq_argp;
217 if (!(p = nlm_decode_cookie(p, &argp->cookie)))
219 argp->block = ntohl(*p++);
220 exclusive = ntohl(*p++);
221 if (!(p = nlm_decode_lock(p, &argp->lock)))
224 argp->lock.fl.fl_type = F_WRLCK;
225 argp->reclaim = ntohl(*p++);
226 argp->state = ntohl(*p++);
227 argp->monitor = 1; /* monitor client by default */
229 return xdr_argsize_check(rqstp, p);
233 nlmsvc_decode_cancargs(struct svc_rqst *rqstp, __be32 *p)
235 struct nlm_args *argp = rqstp->rq_argp;
238 if (!(p = nlm_decode_cookie(p, &argp->cookie)))
240 argp->block = ntohl(*p++);
241 exclusive = ntohl(*p++);
242 if (!(p = nlm_decode_lock(p, &argp->lock)))
245 argp->lock.fl.fl_type = F_WRLCK;
246 return xdr_argsize_check(rqstp, p);
250 nlmsvc_decode_unlockargs(struct svc_rqst *rqstp, __be32 *p)
252 struct nlm_args *argp = rqstp->rq_argp;
254 if (!(p = nlm_decode_cookie(p, &argp->cookie))
255 || !(p = nlm_decode_lock(p, &argp->lock)))
257 argp->lock.fl.fl_type = F_UNLCK;
258 return xdr_argsize_check(rqstp, p);
262 nlmsvc_decode_shareargs(struct svc_rqst *rqstp, __be32 *p)
264 struct nlm_args *argp = rqstp->rq_argp;
265 struct nlm_lock *lock = &argp->lock;
267 memset(lock, 0, sizeof(*lock));
268 locks_init_lock(&lock->fl);
269 lock->svid = ~(u32) 0;
271 if (!(p = nlm_decode_cookie(p, &argp->cookie))
272 || !(p = xdr_decode_string_inplace(p, &lock->caller,
273 &lock->len, NLM_MAXSTRLEN))
274 || !(p = nlm_decode_fh(p, &lock->fh))
275 || !(p = nlm_decode_oh(p, &lock->oh)))
277 argp->fsm_mode = ntohl(*p++);
278 argp->fsm_access = ntohl(*p++);
279 return xdr_argsize_check(rqstp, p);
283 nlmsvc_encode_shareres(struct svc_rqst *rqstp, __be32 *p)
285 struct nlm_res *resp = rqstp->rq_resp;
287 if (!(p = nlm_encode_cookie(p, &resp->cookie)))
290 *p++ = xdr_zero; /* sequence argument */
291 return xdr_ressize_check(rqstp, p);
295 nlmsvc_encode_res(struct svc_rqst *rqstp, __be32 *p)
297 struct nlm_res *resp = rqstp->rq_resp;
299 if (!(p = nlm_encode_cookie(p, &resp->cookie)))
302 return xdr_ressize_check(rqstp, p);
306 nlmsvc_decode_notify(struct svc_rqst *rqstp, __be32 *p)
308 struct nlm_args *argp = rqstp->rq_argp;
309 struct nlm_lock *lock = &argp->lock;
311 if (!(p = xdr_decode_string_inplace(p, &lock->caller,
312 &lock->len, NLM_MAXSTRLEN)))
314 argp->state = ntohl(*p++);
315 return xdr_argsize_check(rqstp, p);
319 nlmsvc_decode_reboot(struct svc_rqst *rqstp, __be32 *p)
321 struct nlm_reboot *argp = rqstp->rq_argp;
323 if (!(p = xdr_decode_string_inplace(p, &argp->mon, &argp->len, SM_MAXSTRLEN)))
325 argp->state = ntohl(*p++);
326 memcpy(&argp->priv.data, p, sizeof(argp->priv.data));
327 p += XDR_QUADLEN(SM_PRIV_SIZE);
328 return xdr_argsize_check(rqstp, p);
332 nlmsvc_decode_res(struct svc_rqst *rqstp, __be32 *p)
334 struct nlm_res *resp = rqstp->rq_argp;
336 if (!(p = nlm_decode_cookie(p, &resp->cookie)))
339 return xdr_argsize_check(rqstp, p);
343 nlmsvc_decode_void(struct svc_rqst *rqstp, __be32 *p)
345 return xdr_argsize_check(rqstp, p);
349 nlmsvc_encode_void(struct svc_rqst *rqstp, __be32 *p)
351 return xdr_ressize_check(rqstp, p);