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; 791da177e4SLinus Torvalds lock->fl.fl_owner = (fl_owner_t) host; 801da177e4SLinus Torvalds lock->fl.fl_lmops = &nlmsvc_lock_operations; 811da177e4SLinus Torvalds } 821da177e4SLinus Torvalds 831da177e4SLinus Torvalds return 0; 841da177e4SLinus Torvalds 851da177e4SLinus Torvalds no_locks: 8667216b94SChuck Lever nlmsvc_release_host(host); 87d343fce1SNeilBrown if (error) 88d343fce1SNeilBrown return error; 891da177e4SLinus Torvalds return nlm_lck_denied_nolocks; 901da177e4SLinus Torvalds } 911da177e4SLinus Torvalds 921da177e4SLinus Torvalds /* 931da177e4SLinus Torvalds * NULL: Test for presence of service 941da177e4SLinus Torvalds */ 957111c66eSAl Viro static __be32 96a6beb732SChristoph Hellwig nlmsvc_proc_null(struct svc_rqst *rqstp) 971da177e4SLinus Torvalds { 981da177e4SLinus Torvalds dprintk("lockd: NULL called\n"); 991da177e4SLinus Torvalds return rpc_success; 1001da177e4SLinus Torvalds } 1011da177e4SLinus Torvalds 1021da177e4SLinus Torvalds /* 1031da177e4SLinus Torvalds * TEST: Check for conflicting lock 1041da177e4SLinus Torvalds */ 1057111c66eSAl Viro static __be32 106a6beb732SChristoph Hellwig __nlmsvc_proc_test(struct svc_rqst *rqstp, struct nlm_res *resp) 1071da177e4SLinus Torvalds { 108a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 1091da177e4SLinus Torvalds struct nlm_host *host; 1101da177e4SLinus Torvalds struct nlm_file *file; 111317602f3SHarvey Harrison __be32 rc = rpc_success; 1121da177e4SLinus Torvalds 1131da177e4SLinus Torvalds dprintk("lockd: TEST called\n"); 1141da177e4SLinus Torvalds resp->cookie = argp->cookie; 1151da177e4SLinus Torvalds 1161da177e4SLinus Torvalds /* Obtain client and file */ 1171da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 118d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 1191da177e4SLinus Torvalds 1201da177e4SLinus Torvalds /* Now check for conflicting locks */ 1218f920d5eSJeff Layton resp->status = cast_status(nlmsvc_testlock(rqstp, file, host, &argp->lock, &resp->lock, &resp->cookie)); 1225ea0d750SMarc Eshel if (resp->status == nlm_drop_reply) 123b7e6b869SOleg Drokin rc = rpc_drop_reply; 124b7e6b869SOleg Drokin else 1251da177e4SLinus Torvalds dprintk("lockd: TEST status %d vers %d\n", 1261da177e4SLinus Torvalds ntohl(resp->status), rqstp->rq_vers); 127b7e6b869SOleg Drokin 12867216b94SChuck Lever nlmsvc_release_host(host); 1291da177e4SLinus Torvalds nlm_release_file(file); 130b7e6b869SOleg Drokin return rc; 1311da177e4SLinus Torvalds } 1321da177e4SLinus Torvalds 1337111c66eSAl Viro static __be32 134a6beb732SChristoph Hellwig nlmsvc_proc_test(struct svc_rqst *rqstp) 1351da177e4SLinus Torvalds { 136a6beb732SChristoph Hellwig return __nlmsvc_proc_test(rqstp, rqstp->rq_resp); 137a6beb732SChristoph Hellwig } 138a6beb732SChristoph Hellwig 139a6beb732SChristoph Hellwig static __be32 140a6beb732SChristoph Hellwig __nlmsvc_proc_lock(struct svc_rqst *rqstp, struct nlm_res *resp) 141a6beb732SChristoph Hellwig { 142a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 1431da177e4SLinus Torvalds struct nlm_host *host; 1441da177e4SLinus Torvalds struct nlm_file *file; 145317602f3SHarvey Harrison __be32 rc = rpc_success; 1461da177e4SLinus Torvalds 1471da177e4SLinus Torvalds dprintk("lockd: LOCK called\n"); 1481da177e4SLinus Torvalds 1491da177e4SLinus Torvalds resp->cookie = argp->cookie; 1501da177e4SLinus Torvalds 1511da177e4SLinus Torvalds /* Obtain client and file */ 1521da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 153d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 1541da177e4SLinus Torvalds 1551da177e4SLinus Torvalds #if 0 1561da177e4SLinus Torvalds /* If supplied state doesn't match current state, we assume it's 1571da177e4SLinus Torvalds * an old request that time-warped somehow. Any error return would 1581da177e4SLinus Torvalds * do in this case because it's irrelevant anyway. 1591da177e4SLinus Torvalds * 1601da177e4SLinus Torvalds * NB: We don't retrieve the remote host's state yet. 1611da177e4SLinus Torvalds */ 1621da177e4SLinus Torvalds if (host->h_nsmstate && host->h_nsmstate != argp->state) { 1631da177e4SLinus Torvalds resp->status = nlm_lck_denied_nolocks; 1641da177e4SLinus Torvalds } else 1651da177e4SLinus Torvalds #endif 1661da177e4SLinus Torvalds 1671da177e4SLinus Torvalds /* Now try to lock the file */ 1686cde4de8SJeff Layton resp->status = cast_status(nlmsvc_lock(rqstp, file, host, &argp->lock, 169b2b50289SJ. Bruce Fields argp->block, &argp->cookie, 170b2b50289SJ. Bruce Fields argp->reclaim)); 1711a8322b2SMarc Eshel if (resp->status == nlm_drop_reply) 172b7e6b869SOleg Drokin rc = rpc_drop_reply; 173b7e6b869SOleg Drokin else 1741da177e4SLinus Torvalds dprintk("lockd: LOCK status %d\n", ntohl(resp->status)); 175b7e6b869SOleg Drokin 17667216b94SChuck Lever nlmsvc_release_host(host); 1771da177e4SLinus Torvalds nlm_release_file(file); 178b7e6b869SOleg Drokin return rc; 1791da177e4SLinus Torvalds } 1801da177e4SLinus Torvalds 1817111c66eSAl Viro static __be32 182a6beb732SChristoph Hellwig nlmsvc_proc_lock(struct svc_rqst *rqstp) 1831da177e4SLinus Torvalds { 184a6beb732SChristoph Hellwig return __nlmsvc_proc_lock(rqstp, rqstp->rq_resp); 185a6beb732SChristoph Hellwig } 186a6beb732SChristoph Hellwig 187a6beb732SChristoph Hellwig static __be32 188a6beb732SChristoph Hellwig __nlmsvc_proc_cancel(struct svc_rqst *rqstp, struct nlm_res *resp) 189a6beb732SChristoph Hellwig { 190a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 1911da177e4SLinus Torvalds struct nlm_host *host; 1921da177e4SLinus Torvalds struct nlm_file *file; 1935ccb0066SStanislav Kinsbursky struct net *net = SVC_NET(rqstp); 1941da177e4SLinus Torvalds 1951da177e4SLinus Torvalds dprintk("lockd: CANCEL called\n"); 1961da177e4SLinus Torvalds 1971da177e4SLinus Torvalds resp->cookie = argp->cookie; 1981da177e4SLinus Torvalds 1991da177e4SLinus Torvalds /* Don't accept requests during grace period */ 2005ccb0066SStanislav Kinsbursky if (locks_in_grace(net)) { 2011da177e4SLinus Torvalds resp->status = nlm_lck_denied_grace_period; 2021da177e4SLinus Torvalds return rpc_success; 2031da177e4SLinus Torvalds } 2041da177e4SLinus Torvalds 2051da177e4SLinus Torvalds /* Obtain client and file */ 2061da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 207d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 2081da177e4SLinus Torvalds 2091da177e4SLinus Torvalds /* Try to cancel request. */ 2105ccb0066SStanislav Kinsbursky resp->status = cast_status(nlmsvc_cancel_blocked(net, file, &argp->lock)); 2111da177e4SLinus Torvalds 2121da177e4SLinus Torvalds dprintk("lockd: CANCEL status %d\n", ntohl(resp->status)); 21367216b94SChuck Lever nlmsvc_release_host(host); 2141da177e4SLinus Torvalds nlm_release_file(file); 2151da177e4SLinus Torvalds return rpc_success; 2161da177e4SLinus Torvalds } 2171da177e4SLinus Torvalds 218a6beb732SChristoph Hellwig static __be32 219a6beb732SChristoph Hellwig nlmsvc_proc_cancel(struct svc_rqst *rqstp) 220a6beb732SChristoph Hellwig { 221a6beb732SChristoph Hellwig return __nlmsvc_proc_cancel(rqstp, rqstp->rq_resp); 222a6beb732SChristoph Hellwig } 223a6beb732SChristoph Hellwig 2241da177e4SLinus Torvalds /* 2251da177e4SLinus Torvalds * UNLOCK: release a lock 2261da177e4SLinus Torvalds */ 2277111c66eSAl Viro static __be32 228a6beb732SChristoph Hellwig __nlmsvc_proc_unlock(struct svc_rqst *rqstp, struct nlm_res *resp) 2291da177e4SLinus Torvalds { 230a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 2311da177e4SLinus Torvalds struct nlm_host *host; 2321da177e4SLinus Torvalds struct nlm_file *file; 2335ccb0066SStanislav Kinsbursky struct net *net = SVC_NET(rqstp); 2341da177e4SLinus Torvalds 2351da177e4SLinus Torvalds dprintk("lockd: UNLOCK called\n"); 2361da177e4SLinus Torvalds 2371da177e4SLinus Torvalds resp->cookie = argp->cookie; 2381da177e4SLinus Torvalds 2391da177e4SLinus Torvalds /* Don't accept new lock requests during grace period */ 2405ccb0066SStanislav Kinsbursky if (locks_in_grace(net)) { 2411da177e4SLinus Torvalds resp->status = nlm_lck_denied_grace_period; 2421da177e4SLinus Torvalds return rpc_success; 2431da177e4SLinus Torvalds } 2441da177e4SLinus Torvalds 2451da177e4SLinus Torvalds /* Obtain client and file */ 2461da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 247d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 2481da177e4SLinus Torvalds 2491da177e4SLinus Torvalds /* Now try to remove the lock */ 2505ccb0066SStanislav Kinsbursky resp->status = cast_status(nlmsvc_unlock(net, file, &argp->lock)); 2511da177e4SLinus Torvalds 2521da177e4SLinus Torvalds dprintk("lockd: UNLOCK status %d\n", ntohl(resp->status)); 25367216b94SChuck Lever nlmsvc_release_host(host); 2541da177e4SLinus Torvalds nlm_release_file(file); 2551da177e4SLinus Torvalds return rpc_success; 2561da177e4SLinus Torvalds } 2571da177e4SLinus Torvalds 258a6beb732SChristoph Hellwig static __be32 259a6beb732SChristoph Hellwig nlmsvc_proc_unlock(struct svc_rqst *rqstp) 260a6beb732SChristoph Hellwig { 261a6beb732SChristoph Hellwig return __nlmsvc_proc_unlock(rqstp, rqstp->rq_resp); 262a6beb732SChristoph Hellwig } 263a6beb732SChristoph Hellwig 2641da177e4SLinus Torvalds /* 2651da177e4SLinus Torvalds * GRANTED: A server calls us to tell that a process' lock request 2661da177e4SLinus Torvalds * was granted 2671da177e4SLinus Torvalds */ 2687111c66eSAl Viro static __be32 269a6beb732SChristoph Hellwig __nlmsvc_proc_granted(struct svc_rqst *rqstp, struct nlm_res *resp) 2701da177e4SLinus Torvalds { 271a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 272a6beb732SChristoph Hellwig 2731da177e4SLinus Torvalds resp->cookie = argp->cookie; 2741da177e4SLinus Torvalds 2751da177e4SLinus Torvalds dprintk("lockd: GRANTED called\n"); 276dcff09f1SChuck Lever resp->status = nlmclnt_grant(svc_addr(rqstp), &argp->lock); 2771da177e4SLinus Torvalds dprintk("lockd: GRANTED status %d\n", ntohl(resp->status)); 2781da177e4SLinus Torvalds return rpc_success; 2791da177e4SLinus Torvalds } 2801da177e4SLinus Torvalds 281a6beb732SChristoph Hellwig static __be32 282a6beb732SChristoph Hellwig nlmsvc_proc_granted(struct svc_rqst *rqstp) 283a6beb732SChristoph Hellwig { 284a6beb732SChristoph Hellwig return __nlmsvc_proc_granted(rqstp, rqstp->rq_resp); 285a6beb732SChristoph Hellwig } 286a6beb732SChristoph Hellwig 2871da177e4SLinus Torvalds /* 288d4716624STrond Myklebust * This is the generic lockd callback for async RPC calls 289d4716624STrond Myklebust */ 290d4716624STrond Myklebust static void nlmsvc_callback_exit(struct rpc_task *task, void *data) 291d4716624STrond Myklebust { 292c041b5ffSChuck Lever dprintk("lockd: %5u callback returned %d\n", task->tk_pid, 293d4716624STrond Myklebust -task->tk_status); 294d4716624STrond Myklebust } 295d4716624STrond Myklebust 2967db836d4SChuck Lever void nlmsvc_release_call(struct nlm_rqst *call) 2977db836d4SChuck Lever { 298*fbca30c5SElena Reshetova if (!refcount_dec_and_test(&call->a_count)) 2997db836d4SChuck Lever return; 30067216b94SChuck Lever nlmsvc_release_host(call->a_host); 3017db836d4SChuck Lever kfree(call); 3027db836d4SChuck Lever } 3037db836d4SChuck Lever 304d4716624STrond Myklebust static void nlmsvc_callback_release(void *data) 305d4716624STrond Myklebust { 3067db836d4SChuck Lever nlmsvc_release_call(data); 307d4716624STrond Myklebust } 308d4716624STrond Myklebust 309d4716624STrond Myklebust static const struct rpc_call_ops nlmsvc_callback_ops = { 310d4716624STrond Myklebust .rpc_call_done = nlmsvc_callback_exit, 311d4716624STrond Myklebust .rpc_release = nlmsvc_callback_release, 312d4716624STrond Myklebust }; 313d4716624STrond Myklebust 314d4716624STrond Myklebust /* 3151da177e4SLinus Torvalds * `Async' versions of the above service routines. They aren't really, 3161da177e4SLinus Torvalds * because we send the callback before the reply proper. I hope this 3171da177e4SLinus Torvalds * doesn't break any clients. 3181da177e4SLinus Torvalds */ 319a6beb732SChristoph Hellwig static __be32 nlmsvc_callback(struct svc_rqst *rqstp, u32 proc, 320a6beb732SChristoph Hellwig __be32 (*func)(struct svc_rqst *, struct nlm_res *)) 321d4716624STrond Myklebust { 322a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 323d4716624STrond Myklebust struct nlm_host *host; 324d4716624STrond Myklebust struct nlm_rqst *call; 3257111c66eSAl Viro __be32 stat; 326d4716624STrond Myklebust 327db4e4c9aSOlaf Kirch host = nlmsvc_lookup_host(rqstp, 328db4e4c9aSOlaf Kirch argp->lock.caller, 329db4e4c9aSOlaf Kirch argp->lock.len); 330d4716624STrond Myklebust if (host == NULL) 331d4716624STrond Myklebust return rpc_system_err; 332d4716624STrond Myklebust 333d4716624STrond Myklebust call = nlm_alloc_call(host); 334446945abSAl Viro nlmsvc_release_host(host); 335d4716624STrond Myklebust if (call == NULL) 336d4716624STrond Myklebust return rpc_system_err; 337d4716624STrond Myklebust 338a6beb732SChristoph Hellwig stat = func(rqstp, &call->a_res); 339d4716624STrond Myklebust if (stat != 0) { 3407db836d4SChuck Lever nlmsvc_release_call(call); 341d4716624STrond Myklebust return stat; 342d4716624STrond Myklebust } 343d4716624STrond Myklebust 344d4716624STrond Myklebust call->a_flags = RPC_TASK_ASYNC; 345d4716624STrond Myklebust if (nlm_async_reply(call, proc, &nlmsvc_callback_ops) < 0) 346d4716624STrond Myklebust return rpc_system_err; 347d4716624STrond Myklebust return rpc_success; 348d4716624STrond Myklebust } 349d4716624STrond Myklebust 350a6beb732SChristoph Hellwig static __be32 nlmsvc_proc_test_msg(struct svc_rqst *rqstp) 3511da177e4SLinus Torvalds { 3521da177e4SLinus Torvalds dprintk("lockd: TEST_MSG called\n"); 353a6beb732SChristoph Hellwig return nlmsvc_callback(rqstp, NLMPROC_TEST_RES, __nlmsvc_proc_test); 3541da177e4SLinus Torvalds } 3551da177e4SLinus Torvalds 356a6beb732SChristoph Hellwig static __be32 nlmsvc_proc_lock_msg(struct svc_rqst *rqstp) 3571da177e4SLinus Torvalds { 3581da177e4SLinus Torvalds dprintk("lockd: LOCK_MSG called\n"); 359a6beb732SChristoph Hellwig return nlmsvc_callback(rqstp, NLMPROC_LOCK_RES, __nlmsvc_proc_lock); 3601da177e4SLinus Torvalds } 3611da177e4SLinus Torvalds 362a6beb732SChristoph Hellwig static __be32 nlmsvc_proc_cancel_msg(struct svc_rqst *rqstp) 3631da177e4SLinus Torvalds { 3641da177e4SLinus Torvalds dprintk("lockd: CANCEL_MSG called\n"); 365a6beb732SChristoph Hellwig return nlmsvc_callback(rqstp, NLMPROC_CANCEL_RES, __nlmsvc_proc_cancel); 3661da177e4SLinus Torvalds } 3671da177e4SLinus Torvalds 3687111c66eSAl Viro static __be32 369a6beb732SChristoph Hellwig nlmsvc_proc_unlock_msg(struct svc_rqst *rqstp) 3701da177e4SLinus Torvalds { 3711da177e4SLinus Torvalds dprintk("lockd: UNLOCK_MSG called\n"); 372a6beb732SChristoph Hellwig return nlmsvc_callback(rqstp, NLMPROC_UNLOCK_RES, __nlmsvc_proc_unlock); 3731da177e4SLinus Torvalds } 3741da177e4SLinus Torvalds 3757111c66eSAl Viro static __be32 376a6beb732SChristoph Hellwig nlmsvc_proc_granted_msg(struct svc_rqst *rqstp) 3771da177e4SLinus Torvalds { 3781da177e4SLinus Torvalds dprintk("lockd: GRANTED_MSG called\n"); 379a6beb732SChristoph Hellwig return nlmsvc_callback(rqstp, NLMPROC_GRANTED_RES, __nlmsvc_proc_granted); 3801da177e4SLinus Torvalds } 3811da177e4SLinus Torvalds 3821da177e4SLinus Torvalds /* 3831da177e4SLinus Torvalds * SHARE: create a DOS share or alter existing share. 3841da177e4SLinus Torvalds */ 3857111c66eSAl Viro static __be32 386a6beb732SChristoph Hellwig nlmsvc_proc_share(struct svc_rqst *rqstp) 3871da177e4SLinus Torvalds { 388a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 389a6beb732SChristoph Hellwig struct nlm_res *resp = rqstp->rq_resp; 3901da177e4SLinus Torvalds struct nlm_host *host; 3911da177e4SLinus Torvalds struct nlm_file *file; 3921da177e4SLinus Torvalds 3931da177e4SLinus Torvalds dprintk("lockd: SHARE called\n"); 3941da177e4SLinus Torvalds 3951da177e4SLinus Torvalds resp->cookie = argp->cookie; 3961da177e4SLinus Torvalds 3971da177e4SLinus Torvalds /* Don't accept new lock requests during grace period */ 3985ccb0066SStanislav Kinsbursky if (locks_in_grace(SVC_NET(rqstp)) && !argp->reclaim) { 3991da177e4SLinus Torvalds resp->status = nlm_lck_denied_grace_period; 4001da177e4SLinus Torvalds return rpc_success; 4011da177e4SLinus Torvalds } 4021da177e4SLinus Torvalds 4031da177e4SLinus Torvalds /* Obtain client and file */ 4041da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 405d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 4061da177e4SLinus Torvalds 4071da177e4SLinus Torvalds /* Now try to create the share */ 4081da177e4SLinus Torvalds resp->status = cast_status(nlmsvc_share_file(host, file, argp)); 4091da177e4SLinus Torvalds 4101da177e4SLinus Torvalds dprintk("lockd: SHARE status %d\n", ntohl(resp->status)); 41167216b94SChuck Lever nlmsvc_release_host(host); 4121da177e4SLinus Torvalds nlm_release_file(file); 4131da177e4SLinus Torvalds return rpc_success; 4141da177e4SLinus Torvalds } 4151da177e4SLinus Torvalds 4161da177e4SLinus Torvalds /* 4171da177e4SLinus Torvalds * UNSHARE: Release a DOS share. 4181da177e4SLinus Torvalds */ 4197111c66eSAl Viro static __be32 420a6beb732SChristoph Hellwig nlmsvc_proc_unshare(struct svc_rqst *rqstp) 4211da177e4SLinus Torvalds { 422a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 423a6beb732SChristoph Hellwig struct nlm_res *resp = rqstp->rq_resp; 4241da177e4SLinus Torvalds struct nlm_host *host; 4251da177e4SLinus Torvalds struct nlm_file *file; 4261da177e4SLinus Torvalds 4271da177e4SLinus Torvalds dprintk("lockd: UNSHARE called\n"); 4281da177e4SLinus Torvalds 4291da177e4SLinus Torvalds resp->cookie = argp->cookie; 4301da177e4SLinus Torvalds 4311da177e4SLinus Torvalds /* Don't accept requests during grace period */ 4325ccb0066SStanislav Kinsbursky if (locks_in_grace(SVC_NET(rqstp))) { 4331da177e4SLinus Torvalds resp->status = nlm_lck_denied_grace_period; 4341da177e4SLinus Torvalds return rpc_success; 4351da177e4SLinus Torvalds } 4361da177e4SLinus Torvalds 4371da177e4SLinus Torvalds /* Obtain client and file */ 4381da177e4SLinus Torvalds if ((resp->status = nlmsvc_retrieve_args(rqstp, argp, &host, &file))) 439d343fce1SNeilBrown return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success; 4401da177e4SLinus Torvalds 4411da177e4SLinus Torvalds /* Now try to unshare the file */ 4421da177e4SLinus Torvalds resp->status = cast_status(nlmsvc_unshare_file(host, file, argp)); 4431da177e4SLinus Torvalds 4441da177e4SLinus Torvalds dprintk("lockd: UNSHARE status %d\n", ntohl(resp->status)); 44567216b94SChuck Lever nlmsvc_release_host(host); 4461da177e4SLinus Torvalds nlm_release_file(file); 4471da177e4SLinus Torvalds return rpc_success; 4481da177e4SLinus Torvalds } 4491da177e4SLinus Torvalds 4501da177e4SLinus Torvalds /* 4511da177e4SLinus Torvalds * NM_LOCK: Create an unmonitored lock 4521da177e4SLinus Torvalds */ 4537111c66eSAl Viro static __be32 454a6beb732SChristoph Hellwig nlmsvc_proc_nm_lock(struct svc_rqst *rqstp) 4551da177e4SLinus Torvalds { 456a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 457a6beb732SChristoph Hellwig 4581da177e4SLinus Torvalds dprintk("lockd: NM_LOCK called\n"); 4591da177e4SLinus Torvalds 4601da177e4SLinus Torvalds argp->monitor = 0; /* just clean the monitor flag */ 461a6beb732SChristoph Hellwig return nlmsvc_proc_lock(rqstp); 4621da177e4SLinus Torvalds } 4631da177e4SLinus Torvalds 4641da177e4SLinus Torvalds /* 4651da177e4SLinus Torvalds * FREE_ALL: Release all locks and shares held by client 4661da177e4SLinus Torvalds */ 4677111c66eSAl Viro static __be32 468a6beb732SChristoph Hellwig nlmsvc_proc_free_all(struct svc_rqst *rqstp) 4691da177e4SLinus Torvalds { 470a6beb732SChristoph Hellwig struct nlm_args *argp = rqstp->rq_argp; 4711da177e4SLinus Torvalds struct nlm_host *host; 4721da177e4SLinus Torvalds 4731da177e4SLinus Torvalds /* Obtain client */ 4741da177e4SLinus Torvalds if (nlmsvc_retrieve_args(rqstp, argp, &host, NULL)) 4751da177e4SLinus Torvalds return rpc_success; 4761da177e4SLinus Torvalds 4771da177e4SLinus Torvalds nlmsvc_free_host_resources(host); 47867216b94SChuck Lever nlmsvc_release_host(host); 4791da177e4SLinus Torvalds return rpc_success; 4801da177e4SLinus Torvalds } 4811da177e4SLinus Torvalds 4821da177e4SLinus Torvalds /* 4831da177e4SLinus Torvalds * SM_NOTIFY: private callback from statd (not part of official NLM proto) 4841da177e4SLinus Torvalds */ 4857111c66eSAl Viro static __be32 486a6beb732SChristoph Hellwig nlmsvc_proc_sm_notify(struct svc_rqst *rqstp) 4871da177e4SLinus Torvalds { 488a6beb732SChristoph Hellwig struct nlm_reboot *argp = rqstp->rq_argp; 489a6beb732SChristoph Hellwig 4901da177e4SLinus Torvalds dprintk("lockd: SM_NOTIFY called\n"); 491b85e4676SChuck Lever 492b85e4676SChuck Lever if (!nlm_privileged_requester(rqstp)) { 493ad06e4bdSChuck Lever char buf[RPC_MAX_ADDRBUFLEN]; 494ad06e4bdSChuck Lever printk(KERN_WARNING "lockd: rejected NSM callback from %s\n", 495ad06e4bdSChuck Lever svc_print_addr(rqstp, buf, sizeof(buf))); 4961da177e4SLinus Torvalds return rpc_system_err; 4971da177e4SLinus Torvalds } 4981da177e4SLinus Torvalds 4990ad95472SAndrey Ryabinin nlm_host_rebooted(SVC_NET(rqstp), argp); 5001da177e4SLinus Torvalds return rpc_success; 5011da177e4SLinus Torvalds } 5021da177e4SLinus Torvalds 5031da177e4SLinus Torvalds /* 5041da177e4SLinus Torvalds * client sent a GRANTED_RES, let's remove the associated block 5051da177e4SLinus Torvalds */ 5067111c66eSAl Viro static __be32 507a6beb732SChristoph Hellwig nlmsvc_proc_granted_res(struct svc_rqst *rqstp) 5081da177e4SLinus Torvalds { 509a6beb732SChristoph Hellwig struct nlm_res *argp = rqstp->rq_argp; 510a6beb732SChristoph Hellwig 5111da177e4SLinus Torvalds if (!nlmsvc_ops) 5121da177e4SLinus Torvalds return rpc_success; 5131da177e4SLinus Torvalds 5141da177e4SLinus Torvalds dprintk("lockd: GRANTED_RES called\n"); 5151da177e4SLinus Torvalds 51639be4502SOlaf Kirch nlmsvc_grant_reply(&argp->cookie, argp->status); 5171da177e4SLinus Torvalds return rpc_success; 5181da177e4SLinus Torvalds } 5191da177e4SLinus Torvalds 5201da177e4SLinus Torvalds /* 5211da177e4SLinus Torvalds * NLM Server procedures. 5221da177e4SLinus Torvalds */ 5231da177e4SLinus Torvalds 5241da177e4SLinus Torvalds #define nlmsvc_encode_norep nlmsvc_encode_void 5251da177e4SLinus Torvalds #define nlmsvc_decode_norep nlmsvc_decode_void 5261da177e4SLinus Torvalds #define nlmsvc_decode_testres nlmsvc_decode_void 5271da177e4SLinus Torvalds #define nlmsvc_decode_lockres nlmsvc_decode_void 5281da177e4SLinus Torvalds #define nlmsvc_decode_unlockres nlmsvc_decode_void 5291da177e4SLinus Torvalds #define nlmsvc_decode_cancelres nlmsvc_decode_void 5301da177e4SLinus Torvalds #define nlmsvc_decode_grantedres nlmsvc_decode_void 5311da177e4SLinus Torvalds 5321da177e4SLinus Torvalds #define nlmsvc_proc_none nlmsvc_proc_null 5331da177e4SLinus Torvalds #define nlmsvc_proc_test_res nlmsvc_proc_null 5341da177e4SLinus Torvalds #define nlmsvc_proc_lock_res nlmsvc_proc_null 5351da177e4SLinus Torvalds #define nlmsvc_proc_cancel_res nlmsvc_proc_null 5361da177e4SLinus Torvalds #define nlmsvc_proc_unlock_res nlmsvc_proc_null 5371da177e4SLinus Torvalds 5381da177e4SLinus Torvalds struct nlm_void { int dummy; }; 5391da177e4SLinus Torvalds 5401da177e4SLinus Torvalds #define PROC(name, xargt, xrest, argt, rest, respsize) \ 541a6beb732SChristoph Hellwig { .pc_func = nlmsvc_proc_##name, \ 542026fec7eSChristoph Hellwig .pc_decode = nlmsvc_decode_##xargt, \ 54363f8de37SChristoph Hellwig .pc_encode = nlmsvc_encode_##xrest, \ 5441da177e4SLinus Torvalds .pc_release = NULL, \ 5451da177e4SLinus Torvalds .pc_argsize = sizeof(struct nlm_##argt), \ 5461da177e4SLinus Torvalds .pc_ressize = sizeof(struct nlm_##rest), \ 5471da177e4SLinus Torvalds .pc_xdrressize = respsize, \ 5481da177e4SLinus Torvalds } 5491da177e4SLinus Torvalds 5501da177e4SLinus Torvalds #define Ck (1+XDR_QUADLEN(NLM_MAXCOOKIELEN)) /* cookie */ 5511da177e4SLinus Torvalds #define St 1 /* status */ 5521da177e4SLinus Torvalds #define No (1+1024/4) /* Net Obj */ 5531da177e4SLinus Torvalds #define Rg 2 /* range - offset + size */ 5541da177e4SLinus Torvalds 555860bda29SChristoph Hellwig const struct svc_procedure nlmsvc_procedures[] = { 5561da177e4SLinus Torvalds PROC(null, void, void, void, void, 1), 5571da177e4SLinus Torvalds PROC(test, testargs, testres, args, res, Ck+St+2+No+Rg), 5581da177e4SLinus Torvalds PROC(lock, lockargs, res, args, res, Ck+St), 5591da177e4SLinus Torvalds PROC(cancel, cancargs, res, args, res, Ck+St), 5601da177e4SLinus Torvalds PROC(unlock, unlockargs, res, args, res, Ck+St), 5611da177e4SLinus Torvalds PROC(granted, testargs, res, args, res, Ck+St), 5621da177e4SLinus Torvalds PROC(test_msg, testargs, norep, args, void, 1), 5631da177e4SLinus Torvalds PROC(lock_msg, lockargs, norep, args, void, 1), 5641da177e4SLinus Torvalds PROC(cancel_msg, cancargs, norep, args, void, 1), 5651da177e4SLinus Torvalds PROC(unlock_msg, unlockargs, norep, args, void, 1), 5661da177e4SLinus Torvalds PROC(granted_msg, testargs, norep, args, void, 1), 5671da177e4SLinus Torvalds PROC(test_res, testres, norep, res, void, 1), 5681da177e4SLinus Torvalds PROC(lock_res, lockres, norep, res, void, 1), 5691da177e4SLinus Torvalds PROC(cancel_res, cancelres, norep, res, void, 1), 5701da177e4SLinus Torvalds PROC(unlock_res, unlockres, norep, res, void, 1), 5711da177e4SLinus Torvalds PROC(granted_res, res, norep, res, void, 1), 5721da177e4SLinus Torvalds /* statd callback */ 5731da177e4SLinus Torvalds PROC(sm_notify, reboot, void, reboot, void, 1), 5741da177e4SLinus Torvalds PROC(none, void, void, void, void, 1), 5751da177e4SLinus Torvalds PROC(none, void, void, void, void, 1), 5761da177e4SLinus Torvalds PROC(none, void, void, void, void, 1), 5771da177e4SLinus Torvalds PROC(share, shareargs, shareres, args, res, Ck+St+1), 5781da177e4SLinus Torvalds PROC(unshare, shareargs, shareres, args, res, Ck+St+1), 5791da177e4SLinus Torvalds PROC(nm_lock, lockargs, res, args, res, Ck+St), 5801da177e4SLinus Torvalds PROC(free_all, notify, void, args, void, 0), 5811da177e4SLinus Torvalds 5821da177e4SLinus Torvalds }; 583