blob: a606fbbf804d8db025214ee0299c5b52e93fc1bc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/lockd/mon.c
3 *
4 * The kernel statd client.
5 *
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8
9#include <linux/types.h>
10#include <linux/utsname.h>
11#include <linux/kernel.h>
12#include <linux/sunrpc/clnt.h>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040013#include <linux/sunrpc/xprtsock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/sunrpc/svc.h>
15#include <linux/lockd/lockd.h>
16#include <linux/lockd/sm_inter.h>
17
18
19#define NLMDBG_FACILITY NLMDBG_MONITOR
20
21static struct rpc_clnt * nsm_create(void);
22
23static struct rpc_program nsm_program;
24
25/*
26 * Local NSM state
27 */
Olaf Kirch460f5ca2006-10-04 02:16:03 -070028int nsm_local_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/*
31 * Common procedure for SM_MON/SM_UNMON calls
32 */
33static int
Olaf Kirch9502c522006-10-04 02:15:56 -070034nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
36 struct rpc_clnt *clnt;
37 int status;
Chuck Levera4846752008-12-04 14:20:23 -050038 struct nsm_args args = {
39 .addr = nsm_addr_in(nsm)->sin_addr.s_addr,
40 .prog = NLM_PROGRAM,
41 .vers = 3,
42 .proc = NLMPROC_NSM_NOTIFY,
Chuck Lever29ed1402008-12-04 14:20:46 -050043 .mon_name = nsm->sm_mon_name,
Chuck Levera4846752008-12-04 14:20:23 -050044 };
Chuck Leverdead28d2006-03-20 13:44:23 -050045 struct rpc_message msg = {
46 .rpc_argp = &args,
47 .rpc_resp = res,
48 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 clnt = nsm_create();
51 if (IS_ERR(clnt)) {
52 status = PTR_ERR(clnt);
Chuck Lever5acf4312008-12-04 14:20:31 -050053 dprintk("lockd: failed to create NSM upcall transport, "
54 "status=%d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 goto out;
56 }
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 memset(res, 0, sizeof(*res));
59
Chuck Leverdead28d2006-03-20 13:44:23 -050060 msg.rpc_proc = &clnt->cl_procinfo[proc];
61 status = rpc_call_sync(clnt, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (status < 0)
Chuck Lever5acf4312008-12-04 14:20:31 -050063 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
64 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 else
66 status = 0;
Trond Myklebust90c57552007-06-09 19:49:36 -040067 rpc_shutdown_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 out:
69 return status;
70}
71
72/*
73 * Set up monitoring of a remote host
74 */
75int
76nsm_monitor(struct nlm_host *host)
77{
Olaf Kirch8dead0d2006-10-04 02:15:53 -070078 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct nsm_res res;
80 int status;
81
82 dprintk("lockd: nsm_monitor(%s)\n", host->h_name);
Olaf Kirch8dead0d2006-10-04 02:15:53 -070083 BUG_ON(nsm == NULL);
84
85 if (nsm->sm_monitored)
Olaf Kirch977faf32006-10-04 02:15:51 -070086 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Chuck Lever29ed1402008-12-04 14:20:46 -050088 /*
89 * Choose whether to record the caller_name or IP address of
90 * this peer in the local rpc.statd's database.
91 */
92 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
93
Olaf Kirch9502c522006-10-04 02:15:56 -070094 status = nsm_mon_unmon(nsm, SM_MON, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 if (status < 0 || res.status != 0)
97 printk(KERN_NOTICE "lockd: cannot monitor %s\n", host->h_name);
98 else
Olaf Kirch8dead0d2006-10-04 02:15:53 -070099 nsm->sm_monitored = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return status;
101}
102
103/*
104 * Cease to monitor remote host
105 */
106int
107nsm_unmonitor(struct nlm_host *host)
108{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700109 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 struct nsm_res res;
Olaf Kirch977faf32006-10-04 02:15:51 -0700111 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700113 if (nsm == NULL)
Olaf Kirch977faf32006-10-04 02:15:51 -0700114 return 0;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700115 host->h_nsmhandle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Olaf Kirch9502c522006-10-04 02:15:56 -0700117 if (atomic_read(&nsm->sm_count) == 1
118 && nsm->sm_monitored && !nsm->sm_sticky) {
119 dprintk("lockd: nsm_unmonitor(%s)\n", host->h_name);
120
121 status = nsm_mon_unmon(nsm, SM_UNMON, &res);
Olaf Kirch977faf32006-10-04 02:15:51 -0700122 if (status < 0)
Olaf Kirch9502c522006-10-04 02:15:56 -0700123 printk(KERN_NOTICE "lockd: cannot unmonitor %s\n",
124 host->h_name);
125 else
126 nsm->sm_monitored = 0;
Olaf Kirch977faf32006-10-04 02:15:51 -0700127 }
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700128 nsm_release(nsm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return status;
130}
131
132/*
133 * Create NSM client for the local host
134 */
135static struct rpc_clnt *
136nsm_create(void)
137{
Chuck Levere1ec7892006-08-22 20:06:20 -0400138 struct sockaddr_in sin = {
139 .sin_family = AF_INET,
140 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
141 .sin_port = 0,
142 };
143 struct rpc_create_args args = {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400144 .protocol = XPRT_TRANSPORT_UDP,
Chuck Levere1ec7892006-08-22 20:06:20 -0400145 .address = (struct sockaddr *)&sin,
146 .addrsize = sizeof(sin),
147 .servername = "localhost",
148 .program = &nsm_program,
149 .version = SM_VERSION,
150 .authflavor = RPC_AUTH_NULL,
Chuck Levere1ec7892006-08-22 20:06:20 -0400151 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Chuck Levere1ec7892006-08-22 20:06:20 -0400153 return rpc_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156/*
157 * XDR functions for NSM.
Chuck Lever2ca77542008-03-14 14:26:01 -0400158 *
159 * See http://www.opengroup.org/ for details on the Network
160 * Status Monitor wire protocol.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
162
Chuck Lever099bd052008-03-14 14:25:32 -0400163static __be32 *xdr_encode_nsm_string(__be32 *p, char *string)
164{
165 size_t len = strlen(string);
166
167 if (len > SM_MAXSTRLEN)
168 len = SM_MAXSTRLEN;
169 return xdr_encode_opaque(p, string, len);
170}
171
Chuck Lever49695172008-03-14 14:25:39 -0400172/*
173 * "mon_name" specifies the host to be monitored.
Chuck Lever49695172008-03-14 14:25:39 -0400174 */
175static __be32 *xdr_encode_mon_name(__be32 *p, struct nsm_args *argp)
176{
Chuck Lever29ed1402008-12-04 14:20:46 -0500177 return xdr_encode_nsm_string(p, argp->mon_name);
Chuck Lever49695172008-03-14 14:25:39 -0400178}
179
Chuck Lever850c95f2008-03-14 14:25:46 -0400180/*
181 * The "my_id" argument specifies the hostname and RPC procedure
182 * to be called when the status manager receives notification
183 * (via the SM_NOTIFY call) that the state of host "mon_name"
184 * has changed.
185 */
186static __be32 *xdr_encode_my_id(__be32 *p, struct nsm_args *argp)
187{
188 p = xdr_encode_nsm_string(p, utsname()->nodename);
189 if (!p)
190 return ERR_PTR(-EIO);
191
192 *p++ = htonl(argp->prog);
193 *p++ = htonl(argp->vers);
194 *p++ = htonl(argp->proc);
195
196 return p;
197}
198
Chuck Leverea72a7f2008-03-14 14:25:53 -0400199/*
200 * The "mon_id" argument specifies the non-private arguments
201 * of an SM_MON or SM_UNMON call.
202 */
203static __be32 *xdr_encode_mon_id(__be32 *p, struct nsm_args *argp)
204{
205 p = xdr_encode_mon_name(p, argp);
206 if (!p)
207 return ERR_PTR(-EIO);
208
209 return xdr_encode_my_id(p, argp);
210}
211
Chuck Lever0490a542008-03-14 14:26:08 -0400212/*
213 * The "priv" argument may contain private information required
214 * by the SM_MON call. This information will be supplied in the
215 * SM_NOTIFY call.
216 *
217 * Linux provides the raw IP address of the monitored host,
218 * left in network byte order.
219 */
220static __be32 *xdr_encode_priv(__be32 *p, struct nsm_args *argp)
221{
222 *p++ = argp->addr;
223 *p++ = 0;
224 *p++ = 0;
225 *p++ = 0;
226
227 return p;
228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230static int
Al Viro52921e02006-10-19 23:28:46 -0700231xdr_encode_mon(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Chuck Lever2ca77542008-03-14 14:26:01 -0400233 p = xdr_encode_mon_id(p, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (IS_ERR(p))
235 return PTR_ERR(p);
Olaf Kirch9502c522006-10-04 02:15:56 -0700236
Chuck Lever0490a542008-03-14 14:26:08 -0400237 p = xdr_encode_priv(p, argp);
238 if (IS_ERR(p))
239 return PTR_ERR(p);
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 rqstp->rq_slen = xdr_adjust_iovec(rqstp->rq_svec, p);
242 return 0;
243}
244
245static int
Al Viro52921e02006-10-19 23:28:46 -0700246xdr_encode_unmon(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Chuck Lever2ca77542008-03-14 14:26:01 -0400248 p = xdr_encode_mon_id(p, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (IS_ERR(p))
250 return PTR_ERR(p);
251 rqstp->rq_slen = xdr_adjust_iovec(rqstp->rq_svec, p);
252 return 0;
253}
254
255static int
Al Viro52921e02006-10-19 23:28:46 -0700256xdr_decode_stat_res(struct rpc_rqst *rqstp, __be32 *p, struct nsm_res *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 resp->status = ntohl(*p++);
259 resp->state = ntohl(*p++);
260 dprintk("nsm: xdr_decode_stat_res status %d state %d\n",
261 resp->status, resp->state);
262 return 0;
263}
264
265static int
Al Viro52921e02006-10-19 23:28:46 -0700266xdr_decode_stat(struct rpc_rqst *rqstp, __be32 *p, struct nsm_res *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 resp->state = ntohl(*p++);
269 return 0;
270}
271
272#define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
Chuck Lever2ca77542008-03-14 14:26:01 -0400273#define SM_my_id_sz (SM_my_name_sz+3)
274#define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
275#define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
Chuck Lever0490a542008-03-14 14:26:08 -0400276#define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
277#define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278#define SM_monres_sz 2
279#define SM_unmonres_sz 1
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281static struct rpc_procinfo nsm_procedures[] = {
282[SM_MON] = {
283 .p_proc = SM_MON,
284 .p_encode = (kxdrproc_t) xdr_encode_mon,
285 .p_decode = (kxdrproc_t) xdr_decode_stat_res,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400286 .p_arglen = SM_mon_sz,
287 .p_replen = SM_monres_sz,
Chuck Levercc0175c2006-03-20 13:44:22 -0500288 .p_statidx = SM_MON,
289 .p_name = "MONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 },
291[SM_UNMON] = {
292 .p_proc = SM_UNMON,
293 .p_encode = (kxdrproc_t) xdr_encode_unmon,
294 .p_decode = (kxdrproc_t) xdr_decode_stat,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400295 .p_arglen = SM_mon_id_sz,
296 .p_replen = SM_unmonres_sz,
Chuck Levercc0175c2006-03-20 13:44:22 -0500297 .p_statidx = SM_UNMON,
298 .p_name = "UNMONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 },
300};
301
302static struct rpc_version nsm_version1 = {
Tobias Klausere8c96f82006-03-24 03:15:34 -0800303 .number = 1,
304 .nrprocs = ARRAY_SIZE(nsm_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 .procs = nsm_procedures
306};
307
308static struct rpc_version * nsm_version[] = {
309 [1] = &nsm_version1,
310};
311
312static struct rpc_stat nsm_stats;
313
314static struct rpc_program nsm_program = {
315 .name = "statd",
316 .number = SM_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800317 .nrvers = ARRAY_SIZE(nsm_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 .version = nsm_version,
319 .stats = &nsm_stats
320};