blob: 812bc64874f6a46e99ac61529508d37d4d0a189a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfsd/lockd.c
3 *
4 * This file contains all the stubs needed when communicating with lockd.
5 * This level of indirection is necessary so we can run nfsd+lockd without
6 * requiring the nfs client to be compiled in/loaded, and vice versa.
7 *
8 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
9 */
10
11#include <linux/types.h>
12#include <linux/fs.h>
13#include <linux/file.h>
14#include <linux/mount.h>
15#include <linux/sunrpc/clnt.h>
16#include <linux/sunrpc/svc.h>
17#include <linux/nfsd/nfsd.h>
18#include <linux/lockd/bind.h>
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050019#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#define NFSDDBG_FACILITY NFSDDBG_LOCKD
22
Miklos Szeredicc77b152008-07-25 01:48:55 -070023#ifdef CONFIG_LOCKD_V4
24#define nlm_stale_fh nlm4_stale_fh
25#define nlm_failed nlm4_failed
26#else
27#define nlm_stale_fh nlm_lck_denied_nolocks
28#define nlm_failed nlm_lck_denied_nolocks
29#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
31 * Note: we hold the dentry use count while the file is open.
32 */
Al Viroe8c5c042006-12-13 00:35:03 -080033static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070034nlm_fopen(struct svc_rqst *rqstp, struct nfs_fh *f, struct file **filp)
35{
Al Viroc7afef12006-10-19 23:29:02 -070036 __be32 nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 struct svc_fh fh;
38
39 /* must initialize before using! but maxsize doesn't matter */
40 fh_init(&fh,0);
41 fh.fh_handle.fh_size = f->size;
42 memcpy((char*)&fh.fh_handle.fh_base, f->data, f->size);
43 fh.fh_export = NULL;
44
45 exp_readlock();
Miklos Szeredi8837abc2008-06-16 13:20:29 +020046 nfserr = nfsd_open(rqstp, &fh, S_IFREG, NFSD_MAY_LOCK, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 fh_put(&fh);
48 rqstp->rq_client = NULL;
49 exp_readunlock();
NeilBrownd343fce2006-10-17 00:10:18 -070050 /* We return nlm error codes as nlm doesn't know
51 * about nfsd, but nfsd does know about nlm..
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 */
53 switch (nfserr) {
54 case nfs_ok:
55 return 0;
NeilBrownd343fce2006-10-17 00:10:18 -070056 case nfserr_dropit:
57 return nlm_drop_reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 case nfserr_stale:
Miklos Szeredicc77b152008-07-25 01:48:55 -070059 return nlm_stale_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 default:
Miklos Szeredicc77b152008-07-25 01:48:55 -070061 return nlm_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 }
63}
64
65static void
66nlm_fclose(struct file *filp)
67{
68 fput(filp);
69}
70
71static struct nlmsvc_binding nfsd_nlm_ops = {
72 .fopen = nlm_fopen, /* open file for locking */
73 .fclose = nlm_fclose, /* close file */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
76void
77nfsd_lockd_init(void)
78{
79 dprintk("nfsd: initializing lockd\n");
80 nlmsvc_ops = &nfsd_nlm_ops;
81}
82
83void
84nfsd_lockd_shutdown(void)
85{
86 nlmsvc_ops = NULL;
87}