1
2
3
4
5
6
7
8
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>
19
20#define NFSDDBG_FACILITY NFSDDBG_LOCKD
21
22#ifdef CONFIG_LOCKD_V4
23#define nlm_stale_fh nlm4_stale_fh
24#define nlm_failed nlm4_failed
25#else
26#define nlm_stale_fh nlm_lck_denied_nolocks
27#define nlm_failed nlm_lck_denied_nolocks
28#endif
29
30
31
32static __be32
33nlm_fopen(struct svc_rqst *rqstp, struct nfs_fh *f, struct file **filp)
34{
35 __be32 nfserr;
36 struct svc_fh fh;
37
38
39 fh_init(&fh,0);
40 fh.fh_handle.fh_size = f->size;
41 memcpy((char*)&fh.fh_handle.fh_base, f->data, f->size);
42 fh.fh_export = NULL;
43
44 exp_readlock();
45 nfserr = nfsd_open(rqstp, &fh, S_IFREG, NFSD_MAY_LOCK, filp);
46 fh_put(&fh);
47 rqstp->rq_client = NULL;
48 exp_readunlock();
49
50
51
52 switch (nfserr) {
53 case nfs_ok:
54 return 0;
55 case nfserr_dropit:
56 return nlm_drop_reply;
57 case nfserr_stale:
58 return nlm_stale_fh;
59 default:
60 return nlm_failed;
61 }
62}
63
64static void
65nlm_fclose(struct file *filp)
66{
67 fput(filp);
68}
69
70static struct nlmsvc_binding nfsd_nlm_ops = {
71 .fopen = nlm_fopen,
72 .fclose = nlm_fclose,
73};
74
75void
76nfsd_lockd_init(void)
77{
78 dprintk("nfsd: initializing lockd\n");
79 nlmsvc_ops = &nfsd_nlm_ops;
80}
81
82void
83nfsd_lockd_shutdown(void)
84{
85 nlmsvc_ops = NULL;
86}
87