Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/lockd/mon.c |
| 3 | * |
| 4 | * The kernel statd client. |
| 5 | * |
| 6 | * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> |
| 7 | */ |
| 8 | |
| 9 | #include <linux/types.h> |
| 10 | #include <linux/utsname.h> |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/sunrpc/clnt.h> |
\"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 13 | #include <linux/sunrpc/xprtsock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/sunrpc/svc.h> |
| 15 | #include <linux/lockd/lockd.h> |
| 16 | #include <linux/lockd/sm_inter.h> |
| 17 | |
| 18 | |
| 19 | #define NLMDBG_FACILITY NLMDBG_MONITOR |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 20 | #define NSM_PROGRAM 100024 |
| 21 | #define NSM_VERSION 1 |
| 22 | |
| 23 | enum { |
| 24 | NSMPROC_NULL, |
| 25 | NSMPROC_STAT, |
| 26 | NSMPROC_MON, |
| 27 | NSMPROC_UNMON, |
| 28 | NSMPROC_UNMON_ALL, |
| 29 | NSMPROC_SIMU_CRASH, |
| 30 | NSMPROC_NOTIFY, |
| 31 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Chuck Lever | 9c1bfd0 | 2008-12-05 19:01:59 -0500 | [diff] [blame] | 33 | struct nsm_args { |
Chuck Lever | cab2d3c | 2008-12-05 19:03:24 -0500 | [diff] [blame] | 34 | struct nsm_private *priv; |
Chuck Lever | 9c1bfd0 | 2008-12-05 19:01:59 -0500 | [diff] [blame] | 35 | u32 prog; /* RPC callback info */ |
| 36 | u32 vers; |
| 37 | u32 proc; |
| 38 | |
| 39 | char *mon_name; |
| 40 | }; |
| 41 | |
| 42 | struct nsm_res { |
| 43 | u32 status; |
| 44 | u32 state; |
| 45 | }; |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | static struct rpc_clnt * nsm_create(void); |
| 48 | |
| 49 | static struct rpc_program nsm_program; |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 50 | static LIST_HEAD(nsm_handles); |
| 51 | static DEFINE_SPINLOCK(nsm_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | /* |
| 54 | * Local NSM state |
| 55 | */ |
Olaf Kirch | 460f5ca | 2006-10-04 02:16:03 -0700 | [diff] [blame] | 56 | int nsm_local_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 58 | static void nsm_display_ipv4_address(const struct sockaddr *sap, char *buf, |
| 59 | const size_t len) |
| 60 | { |
| 61 | const struct sockaddr_in *sin = (struct sockaddr_in *)sap; |
| 62 | snprintf(buf, len, "%pI4", &sin->sin_addr.s_addr); |
| 63 | } |
| 64 | |
| 65 | static void nsm_display_ipv6_address(const struct sockaddr *sap, char *buf, |
| 66 | const size_t len) |
| 67 | { |
| 68 | const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap; |
| 69 | |
| 70 | if (ipv6_addr_v4mapped(&sin6->sin6_addr)) |
| 71 | snprintf(buf, len, "%pI4", &sin6->sin6_addr.s6_addr32[3]); |
| 72 | else if (sin6->sin6_scope_id != 0) |
| 73 | snprintf(buf, len, "%pI6%%%u", &sin6->sin6_addr, |
| 74 | sin6->sin6_scope_id); |
| 75 | else |
| 76 | snprintf(buf, len, "%pI6", &sin6->sin6_addr); |
| 77 | } |
| 78 | |
| 79 | static void nsm_display_address(const struct sockaddr *sap, |
| 80 | char *buf, const size_t len) |
| 81 | { |
| 82 | switch (sap->sa_family) { |
| 83 | case AF_INET: |
| 84 | nsm_display_ipv4_address(sap, buf, len); |
| 85 | break; |
| 86 | case AF_INET6: |
| 87 | nsm_display_ipv6_address(sap, buf, len); |
| 88 | break; |
| 89 | default: |
| 90 | snprintf(buf, len, "unsupported address family"); |
| 91 | break; |
| 92 | } |
| 93 | } |
| 94 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | /* |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 96 | * Common procedure for NSMPROC_MON/NSMPROC_UNMON calls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | */ |
| 98 | static int |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 99 | nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
| 101 | struct rpc_clnt *clnt; |
| 102 | int status; |
Chuck Lever | a484675 | 2008-12-04 14:20:23 -0500 | [diff] [blame] | 103 | struct nsm_args args = { |
Chuck Lever | cab2d3c | 2008-12-05 19:03:24 -0500 | [diff] [blame] | 104 | .priv = &nsm->sm_priv, |
Chuck Lever | a484675 | 2008-12-04 14:20:23 -0500 | [diff] [blame] | 105 | .prog = NLM_PROGRAM, |
| 106 | .vers = 3, |
| 107 | .proc = NLMPROC_NSM_NOTIFY, |
Chuck Lever | 29ed140 | 2008-12-04 14:20:46 -0500 | [diff] [blame] | 108 | .mon_name = nsm->sm_mon_name, |
Chuck Lever | a484675 | 2008-12-04 14:20:23 -0500 | [diff] [blame] | 109 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 110 | struct rpc_message msg = { |
| 111 | .rpc_argp = &args, |
| 112 | .rpc_resp = res, |
| 113 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
| 115 | clnt = nsm_create(); |
| 116 | if (IS_ERR(clnt)) { |
| 117 | status = PTR_ERR(clnt); |
Chuck Lever | 5acf431 | 2008-12-04 14:20:31 -0500 | [diff] [blame] | 118 | dprintk("lockd: failed to create NSM upcall transport, " |
| 119 | "status=%d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | goto out; |
| 121 | } |
| 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | memset(res, 0, sizeof(*res)); |
| 124 | |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 125 | msg.rpc_proc = &clnt->cl_procinfo[proc]; |
| 126 | status = rpc_call_sync(clnt, &msg, 0); |
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; |
Trond Myklebust | 90c5755 | 2007-06-09 19:49:36 -0400 | [diff] [blame] | 132 | rpc_shutdown_client(clnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | out: |
| 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 | |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 165 | status = nsm_mon_unmon(nsm, NSMPROC_MON, &res); |
Chuck Lever | 5d254b1 | 2008-12-04 14:21:15 -0500 | [diff] [blame] | 166 | if (res.status != 0) |
| 167 | status = -EIO; |
| 168 | if (status < 0) |
Chuck Lever | 9fee490 | 2008-12-04 14:20:53 -0500 | [diff] [blame] | 169 | printk(KERN_NOTICE "lockd: cannot monitor %s\n", nsm->sm_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | else |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 171 | nsm->sm_monitored = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | return status; |
| 173 | } |
| 174 | |
Chuck Lever | 356c3eb | 2008-12-04 14:21:38 -0500 | [diff] [blame] | 175 | /** |
| 176 | * nsm_unmonitor - Unregister peer notification |
| 177 | * @host: pointer to nlm_host of peer to stop monitoring |
| 178 | * |
| 179 | * If this peer is monitored, this function sends an upcall to |
| 180 | * tell the local rpc.statd not to send this peer a notification |
| 181 | * when we reboot. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | */ |
Chuck Lever | 356c3eb | 2008-12-04 14:21:38 -0500 | [diff] [blame] | 183 | void nsm_unmonitor(const struct nlm_host *host) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 185 | struct nsm_handle *nsm = host->h_nsmhandle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | struct nsm_res res; |
Chuck Lever | 356c3eb | 2008-12-04 14:21:38 -0500 | [diff] [blame] | 187 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 189 | if (atomic_read(&nsm->sm_count) == 1 |
| 190 | && nsm->sm_monitored && !nsm->sm_sticky) { |
Chuck Lever | 9fee490 | 2008-12-04 14:20:53 -0500 | [diff] [blame] | 191 | dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name); |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 192 | |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 193 | status = nsm_mon_unmon(nsm, NSMPROC_UNMON, &res); |
Chuck Lever | 0c7aef4 | 2008-12-04 14:21:46 -0500 | [diff] [blame] | 194 | if (res.status != 0) |
| 195 | status = -EIO; |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 196 | if (status < 0) |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 197 | printk(KERN_NOTICE "lockd: cannot unmonitor %s\n", |
Chuck Lever | 9fee490 | 2008-12-04 14:20:53 -0500 | [diff] [blame] | 198 | nsm->sm_name); |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 199 | else |
| 200 | nsm->sm_monitored = 0; |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 201 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | } |
| 203 | |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame^] | 204 | static struct nsm_handle *nsm_lookup_hostname(const char *hostname, |
| 205 | const size_t len) |
| 206 | { |
| 207 | struct nsm_handle *nsm; |
| 208 | |
| 209 | list_for_each_entry(nsm, &nsm_handles, sm_link) |
| 210 | if (strlen(nsm->sm_name) == len && |
| 211 | memcmp(nsm->sm_name, hostname, len) == 0) |
| 212 | return nsm; |
| 213 | return NULL; |
| 214 | } |
| 215 | |
| 216 | static struct nsm_handle *nsm_lookup_priv(const struct nsm_private *priv) |
| 217 | { |
| 218 | struct nsm_handle *nsm; |
| 219 | |
| 220 | list_for_each_entry(nsm, &nsm_handles, sm_link) |
| 221 | if (memcmp(nsm->sm_priv.data, priv->data, |
| 222 | sizeof(priv->data)) == 0) |
| 223 | return nsm; |
| 224 | return NULL; |
| 225 | } |
| 226 | |
Chuck Lever | 7e44d3b | 2008-12-05 19:03:16 -0500 | [diff] [blame] | 227 | /* |
| 228 | * Construct a unique cookie to match this nsm_handle to this monitored |
| 229 | * host. It is passed to the local rpc.statd via NSMPROC_MON, and |
| 230 | * returned via NLMPROC_SM_NOTIFY, in the "priv" field of these |
| 231 | * requests. |
| 232 | * |
| 233 | * Linux provides the raw IP address of the monitored host, |
| 234 | * left in network byte order. |
| 235 | */ |
| 236 | static void nsm_init_private(struct nsm_handle *nsm) |
| 237 | { |
| 238 | __be32 *p = (__be32 *)&nsm->sm_priv.data; |
| 239 | *p = nsm_addr_in(nsm)->sin_addr.s_addr; |
| 240 | } |
| 241 | |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 242 | /** |
| 243 | * nsm_find - Find or create a cached nsm_handle |
| 244 | * @sap: pointer to socket address of handle to find |
| 245 | * @salen: length of socket address |
| 246 | * @hostname: pointer to C string containing hostname to find |
| 247 | * @hostname_len: length of C string |
| 248 | * @create: one means create new handle if not found in cache |
| 249 | * |
| 250 | * Behavior is modulated by the global nsm_use_hostnames variable |
| 251 | * and by the @create argument. |
| 252 | * |
| 253 | * Returns a cached nsm_handle after bumping its ref count, or if |
| 254 | * @create is set, returns a fresh nsm_handle if a handle that |
| 255 | * matches @sap and/or @hostname cannot be found in the handle cache. |
| 256 | * Returns NULL if an error occurs. |
| 257 | */ |
| 258 | struct nsm_handle *nsm_find(const struct sockaddr *sap, const size_t salen, |
| 259 | const char *hostname, const size_t hostname_len, |
| 260 | const int create) |
| 261 | { |
| 262 | struct nsm_handle *nsm = NULL; |
| 263 | struct nsm_handle *pos; |
| 264 | |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 265 | if (hostname && memchr(hostname, '/', hostname_len) != NULL) { |
| 266 | if (printk_ratelimit()) { |
| 267 | printk(KERN_WARNING "Invalid hostname \"%.*s\" " |
| 268 | "in NFS lock request\n", |
| 269 | (int)hostname_len, hostname); |
| 270 | } |
| 271 | return NULL; |
| 272 | } |
| 273 | |
| 274 | retry: |
| 275 | spin_lock(&nsm_lock); |
| 276 | list_for_each_entry(pos, &nsm_handles, sm_link) { |
| 277 | |
| 278 | if (hostname && nsm_use_hostnames) { |
| 279 | if (strlen(pos->sm_name) != hostname_len |
| 280 | || memcmp(pos->sm_name, hostname, hostname_len)) |
| 281 | continue; |
| 282 | } else if (!nlm_cmp_addr(nsm_addr(pos), sap)) |
| 283 | continue; |
| 284 | atomic_inc(&pos->sm_count); |
| 285 | kfree(nsm); |
| 286 | nsm = pos; |
Chuck Lever | 5cf1c4b | 2008-12-05 19:02:53 -0500 | [diff] [blame] | 287 | dprintk("lockd: found nsm_handle for %s (%s), cnt %d\n", |
| 288 | pos->sm_name, pos->sm_addrbuf, |
| 289 | atomic_read(&pos->sm_count)); |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 290 | goto found; |
| 291 | } |
| 292 | if (nsm) { |
| 293 | list_add(&nsm->sm_link, &nsm_handles); |
Chuck Lever | 5cf1c4b | 2008-12-05 19:02:53 -0500 | [diff] [blame] | 294 | dprintk("lockd: created nsm_handle for %s (%s)\n", |
| 295 | nsm->sm_name, nsm->sm_addrbuf); |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 296 | goto found; |
| 297 | } |
| 298 | spin_unlock(&nsm_lock); |
| 299 | |
| 300 | if (!create) |
| 301 | return NULL; |
| 302 | |
| 303 | nsm = kzalloc(sizeof(*nsm) + hostname_len + 1, GFP_KERNEL); |
| 304 | if (nsm == NULL) |
| 305 | return NULL; |
| 306 | |
| 307 | memcpy(nsm_addr(nsm), sap, salen); |
| 308 | nsm->sm_addrlen = salen; |
| 309 | nsm->sm_name = (char *) (nsm + 1); |
| 310 | memcpy(nsm->sm_name, hostname, hostname_len); |
| 311 | nsm->sm_name[hostname_len] = '\0'; |
Chuck Lever | 7e44d3b | 2008-12-05 19:03:16 -0500 | [diff] [blame] | 312 | nsm_init_private(nsm); |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 313 | nsm_display_address((struct sockaddr *)&nsm->sm_addr, |
| 314 | nsm->sm_addrbuf, sizeof(nsm->sm_addrbuf)); |
| 315 | atomic_set(&nsm->sm_count, 1); |
| 316 | goto retry; |
| 317 | |
| 318 | found: |
| 319 | spin_unlock(&nsm_lock); |
| 320 | return nsm; |
| 321 | } |
| 322 | |
| 323 | /** |
Chuck Lever | 3420a8c | 2008-12-05 19:03:46 -0500 | [diff] [blame^] | 324 | * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle |
| 325 | * @info: pointer to NLMPROC_SM_NOTIFY arguments |
| 326 | * |
| 327 | * Returns a matching nsm_handle if found in the nsm cache; the returned |
| 328 | * nsm_handle's reference count is bumped and sm_monitored is cleared. |
| 329 | * Otherwise returns NULL if some error occurred. |
| 330 | */ |
| 331 | struct nsm_handle *nsm_reboot_lookup(const struct nlm_reboot *info) |
| 332 | { |
| 333 | struct nsm_handle *cached; |
| 334 | |
| 335 | spin_lock(&nsm_lock); |
| 336 | |
| 337 | if (nsm_use_hostnames && info->mon != NULL) |
| 338 | cached = nsm_lookup_hostname(info->mon, info->len); |
| 339 | else |
| 340 | cached = nsm_lookup_priv(&info->priv); |
| 341 | |
| 342 | if (unlikely(cached == NULL)) { |
| 343 | spin_unlock(&nsm_lock); |
| 344 | dprintk("lockd: never saw rebooted peer '%.*s' before\n", |
| 345 | info->len, info->mon); |
| 346 | return cached; |
| 347 | } |
| 348 | |
| 349 | atomic_inc(&cached->sm_count); |
| 350 | spin_unlock(&nsm_lock); |
| 351 | |
| 352 | /* |
| 353 | * During subsequent lock activity, force a fresh |
| 354 | * notification to be set up for this host. |
| 355 | */ |
| 356 | cached->sm_monitored = 0; |
| 357 | |
| 358 | dprintk("lockd: host %s (%s) rebooted, cnt %d\n", |
| 359 | cached->sm_name, cached->sm_addrbuf, |
| 360 | atomic_read(&cached->sm_count)); |
| 361 | return cached; |
| 362 | } |
| 363 | |
| 364 | /** |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 365 | * nsm_release - Release an NSM handle |
| 366 | * @nsm: pointer to handle to be released |
| 367 | * |
| 368 | */ |
| 369 | void nsm_release(struct nsm_handle *nsm) |
| 370 | { |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 371 | if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) { |
| 372 | list_del(&nsm->sm_link); |
| 373 | spin_unlock(&nsm_lock); |
Chuck Lever | 5cf1c4b | 2008-12-05 19:02:53 -0500 | [diff] [blame] | 374 | dprintk("lockd: destroyed nsm_handle for %s (%s)\n", |
| 375 | nsm->sm_name, nsm->sm_addrbuf); |
Chuck Lever | 67c6d10 | 2008-12-05 19:02:45 -0500 | [diff] [blame] | 376 | kfree(nsm); |
| 377 | } |
| 378 | } |
| 379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | /* |
| 381 | * Create NSM client for the local host |
| 382 | */ |
| 383 | static struct rpc_clnt * |
| 384 | nsm_create(void) |
| 385 | { |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 386 | struct sockaddr_in sin = { |
| 387 | .sin_family = AF_INET, |
| 388 | .sin_addr.s_addr = htonl(INADDR_LOOPBACK), |
| 389 | .sin_port = 0, |
| 390 | }; |
| 391 | struct rpc_create_args args = { |
\"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 392 | .protocol = XPRT_TRANSPORT_UDP, |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 393 | .address = (struct sockaddr *)&sin, |
| 394 | .addrsize = sizeof(sin), |
| 395 | .servername = "localhost", |
| 396 | .program = &nsm_program, |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 397 | .version = NSM_VERSION, |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 398 | .authflavor = RPC_AUTH_NULL, |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 399 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 401 | return rpc_create(&args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | /* |
| 405 | * XDR functions for NSM. |
Chuck Lever | 2ca7754 | 2008-03-14 14:26:01 -0400 | [diff] [blame] | 406 | * |
| 407 | * See http://www.opengroup.org/ for details on the Network |
| 408 | * Status Monitor wire protocol. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | */ |
| 410 | |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 411 | static int encode_nsm_string(struct xdr_stream *xdr, const char *string) |
Chuck Lever | 099bd05 | 2008-03-14 14:25:32 -0400 | [diff] [blame] | 412 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 413 | const u32 len = strlen(string); |
| 414 | __be32 *p; |
Chuck Lever | 099bd05 | 2008-03-14 14:25:32 -0400 | [diff] [blame] | 415 | |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 416 | if (unlikely(len > SM_MAXSTRLEN)) |
| 417 | return -EIO; |
| 418 | p = xdr_reserve_space(xdr, sizeof(u32) + len); |
| 419 | if (unlikely(p == NULL)) |
| 420 | return -EIO; |
| 421 | xdr_encode_opaque(p, string, len); |
| 422 | return 0; |
Chuck Lever | 099bd05 | 2008-03-14 14:25:32 -0400 | [diff] [blame] | 423 | } |
| 424 | |
Chuck Lever | 4969517 | 2008-03-14 14:25:39 -0400 | [diff] [blame] | 425 | /* |
| 426 | * "mon_name" specifies the host to be monitored. |
Chuck Lever | 4969517 | 2008-03-14 14:25:39 -0400 | [diff] [blame] | 427 | */ |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 428 | static int encode_mon_name(struct xdr_stream *xdr, const struct nsm_args *argp) |
Chuck Lever | 4969517 | 2008-03-14 14:25:39 -0400 | [diff] [blame] | 429 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 430 | return encode_nsm_string(xdr, argp->mon_name); |
Chuck Lever | 4969517 | 2008-03-14 14:25:39 -0400 | [diff] [blame] | 431 | } |
| 432 | |
Chuck Lever | 850c95f | 2008-03-14 14:25:46 -0400 | [diff] [blame] | 433 | /* |
| 434 | * The "my_id" argument specifies the hostname and RPC procedure |
| 435 | * to be called when the status manager receives notification |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 436 | * (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] | 437 | * has changed. |
| 438 | */ |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 439 | static int encode_my_id(struct xdr_stream *xdr, const struct nsm_args *argp) |
Chuck Lever | 850c95f | 2008-03-14 14:25:46 -0400 | [diff] [blame] | 440 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 441 | int status; |
| 442 | __be32 *p; |
Chuck Lever | 850c95f | 2008-03-14 14:25:46 -0400 | [diff] [blame] | 443 | |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 444 | status = encode_nsm_string(xdr, utsname()->nodename); |
| 445 | if (unlikely(status != 0)) |
| 446 | return status; |
| 447 | p = xdr_reserve_space(xdr, 3 * sizeof(u32)); |
| 448 | if (unlikely(p == NULL)) |
| 449 | return -EIO; |
Chuck Lever | 850c95f | 2008-03-14 14:25:46 -0400 | [diff] [blame] | 450 | *p++ = htonl(argp->prog); |
| 451 | *p++ = htonl(argp->vers); |
| 452 | *p++ = htonl(argp->proc); |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 453 | return 0; |
Chuck Lever | 850c95f | 2008-03-14 14:25:46 -0400 | [diff] [blame] | 454 | } |
| 455 | |
Chuck Lever | ea72a7f | 2008-03-14 14:25:53 -0400 | [diff] [blame] | 456 | /* |
| 457 | * The "mon_id" argument specifies the non-private arguments |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 458 | * of an NSMPROC_MON or NSMPROC_UNMON call. |
Chuck Lever | ea72a7f | 2008-03-14 14:25:53 -0400 | [diff] [blame] | 459 | */ |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 460 | static int encode_mon_id(struct xdr_stream *xdr, const struct nsm_args *argp) |
Chuck Lever | ea72a7f | 2008-03-14 14:25:53 -0400 | [diff] [blame] | 461 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 462 | int status; |
Chuck Lever | ea72a7f | 2008-03-14 14:25:53 -0400 | [diff] [blame] | 463 | |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 464 | status = encode_mon_name(xdr, argp); |
| 465 | if (unlikely(status != 0)) |
| 466 | return status; |
| 467 | return encode_my_id(xdr, argp); |
Chuck Lever | ea72a7f | 2008-03-14 14:25:53 -0400 | [diff] [blame] | 468 | } |
| 469 | |
Chuck Lever | 0490a54 | 2008-03-14 14:26:08 -0400 | [diff] [blame] | 470 | /* |
| 471 | * The "priv" argument may contain private information required |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 472 | * by the NSMPROC_MON call. This information will be supplied in the |
| 473 | * NLMPROC_SM_NOTIFY call. |
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 | static int encode_priv(struct xdr_stream *xdr, const struct nsm_args *argp) |
Chuck Lever | 0490a54 | 2008-03-14 14:26:08 -0400 | [diff] [blame] | 476 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 477 | __be32 *p; |
| 478 | |
| 479 | p = xdr_reserve_space(xdr, SM_PRIV_SIZE); |
| 480 | if (unlikely(p == NULL)) |
| 481 | return -EIO; |
Chuck Lever | cab2d3c | 2008-12-05 19:03:24 -0500 | [diff] [blame] | 482 | xdr_encode_opaque_fixed(p, argp->priv->data, SM_PRIV_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | return 0; |
| 484 | } |
| 485 | |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 486 | static int xdr_enc_mon(struct rpc_rqst *req, __be32 *p, |
| 487 | const struct nsm_args *argp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 489 | struct xdr_stream xdr; |
| 490 | int status; |
| 491 | |
| 492 | xdr_init_encode(&xdr, &req->rq_snd_buf, p); |
| 493 | status = encode_mon_id(&xdr, argp); |
| 494 | if (unlikely(status)) |
| 495 | return status; |
| 496 | return encode_priv(&xdr, argp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | } |
| 498 | |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 499 | static int xdr_enc_unmon(struct rpc_rqst *req, __be32 *p, |
| 500 | const struct nsm_args *argp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 502 | struct xdr_stream xdr; |
| 503 | |
| 504 | xdr_init_encode(&xdr, &req->rq_snd_buf, p); |
| 505 | return encode_mon_id(&xdr, argp); |
| 506 | } |
| 507 | |
| 508 | static int xdr_dec_stat_res(struct rpc_rqst *rqstp, __be32 *p, |
| 509 | struct nsm_res *resp) |
| 510 | { |
| 511 | struct xdr_stream xdr; |
| 512 | |
| 513 | xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p); |
| 514 | p = xdr_inline_decode(&xdr, 2 * sizeof(u32)); |
| 515 | if (unlikely(p == NULL)) |
| 516 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | resp->status = ntohl(*p++); |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 518 | resp->state = ntohl(*p); |
| 519 | |
| 520 | dprintk("lockd: xdr_dec_stat_res status %d state %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | resp->status, resp->state); |
| 522 | return 0; |
| 523 | } |
| 524 | |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 525 | static int xdr_dec_stat(struct rpc_rqst *rqstp, __be32 *p, |
| 526 | struct nsm_res *resp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | { |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 528 | struct xdr_stream xdr; |
| 529 | |
| 530 | xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p); |
| 531 | p = xdr_inline_decode(&xdr, sizeof(u32)); |
| 532 | if (unlikely(p == NULL)) |
| 533 | return -EIO; |
| 534 | resp->state = ntohl(*p); |
| 535 | |
| 536 | dprintk("lockd: xdr_dec_stat state %d\n", resp->state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | return 0; |
| 538 | } |
| 539 | |
| 540 | #define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN)) |
Chuck Lever | 2ca7754 | 2008-03-14 14:26:01 -0400 | [diff] [blame] | 541 | #define SM_my_id_sz (SM_my_name_sz+3) |
| 542 | #define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN)) |
| 543 | #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] | 544 | #define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE)) |
| 545 | #define SM_mon_sz (SM_mon_id_sz+SM_priv_sz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | #define SM_monres_sz 2 |
| 547 | #define SM_unmonres_sz 1 |
| 548 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | static struct rpc_procinfo nsm_procedures[] = { |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 550 | [NSMPROC_MON] = { |
| 551 | .p_proc = NSMPROC_MON, |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 552 | .p_encode = (kxdrproc_t)xdr_enc_mon, |
| 553 | .p_decode = (kxdrproc_t)xdr_dec_stat_res, |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 554 | .p_arglen = SM_mon_sz, |
| 555 | .p_replen = SM_monres_sz, |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 556 | .p_statidx = NSMPROC_MON, |
Chuck Lever | cc0175c | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 557 | .p_name = "MONITOR", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | }, |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 559 | [NSMPROC_UNMON] = { |
| 560 | .p_proc = NSMPROC_UNMON, |
Chuck Lever | 03eb1dc | 2008-12-05 19:02:15 -0500 | [diff] [blame] | 561 | .p_encode = (kxdrproc_t)xdr_enc_unmon, |
| 562 | .p_decode = (kxdrproc_t)xdr_dec_stat, |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 563 | .p_arglen = SM_mon_id_sz, |
| 564 | .p_replen = SM_unmonres_sz, |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 565 | .p_statidx = NSMPROC_UNMON, |
Chuck Lever | cc0175c | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 566 | .p_name = "UNMONITOR", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | }, |
| 568 | }; |
| 569 | |
| 570 | static struct rpc_version nsm_version1 = { |
Tobias Klauser | e8c96f8 | 2006-03-24 03:15:34 -0800 | [diff] [blame] | 571 | .number = 1, |
| 572 | .nrprocs = ARRAY_SIZE(nsm_procedures), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | .procs = nsm_procedures |
| 574 | }; |
| 575 | |
| 576 | static struct rpc_version * nsm_version[] = { |
| 577 | [1] = &nsm_version1, |
| 578 | }; |
| 579 | |
| 580 | static struct rpc_stat nsm_stats; |
| 581 | |
| 582 | static struct rpc_program nsm_program = { |
| 583 | .name = "statd", |
Chuck Lever | 36e8e66 | 2008-12-05 19:02:07 -0500 | [diff] [blame] | 584 | .number = NSM_PROGRAM, |
Tobias Klauser | e8c96f8 | 2006-03-24 03:15:34 -0800 | [diff] [blame] | 585 | .nrvers = ARRAY_SIZE(nsm_version), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | .version = nsm_version, |
| 587 | .stats = &nsm_stats |
| 588 | }; |