blob: 05728396a1a18f701f5bba8075be5301e6a89e4e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/linux/lockd/bind.h
3 *
4 * This is the part of lockd visible to nfsd and the nfs client.
5 *
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8
9#ifndef LINUX_LOCKD_BIND_H
10#define LINUX_LOCKD_BIND_H
11
12#include <linux/lockd/nlm.h>
NeilBrownd343fce2006-10-17 00:10:18 -070013/* need xdr-encoded error codes too, so... */
14#include <linux/lockd/xdr.h>
15#ifdef CONFIG_LOCKD_V4
16#include <linux/lockd/xdr4.h>
17#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19/* Dummy declarations */
20struct svc_rqst;
Benjamin Coddingtonb1ece732017-04-11 12:50:11 -040021struct rpc_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23/*
24 * This is the set of functions for lockd->nfsd communication
25 */
26struct nlmsvc_binding {
Al Viroe8c5c042006-12-13 00:35:03 -080027 __be32 (*fopen)(struct svc_rqst *,
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 struct nfs_fh *,
29 struct file **);
30 void (*fclose)(struct file *);
31};
32
Julia Lawall2a297452015-12-23 22:25:13 +010033extern const struct nlmsvc_binding *nlmsvc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/*
Chuck Lever883bb162008-01-15 16:04:20 -050036 * Similar to nfs_client_initdata, but without the NFS-specific
37 * rpc_ops field.
38 */
39struct nlmclnt_initdata {
40 const char *hostname;
41 const struct sockaddr *address;
42 size_t addrlen;
43 unsigned short protocol;
44 u32 nfs_version;
Chuck Lever0cb26592008-12-23 15:21:38 -050045 int noresvport;
Stanislav Kinsbursky66697bf2012-01-31 15:08:13 +040046 struct net *net;
Benjamin Coddingtonb1ece732017-04-11 12:50:11 -040047 const struct nlmclnt_operations *nlmclnt_ops;
Chuck Lever883bb162008-01-15 16:04:20 -050048};
49
50/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * Functions exported by the lockd module
52 */
Chuck Lever883bb162008-01-15 16:04:20 -050053
54extern struct nlm_host *nlmclnt_init(const struct nlmclnt_initdata *nlm_init);
Chuck Lever52c40442008-01-11 17:09:44 -050055extern void nlmclnt_done(struct nlm_host *host);
56
Benjamin Coddingtonb1ece732017-04-11 12:50:11 -040057/*
58 * NLM client operations provide a means to modify RPC processing of NLM
59 * requests. Callbacks receive a pointer to data passed into the call to
60 * nlmclnt_proc().
61 */
62struct nlmclnt_operations {
63 /* Called on successful allocation of nlm_rqst, use for allocation or
64 * reference counting. */
65 void (*nlmclnt_alloc_call)(void *);
66
67 /* Called in rpc_task_prepare for unlock. A return value of true
68 * indicates the callback has put the task to sleep on a waitqueue
69 * and NLM should not call rpc_call_start(). */
70 bool (*nlmclnt_unlock_prepare)(struct rpc_task*, void *);
71
72 /* Called when the nlm_rqst is freed, callbacks should clean up here */
73 void (*nlmclnt_release_call)(void *);
74};
75
76extern int nlmclnt_proc(struct nlm_host *host, int cmd, struct file_lock *fl, void *data);
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +040077extern int lockd_up(struct net *net);
78extern void lockd_down(struct net *net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#endif /* LINUX_LOCKD_BIND_H */