blob: 43be31c4a2deb57f73b5d364ac04cfe927c9b1f2 [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 */
Olaf Kirch460f5ca2006-10-04 02:16:03 -070056int nsm_local_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Chuck Lever8529bc52008-12-11 17:56:22 -050058static inline struct sockaddr *nsm_addr(const struct nsm_handle *nsm)
59{
60 return (struct sockaddr *)&nsm->sm_addr;
61}
62
Chuck Lever67c6d102008-12-05 19:02:45 -050063static void nsm_display_ipv4_address(const struct sockaddr *sap, char *buf,
64 const size_t len)
65{
66 const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
67 snprintf(buf, len, "%pI4", &sin->sin_addr.s_addr);
68}
69
70static void nsm_display_ipv6_address(const struct sockaddr *sap, char *buf,
71 const size_t len)
72{
73 const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
74
75 if (ipv6_addr_v4mapped(&sin6->sin6_addr))
76 snprintf(buf, len, "%pI4", &sin6->sin6_addr.s6_addr32[3]);
77 else if (sin6->sin6_scope_id != 0)
78 snprintf(buf, len, "%pI6%%%u", &sin6->sin6_addr,
79 sin6->sin6_scope_id);
80 else
81 snprintf(buf, len, "%pI6", &sin6->sin6_addr);
82}
83
84static void nsm_display_address(const struct sockaddr *sap,
85 char *buf, const size_t len)
86{
87 switch (sap->sa_family) {
88 case AF_INET:
89 nsm_display_ipv4_address(sap, buf, len);
90 break;
91 case AF_INET6:
92 nsm_display_ipv6_address(sap, buf, len);
93 break;
94 default:
95 snprintf(buf, len, "unsupported address family");
96 break;
97 }
98}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/*
Chuck Lever36e8e662008-12-05 19:02:07 -0500101 * Common procedure for NSMPROC_MON/NSMPROC_UNMON calls
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
103static int
Olaf Kirch9502c522006-10-04 02:15:56 -0700104nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 struct rpc_clnt *clnt;
107 int status;
Chuck Levera4846752008-12-04 14:20:23 -0500108 struct nsm_args args = {
Chuck Levercab2d3c2008-12-05 19:03:24 -0500109 .priv = &nsm->sm_priv,
Chuck Levera4846752008-12-04 14:20:23 -0500110 .prog = NLM_PROGRAM,
111 .vers = 3,
112 .proc = NLMPROC_NSM_NOTIFY,
Chuck Lever29ed1402008-12-04 14:20:46 -0500113 .mon_name = nsm->sm_mon_name,
Chuck Levera4846752008-12-04 14:20:23 -0500114 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500115 struct rpc_message msg = {
116 .rpc_argp = &args,
117 .rpc_resp = res,
118 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 clnt = nsm_create();
121 if (IS_ERR(clnt)) {
122 status = PTR_ERR(clnt);
Chuck Lever5acf4312008-12-04 14:20:31 -0500123 dprintk("lockd: failed to create NSM upcall transport, "
124 "status=%d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 goto out;
126 }
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 memset(res, 0, sizeof(*res));
129
Chuck Leverdead28d2006-03-20 13:44:23 -0500130 msg.rpc_proc = &clnt->cl_procinfo[proc];
131 status = rpc_call_sync(clnt, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (status < 0)
Chuck Lever5acf4312008-12-04 14:20:31 -0500133 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
134 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 else
136 status = 0;
Trond Myklebust90c57552007-06-09 19:49:36 -0400137 rpc_shutdown_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 out:
139 return status;
140}
141
Chuck Lever1e49323c2008-12-04 14:21:24 -0500142/**
143 * nsm_monitor - Notify a peer in case we reboot
144 * @host: pointer to nlm_host of peer to notify
145 *
146 * If this peer is not already monitored, this function sends an
147 * upcall to the local rpc.statd to record the name/address of
148 * the peer to notify in case we reboot.
149 *
150 * Returns zero if the peer is monitored by the local rpc.statd;
151 * otherwise a negative errno value is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
Chuck Lever1e49323c2008-12-04 14:21:24 -0500153int nsm_monitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700155 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct nsm_res res;
157 int status;
158
Chuck Lever9fee4902008-12-04 14:20:53 -0500159 dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700160
161 if (nsm->sm_monitored)
Olaf Kirch977faf32006-10-04 02:15:51 -0700162 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Chuck Lever29ed1402008-12-04 14:20:46 -0500164 /*
165 * Choose whether to record the caller_name or IP address of
166 * this peer in the local rpc.statd's database.
167 */
168 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
169
Chuck Lever36e8e662008-12-05 19:02:07 -0500170 status = nsm_mon_unmon(nsm, NSMPROC_MON, &res);
Chuck Lever5d254b12008-12-04 14:21:15 -0500171 if (res.status != 0)
172 status = -EIO;
173 if (status < 0)
Chuck Lever9fee4902008-12-04 14:20:53 -0500174 printk(KERN_NOTICE "lockd: cannot monitor %s\n", nsm->sm_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 else
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700176 nsm->sm_monitored = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return status;
178}
179
Chuck Lever356c3eb2008-12-04 14:21:38 -0500180/**
181 * nsm_unmonitor - Unregister peer notification
182 * @host: pointer to nlm_host of peer to stop monitoring
183 *
184 * If this peer is monitored, this function sends an upcall to
185 * tell the local rpc.statd not to send this peer a notification
186 * when we reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 */
Chuck Lever356c3eb2008-12-04 14:21:38 -0500188void nsm_unmonitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700190 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 struct nsm_res res;
Chuck Lever356c3eb2008-12-04 14:21:38 -0500192 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Olaf Kirch9502c522006-10-04 02:15:56 -0700194 if (atomic_read(&nsm->sm_count) == 1
195 && nsm->sm_monitored && !nsm->sm_sticky) {
Chuck Lever9fee4902008-12-04 14:20:53 -0500196 dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700197
Chuck Lever36e8e662008-12-05 19:02:07 -0500198 status = nsm_mon_unmon(nsm, NSMPROC_UNMON, &res);
Chuck Lever0c7aef42008-12-04 14:21:46 -0500199 if (res.status != 0)
200 status = -EIO;
Olaf Kirch977faf32006-10-04 02:15:51 -0700201 if (status < 0)
Olaf Kirch9502c522006-10-04 02:15:56 -0700202 printk(KERN_NOTICE "lockd: cannot unmonitor %s\n",
Chuck Lever9fee4902008-12-04 14:20:53 -0500203 nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700204 else
205 nsm->sm_monitored = 0;
Olaf Kirch977faf32006-10-04 02:15:51 -0700206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Chuck Lever3420a8c2008-12-05 19:03:46 -0500209static struct nsm_handle *nsm_lookup_hostname(const char *hostname,
210 const size_t len)
211{
212 struct nsm_handle *nsm;
213
214 list_for_each_entry(nsm, &nsm_handles, sm_link)
215 if (strlen(nsm->sm_name) == len &&
216 memcmp(nsm->sm_name, hostname, len) == 0)
217 return nsm;
218 return NULL;
219}
220
Chuck Lever77a3ef32008-12-11 17:55:59 -0500221static struct nsm_handle *nsm_lookup_addr(const struct sockaddr *sap)
222{
223 struct nsm_handle *nsm;
224
225 list_for_each_entry(nsm, &nsm_handles, sm_link)
226 if (nlm_cmp_addr(nsm_addr(nsm), sap))
227 return nsm;
228 return NULL;
229}
230
Chuck Lever3420a8c2008-12-05 19:03:46 -0500231static struct nsm_handle *nsm_lookup_priv(const struct nsm_private *priv)
232{
233 struct nsm_handle *nsm;
234
235 list_for_each_entry(nsm, &nsm_handles, sm_link)
236 if (memcmp(nsm->sm_priv.data, priv->data,
237 sizeof(priv->data)) == 0)
238 return nsm;
239 return NULL;
240}
241
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500242/*
243 * Construct a unique cookie to match this nsm_handle to this monitored
244 * host. It is passed to the local rpc.statd via NSMPROC_MON, and
245 * returned via NLMPROC_SM_NOTIFY, in the "priv" field of these
246 * requests.
247 *
Chuck Lever94da7662008-12-11 17:56:07 -0500248 * The NSM protocol requires that these cookies be unique while the
249 * system is running. We prefer a stronger requirement of making them
250 * unique across reboots. If user space bugs cause a stale cookie to
251 * be sent to the kernel, it could cause the wrong host to lose its
252 * lock state if cookies were not unique across reboots.
253 *
254 * The cookies are exposed only to local user space via loopback. They
255 * do not appear on the physical network. If we want greater security
256 * for some reason, nsm_init_private() could perform a one-way hash to
257 * obscure the contents of the cookie.
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500258 */
259static void nsm_init_private(struct nsm_handle *nsm)
260{
Chuck Lever94da7662008-12-11 17:56:07 -0500261 u64 *p = (u64 *)&nsm->sm_priv.data;
262 struct timespec ts;
263
264 ktime_get_ts(&ts);
265 *p++ = timespec_to_ns(&ts);
266 *p = (unsigned long)nsm;
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500267}
268
Chuck Leverb39b8972008-12-11 17:55:52 -0500269static struct nsm_handle *nsm_create_handle(const struct sockaddr *sap,
270 const size_t salen,
271 const char *hostname,
272 const size_t hostname_len)
273{
274 struct nsm_handle *new;
275
276 new = kzalloc(sizeof(*new) + hostname_len + 1, GFP_KERNEL);
277 if (unlikely(new == NULL))
278 return NULL;
279
280 atomic_set(&new->sm_count, 1);
281 new->sm_name = (char *)(new + 1);
282 memcpy(nsm_addr(new), sap, salen);
283 new->sm_addrlen = salen;
284 nsm_init_private(new);
285 nsm_display_address((const struct sockaddr *)&new->sm_addr,
286 new->sm_addrbuf, sizeof(new->sm_addrbuf));
287 memcpy(new->sm_name, hostname, hostname_len);
288 new->sm_name[hostname_len] = '\0';
289
290 return new;
291}
292
Chuck Lever67c6d102008-12-05 19:02:45 -0500293/**
Chuck Lever92fd91b2008-12-05 19:04:01 -0500294 * nsm_get_handle - Find or create a cached nsm_handle
Chuck Lever67c6d102008-12-05 19:02:45 -0500295 * @sap: pointer to socket address of handle to find
296 * @salen: length of socket address
297 * @hostname: pointer to C string containing hostname to find
298 * @hostname_len: length of C string
Chuck Lever67c6d102008-12-05 19:02:45 -0500299 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500300 * Behavior is modulated by the global nsm_use_hostnames variable.
Chuck Lever67c6d102008-12-05 19:02:45 -0500301 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500302 * Returns a cached nsm_handle after bumping its ref count, or
303 * returns a fresh nsm_handle if a handle that matches @sap and/or
304 * @hostname cannot be found in the handle cache. Returns NULL if
305 * an error occurs.
Chuck Lever67c6d102008-12-05 19:02:45 -0500306 */
Chuck Lever92fd91b2008-12-05 19:04:01 -0500307struct nsm_handle *nsm_get_handle(const struct sockaddr *sap,
308 const size_t salen, const char *hostname,
309 const size_t hostname_len)
Chuck Lever67c6d102008-12-05 19:02:45 -0500310{
Chuck Lever77a3ef32008-12-11 17:55:59 -0500311 struct nsm_handle *cached, *new = NULL;
Chuck Lever67c6d102008-12-05 19:02:45 -0500312
Chuck Lever67c6d102008-12-05 19:02:45 -0500313 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
314 if (printk_ratelimit()) {
315 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
316 "in NFS lock request\n",
317 (int)hostname_len, hostname);
318 }
319 return NULL;
320 }
321
322retry:
323 spin_lock(&nsm_lock);
Chuck Lever67c6d102008-12-05 19:02:45 -0500324
Chuck Lever77a3ef32008-12-11 17:55:59 -0500325 if (nsm_use_hostnames && hostname != NULL)
326 cached = nsm_lookup_hostname(hostname, hostname_len);
327 else
328 cached = nsm_lookup_addr(sap);
329
330 if (cached != NULL) {
331 atomic_inc(&cached->sm_count);
332 spin_unlock(&nsm_lock);
333 kfree(new);
334 dprintk("lockd: found nsm_handle for %s (%s), "
335 "cnt %d\n", cached->sm_name,
336 cached->sm_addrbuf,
337 atomic_read(&cached->sm_count));
338 return cached;
Chuck Lever67c6d102008-12-05 19:02:45 -0500339 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500340
341 if (new != NULL) {
342 list_add(&new->sm_link, &nsm_handles);
343 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500344 dprintk("lockd: created nsm_handle for %s (%s)\n",
Chuck Lever77a3ef32008-12-11 17:55:59 -0500345 new->sm_name, new->sm_addrbuf);
346 return new;
Chuck Lever67c6d102008-12-05 19:02:45 -0500347 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500348
Chuck Lever67c6d102008-12-05 19:02:45 -0500349 spin_unlock(&nsm_lock);
350
Chuck Lever77a3ef32008-12-11 17:55:59 -0500351 new = nsm_create_handle(sap, salen, hostname, hostname_len);
352 if (unlikely(new == NULL))
Chuck Lever67c6d102008-12-05 19:02:45 -0500353 return NULL;
Chuck Lever67c6d102008-12-05 19:02:45 -0500354 goto retry;
Chuck Lever67c6d102008-12-05 19:02:45 -0500355}
356
357/**
Chuck Lever3420a8c2008-12-05 19:03:46 -0500358 * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle
359 * @info: pointer to NLMPROC_SM_NOTIFY arguments
360 *
361 * Returns a matching nsm_handle if found in the nsm cache; the returned
362 * nsm_handle's reference count is bumped and sm_monitored is cleared.
363 * Otherwise returns NULL if some error occurred.
364 */
365struct nsm_handle *nsm_reboot_lookup(const struct nlm_reboot *info)
366{
367 struct nsm_handle *cached;
368
369 spin_lock(&nsm_lock);
370
Chuck Lever94da7662008-12-11 17:56:07 -0500371 cached = nsm_lookup_priv(&info->priv);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500372 if (unlikely(cached == NULL)) {
373 spin_unlock(&nsm_lock);
374 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
375 info->len, info->mon);
376 return cached;
377 }
378
379 atomic_inc(&cached->sm_count);
380 spin_unlock(&nsm_lock);
381
382 /*
383 * During subsequent lock activity, force a fresh
384 * notification to be set up for this host.
385 */
386 cached->sm_monitored = 0;
387
388 dprintk("lockd: host %s (%s) rebooted, cnt %d\n",
389 cached->sm_name, cached->sm_addrbuf,
390 atomic_read(&cached->sm_count));
391 return cached;
392}
393
394/**
Chuck Lever67c6d102008-12-05 19:02:45 -0500395 * nsm_release - Release an NSM handle
396 * @nsm: pointer to handle to be released
397 *
398 */
399void nsm_release(struct nsm_handle *nsm)
400{
Chuck Lever67c6d102008-12-05 19:02:45 -0500401 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
402 list_del(&nsm->sm_link);
403 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500404 dprintk("lockd: destroyed nsm_handle for %s (%s)\n",
405 nsm->sm_name, nsm->sm_addrbuf);
Chuck Lever67c6d102008-12-05 19:02:45 -0500406 kfree(nsm);
407 }
408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/*
411 * Create NSM client for the local host
412 */
413static struct rpc_clnt *
414nsm_create(void)
415{
Chuck Levere1ec7892006-08-22 20:06:20 -0400416 struct sockaddr_in sin = {
417 .sin_family = AF_INET,
418 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
419 .sin_port = 0,
420 };
421 struct rpc_create_args args = {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400422 .protocol = XPRT_TRANSPORT_UDP,
Chuck Levere1ec7892006-08-22 20:06:20 -0400423 .address = (struct sockaddr *)&sin,
424 .addrsize = sizeof(sin),
425 .servername = "localhost",
426 .program = &nsm_program,
Chuck Lever36e8e662008-12-05 19:02:07 -0500427 .version = NSM_VERSION,
Chuck Levere1ec7892006-08-22 20:06:20 -0400428 .authflavor = RPC_AUTH_NULL,
Chuck Levere1ec7892006-08-22 20:06:20 -0400429 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Chuck Levere1ec7892006-08-22 20:06:20 -0400431 return rpc_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
434/*
435 * XDR functions for NSM.
Chuck Lever2ca77542008-03-14 14:26:01 -0400436 *
437 * See http://www.opengroup.org/ for details on the Network
438 * Status Monitor wire protocol.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 */
440
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500441static int encode_nsm_string(struct xdr_stream *xdr, const char *string)
Chuck Lever099bd052008-03-14 14:25:32 -0400442{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500443 const u32 len = strlen(string);
444 __be32 *p;
Chuck Lever099bd052008-03-14 14:25:32 -0400445
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500446 if (unlikely(len > SM_MAXSTRLEN))
447 return -EIO;
448 p = xdr_reserve_space(xdr, sizeof(u32) + len);
449 if (unlikely(p == NULL))
450 return -EIO;
451 xdr_encode_opaque(p, string, len);
452 return 0;
Chuck Lever099bd052008-03-14 14:25:32 -0400453}
454
Chuck Lever49695172008-03-14 14:25:39 -0400455/*
456 * "mon_name" specifies the host to be monitored.
Chuck Lever49695172008-03-14 14:25:39 -0400457 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500458static int encode_mon_name(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever49695172008-03-14 14:25:39 -0400459{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500460 return encode_nsm_string(xdr, argp->mon_name);
Chuck Lever49695172008-03-14 14:25:39 -0400461}
462
Chuck Lever850c95f2008-03-14 14:25:46 -0400463/*
464 * The "my_id" argument specifies the hostname and RPC procedure
465 * to be called when the status manager receives notification
Chuck Lever36e8e662008-12-05 19:02:07 -0500466 * (via the NLMPROC_SM_NOTIFY call) that the state of host "mon_name"
Chuck Lever850c95f2008-03-14 14:25:46 -0400467 * has changed.
468 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500469static int encode_my_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever850c95f2008-03-14 14:25:46 -0400470{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500471 int status;
472 __be32 *p;
Chuck Lever850c95f2008-03-14 14:25:46 -0400473
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500474 status = encode_nsm_string(xdr, utsname()->nodename);
475 if (unlikely(status != 0))
476 return status;
477 p = xdr_reserve_space(xdr, 3 * sizeof(u32));
478 if (unlikely(p == NULL))
479 return -EIO;
Chuck Lever850c95f2008-03-14 14:25:46 -0400480 *p++ = htonl(argp->prog);
481 *p++ = htonl(argp->vers);
482 *p++ = htonl(argp->proc);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500483 return 0;
Chuck Lever850c95f2008-03-14 14:25:46 -0400484}
485
Chuck Leverea72a7f2008-03-14 14:25:53 -0400486/*
487 * The "mon_id" argument specifies the non-private arguments
Chuck Lever36e8e662008-12-05 19:02:07 -0500488 * of an NSMPROC_MON or NSMPROC_UNMON call.
Chuck Leverea72a7f2008-03-14 14:25:53 -0400489 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500490static int encode_mon_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Leverea72a7f2008-03-14 14:25:53 -0400491{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500492 int status;
Chuck Leverea72a7f2008-03-14 14:25:53 -0400493
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500494 status = encode_mon_name(xdr, argp);
495 if (unlikely(status != 0))
496 return status;
497 return encode_my_id(xdr, argp);
Chuck Leverea72a7f2008-03-14 14:25:53 -0400498}
499
Chuck Lever0490a542008-03-14 14:26:08 -0400500/*
501 * The "priv" argument may contain private information required
Chuck Lever36e8e662008-12-05 19:02:07 -0500502 * by the NSMPROC_MON call. This information will be supplied in the
503 * NLMPROC_SM_NOTIFY call.
Chuck Lever0490a542008-03-14 14:26:08 -0400504 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500505static int encode_priv(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever0490a542008-03-14 14:26:08 -0400506{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500507 __be32 *p;
508
509 p = xdr_reserve_space(xdr, SM_PRIV_SIZE);
510 if (unlikely(p == NULL))
511 return -EIO;
Chuck Levercab2d3c2008-12-05 19:03:24 -0500512 xdr_encode_opaque_fixed(p, argp->priv->data, SM_PRIV_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return 0;
514}
515
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500516static int xdr_enc_mon(struct rpc_rqst *req, __be32 *p,
517 const struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500519 struct xdr_stream xdr;
520 int status;
521
522 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
523 status = encode_mon_id(&xdr, argp);
524 if (unlikely(status))
525 return status;
526 return encode_priv(&xdr, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500529static int xdr_enc_unmon(struct rpc_rqst *req, __be32 *p,
530 const struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500532 struct xdr_stream xdr;
533
534 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
535 return encode_mon_id(&xdr, argp);
536}
537
538static int xdr_dec_stat_res(struct rpc_rqst *rqstp, __be32 *p,
539 struct nsm_res *resp)
540{
541 struct xdr_stream xdr;
542
543 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
544 p = xdr_inline_decode(&xdr, 2 * sizeof(u32));
545 if (unlikely(p == NULL))
546 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 resp->status = ntohl(*p++);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500548 resp->state = ntohl(*p);
549
550 dprintk("lockd: xdr_dec_stat_res status %d state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 resp->status, resp->state);
552 return 0;
553}
554
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500555static int xdr_dec_stat(struct rpc_rqst *rqstp, __be32 *p,
556 struct nsm_res *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500558 struct xdr_stream xdr;
559
560 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
561 p = xdr_inline_decode(&xdr, sizeof(u32));
562 if (unlikely(p == NULL))
563 return -EIO;
564 resp->state = ntohl(*p);
565
566 dprintk("lockd: xdr_dec_stat state %d\n", resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return 0;
568}
569
570#define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
Chuck Lever2ca77542008-03-14 14:26:01 -0400571#define SM_my_id_sz (SM_my_name_sz+3)
572#define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
573#define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
Chuck Lever0490a542008-03-14 14:26:08 -0400574#define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
575#define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576#define SM_monres_sz 2
577#define SM_unmonres_sz 1
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579static struct rpc_procinfo nsm_procedures[] = {
Chuck Lever36e8e662008-12-05 19:02:07 -0500580[NSMPROC_MON] = {
581 .p_proc = NSMPROC_MON,
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500582 .p_encode = (kxdrproc_t)xdr_enc_mon,
583 .p_decode = (kxdrproc_t)xdr_dec_stat_res,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400584 .p_arglen = SM_mon_sz,
585 .p_replen = SM_monres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500586 .p_statidx = NSMPROC_MON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500587 .p_name = "MONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 },
Chuck Lever36e8e662008-12-05 19:02:07 -0500589[NSMPROC_UNMON] = {
590 .p_proc = NSMPROC_UNMON,
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500591 .p_encode = (kxdrproc_t)xdr_enc_unmon,
592 .p_decode = (kxdrproc_t)xdr_dec_stat,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400593 .p_arglen = SM_mon_id_sz,
594 .p_replen = SM_unmonres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500595 .p_statidx = NSMPROC_UNMON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500596 .p_name = "UNMONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 },
598};
599
600static struct rpc_version nsm_version1 = {
Tobias Klausere8c96f82006-03-24 03:15:34 -0800601 .number = 1,
602 .nrprocs = ARRAY_SIZE(nsm_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 .procs = nsm_procedures
604};
605
606static struct rpc_version * nsm_version[] = {
607 [1] = &nsm_version1,
608};
609
610static struct rpc_stat nsm_stats;
611
612static struct rpc_program nsm_program = {
613 .name = "statd",
Chuck Lever36e8e662008-12-05 19:02:07 -0500614 .number = NSM_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800615 .nrvers = ARRAY_SIZE(nsm_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 .version = nsm_version,
617 .stats = &nsm_stats
618};