blob: 2e27176ff42fa391e052543540d0600c42e07011 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/lockd/svc4proc.c
3 *
4 * Lockd server procedures. We don't implement the NLM_*_RES
5 * procedures because we don't use the async procedures.
6 *
7 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
8 */
9
10#include <linux/types.h>
11#include <linux/time.h>
12#include <linux/slab.h>
13#include <linux/in.h>
14#include <linux/sunrpc/svc.h>
15#include <linux/sunrpc/clnt.h>
16#include <linux/nfsd/nfsd.h>
17#include <linux/lockd/lockd.h>
18#include <linux/lockd/share.h>
19#include <linux/lockd/sm_inter.h>
20
21
22#define NLMDBG_FACILITY NLMDBG_CLIENT
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/*
25 * Obtain client and file from arguments
26 */
Al Viro52921e02006-10-19 23:28:46 -070027static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070028nlm4svc_retrieve_args(struct svc_rqst *rqstp, struct nlm_args *argp,
29 struct nlm_host **hostp, struct nlm_file **filp)
30{
31 struct nlm_host *host = NULL;
32 struct nlm_file *file = NULL;
33 struct nlm_lock *lock = &argp->lock;
Al Viro52921e02006-10-19 23:28:46 -070034 __be32 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36 /* nfsd callbacks must have been installed for this procedure */
37 if (!nlmsvc_ops)
38 return nlm_lck_denied_nolocks;
39
40 /* Obtain host handle */
Olaf Kirchdb4e4c92006-10-04 02:15:52 -070041 if (!(host = nlmsvc_lookup_host(rqstp, lock->caller, lock->len))
Olaf Kirch977faf32006-10-04 02:15:51 -070042 || (argp->monitor && nsm_monitor(host) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 goto no_locks;
44 *hostp = host;
45
46 /* Obtain file pointer. Not used by FREE_ALL call. */
47 if (filp != NULL) {
48 if ((error = nlm_lookup_file(rqstp, &file, &lock->fh)) != 0)
49 goto no_locks;
50 *filp = file;
51
52 /* Set up the missing parts of the file_lock structure */
53 lock->fl.fl_file = file->f_file;
54 lock->fl.fl_owner = (fl_owner_t) host;
55 lock->fl.fl_lmops = &nlmsvc_lock_operations;
56 }
57
58 return 0;
59
60no_locks:
61 if (host)
62 nlm_release_host(host);
63 if (error)
64 return error;
65 return nlm_lck_denied_nolocks;
66}
67
68/*
69 * NULL: Test for presence of service
70 */
Al Viro7111c662006-10-19 23:28:45 -070071static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070072nlm4svc_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
73{
74 dprintk("lockd: NULL called\n");
75 return rpc_success;
76}
77
78/*
79 * TEST: Check for conflicting lock
80 */
Al Viro7111c662006-10-19 23:28:45 -070081static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070082nlm4svc_proc_test(struct svc_rqst *rqstp, struct nlm_args *argp,
83 struct nlm_res *resp)
84{
85 struct nlm_host *host;
86 struct nlm_file *file;
Oleg Drokinb7e6b862007-11-26 13:35:11 -050087 int rc = rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 dprintk("lockd: TEST4 called\n");
90 resp->cookie = argp->cookie;
91
92 /* Don't accept test requests during grace period */
93 if (nlmsvc_grace_period) {
94 resp->status = nlm_lck_denied_grace_period;
Oleg Drokinb7e6b862007-11-26 13:35:11 -050095 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
97
98 /* Obtain client and file */
99 if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
NeilBrownd343fce2006-10-17 00:10:18 -0700100 return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 /* Now check for conflicting locks */
Marc Eshel85f3f1b32006-11-28 16:27:06 -0500103 resp->status = nlmsvc_testlock(rqstp, file, &argp->lock, &resp->lock, &resp->cookie);
Marc Eshel5ea0d752006-11-28 16:27:06 -0500104 if (resp->status == nlm_drop_reply)
Oleg Drokinb7e6b862007-11-26 13:35:11 -0500105 rc = rpc_drop_reply;
106 else
107 dprintk("lockd: TEST4 status %d\n", ntohl(resp->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 nlm_release_host(host);
110 nlm_release_file(file);
Oleg Drokinb7e6b862007-11-26 13:35:11 -0500111 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Al Viro7111c662006-10-19 23:28:45 -0700114static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115nlm4svc_proc_lock(struct svc_rqst *rqstp, struct nlm_args *argp,
116 struct nlm_res *resp)
117{
118 struct nlm_host *host;
119 struct nlm_file *file;
Oleg Drokinb7e6b862007-11-26 13:35:11 -0500120 int rc = rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 dprintk("lockd: LOCK called\n");
123
124 resp->cookie = argp->cookie;
125
126 /* Don't accept new lock requests during grace period */
127 if (nlmsvc_grace_period && !argp->reclaim) {
128 resp->status = nlm_lck_denied_grace_period;
Oleg Drokinb7e6b862007-11-26 13:35:11 -0500129 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
132 /* Obtain client and file */
133 if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
NeilBrownd343fce2006-10-17 00:10:18 -0700134 return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136#if 0
137 /* If supplied state doesn't match current state, we assume it's
138 * an old request that time-warped somehow. Any error return would
139 * do in this case because it's irrelevant anyway.
140 *
141 * NB: We don't retrieve the remote host's state yet.
142 */
143 if (host->h_nsmstate && host->h_nsmstate != argp->state) {
144 resp->status = nlm_lck_denied_nolocks;
145 } else
146#endif
147
148 /* Now try to lock the file */
149 resp->status = nlmsvc_lock(rqstp, file, &argp->lock,
150 argp->block, &argp->cookie);
Marc Eshel1a8322b2006-11-28 16:27:06 -0500151 if (resp->status == nlm_drop_reply)
Oleg Drokinb7e6b862007-11-26 13:35:11 -0500152 rc = rpc_drop_reply;
153 else
154 dprintk("lockd: LOCK status %d\n", ntohl(resp->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 nlm_release_host(host);
157 nlm_release_file(file);
Oleg Drokinb7e6b862007-11-26 13:35:11 -0500158 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Al Viro7111c662006-10-19 23:28:45 -0700161static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162nlm4svc_proc_cancel(struct svc_rqst *rqstp, struct nlm_args *argp,
163 struct nlm_res *resp)
164{
165 struct nlm_host *host;
166 struct nlm_file *file;
167
168 dprintk("lockd: CANCEL called\n");
169
170 resp->cookie = argp->cookie;
171
172 /* Don't accept requests during grace period */
173 if (nlmsvc_grace_period) {
174 resp->status = nlm_lck_denied_grace_period;
175 return rpc_success;
176 }
177
178 /* Obtain client and file */
179 if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
NeilBrownd343fce2006-10-17 00:10:18 -0700180 return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 /* Try to cancel request. */
183 resp->status = nlmsvc_cancel_blocked(file, &argp->lock);
184
185 dprintk("lockd: CANCEL status %d\n", ntohl(resp->status));
186 nlm_release_host(host);
187 nlm_release_file(file);
188 return rpc_success;
189}
190
191/*
192 * UNLOCK: release a lock
193 */
Al Viro7111c662006-10-19 23:28:45 -0700194static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195nlm4svc_proc_unlock(struct svc_rqst *rqstp, struct nlm_args *argp,
196 struct nlm_res *resp)
197{
198 struct nlm_host *host;
199 struct nlm_file *file;
200
201 dprintk("lockd: UNLOCK called\n");
202
203 resp->cookie = argp->cookie;
204
205 /* Don't accept new lock requests during grace period */
206 if (nlmsvc_grace_period) {
207 resp->status = nlm_lck_denied_grace_period;
208 return rpc_success;
209 }
210
211 /* Obtain client and file */
212 if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
NeilBrownd343fce2006-10-17 00:10:18 -0700213 return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /* Now try to remove the lock */
216 resp->status = nlmsvc_unlock(file, &argp->lock);
217
218 dprintk("lockd: UNLOCK status %d\n", ntohl(resp->status));
219 nlm_release_host(host);
220 nlm_release_file(file);
221 return rpc_success;
222}
223
224/*
225 * GRANTED: A server calls us to tell that a process' lock request
226 * was granted
227 */
Al Viro7111c662006-10-19 23:28:45 -0700228static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229nlm4svc_proc_granted(struct svc_rqst *rqstp, struct nlm_args *argp,
230 struct nlm_res *resp)
231{
232 resp->cookie = argp->cookie;
233
234 dprintk("lockd: GRANTED called\n");
Chuck Lever27459f02007-02-12 00:53:34 -0800235 resp->status = nlmclnt_grant(svc_addr_in(rqstp), &argp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 dprintk("lockd: GRANTED status %d\n", ntohl(resp->status));
237 return rpc_success;
238}
239
240/*
Trond Myklebustd4716622006-03-20 13:44:45 -0500241 * This is the generic lockd callback for async RPC calls
242 */
243static void nlm4svc_callback_exit(struct rpc_task *task, void *data)
244{
Chuck Leverc041b5f2006-12-05 16:36:03 -0500245 dprintk("lockd: %5u callback returned %d\n", task->tk_pid,
Trond Myklebustd4716622006-03-20 13:44:45 -0500246 -task->tk_status);
247}
248
249static void nlm4svc_callback_release(void *data)
250{
Trond Myklebusta86dc492008-06-11 13:37:09 -0400251 lock_kernel();
Trond Myklebustd4716622006-03-20 13:44:45 -0500252 nlm_release_call(data);
Trond Myklebusta86dc492008-06-11 13:37:09 -0400253 unlock_kernel();
Trond Myklebustd4716622006-03-20 13:44:45 -0500254}
255
256static const struct rpc_call_ops nlm4svc_callback_ops = {
257 .rpc_call_done = nlm4svc_callback_exit,
258 .rpc_release = nlm4svc_callback_release,
259};
260
261/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 * `Async' versions of the above service routines. They aren't really,
263 * because we send the callback before the reply proper. I hope this
264 * doesn't break any clients.
265 */
Al Viro7111c662006-10-19 23:28:45 -0700266static __be32 nlm4svc_callback(struct svc_rqst *rqstp, u32 proc, struct nlm_args *argp,
267 __be32 (*func)(struct svc_rqst *, struct nlm_args *, struct nlm_res *))
Trond Myklebustd4716622006-03-20 13:44:45 -0500268{
269 struct nlm_host *host;
270 struct nlm_rqst *call;
Al Viro7111c662006-10-19 23:28:45 -0700271 __be32 stat;
Trond Myklebustd4716622006-03-20 13:44:45 -0500272
Olaf Kirchdb4e4c92006-10-04 02:15:52 -0700273 host = nlmsvc_lookup_host(rqstp,
274 argp->lock.caller,
275 argp->lock.len);
Trond Myklebustd4716622006-03-20 13:44:45 -0500276 if (host == NULL)
277 return rpc_system_err;
278
279 call = nlm_alloc_call(host);
280 if (call == NULL)
281 return rpc_system_err;
282
283 stat = func(rqstp, argp, &call->a_res);
284 if (stat != 0) {
285 nlm_release_call(call);
286 return stat;
287 }
288
289 call->a_flags = RPC_TASK_ASYNC;
290 if (nlm_async_reply(call, proc, &nlm4svc_callback_ops) < 0)
291 return rpc_system_err;
292 return rpc_success;
293}
294
Al Viro7111c662006-10-19 23:28:45 -0700295static __be32 nlm4svc_proc_test_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 void *resp)
297{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 dprintk("lockd: TEST_MSG called\n");
Trond Myklebustd4716622006-03-20 13:44:45 -0500299 return nlm4svc_callback(rqstp, NLMPROC_TEST_RES, argp, nlm4svc_proc_test);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Al Viro7111c662006-10-19 23:28:45 -0700302static __be32 nlm4svc_proc_lock_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 void *resp)
304{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 dprintk("lockd: LOCK_MSG called\n");
Trond Myklebustd4716622006-03-20 13:44:45 -0500306 return nlm4svc_callback(rqstp, NLMPROC_LOCK_RES, argp, nlm4svc_proc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Al Viro7111c662006-10-19 23:28:45 -0700309static __be32 nlm4svc_proc_cancel_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 void *resp)
311{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 dprintk("lockd: CANCEL_MSG called\n");
Trond Myklebustd4716622006-03-20 13:44:45 -0500313 return nlm4svc_callback(rqstp, NLMPROC_CANCEL_RES, argp, nlm4svc_proc_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Al Viro7111c662006-10-19 23:28:45 -0700316static __be32 nlm4svc_proc_unlock_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 void *resp)
318{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 dprintk("lockd: UNLOCK_MSG called\n");
Trond Myklebustd4716622006-03-20 13:44:45 -0500320 return nlm4svc_callback(rqstp, NLMPROC_UNLOCK_RES, argp, nlm4svc_proc_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Al Viro7111c662006-10-19 23:28:45 -0700323static __be32 nlm4svc_proc_granted_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 void *resp)
325{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 dprintk("lockd: GRANTED_MSG called\n");
Trond Myklebustd4716622006-03-20 13:44:45 -0500327 return nlm4svc_callback(rqstp, NLMPROC_GRANTED_RES, argp, nlm4svc_proc_granted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330/*
331 * SHARE: create a DOS share or alter existing share.
332 */
Al Viro7111c662006-10-19 23:28:45 -0700333static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334nlm4svc_proc_share(struct svc_rqst *rqstp, struct nlm_args *argp,
335 struct nlm_res *resp)
336{
337 struct nlm_host *host;
338 struct nlm_file *file;
339
340 dprintk("lockd: SHARE called\n");
341
342 resp->cookie = argp->cookie;
343
344 /* Don't accept new lock requests during grace period */
345 if (nlmsvc_grace_period && !argp->reclaim) {
346 resp->status = nlm_lck_denied_grace_period;
347 return rpc_success;
348 }
349
350 /* Obtain client and file */
351 if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
NeilBrownd343fce2006-10-17 00:10:18 -0700352 return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 /* Now try to create the share */
355 resp->status = nlmsvc_share_file(host, file, argp);
356
357 dprintk("lockd: SHARE status %d\n", ntohl(resp->status));
358 nlm_release_host(host);
359 nlm_release_file(file);
360 return rpc_success;
361}
362
363/*
364 * UNSHARE: Release a DOS share.
365 */
Al Viro7111c662006-10-19 23:28:45 -0700366static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367nlm4svc_proc_unshare(struct svc_rqst *rqstp, struct nlm_args *argp,
368 struct nlm_res *resp)
369{
370 struct nlm_host *host;
371 struct nlm_file *file;
372
373 dprintk("lockd: UNSHARE called\n");
374
375 resp->cookie = argp->cookie;
376
377 /* Don't accept requests during grace period */
378 if (nlmsvc_grace_period) {
379 resp->status = nlm_lck_denied_grace_period;
380 return rpc_success;
381 }
382
383 /* Obtain client and file */
384 if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
NeilBrownd343fce2006-10-17 00:10:18 -0700385 return resp->status == nlm_drop_reply ? rpc_drop_reply :rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /* Now try to lock the file */
388 resp->status = nlmsvc_unshare_file(host, file, argp);
389
390 dprintk("lockd: UNSHARE status %d\n", ntohl(resp->status));
391 nlm_release_host(host);
392 nlm_release_file(file);
393 return rpc_success;
394}
395
396/*
397 * NM_LOCK: Create an unmonitored lock
398 */
Al Viro7111c662006-10-19 23:28:45 -0700399static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400nlm4svc_proc_nm_lock(struct svc_rqst *rqstp, struct nlm_args *argp,
401 struct nlm_res *resp)
402{
403 dprintk("lockd: NM_LOCK called\n");
404
405 argp->monitor = 0; /* just clean the monitor flag */
406 return nlm4svc_proc_lock(rqstp, argp, resp);
407}
408
409/*
410 * FREE_ALL: Release all locks and shares held by client
411 */
Al Viro7111c662006-10-19 23:28:45 -0700412static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413nlm4svc_proc_free_all(struct svc_rqst *rqstp, struct nlm_args *argp,
414 void *resp)
415{
416 struct nlm_host *host;
417
418 /* Obtain client */
419 if (nlm4svc_retrieve_args(rqstp, argp, &host, NULL))
420 return rpc_success;
421
422 nlmsvc_free_host_resources(host);
423 nlm_release_host(host);
424 return rpc_success;
425}
426
427/*
428 * SM_NOTIFY: private callback from statd (not part of official NLM proto)
429 */
Al Viro7111c662006-10-19 23:28:45 -0700430static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431nlm4svc_proc_sm_notify(struct svc_rqst *rqstp, struct nlm_reboot *argp,
432 void *resp)
433{
Chuck Lever27459f02007-02-12 00:53:34 -0800434 struct sockaddr_in saddr;
435
436 memcpy(&saddr, svc_addr_in(rqstp), sizeof(saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 dprintk("lockd: SM_NOTIFY called\n");
439 if (saddr.sin_addr.s_addr != htonl(INADDR_LOOPBACK)
440 || ntohs(saddr.sin_port) >= 1024) {
Chuck Leverad06e4b2007-02-12 00:53:32 -0800441 char buf[RPC_MAX_ADDRBUFLEN];
442 printk(KERN_WARNING "lockd: rejected NSM callback from %s\n",
443 svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return rpc_system_err;
445 }
446
447 /* Obtain the host pointer for this NFS server and try to
448 * reclaim all locks we hold on this server.
449 */
Olaf Kirchcf712c22006-10-04 02:15:52 -0700450 memset(&saddr, 0, sizeof(saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 saddr.sin_addr.s_addr = argp->addr;
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700452 nlm_host_rebooted(&saddr, argp->mon, argp->len, argp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return rpc_success;
455}
456
457/*
458 * client sent a GRANTED_RES, let's remove the associated block
459 */
Al Viro7111c662006-10-19 23:28:45 -0700460static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461nlm4svc_proc_granted_res(struct svc_rqst *rqstp, struct nlm_res *argp,
462 void *resp)
463{
464 if (!nlmsvc_ops)
465 return rpc_success;
466
467 dprintk("lockd: GRANTED_RES called\n");
468
Olaf Kirch39be4502006-10-04 02:16:03 -0700469 nlmsvc_grant_reply(&argp->cookie, argp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return rpc_success;
471}
472
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * NLM Server procedures.
476 */
477
478#define nlm4svc_encode_norep nlm4svc_encode_void
479#define nlm4svc_decode_norep nlm4svc_decode_void
480#define nlm4svc_decode_testres nlm4svc_decode_void
481#define nlm4svc_decode_lockres nlm4svc_decode_void
482#define nlm4svc_decode_unlockres nlm4svc_decode_void
483#define nlm4svc_decode_cancelres nlm4svc_decode_void
484#define nlm4svc_decode_grantedres nlm4svc_decode_void
485
486#define nlm4svc_proc_none nlm4svc_proc_null
487#define nlm4svc_proc_test_res nlm4svc_proc_null
488#define nlm4svc_proc_lock_res nlm4svc_proc_null
489#define nlm4svc_proc_cancel_res nlm4svc_proc_null
490#define nlm4svc_proc_unlock_res nlm4svc_proc_null
491
492struct nlm_void { int dummy; };
493
494#define PROC(name, xargt, xrest, argt, rest, respsize) \
495 { .pc_func = (svc_procfunc) nlm4svc_proc_##name, \
496 .pc_decode = (kxdrproc_t) nlm4svc_decode_##xargt, \
497 .pc_encode = (kxdrproc_t) nlm4svc_encode_##xrest, \
498 .pc_release = NULL, \
499 .pc_argsize = sizeof(struct nlm_##argt), \
500 .pc_ressize = sizeof(struct nlm_##rest), \
501 .pc_xdrressize = respsize, \
502 }
503#define Ck (1+XDR_QUADLEN(NLM_MAXCOOKIELEN)) /* cookie */
504#define No (1+1024/4) /* netobj */
505#define St 1 /* status */
506#define Rg 4 /* range (offset + length) */
507struct svc_procedure nlmsvc_procedures4[] = {
508 PROC(null, void, void, void, void, 1),
509 PROC(test, testargs, testres, args, res, Ck+St+2+No+Rg),
510 PROC(lock, lockargs, res, args, res, Ck+St),
511 PROC(cancel, cancargs, res, args, res, Ck+St),
512 PROC(unlock, unlockargs, res, args, res, Ck+St),
513 PROC(granted, testargs, res, args, res, Ck+St),
514 PROC(test_msg, testargs, norep, args, void, 1),
515 PROC(lock_msg, lockargs, norep, args, void, 1),
516 PROC(cancel_msg, cancargs, norep, args, void, 1),
517 PROC(unlock_msg, unlockargs, norep, args, void, 1),
518 PROC(granted_msg, testargs, norep, args, void, 1),
519 PROC(test_res, testres, norep, res, void, 1),
520 PROC(lock_res, lockres, norep, res, void, 1),
521 PROC(cancel_res, cancelres, norep, res, void, 1),
522 PROC(unlock_res, unlockres, norep, res, void, 1),
523 PROC(granted_res, res, norep, res, void, 1),
524 /* statd callback */
525 PROC(sm_notify, reboot, void, reboot, void, 1),
526 PROC(none, void, void, void, void, 0),
527 PROC(none, void, void, void, void, 0),
528 PROC(none, void, void, void, void, 0),
529 PROC(share, shareargs, shareres, args, res, Ck+St+1),
530 PROC(unshare, shareargs, shareres, args, res, Ck+St+1),
531 PROC(nm_lock, lockargs, res, args, res, Ck+St),
532 PROC(free_all, notify, void, args, void, 1),
533
534};