blob: 6f12777ed2277d2d9bc9a9ce53644d536487d43f [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/lockd/bind.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020013#include "nfsd.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050014#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#define NFSDDBG_FACILITY NFSDDBG_LOCKD
17
Miklos Szeredicc77b152008-07-25 01:48:55 -070018#ifdef CONFIG_LOCKD_V4
19#define nlm_stale_fh nlm4_stale_fh
20#define nlm_failed nlm4_failed
21#else
22#define nlm_stale_fh nlm_lck_denied_nolocks
23#define nlm_failed nlm_lck_denied_nolocks
24#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/*
26 * Note: we hold the dentry use count while the file is open.
27 */
Al Viroe8c5c042006-12-13 00:35:03 -080028static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070029nlm_fopen(struct svc_rqst *rqstp, struct nfs_fh *f, struct file **filp)
30{
Al Viroc7afef12006-10-19 23:29:02 -070031 __be32 nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 struct svc_fh fh;
33
34 /* must initialize before using! but maxsize doesn't matter */
35 fh_init(&fh,0);
36 fh.fh_handle.fh_size = f->size;
37 memcpy((char*)&fh.fh_handle.fh_base, f->data, f->size);
38 fh.fh_export = NULL;
39
40 exp_readlock();
Miklos Szeredi8837abc2008-06-16 13:20:29 +020041 nfserr = nfsd_open(rqstp, &fh, S_IFREG, NFSD_MAY_LOCK, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 fh_put(&fh);
43 rqstp->rq_client = NULL;
44 exp_readunlock();
NeilBrownd343fce2006-10-17 00:10:18 -070045 /* We return nlm error codes as nlm doesn't know
46 * about nfsd, but nfsd does know about nlm..
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 */
48 switch (nfserr) {
49 case nfs_ok:
50 return 0;
NeilBrownd343fce2006-10-17 00:10:18 -070051 case nfserr_dropit:
52 return nlm_drop_reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 case nfserr_stale:
Miklos Szeredicc77b152008-07-25 01:48:55 -070054 return nlm_stale_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 default:
Miklos Szeredicc77b152008-07-25 01:48:55 -070056 return nlm_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 }
58}
59
60static void
61nlm_fclose(struct file *filp)
62{
63 fput(filp);
64}
65
66static struct nlmsvc_binding nfsd_nlm_ops = {
67 .fopen = nlm_fopen, /* open file for locking */
68 .fclose = nlm_fclose, /* close file */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
71void
72nfsd_lockd_init(void)
73{
74 dprintk("nfsd: initializing lockd\n");
75 nlmsvc_ops = &nfsd_nlm_ops;
76}
77
78void
79nfsd_lockd_shutdown(void)
80{
81 nlmsvc_ops = NULL;
82}