1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0 21da177e4SLinus Torvalds /* 31da177e4SLinus Torvalds * linux/fs/lockd/svcproc.c 41da177e4SLinus Torvalds * 51da177e4SLinus Torvalds * Lockd server procedures. We don't implement the NLM_*_RES 61da177e4SLinus Torvalds * procedures because we don't use the async procedures. 71da177e4SLinus Torvalds * 81da177e4SLinus Torvalds * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> 91da177e4SLinus Torvalds */ 101da177e4SLinus Torvalds 111da177e4SLinus Torvalds #include <linux/types.h> 121da177e4SLinus Torvalds #include <linux/time.h> 131da177e4SLinus Torvalds #include <linux/lockd/lockd.h> 141da177e4SLinus Torvalds #include <linux/lockd/share.h> 155ccb0066SStanislav Kinsbursky #include <linux/sunrpc/svc_xprt.h> 161da177e4SLinus Torvalds 171da177e4SLinus Torvalds #define NLMDBG_FACILITY NLMDBG_CLIENT 181da177e4SLinus Torvalds 191da177e4SLinus Torvalds #ifdef CONFIG_LOCKD_V4 2052921e02SAl Viro static __be32 2152921e02SAl Viro cast_to_nlm(__be32 status, u32 vers) 221da177e4SLinus Torvalds { 231da177e4SLinus Torvalds /* Note: status is assumed to be in network byte order !!! */ 241da177e4SLinus Torvalds if (vers != 4){ 251da177e4SLinus Torvalds switch (status) { 261da177e4SLinus Torvalds case nlm_granted: 271da177e4SLinus Torvalds case nlm_lck_denied: 281da177e4SLinus Torvalds case nlm_lck_denied_nolocks: 291da177e4SLinus Torvalds case nlm_lck_blocked: 301da177e4SLinus Torvalds case nlm_lck_denied_grace_period: 315ea0d750SMarc Eshel case nlm_drop_reply: 321da177e4SLinus Torvalds break; 331da177e4SLinus Torvalds case nlm4_deadlock: 341da177e4SLinus Torvalds status = nlm_lck_denied; 351da177e4SLinus Torvalds break; 361da177e4SLinus Torvalds default: 371da177e4SLinus Torvalds status = nlm_lck_denied_nolocks; 381da177e4SLinus Torvalds } 391da177e4SLinus Torvalds } 401da177e4SLinus Torvalds 411da177e4SLinus Torvalds return (status); 421da177e4SLinus Torvalds } 431da177e4SLinus Torvalds #define cast_status(status) (cast_to_nlm(status, rqstp->rq_vers)) 441da177e4SLinus Torvalds #else 451da177e4SLinus Torvalds #define cast_status(status) (status) 461da177e4SLinus Torvalds #endif 471da177e4SLinus Torvalds 481da177e4SLinus Torvalds /* 491da177e4SLinus Torvalds * Obtain client and file from arguments 501da177e4SLinus Torvalds */ 5152921e02SAl Viro static __be32 521da177e4SLinus Torvalds nlmsvc_retrieve_args(struct svc_rqst *rqstp, struct nlm_args *argp, 531da177e4SLinus Torvalds struct nlm_host **hostp, struct nlm_file **filp) 541da177e4SLinus Torvalds { 551da177e4SLinus Torvalds struct nlm_host *host = NULL; 561da177e4SLinus Torvalds struct nlm_file *file = NULL; 571da177e4SLinus Torvalds struct nlm_lock *lock = &argp->lock; 5852921e02SAl Viro __be32 error = 0; 591da177e4SLinus Torvalds 601da177e4SLinus Torvalds /* nfsd callbacks must have been installed for this procedure */ 611da177e4SLinus Torvalds if (!nlmsvc_ops) 621da177e4SLinus Torvalds return nlm_lck_denied_nolocks; 631da177e4SLinus Torvalds 641da177e4SLinus Torvalds /* Obtain host handle */ 65db4e4c9aSOlaf Kirch if (!(host = nlmsvc_lookup_host(rqstp, lock->caller, lock->len)) 66977faf39SOlaf Kirch || (argp->monitor && nsm_monitor(host) < 0)) 671da177e4SLinus Torvalds goto no_locks; 681da177e4SLinus Torvalds *hostp = host; 691da177e4SLinus Torvalds 701da177e4SLinus Torvalds /* Obtain file pointer. Not used by FREE_ALL call. */ 711da177e4SLinus Torvalds if (filp != NULL) { 72cd0b16c1STrond Myklebust error = cast_status(nlm_lookup_file(rqstp, &file, &lock->fh)); 73cd0b16c1STrond Myklebust if (error != 0) 741da177e4SLinus Torvalds goto no_locks; 751da177e4SLinus Torvalds *filp = file; 761da177e4SLinus Torvalds 771da177e4SLinus Torvalds /* Set up the missing parts of the file_lock structure */ 781da177e4SLinus Torvalds lock->fl.fl_file = file->f_file; 79*646d73e9SBenjamin Coddington lock->fl.fl_pid = current->tgid; 801da177e4SLinus Torvalds lock->fl.fl_lmops = &nlmsvc_lock_operations; 8189e0edfbSBenjamin Coddington nlmsvc_locks_init_private(&lock->fl, host, (pid_t)lock->svid); 8289e0edfbSBenjamin Coddington if (!lock->fl.fl_owner) { 8389e0edfbSBenjamin Coddington /* lockowner allocation has failed */ 8489e0edfbSBenjamin Coddington nlmsvc_release_host(host); 8589e0edfbSBenjamin Coddington return nlm_lck_denied_nolocks; 8689e0edfbSBenjamin Coddington } 871da177e4SLinus Torvalds } 881da177e4SLinus Torvalds 891da177e4SLinus Torvalds return 0; 901da177e4SLinus Torvalds 911da177e4SLinus Torvalds no_locks: 9267216b94SChuck Lever nlmsvc_release_host(host); 93d343fce1SNeilBrown if (error) 94d343fce1SNeilBrown return error; 951da177e4SLinus Torvalds return nlm_lck_denied_nolocks; 961da177e4SLinus Torvalds } 971da177e4SLinus Torvalds 981da177e4SLinus Torvalds /* 991da177e4SLinus Torvalds * NULL: Test for presence of service 1001da177e4SLinus Torvalds */ 1017111c66eSAl Viro static __be32 102a6beb732SChristoph Hellwig nlmsvc_proc_null(struct svc_rqst *rqstp) 1031da177e4SLinus Torvalds { 1041da177e4SLinus Torvalds dprintk("lockd: NULL called\n"); 1051da177e4SLinus Torvalds return rpc_success; 1061da177e4SLinus Torvalds } 1071da177e4SLinus Torvalds 1081da177e4SLinus Torvalds /* 1091da177e4SLinus Torvalds * TEST: Check for conflicting lock 1101da177e4SLinus Torvalds */ 1117111c66eSAl Viro static __be32 112a6beb732SChristoph Hellwig __nlmsvc_proc_test(struct svc_rqst *rqstp, struct nlm_res *resp) 1131da177e4SLinus Torvalds { 114a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 1151da177e4SLinus Torvalds struct nlm_host *host; 1161da177e4SLinus Torvalds struct nlm_file *file; 117317602f3SHarvey Harrison __be32 rc = rpc_success; 1181da177e4SLinus Torvalds 1191da177e4SLinus Torvalds dprintk("lockd: TEST called\n"); 1201da177e4SLinus Torvalds resp->cookie = argp->cookie; 1211da177e4SLinus Torvalds 1221da177e4SLinus Torvalds /* Obtain client and file */ 1231da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 124d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 1251da177e4SLinus Torvalds 1261da177e4SLinus Torvalds /* Now check for conflicting locks */ 1278f920d5eSJeff Layton resp->status = cast_status(nlmsvc_testlock(rqstp, file, host, &argp->lock, &resp->lock, &resp->cookie)); 1285ea0d750SMarc Eshel if (resp->status == nlm_drop_reply) 129b7e6b869SOleg Drokin rc = rpc_drop_reply; 130b7e6b869SOleg Drokin else 1311da177e4SLinus Torvalds dprintk("lockd: TEST status %d vers %d\n", 1321da177e4SLinus Torvalds ntohl(resp->status), rqstp->rq_vers); 133b7e6b869SOleg Drokin 13489e0edfbSBenjamin Coddington nlmsvc_release_lockowner(&argp->lock); 13567216b94SChuck Lever nlmsvc_release_host(host); 1361da177e4SLinus Torvalds nlm_release_file(file); 137b7e6b869SOleg Drokin return rc; 1381da177e4SLinus Torvalds } 1391da177e4SLinus Torvalds 1407111c66eSAl Viro static __be32 141a6beb732SChristoph Hellwig nlmsvc_proc_test(struct svc_rqst *rqstp) 1421da177e4SLinus Torvalds { 143a6beb732SChristoph Hellwig return __nlmsvc_proc_test(rqstp, rqstp->rq_resp); 144a6beb732SChristoph Hellwig } 145a6beb732SChristoph Hellwig 146a6beb732SChristoph Hellwig static __be32 147a6beb732SChristoph Hellwig __nlmsvc_proc_lock(struct svc_rqst *rqstp, struct nlm_res *resp) 148a6beb732SChristoph Hellwig { 149a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 1501da177e4SLinus Torvalds struct nlm_host *host; 1511da177e4SLinus Torvalds struct nlm_file *file; 152317602f3SHarvey Harrison __be32 rc = rpc_success; 1531da177e4SLinus Torvalds 1541da177e4SLinus Torvalds dprintk("lockd: LOCK called\n"); 1551da177e4SLinus Torvalds 1561da177e4SLinus Torvalds resp->cookie = argp->cookie; 1571da177e4SLinus Torvalds 1581da177e4SLinus Torvalds /* Obtain client and file */ 1591da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 160d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 1611da177e4SLinus Torvalds 1621da177e4SLinus Torvalds #if 0 1631da177e4SLinus Torvalds /* If supplied state doesn't match current state, we assume it's 1641da177e4SLinus Torvalds * an old request that time-warped somehow. Any error return would 1651da177e4SLinus Torvalds * do in this case because it's irrelevant anyway. 1661da177e4SLinus Torvalds * 1671da177e4SLinus Torvalds * NB: We don't retrieve the remote host's state yet. 1681da177e4SLinus Torvalds */ 1691da177e4SLinus Torvalds if (host->h_nsmstate && host->h_nsmstate != argp->state) { 1701da177e4SLinus Torvalds resp->status = nlm_lck_denied_nolocks; 1711da177e4SLinus Torvalds } else 1721da177e4SLinus Torvalds #endif 1731da177e4SLinus Torvalds 1741da177e4SLinus Torvalds /* Now try to lock the file */ 1756cde4de8SJeff Layton resp->status = cast_status(nlmsvc_lock(rqstp, file, host, &argp->lock, 176b2b50289SJ. Bruce Fields argp->block, &argp->cookie, 177b2b50289SJ. Bruce Fields argp->reclaim)); 1781a8322b2SMarc Eshel if (resp->status == nlm_drop_reply) 179b7e6b869SOleg Drokin rc = rpc_drop_reply; 180b7e6b869SOleg Drokin else 1811da177e4SLinus Torvalds dprintk("lockd: LOCK status %d\n", ntohl(resp->status)); 182b7e6b869SOleg Drokin 18389e0edfbSBenjamin Coddington nlmsvc_release_lockowner(&argp->lock); 18467216b94SChuck Lever nlmsvc_release_host(host); 1851da177e4SLinus Torvalds nlm_release_file(file); 186b7e6b869SOleg Drokin return rc; 1871da177e4SLinus Torvalds } 1881da177e4SLinus Torvalds 1897111c66eSAl Viro static __be32 190a6beb732SChristoph Hellwig nlmsvc_proc_lock(struct svc_rqst *rqstp) 1911da177e4SLinus Torvalds { 192a6beb732SChristoph Hellwig return __nlmsvc_proc_lock(rqstp, rqstp->rq_resp); 193a6beb732SChristoph Hellwig } 194a6beb732SChristoph Hellwig 195a6beb732SChristoph Hellwig static __be32 196a6beb732SChristoph Hellwig __nlmsvc_proc_cancel(struct svc_rqst *rqstp, struct nlm_res *resp) 197a6beb732SChristoph Hellwig { 198a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 1991da177e4SLinus Torvalds struct nlm_host *host; 2001da177e4SLinus Torvalds struct nlm_file *file; 2015ccb0066SStanislav Kinsbursky struct net *net = SVC_NET(rqstp); 2021da177e4SLinus Torvalds 2031da177e4SLinus Torvalds dprintk("lockd: CANCEL called\n"); 2041da177e4SLinus Torvalds 2051da177e4SLinus Torvalds resp->cookie = argp->cookie; 2061da177e4SLinus Torvalds 2071da177e4SLinus Torvalds /* Don't accept requests during grace period */ 2085ccb0066SStanislav Kinsbursky if (locks_in_grace(net)) { 2091da177e4SLinus Torvalds resp->status = nlm_lck_denied_grace_period; 2101da177e4SLinus Torvalds return rpc_success; 2111da177e4SLinus Torvalds } 2121da177e4SLinus Torvalds 2131da177e4SLinus Torvalds /* Obtain client and file */ 2141da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 215d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 2161da177e4SLinus Torvalds 2171da177e4SLinus Torvalds /* Try to cancel request. */ 2185ccb0066SStanislav Kinsbursky resp->status = cast_status(nlmsvc_cancel_blocked(net, file, &argp->lock)); 2191da177e4SLinus Torvalds 2201da177e4SLinus Torvalds dprintk("lockd: CANCEL status %d\n", ntohl(resp->status)); 22189e0edfbSBenjamin Coddington nlmsvc_release_lockowner(&argp->lock); 22267216b94SChuck Lever nlmsvc_release_host(host); 2231da177e4SLinus Torvalds nlm_release_file(file); 2241da177e4SLinus Torvalds return rpc_success; 2251da177e4SLinus Torvalds } 2261da177e4SLinus Torvalds 227a6beb732SChristoph Hellwig static __be32 228a6beb732SChristoph Hellwig nlmsvc_proc_cancel(struct svc_rqst *rqstp) 229a6beb732SChristoph Hellwig { 230a6beb732SChristoph Hellwig return __nlmsvc_proc_cancel(rqstp, rqstp->rq_resp); 231a6beb732SChristoph Hellwig } 232a6beb732SChristoph Hellwig 2331da177e4SLinus Torvalds /* 2341da177e4SLinus Torvalds * UNLOCK: release a lock 2351da177e4SLinus Torvalds */ 2367111c66eSAl Viro static __be32 237a6beb732SChristoph Hellwig __nlmsvc_proc_unlock(struct svc_rqst *rqstp, struct nlm_res *resp) 2381da177e4SLinus Torvalds { 239a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 2401da177e4SLinus Torvalds struct nlm_host *host; 2411da177e4SLinus Torvalds struct nlm_file *file; 2425ccb0066SStanislav Kinsbursky struct net *net = SVC_NET(rqstp); 2431da177e4SLinus Torvalds 2441da177e4SLinus Torvalds dprintk("lockd: UNLOCK called\n"); 2451da177e4SLinus Torvalds 2461da177e4SLinus Torvalds resp->cookie = argp->cookie; 2471da177e4SLinus Torvalds 2481da177e4SLinus Torvalds /* Don't accept new lock requests during grace period */ 2495ccb0066SStanislav Kinsbursky if (locks_in_grace(net)) { 2501da177e4SLinus Torvalds resp->status = nlm_lck_denied_grace_period; 2511da177e4SLinus Torvalds return rpc_success; 2521da177e4SLinus Torvalds } 2531da177e4SLinus Torvalds 2541da177e4SLinus Torvalds /* Obtain client and file */ 2551da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 256d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 2571da177e4SLinus Torvalds 2581da177e4SLinus Torvalds /* Now try to remove the lock */ 2595ccb0066SStanislav Kinsbursky resp->status = cast_status(nlmsvc_unlock(net, file, &argp->lock)); 2601da177e4SLinus Torvalds 2611da177e4SLinus Torvalds dprintk("lockd: UNLOCK status %d\n", ntohl(resp->status)); 26289e0edfbSBenjamin Coddington nlmsvc_release_lockowner(&argp->lock); 26367216b94SChuck Lever nlmsvc_release_host(host); 2641da177e4SLinus Torvalds nlm_release_file(file); 2651da177e4SLinus Torvalds return rpc_success; 2661da177e4SLinus Torvalds } 2671da177e4SLinus Torvalds 268a6beb732SChristoph Hellwig static __be32 269a6beb732SChristoph Hellwig nlmsvc_proc_unlock(struct svc_rqst *rqstp) 270a6beb732SChristoph Hellwig { 271a6beb732SChristoph Hellwig return __nlmsvc_proc_unlock(rqstp, rqstp->rq_resp); 272a6beb732SChristoph Hellwig } 273a6beb732SChristoph Hellwig 2741da177e4SLinus Torvalds /* 2751da177e4SLinus Torvalds * GRANTED: A server calls us to tell that a process' lock request 2761da177e4SLinus Torvalds * was granted 2771da177e4SLinus Torvalds */ 2787111c66eSAl Viro static __be32 279a6beb732SChristoph Hellwig __nlmsvc_proc_granted(struct svc_rqst *rqstp, struct nlm_res *resp) 2801da177e4SLinus Torvalds { 281a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 282a6beb732SChristoph Hellwig 2831da177e4SLinus Torvalds resp->cookie = argp->cookie; 2841da177e4SLinus Torvalds 2851da177e4SLinus Torvalds dprintk("lockd: GRANTED called\n"); 286dcff09f1SChuck Lever resp->status = nlmclnt_grant(svc_addr(rqstp), &argp->lock); 2871da177e4SLinus Torvalds dprintk("lockd: GRANTED status %d\n", ntohl(resp->status)); 2881da177e4SLinus Torvalds return rpc_success; 2891da177e4SLinus Torvalds } 2901da177e4SLinus Torvalds 291a6beb732SChristoph Hellwig static __be32 292a6beb732SChristoph Hellwig nlmsvc_proc_granted(struct svc_rqst *rqstp) 293a6beb732SChristoph Hellwig { 294a6beb732SChristoph Hellwig return __nlmsvc_proc_granted(rqstp, rqstp->rq_resp); 295a6beb732SChristoph Hellwig } 296a6beb732SChristoph Hellwig 2971da177e4SLinus Torvalds /* 298d4716624STrond Myklebust * This is the generic lockd callback for async RPC calls 299d4716624STrond Myklebust */ 300d4716624STrond Myklebust static void nlmsvc_callback_exit(struct rpc_task *task, void *data) 301d4716624STrond Myklebust { 302c041b5ffSChuck Lever dprintk("lockd: %5u callback returned %d\n", task->tk_pid, 303d4716624STrond Myklebust -task->tk_status); 304d4716624STrond Myklebust } 305d4716624STrond Myklebust 3067db836d4SChuck Lever void nlmsvc_release_call(struct nlm_rqst *call) 3077db836d4SChuck Lever { 308fbca30c5SElena Reshetova if (!refcount_dec_and_test(&call->a_count)) 3097db836d4SChuck Lever return; 31067216b94SChuck Lever nlmsvc_release_host(call->a_host); 3117db836d4SChuck Lever kfree(call); 3127db836d4SChuck Lever } 3137db836d4SChuck Lever 314d4716624STrond Myklebust static void nlmsvc_callback_release(void *data) 315d4716624STrond Myklebust { 3167db836d4SChuck Lever nlmsvc_release_call(data); 317d4716624STrond Myklebust } 318d4716624STrond Myklebust 319d4716624STrond Myklebust static const struct rpc_call_ops nlmsvc_callback_ops = { 320d4716624STrond Myklebust .rpc_call_done = nlmsvc_callback_exit, 321d4716624STrond Myklebust .rpc_release = nlmsvc_callback_release, 322d4716624STrond Myklebust }; 323d4716624STrond Myklebust 324d4716624STrond Myklebust /* 3251da177e4SLinus Torvalds * `Async' versions of the above service routines. They aren't really, 3261da177e4SLinus Torvalds * because we send the callback before the reply proper. I hope this 3271da177e4SLinus Torvalds * doesn't break any clients. 3281da177e4SLinus Torvalds */ 329a6beb732SChristoph Hellwig static __be32 nlmsvc_callback(struct svc_rqst *rqstp, u32 proc, 330a6beb732SChristoph Hellwig __be32 (*func)(struct svc_rqst *, struct nlm_res *)) 331d4716624STrond Myklebust { 332a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 333d4716624STrond Myklebust struct nlm_host *host; 334d4716624STrond Myklebust struct nlm_rqst *call; 3357111c66eSAl Viro __be32 stat; 336d4716624STrond Myklebust 337db4e4c9aSOlaf Kirch host = nlmsvc_lookup_host(rqstp, 338db4e4c9aSOlaf Kirch argp->lock.caller, 339db4e4c9aSOlaf Kirch argp->lock.len); 340d4716624STrond Myklebust if (host == NULL) 341d4716624STrond Myklebust return rpc_system_err; 342d4716624STrond Myklebust 343d4716624STrond Myklebust call = nlm_alloc_call(host); 344446945abSAl Viro nlmsvc_release_host(host); 345d4716624STrond Myklebust if (call == NULL) 346d4716624STrond Myklebust return rpc_system_err; 347d4716624STrond Myklebust 348a6beb732SChristoph Hellwig stat = func(rqstp, &call->a_res); 349d4716624STrond Myklebust if (stat != 0) { 3507db836d4SChuck Lever nlmsvc_release_call(call); 351d4716624STrond Myklebust return stat; 352d4716624STrond Myklebust } 353d4716624STrond Myklebust 354d4716624STrond Myklebust call->a_flags = RPC_TASK_ASYNC; 355d4716624STrond Myklebust if (nlm_async_reply(call, proc, &nlmsvc_callback_ops) < 0) 356d4716624STrond Myklebust return rpc_system_err; 357d4716624STrond Myklebust return rpc_success; 358d4716624STrond Myklebust } 359d4716624STrond Myklebust 360a6beb732SChristoph Hellwig static __be32 nlmsvc_proc_test_msg(struct svc_rqst *rqstp) 3611da177e4SLinus Torvalds { 3621da177e4SLinus Torvalds dprintk("lockd: TEST_MSG called\n"); 363a6beb732SChristoph Hellwig return nlmsvc_callback(rqstp, NLMPROC_TEST_RES, __nlmsvc_proc_test); 3641da177e4SLinus Torvalds } 3651da177e4SLinus Torvalds 366a6beb732SChristoph Hellwig static __be32 nlmsvc_proc_lock_msg(struct svc_rqst *rqstp) 3671da177e4SLinus Torvalds { 3681da177e4SLinus Torvalds dprintk("lockd: LOCK_MSG called\n"); 369a6beb732SChristoph Hellwig return nlmsvc_callback(rqstp, NLMPROC_LOCK_RES, __nlmsvc_proc_lock); 3701da177e4SLinus Torvalds } 3711da177e4SLinus Torvalds 372a6beb732SChristoph Hellwig static __be32 nlmsvc_proc_cancel_msg(struct svc_rqst *rqstp) 3731da177e4SLinus Torvalds { 3741da177e4SLinus Torvalds dprintk("lockd: CANCEL_MSG called\n"); 375a6beb732SChristoph Hellwig return nlmsvc_callback(rqstp, NLMPROC_CANCEL_RES, __nlmsvc_proc_cancel); 3761da177e4SLinus Torvalds } 3771da177e4SLinus Torvalds 3787111c66eSAl Viro static __be32 379a6beb732SChristoph Hellwig nlmsvc_proc_unlock_msg(struct svc_rqst *rqstp) 3801da177e4SLinus Torvalds { 3811da177e4SLinus Torvalds dprintk("lockd: UNLOCK_MSG called\n"); 382a6beb732SChristoph Hellwig return nlmsvc_callback(rqstp, NLMPROC_UNLOCK_RES, __nlmsvc_proc_unlock); 3831da177e4SLinus Torvalds } 3841da177e4SLinus Torvalds 3857111c66eSAl Viro static __be32 386a6beb732SChristoph Hellwig nlmsvc_proc_granted_msg(struct svc_rqst *rqstp) 3871da177e4SLinus Torvalds { 3881da177e4SLinus Torvalds dprintk("lockd: GRANTED_MSG called\n"); 389a6beb732SChristoph Hellwig return nlmsvc_callback(rqstp, NLMPROC_GRANTED_RES, __nlmsvc_proc_granted); 3901da177e4SLinus Torvalds } 3911da177e4SLinus Torvalds 3921da177e4SLinus Torvalds /* 3931da177e4SLinus Torvalds * SHARE: create a DOS share or alter existing share. 3941da177e4SLinus Torvalds */ 3957111c66eSAl Viro static __be32 396a6beb732SChristoph Hellwig nlmsvc_proc_share(struct svc_rqst *rqstp) 3971da177e4SLinus Torvalds { 398a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 399a6beb732SChristoph Hellwig struct nlm_res *resp = rqstp->rq_resp; 4001da177e4SLinus Torvalds struct nlm_host *host; 4011da177e4SLinus Torvalds struct nlm_file *file; 4021da177e4SLinus Torvalds 4031da177e4SLinus Torvalds dprintk("lockd: SHARE called\n"); 4041da177e4SLinus Torvalds 4051da177e4SLinus Torvalds resp->cookie = argp->cookie; 4061da177e4SLinus Torvalds 4071da177e4SLinus Torvalds /* Don't accept new lock requests during grace period */ 4085ccb0066SStanislav Kinsbursky if (locks_in_grace(SVC_NET(rqstp)) && !argp->reclaim) { 4091da177e4SLinus Torvalds resp->status = nlm_lck_denied_grace_period; 4101da177e4SLinus Torvalds return rpc_success; 4111da177e4SLinus Torvalds } 4121da177e4SLinus Torvalds 4131da177e4SLinus Torvalds /* Obtain client and file */ 4141da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 415d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 4161da177e4SLinus Torvalds 4171da177e4SLinus Torvalds /* Now try to create the share */ 4181da177e4SLinus Torvalds resp->status = cast_status(nlmsvc_share_file(host, file, argp)); 4191da177e4SLinus Torvalds 4201da177e4SLinus Torvalds dprintk("lockd: SHARE status %d\n", ntohl(resp->status)); 42189e0edfbSBenjamin Coddington nlmsvc_release_lockowner(&argp->lock); 42267216b94SChuck Lever nlmsvc_release_host(host); 4231da177e4SLinus Torvalds nlm_release_file(file); 4241da177e4SLinus Torvalds return rpc_success; 4251da177e4SLinus Torvalds } 4261da177e4SLinus Torvalds 4271da177e4SLinus Torvalds /* 4281da177e4SLinus Torvalds * UNSHARE: Release a DOS share. 4291da177e4SLinus Torvalds */ 4307111c66eSAl Viro static __be32 431a6beb732SChristoph Hellwig nlmsvc_proc_unshare(struct svc_rqst *rqstp) 4321da177e4SLinus Torvalds { 433a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 434a6beb732SChristoph Hellwig struct nlm_res *resp = rqstp->rq_resp; 4351da177e4SLinus Torvalds struct nlm_host *host; 4361da177e4SLinus Torvalds struct nlm_file *file; 4371da177e4SLinus Torvalds 4381da177e4SLinus Torvalds dprintk("lockd: UNSHARE called\n"); 4391da177e4SLinus Torvalds 4401da177e4SLinus Torvalds resp->cookie = argp->cookie; 4411da177e4SLinus Torvalds 4421da177e4SLinus Torvalds /* Don't accept requests during grace period */ 4435ccb0066SStanislav Kinsbursky if (locks_in_grace(SVC_NET(rqstp))) { 4441da177e4SLinus Torvalds resp->status = nlm_lck_denied_grace_period; 4451da177e4SLinus Torvalds return rpc_success; 4461da177e4SLinus Torvalds } 4471da177e4SLinus Torvalds 4481da177e4SLinus Torvalds /* Obtain client and file */ 4491da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 450d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 4511da177e4SLinus Torvalds 4521da177e4SLinus Torvalds /* Now try to unshare the file */ 4531da177e4SLinus Torvalds resp->status = cast_status(nlmsvc_unshare_file(host, file, argp)); 4541da177e4SLinus Torvalds 4551da177e4SLinus Torvalds dprintk("lockd: UNSHARE status %d\n", ntohl(resp->status)); 45689e0edfbSBenjamin Coddington nlmsvc_release_lockowner(&argp->lock); 45767216b94SChuck Lever nlmsvc_release_host(host); 4581da177e4SLinus Torvalds nlm_release_file(file); 4591da177e4SLinus Torvalds return rpc_success; 4601da177e4SLinus Torvalds } 4611da177e4SLinus Torvalds 4621da177e4SLinus Torvalds /* 4631da177e4SLinus Torvalds * NM_LOCK: Create an unmonitored lock 4641da177e4SLinus Torvalds */ 4657111c66eSAl Viro static __be32 466a6beb732SChristoph Hellwig nlmsvc_proc_nm_lock(struct svc_rqst *rqstp) 4671da177e4SLinus Torvalds { 468a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 469a6beb732SChristoph Hellwig 4701da177e4SLinus Torvalds dprintk("lockd: NM_LOCK called\n"); 4711da177e4SLinus Torvalds 4721da177e4SLinus Torvalds argp->monitor = 0; /* just clean the monitor flag */ 473a6beb732SChristoph Hellwig return nlmsvc_proc_lock(rqstp); 4741da177e4SLinus Torvalds } 4751da177e4SLinus Torvalds 4761da177e4SLinus Torvalds /* 4771da177e4SLinus Torvalds * FREE_ALL: Release all locks and shares held by client 4781da177e4SLinus Torvalds */ 4797111c66eSAl Viro static __be32 480a6beb732SChristoph Hellwig nlmsvc_proc_free_all(struct svc_rqst *rqstp) 4811da177e4SLinus Torvalds { 482a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 4831da177e4SLinus Torvalds struct nlm_host *host; 4841da177e4SLinus Torvalds 4851da177e4SLinus Torvalds /* Obtain client */ 4861da177e4SLinus Torvalds if (nlmsvc_retrieve_args(rqstp, argp, &host, NULL)) 4871da177e4SLinus Torvalds return rpc_success; 4881da177e4SLinus Torvalds 4891da177e4SLinus Torvalds nlmsvc_free_host_resources(host); 49067216b94SChuck Lever nlmsvc_release_host(host); 4911da177e4SLinus Torvalds return rpc_success; 4921da177e4SLinus Torvalds } 4931da177e4SLinus Torvalds 4941da177e4SLinus Torvalds /* 4951da177e4SLinus Torvalds * SM_NOTIFY: private callback from statd (not part of official NLM proto) 4961da177e4SLinus Torvalds */ 4977111c66eSAl Viro static __be32 498a6beb732SChristoph Hellwig nlmsvc_proc_sm_notify(struct svc_rqst *rqstp) 4991da177e4SLinus Torvalds { 500a6beb732SChristoph Hellwig struct nlm_reboot *argp = rqstp->rq_argp; 501a6beb732SChristoph Hellwig 5021da177e4SLinus Torvalds dprintk("lockd: SM_NOTIFY called\n"); 503b85e4676SChuck Lever 504b85e4676SChuck Lever if (!nlm_privileged_requester(rqstp)) { 505ad06e4bdSChuck Lever char buf[RPC_MAX_ADDRBUFLEN]; 506ad06e4bdSChuck Lever printk(KERN_WARNING "lockd: rejected NSM callback from %s\n", 507ad06e4bdSChuck Lever svc_print_addr(rqstp, buf, sizeof(buf))); 5081da177e4SLinus Torvalds return rpc_system_err; 5091da177e4SLinus Torvalds } 5101da177e4SLinus Torvalds 5110ad95472SAndrey Ryabinin nlm_host_rebooted(SVC_NET(rqstp), argp); 5121da177e4SLinus Torvalds return rpc_success; 5131da177e4SLinus Torvalds } 5141da177e4SLinus Torvalds 5151da177e4SLinus Torvalds /* 5161da177e4SLinus Torvalds * client sent a GRANTED_RES, let's remove the associated block 5171da177e4SLinus Torvalds */ 5187111c66eSAl Viro static __be32 519a6beb732SChristoph Hellwig nlmsvc_proc_granted_res(struct svc_rqst *rqstp) 5201da177e4SLinus Torvalds { 521a6beb732SChristoph Hellwig struct nlm_res *argp = rqstp->rq_argp; 522a6beb732SChristoph Hellwig 5231da177e4SLinus Torvalds if (!nlmsvc_ops) 5241da177e4SLinus Torvalds return rpc_success; 5251da177e4SLinus Torvalds 5261da177e4SLinus Torvalds dprintk("lockd: GRANTED_RES called\n"); 5271da177e4SLinus Torvalds 52839be4502SOlaf Kirch nlmsvc_grant_reply(&argp->cookie, argp->status); 5291da177e4SLinus Torvalds return rpc_success; 5301da177e4SLinus Torvalds } 5311da177e4SLinus Torvalds 5321da177e4SLinus Torvalds /* 5331da177e4SLinus Torvalds * NLM Server procedures. 5341da177e4SLinus Torvalds */ 5351da177e4SLinus Torvalds 5361da177e4SLinus Torvalds #define nlmsvc_encode_norep nlmsvc_encode_void 5371da177e4SLinus Torvalds #define nlmsvc_decode_norep nlmsvc_decode_void 5381da177e4SLinus Torvalds #define nlmsvc_decode_testres nlmsvc_decode_void 5391da177e4SLinus Torvalds #define nlmsvc_decode_lockres nlmsvc_decode_void 5401da177e4SLinus Torvalds #define nlmsvc_decode_unlockres nlmsvc_decode_void 5411da177e4SLinus Torvalds #define nlmsvc_decode_cancelres nlmsvc_decode_void 5421da177e4SLinus Torvalds #define nlmsvc_decode_grantedres nlmsvc_decode_void 5431da177e4SLinus Torvalds 5441da177e4SLinus Torvalds #define nlmsvc_proc_none nlmsvc_proc_null 5451da177e4SLinus Torvalds #define nlmsvc_proc_test_res nlmsvc_proc_null 5461da177e4SLinus Torvalds #define nlmsvc_proc_lock_res nlmsvc_proc_null 5471da177e4SLinus Torvalds #define nlmsvc_proc_cancel_res nlmsvc_proc_null 5481da177e4SLinus Torvalds #define nlmsvc_proc_unlock_res nlmsvc_proc_null 5491da177e4SLinus Torvalds 5501da177e4SLinus Torvalds struct nlm_void { int dummy; }; 5511da177e4SLinus Torvalds 5521da177e4SLinus Torvalds #define PROC(name, xargt, xrest, argt, rest, respsize) \ 553a6beb732SChristoph Hellwig { .pc_func = nlmsvc_proc_##name, \ 554026fec7eSChristoph Hellwig .pc_decode = nlmsvc_decode_##xargt, \ 55563f8de37SChristoph Hellwig .pc_encode = nlmsvc_encode_##xrest, \ 5561da177e4SLinus Torvalds .pc_release = NULL, \ 5571da177e4SLinus Torvalds .pc_argsize = sizeof(struct nlm_##argt), \ 5581da177e4SLinus Torvalds .pc_ressize = sizeof(struct nlm_##rest), \ 5591da177e4SLinus Torvalds .pc_xdrressize = respsize, \ 5601da177e4SLinus Torvalds } 5611da177e4SLinus Torvalds 5621da177e4SLinus Torvalds #define Ck (1+XDR_QUADLEN(NLM_MAXCOOKIELEN)) /* cookie */ 5631da177e4SLinus Torvalds #define St 1 /* status */ 5641da177e4SLinus Torvalds #define No (1+1024/4) /* Net Obj */ 5651da177e4SLinus Torvalds #define Rg 2 /* range - offset + size */ 5661da177e4SLinus Torvalds 567860bda29SChristoph Hellwig const struct svc_procedure nlmsvc_procedures[] = { 5681da177e4SLinus Torvalds PROC(null, void, void, void, void, 1), 5691da177e4SLinus Torvalds PROC(test, testargs, testres, args, res, Ck+St+2+No+Rg), 5701da177e4SLinus Torvalds PROC(lock, lockargs, res, args, res, Ck+St), 5711da177e4SLinus Torvalds PROC(cancel, cancargs, res, args, res, Ck+St), 5721da177e4SLinus Torvalds PROC(unlock, unlockargs, res, args, res, Ck+St), 5731da177e4SLinus Torvalds PROC(granted, testargs, res, args, res, Ck+St), 5741da177e4SLinus Torvalds PROC(test_msg, testargs, norep, args, void, 1), 5751da177e4SLinus Torvalds PROC(lock_msg, lockargs, norep, args, void, 1), 5761da177e4SLinus Torvalds PROC(cancel_msg, cancargs, norep, args, void, 1), 5771da177e4SLinus Torvalds PROC(unlock_msg, unlockargs, norep, args, void, 1), 5781da177e4SLinus Torvalds PROC(granted_msg, testargs, norep, args, void, 1), 5791da177e4SLinus Torvalds PROC(test_res, testres, norep, res, void, 1), 5801da177e4SLinus Torvalds PROC(lock_res, lockres, norep, res, void, 1), 5811da177e4SLinus Torvalds PROC(cancel_res, cancelres, norep, res, void, 1), 5821da177e4SLinus Torvalds PROC(unlock_res, unlockres, norep, res, void, 1), 5831da177e4SLinus Torvalds PROC(granted_res, res, norep, res, void, 1), 5841da177e4SLinus Torvalds /* statd callback */ 5851da177e4SLinus Torvalds PROC(sm_notify, reboot, void, reboot, void, 1), 5861da177e4SLinus Torvalds PROC(none, void, void, void, void, 1), 5871da177e4SLinus Torvalds PROC(none, void, void, void, void, 1), 5881da177e4SLinus Torvalds PROC(none, void, void, void, void, 1), 5891da177e4SLinus Torvalds PROC(share, shareargs, shareres, args, res, Ck+St+1), 5901da177e4SLinus Torvalds PROC(unshare, shareargs, shareres, args, res, Ck+St+1), 5911da177e4SLinus Torvalds PROC(nm_lock, lockargs, res, args, res, Ck+St), 5921da177e4SLinus Torvalds PROC(free_all, notify, void, args, void, 0), 5931da177e4SLinus Torvalds 5941da177e4SLinus Torvalds }; 595