| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 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> | 
|  | 19 |  | 
|  | 20 | #define NFSDDBG_FACILITY		NFSDDBG_LOCKD | 
|  | 21 |  | 
| Miklos Szeredi | cc77b15 | 2008-07-25 01:48:55 -0700 | [diff] [blame] | 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 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | /* | 
|  | 30 | * Note: we hold the dentry use count while the file is open. | 
|  | 31 | */ | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 32 | static __be32 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | nlm_fopen(struct svc_rqst *rqstp, struct nfs_fh *f, struct file **filp) | 
|  | 34 | { | 
| Al Viro | c7afef1 | 2006-10-19 23:29:02 -0700 | [diff] [blame] | 35 | __be32		nfserr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | struct svc_fh	fh; | 
|  | 37 |  | 
|  | 38 | /* must initialize before using! but maxsize doesn't matter */ | 
|  | 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(); | 
| Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 45 | nfserr = nfsd_open(rqstp, &fh, S_IFREG, NFSD_MAY_LOCK, filp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | fh_put(&fh); | 
|  | 47 | rqstp->rq_client = NULL; | 
|  | 48 | exp_readunlock(); | 
| NeilBrown | d343fce | 2006-10-17 00:10:18 -0700 | [diff] [blame] | 49 | /* We return nlm error codes as nlm doesn't know | 
|  | 50 | * about nfsd, but nfsd does know about nlm.. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | */ | 
|  | 52 | switch (nfserr) { | 
|  | 53 | case nfs_ok: | 
|  | 54 | return 0; | 
| NeilBrown | d343fce | 2006-10-17 00:10:18 -0700 | [diff] [blame] | 55 | case nfserr_dropit: | 
|  | 56 | return nlm_drop_reply; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | case nfserr_stale: | 
| Miklos Szeredi | cc77b15 | 2008-07-25 01:48:55 -0700 | [diff] [blame] | 58 | return nlm_stale_fh; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | default: | 
| Miklos Szeredi | cc77b15 | 2008-07-25 01:48:55 -0700 | [diff] [blame] | 60 | return nlm_failed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | } | 
|  | 62 | } | 
|  | 63 |  | 
|  | 64 | static void | 
|  | 65 | nlm_fclose(struct file *filp) | 
|  | 66 | { | 
|  | 67 | fput(filp); | 
|  | 68 | } | 
|  | 69 |  | 
|  | 70 | static struct nlmsvc_binding	nfsd_nlm_ops = { | 
|  | 71 | .fopen		= nlm_fopen,		/* open file for locking */ | 
|  | 72 | .fclose		= nlm_fclose,		/* close file */ | 
| Marc Eshel | 9a8db97 | 2007-07-17 04:04:35 -0700 | [diff] [blame] | 73 | .get_grace_period = get_nfs4_grace_period, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | }; | 
|  | 75 |  | 
|  | 76 | void | 
|  | 77 | nfsd_lockd_init(void) | 
|  | 78 | { | 
|  | 79 | dprintk("nfsd: initializing lockd\n"); | 
|  | 80 | nlmsvc_ops = &nfsd_nlm_ops; | 
|  | 81 | } | 
|  | 82 |  | 
|  | 83 | void | 
|  | 84 | nfsd_lockd_shutdown(void) | 
|  | 85 | { | 
|  | 86 | nlmsvc_ops = NULL; | 
|  | 87 | } |