| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 |  * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/file.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/lockd/bind.h> | 
| Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 11 | #include "nfsd.h" | 
| J. Bruce Fields | 0a3adad | 2009-11-04 18:12:35 -0500 | [diff] [blame] | 12 | #include "vfs.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 |  | 
 | 14 | #define NFSDDBG_FACILITY		NFSDDBG_LOCKD | 
 | 15 |  | 
| Miklos Szeredi | cc77b15 | 2008-07-25 01:48:55 -0700 | [diff] [blame] | 16 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | /* | 
 | 24 |  * Note: we hold the dentry use count while the file is open. | 
 | 25 |  */ | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 26 | static __be32 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | nlm_fopen(struct svc_rqst *rqstp, struct nfs_fh *f, struct file **filp) | 
 | 28 | { | 
| Al Viro | c7afef1 | 2006-10-19 23:29:02 -0700 | [diff] [blame] | 29 | 	__be32		nfserr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | 	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 |  | 
 | 38 | 	exp_readlock(); | 
| Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 39 | 	nfserr = nfsd_open(rqstp, &fh, S_IFREG, NFSD_MAY_LOCK, filp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | 	fh_put(&fh); | 
 | 41 | 	rqstp->rq_client = NULL; | 
 | 42 | 	exp_readunlock(); | 
| NeilBrown | d343fce | 2006-10-17 00:10:18 -0700 | [diff] [blame] | 43 |  	/* We return nlm error codes as nlm doesn't know | 
 | 44 | 	 * about nfsd, but nfsd does know about nlm.. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | 	 */ | 
 | 46 | 	switch (nfserr) { | 
 | 47 | 	case nfs_ok: | 
 | 48 | 		return 0; | 
| NeilBrown | d343fce | 2006-10-17 00:10:18 -0700 | [diff] [blame] | 49 | 	case nfserr_dropit: | 
 | 50 | 		return nlm_drop_reply; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | 	case nfserr_stale: | 
| Miklos Szeredi | cc77b15 | 2008-07-25 01:48:55 -0700 | [diff] [blame] | 52 | 		return nlm_stale_fh; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | 	default: | 
| Miklos Szeredi | cc77b15 | 2008-07-25 01:48:55 -0700 | [diff] [blame] | 54 | 		return nlm_failed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | 	} | 
 | 56 | } | 
 | 57 |  | 
 | 58 | static void | 
 | 59 | nlm_fclose(struct file *filp) | 
 | 60 | { | 
 | 61 | 	fput(filp); | 
 | 62 | } | 
 | 63 |  | 
 | 64 | static struct nlmsvc_binding	nfsd_nlm_ops = { | 
 | 65 | 	.fopen		= nlm_fopen,		/* open file for locking */ | 
 | 66 | 	.fclose		= nlm_fclose,		/* close file */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | }; | 
 | 68 |  | 
 | 69 | void | 
 | 70 | nfsd_lockd_init(void) | 
 | 71 | { | 
 | 72 | 	dprintk("nfsd: initializing lockd\n"); | 
 | 73 | 	nlmsvc_ops = &nfsd_nlm_ops; | 
 | 74 | } | 
 | 75 |  | 
 | 76 | void | 
 | 77 | nfsd_lockd_shutdown(void) | 
 | 78 | { | 
 | 79 | 	nlmsvc_ops = NULL; | 
 | 80 | } |