blob: 19166d4a8d313b73424d5668bcffa3c3baee2683 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/kernel.h>
Chuck Lever94da7662008-12-11 17:56:07 -050011#include <linux/ktime.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Chuck Lever94da7662008-12-11 17:56:07 -050013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/sunrpc/clnt.h>
Jeff Layton59766872013-02-04 12:50:00 -050015#include <linux/sunrpc/addr.h>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040016#include <linux/sunrpc/xprtsock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/sunrpc/svc.h>
18#include <linux/lockd/lockd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Mans Rullgardad5b3652009-03-28 19:55:20 +000020#include <asm/unaligned.h>
21
Stanislav Kinsburskye9406db2012-09-18 13:37:12 +040022#include "netns.h"
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define NLMDBG_FACILITY NLMDBG_MONITOR
Chuck Lever36e8e662008-12-05 19:02:07 -050025#define NSM_PROGRAM 100024
26#define NSM_VERSION 1
27
28enum {
29 NSMPROC_NULL,
30 NSMPROC_STAT,
31 NSMPROC_MON,
32 NSMPROC_UNMON,
33 NSMPROC_UNMON_ALL,
34 NSMPROC_SIMU_CRASH,
35 NSMPROC_NOTIFY,
36};
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Chuck Lever9c1bfd02008-12-05 19:01:59 -050038struct nsm_args {
Chuck Levercab2d3c2008-12-05 19:03:24 -050039 struct nsm_private *priv;
Chuck Lever9c1bfd02008-12-05 19:01:59 -050040 u32 prog; /* RPC callback info */
41 u32 vers;
42 u32 proc;
43
44 char *mon_name;
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +030045 const char *nodename;
Chuck Lever9c1bfd02008-12-05 19:01:59 -050046};
47
48struct nsm_res {
49 u32 status;
50 u32 state;
51};
52
Trond Myklebusta613fa12012-01-20 13:53:56 -050053static const struct rpc_program nsm_program;
Chuck Lever67c6d102008-12-05 19:02:45 -050054static DEFINE_SPINLOCK(nsm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * Local NSM state
58 */
Chuck Lever6c9dc4252009-06-17 18:02:10 -070059u32 __read_mostly nsm_local_state;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103060bool __read_mostly nsm_use_hostnames;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Chuck Lever8529bc52008-12-11 17:56:22 -050062static inline struct sockaddr *nsm_addr(const struct nsm_handle *nsm)
63{
64 return (struct sockaddr *)&nsm->sm_addr;
65}
66
Trond Myklebust03a9a422015-01-30 18:12:28 -050067static struct rpc_clnt *nsm_create(struct net *net, const char *nodename)
Chuck Lever49b56992008-12-11 17:56:37 -050068{
69 struct sockaddr_in sin = {
70 .sin_family = AF_INET,
71 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
72 };
73 struct rpc_create_args args = {
Stanislav Kinsbursky0e1cb5c2012-01-31 15:08:21 +040074 .net = net,
Stanislav Kinsburskye9406db2012-09-18 13:37:12 +040075 .protocol = XPRT_TRANSPORT_TCP,
Chuck Lever49b56992008-12-11 17:56:37 -050076 .address = (struct sockaddr *)&sin,
77 .addrsize = sizeof(sin),
78 .servername = "rpc.statd",
Trond Myklebust03a9a422015-01-30 18:12:28 -050079 .nodename = nodename,
Chuck Lever49b56992008-12-11 17:56:37 -050080 .program = &nsm_program,
81 .version = NSM_VERSION,
82 .authflavor = RPC_AUTH_NULL,
Chuck Lever0e5c2632009-06-17 18:02:11 -070083 .flags = RPC_CLNT_CREATE_NOPING,
Chuck Lever49b56992008-12-11 17:56:37 -050084 };
85
86 return rpc_create(&args);
87}
88
Stanislav Kinsbursky0e1cb5c2012-01-31 15:08:21 +040089static int nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res,
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +030090 const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 int status;
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +030093 struct rpc_clnt *clnt;
Chuck Levera4846752008-12-04 14:20:23 -050094 struct nsm_args args = {
Chuck Levercab2d3c2008-12-05 19:03:24 -050095 .priv = &nsm->sm_priv,
Chuck Levera4846752008-12-04 14:20:23 -050096 .prog = NLM_PROGRAM,
97 .vers = 3,
98 .proc = NLMPROC_NSM_NOTIFY,
Chuck Lever29ed1402008-12-04 14:20:46 -050099 .mon_name = nsm->sm_mon_name,
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300100 .nodename = host->nodename,
Chuck Levera4846752008-12-04 14:20:23 -0500101 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500102 struct rpc_message msg = {
103 .rpc_argp = &args,
104 .rpc_resp = res,
105 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 memset(res, 0, sizeof(*res));
108
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300109 clnt = nsm_create(host->net, host->nodename);
110 if (IS_ERR(clnt)) {
111 dprintk("lockd: failed to create NSM upcall transport, "
112 "status=%ld, net=%p\n", PTR_ERR(clnt), host->net);
113 return PTR_ERR(clnt);
114 }
115
Chuck Leverdead28d2006-03-20 13:44:23 -0500116 msg.rpc_proc = &clnt->cl_procinfo[proc];
Stanislav Kinsburskye9406db2012-09-18 13:37:12 +0400117 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN);
Benjamin Coddington173b3af2014-09-23 12:26:20 -0400118 if (status == -ECONNREFUSED) {
119 dprintk("lockd: NSM upcall RPC failed, status=%d, forcing rebind\n",
120 status);
121 rpc_force_rebind(clnt);
122 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN);
123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (status < 0)
Chuck Lever5acf4312008-12-04 14:20:31 -0500125 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
126 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 else
128 status = 0;
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300129
130 rpc_shutdown_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return status;
132}
133
Chuck Lever1e49323c2008-12-04 14:21:24 -0500134/**
135 * nsm_monitor - Notify a peer in case we reboot
136 * @host: pointer to nlm_host of peer to notify
137 *
138 * If this peer is not already monitored, this function sends an
139 * upcall to the local rpc.statd to record the name/address of
140 * the peer to notify in case we reboot.
141 *
142 * Returns zero if the peer is monitored by the local rpc.statd;
143 * otherwise a negative errno value is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 */
Chuck Lever1e49323c2008-12-04 14:21:24 -0500145int nsm_monitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700147 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct nsm_res res;
149 int status;
150
Chuck Lever9fee4902008-12-04 14:20:53 -0500151 dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700152
153 if (nsm->sm_monitored)
Olaf Kirch977faf32006-10-04 02:15:51 -0700154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Chuck Lever29ed1402008-12-04 14:20:46 -0500156 /*
157 * Choose whether to record the caller_name or IP address of
158 * this peer in the local rpc.statd's database.
159 */
160 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
161
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300162 status = nsm_mon_unmon(nsm, NSMPROC_MON, &res, host);
Chuck Lever6c9dc4252009-06-17 18:02:10 -0700163 if (unlikely(res.status != 0))
Chuck Lever5d254b12008-12-04 14:21:15 -0500164 status = -EIO;
Chuck Lever6c9dc4252009-06-17 18:02:10 -0700165 if (unlikely(status < 0)) {
Jeff Layton9af94fc2014-10-31 08:28:29 -0400166 pr_notice_ratelimited("lockd: cannot monitor %s\n", nsm->sm_name);
Chuck Lever6c9dc4252009-06-17 18:02:10 -0700167 return status;
168 }
169
170 nsm->sm_monitored = 1;
171 if (unlikely(nsm_local_state != res.state)) {
172 nsm_local_state = res.state;
173 dprintk("lockd: NSM state changed to %d\n", nsm_local_state);
174 }
175 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Chuck Lever356c3eb2008-12-04 14:21:38 -0500178/**
179 * nsm_unmonitor - Unregister peer notification
180 * @host: pointer to nlm_host of peer to stop monitoring
181 *
182 * If this peer is monitored, this function sends an upcall to
183 * tell the local rpc.statd not to send this peer a notification
184 * when we reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 */
Chuck Lever356c3eb2008-12-04 14:21:38 -0500186void nsm_unmonitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700188 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 struct nsm_res res;
Chuck Lever356c3eb2008-12-04 14:21:38 -0500190 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Olaf Kirch9502c522006-10-04 02:15:56 -0700192 if (atomic_read(&nsm->sm_count) == 1
193 && nsm->sm_monitored && !nsm->sm_sticky) {
Chuck Lever9fee4902008-12-04 14:20:53 -0500194 dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700195
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300196 status = nsm_mon_unmon(nsm, NSMPROC_UNMON, &res, host);
Chuck Lever0c7aef42008-12-04 14:21:46 -0500197 if (res.status != 0)
198 status = -EIO;
Olaf Kirch977faf32006-10-04 02:15:51 -0700199 if (status < 0)
Olaf Kirch9502c522006-10-04 02:15:56 -0700200 printk(KERN_NOTICE "lockd: cannot unmonitor %s\n",
Chuck Lever9fee4902008-12-04 14:20:53 -0500201 nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700202 else
203 nsm->sm_monitored = 0;
Olaf Kirch977faf32006-10-04 02:15:51 -0700204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300207static struct nsm_handle *nsm_lookup_hostname(const struct list_head *nsm_handles,
208 const char *hostname, const size_t len)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500209{
210 struct nsm_handle *nsm;
211
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300212 list_for_each_entry(nsm, nsm_handles, sm_link)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500213 if (strlen(nsm->sm_name) == len &&
214 memcmp(nsm->sm_name, hostname, len) == 0)
215 return nsm;
216 return NULL;
217}
218
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300219static struct nsm_handle *nsm_lookup_addr(const struct list_head *nsm_handles,
220 const struct sockaddr *sap)
Chuck Lever77a3ef32008-12-11 17:55:59 -0500221{
222 struct nsm_handle *nsm;
223
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300224 list_for_each_entry(nsm, nsm_handles, sm_link)
Jeff Layton4516fc02009-08-14 12:57:54 -0400225 if (rpc_cmp_addr(nsm_addr(nsm), sap))
Chuck Lever77a3ef32008-12-11 17:55:59 -0500226 return nsm;
227 return NULL;
228}
229
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300230static struct nsm_handle *nsm_lookup_priv(const struct list_head *nsm_handles,
231 const struct nsm_private *priv)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500232{
233 struct nsm_handle *nsm;
234
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300235 list_for_each_entry(nsm, nsm_handles, sm_link)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500236 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;
Mans Rullgardad5b3652009-03-28 19:55:20 +0000262 s64 ns;
Chuck Lever94da7662008-12-11 17:56:07 -0500263
Thomas Gleixner5eaaed42014-07-16 21:04:46 +0000264 ns = ktime_get_ns();
Mans Rullgardad5b3652009-03-28 19:55:20 +0000265 put_unaligned(ns, p);
266 put_unaligned((unsigned long)nsm, p + 1);
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);
Chuck Leverc15128c2009-08-09 15:09:39 -0400285
286 if (rpc_ntop(nsm_addr(new), new->sm_addrbuf,
287 sizeof(new->sm_addrbuf)) == 0)
288 (void)snprintf(new->sm_addrbuf, sizeof(new->sm_addrbuf),
289 "unsupported address family");
Chuck Leverb39b8972008-12-11 17:55:52 -0500290 memcpy(new->sm_name, hostname, hostname_len);
291 new->sm_name[hostname_len] = '\0';
292
293 return new;
294}
295
Chuck Lever67c6d102008-12-05 19:02:45 -0500296/**
Chuck Lever92fd91b2008-12-05 19:04:01 -0500297 * nsm_get_handle - Find or create a cached nsm_handle
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300298 * @net: network namespace
Chuck Lever67c6d102008-12-05 19:02:45 -0500299 * @sap: pointer to socket address of handle to find
300 * @salen: length of socket address
301 * @hostname: pointer to C string containing hostname to find
302 * @hostname_len: length of C string
Chuck Lever67c6d102008-12-05 19:02:45 -0500303 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500304 * Behavior is modulated by the global nsm_use_hostnames variable.
Chuck Lever67c6d102008-12-05 19:02:45 -0500305 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500306 * Returns a cached nsm_handle after bumping its ref count, or
307 * returns a fresh nsm_handle if a handle that matches @sap and/or
308 * @hostname cannot be found in the handle cache. Returns NULL if
309 * an error occurs.
Chuck Lever67c6d102008-12-05 19:02:45 -0500310 */
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300311struct nsm_handle *nsm_get_handle(const struct net *net,
312 const struct sockaddr *sap,
Chuck Lever92fd91b2008-12-05 19:04:01 -0500313 const size_t salen, const char *hostname,
314 const size_t hostname_len)
Chuck Lever67c6d102008-12-05 19:02:45 -0500315{
Chuck Lever77a3ef32008-12-11 17:55:59 -0500316 struct nsm_handle *cached, *new = NULL;
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300317 struct lockd_net *ln = net_generic(net, lockd_net_id);
Chuck Lever67c6d102008-12-05 19:02:45 -0500318
Chuck Lever67c6d102008-12-05 19:02:45 -0500319 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
320 if (printk_ratelimit()) {
321 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
322 "in NFS lock request\n",
323 (int)hostname_len, hostname);
324 }
325 return NULL;
326 }
327
328retry:
329 spin_lock(&nsm_lock);
Chuck Lever67c6d102008-12-05 19:02:45 -0500330
Chuck Lever77a3ef32008-12-11 17:55:59 -0500331 if (nsm_use_hostnames && hostname != NULL)
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300332 cached = nsm_lookup_hostname(&ln->nsm_handles,
333 hostname, hostname_len);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500334 else
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300335 cached = nsm_lookup_addr(&ln->nsm_handles, sap);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500336
337 if (cached != NULL) {
338 atomic_inc(&cached->sm_count);
339 spin_unlock(&nsm_lock);
340 kfree(new);
341 dprintk("lockd: found nsm_handle for %s (%s), "
342 "cnt %d\n", cached->sm_name,
343 cached->sm_addrbuf,
344 atomic_read(&cached->sm_count));
345 return cached;
Chuck Lever67c6d102008-12-05 19:02:45 -0500346 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500347
348 if (new != NULL) {
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300349 list_add(&new->sm_link, &ln->nsm_handles);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500350 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500351 dprintk("lockd: created nsm_handle for %s (%s)\n",
Chuck Lever77a3ef32008-12-11 17:55:59 -0500352 new->sm_name, new->sm_addrbuf);
353 return new;
Chuck Lever67c6d102008-12-05 19:02:45 -0500354 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500355
Chuck Lever67c6d102008-12-05 19:02:45 -0500356 spin_unlock(&nsm_lock);
357
Chuck Lever77a3ef32008-12-11 17:55:59 -0500358 new = nsm_create_handle(sap, salen, hostname, hostname_len);
359 if (unlikely(new == NULL))
Chuck Lever67c6d102008-12-05 19:02:45 -0500360 return NULL;
Chuck Lever67c6d102008-12-05 19:02:45 -0500361 goto retry;
Chuck Lever67c6d102008-12-05 19:02:45 -0500362}
363
364/**
Chuck Lever3420a8c2008-12-05 19:03:46 -0500365 * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300366 * @net: network namespace
Chuck Lever3420a8c2008-12-05 19:03:46 -0500367 * @info: pointer to NLMPROC_SM_NOTIFY arguments
368 *
Jeff Layton7e469af2010-02-05 15:09:22 -0500369 * Returns a matching nsm_handle if found in the nsm cache. The returned
370 * nsm_handle's reference count is bumped. Otherwise returns NULL if some
371 * error occurred.
Chuck Lever3420a8c2008-12-05 19:03:46 -0500372 */
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300373struct nsm_handle *nsm_reboot_lookup(const struct net *net,
374 const struct nlm_reboot *info)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500375{
376 struct nsm_handle *cached;
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300377 struct lockd_net *ln = net_generic(net, lockd_net_id);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500378
379 spin_lock(&nsm_lock);
380
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300381 cached = nsm_lookup_priv(&ln->nsm_handles, &info->priv);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500382 if (unlikely(cached == NULL)) {
383 spin_unlock(&nsm_lock);
384 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
385 info->len, info->mon);
386 return cached;
387 }
388
389 atomic_inc(&cached->sm_count);
390 spin_unlock(&nsm_lock);
391
Chuck Lever3420a8c2008-12-05 19:03:46 -0500392 dprintk("lockd: host %s (%s) rebooted, cnt %d\n",
393 cached->sm_name, cached->sm_addrbuf,
394 atomic_read(&cached->sm_count));
395 return cached;
396}
397
398/**
Chuck Lever67c6d102008-12-05 19:02:45 -0500399 * nsm_release - Release an NSM handle
400 * @nsm: pointer to handle to be released
401 *
402 */
403void nsm_release(struct nsm_handle *nsm)
404{
Chuck Lever67c6d102008-12-05 19:02:45 -0500405 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
406 list_del(&nsm->sm_link);
407 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500408 dprintk("lockd: destroyed nsm_handle for %s (%s)\n",
409 nsm->sm_name, nsm->sm_addrbuf);
Chuck Lever67c6d102008-12-05 19:02:45 -0500410 kfree(nsm);
411 }
412}
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 * XDR functions for NSM.
Chuck Lever2ca77542008-03-14 14:26:01 -0400416 *
417 * See http://www.opengroup.org/ for details on the Network
418 * Status Monitor wire protocol.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 */
420
Chuck Lever49b17002010-12-14 14:58:30 +0000421static void encode_nsm_string(struct xdr_stream *xdr, const char *string)
Chuck Lever099bd052008-03-14 14:25:32 -0400422{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500423 const u32 len = strlen(string);
424 __be32 *p;
Chuck Lever099bd052008-03-14 14:25:32 -0400425
Chuck Lever49b17002010-12-14 14:58:30 +0000426 p = xdr_reserve_space(xdr, 4 + len);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500427 xdr_encode_opaque(p, string, len);
Chuck Lever099bd052008-03-14 14:25:32 -0400428}
429
Chuck Lever49695172008-03-14 14:25:39 -0400430/*
431 * "mon_name" specifies the host to be monitored.
Chuck Lever49695172008-03-14 14:25:39 -0400432 */
Chuck Lever49b17002010-12-14 14:58:30 +0000433static void encode_mon_name(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever49695172008-03-14 14:25:39 -0400434{
Chuck Lever49b17002010-12-14 14:58:30 +0000435 encode_nsm_string(xdr, argp->mon_name);
Chuck Lever49695172008-03-14 14:25:39 -0400436}
437
Chuck Lever850c95f2008-03-14 14:25:46 -0400438/*
439 * The "my_id" argument specifies the hostname and RPC procedure
440 * to be called when the status manager receives notification
Chuck Lever36e8e662008-12-05 19:02:07 -0500441 * (via the NLMPROC_SM_NOTIFY call) that the state of host "mon_name"
Chuck Lever850c95f2008-03-14 14:25:46 -0400442 * has changed.
443 */
Chuck Lever49b17002010-12-14 14:58:30 +0000444static void encode_my_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever850c95f2008-03-14 14:25:46 -0400445{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500446 __be32 *p;
Chuck Lever850c95f2008-03-14 14:25:46 -0400447
Stanislav Kinsbursky303a7ce2012-09-18 13:37:18 +0400448 encode_nsm_string(xdr, argp->nodename);
Chuck Lever49b17002010-12-14 14:58:30 +0000449 p = xdr_reserve_space(xdr, 4 + 4 + 4);
450 *p++ = cpu_to_be32(argp->prog);
451 *p++ = cpu_to_be32(argp->vers);
452 *p = cpu_to_be32(argp->proc);
Chuck Lever850c95f2008-03-14 14:25:46 -0400453}
454
Chuck Leverea72a7f2008-03-14 14:25:53 -0400455/*
456 * The "mon_id" argument specifies the non-private arguments
Chuck Lever36e8e662008-12-05 19:02:07 -0500457 * of an NSMPROC_MON or NSMPROC_UNMON call.
Chuck Leverea72a7f2008-03-14 14:25:53 -0400458 */
Chuck Lever49b17002010-12-14 14:58:30 +0000459static void encode_mon_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Leverea72a7f2008-03-14 14:25:53 -0400460{
Chuck Lever49b17002010-12-14 14:58:30 +0000461 encode_mon_name(xdr, argp);
462 encode_my_id(xdr, argp);
Chuck Leverea72a7f2008-03-14 14:25:53 -0400463}
464
Chuck Lever0490a542008-03-14 14:26:08 -0400465/*
466 * The "priv" argument may contain private information required
Chuck Lever36e8e662008-12-05 19:02:07 -0500467 * by the NSMPROC_MON call. This information will be supplied in the
468 * NLMPROC_SM_NOTIFY call.
Chuck Lever0490a542008-03-14 14:26:08 -0400469 */
Chuck Lever49b17002010-12-14 14:58:30 +0000470static void encode_priv(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever0490a542008-03-14 14:26:08 -0400471{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500472 __be32 *p;
473
474 p = xdr_reserve_space(xdr, SM_PRIV_SIZE);
Chuck Levercab2d3c2008-12-05 19:03:24 -0500475 xdr_encode_opaque_fixed(p, argp->priv->data, SM_PRIV_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Chuck Lever9f06c712010-12-14 14:59:18 +0000478static void nsm_xdr_enc_mon(struct rpc_rqst *req, struct xdr_stream *xdr,
479 const struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Chuck Lever9f06c712010-12-14 14:59:18 +0000481 encode_mon_id(xdr, argp);
482 encode_priv(xdr, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Chuck Lever9f06c712010-12-14 14:59:18 +0000485static void nsm_xdr_enc_unmon(struct rpc_rqst *req, struct xdr_stream *xdr,
486 const struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Chuck Lever9f06c712010-12-14 14:59:18 +0000488 encode_mon_id(xdr, argp);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500489}
490
Chuck Leverbf269552010-12-14 14:59:29 +0000491static int nsm_xdr_dec_stat_res(struct rpc_rqst *rqstp,
492 struct xdr_stream *xdr,
493 struct nsm_res *resp)
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500494{
Chuck Leverbf269552010-12-14 14:59:29 +0000495 __be32 *p;
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500496
Chuck Leverbf269552010-12-14 14:59:29 +0000497 p = xdr_inline_decode(xdr, 4 + 4);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500498 if (unlikely(p == NULL))
499 return -EIO;
Chuck Lever49b17002010-12-14 14:58:30 +0000500 resp->status = be32_to_cpup(p++);
501 resp->state = be32_to_cpup(p);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500502
Chuck Leverbf269552010-12-14 14:59:29 +0000503 dprintk("lockd: %s status %d state %d\n",
504 __func__, resp->status, resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return 0;
506}
507
Chuck Leverbf269552010-12-14 14:59:29 +0000508static int nsm_xdr_dec_stat(struct rpc_rqst *rqstp,
509 struct xdr_stream *xdr,
510 struct nsm_res *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Chuck Leverbf269552010-12-14 14:59:29 +0000512 __be32 *p;
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500513
Chuck Leverbf269552010-12-14 14:59:29 +0000514 p = xdr_inline_decode(xdr, 4);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500515 if (unlikely(p == NULL))
516 return -EIO;
Chuck Lever49b17002010-12-14 14:58:30 +0000517 resp->state = be32_to_cpup(p);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500518
Chuck Leverbf269552010-12-14 14:59:29 +0000519 dprintk("lockd: %s state %d\n", __func__, resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return 0;
521}
522
523#define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
Chuck Lever2ca77542008-03-14 14:26:01 -0400524#define SM_my_id_sz (SM_my_name_sz+3)
525#define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
526#define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
Chuck Lever0490a542008-03-14 14:26:08 -0400527#define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
528#define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529#define SM_monres_sz 2
530#define SM_unmonres_sz 1
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532static struct rpc_procinfo nsm_procedures[] = {
Chuck Lever36e8e662008-12-05 19:02:07 -0500533[NSMPROC_MON] = {
534 .p_proc = NSMPROC_MON,
Chuck Lever9f06c712010-12-14 14:59:18 +0000535 .p_encode = (kxdreproc_t)nsm_xdr_enc_mon,
Chuck Leverbf269552010-12-14 14:59:29 +0000536 .p_decode = (kxdrdproc_t)nsm_xdr_dec_stat_res,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400537 .p_arglen = SM_mon_sz,
538 .p_replen = SM_monres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500539 .p_statidx = NSMPROC_MON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500540 .p_name = "MONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 },
Chuck Lever36e8e662008-12-05 19:02:07 -0500542[NSMPROC_UNMON] = {
543 .p_proc = NSMPROC_UNMON,
Chuck Lever9f06c712010-12-14 14:59:18 +0000544 .p_encode = (kxdreproc_t)nsm_xdr_enc_unmon,
Chuck Leverbf269552010-12-14 14:59:29 +0000545 .p_decode = (kxdrdproc_t)nsm_xdr_dec_stat,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400546 .p_arglen = SM_mon_id_sz,
547 .p_replen = SM_unmonres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500548 .p_statidx = NSMPROC_UNMON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500549 .p_name = "UNMONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 },
551};
552
Trond Myklebusta613fa12012-01-20 13:53:56 -0500553static const struct rpc_version nsm_version1 = {
Tobias Klausere8c96f82006-03-24 03:15:34 -0800554 .number = 1,
555 .nrprocs = ARRAY_SIZE(nsm_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 .procs = nsm_procedures
557};
558
Trond Myklebusta613fa12012-01-20 13:53:56 -0500559static const struct rpc_version *nsm_version[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 [1] = &nsm_version1,
561};
562
563static struct rpc_stat nsm_stats;
564
Trond Myklebusta613fa12012-01-20 13:53:56 -0500565static const struct rpc_program nsm_program = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 .name = "statd",
Chuck Lever36e8e662008-12-05 19:02:07 -0500567 .number = NSM_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800568 .nrvers = ARRAY_SIZE(nsm_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 .version = nsm_version,
570 .stats = &nsm_stats
571};