xref: /openbmc/linux/fs/lockd/svcproc.c (revision a6beb73272b4c0108e41bc7c7b5a447ae6c92863)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * linux/fs/lockd/svcproc.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Lockd server procedures. We don't implement the NLM_*_RES
51da177e4SLinus Torvalds  * procedures because we don't use the async procedures.
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
81da177e4SLinus Torvalds  */
91da177e4SLinus Torvalds 
101da177e4SLinus Torvalds #include <linux/types.h>
111da177e4SLinus Torvalds #include <linux/time.h>
121da177e4SLinus Torvalds #include <linux/lockd/lockd.h>
131da177e4SLinus Torvalds #include <linux/lockd/share.h>
145ccb0066SStanislav Kinsbursky #include <linux/sunrpc/svc_xprt.h>
151da177e4SLinus Torvalds 
161da177e4SLinus Torvalds #define NLMDBG_FACILITY		NLMDBG_CLIENT
171da177e4SLinus Torvalds 
181da177e4SLinus Torvalds #ifdef CONFIG_LOCKD_V4
1952921e02SAl Viro static __be32
2052921e02SAl Viro cast_to_nlm(__be32 status, u32 vers)
211da177e4SLinus Torvalds {
221da177e4SLinus Torvalds 	/* Note: status is assumed to be in network byte order !!! */
231da177e4SLinus Torvalds 	if (vers != 4){
241da177e4SLinus Torvalds 		switch (status) {
251da177e4SLinus Torvalds 		case nlm_granted:
261da177e4SLinus Torvalds 		case nlm_lck_denied:
271da177e4SLinus Torvalds 		case nlm_lck_denied_nolocks:
281da177e4SLinus Torvalds 		case nlm_lck_blocked:
291da177e4SLinus Torvalds 		case nlm_lck_denied_grace_period:
305ea0d750SMarc Eshel 		case nlm_drop_reply:
311da177e4SLinus Torvalds 			break;
321da177e4SLinus Torvalds 		case nlm4_deadlock:
331da177e4SLinus Torvalds 			status = nlm_lck_denied;
341da177e4SLinus Torvalds 			break;
351da177e4SLinus Torvalds 		default:
361da177e4SLinus Torvalds 			status = nlm_lck_denied_nolocks;
371da177e4SLinus Torvalds 		}
381da177e4SLinus Torvalds 	}
391da177e4SLinus Torvalds 
401da177e4SLinus Torvalds 	return (status);
411da177e4SLinus Torvalds }
421da177e4SLinus Torvalds #define	cast_status(status) (cast_to_nlm(status, rqstp->rq_vers))
431da177e4SLinus Torvalds #else
441da177e4SLinus Torvalds #define cast_status(status) (status)
451da177e4SLinus Torvalds #endif
461da177e4SLinus Torvalds 
471da177e4SLinus Torvalds /*
481da177e4SLinus Torvalds  * Obtain client and file from arguments
491da177e4SLinus Torvalds  */
5052921e02SAl Viro static __be32
511da177e4SLinus Torvalds nlmsvc_retrieve_args(struct svc_rqst *rqstp, struct nlm_args *argp,
521da177e4SLinus Torvalds 			struct nlm_host **hostp, struct nlm_file **filp)
531da177e4SLinus Torvalds {
541da177e4SLinus Torvalds 	struct nlm_host		*host = NULL;
551da177e4SLinus Torvalds 	struct nlm_file		*file = NULL;
561da177e4SLinus Torvalds 	struct nlm_lock		*lock = &argp->lock;
5752921e02SAl Viro 	__be32			error = 0;
581da177e4SLinus Torvalds 
591da177e4SLinus Torvalds 	/* nfsd callbacks must have been installed for this procedure */
601da177e4SLinus Torvalds 	if (!nlmsvc_ops)
611da177e4SLinus Torvalds 		return nlm_lck_denied_nolocks;
621da177e4SLinus Torvalds 
631da177e4SLinus Torvalds 	/* Obtain host handle */
64db4e4c9aSOlaf Kirch 	if (!(host = nlmsvc_lookup_host(rqstp, lock->caller, lock->len))
65977faf39SOlaf Kirch 	 || (argp->monitor && nsm_monitor(host) < 0))
661da177e4SLinus Torvalds 		goto no_locks;
671da177e4SLinus Torvalds 	*hostp = host;
681da177e4SLinus Torvalds 
691da177e4SLinus Torvalds 	/* Obtain file pointer. Not used by FREE_ALL call. */
701da177e4SLinus Torvalds 	if (filp != NULL) {
71cd0b16c1STrond Myklebust 		error = cast_status(nlm_lookup_file(rqstp, &file, &lock->fh));
72cd0b16c1STrond Myklebust 		if (error != 0)
731da177e4SLinus Torvalds 			goto no_locks;
741da177e4SLinus Torvalds 		*filp = file;
751da177e4SLinus Torvalds 
761da177e4SLinus Torvalds 		/* Set up the missing parts of the file_lock structure */
771da177e4SLinus Torvalds 		lock->fl.fl_file  = file->f_file;
781da177e4SLinus Torvalds 		lock->fl.fl_owner = (fl_owner_t) host;
791da177e4SLinus Torvalds 		lock->fl.fl_lmops = &nlmsvc_lock_operations;
801da177e4SLinus Torvalds 	}
811da177e4SLinus Torvalds 
821da177e4SLinus Torvalds 	return 0;
831da177e4SLinus Torvalds 
841da177e4SLinus Torvalds no_locks:
8567216b94SChuck Lever 	nlmsvc_release_host(host);
86d343fce1SNeilBrown 	if (error)
87d343fce1SNeilBrown 		return error;
881da177e4SLinus Torvalds 	return nlm_lck_denied_nolocks;
891da177e4SLinus Torvalds }
901da177e4SLinus Torvalds 
911da177e4SLinus Torvalds /*
921da177e4SLinus Torvalds  * NULL: Test for presence of service
931da177e4SLinus Torvalds  */
947111c66eSAl Viro static __be32
95*a6beb732SChristoph Hellwig nlmsvc_proc_null(struct svc_rqst *rqstp)
961da177e4SLinus Torvalds {
971da177e4SLinus Torvalds 	dprintk("lockd: NULL          called\n");
981da177e4SLinus Torvalds 	return rpc_success;
991da177e4SLinus Torvalds }
1001da177e4SLinus Torvalds 
1011da177e4SLinus Torvalds /*
1021da177e4SLinus Torvalds  * TEST: Check for conflicting lock
1031da177e4SLinus Torvalds  */
1047111c66eSAl Viro static __be32
105*a6beb732SChristoph Hellwig __nlmsvc_proc_test(struct svc_rqst *rqstp, struct nlm_res *resp)
1061da177e4SLinus Torvalds {
107*a6beb732SChristoph Hellwig 	struct nlm_args *argp = rqstp->rq_argp;
1081da177e4SLinus Torvalds 	struct nlm_host	*host;
1091da177e4SLinus Torvalds 	struct nlm_file	*file;
110317602f3SHarvey Harrison 	__be32 rc = rpc_success;
1111da177e4SLinus Torvalds 
1121da177e4SLinus Torvalds 	dprintk("lockd: TEST          called\n");
1131da177e4SLinus Torvalds 	resp->cookie = argp->cookie;
1141da177e4SLinus Torvalds 
1151da177e4SLinus Torvalds 	/* Obtain client and file */
1161da177e4SLinus Torvalds 	if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file)))
117d343fce1SNeilBrown 		return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
1181da177e4SLinus Torvalds 
1191da177e4SLinus Torvalds 	/* Now check for conflicting locks */
1208f920d5eSJeff Layton 	resp->status = cast_status(nlmsvc_testlock(rqstp, file, host, &argp->lock, &resp->lock, &resp->cookie));
1215ea0d750SMarc Eshel 	if (resp->status == nlm_drop_reply)
122b7e6b869SOleg Drokin 		rc = rpc_drop_reply;
123b7e6b869SOleg Drokin 	else
1241da177e4SLinus Torvalds 		dprintk("lockd: TEST          status %d vers %d\n",
1251da177e4SLinus Torvalds 			ntohl(resp->status), rqstp->rq_vers);
126b7e6b869SOleg Drokin 
12767216b94SChuck Lever 	nlmsvc_release_host(host);
1281da177e4SLinus Torvalds 	nlm_release_file(file);
129b7e6b869SOleg Drokin 	return rc;
1301da177e4SLinus Torvalds }
1311da177e4SLinus Torvalds 
1327111c66eSAl Viro static __be32
133*a6beb732SChristoph Hellwig nlmsvc_proc_test(struct svc_rqst *rqstp)
1341da177e4SLinus Torvalds {
135*a6beb732SChristoph Hellwig 	return __nlmsvc_proc_test(rqstp, rqstp->rq_resp);
136*a6beb732SChristoph Hellwig }
137*a6beb732SChristoph Hellwig 
138*a6beb732SChristoph Hellwig static __be32
139*a6beb732SChristoph Hellwig __nlmsvc_proc_lock(struct svc_rqst *rqstp, struct nlm_res *resp)
140*a6beb732SChristoph Hellwig {
141*a6beb732SChristoph Hellwig 	struct nlm_args *argp = rqstp->rq_argp;
1421da177e4SLinus Torvalds 	struct nlm_host	*host;
1431da177e4SLinus Torvalds 	struct nlm_file	*file;
144317602f3SHarvey Harrison 	__be32 rc = rpc_success;
1451da177e4SLinus Torvalds 
1461da177e4SLinus Torvalds 	dprintk("lockd: LOCK          called\n");
1471da177e4SLinus Torvalds 
1481da177e4SLinus Torvalds 	resp->cookie = argp->cookie;
1491da177e4SLinus Torvalds 
1501da177e4SLinus Torvalds 	/* Obtain client and file */
1511da177e4SLinus Torvalds 	if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file)))
152d343fce1SNeilBrown 		return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
1531da177e4SLinus Torvalds 
1541da177e4SLinus Torvalds #if 0
1551da177e4SLinus Torvalds 	/* If supplied state doesn't match current state, we assume it's
1561da177e4SLinus Torvalds 	 * an old request that time-warped somehow. Any error return would
1571da177e4SLinus Torvalds 	 * do in this case because it's irrelevant anyway.
1581da177e4SLinus Torvalds 	 *
1591da177e4SLinus Torvalds 	 * NB: We don't retrieve the remote host's state yet.
1601da177e4SLinus Torvalds 	 */
1611da177e4SLinus Torvalds 	if (host->h_nsmstate && host->h_nsmstate != argp->state) {
1621da177e4SLinus Torvalds 		resp->status = nlm_lck_denied_nolocks;
1631da177e4SLinus Torvalds 	} else
1641da177e4SLinus Torvalds #endif
1651da177e4SLinus Torvalds 
1661da177e4SLinus Torvalds 	/* Now try to lock the file */
1676cde4de8SJeff Layton 	resp->status = cast_status(nlmsvc_lock(rqstp, file, host, &argp->lock,
168b2b50289SJ. Bruce Fields 					       argp->block, &argp->cookie,
169b2b50289SJ. Bruce Fields 					       argp->reclaim));
1701a8322b2SMarc Eshel 	if (resp->status == nlm_drop_reply)
171b7e6b869SOleg Drokin 		rc = rpc_drop_reply;
172b7e6b869SOleg Drokin 	else
1731da177e4SLinus Torvalds 		dprintk("lockd: LOCK         status %d\n", ntohl(resp->status));
174b7e6b869SOleg Drokin 
17567216b94SChuck Lever 	nlmsvc_release_host(host);
1761da177e4SLinus Torvalds 	nlm_release_file(file);
177b7e6b869SOleg Drokin 	return rc;
1781da177e4SLinus Torvalds }
1791da177e4SLinus Torvalds 
1807111c66eSAl Viro static __be32
181*a6beb732SChristoph Hellwig nlmsvc_proc_lock(struct svc_rqst *rqstp)
1821da177e4SLinus Torvalds {
183*a6beb732SChristoph Hellwig 	return __nlmsvc_proc_lock(rqstp, rqstp->rq_resp);
184*a6beb732SChristoph Hellwig }
185*a6beb732SChristoph Hellwig 
186*a6beb732SChristoph Hellwig static __be32
187*a6beb732SChristoph Hellwig __nlmsvc_proc_cancel(struct svc_rqst *rqstp, struct nlm_res *resp)
188*a6beb732SChristoph Hellwig {
189*a6beb732SChristoph Hellwig 	struct nlm_args *argp = rqstp->rq_argp;
1901da177e4SLinus Torvalds 	struct nlm_host	*host;
1911da177e4SLinus Torvalds 	struct nlm_file	*file;
1925ccb0066SStanislav Kinsbursky 	struct net *net = SVC_NET(rqstp);
1931da177e4SLinus Torvalds 
1941da177e4SLinus Torvalds 	dprintk("lockd: CANCEL        called\n");
1951da177e4SLinus Torvalds 
1961da177e4SLinus Torvalds 	resp->cookie = argp->cookie;
1971da177e4SLinus Torvalds 
1981da177e4SLinus Torvalds 	/* Don't accept requests during grace period */
1995ccb0066SStanislav Kinsbursky 	if (locks_in_grace(net)) {
2001da177e4SLinus Torvalds 		resp->status = nlm_lck_denied_grace_period;
2011da177e4SLinus Torvalds 		return rpc_success;
2021da177e4SLinus Torvalds 	}
2031da177e4SLinus Torvalds 
2041da177e4SLinus Torvalds 	/* Obtain client and file */
2051da177e4SLinus Torvalds 	if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file)))
206d343fce1SNeilBrown 		return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
2071da177e4SLinus Torvalds 
2081da177e4SLinus Torvalds 	/* Try to cancel request. */
2095ccb0066SStanislav Kinsbursky 	resp->status = cast_status(nlmsvc_cancel_blocked(net, file, &argp->lock));
2101da177e4SLinus Torvalds 
2111da177e4SLinus Torvalds 	dprintk("lockd: CANCEL        status %d\n", ntohl(resp->status));
21267216b94SChuck Lever 	nlmsvc_release_host(host);
2131da177e4SLinus Torvalds 	nlm_release_file(file);
2141da177e4SLinus Torvalds 	return rpc_success;
2151da177e4SLinus Torvalds }
2161da177e4SLinus Torvalds 
217*a6beb732SChristoph Hellwig static __be32
218*a6beb732SChristoph Hellwig nlmsvc_proc_cancel(struct svc_rqst *rqstp)
219*a6beb732SChristoph Hellwig {
220*a6beb732SChristoph Hellwig 	return __nlmsvc_proc_cancel(rqstp, rqstp->rq_resp);
221*a6beb732SChristoph Hellwig }
222*a6beb732SChristoph Hellwig 
2231da177e4SLinus Torvalds /*
2241da177e4SLinus Torvalds  * UNLOCK: release a lock
2251da177e4SLinus Torvalds  */
2267111c66eSAl Viro static __be32
227*a6beb732SChristoph Hellwig __nlmsvc_proc_unlock(struct svc_rqst *rqstp, struct nlm_res *resp)
2281da177e4SLinus Torvalds {
229*a6beb732SChristoph Hellwig 	struct nlm_args *argp = rqstp->rq_argp;
2301da177e4SLinus Torvalds 	struct nlm_host	*host;
2311da177e4SLinus Torvalds 	struct nlm_file	*file;
2325ccb0066SStanislav Kinsbursky 	struct net *net = SVC_NET(rqstp);
2331da177e4SLinus Torvalds 
2341da177e4SLinus Torvalds 	dprintk("lockd: UNLOCK        called\n");
2351da177e4SLinus Torvalds 
2361da177e4SLinus Torvalds 	resp->cookie = argp->cookie;
2371da177e4SLinus Torvalds 
2381da177e4SLinus Torvalds 	/* Don't accept new lock requests during grace period */
2395ccb0066SStanislav Kinsbursky 	if (locks_in_grace(net)) {
2401da177e4SLinus Torvalds 		resp->status = nlm_lck_denied_grace_period;
2411da177e4SLinus Torvalds 		return rpc_success;
2421da177e4SLinus Torvalds 	}
2431da177e4SLinus Torvalds 
2441da177e4SLinus Torvalds 	/* Obtain client and file */
2451da177e4SLinus Torvalds 	if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file)))
246d343fce1SNeilBrown 		return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
2471da177e4SLinus Torvalds 
2481da177e4SLinus Torvalds 	/* Now try to remove the lock */
2495ccb0066SStanislav Kinsbursky 	resp->status = cast_status(nlmsvc_unlock(net, file, &argp->lock));
2501da177e4SLinus Torvalds 
2511da177e4SLinus Torvalds 	dprintk("lockd: UNLOCK        status %d\n", ntohl(resp->status));
25267216b94SChuck Lever 	nlmsvc_release_host(host);
2531da177e4SLinus Torvalds 	nlm_release_file(file);
2541da177e4SLinus Torvalds 	return rpc_success;
2551da177e4SLinus Torvalds }
2561da177e4SLinus Torvalds 
257*a6beb732SChristoph Hellwig static __be32
258*a6beb732SChristoph Hellwig nlmsvc_proc_unlock(struct svc_rqst *rqstp)
259*a6beb732SChristoph Hellwig {
260*a6beb732SChristoph Hellwig 	return __nlmsvc_proc_unlock(rqstp, rqstp->rq_resp);
261*a6beb732SChristoph Hellwig }
262*a6beb732SChristoph Hellwig 
2631da177e4SLinus Torvalds /*
2641da177e4SLinus Torvalds  * GRANTED: A server calls us to tell that a process' lock request
2651da177e4SLinus Torvalds  * was granted
2661da177e4SLinus Torvalds  */
2677111c66eSAl Viro static __be32
268*a6beb732SChristoph Hellwig __nlmsvc_proc_granted(struct svc_rqst *rqstp, struct nlm_res *resp)
2691da177e4SLinus Torvalds {
270*a6beb732SChristoph Hellwig 	struct nlm_args *argp = rqstp->rq_argp;
271*a6beb732SChristoph Hellwig 
2721da177e4SLinus Torvalds 	resp->cookie = argp->cookie;
2731da177e4SLinus Torvalds 
2741da177e4SLinus Torvalds 	dprintk("lockd: GRANTED       called\n");
275dcff09f1SChuck Lever 	resp->status = nlmclnt_grant(svc_addr(rqstp), &argp->lock);
2761da177e4SLinus Torvalds 	dprintk("lockd: GRANTED       status %d\n", ntohl(resp->status));
2771da177e4SLinus Torvalds 	return rpc_success;
2781da177e4SLinus Torvalds }
2791da177e4SLinus Torvalds 
280*a6beb732SChristoph Hellwig static __be32
281*a6beb732SChristoph Hellwig nlmsvc_proc_granted(struct svc_rqst *rqstp)
282*a6beb732SChristoph Hellwig {
283*a6beb732SChristoph Hellwig 	return __nlmsvc_proc_granted(rqstp, rqstp->rq_resp);
284*a6beb732SChristoph Hellwig }
285*a6beb732SChristoph Hellwig 
2861da177e4SLinus Torvalds /*
287d4716624STrond Myklebust  * This is the generic lockd callback for async RPC calls
288d4716624STrond Myklebust  */
289d4716624STrond Myklebust static void nlmsvc_callback_exit(struct rpc_task *task, void *data)
290d4716624STrond Myklebust {
291c041b5ffSChuck Lever 	dprintk("lockd: %5u callback returned %d\n", task->tk_pid,
292d4716624STrond Myklebust 			-task->tk_status);
293d4716624STrond Myklebust }
294d4716624STrond Myklebust 
2957db836d4SChuck Lever void nlmsvc_release_call(struct nlm_rqst *call)
2967db836d4SChuck Lever {
2977db836d4SChuck Lever 	if (!atomic_dec_and_test(&call->a_count))
2987db836d4SChuck Lever 		return;
29967216b94SChuck Lever 	nlmsvc_release_host(call->a_host);
3007db836d4SChuck Lever 	kfree(call);
3017db836d4SChuck Lever }
3027db836d4SChuck Lever 
303d4716624STrond Myklebust static void nlmsvc_callback_release(void *data)
304d4716624STrond Myklebust {
3057db836d4SChuck Lever 	nlmsvc_release_call(data);
306d4716624STrond Myklebust }
307d4716624STrond Myklebust 
308d4716624STrond Myklebust static const struct rpc_call_ops nlmsvc_callback_ops = {
309d4716624STrond Myklebust 	.rpc_call_done = nlmsvc_callback_exit,
310d4716624STrond Myklebust 	.rpc_release = nlmsvc_callback_release,
311d4716624STrond Myklebust };
312d4716624STrond Myklebust 
313d4716624STrond Myklebust /*
3141da177e4SLinus Torvalds  * `Async' versions of the above service routines. They aren't really,
3151da177e4SLinus Torvalds  * because we send the callback before the reply proper. I hope this
3161da177e4SLinus Torvalds  * doesn't break any clients.
3171da177e4SLinus Torvalds  */
318*a6beb732SChristoph Hellwig static __be32 nlmsvc_callback(struct svc_rqst *rqstp, u32 proc,
319*a6beb732SChristoph Hellwig 		__be32 (*func)(struct svc_rqst *, struct nlm_res *))
320d4716624STrond Myklebust {
321*a6beb732SChristoph Hellwig 	struct nlm_args *argp = rqstp->rq_argp;
322d4716624STrond Myklebust 	struct nlm_host	*host;
323d4716624STrond Myklebust 	struct nlm_rqst	*call;
3247111c66eSAl Viro 	__be32 stat;
325d4716624STrond Myklebust 
326db4e4c9aSOlaf Kirch 	host = nlmsvc_lookup_host(rqstp,
327db4e4c9aSOlaf Kirch 				  argp->lock.caller,
328db4e4c9aSOlaf Kirch 				  argp->lock.len);
329d4716624STrond Myklebust 	if (host == NULL)
330d4716624STrond Myklebust 		return rpc_system_err;
331d4716624STrond Myklebust 
332d4716624STrond Myklebust 	call = nlm_alloc_call(host);
333446945abSAl Viro 	nlmsvc_release_host(host);
334d4716624STrond Myklebust 	if (call == NULL)
335d4716624STrond Myklebust 		return rpc_system_err;
336d4716624STrond Myklebust 
337*a6beb732SChristoph Hellwig 	stat = func(rqstp, &call->a_res);
338d4716624STrond Myklebust 	if (stat != 0) {
3397db836d4SChuck Lever 		nlmsvc_release_call(call);
340d4716624STrond Myklebust 		return stat;
341d4716624STrond Myklebust 	}
342d4716624STrond Myklebust 
343d4716624STrond Myklebust 	call->a_flags = RPC_TASK_ASYNC;
344d4716624STrond Myklebust 	if (nlm_async_reply(call, proc, &nlmsvc_callback_ops) < 0)
345d4716624STrond Myklebust 		return rpc_system_err;
346d4716624STrond Myklebust 	return rpc_success;
347d4716624STrond Myklebust }
348d4716624STrond Myklebust 
349*a6beb732SChristoph Hellwig static __be32 nlmsvc_proc_test_msg(struct svc_rqst *rqstp)
3501da177e4SLinus Torvalds {
3511da177e4SLinus Torvalds 	dprintk("lockd: TEST_MSG      called\n");
352*a6beb732SChristoph Hellwig 	return nlmsvc_callback(rqstp, NLMPROC_TEST_RES, __nlmsvc_proc_test);
3531da177e4SLinus Torvalds }
3541da177e4SLinus Torvalds 
355*a6beb732SChristoph Hellwig static __be32 nlmsvc_proc_lock_msg(struct svc_rqst *rqstp)
3561da177e4SLinus Torvalds {
3571da177e4SLinus Torvalds 	dprintk("lockd: LOCK_MSG      called\n");
358*a6beb732SChristoph Hellwig 	return nlmsvc_callback(rqstp, NLMPROC_LOCK_RES, __nlmsvc_proc_lock);
3591da177e4SLinus Torvalds }
3601da177e4SLinus Torvalds 
361*a6beb732SChristoph Hellwig static __be32 nlmsvc_proc_cancel_msg(struct svc_rqst *rqstp)
3621da177e4SLinus Torvalds {
3631da177e4SLinus Torvalds 	dprintk("lockd: CANCEL_MSG    called\n");
364*a6beb732SChristoph Hellwig 	return nlmsvc_callback(rqstp, NLMPROC_CANCEL_RES, __nlmsvc_proc_cancel);
3651da177e4SLinus Torvalds }
3661da177e4SLinus Torvalds 
3677111c66eSAl Viro static __be32
368*a6beb732SChristoph Hellwig nlmsvc_proc_unlock_msg(struct svc_rqst *rqstp)
3691da177e4SLinus Torvalds {
3701da177e4SLinus Torvalds 	dprintk("lockd: UNLOCK_MSG    called\n");
371*a6beb732SChristoph Hellwig 	return nlmsvc_callback(rqstp, NLMPROC_UNLOCK_RES, __nlmsvc_proc_unlock);
3721da177e4SLinus Torvalds }
3731da177e4SLinus Torvalds 
3747111c66eSAl Viro static __be32
375*a6beb732SChristoph Hellwig nlmsvc_proc_granted_msg(struct svc_rqst *rqstp)
3761da177e4SLinus Torvalds {
3771da177e4SLinus Torvalds 	dprintk("lockd: GRANTED_MSG   called\n");
378*a6beb732SChristoph Hellwig 	return nlmsvc_callback(rqstp, NLMPROC_GRANTED_RES, __nlmsvc_proc_granted);
3791da177e4SLinus Torvalds }
3801da177e4SLinus Torvalds 
3811da177e4SLinus Torvalds /*
3821da177e4SLinus Torvalds  * SHARE: create a DOS share or alter existing share.
3831da177e4SLinus Torvalds  */
3847111c66eSAl Viro static __be32
385*a6beb732SChristoph Hellwig nlmsvc_proc_share(struct svc_rqst *rqstp)
3861da177e4SLinus Torvalds {
387*a6beb732SChristoph Hellwig 	struct nlm_args *argp = rqstp->rq_argp;
388*a6beb732SChristoph Hellwig 	struct nlm_res *resp = rqstp->rq_resp;
3891da177e4SLinus Torvalds 	struct nlm_host	*host;
3901da177e4SLinus Torvalds 	struct nlm_file	*file;
3911da177e4SLinus Torvalds 
3921da177e4SLinus Torvalds 	dprintk("lockd: SHARE         called\n");
3931da177e4SLinus Torvalds 
3941da177e4SLinus Torvalds 	resp->cookie = argp->cookie;
3951da177e4SLinus Torvalds 
3961da177e4SLinus Torvalds 	/* Don't accept new lock requests during grace period */
3975ccb0066SStanislav Kinsbursky 	if (locks_in_grace(SVC_NET(rqstp)) && !argp->reclaim) {
3981da177e4SLinus Torvalds 		resp->status = nlm_lck_denied_grace_period;
3991da177e4SLinus Torvalds 		return rpc_success;
4001da177e4SLinus Torvalds 	}
4011da177e4SLinus Torvalds 
4021da177e4SLinus Torvalds 	/* Obtain client and file */
4031da177e4SLinus Torvalds 	if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file)))
404d343fce1SNeilBrown 		return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
4051da177e4SLinus Torvalds 
4061da177e4SLinus Torvalds 	/* Now try to create the share */
4071da177e4SLinus Torvalds 	resp->status = cast_status(nlmsvc_share_file(host, file, argp));
4081da177e4SLinus Torvalds 
4091da177e4SLinus Torvalds 	dprintk("lockd: SHARE         status %d\n", ntohl(resp->status));
41067216b94SChuck Lever 	nlmsvc_release_host(host);
4111da177e4SLinus Torvalds 	nlm_release_file(file);
4121da177e4SLinus Torvalds 	return rpc_success;
4131da177e4SLinus Torvalds }
4141da177e4SLinus Torvalds 
4151da177e4SLinus Torvalds /*
4161da177e4SLinus Torvalds  * UNSHARE: Release a DOS share.
4171da177e4SLinus Torvalds  */
4187111c66eSAl Viro static __be32
419*a6beb732SChristoph Hellwig nlmsvc_proc_unshare(struct svc_rqst *rqstp)
4201da177e4SLinus Torvalds {
421*a6beb732SChristoph Hellwig 	struct nlm_args *argp = rqstp->rq_argp;
422*a6beb732SChristoph Hellwig 	struct nlm_res *resp = rqstp->rq_resp;
4231da177e4SLinus Torvalds 	struct nlm_host	*host;
4241da177e4SLinus Torvalds 	struct nlm_file	*file;
4251da177e4SLinus Torvalds 
4261da177e4SLinus Torvalds 	dprintk("lockd: UNSHARE       called\n");
4271da177e4SLinus Torvalds 
4281da177e4SLinus Torvalds 	resp->cookie = argp->cookie;
4291da177e4SLinus Torvalds 
4301da177e4SLinus Torvalds 	/* Don't accept requests during grace period */
4315ccb0066SStanislav Kinsbursky 	if (locks_in_grace(SVC_NET(rqstp))) {
4321da177e4SLinus Torvalds 		resp->status = nlm_lck_denied_grace_period;
4331da177e4SLinus Torvalds 		return rpc_success;
4341da177e4SLinus Torvalds 	}
4351da177e4SLinus Torvalds 
4361da177e4SLinus Torvalds 	/* Obtain client and file */
4371da177e4SLinus Torvalds 	if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file)))
438d343fce1SNeilBrown 		return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
4391da177e4SLinus Torvalds 
4401da177e4SLinus Torvalds 	/* Now try to unshare the file */
4411da177e4SLinus Torvalds 	resp->status = cast_status(nlmsvc_unshare_file(host, file, argp));
4421da177e4SLinus Torvalds 
4431da177e4SLinus Torvalds 	dprintk("lockd: UNSHARE       status %d\n", ntohl(resp->status));
44467216b94SChuck Lever 	nlmsvc_release_host(host);
4451da177e4SLinus Torvalds 	nlm_release_file(file);
4461da177e4SLinus Torvalds 	return rpc_success;
4471da177e4SLinus Torvalds }
4481da177e4SLinus Torvalds 
4491da177e4SLinus Torvalds /*
4501da177e4SLinus Torvalds  * NM_LOCK: Create an unmonitored lock
4511da177e4SLinus Torvalds  */
4527111c66eSAl Viro static __be32
453*a6beb732SChristoph Hellwig nlmsvc_proc_nm_lock(struct svc_rqst *rqstp)
4541da177e4SLinus Torvalds {
455*a6beb732SChristoph Hellwig 	struct nlm_args *argp = rqstp->rq_argp;
456*a6beb732SChristoph Hellwig 
4571da177e4SLinus Torvalds 	dprintk("lockd: NM_LOCK       called\n");
4581da177e4SLinus Torvalds 
4591da177e4SLinus Torvalds 	argp->monitor = 0;		/* just clean the monitor flag */
460*a6beb732SChristoph Hellwig 	return nlmsvc_proc_lock(rqstp);
4611da177e4SLinus Torvalds }
4621da177e4SLinus Torvalds 
4631da177e4SLinus Torvalds /*
4641da177e4SLinus Torvalds  * FREE_ALL: Release all locks and shares held by client
4651da177e4SLinus Torvalds  */
4667111c66eSAl Viro static __be32
467*a6beb732SChristoph Hellwig nlmsvc_proc_free_all(struct svc_rqst *rqstp)
4681da177e4SLinus Torvalds {
469*a6beb732SChristoph Hellwig 	struct nlm_args *argp = rqstp->rq_argp;
4701da177e4SLinus Torvalds 	struct nlm_host	*host;
4711da177e4SLinus Torvalds 
4721da177e4SLinus Torvalds 	/* Obtain client */
4731da177e4SLinus Torvalds 	if (nlmsvc_retrieve_args(rqstp, argp, &host, NULL))
4741da177e4SLinus Torvalds 		return rpc_success;
4751da177e4SLinus Torvalds 
4761da177e4SLinus Torvalds 	nlmsvc_free_host_resources(host);
47767216b94SChuck Lever 	nlmsvc_release_host(host);
4781da177e4SLinus Torvalds 	return rpc_success;
4791da177e4SLinus Torvalds }
4801da177e4SLinus Torvalds 
4811da177e4SLinus Torvalds /*
4821da177e4SLinus Torvalds  * SM_NOTIFY: private callback from statd (not part of official NLM proto)
4831da177e4SLinus Torvalds  */
4847111c66eSAl Viro static __be32
485*a6beb732SChristoph Hellwig nlmsvc_proc_sm_notify(struct svc_rqst *rqstp)
4861da177e4SLinus Torvalds {
487*a6beb732SChristoph Hellwig 	struct nlm_reboot *argp = rqstp->rq_argp;
488*a6beb732SChristoph Hellwig 
4891da177e4SLinus Torvalds 	dprintk("lockd: SM_NOTIFY     called\n");
490b85e4676SChuck Lever 
491b85e4676SChuck Lever 	if (!nlm_privileged_requester(rqstp)) {
492ad06e4bdSChuck Lever 		char buf[RPC_MAX_ADDRBUFLEN];
493ad06e4bdSChuck Lever 		printk(KERN_WARNING "lockd: rejected NSM callback from %s\n",
494ad06e4bdSChuck Lever 				svc_print_addr(rqstp, buf, sizeof(buf)));
4951da177e4SLinus Torvalds 		return rpc_system_err;
4961da177e4SLinus Torvalds 	}
4971da177e4SLinus Torvalds 
4980ad95472SAndrey Ryabinin 	nlm_host_rebooted(SVC_NET(rqstp), argp);
4991da177e4SLinus Torvalds 	return rpc_success;
5001da177e4SLinus Torvalds }
5011da177e4SLinus Torvalds 
5021da177e4SLinus Torvalds /*
5031da177e4SLinus Torvalds  * client sent a GRANTED_RES, let's remove the associated block
5041da177e4SLinus Torvalds  */
5057111c66eSAl Viro static __be32
506*a6beb732SChristoph Hellwig nlmsvc_proc_granted_res(struct svc_rqst *rqstp)
5071da177e4SLinus Torvalds {
508*a6beb732SChristoph Hellwig 	struct nlm_res *argp = rqstp->rq_argp;
509*a6beb732SChristoph Hellwig 
5101da177e4SLinus Torvalds 	if (!nlmsvc_ops)
5111da177e4SLinus Torvalds 		return rpc_success;
5121da177e4SLinus Torvalds 
5131da177e4SLinus Torvalds 	dprintk("lockd: GRANTED_RES   called\n");
5141da177e4SLinus Torvalds 
51539be4502SOlaf Kirch 	nlmsvc_grant_reply(&argp->cookie, argp->status);
5161da177e4SLinus Torvalds 	return rpc_success;
5171da177e4SLinus Torvalds }
5181da177e4SLinus Torvalds 
5191da177e4SLinus Torvalds /*
5201da177e4SLinus Torvalds  * NLM Server procedures.
5211da177e4SLinus Torvalds  */
5221da177e4SLinus Torvalds 
5231da177e4SLinus Torvalds #define nlmsvc_encode_norep	nlmsvc_encode_void
5241da177e4SLinus Torvalds #define nlmsvc_decode_norep	nlmsvc_decode_void
5251da177e4SLinus Torvalds #define nlmsvc_decode_testres	nlmsvc_decode_void
5261da177e4SLinus Torvalds #define nlmsvc_decode_lockres	nlmsvc_decode_void
5271da177e4SLinus Torvalds #define nlmsvc_decode_unlockres	nlmsvc_decode_void
5281da177e4SLinus Torvalds #define nlmsvc_decode_cancelres	nlmsvc_decode_void
5291da177e4SLinus Torvalds #define nlmsvc_decode_grantedres	nlmsvc_decode_void
5301da177e4SLinus Torvalds 
5311da177e4SLinus Torvalds #define nlmsvc_proc_none	nlmsvc_proc_null
5321da177e4SLinus Torvalds #define nlmsvc_proc_test_res	nlmsvc_proc_null
5331da177e4SLinus Torvalds #define nlmsvc_proc_lock_res	nlmsvc_proc_null
5341da177e4SLinus Torvalds #define nlmsvc_proc_cancel_res	nlmsvc_proc_null
5351da177e4SLinus Torvalds #define nlmsvc_proc_unlock_res	nlmsvc_proc_null
5361da177e4SLinus Torvalds 
5371da177e4SLinus Torvalds struct nlm_void			{ int dummy; };
5381da177e4SLinus Torvalds 
5391da177e4SLinus Torvalds #define PROC(name, xargt, xrest, argt, rest, respsize)	\
540*a6beb732SChristoph Hellwig  { .pc_func	= nlmsvc_proc_##name,			\
5411da177e4SLinus Torvalds    .pc_decode	= (kxdrproc_t) nlmsvc_decode_##xargt,	\
5421da177e4SLinus Torvalds    .pc_encode	= (kxdrproc_t) nlmsvc_encode_##xrest,	\
5431da177e4SLinus Torvalds    .pc_release	= NULL,					\
5441da177e4SLinus Torvalds    .pc_argsize	= sizeof(struct nlm_##argt),		\
5451da177e4SLinus Torvalds    .pc_ressize	= sizeof(struct nlm_##rest),		\
5461da177e4SLinus Torvalds    .pc_xdrressize = respsize,				\
5471da177e4SLinus Torvalds  }
5481da177e4SLinus Torvalds 
5491da177e4SLinus Torvalds #define	Ck	(1+XDR_QUADLEN(NLM_MAXCOOKIELEN))	/* cookie */
5501da177e4SLinus Torvalds #define	St	1				/* status */
5511da177e4SLinus Torvalds #define	No	(1+1024/4)			/* Net Obj */
5521da177e4SLinus Torvalds #define	Rg	2				/* range - offset + size */
5531da177e4SLinus Torvalds 
5541da177e4SLinus Torvalds struct svc_procedure		nlmsvc_procedures[] = {
5551da177e4SLinus Torvalds   PROC(null,		void,		void,		void,	void, 1),
5561da177e4SLinus Torvalds   PROC(test,		testargs,	testres,	args,	res, Ck+St+2+No+Rg),
5571da177e4SLinus Torvalds   PROC(lock,		lockargs,	res,		args,	res, Ck+St),
5581da177e4SLinus Torvalds   PROC(cancel,		cancargs,	res,		args,	res, Ck+St),
5591da177e4SLinus Torvalds   PROC(unlock,		unlockargs,	res,		args,	res, Ck+St),
5601da177e4SLinus Torvalds   PROC(granted,		testargs,	res,		args,	res, Ck+St),
5611da177e4SLinus Torvalds   PROC(test_msg,	testargs,	norep,		args,	void, 1),
5621da177e4SLinus Torvalds   PROC(lock_msg,	lockargs,	norep,		args,	void, 1),
5631da177e4SLinus Torvalds   PROC(cancel_msg,	cancargs,	norep,		args,	void, 1),
5641da177e4SLinus Torvalds   PROC(unlock_msg,	unlockargs,	norep,		args,	void, 1),
5651da177e4SLinus Torvalds   PROC(granted_msg,	testargs,	norep,		args,	void, 1),
5661da177e4SLinus Torvalds   PROC(test_res,	testres,	norep,		res,	void, 1),
5671da177e4SLinus Torvalds   PROC(lock_res,	lockres,	norep,		res,	void, 1),
5681da177e4SLinus Torvalds   PROC(cancel_res,	cancelres,	norep,		res,	void, 1),
5691da177e4SLinus Torvalds   PROC(unlock_res,	unlockres,	norep,		res,	void, 1),
5701da177e4SLinus Torvalds   PROC(granted_res,	res,		norep,		res,	void, 1),
5711da177e4SLinus Torvalds   /* statd callback */
5721da177e4SLinus Torvalds   PROC(sm_notify,	reboot,		void,		reboot,	void, 1),
5731da177e4SLinus Torvalds   PROC(none,		void,		void,		void,	void, 1),
5741da177e4SLinus Torvalds   PROC(none,		void,		void,		void,	void, 1),
5751da177e4SLinus Torvalds   PROC(none,		void,		void,		void,	void, 1),
5761da177e4SLinus Torvalds   PROC(share,		shareargs,	shareres,	args,	res, Ck+St+1),
5771da177e4SLinus Torvalds   PROC(unshare,		shareargs,	shareres,	args,	res, Ck+St+1),
5781da177e4SLinus Torvalds   PROC(nm_lock,		lockargs,	res,		args,	res, Ck+St),
5791da177e4SLinus Torvalds   PROC(free_all,	notify,		void,		args,	void, 0),
5801da177e4SLinus Torvalds 
5811da177e4SLinus Torvalds };
582