blob: 654594ef4f945ab95d6f4fdc6cb9365b9a4d8595 [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,
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, "
Vasily Averine919b072017-11-08 08:55:55 +0300113 "status=%ld, net=%x\n", PTR_ERR(clnt),
114 host->net->ns.inum);
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300115 return PTR_ERR(clnt);
116 }
117
Chuck Leverdead28d2006-03-20 13:44:23 -0500118 msg.rpc_proc = &clnt->cl_procinfo[proc];
Stanislav Kinsburskye9406db2012-09-18 13:37:12 +0400119 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN);
Benjamin Coddington173b3af2014-09-23 12:26:20 -0400120 if (status == -ECONNREFUSED) {
121 dprintk("lockd: NSM upcall RPC failed, status=%d, forcing rebind\n",
122 status);
123 rpc_force_rebind(clnt);
124 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN);
125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (status < 0)
Chuck Lever5acf4312008-12-04 14:20:31 -0500127 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
128 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 else
130 status = 0;
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300131
132 rpc_shutdown_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return status;
134}
135
Chuck Lever1e493232008-12-04 14:21:24 -0500136/**
137 * nsm_monitor - Notify a peer in case we reboot
138 * @host: pointer to nlm_host of peer to notify
139 *
140 * If this peer is not already monitored, this function sends an
141 * upcall to the local rpc.statd to record the name/address of
142 * the peer to notify in case we reboot.
143 *
144 * Returns zero if the peer is monitored by the local rpc.statd;
145 * otherwise a negative errno value is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
Chuck Lever1e493232008-12-04 14:21:24 -0500147int nsm_monitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700149 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 struct nsm_res res;
151 int status;
152
Chuck Lever9fee4902008-12-04 14:20:53 -0500153 dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700154
155 if (nsm->sm_monitored)
Olaf Kirch977faf32006-10-04 02:15:51 -0700156 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Chuck Lever29ed1402008-12-04 14:20:46 -0500158 /*
159 * Choose whether to record the caller_name or IP address of
160 * this peer in the local rpc.statd's database.
161 */
162 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
163
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300164 status = nsm_mon_unmon(nsm, NSMPROC_MON, &res, host);
Chuck Lever6c9dc422009-06-17 18:02:10 -0700165 if (unlikely(res.status != 0))
Chuck Lever5d254b12008-12-04 14:21:15 -0500166 status = -EIO;
Chuck Lever6c9dc422009-06-17 18:02:10 -0700167 if (unlikely(status < 0)) {
Jeff Layton9af94fc2014-10-31 08:28:29 -0400168 pr_notice_ratelimited("lockd: cannot monitor %s\n", nsm->sm_name);
Chuck Lever6c9dc422009-06-17 18:02:10 -0700169 return status;
170 }
171
172 nsm->sm_monitored = 1;
173 if (unlikely(nsm_local_state != res.state)) {
174 nsm_local_state = res.state;
175 dprintk("lockd: NSM state changed to %d\n", nsm_local_state);
176 }
177 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
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
Elena Reshetovac7510822017-11-29 13:15:44 +0200194 if (refcount_read(&nsm->sm_count) == 1
Olaf Kirch9502c522006-10-04 02:15:56 -0700195 && 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
Andrey Ryabinin0d0f4aa2015-10-07 14:39:55 +0300198 status = nsm_mon_unmon(nsm, NSMPROC_UNMON, &res, host);
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
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300209static struct nsm_handle *nsm_lookup_hostname(const struct list_head *nsm_handles,
210 const char *hostname, const size_t len)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500211{
212 struct nsm_handle *nsm;
213
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300214 list_for_each_entry(nsm, nsm_handles, sm_link)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500215 if (strlen(nsm->sm_name) == len &&
216 memcmp(nsm->sm_name, hostname, len) == 0)
217 return nsm;
218 return NULL;
219}
220
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300221static struct nsm_handle *nsm_lookup_addr(const struct list_head *nsm_handles,
222 const struct sockaddr *sap)
Chuck Lever77a3ef32008-12-11 17:55:59 -0500223{
224 struct nsm_handle *nsm;
225
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300226 list_for_each_entry(nsm, nsm_handles, sm_link)
Jeff Layton4516fc02009-08-14 12:57:54 -0400227 if (rpc_cmp_addr(nsm_addr(nsm), sap))
Chuck Lever77a3ef32008-12-11 17:55:59 -0500228 return nsm;
229 return NULL;
230}
231
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300232static struct nsm_handle *nsm_lookup_priv(const struct list_head *nsm_handles,
233 const struct nsm_private *priv)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500234{
235 struct nsm_handle *nsm;
236
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300237 list_for_each_entry(nsm, nsm_handles, sm_link)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500238 if (memcmp(nsm->sm_priv.data, priv->data,
239 sizeof(priv->data)) == 0)
240 return nsm;
241 return NULL;
242}
243
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500244/*
245 * Construct a unique cookie to match this nsm_handle to this monitored
246 * host. It is passed to the local rpc.statd via NSMPROC_MON, and
247 * returned via NLMPROC_SM_NOTIFY, in the "priv" field of these
248 * requests.
249 *
Chuck Lever94da7662008-12-11 17:56:07 -0500250 * The NSM protocol requires that these cookies be unique while the
251 * system is running. We prefer a stronger requirement of making them
252 * unique across reboots. If user space bugs cause a stale cookie to
253 * be sent to the kernel, it could cause the wrong host to lose its
254 * lock state if cookies were not unique across reboots.
255 *
256 * The cookies are exposed only to local user space via loopback. They
257 * do not appear on the physical network. If we want greater security
258 * for some reason, nsm_init_private() could perform a one-way hash to
259 * obscure the contents of the cookie.
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500260 */
261static void nsm_init_private(struct nsm_handle *nsm)
262{
Chuck Lever94da7662008-12-11 17:56:07 -0500263 u64 *p = (u64 *)&nsm->sm_priv.data;
Mans Rullgardad5b3652009-03-28 19:55:20 +0000264 s64 ns;
Chuck Lever94da7662008-12-11 17:56:07 -0500265
Thomas Gleixner5eaaed42014-07-16 21:04:46 +0000266 ns = ktime_get_ns();
Mans Rullgardad5b3652009-03-28 19:55:20 +0000267 put_unaligned(ns, p);
268 put_unaligned((unsigned long)nsm, p + 1);
Chuck Lever7e44d3b2008-12-05 19:03:16 -0500269}
270
Chuck Leverb39b8972008-12-11 17:55:52 -0500271static struct nsm_handle *nsm_create_handle(const struct sockaddr *sap,
272 const size_t salen,
273 const char *hostname,
274 const size_t hostname_len)
275{
276 struct nsm_handle *new;
277
278 new = kzalloc(sizeof(*new) + hostname_len + 1, GFP_KERNEL);
279 if (unlikely(new == NULL))
280 return NULL;
281
Elena Reshetovac7510822017-11-29 13:15:44 +0200282 refcount_set(&new->sm_count, 1);
Chuck Leverb39b8972008-12-11 17:55:52 -0500283 new->sm_name = (char *)(new + 1);
284 memcpy(nsm_addr(new), sap, salen);
285 new->sm_addrlen = salen;
286 nsm_init_private(new);
Chuck Leverc15128c2009-08-09 15:09:39 -0400287
288 if (rpc_ntop(nsm_addr(new), new->sm_addrbuf,
289 sizeof(new->sm_addrbuf)) == 0)
290 (void)snprintf(new->sm_addrbuf, sizeof(new->sm_addrbuf),
291 "unsupported address family");
Chuck Leverb39b8972008-12-11 17:55:52 -0500292 memcpy(new->sm_name, hostname, hostname_len);
293 new->sm_name[hostname_len] = '\0';
294
295 return new;
296}
297
Chuck Lever67c6d102008-12-05 19:02:45 -0500298/**
Chuck Lever92fd91b2008-12-05 19:04:01 -0500299 * nsm_get_handle - Find or create a cached nsm_handle
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300300 * @net: network namespace
Chuck Lever67c6d102008-12-05 19:02:45 -0500301 * @sap: pointer to socket address of handle to find
302 * @salen: length of socket address
303 * @hostname: pointer to C string containing hostname to find
304 * @hostname_len: length of C string
Chuck Lever67c6d102008-12-05 19:02:45 -0500305 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500306 * Behavior is modulated by the global nsm_use_hostnames variable.
Chuck Lever67c6d102008-12-05 19:02:45 -0500307 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500308 * Returns a cached nsm_handle after bumping its ref count, or
309 * returns a fresh nsm_handle if a handle that matches @sap and/or
310 * @hostname cannot be found in the handle cache. Returns NULL if
311 * an error occurs.
Chuck Lever67c6d102008-12-05 19:02:45 -0500312 */
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300313struct nsm_handle *nsm_get_handle(const struct net *net,
314 const struct sockaddr *sap,
Chuck Lever92fd91b2008-12-05 19:04:01 -0500315 const size_t salen, const char *hostname,
316 const size_t hostname_len)
Chuck Lever67c6d102008-12-05 19:02:45 -0500317{
Chuck Lever77a3ef32008-12-11 17:55:59 -0500318 struct nsm_handle *cached, *new = NULL;
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300319 struct lockd_net *ln = net_generic(net, lockd_net_id);
Chuck Lever67c6d102008-12-05 19:02:45 -0500320
Chuck Lever67c6d102008-12-05 19:02:45 -0500321 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
322 if (printk_ratelimit()) {
323 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
324 "in NFS lock request\n",
325 (int)hostname_len, hostname);
326 }
327 return NULL;
328 }
329
330retry:
331 spin_lock(&nsm_lock);
Chuck Lever67c6d102008-12-05 19:02:45 -0500332
Chuck Lever77a3ef32008-12-11 17:55:59 -0500333 if (nsm_use_hostnames && hostname != NULL)
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300334 cached = nsm_lookup_hostname(&ln->nsm_handles,
335 hostname, hostname_len);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500336 else
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300337 cached = nsm_lookup_addr(&ln->nsm_handles, sap);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500338
339 if (cached != NULL) {
Elena Reshetovac7510822017-11-29 13:15:44 +0200340 refcount_inc(&cached->sm_count);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500341 spin_unlock(&nsm_lock);
342 kfree(new);
343 dprintk("lockd: found nsm_handle for %s (%s), "
344 "cnt %d\n", cached->sm_name,
345 cached->sm_addrbuf,
Elena Reshetovac7510822017-11-29 13:15:44 +0200346 refcount_read(&cached->sm_count));
Chuck Lever77a3ef32008-12-11 17:55:59 -0500347 return cached;
Chuck Lever67c6d102008-12-05 19:02:45 -0500348 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500349
350 if (new != NULL) {
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300351 list_add(&new->sm_link, &ln->nsm_handles);
Chuck Lever77a3ef32008-12-11 17:55:59 -0500352 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500353 dprintk("lockd: created nsm_handle for %s (%s)\n",
Chuck Lever77a3ef32008-12-11 17:55:59 -0500354 new->sm_name, new->sm_addrbuf);
355 return new;
Chuck Lever67c6d102008-12-05 19:02:45 -0500356 }
Chuck Lever77a3ef32008-12-11 17:55:59 -0500357
Chuck Lever67c6d102008-12-05 19:02:45 -0500358 spin_unlock(&nsm_lock);
359
Chuck Lever77a3ef32008-12-11 17:55:59 -0500360 new = nsm_create_handle(sap, salen, hostname, hostname_len);
361 if (unlikely(new == NULL))
Chuck Lever67c6d102008-12-05 19:02:45 -0500362 return NULL;
Chuck Lever67c6d102008-12-05 19:02:45 -0500363 goto retry;
Chuck Lever67c6d102008-12-05 19:02:45 -0500364}
365
366/**
Chuck Lever3420a8c2008-12-05 19:03:46 -0500367 * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300368 * @net: network namespace
Chuck Lever3420a8c2008-12-05 19:03:46 -0500369 * @info: pointer to NLMPROC_SM_NOTIFY arguments
370 *
Jeff Layton7e469af2010-02-05 15:09:22 -0500371 * Returns a matching nsm_handle if found in the nsm cache. The returned
372 * nsm_handle's reference count is bumped. Otherwise returns NULL if some
373 * error occurred.
Chuck Lever3420a8c2008-12-05 19:03:46 -0500374 */
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300375struct nsm_handle *nsm_reboot_lookup(const struct net *net,
376 const struct nlm_reboot *info)
Chuck Lever3420a8c2008-12-05 19:03:46 -0500377{
378 struct nsm_handle *cached;
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300379 struct lockd_net *ln = net_generic(net, lockd_net_id);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500380
381 spin_lock(&nsm_lock);
382
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300383 cached = nsm_lookup_priv(&ln->nsm_handles, &info->priv);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500384 if (unlikely(cached == NULL)) {
385 spin_unlock(&nsm_lock);
386 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
387 info->len, info->mon);
388 return cached;
389 }
390
Elena Reshetovac7510822017-11-29 13:15:44 +0200391 refcount_inc(&cached->sm_count);
Chuck Lever3420a8c2008-12-05 19:03:46 -0500392 spin_unlock(&nsm_lock);
393
Chuck Lever3420a8c2008-12-05 19:03:46 -0500394 dprintk("lockd: host %s (%s) rebooted, cnt %d\n",
395 cached->sm_name, cached->sm_addrbuf,
Elena Reshetovac7510822017-11-29 13:15:44 +0200396 refcount_read(&cached->sm_count));
Chuck Lever3420a8c2008-12-05 19:03:46 -0500397 return cached;
398}
399
400/**
Chuck Lever67c6d102008-12-05 19:02:45 -0500401 * nsm_release - Release an NSM handle
402 * @nsm: pointer to handle to be released
403 *
404 */
405void nsm_release(struct nsm_handle *nsm)
406{
Elena Reshetovac7510822017-11-29 13:15:44 +0200407 if (refcount_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
Chuck Lever67c6d102008-12-05 19:02:45 -0500408 list_del(&nsm->sm_link);
409 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500410 dprintk("lockd: destroyed nsm_handle for %s (%s)\n",
411 nsm->sm_name, nsm->sm_addrbuf);
Chuck Lever67c6d102008-12-05 19:02:45 -0500412 kfree(nsm);
413 }
414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * XDR functions for NSM.
Chuck Lever2ca77542008-03-14 14:26:01 -0400418 *
419 * See http://www.opengroup.org/ for details on the Network
420 * Status Monitor wire protocol.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
422
Chuck Lever49b17002010-12-14 14:58:30 +0000423static void encode_nsm_string(struct xdr_stream *xdr, const char *string)
Chuck Lever099bd052008-03-14 14:25:32 -0400424{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500425 const u32 len = strlen(string);
426 __be32 *p;
Chuck Lever099bd052008-03-14 14:25:32 -0400427
Chuck Lever49b17002010-12-14 14:58:30 +0000428 p = xdr_reserve_space(xdr, 4 + len);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500429 xdr_encode_opaque(p, string, len);
Chuck Lever099bd052008-03-14 14:25:32 -0400430}
431
Chuck Lever49695172008-03-14 14:25:39 -0400432/*
433 * "mon_name" specifies the host to be monitored.
Chuck Lever49695172008-03-14 14:25:39 -0400434 */
Chuck Lever49b17002010-12-14 14:58:30 +0000435static void encode_mon_name(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever49695172008-03-14 14:25:39 -0400436{
Chuck Lever49b17002010-12-14 14:58:30 +0000437 encode_nsm_string(xdr, argp->mon_name);
Chuck Lever49695172008-03-14 14:25:39 -0400438}
439
Chuck Lever850c95f2008-03-14 14:25:46 -0400440/*
441 * The "my_id" argument specifies the hostname and RPC procedure
442 * to be called when the status manager receives notification
Chuck Lever36e8e662008-12-05 19:02:07 -0500443 * (via the NLMPROC_SM_NOTIFY call) that the state of host "mon_name"
Chuck Lever850c95f2008-03-14 14:25:46 -0400444 * has changed.
445 */
Chuck Lever49b17002010-12-14 14:58:30 +0000446static void encode_my_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever850c95f2008-03-14 14:25:46 -0400447{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500448 __be32 *p;
Chuck Lever850c95f2008-03-14 14:25:46 -0400449
Stanislav Kinsbursky303a7ce2012-09-18 13:37:18 +0400450 encode_nsm_string(xdr, argp->nodename);
Chuck Lever49b17002010-12-14 14:58:30 +0000451 p = xdr_reserve_space(xdr, 4 + 4 + 4);
452 *p++ = cpu_to_be32(argp->prog);
453 *p++ = cpu_to_be32(argp->vers);
454 *p = cpu_to_be32(argp->proc);
Chuck Lever850c95f2008-03-14 14:25:46 -0400455}
456
Chuck Leverea72a7f2008-03-14 14:25:53 -0400457/*
458 * The "mon_id" argument specifies the non-private arguments
Chuck Lever36e8e662008-12-05 19:02:07 -0500459 * of an NSMPROC_MON or NSMPROC_UNMON call.
Chuck Leverea72a7f2008-03-14 14:25:53 -0400460 */
Chuck Lever49b17002010-12-14 14:58:30 +0000461static void encode_mon_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Leverea72a7f2008-03-14 14:25:53 -0400462{
Chuck Lever49b17002010-12-14 14:58:30 +0000463 encode_mon_name(xdr, argp);
464 encode_my_id(xdr, argp);
Chuck Leverea72a7f2008-03-14 14:25:53 -0400465}
466
Chuck Lever0490a542008-03-14 14:26:08 -0400467/*
468 * The "priv" argument may contain private information required
Chuck Lever36e8e662008-12-05 19:02:07 -0500469 * by the NSMPROC_MON call. This information will be supplied in the
470 * NLMPROC_SM_NOTIFY call.
Chuck Lever0490a542008-03-14 14:26:08 -0400471 */
Chuck Lever49b17002010-12-14 14:58:30 +0000472static void encode_priv(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever0490a542008-03-14 14:26:08 -0400473{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500474 __be32 *p;
475
476 p = xdr_reserve_space(xdr, SM_PRIV_SIZE);
Chuck Levercab2d3c2008-12-05 19:03:24 -0500477 xdr_encode_opaque_fixed(p, argp->priv->data, SM_PRIV_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Chuck Lever9f06c712010-12-14 14:59:18 +0000480static void nsm_xdr_enc_mon(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200481 const void *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Chuck Lever9f06c712010-12-14 14:59:18 +0000483 encode_mon_id(xdr, argp);
484 encode_priv(xdr, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Chuck Lever9f06c712010-12-14 14:59:18 +0000487static void nsm_xdr_enc_unmon(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200488 const void *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Chuck Lever9f06c712010-12-14 14:59:18 +0000490 encode_mon_id(xdr, argp);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500491}
492
Chuck Leverbf269552010-12-14 14:59:29 +0000493static int nsm_xdr_dec_stat_res(struct rpc_rqst *rqstp,
494 struct xdr_stream *xdr,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200495 void *data)
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500496{
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200497 struct nsm_res *resp = data;
Chuck Leverbf269552010-12-14 14:59:29 +0000498 __be32 *p;
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500499
Chuck Leverbf269552010-12-14 14:59:29 +0000500 p = xdr_inline_decode(xdr, 4 + 4);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500501 if (unlikely(p == NULL))
502 return -EIO;
Chuck Lever49b17002010-12-14 14:58:30 +0000503 resp->status = be32_to_cpup(p++);
504 resp->state = be32_to_cpup(p);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500505
Chuck Leverbf269552010-12-14 14:59:29 +0000506 dprintk("lockd: %s status %d state %d\n",
507 __func__, resp->status, resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return 0;
509}
510
Chuck Leverbf269552010-12-14 14:59:29 +0000511static int nsm_xdr_dec_stat(struct rpc_rqst *rqstp,
512 struct xdr_stream *xdr,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200513 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200515 struct nsm_res *resp = data;
Chuck Leverbf269552010-12-14 14:59:29 +0000516 __be32 *p;
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500517
Chuck Leverbf269552010-12-14 14:59:29 +0000518 p = xdr_inline_decode(xdr, 4);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500519 if (unlikely(p == NULL))
520 return -EIO;
Chuck Lever49b17002010-12-14 14:58:30 +0000521 resp->state = be32_to_cpup(p);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500522
Chuck Leverbf269552010-12-14 14:59:29 +0000523 dprintk("lockd: %s state %d\n", __func__, resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return 0;
525}
526
527#define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
Chuck Lever2ca77542008-03-14 14:26:01 -0400528#define SM_my_id_sz (SM_my_name_sz+3)
529#define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
530#define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
Chuck Lever0490a542008-03-14 14:26:08 -0400531#define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
532#define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533#define SM_monres_sz 2
534#define SM_unmonres_sz 1
535
Christoph Hellwig499b4982017-05-12 15:36:49 +0200536static const struct rpc_procinfo nsm_procedures[] = {
Chuck Lever36e8e662008-12-05 19:02:07 -0500537[NSMPROC_MON] = {
538 .p_proc = NSMPROC_MON,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200539 .p_encode = nsm_xdr_enc_mon,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200540 .p_decode = nsm_xdr_dec_stat_res,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400541 .p_arglen = SM_mon_sz,
542 .p_replen = SM_monres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500543 .p_statidx = NSMPROC_MON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500544 .p_name = "MONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 },
Chuck Lever36e8e662008-12-05 19:02:07 -0500546[NSMPROC_UNMON] = {
547 .p_proc = NSMPROC_UNMON,
Christoph Hellwigbf963912017-05-08 09:34:04 +0200548 .p_encode = nsm_xdr_enc_unmon,
Christoph Hellwig1fa23392017-05-08 15:06:20 +0200549 .p_decode = nsm_xdr_dec_stat,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400550 .p_arglen = SM_mon_id_sz,
551 .p_replen = SM_unmonres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500552 .p_statidx = NSMPROC_UNMON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500553 .p_name = "UNMONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 },
555};
556
Christoph Hellwig1c5876d2017-05-08 23:27:10 +0200557static unsigned int nsm_version1_counts[ARRAY_SIZE(nsm_procedures)];
Trond Myklebusta613fa12012-01-20 13:53:56 -0500558static const struct rpc_version nsm_version1 = {
Christoph Hellwigcdfa31e2017-05-08 23:32:18 +0200559 .number = 1,
560 .nrprocs = ARRAY_SIZE(nsm_procedures),
Christoph Hellwig1c5876d2017-05-08 23:27:10 +0200561 .procs = nsm_procedures,
562 .counts = nsm_version1_counts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563};
564
Trond Myklebusta613fa12012-01-20 13:53:56 -0500565static const struct rpc_version *nsm_version[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 [1] = &nsm_version1,
567};
568
569static struct rpc_stat nsm_stats;
570
Trond Myklebusta613fa12012-01-20 13:53:56 -0500571static const struct rpc_program nsm_program = {
Christoph Hellwigcdfa31e2017-05-08 23:32:18 +0200572 .name = "statd",
573 .number = NSM_PROGRAM,
574 .nrvers = ARRAY_SIZE(nsm_version),
575 .version = nsm_version,
576 .stats = &nsm_stats
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577};