Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/kernel.h> |
Chuck Lever | 94da766 | 2008-12-11 17:56:07 -0500 | [diff] [blame] | 12 | #include <linux/ktime.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Chuck Lever | 94da766 | 2008-12-11 17:56:07 -0500 | [diff] [blame] | 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/sunrpc/clnt.h> |
Jeff Layton | 5976687 | 2013-02-04 12:50:00 -0500 | [diff] [blame] | 16 | #include <linux/sunrpc/addr.h> |
\"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 17 | #include <linux/sunrpc/xprtsock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/sunrpc/svc.h> |
| 19 | #include <linux/lockd/lockd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Mans Rullgard | ad5b365 | 2009-03-28 19:55:20 +0000 | [diff] [blame] | 21 | #include <asm/unaligned.h> |
| 22 | |
Stanislav Kinsbursky | e9406db | 2012-09-18 13:37:12 +0400 | [diff] [blame] | 23 | #include "netns.h" |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #define NLMDBG_FACILITY NLMDBG_MONITOR |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 26 | #define NSM_PROGRAM 100024 |
| 27 | #define NSM_VERSION 1 |
| 28 | |
| 29 | enum { |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Chuck Lever | 9c1bfd0 | 2008-12-05 19:01:59 -0500 | [diff] [blame] | 39 | struct nsm_args { |
Chuck Lever | cab2d3c | 2008-12-05 19:03:24 -0500 | [diff] [blame] | 40 | struct nsm_private *priv; |
Chuck Lever | 9c1bfd0 | 2008-12-05 19:01:59 -0500 | [diff] [blame] | 41 | u32 prog; /* RPC callback info */ |
| 42 | u32 vers; |
| 43 | u32 proc; |
| 44 | |
| 45 | char *mon_name; |
Andrey Ryabinin | 0d0f4aa | 2015-10-07 14:39:55 +0300 | [diff] [blame] | 46 | const char *nodename; |
Chuck Lever | 9c1bfd0 | 2008-12-05 19:01:59 -0500 | [diff] [blame] | 47 | }; |
| 48 | |
| 49 | struct nsm_res { |
| 50 | u32 status; |
| 51 | u32 state; |
| 52 | }; |
| 53 | |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 54 | static const struct rpc_program nsm_program; |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 55 | static DEFINE_SPINLOCK(nsm_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | /* |
| 58 | * Local NSM state |
| 59 | */ |
Chuck Lever | 6c9dc42 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 60 | u32 __read_mostly nsm_local_state; |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 61 | bool __read_mostly nsm_use_hostnames; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Chuck Lever | 8529bc5 | 2008-12-11 17:56:22 -0500 | [diff] [blame] | 63 | static inline struct sockaddr *nsm_addr(const struct nsm_handle *nsm) |
| 64 | { |
| 65 | return (struct sockaddr *)&nsm->sm_addr; |
| 66 | } |
| 67 | |
Trond Myklebust | 03a9a42 | 2015-01-30 18:12:28 -0500 | [diff] [blame] | 68 | static struct rpc_clnt *nsm_create(struct net *net, const char *nodename) |
Chuck Lever | 49b5699 | 2008-12-11 17:56:37 -0500 | [diff] [blame] | 69 | { |
| 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 Kinsbursky | 0e1cb5c | 2012-01-31 15:08:21 +0400 | [diff] [blame] | 75 | .net = net, |
Stanislav Kinsbursky | e9406db | 2012-09-18 13:37:12 +0400 | [diff] [blame] | 76 | .protocol = XPRT_TRANSPORT_TCP, |
Chuck Lever | 49b5699 | 2008-12-11 17:56:37 -0500 | [diff] [blame] | 77 | .address = (struct sockaddr *)&sin, |
| 78 | .addrsize = sizeof(sin), |
| 79 | .servername = "rpc.statd", |
Trond Myklebust | 03a9a42 | 2015-01-30 18:12:28 -0500 | [diff] [blame] | 80 | .nodename = nodename, |
Chuck Lever | 49b5699 | 2008-12-11 17:56:37 -0500 | [diff] [blame] | 81 | .program = &nsm_program, |
| 82 | .version = NSM_VERSION, |
| 83 | .authflavor = RPC_AUTH_NULL, |
Chuck Lever | 0e5c263 | 2009-06-17 18:02:11 -0700 | [diff] [blame] | 84 | .flags = RPC_CLNT_CREATE_NOPING, |
Trond Myklebust | 79caa5f | 2019-04-24 17:46:42 -0400 | [diff] [blame] | 85 | .cred = current_cred(), |
Chuck Lever | 49b5699 | 2008-12-11 17:56:37 -0500 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | return rpc_create(&args); |
| 89 | } |
| 90 | |
Stanislav Kinsbursky | 0e1cb5c | 2012-01-31 15:08:21 +0400 | [diff] [blame] | 91 | static int nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res, |
Andrey Ryabinin | 0d0f4aa | 2015-10-07 14:39:55 +0300 | [diff] [blame] | 92 | const struct nlm_host *host) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | int status; |
Andrey Ryabinin | 0d0f4aa | 2015-10-07 14:39:55 +0300 | [diff] [blame] | 95 | struct rpc_clnt *clnt; |
Chuck Lever | a484675 | 2008-12-04 14:20:23 -0500 | [diff] [blame] | 96 | struct nsm_args args = { |
Chuck Lever | cab2d3c | 2008-12-05 19:03:24 -0500 | [diff] [blame] | 97 | .priv = &nsm->sm_priv, |
Chuck Lever | a484675 | 2008-12-04 14:20:23 -0500 | [diff] [blame] | 98 | .prog = NLM_PROGRAM, |
| 99 | .vers = 3, |
| 100 | .proc = NLMPROC_NSM_NOTIFY, |
Chuck Lever | 29ed140 | 2008-12-04 14:20:46 -0500 | [diff] [blame] | 101 | .mon_name = nsm->sm_mon_name, |
Andrey Ryabinin | 0d0f4aa | 2015-10-07 14:39:55 +0300 | [diff] [blame] | 102 | .nodename = host->nodename, |
Chuck Lever | a484675 | 2008-12-04 14:20:23 -0500 | [diff] [blame] | 103 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 104 | struct rpc_message msg = { |
| 105 | .rpc_argp = &args, |
| 106 | .rpc_resp = res, |
| 107 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | memset(res, 0, sizeof(*res)); |
| 110 | |
Andrey Ryabinin | 0d0f4aa | 2015-10-07 14:39:55 +0300 | [diff] [blame] | 111 | clnt = nsm_create(host->net, host->nodename); |
| 112 | if (IS_ERR(clnt)) { |
| 113 | dprintk("lockd: failed to create NSM upcall transport, " |
Vasily Averin | e919b07 | 2017-11-08 08:55:55 +0300 | [diff] [blame] | 114 | "status=%ld, net=%x\n", PTR_ERR(clnt), |
| 115 | host->net->ns.inum); |
Andrey Ryabinin | 0d0f4aa | 2015-10-07 14:39:55 +0300 | [diff] [blame] | 116 | return PTR_ERR(clnt); |
| 117 | } |
| 118 | |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 119 | msg.rpc_proc = &clnt->cl_procinfo[proc]; |
Stanislav Kinsbursky | e9406db | 2012-09-18 13:37:12 +0400 | [diff] [blame] | 120 | status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN); |
Benjamin Coddington | 173b3af | 2014-09-23 12:26:20 -0400 | [diff] [blame] | 121 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | if (status < 0) |
Chuck Lever | 5acf431 | 2008-12-04 14:20:31 -0500 | [diff] [blame] | 128 | dprintk("lockd: NSM upcall RPC failed, status=%d\n", |
| 129 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | else |
| 131 | status = 0; |
Andrey Ryabinin | 0d0f4aa | 2015-10-07 14:39:55 +0300 | [diff] [blame] | 132 | |
| 133 | rpc_shutdown_client(clnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | return status; |
| 135 | } |
| 136 | |
Chuck Lever | 1e49323 | 2008-12-04 14:21:24 -0500 | [diff] [blame] | 137 | /** |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | */ |
Chuck Lever | 1e49323 | 2008-12-04 14:21:24 -0500 | [diff] [blame] | 148 | int nsm_monitor(const struct nlm_host *host) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 150 | struct nsm_handle *nsm = host->h_nsmhandle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | struct nsm_res res; |
| 152 | int status; |
| 153 | |
Chuck Lever | 9fee490 | 2008-12-04 14:20:53 -0500 | [diff] [blame] | 154 | dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name); |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 155 | |
| 156 | if (nsm->sm_monitored) |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 157 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Chuck Lever | 29ed140 | 2008-12-04 14:20:46 -0500 | [diff] [blame] | 159 | /* |
| 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 Ryabinin | 0d0f4aa | 2015-10-07 14:39:55 +0300 | [diff] [blame] | 165 | status = nsm_mon_unmon(nsm, NSMPROC_MON, &res, host); |
Chuck Lever | 6c9dc42 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 166 | if (unlikely(res.status != 0)) |
Chuck Lever | 5d254b1 | 2008-12-04 14:21:15 -0500 | [diff] [blame] | 167 | status = -EIO; |
Chuck Lever | 6c9dc42 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 168 | if (unlikely(status < 0)) { |
Jeff Layton | 9af94fc | 2014-10-31 08:28:29 -0400 | [diff] [blame] | 169 | pr_notice_ratelimited("lockd: cannot monitor %s\n", nsm->sm_name); |
Chuck Lever | 6c9dc42 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 170 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
Chuck Lever | 356c3eb | 2008-12-04 14:21:38 -0500 | [diff] [blame] | 181 | /** |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | */ |
Chuck Lever | 356c3eb | 2008-12-04 14:21:38 -0500 | [diff] [blame] | 189 | void nsm_unmonitor(const struct nlm_host *host) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | { |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 191 | struct nsm_handle *nsm = host->h_nsmhandle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | struct nsm_res res; |
Chuck Lever | 356c3eb | 2008-12-04 14:21:38 -0500 | [diff] [blame] | 193 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
Elena Reshetova | c751082 | 2017-11-29 13:15:44 +0200 | [diff] [blame] | 195 | if (refcount_read(&nsm->sm_count) == 1 |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 196 | && nsm->sm_monitored && !nsm->sm_sticky) { |
Chuck Lever | 9fee490 | 2008-12-04 14:20:53 -0500 | [diff] [blame] | 197 | dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name); |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 198 | |
Andrey Ryabinin | 0d0f4aa | 2015-10-07 14:39:55 +0300 | [diff] [blame] | 199 | status = nsm_mon_unmon(nsm, NSMPROC_UNMON, &res, host); |
Chuck Lever | 0c7aef4 | 2008-12-04 14:21:46 -0500 | [diff] [blame] | 200 | if (res.status != 0) |
| 201 | status = -EIO; |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 202 | if (status < 0) |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 203 | printk(KERN_NOTICE "lockd: cannot unmonitor %s\n", |
Chuck Lever | 9fee490 | 2008-12-04 14:20:53 -0500 | [diff] [blame] | 204 | nsm->sm_name); |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 205 | else |
| 206 | nsm->sm_monitored = 0; |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 207 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 210 | static struct nsm_handle *nsm_lookup_hostname(const struct list_head *nsm_handles, |
| 211 | const char *hostname, const size_t len) |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 212 | { |
| 213 | struct nsm_handle *nsm; |
| 214 | |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 215 | list_for_each_entry(nsm, nsm_handles, sm_link) |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 216 | if (strlen(nsm->sm_name) == len && |
| 217 | memcmp(nsm->sm_name, hostname, len) == 0) |
| 218 | return nsm; |
| 219 | return NULL; |
| 220 | } |
| 221 | |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 222 | static struct nsm_handle *nsm_lookup_addr(const struct list_head *nsm_handles, |
| 223 | const struct sockaddr *sap) |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 224 | { |
| 225 | struct nsm_handle *nsm; |
| 226 | |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 227 | list_for_each_entry(nsm, nsm_handles, sm_link) |
Jeff Layton | 4516fc0 | 2009-08-14 12:57:54 -0400 | [diff] [blame] | 228 | if (rpc_cmp_addr(nsm_addr(nsm), sap)) |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 229 | return nsm; |
| 230 | return NULL; |
| 231 | } |
| 232 | |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 233 | static struct nsm_handle *nsm_lookup_priv(const struct list_head *nsm_handles, |
| 234 | const struct nsm_private *priv) |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 235 | { |
| 236 | struct nsm_handle *nsm; |
| 237 | |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 238 | list_for_each_entry(nsm, nsm_handles, sm_link) |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 239 | if (memcmp(nsm->sm_priv.data, priv->data, |
| 240 | sizeof(priv->data)) == 0) |
| 241 | return nsm; |
| 242 | return NULL; |
| 243 | } |
| 244 | |
Chuck Lever | 7e44d3b | 2008-12-05 19:03:16 -0500 | [diff] [blame] | 245 | /* |
| 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 Lever | 94da766 | 2008-12-11 17:56:07 -0500 | [diff] [blame] | 251 | * 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 Lever | 7e44d3b | 2008-12-05 19:03:16 -0500 | [diff] [blame] | 261 | */ |
| 262 | static void nsm_init_private(struct nsm_handle *nsm) |
| 263 | { |
Chuck Lever | 94da766 | 2008-12-11 17:56:07 -0500 | [diff] [blame] | 264 | u64 *p = (u64 *)&nsm->sm_priv.data; |
Mans Rullgard | ad5b365 | 2009-03-28 19:55:20 +0000 | [diff] [blame] | 265 | s64 ns; |
Chuck Lever | 94da766 | 2008-12-11 17:56:07 -0500 | [diff] [blame] | 266 | |
Thomas Gleixner | 5eaaed4 | 2014-07-16 21:04:46 +0000 | [diff] [blame] | 267 | ns = ktime_get_ns(); |
Mans Rullgard | ad5b365 | 2009-03-28 19:55:20 +0000 | [diff] [blame] | 268 | put_unaligned(ns, p); |
| 269 | put_unaligned((unsigned long)nsm, p + 1); |
Chuck Lever | 7e44d3b | 2008-12-05 19:03:16 -0500 | [diff] [blame] | 270 | } |
| 271 | |
Chuck Lever | b39b897 | 2008-12-11 17:55:52 -0500 | [diff] [blame] | 272 | static 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 Reshetova | c751082 | 2017-11-29 13:15:44 +0200 | [diff] [blame] | 283 | refcount_set(&new->sm_count, 1); |
Chuck Lever | b39b897 | 2008-12-11 17:55:52 -0500 | [diff] [blame] | 284 | new->sm_name = (char *)(new + 1); |
| 285 | memcpy(nsm_addr(new), sap, salen); |
| 286 | new->sm_addrlen = salen; |
| 287 | nsm_init_private(new); |
Chuck Lever | c15128c5 | 2009-08-09 15:09:39 -0400 | [diff] [blame] | 288 | |
| 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 Lever | b39b897 | 2008-12-11 17:55:52 -0500 | [diff] [blame] | 293 | memcpy(new->sm_name, hostname, hostname_len); |
| 294 | new->sm_name[hostname_len] = '\0'; |
| 295 | |
| 296 | return new; |
| 297 | } |
| 298 | |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 299 | /** |
Chuck Lever | 92fd91b | 2008-12-05 19:04:01 -0500 | [diff] [blame] | 300 | * nsm_get_handle - Find or create a cached nsm_handle |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 301 | * @net: network namespace |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 302 | * @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 Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 306 | * |
Chuck Lever | 92fd91b | 2008-12-05 19:04:01 -0500 | [diff] [blame] | 307 | * Behavior is modulated by the global nsm_use_hostnames variable. |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 308 | * |
Chuck Lever | 92fd91b | 2008-12-05 19:04:01 -0500 | [diff] [blame] | 309 | * 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 Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 313 | */ |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 314 | struct nsm_handle *nsm_get_handle(const struct net *net, |
| 315 | const struct sockaddr *sap, |
Chuck Lever | 92fd91b | 2008-12-05 19:04:01 -0500 | [diff] [blame] | 316 | const size_t salen, const char *hostname, |
| 317 | const size_t hostname_len) |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 318 | { |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 319 | struct nsm_handle *cached, *new = NULL; |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 320 | struct lockd_net *ln = net_generic(net, lockd_net_id); |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 321 | |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 322 | 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 | |
| 331 | retry: |
| 332 | spin_lock(&nsm_lock); |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 333 | |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 334 | if (nsm_use_hostnames && hostname != NULL) |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 335 | cached = nsm_lookup_hostname(&ln->nsm_handles, |
| 336 | hostname, hostname_len); |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 337 | else |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 338 | cached = nsm_lookup_addr(&ln->nsm_handles, sap); |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 339 | |
| 340 | if (cached != NULL) { |
Elena Reshetova | c751082 | 2017-11-29 13:15:44 +0200 | [diff] [blame] | 341 | refcount_inc(&cached->sm_count); |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 342 | 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 Reshetova | c751082 | 2017-11-29 13:15:44 +0200 | [diff] [blame] | 347 | refcount_read(&cached->sm_count)); |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 348 | return cached; |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 349 | } |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 350 | |
| 351 | if (new != NULL) { |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 352 | list_add(&new->sm_link, &ln->nsm_handles); |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 353 | spin_unlock(&nsm_lock); |
Chuck Lever | 5cf1c4b | 2008-12-05 19:02:53 -0500 | [diff] [blame] | 354 | dprintk("lockd: created nsm_handle for %s (%s)\n", |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 355 | new->sm_name, new->sm_addrbuf); |
| 356 | return new; |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 357 | } |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 358 | |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 359 | spin_unlock(&nsm_lock); |
| 360 | |
Chuck Lever | 77a3ef3 | 2008-12-11 17:55:59 -0500 | [diff] [blame] | 361 | new = nsm_create_handle(sap, salen, hostname, hostname_len); |
| 362 | if (unlikely(new == NULL)) |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 363 | return NULL; |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 364 | goto retry; |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | /** |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 368 | * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 369 | * @net: network namespace |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 370 | * @info: pointer to NLMPROC_SM_NOTIFY arguments |
| 371 | * |
Jeff Layton | 7e469af | 2010-02-05 15:09:22 -0500 | [diff] [blame] | 372 | * 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 Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 375 | */ |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 376 | struct nsm_handle *nsm_reboot_lookup(const struct net *net, |
| 377 | const struct nlm_reboot *info) |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 378 | { |
| 379 | struct nsm_handle *cached; |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 380 | struct lockd_net *ln = net_generic(net, lockd_net_id); |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 381 | |
| 382 | spin_lock(&nsm_lock); |
| 383 | |
Andrey Ryabinin | 0ad9547 | 2015-09-23 15:49:29 +0300 | [diff] [blame] | 384 | cached = nsm_lookup_priv(&ln->nsm_handles, &info->priv); |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 385 | 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 Reshetova | c751082 | 2017-11-29 13:15:44 +0200 | [diff] [blame] | 392 | refcount_inc(&cached->sm_count); |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 393 | spin_unlock(&nsm_lock); |
| 394 | |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 395 | dprintk("lockd: host %s (%s) rebooted, cnt %d\n", |
| 396 | cached->sm_name, cached->sm_addrbuf, |
Elena Reshetova | c751082 | 2017-11-29 13:15:44 +0200 | [diff] [blame] | 397 | refcount_read(&cached->sm_count)); |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame] | 398 | return cached; |
| 399 | } |
| 400 | |
| 401 | /** |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 402 | * nsm_release - Release an NSM handle |
| 403 | * @nsm: pointer to handle to be released |
| 404 | * |
| 405 | */ |
| 406 | void nsm_release(struct nsm_handle *nsm) |
| 407 | { |
Elena Reshetova | c751082 | 2017-11-29 13:15:44 +0200 | [diff] [blame] | 408 | if (refcount_dec_and_lock(&nsm->sm_count, &nsm_lock)) { |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 409 | list_del(&nsm->sm_link); |
| 410 | spin_unlock(&nsm_lock); |
Chuck Lever | 5cf1c4b | 2008-12-05 19:02:53 -0500 | [diff] [blame] | 411 | dprintk("lockd: destroyed nsm_handle for %s (%s)\n", |
| 412 | nsm->sm_name, nsm->sm_addrbuf); |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 413 | kfree(nsm); |
| 414 | } |
| 415 | } |
| 416 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | * XDR functions for NSM. |
Chuck Lever | 2ca7754 | 2008-03-14 14:26:01 -0400 | [diff] [blame] | 419 | * |
| 420 | * See http://www.opengroup.org/ for details on the Network |
| 421 | * Status Monitor wire protocol. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | */ |
| 423 | |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 424 | static void encode_nsm_string(struct xdr_stream *xdr, const char *string) |
Chuck Lever | 099bd05 | 2008-03-14 14:25:32 -0400 | [diff] [blame] | 425 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 426 | const u32 len = strlen(string); |
| 427 | __be32 *p; |
Chuck Lever | 099bd05 | 2008-03-14 14:25:32 -0400 | [diff] [blame] | 428 | |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 429 | p = xdr_reserve_space(xdr, 4 + len); |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 430 | xdr_encode_opaque(p, string, len); |
Chuck Lever | 099bd05 | 2008-03-14 14:25:32 -0400 | [diff] [blame] | 431 | } |
| 432 | |
Chuck Lever | 4969517 | 2008-03-14 14:25:39 -0400 | [diff] [blame] | 433 | /* |
| 434 | * "mon_name" specifies the host to be monitored. |
Chuck Lever | 4969517 | 2008-03-14 14:25:39 -0400 | [diff] [blame] | 435 | */ |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 436 | static void encode_mon_name(struct xdr_stream *xdr, const struct nsm_args *argp) |
Chuck Lever | 4969517 | 2008-03-14 14:25:39 -0400 | [diff] [blame] | 437 | { |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 438 | encode_nsm_string(xdr, argp->mon_name); |
Chuck Lever | 4969517 | 2008-03-14 14:25:39 -0400 | [diff] [blame] | 439 | } |
| 440 | |
Chuck Lever | 850c95f | 2008-03-14 14:25:46 -0400 | [diff] [blame] | 441 | /* |
| 442 | * The "my_id" argument specifies the hostname and RPC procedure |
| 443 | * to be called when the status manager receives notification |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 444 | * (via the NLMPROC_SM_NOTIFY call) that the state of host "mon_name" |
Chuck Lever | 850c95f | 2008-03-14 14:25:46 -0400 | [diff] [blame] | 445 | * has changed. |
| 446 | */ |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 447 | static void encode_my_id(struct xdr_stream *xdr, const struct nsm_args *argp) |
Chuck Lever | 850c95f | 2008-03-14 14:25:46 -0400 | [diff] [blame] | 448 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 449 | __be32 *p; |
Chuck Lever | 850c95f | 2008-03-14 14:25:46 -0400 | [diff] [blame] | 450 | |
Stanislav Kinsbursky | 303a7ce | 2012-09-18 13:37:18 +0400 | [diff] [blame] | 451 | encode_nsm_string(xdr, argp->nodename); |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 452 | 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 Lever | 850c95f | 2008-03-14 14:25:46 -0400 | [diff] [blame] | 456 | } |
| 457 | |
Chuck Lever | ea72a7f | 2008-03-14 14:25:53 -0400 | [diff] [blame] | 458 | /* |
| 459 | * The "mon_id" argument specifies the non-private arguments |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 460 | * of an NSMPROC_MON or NSMPROC_UNMON call. |
Chuck Lever | ea72a7f | 2008-03-14 14:25:53 -0400 | [diff] [blame] | 461 | */ |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 462 | static void encode_mon_id(struct xdr_stream *xdr, const struct nsm_args *argp) |
Chuck Lever | ea72a7f | 2008-03-14 14:25:53 -0400 | [diff] [blame] | 463 | { |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 464 | encode_mon_name(xdr, argp); |
| 465 | encode_my_id(xdr, argp); |
Chuck Lever | ea72a7f | 2008-03-14 14:25:53 -0400 | [diff] [blame] | 466 | } |
| 467 | |
Chuck Lever | 0490a54 | 2008-03-14 14:26:08 -0400 | [diff] [blame] | 468 | /* |
| 469 | * The "priv" argument may contain private information required |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 470 | * by the NSMPROC_MON call. This information will be supplied in the |
| 471 | * NLMPROC_SM_NOTIFY call. |
Chuck Lever | 0490a54 | 2008-03-14 14:26:08 -0400 | [diff] [blame] | 472 | */ |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 473 | static void encode_priv(struct xdr_stream *xdr, const struct nsm_args *argp) |
Chuck Lever | 0490a54 | 2008-03-14 14:26:08 -0400 | [diff] [blame] | 474 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 475 | __be32 *p; |
| 476 | |
| 477 | p = xdr_reserve_space(xdr, SM_PRIV_SIZE); |
Chuck Lever | cab2d3c | 2008-12-05 19:03:24 -0500 | [diff] [blame] | 478 | xdr_encode_opaque_fixed(p, argp->priv->data, SM_PRIV_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | } |
| 480 | |
Chuck Lever | 9f06c71 | 2010-12-14 14:59:18 +0000 | [diff] [blame] | 481 | static void nsm_xdr_enc_mon(struct rpc_rqst *req, struct xdr_stream *xdr, |
Christoph Hellwig | bf96391 | 2017-05-08 09:34:04 +0200 | [diff] [blame] | 482 | const void *argp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | { |
Chuck Lever | 9f06c71 | 2010-12-14 14:59:18 +0000 | [diff] [blame] | 484 | encode_mon_id(xdr, argp); |
| 485 | encode_priv(xdr, argp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | } |
| 487 | |
Chuck Lever | 9f06c71 | 2010-12-14 14:59:18 +0000 | [diff] [blame] | 488 | static void nsm_xdr_enc_unmon(struct rpc_rqst *req, struct xdr_stream *xdr, |
Christoph Hellwig | bf96391 | 2017-05-08 09:34:04 +0200 | [diff] [blame] | 489 | const void *argp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | { |
Chuck Lever | 9f06c71 | 2010-12-14 14:59:18 +0000 | [diff] [blame] | 491 | encode_mon_id(xdr, argp); |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 492 | } |
| 493 | |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 494 | static int nsm_xdr_dec_stat_res(struct rpc_rqst *rqstp, |
| 495 | struct xdr_stream *xdr, |
Christoph Hellwig | 1fa2339 | 2017-05-08 15:06:20 +0200 | [diff] [blame] | 496 | void *data) |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 497 | { |
Christoph Hellwig | 1fa2339 | 2017-05-08 15:06:20 +0200 | [diff] [blame] | 498 | struct nsm_res *resp = data; |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 499 | __be32 *p; |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 500 | |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 501 | p = xdr_inline_decode(xdr, 4 + 4); |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 502 | if (unlikely(p == NULL)) |
| 503 | return -EIO; |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 504 | resp->status = be32_to_cpup(p++); |
| 505 | resp->state = be32_to_cpup(p); |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 506 | |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 507 | dprintk("lockd: %s status %d state %d\n", |
| 508 | __func__, resp->status, resp->state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | return 0; |
| 510 | } |
| 511 | |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 512 | static int nsm_xdr_dec_stat(struct rpc_rqst *rqstp, |
| 513 | struct xdr_stream *xdr, |
Christoph Hellwig | 1fa2339 | 2017-05-08 15:06:20 +0200 | [diff] [blame] | 514 | void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | { |
Christoph Hellwig | 1fa2339 | 2017-05-08 15:06:20 +0200 | [diff] [blame] | 516 | struct nsm_res *resp = data; |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 517 | __be32 *p; |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 518 | |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 519 | p = xdr_inline_decode(xdr, 4); |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 520 | if (unlikely(p == NULL)) |
| 521 | return -EIO; |
Chuck Lever | 49b1700 | 2010-12-14 14:58:30 +0000 | [diff] [blame] | 522 | resp->state = be32_to_cpup(p); |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 523 | |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 524 | dprintk("lockd: %s state %d\n", __func__, resp->state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | return 0; |
| 526 | } |
| 527 | |
| 528 | #define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN)) |
Chuck Lever | 2ca7754 | 2008-03-14 14:26:01 -0400 | [diff] [blame] | 529 | #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 Lever | 0490a54 | 2008-03-14 14:26:08 -0400 | [diff] [blame] | 532 | #define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE)) |
| 533 | #define SM_mon_sz (SM_mon_id_sz+SM_priv_sz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | #define SM_monres_sz 2 |
| 535 | #define SM_unmonres_sz 1 |
| 536 | |
Christoph Hellwig | 499b498 | 2017-05-12 15:36:49 +0200 | [diff] [blame] | 537 | static const struct rpc_procinfo nsm_procedures[] = { |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 538 | [NSMPROC_MON] = { |
| 539 | .p_proc = NSMPROC_MON, |
Christoph Hellwig | bf96391 | 2017-05-08 09:34:04 +0200 | [diff] [blame] | 540 | .p_encode = nsm_xdr_enc_mon, |
Christoph Hellwig | 1fa2339 | 2017-05-08 15:06:20 +0200 | [diff] [blame] | 541 | .p_decode = nsm_xdr_dec_stat_res, |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 542 | .p_arglen = SM_mon_sz, |
| 543 | .p_replen = SM_monres_sz, |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 544 | .p_statidx = NSMPROC_MON, |
Chuck Lever | cc0175c | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 545 | .p_name = "MONITOR", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | }, |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 547 | [NSMPROC_UNMON] = { |
| 548 | .p_proc = NSMPROC_UNMON, |
Christoph Hellwig | bf96391 | 2017-05-08 09:34:04 +0200 | [diff] [blame] | 549 | .p_encode = nsm_xdr_enc_unmon, |
Christoph Hellwig | 1fa2339 | 2017-05-08 15:06:20 +0200 | [diff] [blame] | 550 | .p_decode = nsm_xdr_dec_stat, |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 551 | .p_arglen = SM_mon_id_sz, |
| 552 | .p_replen = SM_unmonres_sz, |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 553 | .p_statidx = NSMPROC_UNMON, |
Chuck Lever | cc0175c | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 554 | .p_name = "UNMONITOR", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | }, |
| 556 | }; |
| 557 | |
Christoph Hellwig | 1c5876d | 2017-05-08 23:27:10 +0200 | [diff] [blame] | 558 | static unsigned int nsm_version1_counts[ARRAY_SIZE(nsm_procedures)]; |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 559 | static const struct rpc_version nsm_version1 = { |
Christoph Hellwig | cdfa31e | 2017-05-08 23:32:18 +0200 | [diff] [blame] | 560 | .number = 1, |
| 561 | .nrprocs = ARRAY_SIZE(nsm_procedures), |
Christoph Hellwig | 1c5876d | 2017-05-08 23:27:10 +0200 | [diff] [blame] | 562 | .procs = nsm_procedures, |
| 563 | .counts = nsm_version1_counts, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | }; |
| 565 | |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 566 | static const struct rpc_version *nsm_version[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | [1] = &nsm_version1, |
| 568 | }; |
| 569 | |
| 570 | static struct rpc_stat nsm_stats; |
| 571 | |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 572 | static const struct rpc_program nsm_program = { |
Christoph Hellwig | cdfa31e | 2017-05-08 23:32:18 +0200 | [diff] [blame] | 573 | .name = "statd", |
| 574 | .number = NSM_PROGRAM, |
| 575 | .nrvers = ARRAY_SIZE(nsm_version), |
| 576 | .version = nsm_version, |
| 577 | .stats = &nsm_stats |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | }; |