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