blob: 1eabd91870e6f6351571eef85d7b76cc9fa0e8e2 [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\0896a722007-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,
Trond Myklebust79caa5f2019-04-24 17:46:42 -040085 .cred = current_cred(),
Chuck Lever49b56992008-12-11 17:56:37 -050086 };
87
88 return rpc_create(&args);
89}
90
Stanislav Kinsbursky0e1cb5c2012-01-31 15:08:21 +040091static int nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res,
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +030092 const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 int status;
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +030095 struct rpc_clnt *clnt;
Chuck Levera4846752008-12-04 14:20:23 -050096 struct nsm_args args = {
Chuck Levercab2d3c2008-12-05 19:03:24 -050097 .priv = &nsm->sm_priv,
Chuck Levera4846752008-12-04 14:20:23 -050098 .prog = NLM_PROGRAM,
99 .vers = 3,
100 .proc = NLMPROC_NSM_NOTIFY,
Chuck Lever29ed1402008-12-04 14:20:46 -0500101 .mon_name = nsm->sm_mon_name,
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300102 .nodename = host->nodename,
Chuck Levera4846752008-12-04 14:20:23 -0500103 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500104 struct rpc_message msg = {
105 .rpc_argp = &args,
106 .rpc_resp = res,
107 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 memset(res, 0, sizeof(*res));
110
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300111 clnt = nsm_create(host->net, host->nodename);
112 if (IS_ERR(clnt)) {
113 dprintk("lockd: failed to create NSM upcall transport, "
Vasily Averine919b072017-11-08 08:55:55 +0300114 "status=%ld, net=%x\n", PTR_ERR(clnt),
115 host->net->ns.inum);
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300116 return PTR_ERR(clnt);
117 }
118
Chuck Leverdead28d2006-03-20 13:44:23 -0500119 msg.rpc_proc = &clnt->cl_procinfo[proc];
Stanislav Kinsburskye9406db2012-09-18 13:37:12 +0400120 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN);
Benjamin Coddington173b3af2014-09-23 12:26:20 -0400121 if (status == -ECONNREFUSED) {
122 dprintk("lockd: NSM upcall RPC failed, status=%d, forcing rebind\n",
123 status);
124 rpc_force_rebind(clnt);
125 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN);
126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (status < 0)
Chuck Lever5acf4312008-12-04 14:20:31 -0500128 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
129 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 else
131 status = 0;
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300132
133 rpc_shutdown_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return status;
135}
136
Chuck Lever1e493232008-12-04 14:21:24 -0500137/**
138 * nsm_monitor - Notify a peer in case we reboot
139 * @host: pointer to nlm_host of peer to notify
140 *
141 * If this peer is not already monitored, this function sends an
142 * upcall to the local rpc.statd to record the name/address of
143 * the peer to notify in case we reboot.
144 *
145 * Returns zero if the peer is monitored by the local rpc.statd;
146 * otherwise a negative errno value is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 */
Chuck Lever1e493232008-12-04 14:21:24 -0500148int nsm_monitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700150 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct nsm_res res;
152 int status;
153
Chuck Lever9fee4902008-12-04 14:20:53 -0500154 dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700155
156 if (nsm->sm_monitored)
Olaf Kirch977faf32006-10-04 02:15:51 -0700157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Chuck Lever29ed1402008-12-04 14:20:46 -0500159 /*
160 * Choose whether to record the caller_name or IP address of
161 * this peer in the local rpc.statd's database.
162 */
163 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
164
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300165 status = nsm_mon_unmon(nsm, NSMPROC_MON, &res, host);
Chuck Lever6c9dc422009-06-17 18:02:10 -0700166 if (unlikely(res.status != 0))
Chuck Lever5d254b12008-12-04 14:21:15 -0500167 status = -EIO;
Chuck Lever6c9dc422009-06-17 18:02:10 -0700168 if (unlikely(status < 0)) {
Jeff Layton9af94fc2014-10-31 08:28:29 -0400169 pr_notice_ratelimited("lockd: cannot monitor %s\n", nsm->sm_name);
Chuck Lever6c9dc422009-06-17 18:02:10 -0700170 return status;
171 }
172
173 nsm->sm_monitored = 1;
174 if (unlikely(nsm_local_state != res.state)) {
175 nsm_local_state = res.state;
176 dprintk("lockd: NSM state changed to %d\n", nsm_local_state);
177 }
178 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
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
Elena Reshetovac7510822017-11-29 13:15:44 +0200195 if (refcount_read(&nsm->sm_count) == 1
Olaf Kirch9502c522006-10-04 02:15:56 -0700196 && 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
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300199 status = nsm_mon_unmon(nsm, NSMPROC_UNMON, &res, host);
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
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300210static struct nsm_handle *nsm_lookup_hostname(const struct list_head *nsm_handles,
211 const char *hostname, const size_t len)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500212{
213 struct nsm_handle *nsm;
214
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300215 list_for_each_entry(nsm, nsm_handles, sm_link)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500216 if (strlen(nsm->sm_name) == len &&
217 memcmp(nsm->sm_name, hostname, len) == 0)
218 return nsm;
219 return NULL;
220}
221
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300222static struct nsm_handle *nsm_lookup_addr(const struct list_head *nsm_handles,
223 const struct sockaddr *sap)
Chuck Lever77a3ef32008-12-11 17:55:59 -0500224{
225 struct nsm_handle *nsm;
226
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300227 list_for_each_entry(nsm, nsm_handles, sm_link)
Jeff Layton4516fc02009-08-14 12:57:54 -0400228 if (rpc_cmp_addr(nsm_addr(nsm), sap))
Chuck Lever77a3ef32008-12-11 17:55:59 -0500229 return nsm;
230 return NULL;
231}
232
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300233static struct nsm_handle *nsm_lookup_priv(const struct list_head *nsm_handles,
234 const struct nsm_private *priv)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500235{
236 struct nsm_handle *nsm;
237
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300238 list_for_each_entry(nsm, nsm_handles, sm_link)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500239 if (memcmp(nsm->sm_priv.data, priv->data,
240 sizeof(priv->data)) == 0)
241 return nsm;
242 return NULL;
243}
244
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500245/*
246 * Construct a unique cookie to match this nsm_handle to this monitored
247 * host. It is passed to the local rpc.statd via NSMPROC_MON, and
248 * returned via NLMPROC_SM_NOTIFY, in the "priv" field of these
249 * requests.
250 *
Chuck Lever94da7662008-12-11 17:56:07 -0500251 * The NSM protocol requires that these cookies be unique while the
252 * system is running. We prefer a stronger requirement of making them
253 * unique across reboots. If user space bugs cause a stale cookie to
254 * be sent to the kernel, it could cause the wrong host to lose its
255 * lock state if cookies were not unique across reboots.
256 *
257 * The cookies are exposed only to local user space via loopback. They
258 * do not appear on the physical network. If we want greater security
259 * for some reason, nsm_init_private() could perform a one-way hash to
260 * obscure the contents of the cookie.
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500261 */
262static void nsm_init_private(struct nsm_handle *nsm)
263{
Chuck Lever94da7662008-12-11 17:56:07 -0500264 u64 *p = (u64 *)&nsm->sm_priv.data;
Mans Rullgardad5b3652009-03-28 19:55:20 +0000265 s64 ns;
Chuck Lever94da7662008-12-11 17:56:07 -0500266
Thomas Gleixner5eaaed42014-07-16 21:04:46 +0000267 ns = ktime_get_ns();
Mans Rullgardad5b3652009-03-28 19:55:20 +0000268 put_unaligned(ns, p);
269 put_unaligned((unsigned long)nsm, p + 1);
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500270}
271
Chuck Leverb39b8972008-12-11 17:55:52 -0500272static struct nsm_handle *nsm_create_handle(const struct sockaddr *sap,
273 const size_t salen,
274 const char *hostname,
275 const size_t hostname_len)
276{
277 struct nsm_handle *new;
278
279 new = kzalloc(sizeof(*new) + hostname_len + 1, GFP_KERNEL);
280 if (unlikely(new == NULL))
281 return NULL;
282
Elena Reshetovac7510822017-11-29 13:15:44 +0200283 refcount_set(&new->sm_count, 1);
Chuck Leverb39b8972008-12-11 17:55:52 -0500284 new->sm_name = (char *)(new + 1);
285 memcpy(nsm_addr(new), sap, salen);
286 new->sm_addrlen = salen;
287 nsm_init_private(new);
Chuck Leverc15128c52009-08-09 15:09:39 -0400288
289 if (rpc_ntop(nsm_addr(new), new->sm_addrbuf,
290 sizeof(new->sm_addrbuf)) == 0)
291 (void)snprintf(new->sm_addrbuf, sizeof(new->sm_addrbuf),
292 "unsupported address family");
Chuck Leverb39b8972008-12-11 17:55:52 -0500293 memcpy(new->sm_name, hostname, hostname_len);
294 new->sm_name[hostname_len] = '\0';
295
296 return new;
297}
298
Chuck Lever67c6d102008-12-05 19:02:45 -0500299/**
Chuck Lever92fd91b2008-12-05 19:04:01 -0500300 * nsm_get_handle - Find or create a cached nsm_handle
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300301 * @net: network namespace
Chuck Lever67c6d102008-12-05 19:02:45 -0500302 * @sap: pointer to socket address of handle to find
303 * @salen: length of socket address
304 * @hostname: pointer to C string containing hostname to find
305 * @hostname_len: length of C string
Chuck Lever67c6d102008-12-05 19:02:45 -0500306 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500307 * Behavior is modulated by the global nsm_use_hostnames variable.
Chuck Lever67c6d102008-12-05 19:02:45 -0500308 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500309 * Returns a cached nsm_handle after bumping its ref count, or
310 * returns a fresh nsm_handle if a handle that matches @sap and/or
311 * @hostname cannot be found in the handle cache. Returns NULL if
312 * an error occurs.
Chuck Lever67c6d102008-12-05 19:02:45 -0500313 */
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300314struct nsm_handle *nsm_get_handle(const struct net *net,
315 const struct sockaddr *sap,
Chuck Lever92fd91b2008-12-05 19:04:01 -0500316 const size_t salen, const char *hostname,
317 const size_t hostname_len)
Chuck Lever67c6d102008-12-05 19:02:45 -0500318{
Chuck Lever77a3ef32008-12-11 17:55:59 -0500319 struct nsm_handle *cached, *new = NULL;
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300320 struct lockd_net *ln = net_generic(net, lockd_net_id);
Chuck Lever67c6d102008-12-05 19:02:45 -0500321
Chuck Lever67c6d102008-12-05 19:02:45 -0500322 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
323 if (printk_ratelimit()) {
324 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
325 "in NFS lock request\n",
326 (int)hostname_len, hostname);
327 }
328 return NULL;
329 }
330
331retry:
332 spin_lock(&nsm_lock);
Chuck Lever67c6d102008-12-05 19:02:45 -0500333
Chuck Lever77a3ef32008-12-11 17:55:59 -0500334 if (nsm_use_hostnames && hostname != NULL)
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300335 cached = nsm_lookup_hostname(&ln->nsm_handles,
336 hostname, hostname_len);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500337 else
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300338 cached = nsm_lookup_addr(&ln->nsm_handles, sap);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500339
340 if (cached != NULL) {
Elena Reshetovac7510822017-11-29 13:15:44 +0200341 refcount_inc(&cached->sm_count);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500342 spin_unlock(&nsm_lock);
343 kfree(new);
344 dprintk("lockd: found nsm_handle for %s (%s), "
345 "cnt %d\n", cached->sm_name,
346 cached->sm_addrbuf,
Elena Reshetovac7510822017-11-29 13:15:44 +0200347 refcount_read(&cached->sm_count));
Chuck Lever77a3ef32008-12-11 17:55:59 -0500348 return cached;
Chuck Lever67c6d102008-12-05 19:02:45 -0500349 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500350
351 if (new != NULL) {
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300352 list_add(&new->sm_link, &ln->nsm_handles);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500353 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500354 dprintk("lockd: created nsm_handle for %s (%s)\n",
Chuck Lever77a3ef32008-12-11 17:55:59 -0500355 new->sm_name, new->sm_addrbuf);
356 return new;
Chuck Lever67c6d102008-12-05 19:02:45 -0500357 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500358
Chuck Lever67c6d102008-12-05 19:02:45 -0500359 spin_unlock(&nsm_lock);
360
Chuck Lever77a3ef32008-12-11 17:55:59 -0500361 new = nsm_create_handle(sap, salen, hostname, hostname_len);
362 if (unlikely(new == NULL))
Chuck Lever67c6d102008-12-05 19:02:45 -0500363 return NULL;
Chuck Lever67c6d102008-12-05 19:02:45 -0500364 goto retry;
Chuck Lever67c6d102008-12-05 19:02:45 -0500365}
366
367/**
Chuck Lever3420a8c2008-12-05 19:03:46 -0500368 * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300369 * @net: network namespace
Chuck Lever3420a8c2008-12-05 19:03:46 -0500370 * @info: pointer to NLMPROC_SM_NOTIFY arguments
371 *
Jeff Layton7e469af2010-02-05 15:09:22 -0500372 * Returns a matching nsm_handle if found in the nsm cache. The returned
373 * nsm_handle's reference count is bumped. Otherwise returns NULL if some
374 * error occurred.
Chuck Lever3420a8c2008-12-05 19:03:46 -0500375 */
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300376struct nsm_handle *nsm_reboot_lookup(const struct net *net,
377 const struct nlm_reboot *info)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500378{
379 struct nsm_handle *cached;
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300380 struct lockd_net *ln = net_generic(net, lockd_net_id);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500381
382 spin_lock(&nsm_lock);
383
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300384 cached = nsm_lookup_priv(&ln->nsm_handles, &info->priv);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500385 if (unlikely(cached == NULL)) {
386 spin_unlock(&nsm_lock);
387 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
388 info->len, info->mon);
389 return cached;
390 }
391
Elena Reshetovac7510822017-11-29 13:15:44 +0200392 refcount_inc(&cached->sm_count);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500393 spin_unlock(&nsm_lock);
394
Chuck Lever3420a8c2008-12-05 19:03:46 -0500395 dprintk("lockd: host %s (%s) rebooted, cnt %d\n",
396 cached->sm_name, cached->sm_addrbuf,
Elena Reshetovac7510822017-11-29 13:15:44 +0200397 refcount_read(&cached->sm_count));
Chuck Lever3420a8c2008-12-05 19:03:46 -0500398 return cached;
399}
400
401/**
Chuck Lever67c6d102008-12-05 19:02:45 -0500402 * nsm_release - Release an NSM handle
403 * @nsm: pointer to handle to be released
404 *
405 */
406void nsm_release(struct nsm_handle *nsm)
407{
Elena Reshetovac7510822017-11-29 13:15:44 +0200408 if (refcount_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
Chuck Lever67c6d102008-12-05 19:02:45 -0500409 list_del(&nsm->sm_link);
410 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500411 dprintk("lockd: destroyed nsm_handle for %s (%s)\n",
412 nsm->sm_name, nsm->sm_addrbuf);
Chuck Lever67c6d102008-12-05 19:02:45 -0500413 kfree(nsm);
414 }
415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * XDR functions for NSM.
Chuck Lever2ca77542008-03-14 14:26:01 -0400419 *
420 * See http://www.opengroup.org/ for details on the Network
421 * Status Monitor wire protocol.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 */
423
Chuck Lever49b17002010-12-14 14:58:30 +0000424static void encode_nsm_string(struct xdr_stream *xdr, const char *string)
Chuck Lever099bd052008-03-14 14:25:32 -0400425{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500426 const u32 len = strlen(string);
427 __be32 *p;
Chuck Lever099bd052008-03-14 14:25:32 -0400428
Chuck Lever49b17002010-12-14 14:58:30 +0000429 p = xdr_reserve_space(xdr, 4 + len);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500430 xdr_encode_opaque(p, string, len);
Chuck Lever099bd052008-03-14 14:25:32 -0400431}
432
Chuck Lever49695172008-03-14 14:25:39 -0400433/*
434 * "mon_name" specifies the host to be monitored.
Chuck Lever49695172008-03-14 14:25:39 -0400435 */
Chuck Lever49b17002010-12-14 14:58:30 +0000436static void encode_mon_name(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever49695172008-03-14 14:25:39 -0400437{
Chuck Lever49b17002010-12-14 14:58:30 +0000438 encode_nsm_string(xdr, argp->mon_name);
Chuck Lever49695172008-03-14 14:25:39 -0400439}
440
Chuck Lever850c95f2008-03-14 14:25:46 -0400441/*
442 * The "my_id" argument specifies the hostname and RPC procedure
443 * to be called when the status manager receives notification
Chuck Lever36e8e662008-12-05 19:02:07 -0500444 * (via the NLMPROC_SM_NOTIFY call) that the state of host "mon_name"
Chuck Lever850c95f2008-03-14 14:25:46 -0400445 * has changed.
446 */
Chuck Lever49b17002010-12-14 14:58:30 +0000447static void encode_my_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever850c95f2008-03-14 14:25:46 -0400448{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500449 __be32 *p;
Chuck Lever850c95f2008-03-14 14:25:46 -0400450
Stanislav Kinsbursky303a7ce2012-09-18 13:37:18 +0400451 encode_nsm_string(xdr, argp->nodename);
Chuck Lever49b17002010-12-14 14:58:30 +0000452 p = xdr_reserve_space(xdr, 4 + 4 + 4);
453 *p++ = cpu_to_be32(argp->prog);
454 *p++ = cpu_to_be32(argp->vers);
455 *p = cpu_to_be32(argp->proc);
Chuck Lever850c95f2008-03-14 14:25:46 -0400456}
457
Chuck Leverea72a7f2008-03-14 14:25:53 -0400458/*
459 * The "mon_id" argument specifies the non-private arguments
Chuck Lever36e8e662008-12-05 19:02:07 -0500460 * of an NSMPROC_MON or NSMPROC_UNMON call.
Chuck Leverea72a7f2008-03-14 14:25:53 -0400461 */
Chuck Lever49b17002010-12-14 14:58:30 +0000462static void encode_mon_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Leverea72a7f2008-03-14 14:25:53 -0400463{
Chuck Lever49b17002010-12-14 14:58:30 +0000464 encode_mon_name(xdr, argp);
465 encode_my_id(xdr, argp);
Chuck Leverea72a7f2008-03-14 14:25:53 -0400466}
467
Chuck Lever0490a542008-03-14 14:26:08 -0400468/*
469 * The "priv" argument may contain private information required
Chuck Lever36e8e662008-12-05 19:02:07 -0500470 * by the NSMPROC_MON call. This information will be supplied in the
471 * NLMPROC_SM_NOTIFY call.
Chuck Lever0490a542008-03-14 14:26:08 -0400472 */
Chuck Lever49b17002010-12-14 14:58:30 +0000473static void encode_priv(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever0490a542008-03-14 14:26:08 -0400474{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500475 __be32 *p;
476
477 p = xdr_reserve_space(xdr, SM_PRIV_SIZE);
Chuck Levercab2d3c2008-12-05 19:03:24 -0500478 xdr_encode_opaque_fixed(p, argp->priv->data, SM_PRIV_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Chuck Lever9f06c712010-12-14 14:59:18 +0000481static void nsm_xdr_enc_mon(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200482 const void *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Chuck Lever9f06c712010-12-14 14:59:18 +0000484 encode_mon_id(xdr, argp);
485 encode_priv(xdr, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Chuck Lever9f06c712010-12-14 14:59:18 +0000488static void nsm_xdr_enc_unmon(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200489 const void *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Chuck Lever9f06c712010-12-14 14:59:18 +0000491 encode_mon_id(xdr, argp);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500492}
493
Chuck Leverbf269552010-12-14 14:59:29 +0000494static int nsm_xdr_dec_stat_res(struct rpc_rqst *rqstp,
495 struct xdr_stream *xdr,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200496 void *data)
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500497{
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200498 struct nsm_res *resp = data;
Chuck Leverbf269552010-12-14 14:59:29 +0000499 __be32 *p;
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500500
Chuck Leverbf269552010-12-14 14:59:29 +0000501 p = xdr_inline_decode(xdr, 4 + 4);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500502 if (unlikely(p == NULL))
503 return -EIO;
Chuck Lever49b17002010-12-14 14:58:30 +0000504 resp->status = be32_to_cpup(p++);
505 resp->state = be32_to_cpup(p);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500506
Chuck Leverbf269552010-12-14 14:59:29 +0000507 dprintk("lockd: %s status %d state %d\n",
508 __func__, resp->status, resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return 0;
510}
511
Chuck Leverbf269552010-12-14 14:59:29 +0000512static int nsm_xdr_dec_stat(struct rpc_rqst *rqstp,
513 struct xdr_stream *xdr,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200514 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200516 struct nsm_res *resp = data;
Chuck Leverbf269552010-12-14 14:59:29 +0000517 __be32 *p;
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500518
Chuck Leverbf269552010-12-14 14:59:29 +0000519 p = xdr_inline_decode(xdr, 4);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500520 if (unlikely(p == NULL))
521 return -EIO;
Chuck Lever49b17002010-12-14 14:58:30 +0000522 resp->state = be32_to_cpup(p);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500523
Chuck Leverbf269552010-12-14 14:59:29 +0000524 dprintk("lockd: %s state %d\n", __func__, resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return 0;
526}
527
528#define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
Chuck Lever2ca77542008-03-14 14:26:01 -0400529#define SM_my_id_sz (SM_my_name_sz+3)
530#define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
531#define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
Chuck Lever0490a542008-03-14 14:26:08 -0400532#define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
533#define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534#define SM_monres_sz 2
535#define SM_unmonres_sz 1
536
Christoph Hellwig499b4982017-05-12 15:36:49 +0200537static const struct rpc_procinfo nsm_procedures[] = {
Chuck Lever36e8e662008-12-05 19:02:07 -0500538[NSMPROC_MON] = {
539 .p_proc = NSMPROC_MON,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200540 .p_encode = nsm_xdr_enc_mon,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200541 .p_decode = nsm_xdr_dec_stat_res,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400542 .p_arglen = SM_mon_sz,
543 .p_replen = SM_monres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500544 .p_statidx = NSMPROC_MON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500545 .p_name = "MONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 },
Chuck Lever36e8e662008-12-05 19:02:07 -0500547[NSMPROC_UNMON] = {
548 .p_proc = NSMPROC_UNMON,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200549 .p_encode = nsm_xdr_enc_unmon,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200550 .p_decode = nsm_xdr_dec_stat,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400551 .p_arglen = SM_mon_id_sz,
552 .p_replen = SM_unmonres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500553 .p_statidx = NSMPROC_UNMON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500554 .p_name = "UNMONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 },
556};
557
Christoph Hellwig1c5876d2017-05-08 23:27:10 +0200558static unsigned int nsm_version1_counts[ARRAY_SIZE(nsm_procedures)];
Trond Myklebusta613fa12012-01-20 13:53:56 -0500559static const struct rpc_version nsm_version1 = {
Christoph Hellwigcdfa31e2017-05-08 23:32:18 +0200560 .number = 1,
561 .nrprocs = ARRAY_SIZE(nsm_procedures),
Christoph Hellwig1c5876d2017-05-08 23:27:10 +0200562 .procs = nsm_procedures,
563 .counts = nsm_version1_counts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564};
565
Trond Myklebusta613fa12012-01-20 13:53:56 -0500566static const struct rpc_version *nsm_version[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 [1] = &nsm_version1,
568};
569
570static struct rpc_stat nsm_stats;
571
Trond Myklebusta613fa12012-01-20 13:53:56 -0500572static const struct rpc_program nsm_program = {
Christoph Hellwigcdfa31e2017-05-08 23:32:18 +0200573 .name = "statd",
574 .number = NSM_PROGRAM,
575 .nrvers = ARRAY_SIZE(nsm_version),
576 .version = nsm_version,
577 .stats = &nsm_stats
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578};