blob: fafa0ea71938b08a46e04035906981cce8b703d2 [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>
Chuck Lever94da7662008-12-11 17:56:07 -050012#include <linux/ktime.h>
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/sunrpc/clnt.h>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040015#include <linux/sunrpc/xprtsock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/sunrpc/svc.h>
17#include <linux/lockd/lockd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#define NLMDBG_FACILITY NLMDBG_MONITOR
Chuck Lever36e8e662008-12-05 19:02:07 -050020#define NSM_PROGRAM 100024
21#define NSM_VERSION 1
22
23enum {
24 NSMPROC_NULL,
25 NSMPROC_STAT,
26 NSMPROC_MON,
27 NSMPROC_UNMON,
28 NSMPROC_UNMON_ALL,
29 NSMPROC_SIMU_CRASH,
30 NSMPROC_NOTIFY,
31};
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Chuck Lever9c1bfd02008-12-05 19:01:59 -050033struct nsm_args {
Chuck Levercab2d3c2008-12-05 19:03:24 -050034 struct nsm_private *priv;
Chuck Lever9c1bfd02008-12-05 19:01:59 -050035 u32 prog; /* RPC callback info */
36 u32 vers;
37 u32 proc;
38
39 char *mon_name;
40};
41
42struct nsm_res {
43 u32 status;
44 u32 state;
45};
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static struct rpc_clnt * nsm_create(void);
48
49static struct rpc_program nsm_program;
Chuck Lever67c6d102008-12-05 19:02:45 -050050static LIST_HEAD(nsm_handles);
51static DEFINE_SPINLOCK(nsm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
54 * Local NSM state
55 */
Chuck Leverb7ba5972008-12-11 17:56:29 -050056int __read_mostly nsm_local_state;
57int __read_mostly nsm_use_hostnames;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Chuck Lever8529bc52008-12-11 17:56:22 -050059static inline struct sockaddr *nsm_addr(const struct nsm_handle *nsm)
60{
61 return (struct sockaddr *)&nsm->sm_addr;
62}
63
Chuck Lever67c6d102008-12-05 19:02:45 -050064static void nsm_display_ipv4_address(const struct sockaddr *sap, char *buf,
65 const size_t len)
66{
67 const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
68 snprintf(buf, len, "%pI4", &sin->sin_addr.s_addr);
69}
70
71static void nsm_display_ipv6_address(const struct sockaddr *sap, char *buf,
72 const size_t len)
73{
74 const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
75
76 if (ipv6_addr_v4mapped(&sin6->sin6_addr))
77 snprintf(buf, len, "%pI4", &sin6->sin6_addr.s6_addr32[3]);
78 else if (sin6->sin6_scope_id != 0)
79 snprintf(buf, len, "%pI6%%%u", &sin6->sin6_addr,
80 sin6->sin6_scope_id);
81 else
82 snprintf(buf, len, "%pI6", &sin6->sin6_addr);
83}
84
85static void nsm_display_address(const struct sockaddr *sap,
86 char *buf, const size_t len)
87{
88 switch (sap->sa_family) {
89 case AF_INET:
90 nsm_display_ipv4_address(sap, buf, len);
91 break;
92 case AF_INET6:
93 nsm_display_ipv6_address(sap, buf, len);
94 break;
95 default:
96 snprintf(buf, len, "unsupported address family");
97 break;
98 }
99}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/*
Chuck Lever36e8e662008-12-05 19:02:07 -0500102 * Common procedure for NSMPROC_MON/NSMPROC_UNMON calls
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 */
104static int
Olaf Kirch9502c522006-10-04 02:15:56 -0700105nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 struct rpc_clnt *clnt;
108 int status;
Chuck Levera4846752008-12-04 14:20:23 -0500109 struct nsm_args args = {
Chuck Levercab2d3c2008-12-05 19:03:24 -0500110 .priv = &nsm->sm_priv,
Chuck Levera4846752008-12-04 14:20:23 -0500111 .prog = NLM_PROGRAM,
112 .vers = 3,
113 .proc = NLMPROC_NSM_NOTIFY,
Chuck Lever29ed1402008-12-04 14:20:46 -0500114 .mon_name = nsm->sm_mon_name,
Chuck Levera4846752008-12-04 14:20:23 -0500115 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500116 struct rpc_message msg = {
117 .rpc_argp = &args,
118 .rpc_resp = res,
119 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 clnt = nsm_create();
122 if (IS_ERR(clnt)) {
123 status = PTR_ERR(clnt);
Chuck Lever5acf4312008-12-04 14:20:31 -0500124 dprintk("lockd: failed to create NSM upcall transport, "
125 "status=%d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 goto out;
127 }
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 memset(res, 0, sizeof(*res));
130
Chuck Leverdead28d2006-03-20 13:44:23 -0500131 msg.rpc_proc = &clnt->cl_procinfo[proc];
132 status = rpc_call_sync(clnt, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (status < 0)
Chuck Lever5acf4312008-12-04 14:20:31 -0500134 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
135 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 else
137 status = 0;
Trond Myklebust90c57552007-06-09 19:49:36 -0400138 rpc_shutdown_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 out:
140 return status;
141}
142
Chuck Lever1e49323c2008-12-04 14:21:24 -0500143/**
144 * nsm_monitor - Notify a peer in case we reboot
145 * @host: pointer to nlm_host of peer to notify
146 *
147 * If this peer is not already monitored, this function sends an
148 * upcall to the local rpc.statd to record the name/address of
149 * the peer to notify in case we reboot.
150 *
151 * Returns zero if the peer is monitored by the local rpc.statd;
152 * otherwise a negative errno value is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 */
Chuck Lever1e49323c2008-12-04 14:21:24 -0500154int nsm_monitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700156 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 struct nsm_res res;
158 int status;
159
Chuck Lever9fee4902008-12-04 14:20:53 -0500160 dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700161
162 if (nsm->sm_monitored)
Olaf Kirch977faf32006-10-04 02:15:51 -0700163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Chuck Lever29ed1402008-12-04 14:20:46 -0500165 /*
166 * Choose whether to record the caller_name or IP address of
167 * this peer in the local rpc.statd's database.
168 */
169 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
170
Chuck Lever36e8e662008-12-05 19:02:07 -0500171 status = nsm_mon_unmon(nsm, NSMPROC_MON, &res);
Chuck Lever5d254b12008-12-04 14:21:15 -0500172 if (res.status != 0)
173 status = -EIO;
174 if (status < 0)
Chuck Lever9fee4902008-12-04 14:20:53 -0500175 printk(KERN_NOTICE "lockd: cannot monitor %s\n", nsm->sm_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 else
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700177 nsm->sm_monitored = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return status;
179}
180
Chuck Lever356c3eb2008-12-04 14:21:38 -0500181/**
182 * nsm_unmonitor - Unregister peer notification
183 * @host: pointer to nlm_host of peer to stop monitoring
184 *
185 * If this peer is monitored, this function sends an upcall to
186 * tell the local rpc.statd not to send this peer a notification
187 * when we reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 */
Chuck Lever356c3eb2008-12-04 14:21:38 -0500189void nsm_unmonitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700191 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct nsm_res res;
Chuck Lever356c3eb2008-12-04 14:21:38 -0500193 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Olaf Kirch9502c522006-10-04 02:15:56 -0700195 if (atomic_read(&nsm->sm_count) == 1
196 && nsm->sm_monitored && !nsm->sm_sticky) {
Chuck Lever9fee4902008-12-04 14:20:53 -0500197 dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700198
Chuck Lever36e8e662008-12-05 19:02:07 -0500199 status = nsm_mon_unmon(nsm, NSMPROC_UNMON, &res);
Chuck Lever0c7aef42008-12-04 14:21:46 -0500200 if (res.status != 0)
201 status = -EIO;
Olaf Kirch977faf32006-10-04 02:15:51 -0700202 if (status < 0)
Olaf Kirch9502c522006-10-04 02:15:56 -0700203 printk(KERN_NOTICE "lockd: cannot unmonitor %s\n",
Chuck Lever9fee4902008-12-04 14:20:53 -0500204 nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700205 else
206 nsm->sm_monitored = 0;
Olaf Kirch977faf32006-10-04 02:15:51 -0700207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
Chuck Lever3420a8c2008-12-05 19:03:46 -0500210static struct nsm_handle *nsm_lookup_hostname(const char *hostname,
211 const size_t len)
212{
213 struct nsm_handle *nsm;
214
215 list_for_each_entry(nsm, &nsm_handles, sm_link)
216 if (strlen(nsm->sm_name) == len &&
217 memcmp(nsm->sm_name, hostname, len) == 0)
218 return nsm;
219 return NULL;
220}
221
Chuck Lever77a3ef32008-12-11 17:55:59 -0500222static struct nsm_handle *nsm_lookup_addr(const struct sockaddr *sap)
223{
224 struct nsm_handle *nsm;
225
226 list_for_each_entry(nsm, &nsm_handles, sm_link)
227 if (nlm_cmp_addr(nsm_addr(nsm), sap))
228 return nsm;
229 return NULL;
230}
231
Chuck Lever3420a8c2008-12-05 19:03:46 -0500232static struct nsm_handle *nsm_lookup_priv(const struct nsm_private *priv)
233{
234 struct nsm_handle *nsm;
235
236 list_for_each_entry(nsm, &nsm_handles, sm_link)
237 if (memcmp(nsm->sm_priv.data, priv->data,
238 sizeof(priv->data)) == 0)
239 return nsm;
240 return NULL;
241}
242
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500243/*
244 * Construct a unique cookie to match this nsm_handle to this monitored
245 * host. It is passed to the local rpc.statd via NSMPROC_MON, and
246 * returned via NLMPROC_SM_NOTIFY, in the "priv" field of these
247 * requests.
248 *
Chuck Lever94da7662008-12-11 17:56:07 -0500249 * The NSM protocol requires that these cookies be unique while the
250 * system is running. We prefer a stronger requirement of making them
251 * unique across reboots. If user space bugs cause a stale cookie to
252 * be sent to the kernel, it could cause the wrong host to lose its
253 * lock state if cookies were not unique across reboots.
254 *
255 * The cookies are exposed only to local user space via loopback. They
256 * do not appear on the physical network. If we want greater security
257 * for some reason, nsm_init_private() could perform a one-way hash to
258 * obscure the contents of the cookie.
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500259 */
260static void nsm_init_private(struct nsm_handle *nsm)
261{
Chuck Lever94da7662008-12-11 17:56:07 -0500262 u64 *p = (u64 *)&nsm->sm_priv.data;
263 struct timespec ts;
264
265 ktime_get_ts(&ts);
266 *p++ = timespec_to_ns(&ts);
267 *p = (unsigned long)nsm;
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500268}
269
Chuck Leverb39b8972008-12-11 17:55:52 -0500270static struct nsm_handle *nsm_create_handle(const struct sockaddr *sap,
271 const size_t salen,
272 const char *hostname,
273 const size_t hostname_len)
274{
275 struct nsm_handle *new;
276
277 new = kzalloc(sizeof(*new) + hostname_len + 1, GFP_KERNEL);
278 if (unlikely(new == NULL))
279 return NULL;
280
281 atomic_set(&new->sm_count, 1);
282 new->sm_name = (char *)(new + 1);
283 memcpy(nsm_addr(new), sap, salen);
284 new->sm_addrlen = salen;
285 nsm_init_private(new);
286 nsm_display_address((const struct sockaddr *)&new->sm_addr,
287 new->sm_addrbuf, sizeof(new->sm_addrbuf));
288 memcpy(new->sm_name, hostname, hostname_len);
289 new->sm_name[hostname_len] = '\0';
290
291 return new;
292}
293
Chuck Lever67c6d102008-12-05 19:02:45 -0500294/**
Chuck Lever92fd91b2008-12-05 19:04:01 -0500295 * nsm_get_handle - Find or create a cached nsm_handle
Chuck Lever67c6d102008-12-05 19:02:45 -0500296 * @sap: pointer to socket address of handle to find
297 * @salen: length of socket address
298 * @hostname: pointer to C string containing hostname to find
299 * @hostname_len: length of C string
Chuck Lever67c6d102008-12-05 19:02:45 -0500300 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500301 * Behavior is modulated by the global nsm_use_hostnames variable.
Chuck Lever67c6d102008-12-05 19:02:45 -0500302 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500303 * Returns a cached nsm_handle after bumping its ref count, or
304 * returns a fresh nsm_handle if a handle that matches @sap and/or
305 * @hostname cannot be found in the handle cache. Returns NULL if
306 * an error occurs.
Chuck Lever67c6d102008-12-05 19:02:45 -0500307 */
Chuck Lever92fd91b2008-12-05 19:04:01 -0500308struct nsm_handle *nsm_get_handle(const struct sockaddr *sap,
309 const size_t salen, const char *hostname,
310 const size_t hostname_len)
Chuck Lever67c6d102008-12-05 19:02:45 -0500311{
Chuck Lever77a3ef32008-12-11 17:55:59 -0500312 struct nsm_handle *cached, *new = NULL;
Chuck Lever67c6d102008-12-05 19:02:45 -0500313
Chuck Lever67c6d102008-12-05 19:02:45 -0500314 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
315 if (printk_ratelimit()) {
316 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
317 "in NFS lock request\n",
318 (int)hostname_len, hostname);
319 }
320 return NULL;
321 }
322
323retry:
324 spin_lock(&nsm_lock);
Chuck Lever67c6d102008-12-05 19:02:45 -0500325
Chuck Lever77a3ef32008-12-11 17:55:59 -0500326 if (nsm_use_hostnames && hostname != NULL)
327 cached = nsm_lookup_hostname(hostname, hostname_len);
328 else
329 cached = nsm_lookup_addr(sap);
330
331 if (cached != NULL) {
332 atomic_inc(&cached->sm_count);
333 spin_unlock(&nsm_lock);
334 kfree(new);
335 dprintk("lockd: found nsm_handle for %s (%s), "
336 "cnt %d\n", cached->sm_name,
337 cached->sm_addrbuf,
338 atomic_read(&cached->sm_count));
339 return cached;
Chuck Lever67c6d102008-12-05 19:02:45 -0500340 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500341
342 if (new != NULL) {
343 list_add(&new->sm_link, &nsm_handles);
344 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500345 dprintk("lockd: created nsm_handle for %s (%s)\n",
Chuck Lever77a3ef32008-12-11 17:55:59 -0500346 new->sm_name, new->sm_addrbuf);
347 return new;
Chuck Lever67c6d102008-12-05 19:02:45 -0500348 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500349
Chuck Lever67c6d102008-12-05 19:02:45 -0500350 spin_unlock(&nsm_lock);
351
Chuck Lever77a3ef32008-12-11 17:55:59 -0500352 new = nsm_create_handle(sap, salen, hostname, hostname_len);
353 if (unlikely(new == NULL))
Chuck Lever67c6d102008-12-05 19:02:45 -0500354 return NULL;
Chuck Lever67c6d102008-12-05 19:02:45 -0500355 goto retry;
Chuck Lever67c6d102008-12-05 19:02:45 -0500356}
357
358/**
Chuck Lever3420a8c2008-12-05 19:03:46 -0500359 * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle
360 * @info: pointer to NLMPROC_SM_NOTIFY arguments
361 *
362 * Returns a matching nsm_handle if found in the nsm cache; the returned
363 * nsm_handle's reference count is bumped and sm_monitored is cleared.
364 * Otherwise returns NULL if some error occurred.
365 */
366struct nsm_handle *nsm_reboot_lookup(const struct nlm_reboot *info)
367{
368 struct nsm_handle *cached;
369
370 spin_lock(&nsm_lock);
371
Chuck Lever94da7662008-12-11 17:56:07 -0500372 cached = nsm_lookup_priv(&info->priv);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500373 if (unlikely(cached == NULL)) {
374 spin_unlock(&nsm_lock);
375 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
376 info->len, info->mon);
377 return cached;
378 }
379
380 atomic_inc(&cached->sm_count);
381 spin_unlock(&nsm_lock);
382
383 /*
384 * During subsequent lock activity, force a fresh
385 * notification to be set up for this host.
386 */
387 cached->sm_monitored = 0;
388
389 dprintk("lockd: host %s (%s) rebooted, cnt %d\n",
390 cached->sm_name, cached->sm_addrbuf,
391 atomic_read(&cached->sm_count));
392 return cached;
393}
394
395/**
Chuck Lever67c6d102008-12-05 19:02:45 -0500396 * nsm_release - Release an NSM handle
397 * @nsm: pointer to handle to be released
398 *
399 */
400void nsm_release(struct nsm_handle *nsm)
401{
Chuck Lever67c6d102008-12-05 19:02:45 -0500402 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
403 list_del(&nsm->sm_link);
404 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500405 dprintk("lockd: destroyed nsm_handle for %s (%s)\n",
406 nsm->sm_name, nsm->sm_addrbuf);
Chuck Lever67c6d102008-12-05 19:02:45 -0500407 kfree(nsm);
408 }
409}
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411/*
412 * Create NSM client for the local host
413 */
414static struct rpc_clnt *
415nsm_create(void)
416{
Chuck Levere1ec7892006-08-22 20:06:20 -0400417 struct sockaddr_in sin = {
418 .sin_family = AF_INET,
419 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
420 .sin_port = 0,
421 };
422 struct rpc_create_args args = {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400423 .protocol = XPRT_TRANSPORT_UDP,
Chuck Levere1ec7892006-08-22 20:06:20 -0400424 .address = (struct sockaddr *)&sin,
425 .addrsize = sizeof(sin),
426 .servername = "localhost",
427 .program = &nsm_program,
Chuck Lever36e8e662008-12-05 19:02:07 -0500428 .version = NSM_VERSION,
Chuck Levere1ec7892006-08-22 20:06:20 -0400429 .authflavor = RPC_AUTH_NULL,
Chuck Levere1ec7892006-08-22 20:06:20 -0400430 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Chuck Levere1ec7892006-08-22 20:06:20 -0400432 return rpc_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435/*
436 * XDR functions for NSM.
Chuck Lever2ca77542008-03-14 14:26:01 -0400437 *
438 * See http://www.opengroup.org/ for details on the Network
439 * Status Monitor wire protocol.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 */
441
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500442static int encode_nsm_string(struct xdr_stream *xdr, const char *string)
Chuck Lever099bd052008-03-14 14:25:32 -0400443{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500444 const u32 len = strlen(string);
445 __be32 *p;
Chuck Lever099bd052008-03-14 14:25:32 -0400446
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500447 if (unlikely(len > SM_MAXSTRLEN))
448 return -EIO;
449 p = xdr_reserve_space(xdr, sizeof(u32) + len);
450 if (unlikely(p == NULL))
451 return -EIO;
452 xdr_encode_opaque(p, string, len);
453 return 0;
Chuck Lever099bd052008-03-14 14:25:32 -0400454}
455
Chuck Lever49695172008-03-14 14:25:39 -0400456/*
457 * "mon_name" specifies the host to be monitored.
Chuck Lever49695172008-03-14 14:25:39 -0400458 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500459static int encode_mon_name(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever49695172008-03-14 14:25:39 -0400460{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500461 return encode_nsm_string(xdr, argp->mon_name);
Chuck Lever49695172008-03-14 14:25:39 -0400462}
463
Chuck Lever850c95f2008-03-14 14:25:46 -0400464/*
465 * The "my_id" argument specifies the hostname and RPC procedure
466 * to be called when the status manager receives notification
Chuck Lever36e8e662008-12-05 19:02:07 -0500467 * (via the NLMPROC_SM_NOTIFY call) that the state of host "mon_name"
Chuck Lever850c95f2008-03-14 14:25:46 -0400468 * has changed.
469 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500470static int encode_my_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever850c95f2008-03-14 14:25:46 -0400471{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500472 int status;
473 __be32 *p;
Chuck Lever850c95f2008-03-14 14:25:46 -0400474
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500475 status = encode_nsm_string(xdr, utsname()->nodename);
476 if (unlikely(status != 0))
477 return status;
478 p = xdr_reserve_space(xdr, 3 * sizeof(u32));
479 if (unlikely(p == NULL))
480 return -EIO;
Chuck Lever850c95f2008-03-14 14:25:46 -0400481 *p++ = htonl(argp->prog);
482 *p++ = htonl(argp->vers);
483 *p++ = htonl(argp->proc);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500484 return 0;
Chuck Lever850c95f2008-03-14 14:25:46 -0400485}
486
Chuck Leverea72a7f2008-03-14 14:25:53 -0400487/*
488 * The "mon_id" argument specifies the non-private arguments
Chuck Lever36e8e662008-12-05 19:02:07 -0500489 * of an NSMPROC_MON or NSMPROC_UNMON call.
Chuck Leverea72a7f2008-03-14 14:25:53 -0400490 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500491static int encode_mon_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Leverea72a7f2008-03-14 14:25:53 -0400492{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500493 int status;
Chuck Leverea72a7f2008-03-14 14:25:53 -0400494
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500495 status = encode_mon_name(xdr, argp);
496 if (unlikely(status != 0))
497 return status;
498 return encode_my_id(xdr, argp);
Chuck Leverea72a7f2008-03-14 14:25:53 -0400499}
500
Chuck Lever0490a542008-03-14 14:26:08 -0400501/*
502 * The "priv" argument may contain private information required
Chuck Lever36e8e662008-12-05 19:02:07 -0500503 * by the NSMPROC_MON call. This information will be supplied in the
504 * NLMPROC_SM_NOTIFY call.
Chuck Lever0490a542008-03-14 14:26:08 -0400505 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500506static int encode_priv(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever0490a542008-03-14 14:26:08 -0400507{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500508 __be32 *p;
509
510 p = xdr_reserve_space(xdr, SM_PRIV_SIZE);
511 if (unlikely(p == NULL))
512 return -EIO;
Chuck Levercab2d3c2008-12-05 19:03:24 -0500513 xdr_encode_opaque_fixed(p, argp->priv->data, SM_PRIV_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return 0;
515}
516
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500517static int xdr_enc_mon(struct rpc_rqst *req, __be32 *p,
518 const struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500520 struct xdr_stream xdr;
521 int status;
522
523 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
524 status = encode_mon_id(&xdr, argp);
525 if (unlikely(status))
526 return status;
527 return encode_priv(&xdr, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500530static int xdr_enc_unmon(struct rpc_rqst *req, __be32 *p,
531 const struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500533 struct xdr_stream xdr;
534
535 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
536 return encode_mon_id(&xdr, argp);
537}
538
539static int xdr_dec_stat_res(struct rpc_rqst *rqstp, __be32 *p,
540 struct nsm_res *resp)
541{
542 struct xdr_stream xdr;
543
544 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
545 p = xdr_inline_decode(&xdr, 2 * sizeof(u32));
546 if (unlikely(p == NULL))
547 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 resp->status = ntohl(*p++);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500549 resp->state = ntohl(*p);
550
551 dprintk("lockd: xdr_dec_stat_res status %d state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 resp->status, resp->state);
553 return 0;
554}
555
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500556static int xdr_dec_stat(struct rpc_rqst *rqstp, __be32 *p,
557 struct nsm_res *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500559 struct xdr_stream xdr;
560
561 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
562 p = xdr_inline_decode(&xdr, sizeof(u32));
563 if (unlikely(p == NULL))
564 return -EIO;
565 resp->state = ntohl(*p);
566
567 dprintk("lockd: xdr_dec_stat state %d\n", resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return 0;
569}
570
571#define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
Chuck Lever2ca77542008-03-14 14:26:01 -0400572#define SM_my_id_sz (SM_my_name_sz+3)
573#define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
574#define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
Chuck Lever0490a542008-03-14 14:26:08 -0400575#define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
576#define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577#define SM_monres_sz 2
578#define SM_unmonres_sz 1
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580static struct rpc_procinfo nsm_procedures[] = {
Chuck Lever36e8e662008-12-05 19:02:07 -0500581[NSMPROC_MON] = {
582 .p_proc = NSMPROC_MON,
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500583 .p_encode = (kxdrproc_t)xdr_enc_mon,
584 .p_decode = (kxdrproc_t)xdr_dec_stat_res,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400585 .p_arglen = SM_mon_sz,
586 .p_replen = SM_monres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500587 .p_statidx = NSMPROC_MON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500588 .p_name = "MONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 },
Chuck Lever36e8e662008-12-05 19:02:07 -0500590[NSMPROC_UNMON] = {
591 .p_proc = NSMPROC_UNMON,
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500592 .p_encode = (kxdrproc_t)xdr_enc_unmon,
593 .p_decode = (kxdrproc_t)xdr_dec_stat,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400594 .p_arglen = SM_mon_id_sz,
595 .p_replen = SM_unmonres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500596 .p_statidx = NSMPROC_UNMON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500597 .p_name = "UNMONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 },
599};
600
601static struct rpc_version nsm_version1 = {
Tobias Klausere8c96f82006-03-24 03:15:34 -0800602 .number = 1,
603 .nrprocs = ARRAY_SIZE(nsm_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 .procs = nsm_procedures
605};
606
607static struct rpc_version * nsm_version[] = {
608 [1] = &nsm_version1,
609};
610
611static struct rpc_stat nsm_stats;
612
613static struct rpc_program nsm_program = {
614 .name = "statd",
Chuck Lever36e8e662008-12-05 19:02:07 -0500615 .number = NSM_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800616 .nrvers = ARRAY_SIZE(nsm_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 .version = nsm_version,
618 .stats = &nsm_stats
619};