blob: 1a03bc3059e84c6c399a1a5c79d4cc5e583ce220 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * This file contains all the stubs needed when communicating with lockd.
3 * This level of indirection is necessary so we can run nfsd+lockd without
4 * requiring the nfs client to be compiled in/loaded, and vice versa.
5 *
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/lockd/bind.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020011#include "nfsd.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050012#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#define NFSDDBG_FACILITY NFSDDBG_LOCKD
15
Miklos Szeredicc77b152008-07-25 01:48:55 -070016#ifdef CONFIG_LOCKD_V4
17#define nlm_stale_fh nlm4_stale_fh
18#define nlm_failed nlm4_failed
19#else
20#define nlm_stale_fh nlm_lck_denied_nolocks
21#define nlm_failed nlm_lck_denied_nolocks
22#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * Note: we hold the dentry use count while the file is open.
25 */
Al Viroe8c5c042006-12-13 00:35:03 -080026static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070027nlm_fopen(struct svc_rqst *rqstp, struct nfs_fh *f, struct file **filp)
28{
Al Viroc7afef12006-10-19 23:29:02 -070029 __be32 nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 struct svc_fh fh;
31
32 /* must initialize before using! but maxsize doesn't matter */
33 fh_init(&fh,0);
34 fh.fh_handle.fh_size = f->size;
35 memcpy((char*)&fh.fh_handle.fh_base, f->data, f->size);
36 fh.fh_export = NULL;
37
Miklos Szeredi8837abc2008-06-16 13:20:29 +020038 nfserr = nfsd_open(rqstp, &fh, S_IFREG, NFSD_MAY_LOCK, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 fh_put(&fh);
NeilBrownd343fce2006-10-17 00:10:18 -070040 /* We return nlm error codes as nlm doesn't know
41 * about nfsd, but nfsd does know about nlm..
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 */
43 switch (nfserr) {
44 case nfs_ok:
45 return 0;
NeilBrownd343fce2006-10-17 00:10:18 -070046 case nfserr_dropit:
47 return nlm_drop_reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 case nfserr_stale:
Miklos Szeredicc77b152008-07-25 01:48:55 -070049 return nlm_stale_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 default:
Miklos Szeredicc77b152008-07-25 01:48:55 -070051 return nlm_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 }
53}
54
55static void
56nlm_fclose(struct file *filp)
57{
58 fput(filp);
59}
60
Julia Lawall2a297452015-12-23 22:25:13 +010061static const struct nlmsvc_binding nfsd_nlm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 .fopen = nlm_fopen, /* open file for locking */
63 .fclose = nlm_fclose, /* close file */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66void
67nfsd_lockd_init(void)
68{
69 dprintk("nfsd: initializing lockd\n");
70 nlmsvc_ops = &nfsd_nlm_ops;
71}
72
73void
74nfsd_lockd_shutdown(void)
75{
76 nlmsvc_ops = NULL;
77}