blob: 315ca07715c7b9d819481dd7d0c004c12fab3e8b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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\0896a722007-09-10 13:48:23 -040013#include <linux/sunrpc/xprtsock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#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 Lever36e8e662008-12-05 19:02:07 -050020#define NSM_PROGRAM 100024
21#define NSM_VERSION 1
22
23enum {
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 Torvalds1da177e2005-04-16 15:20:36 -070032
Chuck Lever9c1bfd02008-12-05 19:01:59 -050033struct nsm_args {
Chuck Levercab2d3c2008-12-05 19:03:24 -050034 struct nsm_private *priv;
Chuck Lever9c1bfd02008-12-05 19:01:59 -050035 u32 prog; /* RPC callback info */
36 u32 vers;
37 u32 proc;
38
39 char *mon_name;
40};
41
42struct nsm_res {
43 u32 status;
44 u32 state;
45};
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static struct rpc_clnt * nsm_create(void);
48
49static struct rpc_program nsm_program;
Chuck Lever67c6d102008-12-05 19:02:45 -050050static LIST_HEAD(nsm_handles);
51static DEFINE_SPINLOCK(nsm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
54 * Local NSM state
55 */
Olaf Kirch460f5ca2006-10-04 02:16:03 -070056int nsm_local_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Chuck Lever67c6d102008-12-05 19:02:45 -050058static 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
65static 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
79static 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 Torvalds1da177e2005-04-16 15:20:36 -070095/*
Chuck Lever36e8e662008-12-05 19:02:07 -050096 * Common procedure for NSMPROC_MON/NSMPROC_UNMON calls
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
98static int
Olaf Kirch9502c522006-10-04 02:15:56 -070099nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 struct rpc_clnt *clnt;
102 int status;
Chuck Levera4846752008-12-04 14:20:23 -0500103 struct nsm_args args = {
Chuck Levercab2d3c2008-12-05 19:03:24 -0500104 .priv = &nsm->sm_priv,
Chuck Levera4846752008-12-04 14:20:23 -0500105 .prog = NLM_PROGRAM,
106 .vers = 3,
107 .proc = NLMPROC_NSM_NOTIFY,
Chuck Lever29ed1402008-12-04 14:20:46 -0500108 .mon_name = nsm->sm_mon_name,
Chuck Levera4846752008-12-04 14:20:23 -0500109 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500110 struct rpc_message msg = {
111 .rpc_argp = &args,
112 .rpc_resp = res,
113 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 clnt = nsm_create();
116 if (IS_ERR(clnt)) {
117 status = PTR_ERR(clnt);
Chuck Lever5acf4312008-12-04 14:20:31 -0500118 dprintk("lockd: failed to create NSM upcall transport, "
119 "status=%d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 goto out;
121 }
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 memset(res, 0, sizeof(*res));
124
Chuck Leverdead28d2006-03-20 13:44:23 -0500125 msg.rpc_proc = &clnt->cl_procinfo[proc];
126 status = rpc_call_sync(clnt, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (status < 0)
Chuck Lever5acf4312008-12-04 14:20:31 -0500128 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
129 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 else
131 status = 0;
Trond Myklebust90c57552007-06-09 19:49:36 -0400132 rpc_shutdown_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 out:
134 return status;
135}
136
Chuck Lever1e493232008-12-04 14:21:24 -0500137/**
138 * nsm_monitor - Notify a peer in case we reboot
139 * @host: pointer to nlm_host of peer to notify
140 *
141 * If this peer is not already monitored, this function sends an
142 * upcall to the local rpc.statd to record the name/address of
143 * the peer to notify in case we reboot.
144 *
145 * Returns zero if the peer is monitored by the local rpc.statd;
146 * otherwise a negative errno value is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 */
Chuck Lever1e493232008-12-04 14:21:24 -0500148int nsm_monitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700150 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct nsm_res res;
152 int status;
153
Chuck Lever9fee4902008-12-04 14:20:53 -0500154 dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700155
156 if (nsm->sm_monitored)
Olaf Kirch977faf32006-10-04 02:15:51 -0700157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Chuck Lever29ed1402008-12-04 14:20:46 -0500159 /*
160 * Choose whether to record the caller_name or IP address of
161 * this peer in the local rpc.statd's database.
162 */
163 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
164
Chuck Lever36e8e662008-12-05 19:02:07 -0500165 status = nsm_mon_unmon(nsm, NSMPROC_MON, &res);
Chuck Lever5d254b12008-12-04 14:21:15 -0500166 if (res.status != 0)
167 status = -EIO;
168 if (status < 0)
Chuck Lever9fee4902008-12-04 14:20:53 -0500169 printk(KERN_NOTICE "lockd: cannot monitor %s\n", nsm->sm_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 else
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700171 nsm->sm_monitored = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return status;
173}
174
Chuck Lever356c3eb2008-12-04 14:21:38 -0500175/**
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 Torvalds1da177e2005-04-16 15:20:36 -0700182 */
Chuck Lever356c3eb2008-12-04 14:21:38 -0500183void nsm_unmonitor(const struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700185 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 struct nsm_res res;
Chuck Lever356c3eb2008-12-04 14:21:38 -0500187 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Olaf Kirch9502c522006-10-04 02:15:56 -0700189 if (atomic_read(&nsm->sm_count) == 1
190 && nsm->sm_monitored && !nsm->sm_sticky) {
Chuck Lever9fee4902008-12-04 14:20:53 -0500191 dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700192
Chuck Lever36e8e662008-12-05 19:02:07 -0500193 status = nsm_mon_unmon(nsm, NSMPROC_UNMON, &res);
Chuck Lever0c7aef42008-12-04 14:21:46 -0500194 if (res.status != 0)
195 status = -EIO;
Olaf Kirch977faf32006-10-04 02:15:51 -0700196 if (status < 0)
Olaf Kirch9502c522006-10-04 02:15:56 -0700197 printk(KERN_NOTICE "lockd: cannot unmonitor %s\n",
Chuck Lever9fee4902008-12-04 14:20:53 -0500198 nsm->sm_name);
Olaf Kirch9502c522006-10-04 02:15:56 -0700199 else
200 nsm->sm_monitored = 0;
Olaf Kirch977faf32006-10-04 02:15:51 -0700201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Chuck Lever3420a8c2008-12-05 19:03:46 -0500204static 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
216static 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 Lever7e44d3b2008-12-05 19:03:16 -0500227/*
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 */
236static 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 Leverb39b8972008-12-11 17:55:52 -0500242static struct nsm_handle *nsm_create_handle(const struct sockaddr *sap,
243 const size_t salen,
244 const char *hostname,
245 const size_t hostname_len)
246{
247 struct nsm_handle *new;
248
249 new = kzalloc(sizeof(*new) + hostname_len + 1, GFP_KERNEL);
250 if (unlikely(new == NULL))
251 return NULL;
252
253 atomic_set(&new->sm_count, 1);
254 new->sm_name = (char *)(new + 1);
255 memcpy(nsm_addr(new), sap, salen);
256 new->sm_addrlen = salen;
257 nsm_init_private(new);
258 nsm_display_address((const struct sockaddr *)&new->sm_addr,
259 new->sm_addrbuf, sizeof(new->sm_addrbuf));
260 memcpy(new->sm_name, hostname, hostname_len);
261 new->sm_name[hostname_len] = '\0';
262
263 return new;
264}
265
Chuck Lever67c6d102008-12-05 19:02:45 -0500266/**
Chuck Lever92fd91b2008-12-05 19:04:01 -0500267 * nsm_get_handle - Find or create a cached nsm_handle
Chuck Lever67c6d102008-12-05 19:02:45 -0500268 * @sap: pointer to socket address of handle to find
269 * @salen: length of socket address
270 * @hostname: pointer to C string containing hostname to find
271 * @hostname_len: length of C string
Chuck Lever67c6d102008-12-05 19:02:45 -0500272 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500273 * Behavior is modulated by the global nsm_use_hostnames variable.
Chuck Lever67c6d102008-12-05 19:02:45 -0500274 *
Chuck Lever92fd91b2008-12-05 19:04:01 -0500275 * Returns a cached nsm_handle after bumping its ref count, or
276 * returns a fresh nsm_handle if a handle that matches @sap and/or
277 * @hostname cannot be found in the handle cache. Returns NULL if
278 * an error occurs.
Chuck Lever67c6d102008-12-05 19:02:45 -0500279 */
Chuck Lever92fd91b2008-12-05 19:04:01 -0500280struct nsm_handle *nsm_get_handle(const struct sockaddr *sap,
281 const size_t salen, const char *hostname,
282 const size_t hostname_len)
Chuck Lever67c6d102008-12-05 19:02:45 -0500283{
284 struct nsm_handle *nsm = NULL;
285 struct nsm_handle *pos;
286
Chuck Lever67c6d102008-12-05 19:02:45 -0500287 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
288 if (printk_ratelimit()) {
289 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
290 "in NFS lock request\n",
291 (int)hostname_len, hostname);
292 }
293 return NULL;
294 }
295
296retry:
297 spin_lock(&nsm_lock);
298 list_for_each_entry(pos, &nsm_handles, sm_link) {
299
300 if (hostname && nsm_use_hostnames) {
301 if (strlen(pos->sm_name) != hostname_len
302 || memcmp(pos->sm_name, hostname, hostname_len))
303 continue;
304 } else if (!nlm_cmp_addr(nsm_addr(pos), sap))
305 continue;
306 atomic_inc(&pos->sm_count);
307 kfree(nsm);
308 nsm = pos;
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500309 dprintk("lockd: found nsm_handle for %s (%s), cnt %d\n",
310 pos->sm_name, pos->sm_addrbuf,
311 atomic_read(&pos->sm_count));
Chuck Lever67c6d102008-12-05 19:02:45 -0500312 goto found;
313 }
314 if (nsm) {
315 list_add(&nsm->sm_link, &nsm_handles);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500316 dprintk("lockd: created nsm_handle for %s (%s)\n",
317 nsm->sm_name, nsm->sm_addrbuf);
Chuck Lever67c6d102008-12-05 19:02:45 -0500318 goto found;
319 }
320 spin_unlock(&nsm_lock);
321
Chuck Leverb39b8972008-12-11 17:55:52 -0500322 nsm = nsm_create_handle(sap, salen, hostname, hostname_len);
323 if (unlikely(nsm == NULL))
Chuck Lever67c6d102008-12-05 19:02:45 -0500324 return NULL;
Chuck Lever67c6d102008-12-05 19:02:45 -0500325 goto retry;
326
327found:
328 spin_unlock(&nsm_lock);
329 return nsm;
330}
331
332/**
Chuck Lever3420a8c2008-12-05 19:03:46 -0500333 * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle
334 * @info: pointer to NLMPROC_SM_NOTIFY arguments
335 *
336 * Returns a matching nsm_handle if found in the nsm cache; the returned
337 * nsm_handle's reference count is bumped and sm_monitored is cleared.
338 * Otherwise returns NULL if some error occurred.
339 */
340struct nsm_handle *nsm_reboot_lookup(const struct nlm_reboot *info)
341{
342 struct nsm_handle *cached;
343
344 spin_lock(&nsm_lock);
345
346 if (nsm_use_hostnames && info->mon != NULL)
347 cached = nsm_lookup_hostname(info->mon, info->len);
348 else
349 cached = nsm_lookup_priv(&info->priv);
350
351 if (unlikely(cached == NULL)) {
352 spin_unlock(&nsm_lock);
353 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
354 info->len, info->mon);
355 return cached;
356 }
357
358 atomic_inc(&cached->sm_count);
359 spin_unlock(&nsm_lock);
360
361 /*
362 * During subsequent lock activity, force a fresh
363 * notification to be set up for this host.
364 */
365 cached->sm_monitored = 0;
366
367 dprintk("lockd: host %s (%s) rebooted, cnt %d\n",
368 cached->sm_name, cached->sm_addrbuf,
369 atomic_read(&cached->sm_count));
370 return cached;
371}
372
373/**
Chuck Lever67c6d102008-12-05 19:02:45 -0500374 * nsm_release - Release an NSM handle
375 * @nsm: pointer to handle to be released
376 *
377 */
378void nsm_release(struct nsm_handle *nsm)
379{
Chuck Lever67c6d102008-12-05 19:02:45 -0500380 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
381 list_del(&nsm->sm_link);
382 spin_unlock(&nsm_lock);
Chuck Lever5cf1c4b2008-12-05 19:02:53 -0500383 dprintk("lockd: destroyed nsm_handle for %s (%s)\n",
384 nsm->sm_name, nsm->sm_addrbuf);
Chuck Lever67c6d102008-12-05 19:02:45 -0500385 kfree(nsm);
386 }
387}
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/*
390 * Create NSM client for the local host
391 */
392static struct rpc_clnt *
393nsm_create(void)
394{
Chuck Levere1ec7892006-08-22 20:06:20 -0400395 struct sockaddr_in sin = {
396 .sin_family = AF_INET,
397 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
398 .sin_port = 0,
399 };
400 struct rpc_create_args args = {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400401 .protocol = XPRT_TRANSPORT_UDP,
Chuck Levere1ec7892006-08-22 20:06:20 -0400402 .address = (struct sockaddr *)&sin,
403 .addrsize = sizeof(sin),
404 .servername = "localhost",
405 .program = &nsm_program,
Chuck Lever36e8e662008-12-05 19:02:07 -0500406 .version = NSM_VERSION,
Chuck Levere1ec7892006-08-22 20:06:20 -0400407 .authflavor = RPC_AUTH_NULL,
Chuck Levere1ec7892006-08-22 20:06:20 -0400408 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Chuck Levere1ec7892006-08-22 20:06:20 -0400410 return rpc_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
413/*
414 * XDR functions for NSM.
Chuck Lever2ca77542008-03-14 14:26:01 -0400415 *
416 * See http://www.opengroup.org/ for details on the Network
417 * Status Monitor wire protocol.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 */
419
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500420static int encode_nsm_string(struct xdr_stream *xdr, const char *string)
Chuck Lever099bd052008-03-14 14:25:32 -0400421{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500422 const u32 len = strlen(string);
423 __be32 *p;
Chuck Lever099bd052008-03-14 14:25:32 -0400424
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500425 if (unlikely(len > SM_MAXSTRLEN))
426 return -EIO;
427 p = xdr_reserve_space(xdr, sizeof(u32) + len);
428 if (unlikely(p == NULL))
429 return -EIO;
430 xdr_encode_opaque(p, string, len);
431 return 0;
Chuck Lever099bd052008-03-14 14:25:32 -0400432}
433
Chuck Lever49695172008-03-14 14:25:39 -0400434/*
435 * "mon_name" specifies the host to be monitored.
Chuck Lever49695172008-03-14 14:25:39 -0400436 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500437static int encode_mon_name(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever49695172008-03-14 14:25:39 -0400438{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500439 return encode_nsm_string(xdr, argp->mon_name);
Chuck Lever49695172008-03-14 14:25:39 -0400440}
441
Chuck Lever850c95f2008-03-14 14:25:46 -0400442/*
443 * The "my_id" argument specifies the hostname and RPC procedure
444 * to be called when the status manager receives notification
Chuck Lever36e8e662008-12-05 19:02:07 -0500445 * (via the NLMPROC_SM_NOTIFY call) that the state of host "mon_name"
Chuck Lever850c95f2008-03-14 14:25:46 -0400446 * has changed.
447 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500448static int encode_my_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever850c95f2008-03-14 14:25:46 -0400449{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500450 int status;
451 __be32 *p;
Chuck Lever850c95f2008-03-14 14:25:46 -0400452
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500453 status = encode_nsm_string(xdr, utsname()->nodename);
454 if (unlikely(status != 0))
455 return status;
456 p = xdr_reserve_space(xdr, 3 * sizeof(u32));
457 if (unlikely(p == NULL))
458 return -EIO;
Chuck Lever850c95f2008-03-14 14:25:46 -0400459 *p++ = htonl(argp->prog);
460 *p++ = htonl(argp->vers);
461 *p++ = htonl(argp->proc);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500462 return 0;
Chuck Lever850c95f2008-03-14 14:25:46 -0400463}
464
Chuck Leverea72a7f2008-03-14 14:25:53 -0400465/*
466 * The "mon_id" argument specifies the non-private arguments
Chuck Lever36e8e662008-12-05 19:02:07 -0500467 * of an NSMPROC_MON or NSMPROC_UNMON call.
Chuck Leverea72a7f2008-03-14 14:25:53 -0400468 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500469static int encode_mon_id(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Leverea72a7f2008-03-14 14:25:53 -0400470{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500471 int status;
Chuck Leverea72a7f2008-03-14 14:25:53 -0400472
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500473 status = encode_mon_name(xdr, argp);
474 if (unlikely(status != 0))
475 return status;
476 return encode_my_id(xdr, argp);
Chuck Leverea72a7f2008-03-14 14:25:53 -0400477}
478
Chuck Lever0490a542008-03-14 14:26:08 -0400479/*
480 * The "priv" argument may contain private information required
Chuck Lever36e8e662008-12-05 19:02:07 -0500481 * by the NSMPROC_MON call. This information will be supplied in the
482 * NLMPROC_SM_NOTIFY call.
Chuck Lever0490a542008-03-14 14:26:08 -0400483 */
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500484static int encode_priv(struct xdr_stream *xdr, const struct nsm_args *argp)
Chuck Lever0490a542008-03-14 14:26:08 -0400485{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500486 __be32 *p;
487
488 p = xdr_reserve_space(xdr, SM_PRIV_SIZE);
489 if (unlikely(p == NULL))
490 return -EIO;
Chuck Levercab2d3c2008-12-05 19:03:24 -0500491 xdr_encode_opaque_fixed(p, argp->priv->data, SM_PRIV_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return 0;
493}
494
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500495static int xdr_enc_mon(struct rpc_rqst *req, __be32 *p,
496 const struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500498 struct xdr_stream xdr;
499 int status;
500
501 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
502 status = encode_mon_id(&xdr, argp);
503 if (unlikely(status))
504 return status;
505 return encode_priv(&xdr, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500508static int xdr_enc_unmon(struct rpc_rqst *req, __be32 *p,
509 const struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500511 struct xdr_stream xdr;
512
513 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
514 return encode_mon_id(&xdr, argp);
515}
516
517static int xdr_dec_stat_res(struct rpc_rqst *rqstp, __be32 *p,
518 struct nsm_res *resp)
519{
520 struct xdr_stream xdr;
521
522 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
523 p = xdr_inline_decode(&xdr, 2 * sizeof(u32));
524 if (unlikely(p == NULL))
525 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 resp->status = ntohl(*p++);
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500527 resp->state = ntohl(*p);
528
529 dprintk("lockd: xdr_dec_stat_res status %d state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 resp->status, resp->state);
531 return 0;
532}
533
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500534static int xdr_dec_stat(struct rpc_rqst *rqstp, __be32 *p,
535 struct nsm_res *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500537 struct xdr_stream xdr;
538
539 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
540 p = xdr_inline_decode(&xdr, sizeof(u32));
541 if (unlikely(p == NULL))
542 return -EIO;
543 resp->state = ntohl(*p);
544
545 dprintk("lockd: xdr_dec_stat state %d\n", resp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return 0;
547}
548
549#define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
Chuck Lever2ca77542008-03-14 14:26:01 -0400550#define SM_my_id_sz (SM_my_name_sz+3)
551#define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
552#define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
Chuck Lever0490a542008-03-14 14:26:08 -0400553#define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
554#define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555#define SM_monres_sz 2
556#define SM_unmonres_sz 1
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558static struct rpc_procinfo nsm_procedures[] = {
Chuck Lever36e8e662008-12-05 19:02:07 -0500559[NSMPROC_MON] = {
560 .p_proc = NSMPROC_MON,
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500561 .p_encode = (kxdrproc_t)xdr_enc_mon,
562 .p_decode = (kxdrproc_t)xdr_dec_stat_res,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400563 .p_arglen = SM_mon_sz,
564 .p_replen = SM_monres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500565 .p_statidx = NSMPROC_MON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500566 .p_name = "MONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 },
Chuck Lever36e8e662008-12-05 19:02:07 -0500568[NSMPROC_UNMON] = {
569 .p_proc = NSMPROC_UNMON,
Chuck Lever03eb1dc2008-12-05 19:02:15 -0500570 .p_encode = (kxdrproc_t)xdr_enc_unmon,
571 .p_decode = (kxdrproc_t)xdr_dec_stat,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400572 .p_arglen = SM_mon_id_sz,
573 .p_replen = SM_unmonres_sz,
Chuck Lever36e8e662008-12-05 19:02:07 -0500574 .p_statidx = NSMPROC_UNMON,
Chuck Levercc0175c2006-03-20 13:44:22 -0500575 .p_name = "UNMONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 },
577};
578
579static struct rpc_version nsm_version1 = {
Tobias Klausere8c96f82006-03-24 03:15:34 -0800580 .number = 1,
581 .nrprocs = ARRAY_SIZE(nsm_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 .procs = nsm_procedures
583};
584
585static struct rpc_version * nsm_version[] = {
586 [1] = &nsm_version1,
587};
588
589static struct rpc_stat nsm_stats;
590
591static struct rpc_program nsm_program = {
592 .name = "statd",
Chuck Lever36e8e662008-12-05 19:02:07 -0500593 .number = NSM_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800594 .nrvers = ARRAY_SIZE(nsm_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 .version = nsm_version,
596 .stats = &nsm_stats
597};