NSM: More clean up of nsm_get_handle()
[safe/jmp/linux-2.6] / fs / lockd / mon.c
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>
13 #include <linux/sunrpc/xprtsock.h>
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
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 };
32
33 struct nsm_args {
34         struct nsm_private      *priv;
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
47 static struct rpc_clnt *        nsm_create(void);
48
49 static struct rpc_program       nsm_program;
50 static                          LIST_HEAD(nsm_handles);
51 static                          DEFINE_SPINLOCK(nsm_lock);
52
53 /*
54  * Local NSM state
55  */
56 int                             nsm_local_state;
57
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
95 /*
96  * Common procedure for NSMPROC_MON/NSMPROC_UNMON calls
97  */
98 static int
99 nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res)
100 {
101         struct rpc_clnt *clnt;
102         int             status;
103         struct nsm_args args = {
104                 .priv           = &nsm->sm_priv,
105                 .prog           = NLM_PROGRAM,
106                 .vers           = 3,
107                 .proc           = NLMPROC_NSM_NOTIFY,
108                 .mon_name       = nsm->sm_mon_name,
109         };
110         struct rpc_message msg = {
111                 .rpc_argp       = &args,
112                 .rpc_resp       = res,
113         };
114
115         clnt = nsm_create();
116         if (IS_ERR(clnt)) {
117                 status = PTR_ERR(clnt);
118                 dprintk("lockd: failed to create NSM upcall transport, "
119                                 "status=%d\n", status);
120                 goto out;
121         }
122
123         memset(res, 0, sizeof(*res));
124
125         msg.rpc_proc = &clnt->cl_procinfo[proc];
126         status = rpc_call_sync(clnt, &msg, 0);
127         if (status < 0)
128                 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
129                                 status);
130         else
131                 status = 0;
132         rpc_shutdown_client(clnt);
133  out:
134         return status;
135 }
136
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.
147  */
148 int nsm_monitor(const struct nlm_host *host)
149 {
150         struct nsm_handle *nsm = host->h_nsmhandle;
151         struct nsm_res  res;
152         int             status;
153
154         dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name);
155
156         if (nsm->sm_monitored)
157                 return 0;
158
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
165         status = nsm_mon_unmon(nsm, NSMPROC_MON, &res);
166         if (res.status != 0)
167                 status = -EIO;
168         if (status < 0)
169                 printk(KERN_NOTICE "lockd: cannot monitor %s\n", nsm->sm_name);
170         else
171                 nsm->sm_monitored = 1;
172         return status;
173 }
174
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.
182  */
183 void nsm_unmonitor(const struct nlm_host *host)
184 {
185         struct nsm_handle *nsm = host->h_nsmhandle;
186         struct nsm_res  res;
187         int status;
188
189         if (atomic_read(&nsm->sm_count) == 1
190          && nsm->sm_monitored && !nsm->sm_sticky) {
191                 dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name);
192
193                 status = nsm_mon_unmon(nsm, NSMPROC_UNMON, &res);
194                 if (res.status != 0)
195                         status = -EIO;
196                 if (status < 0)
197                         printk(KERN_NOTICE "lockd: cannot unmonitor %s\n",
198                                         nsm->sm_name);
199                 else
200                         nsm->sm_monitored = 0;
201         }
202 }
203
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_addr(const struct sockaddr *sap)
217 {
218         struct nsm_handle *nsm;
219
220         list_for_each_entry(nsm, &nsm_handles, sm_link)
221                 if (nlm_cmp_addr(nsm_addr(nsm), sap))
222                         return nsm;
223         return NULL;
224 }
225
226 static struct nsm_handle *nsm_lookup_priv(const struct nsm_private *priv)
227 {
228         struct nsm_handle *nsm;
229
230         list_for_each_entry(nsm, &nsm_handles, sm_link)
231                 if (memcmp(nsm->sm_priv.data, priv->data,
232                                         sizeof(priv->data)) == 0)
233                         return nsm;
234         return NULL;
235 }
236
237 /*
238  * Construct a unique cookie to match this nsm_handle to this monitored
239  * host.  It is passed to the local rpc.statd via NSMPROC_MON, and
240  * returned via NLMPROC_SM_NOTIFY, in the "priv" field of these
241  * requests.
242  *
243  * Linux provides the raw IP address of the monitored host,
244  * left in network byte order.
245  */
246 static void nsm_init_private(struct nsm_handle *nsm)
247 {
248         __be32 *p = (__be32 *)&nsm->sm_priv.data;
249         *p = nsm_addr_in(nsm)->sin_addr.s_addr;
250 }
251
252 static struct nsm_handle *nsm_create_handle(const struct sockaddr *sap,
253                                             const size_t salen,
254                                             const char *hostname,
255                                             const size_t hostname_len)
256 {
257         struct nsm_handle *new;
258
259         new = kzalloc(sizeof(*new) + hostname_len + 1, GFP_KERNEL);
260         if (unlikely(new == NULL))
261                 return NULL;
262
263         atomic_set(&new->sm_count, 1);
264         new->sm_name = (char *)(new + 1);
265         memcpy(nsm_addr(new), sap, salen);
266         new->sm_addrlen = salen;
267         nsm_init_private(new);
268         nsm_display_address((const struct sockaddr *)&new->sm_addr,
269                                 new->sm_addrbuf, sizeof(new->sm_addrbuf));
270         memcpy(new->sm_name, hostname, hostname_len);
271         new->sm_name[hostname_len] = '\0';
272
273         return new;
274 }
275
276 /**
277  * nsm_get_handle - Find or create a cached nsm_handle
278  * @sap: pointer to socket address of handle to find
279  * @salen: length of socket address
280  * @hostname: pointer to C string containing hostname to find
281  * @hostname_len: length of C string
282  *
283  * Behavior is modulated by the global nsm_use_hostnames variable.
284  *
285  * Returns a cached nsm_handle after bumping its ref count, or
286  * returns a fresh nsm_handle if a handle that matches @sap and/or
287  * @hostname cannot be found in the handle cache.  Returns NULL if
288  * an error occurs.
289  */
290 struct nsm_handle *nsm_get_handle(const struct sockaddr *sap,
291                                   const size_t salen, const char *hostname,
292                                   const size_t hostname_len)
293 {
294         struct nsm_handle *cached, *new = NULL;
295
296         if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
297                 if (printk_ratelimit()) {
298                         printk(KERN_WARNING "Invalid hostname \"%.*s\" "
299                                             "in NFS lock request\n",
300                                 (int)hostname_len, hostname);
301                 }
302                 return NULL;
303         }
304
305 retry:
306         spin_lock(&nsm_lock);
307
308         if (nsm_use_hostnames && hostname != NULL)
309                 cached = nsm_lookup_hostname(hostname, hostname_len);
310         else
311                 cached = nsm_lookup_addr(sap);
312
313         if (cached != NULL) {
314                 atomic_inc(&cached->sm_count);
315                 spin_unlock(&nsm_lock);
316                 kfree(new);
317                 dprintk("lockd: found nsm_handle for %s (%s), "
318                                 "cnt %d\n", cached->sm_name,
319                                 cached->sm_addrbuf,
320                                 atomic_read(&cached->sm_count));
321                 return cached;
322         }
323
324         if (new != NULL) {
325                 list_add(&new->sm_link, &nsm_handles);
326                 spin_unlock(&nsm_lock);
327                 dprintk("lockd: created nsm_handle for %s (%s)\n",
328                                 new->sm_name, new->sm_addrbuf);
329                 return new;
330         }
331
332         spin_unlock(&nsm_lock);
333
334         new = nsm_create_handle(sap, salen, hostname, hostname_len);
335         if (unlikely(new == NULL))
336                 return NULL;
337         goto retry;
338 }
339
340 /**
341  * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle
342  * @info: pointer to NLMPROC_SM_NOTIFY arguments
343  *
344  * Returns a matching nsm_handle if found in the nsm cache; the returned
345  * nsm_handle's reference count is bumped and sm_monitored is cleared.
346  * Otherwise returns NULL if some error occurred.
347  */
348 struct nsm_handle *nsm_reboot_lookup(const struct nlm_reboot *info)
349 {
350         struct nsm_handle *cached;
351
352         spin_lock(&nsm_lock);
353
354         if (nsm_use_hostnames && info->mon != NULL)
355                 cached = nsm_lookup_hostname(info->mon, info->len);
356         else
357                 cached = nsm_lookup_priv(&info->priv);
358
359         if (unlikely(cached == NULL)) {
360                 spin_unlock(&nsm_lock);
361                 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
362                                 info->len, info->mon);
363                 return cached;
364         }
365
366         atomic_inc(&cached->sm_count);
367         spin_unlock(&nsm_lock);
368
369         /*
370          * During subsequent lock activity, force a fresh
371          * notification to be set up for this host.
372          */
373         cached->sm_monitored = 0;
374
375         dprintk("lockd: host %s (%s) rebooted, cnt %d\n",
376                         cached->sm_name, cached->sm_addrbuf,
377                         atomic_read(&cached->sm_count));
378         return cached;
379 }
380
381 /**
382  * nsm_release - Release an NSM handle
383  * @nsm: pointer to handle to be released
384  *
385  */
386 void nsm_release(struct nsm_handle *nsm)
387 {
388         if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
389                 list_del(&nsm->sm_link);
390                 spin_unlock(&nsm_lock);
391                 dprintk("lockd: destroyed nsm_handle for %s (%s)\n",
392                                 nsm->sm_name, nsm->sm_addrbuf);
393                 kfree(nsm);
394         }
395 }
396
397 /*
398  * Create NSM client for the local host
399  */
400 static struct rpc_clnt *
401 nsm_create(void)
402 {
403         struct sockaddr_in      sin = {
404                 .sin_family     = AF_INET,
405                 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
406                 .sin_port       = 0,
407         };
408         struct rpc_create_args args = {
409                 .protocol       = XPRT_TRANSPORT_UDP,
410                 .address        = (struct sockaddr *)&sin,
411                 .addrsize       = sizeof(sin),
412                 .servername     = "localhost",
413                 .program        = &nsm_program,
414                 .version        = NSM_VERSION,
415                 .authflavor     = RPC_AUTH_NULL,
416         };
417
418         return rpc_create(&args);
419 }
420
421 /*
422  * XDR functions for NSM.
423  *
424  * See http://www.opengroup.org/ for details on the Network
425  * Status Monitor wire protocol.
426  */
427
428 static int encode_nsm_string(struct xdr_stream *xdr, const char *string)
429 {
430         const u32 len = strlen(string);
431         __be32 *p;
432
433         if (unlikely(len > SM_MAXSTRLEN))
434                 return -EIO;
435         p = xdr_reserve_space(xdr, sizeof(u32) + len);
436         if (unlikely(p == NULL))
437                 return -EIO;
438         xdr_encode_opaque(p, string, len);
439         return 0;
440 }
441
442 /*
443  * "mon_name" specifies the host to be monitored.
444  */
445 static int encode_mon_name(struct xdr_stream *xdr, const struct nsm_args *argp)
446 {
447         return encode_nsm_string(xdr, argp->mon_name);
448 }
449
450 /*
451  * The "my_id" argument specifies the hostname and RPC procedure
452  * to be called when the status manager receives notification
453  * (via the NLMPROC_SM_NOTIFY call) that the state of host "mon_name"
454  * has changed.
455  */
456 static int encode_my_id(struct xdr_stream *xdr, const struct nsm_args *argp)
457 {
458         int status;
459         __be32 *p;
460
461         status = encode_nsm_string(xdr, utsname()->nodename);
462         if (unlikely(status != 0))
463                 return status;
464         p = xdr_reserve_space(xdr, 3 * sizeof(u32));
465         if (unlikely(p == NULL))
466                 return -EIO;
467         *p++ = htonl(argp->prog);
468         *p++ = htonl(argp->vers);
469         *p++ = htonl(argp->proc);
470         return 0;
471 }
472
473 /*
474  * The "mon_id" argument specifies the non-private arguments
475  * of an NSMPROC_MON or NSMPROC_UNMON call.
476  */
477 static int encode_mon_id(struct xdr_stream *xdr, const struct nsm_args *argp)
478 {
479         int status;
480
481         status = encode_mon_name(xdr, argp);
482         if (unlikely(status != 0))
483                 return status;
484         return encode_my_id(xdr, argp);
485 }
486
487 /*
488  * The "priv" argument may contain private information required
489  * by the NSMPROC_MON call. This information will be supplied in the
490  * NLMPROC_SM_NOTIFY call.
491  */
492 static int encode_priv(struct xdr_stream *xdr, const struct nsm_args *argp)
493 {
494         __be32 *p;
495
496         p = xdr_reserve_space(xdr, SM_PRIV_SIZE);
497         if (unlikely(p == NULL))
498                 return -EIO;
499         xdr_encode_opaque_fixed(p, argp->priv->data, SM_PRIV_SIZE);
500         return 0;
501 }
502
503 static int xdr_enc_mon(struct rpc_rqst *req, __be32 *p,
504                        const struct nsm_args *argp)
505 {
506         struct xdr_stream xdr;
507         int status;
508
509         xdr_init_encode(&xdr, &req->rq_snd_buf, p);
510         status = encode_mon_id(&xdr, argp);
511         if (unlikely(status))
512                 return status;
513         return encode_priv(&xdr, argp);
514 }
515
516 static int xdr_enc_unmon(struct rpc_rqst *req, __be32 *p,
517                          const struct nsm_args *argp)
518 {
519         struct xdr_stream xdr;
520
521         xdr_init_encode(&xdr, &req->rq_snd_buf, p);
522         return encode_mon_id(&xdr, argp);
523 }
524
525 static int xdr_dec_stat_res(struct rpc_rqst *rqstp, __be32 *p,
526                             struct nsm_res *resp)
527 {
528         struct xdr_stream xdr;
529
530         xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
531         p = xdr_inline_decode(&xdr, 2 * sizeof(u32));
532         if (unlikely(p == NULL))
533                 return -EIO;
534         resp->status = ntohl(*p++);
535         resp->state = ntohl(*p);
536
537         dprintk("lockd: xdr_dec_stat_res status %d state %d\n",
538                         resp->status, resp->state);
539         return 0;
540 }
541
542 static int xdr_dec_stat(struct rpc_rqst *rqstp, __be32 *p,
543                         struct nsm_res *resp)
544 {
545         struct xdr_stream xdr;
546
547         xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
548         p = xdr_inline_decode(&xdr, sizeof(u32));
549         if (unlikely(p == NULL))
550                 return -EIO;
551         resp->state = ntohl(*p);
552
553         dprintk("lockd: xdr_dec_stat state %d\n", resp->state);
554         return 0;
555 }
556
557 #define SM_my_name_sz   (1+XDR_QUADLEN(SM_MAXSTRLEN))
558 #define SM_my_id_sz     (SM_my_name_sz+3)
559 #define SM_mon_name_sz  (1+XDR_QUADLEN(SM_MAXSTRLEN))
560 #define SM_mon_id_sz    (SM_mon_name_sz+SM_my_id_sz)
561 #define SM_priv_sz      (XDR_QUADLEN(SM_PRIV_SIZE))
562 #define SM_mon_sz       (SM_mon_id_sz+SM_priv_sz)
563 #define SM_monres_sz    2
564 #define SM_unmonres_sz  1
565
566 static struct rpc_procinfo      nsm_procedures[] = {
567 [NSMPROC_MON] = {
568                 .p_proc         = NSMPROC_MON,
569                 .p_encode       = (kxdrproc_t)xdr_enc_mon,
570                 .p_decode       = (kxdrproc_t)xdr_dec_stat_res,
571                 .p_arglen       = SM_mon_sz,
572                 .p_replen       = SM_monres_sz,
573                 .p_statidx      = NSMPROC_MON,
574                 .p_name         = "MONITOR",
575         },
576 [NSMPROC_UNMON] = {
577                 .p_proc         = NSMPROC_UNMON,
578                 .p_encode       = (kxdrproc_t)xdr_enc_unmon,
579                 .p_decode       = (kxdrproc_t)xdr_dec_stat,
580                 .p_arglen       = SM_mon_id_sz,
581                 .p_replen       = SM_unmonres_sz,
582                 .p_statidx      = NSMPROC_UNMON,
583                 .p_name         = "UNMONITOR",
584         },
585 };
586
587 static struct rpc_version       nsm_version1 = {
588                 .number         = 1,
589                 .nrprocs        = ARRAY_SIZE(nsm_procedures),
590                 .procs          = nsm_procedures
591 };
592
593 static struct rpc_version *     nsm_version[] = {
594         [1] = &nsm_version1,
595 };
596
597 static struct rpc_stat          nsm_stats;
598
599 static struct rpc_program       nsm_program = {
600                 .name           = "statd",
601                 .number         = NSM_PROGRAM,
602                 .nrvers         = ARRAY_SIZE(nsm_version),
603                 .version        = nsm_version,
604                 .stats          = &nsm_stats
605 };