c752d944fe9e93e2cf1759b49e6c671a1caaa7b7
[linux-flexiantxendom0-3.2.10.git] / fs / nfs / proc.c
1 /*
2  *  linux/fs/nfs/proc.c
3  *
4  *  Copyright (C) 1992, 1993, 1994  Rick Sladkey
5  *
6  *  OS-independent nfs remote procedure call functions
7  *
8  *  Tuned by Alan Cox <A.Cox@swansea.ac.uk> for >3K buffers
9  *  so at last we can have decent(ish) throughput off a 
10  *  Sun server.
11  *
12  *  Coding optimized and cleaned up by Florian La Roche.
13  *  Note: Error returns are optimized for NFS_OK, which isn't translated via
14  *  nfs_stat_to_errno(), but happens to be already the right return code.
15  *
16  *  Also, the code currently doesn't check the size of the packet, when
17  *  it decodes the packet.
18  *
19  *  Feel free to fix it and mail me the diffs if it worries you.
20  *
21  *  Completely rewritten to support the new RPC call interface;
22  *  rewrote and moved the entire XDR stuff to xdr.c
23  *  --Olaf Kirch June 1996
24  *
25  *  The code below initializes all auto variables explicitly, otherwise
26  *  it will fail to work as a module (gcc generates a memset call for an
27  *  incomplete struct).
28  */
29
30 #include <linux/types.h>
31 #include <linux/param.h>
32 #include <linux/slab.h>
33 #include <linux/time.h>
34 #include <linux/mm.h>
35 #include <linux/errno.h>
36 #include <linux/string.h>
37 #include <linux/in.h>
38 #include <linux/pagemap.h>
39 #include <linux/sunrpc/clnt.h>
40 #include <linux/nfs.h>
41 #include <linux/nfs2.h>
42 #include <linux/nfs_fs.h>
43 #include <linux/nfs_page.h>
44 #include <linux/lockd/bind.h>
45 #include "internal.h"
46
47 #define NFSDBG_FACILITY         NFSDBG_PROC
48
49 /*
50  * wrapper to handle the -EKEYEXPIRED error message. This should generally
51  * only happen if using krb5 auth and a user's TGT expires. NFSv2 doesn't
52  * support the NFSERR_JUKEBOX error code, but we handle this situation in the
53  * same way that we handle that error with NFSv3.
54  */
55 static int
56 nfs_rpc_wrapper(struct rpc_clnt *clnt, struct rpc_message *msg, int flags)
57 {
58         int res;
59         do {
60                 res = rpc_call_sync(clnt, msg, flags);
61                 if (res != -EKEYEXPIRED)
62                         break;
63                 schedule_timeout_killable(NFS_JUKEBOX_RETRY_TIME);
64                 res = -ERESTARTSYS;
65         } while (!fatal_signal_pending(current));
66         return res;
67 }
68
69 #define rpc_call_sync(clnt, msg, flags) nfs_rpc_wrapper(clnt, msg, flags)
70
71 static int
72 nfs_async_handle_expired_key(struct rpc_task *task)
73 {
74         if (task->tk_status != -EKEYEXPIRED)
75                 return 0;
76         task->tk_status = 0;
77         rpc_restart_call(task);
78         rpc_delay(task, NFS_JUKEBOX_RETRY_TIME);
79         return 1;
80 }
81
82 /*
83  * Bare-bones access to getattr: this is for nfs_read_super.
84  */
85 static int
86 nfs_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
87                   struct nfs_fsinfo *info)
88 {
89         struct nfs_fattr *fattr = info->fattr;
90         struct nfs2_fsstat fsinfo;
91         struct rpc_message msg = {
92                 .rpc_proc       = &nfs_procedures[NFSPROC_GETATTR],
93                 .rpc_argp       = fhandle,
94                 .rpc_resp       = fattr,
95         };
96         int status;
97
98         dprintk("%s: call getattr\n", __func__);
99         nfs_fattr_init(fattr);
100         status = rpc_call_sync(server->client, &msg, 0);
101         /* Retry with default authentication if different */
102         if (status && server->nfs_client->cl_rpcclient != server->client)
103                 status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0);
104         dprintk("%s: reply getattr: %d\n", __func__, status);
105         if (status)
106                 return status;
107         dprintk("%s: call statfs\n", __func__);
108         msg.rpc_proc = &nfs_procedures[NFSPROC_STATFS];
109         msg.rpc_resp = &fsinfo;
110         status = rpc_call_sync(server->client, &msg, 0);
111         /* Retry with default authentication if different */
112         if (status && server->nfs_client->cl_rpcclient != server->client)
113                 status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0);
114         dprintk("%s: reply statfs: %d\n", __func__, status);
115         if (status)
116                 return status;
117         info->rtmax  = NFS_MAXDATA;
118         info->rtpref = fsinfo.tsize;
119         info->rtmult = fsinfo.bsize;
120         info->wtmax  = NFS_MAXDATA;
121         info->wtpref = fsinfo.tsize;
122         info->wtmult = fsinfo.bsize;
123         info->dtpref = fsinfo.tsize;
124         info->maxfilesize = 0x7FFFFFFF;
125         info->lease_time = 0;
126         return 0;
127 }
128
129 /*
130  * One function for each procedure in the NFS protocol.
131  */
132 static int
133 nfs_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
134                 struct nfs_fattr *fattr)
135 {
136         struct rpc_message msg = {
137                 .rpc_proc       = &nfs_procedures[NFSPROC_GETATTR],
138                 .rpc_argp       = fhandle,
139                 .rpc_resp       = fattr,
140         };
141         int     status;
142
143         dprintk("NFS call  getattr\n");
144         nfs_fattr_init(fattr);
145         status = rpc_call_sync(server->client, &msg, 0);
146         dprintk("NFS reply getattr: %d\n", status);
147         return status;
148 }
149
150 static int
151 nfs_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
152                  struct iattr *sattr)
153 {
154         struct inode *inode = dentry->d_inode;
155         struct nfs_sattrargs    arg = { 
156                 .fh     = NFS_FH(inode),
157                 .sattr  = sattr
158         };
159         struct rpc_message msg = {
160                 .rpc_proc       = &nfs_procedures[NFSPROC_SETATTR],
161                 .rpc_argp       = &arg,
162                 .rpc_resp       = fattr,
163         };
164         int     status;
165
166         /* Mask out the non-modebit related stuff from attr->ia_mode */
167         sattr->ia_mode &= S_IALLUGO;
168
169         dprintk("NFS call  setattr\n");
170         if (sattr->ia_valid & ATTR_FILE)
171                 msg.rpc_cred = nfs_file_cred(sattr->ia_file);
172         nfs_fattr_init(fattr);
173         status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
174         if (status == 0)
175                 nfs_setattr_update_inode(inode, sattr);
176         dprintk("NFS reply setattr: %d\n", status);
177         return status;
178 }
179
180 static int
181 nfs_proc_lookup(struct inode *dir, struct qstr *name,
182                 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
183 {
184         struct nfs_diropargs    arg = {
185                 .fh             = NFS_FH(dir),
186                 .name           = name->name,
187                 .len            = name->len
188         };
189         struct nfs_diropok      res = {
190                 .fh             = fhandle,
191                 .fattr          = fattr
192         };
193         struct rpc_message msg = {
194                 .rpc_proc       = &nfs_procedures[NFSPROC_LOOKUP],
195                 .rpc_argp       = &arg,
196                 .rpc_resp       = &res,
197         };
198         int                     status;
199
200         dprintk("NFS call  lookup %s\n", name->name);
201         nfs_fattr_init(fattr);
202         status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
203         dprintk("NFS reply lookup: %d\n", status);
204         return status;
205 }
206
207 static int nfs_proc_readlink(struct inode *inode, struct page *page,
208                 unsigned int pgbase, unsigned int pglen)
209 {
210         struct nfs_readlinkargs args = {
211                 .fh             = NFS_FH(inode),
212                 .pgbase         = pgbase,
213                 .pglen          = pglen,
214                 .pages          = &page
215         };
216         struct rpc_message msg = {
217                 .rpc_proc       = &nfs_procedures[NFSPROC_READLINK],
218                 .rpc_argp       = &args,
219         };
220         int                     status;
221
222         dprintk("NFS call  readlink\n");
223         status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
224         dprintk("NFS reply readlink: %d\n", status);
225         return status;
226 }
227
228 static int
229 nfs_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
230                 int flags, struct nameidata *nd)
231 {
232         struct nfs_fh           fhandle;
233         struct nfs_fattr        fattr;
234         struct nfs_createargs   arg = {
235                 .fh             = NFS_FH(dir),
236                 .name           = dentry->d_name.name,
237                 .len            = dentry->d_name.len,
238                 .sattr          = sattr
239         };
240         struct nfs_diropok      res = {
241                 .fh             = &fhandle,
242                 .fattr          = &fattr
243         };
244         struct rpc_message msg = {
245                 .rpc_proc       = &nfs_procedures[NFSPROC_CREATE],
246                 .rpc_argp       = &arg,
247                 .rpc_resp       = &res,
248         };
249         int                     status;
250
251         nfs_fattr_init(&fattr);
252         dprintk("NFS call  create %s\n", dentry->d_name.name);
253         status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
254         nfs_mark_for_revalidate(dir);
255         if (status == 0)
256                 status = nfs_instantiate(dentry, &fhandle, &fattr);
257         dprintk("NFS reply create: %d\n", status);
258         return status;
259 }
260
261 /*
262  * In NFSv2, mknod is grafted onto the create call.
263  */
264 static int
265 nfs_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
266                dev_t rdev)
267 {
268         struct nfs_fh fhandle;
269         struct nfs_fattr fattr;
270         struct nfs_createargs   arg = {
271                 .fh             = NFS_FH(dir),
272                 .name           = dentry->d_name.name,
273                 .len            = dentry->d_name.len,
274                 .sattr          = sattr
275         };
276         struct nfs_diropok      res = {
277                 .fh             = &fhandle,
278                 .fattr          = &fattr
279         };
280         struct rpc_message msg = {
281                 .rpc_proc       = &nfs_procedures[NFSPROC_CREATE],
282                 .rpc_argp       = &arg,
283                 .rpc_resp       = &res,
284         };
285         int status, mode;
286
287         dprintk("NFS call  mknod %s\n", dentry->d_name.name);
288
289         mode = sattr->ia_mode;
290         if (S_ISFIFO(mode)) {
291                 sattr->ia_mode = (mode & ~S_IFMT) | S_IFCHR;
292                 sattr->ia_valid &= ~ATTR_SIZE;
293         } else if (S_ISCHR(mode) || S_ISBLK(mode)) {
294                 sattr->ia_valid |= ATTR_SIZE;
295                 sattr->ia_size = new_encode_dev(rdev);/* get out your barf bag */
296         }
297
298         nfs_fattr_init(&fattr);
299         status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
300         nfs_mark_for_revalidate(dir);
301
302         if (status == -EINVAL && S_ISFIFO(mode)) {
303                 sattr->ia_mode = mode;
304                 nfs_fattr_init(&fattr);
305                 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
306         }
307         if (status == 0)
308                 status = nfs_instantiate(dentry, &fhandle, &fattr);
309         dprintk("NFS reply mknod: %d\n", status);
310         return status;
311 }
312   
313 static int
314 nfs_proc_remove(struct inode *dir, struct qstr *name)
315 {
316         struct nfs_removeargs arg = {
317                 .fh = NFS_FH(dir),
318                 .name.len = name->len,
319                 .name.name = name->name,
320         };
321         struct rpc_message msg = { 
322                 .rpc_proc = &nfs_procedures[NFSPROC_REMOVE],
323                 .rpc_argp = &arg,
324         };
325         int                     status;
326
327         dprintk("NFS call  remove %s\n", name->name);
328         status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
329         nfs_mark_for_revalidate(dir);
330
331         dprintk("NFS reply remove: %d\n", status);
332         return status;
333 }
334
335 static void
336 nfs_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
337 {
338         msg->rpc_proc = &nfs_procedures[NFSPROC_REMOVE];
339 }
340
341 static int nfs_proc_unlink_done(struct rpc_task *task, struct inode *dir)
342 {
343         if (nfs_async_handle_expired_key(task))
344                 return 0;
345         nfs_mark_for_revalidate(dir);
346         return 1;
347 }
348
349 static int
350 nfs_proc_rename(struct inode *old_dir, struct qstr *old_name,
351                 struct inode *new_dir, struct qstr *new_name)
352 {
353         struct nfs_renameargs   arg = {
354                 .fromfh         = NFS_FH(old_dir),
355                 .fromname       = old_name->name,
356                 .fromlen        = old_name->len,
357                 .tofh           = NFS_FH(new_dir),
358                 .toname         = new_name->name,
359                 .tolen          = new_name->len
360         };
361         struct rpc_message msg = {
362                 .rpc_proc       = &nfs_procedures[NFSPROC_RENAME],
363                 .rpc_argp       = &arg,
364         };
365         int                     status;
366
367         dprintk("NFS call  rename %s -> %s\n", old_name->name, new_name->name);
368         status = rpc_call_sync(NFS_CLIENT(old_dir), &msg, 0);
369         nfs_mark_for_revalidate(old_dir);
370         nfs_mark_for_revalidate(new_dir);
371         dprintk("NFS reply rename: %d\n", status);
372         return status;
373 }
374
375 static int
376 nfs_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
377 {
378         struct nfs_linkargs     arg = {
379                 .fromfh         = NFS_FH(inode),
380                 .tofh           = NFS_FH(dir),
381                 .toname         = name->name,
382                 .tolen          = name->len
383         };
384         struct rpc_message msg = {
385                 .rpc_proc       = &nfs_procedures[NFSPROC_LINK],
386                 .rpc_argp       = &arg,
387         };
388         int                     status;
389
390         dprintk("NFS call  link %s\n", name->name);
391         status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
392         nfs_mark_for_revalidate(inode);
393         nfs_mark_for_revalidate(dir);
394         dprintk("NFS reply link: %d\n", status);
395         return status;
396 }
397
398 static int
399 nfs_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page,
400                  unsigned int len, struct iattr *sattr)
401 {
402         struct nfs_fh fhandle;
403         struct nfs_fattr fattr;
404         struct nfs_symlinkargs  arg = {
405                 .fromfh         = NFS_FH(dir),
406                 .fromname       = dentry->d_name.name,
407                 .fromlen        = dentry->d_name.len,
408                 .pages          = &page,
409                 .pathlen        = len,
410                 .sattr          = sattr
411         };
412         struct rpc_message msg = {
413                 .rpc_proc       = &nfs_procedures[NFSPROC_SYMLINK],
414                 .rpc_argp       = &arg,
415         };
416         int                     status;
417
418         if (len > NFS2_MAXPATHLEN)
419                 return -ENAMETOOLONG;
420
421         dprintk("NFS call  symlink %s\n", dentry->d_name.name);
422
423         status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
424         nfs_mark_for_revalidate(dir);
425
426         /*
427          * V2 SYMLINK requests don't return any attributes.  Setting the
428          * filehandle size to zero indicates to nfs_instantiate that it
429          * should fill in the data with a LOOKUP call on the wire.
430          */
431         if (status == 0) {
432                 nfs_fattr_init(&fattr);
433                 fhandle.size = 0;
434                 status = nfs_instantiate(dentry, &fhandle, &fattr);
435         }
436
437         dprintk("NFS reply symlink: %d\n", status);
438         return status;
439 }
440
441 static int
442 nfs_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr)
443 {
444         struct nfs_fh fhandle;
445         struct nfs_fattr fattr;
446         struct nfs_createargs   arg = {
447                 .fh             = NFS_FH(dir),
448                 .name           = dentry->d_name.name,
449                 .len            = dentry->d_name.len,
450                 .sattr          = sattr
451         };
452         struct nfs_diropok      res = {
453                 .fh             = &fhandle,
454                 .fattr          = &fattr
455         };
456         struct rpc_message msg = {
457                 .rpc_proc       = &nfs_procedures[NFSPROC_MKDIR],
458                 .rpc_argp       = &arg,
459                 .rpc_resp       = &res,
460         };
461         int                     status;
462
463         dprintk("NFS call  mkdir %s\n", dentry->d_name.name);
464         nfs_fattr_init(&fattr);
465         status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
466         nfs_mark_for_revalidate(dir);
467         if (status == 0)
468                 status = nfs_instantiate(dentry, &fhandle, &fattr);
469         dprintk("NFS reply mkdir: %d\n", status);
470         return status;
471 }
472
473 static int
474 nfs_proc_rmdir(struct inode *dir, struct qstr *name)
475 {
476         struct nfs_diropargs    arg = {
477                 .fh             = NFS_FH(dir),
478                 .name           = name->name,
479                 .len            = name->len
480         };
481         struct rpc_message msg = {
482                 .rpc_proc       = &nfs_procedures[NFSPROC_RMDIR],
483                 .rpc_argp       = &arg,
484         };
485         int                     status;
486
487         dprintk("NFS call  rmdir %s\n", name->name);
488         status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
489         nfs_mark_for_revalidate(dir);
490         dprintk("NFS reply rmdir: %d\n", status);
491         return status;
492 }
493
494 /*
495  * The READDIR implementation is somewhat hackish - we pass a temporary
496  * buffer to the encode function, which installs it in the receive
497  * the receive iovec. The decode function just parses the reply to make
498  * sure it is syntactically correct; the entries itself are decoded
499  * from nfs_readdir by calling the decode_entry function directly.
500  */
501 static int
502 nfs_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
503                  u64 cookie, struct page *page, unsigned int count, int plus)
504 {
505         struct inode            *dir = dentry->d_inode;
506         struct nfs_readdirargs  arg = {
507                 .fh             = NFS_FH(dir),
508                 .cookie         = cookie,
509                 .count          = count,
510                 .pages          = &page,
511         };
512         struct rpc_message      msg = {
513                 .rpc_proc       = &nfs_procedures[NFSPROC_READDIR],
514                 .rpc_argp       = &arg,
515                 .rpc_cred       = cred,
516         };
517         int                     status;
518
519         dprintk("NFS call  readdir %d\n", (unsigned int)cookie);
520         status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
521
522         nfs_invalidate_atime(dir);
523
524         dprintk("NFS reply readdir: %d\n", status);
525         return status;
526 }
527
528 static int
529 nfs_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
530                         struct nfs_fsstat *stat)
531 {
532         struct nfs2_fsstat fsinfo;
533         struct rpc_message msg = {
534                 .rpc_proc       = &nfs_procedures[NFSPROC_STATFS],
535                 .rpc_argp       = fhandle,
536                 .rpc_resp       = &fsinfo,
537         };
538         int     status;
539
540         dprintk("NFS call  statfs\n");
541         nfs_fattr_init(stat->fattr);
542         status = rpc_call_sync(server->client, &msg, 0);
543         dprintk("NFS reply statfs: %d\n", status);
544         if (status)
545                 goto out;
546         stat->tbytes = (u64)fsinfo.blocks * fsinfo.bsize;
547         stat->fbytes = (u64)fsinfo.bfree  * fsinfo.bsize;
548         stat->abytes = (u64)fsinfo.bavail * fsinfo.bsize;
549         stat->tfiles = 0;
550         stat->ffiles = 0;
551         stat->afiles = 0;
552 out:
553         return status;
554 }
555
556 static int
557 nfs_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
558                         struct nfs_fsinfo *info)
559 {
560         struct nfs2_fsstat fsinfo;
561         struct rpc_message msg = {
562                 .rpc_proc       = &nfs_procedures[NFSPROC_STATFS],
563                 .rpc_argp       = fhandle,
564                 .rpc_resp       = &fsinfo,
565         };
566         int     status;
567
568         dprintk("NFS call  fsinfo\n");
569         nfs_fattr_init(info->fattr);
570         status = rpc_call_sync(server->client, &msg, 0);
571         dprintk("NFS reply fsinfo: %d\n", status);
572         if (status)
573                 goto out;
574         info->rtmax  = NFS_MAXDATA;
575         info->rtpref = fsinfo.tsize;
576         info->rtmult = fsinfo.bsize;
577         info->wtmax  = NFS_MAXDATA;
578         info->wtpref = fsinfo.tsize;
579         info->wtmult = fsinfo.bsize;
580         info->dtpref = fsinfo.tsize;
581         info->maxfilesize = 0x7FFFFFFF;
582         info->lease_time = 0;
583 out:
584         return status;
585 }
586
587 static int
588 nfs_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
589                   struct nfs_pathconf *info)
590 {
591         info->max_link = 0;
592         info->max_namelen = NFS2_MAXNAMLEN;
593         return 0;
594 }
595
596 static int nfs_read_done(struct rpc_task *task, struct nfs_read_data *data)
597 {
598         if (nfs_async_handle_expired_key(task))
599                 return -EAGAIN;
600
601         nfs_invalidate_atime(data->inode);
602         if (task->tk_status >= 0) {
603                 nfs_refresh_inode(data->inode, data->res.fattr);
604                 /* Emulate the eof flag, which isn't normally needed in NFSv2
605                  * as it is guaranteed to always return the file attributes
606                  */
607                 if (data->args.offset + data->args.count >= data->res.fattr->size)
608                         data->res.eof = 1;
609         }
610         return 0;
611 }
612
613 static void nfs_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
614 {
615         msg->rpc_proc = &nfs_procedures[NFSPROC_READ];
616 }
617
618 static int nfs_write_done(struct rpc_task *task, struct nfs_write_data *data)
619 {
620         if (nfs_async_handle_expired_key(task))
621                 return -EAGAIN;
622
623         if (task->tk_status >= 0)
624                 nfs_post_op_update_inode_force_wcc(data->inode, data->res.fattr);
625         return 0;
626 }
627
628 static void nfs_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
629 {
630         /* Note: NFSv2 ignores @stable and always uses NFS_FILE_SYNC */
631         data->args.stable = NFS_FILE_SYNC;
632         msg->rpc_proc = &nfs_procedures[NFSPROC_WRITE];
633 }
634
635 static void
636 nfs_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
637 {
638         BUG();
639 }
640
641 static int
642 nfs_proc_lock(struct file *filp, int cmd, struct file_lock *fl)
643 {
644         struct inode *inode = filp->f_path.dentry->d_inode;
645
646         return nlmclnt_proc(NFS_SERVER(inode)->nlm_host, cmd, fl);
647 }
648
649 /* Helper functions for NFS lock bounds checking */
650 #define NFS_LOCK32_OFFSET_MAX ((__s32)0x7fffffffUL)
651 static int nfs_lock_check_bounds(const struct file_lock *fl)
652 {
653         __s32 start, end;
654
655         start = (__s32)fl->fl_start;
656         if ((loff_t)start != fl->fl_start)
657                 goto out_einval;
658
659         if (fl->fl_end != OFFSET_MAX) {
660                 end = (__s32)fl->fl_end;
661                 if ((loff_t)end != fl->fl_end)
662                         goto out_einval;
663         } else
664                 end = NFS_LOCK32_OFFSET_MAX;
665
666         if (start < 0 || start > end)
667                 goto out_einval;
668         return 0;
669 out_einval:
670         return -EINVAL;
671 }
672
673 const struct nfs_rpc_ops nfs_v2_clientops = {
674         .version        = 2,                   /* protocol version */
675         .dentry_ops     = &nfs_dentry_operations,
676         .dir_inode_ops  = &nfs_dir_inode_operations,
677         .file_inode_ops = &nfs_file_inode_operations,
678         .getroot        = nfs_proc_get_root,
679         .getattr        = nfs_proc_getattr,
680         .setattr        = nfs_proc_setattr,
681         .lookup         = nfs_proc_lookup,
682         .access         = NULL,                /* access */
683         .readlink       = nfs_proc_readlink,
684         .create         = nfs_proc_create,
685         .remove         = nfs_proc_remove,
686         .unlink_setup   = nfs_proc_unlink_setup,
687         .unlink_done    = nfs_proc_unlink_done,
688         .rename         = nfs_proc_rename,
689         .link           = nfs_proc_link,
690         .symlink        = nfs_proc_symlink,
691         .mkdir          = nfs_proc_mkdir,
692         .rmdir          = nfs_proc_rmdir,
693         .readdir        = nfs_proc_readdir,
694         .mknod          = nfs_proc_mknod,
695         .statfs         = nfs_proc_statfs,
696         .fsinfo         = nfs_proc_fsinfo,
697         .pathconf       = nfs_proc_pathconf,
698         .decode_dirent  = nfs_decode_dirent,
699         .read_setup     = nfs_proc_read_setup,
700         .read_done      = nfs_read_done,
701         .write_setup    = nfs_proc_write_setup,
702         .write_done     = nfs_write_done,
703         .commit_setup   = nfs_proc_commit_setup,
704         .lock           = nfs_proc_lock,
705         .lock_check_bounds = nfs_lock_check_bounds,
706         .close_context  = nfs_close_context,
707 };