blob: 9fbbd11f9ecbbcc9e29aa989c33a58fc8ad727ff [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/lockd/mon.c
4 *
5 * The kernel statd client.
6 *
7 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
8 */
9
10#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
Chuck Lever94da7662008-12-11 17:56:07 -050012#include <linux/ktime.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Chuck Lever94da7662008-12-11 17:56:07 -050014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sunrpc/clnt.h>
Jeff Layton59766872013-02-04 12:50:00 -050016#include <linux/sunrpc/addr.h>
\"Talpey, Thomas\0896a7252007-09-10 13:48:23 -040017#include <linux/sunrpc/xprtsock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/sunrpc/svc.h>
19#include <linux/lockd/lockd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Mans Rullgardad5b3652009-03-28 19:55:20 +000021#include <asm/unaligned.h>
22
Stanislav Kinsburskye9406db2012-09-18 13:37:12 +040023#include "netns.h"
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#define NLMDBG_FACILITY NLMDBG_MONITOR
Chuck Lever36e8e662008-12-05 19:02:07 -050026#define NSM_PROGRAM 100024
27#define NSM_VERSION 1
28
29enum {
30 NSMPROC_NULL,
31 NSMPROC_STAT,
32 NSMPROC_MON,
33 NSMPROC_UNMON,
34 NSMPROC_UNMON_ALL,
35 NSMPROC_SIMU_CRASH,
36 NSMPROC_NOTIFY,
37};
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Chuck Lever9c1bfd02008-12-05 19:01:59 -050039struct nsm_args {
Chuck Levercab2d3c2008-12-05 19:03:24 -050040 struct nsm_private *priv;
Chuck Lever9c1bfd02008-12-05 19:01:59 -050041 u32 prog; /* RPC callback info */
42 u32 vers;
43 u32 proc;
44
45 char *mon_name;
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +030046 const char *nodename;
Chuck Lever9c1bfd02008-12-05 19:01:59 -050047};
48
49struct nsm_res {
50 u32 status;
51 u32 state;
52};
53
Trond Myklebusta613fa12012-01-20 13:53:56 -050054static const struct rpc_program nsm_program;
Chuck Lever67c6d102008-12-05 19:02:45 -050055static DEFINE_SPINLOCK(nsm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/*
58 * Local NSM state
59 */
Chuck Lever6c9dc422009-06-17 18:02:10 -070060u32 __read_mostly nsm_local_state;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103061bool __read_mostly nsm_use_hostnames;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Chuck Lever8529bc52008-12-11 17:56:22 -050063static inline struct sockaddr *nsm_addr(const struct nsm_handle *nsm)
64{
65 return (struct sockaddr *)&nsm->sm_addr;
66}
67
Trond Myklebust03a9a422015-01-30 18:12:28 -050068static struct rpc_clnt *nsm_create(struct net *net, const char *nodename)
Chuck Lever49b56992008-12-11 17:56:37 -050069{
70 struct sockaddr_in sin = {
71 .sin_family = AF_INET,
72 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
73 };
74 struct rpc_create_args args = {
Stanislav Kinsbursky0e1cb5c2012-01-31 15:08:21 +040075 .net = net,
Stanislav Kinsburskye9406db2012-09-18 13:37:12 +040076 .protocol = XPRT_TRANSPORT_TCP,
Chuck Lever49b56992008-12-11 17:56:37 -050077 .address = (struct sockaddr *)&sin,
78 .addrsize = sizeof(sin),
79 .servername = "rpc.statd",
Trond Myklebust03a9a422015-01-30 18:12:28 -050080 .nodename = nodename,
Chuck Lever49b56992008-12-11 17:56:37 -050081 .program = &nsm_program,
82 .version = NSM_VERSION,
83 .authflavor = RPC_AUTH_NULL,
Chuck Lever0e5c2632009-06-17 18:02:11 -070084 .flags = RPC_CLNT_CREATE_NOPING,
Chuck Lever49b56992008-12-11 17:56:37 -050085 };
86
87 return rpc_create(&args);
88}
89
Stanislav Kinsbursky0e1cb5c2012-01-31 15:08:21 +040090static int nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res,
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +030091 const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 int status;
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +030094 struct rpc_clnt *clnt;
Chuck Levera4846752008-12-04 14:20:23 -050095 struct nsm_args args = {
Chuck Levercab2d3c2008-12-05 19:03:24 -050096 .priv = &nsm->sm_priv,
Chuck Levera4846752008-12-04 14:20:23 -050097 .prog = NLM_PROGRAM,
98 .vers = 3,
99 .proc = NLMPROC_NSM_NOTIFY,
Chuck Lever29ed1402008-12-04 14:20:46 -0500100 .mon_name = nsm->sm_mon_name,
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300101 .nodename = host->nodename,
Chuck Levera4846752008-12-04 14:20:23 -0500102 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500103 struct rpc_message msg = {
104 .rpc_argp = &args,
105 .rpc_resp = res,
106 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 memset(res, 0, sizeof(*res));
109
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300110 clnt = nsm_create(host->net, host->nodename);
111 if (IS_ERR(clnt)) {
112 dprintk("lockd: failed to create NSM upcall transport, "
113 "status=%ld, net=%p\n", PTR_ERR(clnt), host->net);
114 return PTR_ERR(clnt);
115 }
116
Chuck Leverdead28d2006-03-20 13:44:23 -0500117 msg.rpc_proc = &clnt->cl_procinfo[proc];
Stanislav Kinsburskye9406db2012-09-18 13:37:12 +0400118 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN);
Benjamin Coddington173b3af2014-09-23 12:26:20 -0400119 if (status == -ECONNREFUSED) {
120 dprintk("lockd: NSM upcall RPC failed, status=%d, forcing rebind\n",
121 status);
122 rpc_force_rebind(clnt);
123 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN);
124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (status < 0)
Chuck Lever5acf4312008-12-04 14:20:31 -0500126 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
127 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 else
129 status = 0;
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300130
131 rpc_shutdown_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return status;
133}
134
Chuck Lever1e493232008-12-04 14:21:24 -0500135/**
136 * nsm_monitor - Notify a peer in case we reboot
137 * @host: pointer to nlm_host of peer to notify
138 *
139 * If this peer is not already monitored, this function sends an
140 * upcall to the local rpc.statd to record the name/address of
141 * the peer to notify in case we reboot.
142 *
143 * Returns zero if the peer is monitored by the local rpc.statd;
144 * otherwise a negative errno value is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 */
Chuck Lever1e493232008-12-04 14:21:24 -0500146int nsm_monitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700148 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 struct nsm_res res;
150 int status;
151
Chuck Lever9fee4902008-12-04 14:20:53 -0500152 dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700153
154 if (nsm->sm_monitored)
Olaf Kirch977faf32006-10-04 02:15:51 -0700155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Chuck Lever29ed1402008-12-04 14:20:46 -0500157 /*
158 * Choose whether to record the caller_name or IP address of
159 * this peer in the local rpc.statd's database.
160 */
161 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
162
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300163 status = nsm_mon_unmon(nsm, NSMPROC_MON, &res, host);
Chuck Lever6c9dc422009-06-17 18:02:10 -0700164 if (unlikely(res.status != 0))
Chuck Lever5d254b12008-12-04 14:21:15 -0500165 status = -EIO;
Chuck Lever6c9dc422009-06-17 18:02:10 -0700166 if (unlikely(status < 0)) {
Jeff Layton9af94fc2014-10-31 08:28:29 -0400167 pr_notice_ratelimited("lockd: cannot monitor %s\n", nsm->sm_name);
Chuck Lever6c9dc422009-06-17 18:02:10 -0700168 return status;
169 }
170
171 nsm->sm_monitored = 1;
172 if (unlikely(nsm_local_state != res.state)) {
173 nsm_local_state = res.state;
174 dprintk("lockd: NSM state changed to %d\n", nsm_local_state);
175 }
176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Chuck Lever356c3eb2008-12-04 14:21:38 -0500179/**
180 * nsm_unmonitor - Unregister peer notification
181 * @host: pointer to nlm_host of peer to stop monitoring
182 *
183 * If this peer is monitored, this function sends an upcall to
184 * tell the local rpc.statd not to send this peer a notification
185 * when we reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
Chuck Lever356c3eb2008-12-04 14:21:38 -0500187void nsm_unmonitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700189 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 struct nsm_res res;
Chuck Lever356c3eb2008-12-04 14:21:38 -0500191 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Olaf Kirch9502c522006-10-04 02:15:56 -0700193 if (atomic_read(&nsm->sm_count) == 1
194 && nsm->sm_monitored && !nsm->sm_sticky) {
Chuck Lever9fee4902008-12-04 14:20:53 -0500195 dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700196
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300197 status = nsm_mon_unmon(nsm, NSMPROC_UNMON, &res, host);
Chuck Lever0c7aef42008-12-04 14:21:46 -0500198 if (res.status != 0)
199 status = -EIO;
Olaf Kirch977faf32006-10-04 02:15:51 -0700200 if (status < 0)
Olaf Kirch9502c522006-10-04 02:15:56 -0700201 printk(KERN_NOTICE "lockd: cannot unmonitor %s\n",
Chuck Lever9fee4902008-12-04 14:20:53 -0500202 nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700203 else
204 nsm->sm_monitored = 0;
Olaf Kirch977faf32006-10-04 02:15:51 -0700205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300208static struct nsm_handle *nsm_lookup_hostname(const struct list_head *nsm_handles,
209 const char *hostname, const size_t len)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500210{
211 struct nsm_handle *nsm;
212
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300213 list_for_each_entry(nsm, nsm_handles, sm_link)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500214 if (strlen(nsm->sm_name) == len &&
215 memcmp(nsm->sm_name, hostname, len) == 0)
216 return nsm;
217 return NULL;
218}
219
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300220static struct nsm_handle *nsm_lookup_addr(const struct list_head *nsm_handles,
221 const struct sockaddr *sap)
Chuck Lever77a3ef32008-12-11 17:55:59 -0500222{
223 struct nsm_handle *nsm;
224
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300225 list_for_each_entry(nsm, nsm_handles, sm_link)
Jeff Layton4516fc02009-08-14 12:57:54 -0400226 if (rpc_cmp_addr(nsm_addr(nsm), sap))
Chuck Lever77a3ef32008-12-11 17:55:59 -0500227 return nsm;
228 return NULL;
229}
230
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300231static struct nsm_handle *nsm_lookup_priv(const struct list_head *nsm_handles,
232 const struct nsm_private *priv)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500233{
234 struct nsm_handle *nsm;
235
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300236 list_for_each_entry(nsm, nsm_handles, sm_link)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500237 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;
Mans Rullgardad5b3652009-03-28 19:55:20 +0000263 s64 ns;
Chuck Lever94da7662008-12-11 17:56:07 -0500264
Thomas Gleixner5eaaed42014-07-16 21:04:46 +0000265 ns = ktime_get_ns();
Mans Rullgardad5b3652009-03-28 19:55:20 +0000266 put_unaligned(ns, p);
267 put_unaligned((unsigned long)nsm, p + 1);
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);
Chuck Leverc15128c2009-08-09 15:09:39 -0400286
287 if (rpc_ntop(nsm_addr(new), new->sm_addrbuf,
288 sizeof(new->sm_addrbuf)) == 0)
289 (void)snprintf(new->sm_addrbuf, sizeof(new->sm_addrbuf),
290 "unsupported address family");
Chuck Leverb39b8972008-12-11 17:55:52 -0500291 memcpy(new->sm_name, hostname, hostname_len);
292 new->sm_name[hostname_len] = '\0';
293
294 return new;
295}
296
Chuck Lever67c6d102008-12-05 19:02:45 -0500297/**
Chuck Lever92fd91b2008-12-05 19:04:01 -0500298 * nsm_get_handle - Find or create a cached nsm_handle
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300299 * @net: network namespace
Chuck Lever67c6d102008-12-05 19:02:45 -0500300 * @sap: pointer to socket address of handle to find
301 * @salen: length of socket address
302 * @hostname: pointer to C string containing hostname to find
303 * @hostname_len: length of C string
Chuck Lever67c6d102008-12-05 19:02:45 -0500304 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500305 * Behavior is modulated by the global nsm_use_hostnames variable.
Chuck Lever67c6d102008-12-05 19:02:45 -0500306 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500307 * Returns a cached nsm_handle after bumping its ref count, or
308 * returns a fresh nsm_handle if a handle that matches @sap and/or
309 * @hostname cannot be found in the handle cache. Returns NULL if
310 * an error occurs.
Chuck Lever67c6d102008-12-05 19:02:45 -0500311 */
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300312struct nsm_handle *nsm_get_handle(const struct net *net,
313 const struct sockaddr *sap,
Chuck Lever92fd91b2008-12-05 19:04:01 -0500314 const size_t salen, const char *hostname,
315 const size_t hostname_len)
Chuck Lever67c6d102008-12-05 19:02:45 -0500316{
Chuck Lever77a3ef32008-12-11 17:55:59 -0500317 struct nsm_handle *cached, *new = NULL;
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300318 struct lockd_net *ln = net_generic(net, lockd_net_id);
Chuck Lever67c6d102008-12-05 19:02:45 -0500319
Chuck Lever67c6d102008-12-05 19:02:45 -0500320 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
321 if (printk_ratelimit()) {
322 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
323 "in NFS lock request\n",
324 (int)hostname_len, hostname);
325 }
326 return NULL;
327 }
328
329retry:
330 spin_lock(&nsm_lock);
Chuck Lever67c6d102008-12-05 19:02:45 -0500331
Chuck Lever77a3ef32008-12-11 17:55:59 -0500332 if (nsm_use_hostnames && hostname != NULL)
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300333 cached = nsm_lookup_hostname(&ln->nsm_handles,
334 hostname, hostname_len);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500335 else
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300336 cached = nsm_lookup_addr(&ln->nsm_handles, sap);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500337
338 if (cached != NULL) {
339 atomic_inc(&cached->sm_count);
340 spin_unlock(&nsm_lock);
341 kfree(new);
342 dprintk("lockd: found nsm_handle for %s (%s), "
343 "cnt %d\n", cached->sm_name,
344 cached->sm_addrbuf,
345 atomic_read(&cached->sm_count));
346 return cached;
Chuck Lever67c6d102008-12-05 19:02:45 -0500347 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500348
349 if (new != NULL) {
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300350 list_add(&new->sm_link, &ln->nsm_handles);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500351 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500352 dprintk("lockd: created nsm_handle for %s (%s)\n",
Chuck Lever77a3ef32008-12-11 17:55:59 -0500353 new->sm_name, new->sm_addrbuf);
354 return new;
Chuck Lever67c6d102008-12-05 19:02:45 -0500355 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500356
Chuck Lever67c6d102008-12-05 19:02:45 -0500357 spin_unlock(&nsm_lock);
358
Chuck Lever77a3ef32008-12-11 17:55:59 -0500359 new = nsm_create_handle(sap, salen, hostname, hostname_len);
360 if (unlikely(new == NULL))
Chuck Lever67c6d102008-12-05 19:02:45 -0500361 return NULL;
Chuck Lever67c6d102008-12-05 19:02:45 -0500362 goto retry;
Chuck Lever67c6d102008-12-05 19:02:45 -0500363}
364
365/**
Chuck Lever3420a8c2008-12-05 19:03:46 -0500366 * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300367 * @net: network namespace
Chuck Lever3420a8c2008-12-05 19:03:46 -0500368 * @info: pointer to NLMPROC_SM_NOTIFY arguments
369 *
Jeff Layton7e469af2010-02-05 15:09:22 -0500370 * Returns a matching nsm_handle if found in the nsm cache. The returned
371 * nsm_handle's reference count is bumped. Otherwise returns NULL if some
372 * error occurred.
Chuck Lever3420a8c2008-12-05 19:03:46 -0500373 */
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300374struct nsm_handle *nsm_reboot_lookup(const struct net *net,
375 const struct nlm_reboot *info)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500376{
377 struct nsm_handle *cached;
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300378 struct lockd_net *ln = net_generic(net, lockd_net_id);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500379
380 spin_lock(&nsm_lock);
381
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300382 cached = nsm_lookup_priv(&ln->nsm_handles, &info->priv);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500383 if (unlikely(cached == NULL)) {
384 spin_unlock(&nsm_lock);
385 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
386 info->len, info->mon);
387 return cached;
388 }
389
390 atomic_inc(&cached->sm_count);
391 spin_unlock(&nsm_lock);
392
Chuck Lever3420a8c2008-12-05 19:03:46 -0500393 dprintk("lockd: host %s (%s) rebooted, cnt %d\n",
394 cached->sm_name, cached->sm_addrbuf,
395 atomic_read(&cached->sm_count));
396 return cached;
397}
398
399/**
Chuck Lever67c6d102008-12-05 19:02:45 -0500400 * nsm_release - Release an NSM handle
401 * @nsm: pointer to handle to be released
402 *
403 */
404void nsm_release(struct nsm_handle *nsm)
405{
Chuck Lever67c6d102008-12-05 19:02:45 -0500406 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
407 list_del(&nsm->sm_link);
408 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500409 dprintk("lockd: destroyed nsm_handle for %s (%s)\n",
410 nsm->sm_name, nsm->sm_addrbuf);
Chuck Lever67c6d102008-12-05 19:02:45 -0500411 kfree(nsm);
412 }
413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * XDR functions for NSM.
Chuck Lever2ca77542008-03-14 14:26:01 -0400417 *
418 * See http://www.opengroup.org/ for details on the Network
419 * Status Monitor wire protocol.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 */
421
Chuck Lever49b17002010-12-14 14:58:30 +0000422static void encode_nsm_string(struct xdr_stream *xdr, const char *string)
Chuck Lever099bd052008-03-14 14:25:32 -0400423{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500424 const u32 len = strlen(string);
425 __be32 *p;
Chuck Lever099bd052008-03-14 14:25:32 -0400426
Chuck Lever49b17002010-12-14 14:58:30 +0000427 p = xdr_reserve_space(xdr, 4 + len);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500428 xdr_encode_opaque(p, string, len);
Chuck Lever099bd052008-03-14 14:25:32 -0400429}
430
Chuck Lever49695172008-03-14 14:25:39 -0400431/*
432 * "mon_name" specifies the host to be monitored.
Chuck Lever49695172008-03-14 14:25:39 -0400433 */
Chuck Lever49b17002010-12-14 14:58:30 +0000434static void encode_mon_name(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever49695172008-03-14 14:25:39 -0400435{
Chuck Lever49b17002010-12-14 14:58:30 +0000436 encode_nsm_string(xdr, argp->mon_name);
Chuck Lever49695172008-03-14 14:25:39 -0400437}
438
Chuck Lever850c95f2008-03-14 14:25:46 -0400439/*
440 * The "my_id" argument specifies the hostname and RPC procedure
441 * to be called when the status manager receives notification
Chuck Lever36e8e662008-12-05 19:02:07 -0500442 * (via the NLMPROC_SM_NOTIFY call) that the state of host "mon_name"
Chuck Lever850c95f2008-03-14 14:25:46 -0400443 * has changed.
444 */
Chuck Lever49b17002010-12-14 14:58:30 +0000445static void encode_my_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever850c95f2008-03-14 14:25:46 -0400446{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500447 __be32 *p;
Chuck Lever850c95f2008-03-14 14:25:46 -0400448
Stanislav Kinsbursky303a7ce2012-09-18 13:37:18 +0400449 encode_nsm_string(xdr, argp->nodename);
Chuck Lever49b17002010-12-14 14:58:30 +0000450 p = xdr_reserve_space(xdr, 4 + 4 + 4);
451 *p++ = cpu_to_be32(argp->prog);
452 *p++ = cpu_to_be32(argp->vers);
453 *p = cpu_to_be32(argp->proc);
Chuck Lever850c95f2008-03-14 14:25:46 -0400454}
455
Chuck Leverea72a7f2008-03-14 14:25:53 -0400456/*
457 * The "mon_id" argument specifies the non-private arguments
Chuck Lever36e8e662008-12-05 19:02:07 -0500458 * of an NSMPROC_MON or NSMPROC_UNMON call.
Chuck Leverea72a7f2008-03-14 14:25:53 -0400459 */
Chuck Lever49b17002010-12-14 14:58:30 +0000460static void encode_mon_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Leverea72a7f2008-03-14 14:25:53 -0400461{
Chuck Lever49b17002010-12-14 14:58:30 +0000462 encode_mon_name(xdr, argp);
463 encode_my_id(xdr, argp);
Chuck Leverea72a7f2008-03-14 14:25:53 -0400464}
465
Chuck Lever0490a542008-03-14 14:26:08 -0400466/*
467 * The "priv" argument may contain private information required
Chuck Lever36e8e662008-12-05 19:02:07 -0500468 * by the NSMPROC_MON call. This information will be supplied in the
469 * NLMPROC_SM_NOTIFY call.
Chuck Lever0490a542008-03-14 14:26:08 -0400470 */
Chuck Lever49b17002010-12-14 14:58:30 +0000471static void encode_priv(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever0490a542008-03-14 14:26:08 -0400472{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500473 __be32 *p;
474
475 p = xdr_reserve_space(xdr, SM_PRIV_SIZE);
Chuck Levercab2d3c2008-12-05 19:03:24 -0500476 xdr_encode_opaque_fixed(p, argp->priv->data, SM_PRIV_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Chuck Lever9f06c712010-12-14 14:59:18 +0000479static void nsm_xdr_enc_mon(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200480 const void *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Chuck Lever9f06c712010-12-14 14:59:18 +0000482 encode_mon_id(xdr, argp);
483 encode_priv(xdr, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Chuck Lever9f06c712010-12-14 14:59:18 +0000486static void nsm_xdr_enc_unmon(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200487 const void *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Chuck Lever9f06c712010-12-14 14:59:18 +0000489 encode_mon_id(xdr, argp);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500490}
491
Chuck Leverbf269552010-12-14 14:59:29 +0000492static int nsm_xdr_dec_stat_res(struct rpc_rqst *rqstp,
493 struct xdr_stream *xdr,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200494 void *data)
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500495{
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200496 struct nsm_res *resp = data;
Chuck Leverbf269552010-12-14 14:59:29 +0000497 __be32 *p;
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500498
Chuck Leverbf269552010-12-14 14:59:29 +0000499 p = xdr_inline_decode(xdr, 4 + 4);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500500 if (unlikely(p == NULL))
501 return -EIO;
Chuck Lever49b17002010-12-14 14:58:30 +0000502 resp->status = be32_to_cpup(p++);
503 resp->state = be32_to_cpup(p);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500504
Chuck Leverbf269552010-12-14 14:59:29 +0000505 dprintk("lockd: %s status %d state %d\n",
506 __func__, resp->status, resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return 0;
508}
509
Chuck Leverbf269552010-12-14 14:59:29 +0000510static int nsm_xdr_dec_stat(struct rpc_rqst *rqstp,
511 struct xdr_stream *xdr,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200512 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200514 struct nsm_res *resp = data;
Chuck Leverbf269552010-12-14 14:59:29 +0000515 __be32 *p;
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500516
Chuck Leverbf269552010-12-14 14:59:29 +0000517 p = xdr_inline_decode(xdr, 4);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500518 if (unlikely(p == NULL))
519 return -EIO;
Chuck Lever49b17002010-12-14 14:58:30 +0000520 resp->state = be32_to_cpup(p);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500521
Chuck Leverbf269552010-12-14 14:59:29 +0000522 dprintk("lockd: %s state %d\n", __func__, resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return 0;
524}
525
526#define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
Chuck Lever2ca77542008-03-14 14:26:01 -0400527#define SM_my_id_sz (SM_my_name_sz+3)
528#define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
529#define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
Chuck Lever0490a542008-03-14 14:26:08 -0400530#define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
531#define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532#define SM_monres_sz 2
533#define SM_unmonres_sz 1
534
Christoph Hellwig499b4982017-05-12 15:36:49 +0200535static const struct rpc_procinfo nsm_procedures[] = {
Chuck Lever36e8e662008-12-05 19:02:07 -0500536[NSMPROC_MON] = {
537 .p_proc = NSMPROC_MON,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200538 .p_encode = nsm_xdr_enc_mon,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200539 .p_decode = nsm_xdr_dec_stat_res,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400540 .p_arglen = SM_mon_sz,
541 .p_replen = SM_monres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500542 .p_statidx = NSMPROC_MON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500543 .p_name = "MONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 },
Chuck Lever36e8e662008-12-05 19:02:07 -0500545[NSMPROC_UNMON] = {
546 .p_proc = NSMPROC_UNMON,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200547 .p_encode = nsm_xdr_enc_unmon,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200548 .p_decode = nsm_xdr_dec_stat,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400549 .p_arglen = SM_mon_id_sz,
550 .p_replen = SM_unmonres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500551 .p_statidx = NSMPROC_UNMON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500552 .p_name = "UNMONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 },
554};
555
Christoph Hellwig1c5876d2017-05-08 23:27:10 +0200556static unsigned int nsm_version1_counts[ARRAY_SIZE(nsm_procedures)];
Trond Myklebusta613fa12012-01-20 13:53:56 -0500557static const struct rpc_version nsm_version1 = {
Christoph Hellwigcdfa31e2017-05-08 23:32:18 +0200558 .number = 1,
559 .nrprocs = ARRAY_SIZE(nsm_procedures),
Christoph Hellwig1c5876d2017-05-08 23:27:10 +0200560 .procs = nsm_procedures,
561 .counts = nsm_version1_counts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562};
563
Trond Myklebusta613fa12012-01-20 13:53:56 -0500564static const struct rpc_version *nsm_version[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 [1] = &nsm_version1,
566};
567
568static struct rpc_stat nsm_stats;
569
Trond Myklebusta613fa12012-01-20 13:53:56 -0500570static const struct rpc_program nsm_program = {
Christoph Hellwigcdfa31e2017-05-08 23:32:18 +0200571 .name = "statd",
572 .number = NSM_PROGRAM,
573 .nrvers = ARRAY_SIZE(nsm_version),
574 .version = nsm_version,
575 .stats = &nsm_stats
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576};