4 * The kernel statd client.
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
9 #include <linux/types.h>
10 #include <linux/utsname.h>
11 #include <linux/kernel.h>
12 #include <linux/ktime.h>
14 #include <linux/sunrpc/clnt.h>
15 #include <linux/sunrpc/xprtsock.h>
16 #include <linux/sunrpc/svc.h>
17 #include <linux/lockd/lockd.h>
19 #define NLMDBG_FACILITY NLMDBG_MONITOR
20 #define NSM_PROGRAM 100024
34 struct nsm_private
*priv
;
35 u32 prog
; /* RPC callback info */
47 static struct rpc_program nsm_program
;
48 static LIST_HEAD(nsm_handles
);
49 static DEFINE_SPINLOCK(nsm_lock
);
54 int __read_mostly nsm_local_state
;
55 int __read_mostly nsm_use_hostnames
;
57 static inline struct sockaddr
*nsm_addr(const struct nsm_handle
*nsm
)
59 return (struct sockaddr
*)&nsm
->sm_addr
;
62 static void nsm_display_ipv4_address(const struct sockaddr
*sap
, char *buf
,
65 const struct sockaddr_in
*sin
= (struct sockaddr_in
*)sap
;
66 snprintf(buf
, len
, "%pI4", &sin
->sin_addr
.s_addr
);
69 static void nsm_display_ipv6_address(const struct sockaddr
*sap
, char *buf
,
72 const struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)sap
;
74 if (ipv6_addr_v4mapped(&sin6
->sin6_addr
))
75 snprintf(buf
, len
, "%pI4", &sin6
->sin6_addr
.s6_addr32
[3]);
76 else if (sin6
->sin6_scope_id
!= 0)
77 snprintf(buf
, len
, "%pI6%%%u", &sin6
->sin6_addr
,
80 snprintf(buf
, len
, "%pI6", &sin6
->sin6_addr
);
83 static void nsm_display_address(const struct sockaddr
*sap
,
84 char *buf
, const size_t len
)
86 switch (sap
->sa_family
) {
88 nsm_display_ipv4_address(sap
, buf
, len
);
91 nsm_display_ipv6_address(sap
, buf
, len
);
94 snprintf(buf
, len
, "unsupported address family");
99 static struct rpc_clnt
*nsm_create(void)
101 struct sockaddr_in sin
= {
102 .sin_family
= AF_INET
,
103 .sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
),
105 struct rpc_create_args args
= {
106 .protocol
= XPRT_TRANSPORT_UDP
,
107 .address
= (struct sockaddr
*)&sin
,
108 .addrsize
= sizeof(sin
),
109 .servername
= "rpc.statd",
110 .program
= &nsm_program
,
111 .version
= NSM_VERSION
,
112 .authflavor
= RPC_AUTH_NULL
,
115 return rpc_create(&args
);
118 static int nsm_mon_unmon(struct nsm_handle
*nsm
, u32 proc
, struct nsm_res
*res
)
120 struct rpc_clnt
*clnt
;
122 struct nsm_args args
= {
123 .priv
= &nsm
->sm_priv
,
126 .proc
= NLMPROC_NSM_NOTIFY
,
127 .mon_name
= nsm
->sm_mon_name
,
129 struct rpc_message msg
= {
136 status
= PTR_ERR(clnt
);
137 dprintk("lockd: failed to create NSM upcall transport, "
138 "status=%d\n", status
);
142 memset(res
, 0, sizeof(*res
));
144 msg
.rpc_proc
= &clnt
->cl_procinfo
[proc
];
145 status
= rpc_call_sync(clnt
, &msg
, 0);
147 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
151 rpc_shutdown_client(clnt
);
157 * nsm_monitor - Notify a peer in case we reboot
158 * @host: pointer to nlm_host of peer to notify
160 * If this peer is not already monitored, this function sends an
161 * upcall to the local rpc.statd to record the name/address of
162 * the peer to notify in case we reboot.
164 * Returns zero if the peer is monitored by the local rpc.statd;
165 * otherwise a negative errno value is returned.
167 int nsm_monitor(const struct nlm_host
*host
)
169 struct nsm_handle
*nsm
= host
->h_nsmhandle
;
173 dprintk("lockd: nsm_monitor(%s)\n", nsm
->sm_name
);
175 if (nsm
->sm_monitored
)
179 * Choose whether to record the caller_name or IP address of
180 * this peer in the local rpc.statd's database.
182 nsm
->sm_mon_name
= nsm_use_hostnames
? nsm
->sm_name
: nsm
->sm_addrbuf
;
184 status
= nsm_mon_unmon(nsm
, NSMPROC_MON
, &res
);
188 printk(KERN_NOTICE
"lockd: cannot monitor %s\n", nsm
->sm_name
);
190 nsm
->sm_monitored
= 1;
195 * nsm_unmonitor - Unregister peer notification
196 * @host: pointer to nlm_host of peer to stop monitoring
198 * If this peer is monitored, this function sends an upcall to
199 * tell the local rpc.statd not to send this peer a notification
202 void nsm_unmonitor(const struct nlm_host
*host
)
204 struct nsm_handle
*nsm
= host
->h_nsmhandle
;
208 if (atomic_read(&nsm
->sm_count
) == 1
209 && nsm
->sm_monitored
&& !nsm
->sm_sticky
) {
210 dprintk("lockd: nsm_unmonitor(%s)\n", nsm
->sm_name
);
212 status
= nsm_mon_unmon(nsm
, NSMPROC_UNMON
, &res
);
216 printk(KERN_NOTICE
"lockd: cannot unmonitor %s\n",
219 nsm
->sm_monitored
= 0;
223 static struct nsm_handle
*nsm_lookup_hostname(const char *hostname
,
226 struct nsm_handle
*nsm
;
228 list_for_each_entry(nsm
, &nsm_handles
, sm_link
)
229 if (strlen(nsm
->sm_name
) == len
&&
230 memcmp(nsm
->sm_name
, hostname
, len
) == 0)
235 static struct nsm_handle
*nsm_lookup_addr(const struct sockaddr
*sap
)
237 struct nsm_handle
*nsm
;
239 list_for_each_entry(nsm
, &nsm_handles
, sm_link
)
240 if (nlm_cmp_addr(nsm_addr(nsm
), sap
))
245 static struct nsm_handle
*nsm_lookup_priv(const struct nsm_private
*priv
)
247 struct nsm_handle
*nsm
;
249 list_for_each_entry(nsm
, &nsm_handles
, sm_link
)
250 if (memcmp(nsm
->sm_priv
.data
, priv
->data
,
251 sizeof(priv
->data
)) == 0)
257 * Construct a unique cookie to match this nsm_handle to this monitored
258 * host. It is passed to the local rpc.statd via NSMPROC_MON, and
259 * returned via NLMPROC_SM_NOTIFY, in the "priv" field of these
262 * The NSM protocol requires that these cookies be unique while the
263 * system is running. We prefer a stronger requirement of making them
264 * unique across reboots. If user space bugs cause a stale cookie to
265 * be sent to the kernel, it could cause the wrong host to lose its
266 * lock state if cookies were not unique across reboots.
268 * The cookies are exposed only to local user space via loopback. They
269 * do not appear on the physical network. If we want greater security
270 * for some reason, nsm_init_private() could perform a one-way hash to
271 * obscure the contents of the cookie.
273 static void nsm_init_private(struct nsm_handle
*nsm
)
275 u64
*p
= (u64
*)&nsm
->sm_priv
.data
;
279 *p
++ = timespec_to_ns(&ts
);
280 *p
= (unsigned long)nsm
;
283 static struct nsm_handle
*nsm_create_handle(const struct sockaddr
*sap
,
285 const char *hostname
,
286 const size_t hostname_len
)
288 struct nsm_handle
*new;
290 new = kzalloc(sizeof(*new) + hostname_len
+ 1, GFP_KERNEL
);
291 if (unlikely(new == NULL
))
294 atomic_set(&new->sm_count
, 1);
295 new->sm_name
= (char *)(new + 1);
296 memcpy(nsm_addr(new), sap
, salen
);
297 new->sm_addrlen
= salen
;
298 nsm_init_private(new);
299 nsm_display_address((const struct sockaddr
*)&new->sm_addr
,
300 new->sm_addrbuf
, sizeof(new->sm_addrbuf
));
301 memcpy(new->sm_name
, hostname
, hostname_len
);
302 new->sm_name
[hostname_len
] = '\0';
308 * nsm_get_handle - Find or create a cached nsm_handle
309 * @sap: pointer to socket address of handle to find
310 * @salen: length of socket address
311 * @hostname: pointer to C string containing hostname to find
312 * @hostname_len: length of C string
314 * Behavior is modulated by the global nsm_use_hostnames variable.
316 * Returns a cached nsm_handle after bumping its ref count, or
317 * returns a fresh nsm_handle if a handle that matches @sap and/or
318 * @hostname cannot be found in the handle cache. Returns NULL if
321 struct nsm_handle
*nsm_get_handle(const struct sockaddr
*sap
,
322 const size_t salen
, const char *hostname
,
323 const size_t hostname_len
)
325 struct nsm_handle
*cached
, *new = NULL
;
327 if (hostname
&& memchr(hostname
, '/', hostname_len
) != NULL
) {
328 if (printk_ratelimit()) {
329 printk(KERN_WARNING
"Invalid hostname \"%.*s\" "
330 "in NFS lock request\n",
331 (int)hostname_len
, hostname
);
337 spin_lock(&nsm_lock
);
339 if (nsm_use_hostnames
&& hostname
!= NULL
)
340 cached
= nsm_lookup_hostname(hostname
, hostname_len
);
342 cached
= nsm_lookup_addr(sap
);
344 if (cached
!= NULL
) {
345 atomic_inc(&cached
->sm_count
);
346 spin_unlock(&nsm_lock
);
348 dprintk("lockd: found nsm_handle for %s (%s), "
349 "cnt %d\n", cached
->sm_name
,
351 atomic_read(&cached
->sm_count
));
356 list_add(&new->sm_link
, &nsm_handles
);
357 spin_unlock(&nsm_lock
);
358 dprintk("lockd: created nsm_handle for %s (%s)\n",
359 new->sm_name
, new->sm_addrbuf
);
363 spin_unlock(&nsm_lock
);
365 new = nsm_create_handle(sap
, salen
, hostname
, hostname_len
);
366 if (unlikely(new == NULL
))
372 * nsm_reboot_lookup - match NLMPROC_SM_NOTIFY arguments to an nsm_handle
373 * @info: pointer to NLMPROC_SM_NOTIFY arguments
375 * Returns a matching nsm_handle if found in the nsm cache; the returned
376 * nsm_handle's reference count is bumped and sm_monitored is cleared.
377 * Otherwise returns NULL if some error occurred.
379 struct nsm_handle
*nsm_reboot_lookup(const struct nlm_reboot
*info
)
381 struct nsm_handle
*cached
;
383 spin_lock(&nsm_lock
);
385 cached
= nsm_lookup_priv(&info
->priv
);
386 if (unlikely(cached
== NULL
)) {
387 spin_unlock(&nsm_lock
);
388 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
389 info
->len
, info
->mon
);
393 atomic_inc(&cached
->sm_count
);
394 spin_unlock(&nsm_lock
);
397 * During subsequent lock activity, force a fresh
398 * notification to be set up for this host.
400 cached
->sm_monitored
= 0;
402 dprintk("lockd: host %s (%s) rebooted, cnt %d\n",
403 cached
->sm_name
, cached
->sm_addrbuf
,
404 atomic_read(&cached
->sm_count
));
409 * nsm_release - Release an NSM handle
410 * @nsm: pointer to handle to be released
413 void nsm_release(struct nsm_handle
*nsm
)
415 if (atomic_dec_and_lock(&nsm
->sm_count
, &nsm_lock
)) {
416 list_del(&nsm
->sm_link
);
417 spin_unlock(&nsm_lock
);
418 dprintk("lockd: destroyed nsm_handle for %s (%s)\n",
419 nsm
->sm_name
, nsm
->sm_addrbuf
);
425 * XDR functions for NSM.
427 * See http://www.opengroup.org/ for details on the Network
428 * Status Monitor wire protocol.
431 static int encode_nsm_string(struct xdr_stream
*xdr
, const char *string
)
433 const u32 len
= strlen(string
);
436 if (unlikely(len
> SM_MAXSTRLEN
))
438 p
= xdr_reserve_space(xdr
, sizeof(u32
) + len
);
439 if (unlikely(p
== NULL
))
441 xdr_encode_opaque(p
, string
, len
);
446 * "mon_name" specifies the host to be monitored.
448 static int encode_mon_name(struct xdr_stream
*xdr
, const struct nsm_args
*argp
)
450 return encode_nsm_string(xdr
, argp
->mon_name
);
454 * The "my_id" argument specifies the hostname and RPC procedure
455 * to be called when the status manager receives notification
456 * (via the NLMPROC_SM_NOTIFY call) that the state of host "mon_name"
459 static int encode_my_id(struct xdr_stream
*xdr
, const struct nsm_args
*argp
)
464 status
= encode_nsm_string(xdr
, utsname()->nodename
);
465 if (unlikely(status
!= 0))
467 p
= xdr_reserve_space(xdr
, 3 * sizeof(u32
));
468 if (unlikely(p
== NULL
))
470 *p
++ = htonl(argp
->prog
);
471 *p
++ = htonl(argp
->vers
);
472 *p
++ = htonl(argp
->proc
);
477 * The "mon_id" argument specifies the non-private arguments
478 * of an NSMPROC_MON or NSMPROC_UNMON call.
480 static int encode_mon_id(struct xdr_stream
*xdr
, const struct nsm_args
*argp
)
484 status
= encode_mon_name(xdr
, argp
);
485 if (unlikely(status
!= 0))
487 return encode_my_id(xdr
, argp
);
491 * The "priv" argument may contain private information required
492 * by the NSMPROC_MON call. This information will be supplied in the
493 * NLMPROC_SM_NOTIFY call.
495 static int encode_priv(struct xdr_stream
*xdr
, const struct nsm_args
*argp
)
499 p
= xdr_reserve_space(xdr
, SM_PRIV_SIZE
);
500 if (unlikely(p
== NULL
))
502 xdr_encode_opaque_fixed(p
, argp
->priv
->data
, SM_PRIV_SIZE
);
506 static int xdr_enc_mon(struct rpc_rqst
*req
, __be32
*p
,
507 const struct nsm_args
*argp
)
509 struct xdr_stream xdr
;
512 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
513 status
= encode_mon_id(&xdr
, argp
);
514 if (unlikely(status
))
516 return encode_priv(&xdr
, argp
);
519 static int xdr_enc_unmon(struct rpc_rqst
*req
, __be32
*p
,
520 const struct nsm_args
*argp
)
522 struct xdr_stream xdr
;
524 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
525 return encode_mon_id(&xdr
, argp
);
528 static int xdr_dec_stat_res(struct rpc_rqst
*rqstp
, __be32
*p
,
529 struct nsm_res
*resp
)
531 struct xdr_stream xdr
;
533 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
534 p
= xdr_inline_decode(&xdr
, 2 * sizeof(u32
));
535 if (unlikely(p
== NULL
))
537 resp
->status
= ntohl(*p
++);
538 resp
->state
= ntohl(*p
);
540 dprintk("lockd: xdr_dec_stat_res status %d state %d\n",
541 resp
->status
, resp
->state
);
545 static int xdr_dec_stat(struct rpc_rqst
*rqstp
, __be32
*p
,
546 struct nsm_res
*resp
)
548 struct xdr_stream xdr
;
550 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
551 p
= xdr_inline_decode(&xdr
, sizeof(u32
));
552 if (unlikely(p
== NULL
))
554 resp
->state
= ntohl(*p
);
556 dprintk("lockd: xdr_dec_stat state %d\n", resp
->state
);
560 #define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
561 #define SM_my_id_sz (SM_my_name_sz+3)
562 #define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
563 #define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
564 #define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
565 #define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
566 #define SM_monres_sz 2
567 #define SM_unmonres_sz 1
569 static struct rpc_procinfo nsm_procedures
[] = {
571 .p_proc
= NSMPROC_MON
,
572 .p_encode
= (kxdrproc_t
)xdr_enc_mon
,
573 .p_decode
= (kxdrproc_t
)xdr_dec_stat_res
,
574 .p_arglen
= SM_mon_sz
,
575 .p_replen
= SM_monres_sz
,
576 .p_statidx
= NSMPROC_MON
,
580 .p_proc
= NSMPROC_UNMON
,
581 .p_encode
= (kxdrproc_t
)xdr_enc_unmon
,
582 .p_decode
= (kxdrproc_t
)xdr_dec_stat
,
583 .p_arglen
= SM_mon_id_sz
,
584 .p_replen
= SM_unmonres_sz
,
585 .p_statidx
= NSMPROC_UNMON
,
586 .p_name
= "UNMONITOR",
590 static struct rpc_version nsm_version1
= {
592 .nrprocs
= ARRAY_SIZE(nsm_procedures
),
593 .procs
= nsm_procedures
596 static struct rpc_version
* nsm_version
[] = {
600 static struct rpc_stat nsm_stats
;
602 static struct rpc_program nsm_program
= {
604 .number
= NSM_PROGRAM
,
605 .nrvers
= ARRAY_SIZE(nsm_version
),
606 .version
= nsm_version
,