blob: bb5fc1bb37f7570973610a8895d42d25699bfba8 [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
Chuck Lever9fee4902008-12-04 14:20:53 -050082 dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name);
Olaf Kirch8dead0d2006-10-04 02:15:53 -070083
84 if (nsm->sm_monitored)
Olaf Kirch977faf32006-10-04 02:15:51 -070085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Chuck Lever29ed1402008-12-04 14:20:46 -050087 /*
88 * Choose whether to record the caller_name or IP address of
89 * this peer in the local rpc.statd's database.
90 */
91 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
92
Olaf Kirch9502c522006-10-04 02:15:56 -070093 status = nsm_mon_unmon(nsm, SM_MON, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 if (status < 0 || res.status != 0)
Chuck Lever9fee4902008-12-04 14:20:53 -050096 printk(KERN_NOTICE "lockd: cannot monitor %s\n", nsm->sm_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 else
Olaf Kirch8dead0d2006-10-04 02:15:53 -070098 nsm->sm_monitored = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return status;
100}
101
102/*
103 * Cease to monitor remote host
104 */
105int
106nsm_unmonitor(struct nlm_host *host)
107{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700108 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 struct nsm_res res;
Olaf Kirch977faf32006-10-04 02:15:51 -0700110 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700112 if (nsm == NULL)
Olaf Kirch977faf32006-10-04 02:15:51 -0700113 return 0;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700114 host->h_nsmhandle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Olaf Kirch9502c522006-10-04 02:15:56 -0700116 if (atomic_read(&nsm->sm_count) == 1
117 && nsm->sm_monitored && !nsm->sm_sticky) {
Chuck Lever9fee4902008-12-04 14:20:53 -0500118 dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700119
120 status = nsm_mon_unmon(nsm, SM_UNMON, &res);
Olaf Kirch977faf32006-10-04 02:15:51 -0700121 if (status < 0)
Olaf Kirch9502c522006-10-04 02:15:56 -0700122 printk(KERN_NOTICE "lockd: cannot unmonitor %s\n",
Chuck Lever9fee4902008-12-04 14:20:53 -0500123 nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700124 else
125 nsm->sm_monitored = 0;
Olaf Kirch977faf32006-10-04 02:15:51 -0700126 }
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700127 nsm_release(nsm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return status;
129}
130
131/*
132 * Create NSM client for the local host
133 */
134static struct rpc_clnt *
135nsm_create(void)
136{
Chuck Levere1ec7892006-08-22 20:06:20 -0400137 struct sockaddr_in sin = {
138 .sin_family = AF_INET,
139 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
140 .sin_port = 0,
141 };
142 struct rpc_create_args args = {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400143 .protocol = XPRT_TRANSPORT_UDP,
Chuck Levere1ec7892006-08-22 20:06:20 -0400144 .address = (struct sockaddr *)&sin,
145 .addrsize = sizeof(sin),
146 .servername = "localhost",
147 .program = &nsm_program,
148 .version = SM_VERSION,
149 .authflavor = RPC_AUTH_NULL,
Chuck Levere1ec7892006-08-22 20:06:20 -0400150 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Chuck Levere1ec7892006-08-22 20:06:20 -0400152 return rpc_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155/*
156 * XDR functions for NSM.
Chuck Lever2ca77542008-03-14 14:26:01 -0400157 *
158 * See http://www.opengroup.org/ for details on the Network
159 * Status Monitor wire protocol.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 */
161
Chuck Lever099bd052008-03-14 14:25:32 -0400162static __be32 *xdr_encode_nsm_string(__be32 *p, char *string)
163{
164 size_t len = strlen(string);
165
166 if (len > SM_MAXSTRLEN)
167 len = SM_MAXSTRLEN;
168 return xdr_encode_opaque(p, string, len);
169}
170
Chuck Lever49695172008-03-14 14:25:39 -0400171/*
172 * "mon_name" specifies the host to be monitored.
Chuck Lever49695172008-03-14 14:25:39 -0400173 */
174static __be32 *xdr_encode_mon_name(__be32 *p, struct nsm_args *argp)
175{
Chuck Lever29ed1402008-12-04 14:20:46 -0500176 return xdr_encode_nsm_string(p, argp->mon_name);
Chuck Lever49695172008-03-14 14:25:39 -0400177}
178
Chuck Lever850c95f2008-03-14 14:25:46 -0400179/*
180 * The "my_id" argument specifies the hostname and RPC procedure
181 * to be called when the status manager receives notification
182 * (via the SM_NOTIFY call) that the state of host "mon_name"
183 * has changed.
184 */
185static __be32 *xdr_encode_my_id(__be32 *p, struct nsm_args *argp)
186{
187 p = xdr_encode_nsm_string(p, utsname()->nodename);
188 if (!p)
189 return ERR_PTR(-EIO);
190
191 *p++ = htonl(argp->prog);
192 *p++ = htonl(argp->vers);
193 *p++ = htonl(argp->proc);
194
195 return p;
196}
197
Chuck Leverea72a7f2008-03-14 14:25:53 -0400198/*
199 * The "mon_id" argument specifies the non-private arguments
200 * of an SM_MON or SM_UNMON call.
201 */
202static __be32 *xdr_encode_mon_id(__be32 *p, struct nsm_args *argp)
203{
204 p = xdr_encode_mon_name(p, argp);
205 if (!p)
206 return ERR_PTR(-EIO);
207
208 return xdr_encode_my_id(p, argp);
209}
210
Chuck Lever0490a542008-03-14 14:26:08 -0400211/*
212 * The "priv" argument may contain private information required
213 * by the SM_MON call. This information will be supplied in the
214 * SM_NOTIFY call.
215 *
216 * Linux provides the raw IP address of the monitored host,
217 * left in network byte order.
218 */
219static __be32 *xdr_encode_priv(__be32 *p, struct nsm_args *argp)
220{
221 *p++ = argp->addr;
222 *p++ = 0;
223 *p++ = 0;
224 *p++ = 0;
225
226 return p;
227}
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229static int
Al Viro52921e02006-10-19 23:28:46 -0700230xdr_encode_mon(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Chuck Lever2ca77542008-03-14 14:26:01 -0400232 p = xdr_encode_mon_id(p, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (IS_ERR(p))
234 return PTR_ERR(p);
Olaf Kirch9502c522006-10-04 02:15:56 -0700235
Chuck Lever0490a542008-03-14 14:26:08 -0400236 p = xdr_encode_priv(p, argp);
237 if (IS_ERR(p))
238 return PTR_ERR(p);
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 rqstp->rq_slen = xdr_adjust_iovec(rqstp->rq_svec, p);
241 return 0;
242}
243
244static int
Al Viro52921e02006-10-19 23:28:46 -0700245xdr_encode_unmon(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Chuck Lever2ca77542008-03-14 14:26:01 -0400247 p = xdr_encode_mon_id(p, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (IS_ERR(p))
249 return PTR_ERR(p);
250 rqstp->rq_slen = xdr_adjust_iovec(rqstp->rq_svec, p);
251 return 0;
252}
253
254static int
Al Viro52921e02006-10-19 23:28:46 -0700255xdr_decode_stat_res(struct rpc_rqst *rqstp, __be32 *p, struct nsm_res *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 resp->status = ntohl(*p++);
258 resp->state = ntohl(*p++);
259 dprintk("nsm: xdr_decode_stat_res status %d state %d\n",
260 resp->status, resp->state);
261 return 0;
262}
263
264static int
Al Viro52921e02006-10-19 23:28:46 -0700265xdr_decode_stat(struct rpc_rqst *rqstp, __be32 *p, struct nsm_res *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 resp->state = ntohl(*p++);
268 return 0;
269}
270
271#define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
Chuck Lever2ca77542008-03-14 14:26:01 -0400272#define SM_my_id_sz (SM_my_name_sz+3)
273#define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
274#define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
Chuck Lever0490a542008-03-14 14:26:08 -0400275#define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
276#define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#define SM_monres_sz 2
278#define SM_unmonres_sz 1
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static struct rpc_procinfo nsm_procedures[] = {
281[SM_MON] = {
282 .p_proc = SM_MON,
283 .p_encode = (kxdrproc_t) xdr_encode_mon,
284 .p_decode = (kxdrproc_t) xdr_decode_stat_res,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400285 .p_arglen = SM_mon_sz,
286 .p_replen = SM_monres_sz,
Chuck Levercc0175c2006-03-20 13:44:22 -0500287 .p_statidx = SM_MON,
288 .p_name = "MONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 },
290[SM_UNMON] = {
291 .p_proc = SM_UNMON,
292 .p_encode = (kxdrproc_t) xdr_encode_unmon,
293 .p_decode = (kxdrproc_t) xdr_decode_stat,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400294 .p_arglen = SM_mon_id_sz,
295 .p_replen = SM_unmonres_sz,
Chuck Levercc0175c2006-03-20 13:44:22 -0500296 .p_statidx = SM_UNMON,
297 .p_name = "UNMONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 },
299};
300
301static struct rpc_version nsm_version1 = {
Tobias Klausere8c96f82006-03-24 03:15:34 -0800302 .number = 1,
303 .nrprocs = ARRAY_SIZE(nsm_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 .procs = nsm_procedures
305};
306
307static struct rpc_version * nsm_version[] = {
308 [1] = &nsm_version1,
309};
310
311static struct rpc_stat nsm_stats;
312
313static struct rpc_program nsm_program = {
314 .name = "statd",
315 .number = SM_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800316 .nrvers = ARRAY_SIZE(nsm_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 .version = nsm_version,
318 .stats = &nsm_stats
319};