2 * linux/fs/nfsd/lockd.c
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.
8 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
11 #include <linux/types.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>
20 #define NFSDDBG_FACILITY NFSDDBG_LOCKD
23 * Note: we hold the dentry use count while the file is open.
26 nlm_fopen(struct svc_rqst *rqstp, struct nfs_fh *f, struct file **filp)
31 /* must initialize before using! but maxsize doesn't matter */
33 fh.fh_handle.fh_size = f->size;
34 memcpy((char*)&fh.fh_handle.fh_base, f->data, f->size);
38 nfserr = nfsd_open(rqstp, &fh, S_IFREG, MAY_LOCK, filp);
40 rqstp->rq_client = NULL;
42 /* nlm and nfsd don't share error codes.
43 * we invent: 0 = no error
44 * 1 = stale file handle
58 nlm_fclose(struct file *filp)
63 static struct nlmsvc_binding nfsd_nlm_ops = {
64 .fopen = nlm_fopen, /* open file for locking */
65 .fclose = nlm_fclose, /* close file */
71 dprintk("nfsd: initializing lockd\n");
72 nlmsvc_ops = &nfsd_nlm_ops;
76 nfsd_lockd_shutdown(void)