]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
mount.nfs: Enable mount.nfs to do text-based mount support
authorChuck Lever <chuck.lever@oracle.com>
Fri, 10 Aug 2007 22:20:01 +0000 (18:20 -0400)
committerNeil Brown <neilb@suse.de>
Fri, 10 Aug 2007 23:47:35 +0000 (09:47 +1000)
A new command line option, "-i", is added to mount.nfs to force the use of
the string interface for testing purposes.  "-s", "-t", and "-r" are
already taken or have legacy meaning so I picked "-i".

At some later point, when everyone is comfortable with the string mount
option parsing implementation, we will add a switch based on kernel
version, and remove the "-i" command line option.  For now, I am more
comfortable enabling it by hand instead.

Since this is a temporary arrangement, I'm leaving the option undocumented
in the mount.nfs man page.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Neil Brown <neilb@suse.de>
utils/mount/mount.c

index a6e16851c322a26a3ddcb30feaa1823280da6206..627019afa2b1974bd75c501261ade8d578e86522 100644 (file)
 #include "mount.h"
 #include "error.h"
 #include "network.h"
 #include "mount.h"
 #include "error.h"
 #include "network.h"
+#include "stropts.h"
 
 char *progname;
 int nfs_mount_data_version;
 int nomtab;
 int verbose;
 int sloppy;
 
 char *progname;
 int nfs_mount_data_version;
 int nomtab;
 int verbose;
 int sloppy;
+int string;
 
 #define FOREGROUND     (0)
 #define BACKGROUND     (1)
 
 #define FOREGROUND     (0)
 #define BACKGROUND     (1)
@@ -62,6 +64,7 @@ static struct option longopts[] = {
   { "version", 0, 0, 'V' },
   { "read-write", 0, 0, 'w' },
   { "rw", 0, 0, 'w' },
   { "version", 0, 0, 'V' },
   { "read-write", 0, 0, 'w' },
   { "rw", 0, 0, 'w' },
+  { "string", 0, 0, 'i' },
   { "options", 1, 0, 'o' },
   { NULL, 0, 0, 0 }
 };
   { "options", 1, 0, 'o' },
   { NULL, 0, 0, 0 }
 };
@@ -270,7 +273,7 @@ fail_unlock:
 
 void mount_usage(void)
 {
 
 void mount_usage(void)
 {
-       printf(_("usage: %s remotetarget dir [-rvVwfnsh] [-o nfsoptions]\n"),
+       printf(_("usage: %s remotetarget dir [-rvVwfnsih] [-o nfsoptions]\n"),
                progname);
        printf(_("options:\n"));
        printf(_("\t-r\t\tMount file system readonly\n"));
                progname);
        printf(_("options:\n"));
        printf(_("\t-r\t\tMount file system readonly\n"));
@@ -280,6 +283,7 @@ void mount_usage(void)
        printf(_("\t-f\t\tFake mount, do not actually mount\n"));
        printf(_("\t-n\t\tDo not update /etc/mtab\n"));
        printf(_("\t-s\t\tTolerate sloppy mount options rather than fail\n"));
        printf(_("\t-f\t\tFake mount, do not actually mount\n"));
        printf(_("\t-n\t\tDo not update /etc/mtab\n"));
        printf(_("\t-s\t\tTolerate sloppy mount options rather than fail\n"));
+       printf(_("\t-i\t\tPass mount options to the kernel via a string\n"));
        printf(_("\t-h\t\tPrint this help\n"));
        printf(_("\tnfsoptions\tRefer to mount.nfs(8) or nfs(5)\n\n"));
 }
        printf(_("\t-h\t\tPrint this help\n"));
        printf(_("\tnfsoptions\tRefer to mount.nfs(8) or nfs(5)\n\n"));
 }
@@ -370,12 +374,21 @@ static int try_mount(char *spec, char *mount_point, int flags,
 {
        int ret;
 
 {
        int ret;
 
-       if (strcmp(fs_type, "nfs4") == 0)
-               ret = nfs4mount(spec, mount_point, flags,
-                               extra_opts, fake, bg);
-       else
-               ret = nfsmount(spec, mount_point, flags,
-                               extra_opts, fake, bg);
+       if (string) {
+               if (strcmp(fs_type, "nfs4") == 0)
+                       ret = nfs4mount_s(spec, mount_point, flags,
+                                               extra_opts, fake, bg);
+               else
+                       ret = nfsmount_s(spec, mount_point, flags,
+                                               extra_opts, fake, bg);
+       } else {
+               if (strcmp(fs_type, "nfs4") == 0)
+                       ret = nfs4mount(spec, mount_point, flags,
+                                       extra_opts, fake, bg);
+               else
+                       ret = nfsmount(spec, mount_point, flags,
+                                       extra_opts, fake, bg);
+       }
 
        if (ret)
                return ret;
 
        if (ret)
                return ret;
@@ -420,7 +433,7 @@ int main(int argc, char *argv[])
        mount_point = argv[2];
 
        argv[2] = argv[0]; /* so that getopt error messages are correct */
        mount_point = argv[2];
 
        argv[2] = argv[0]; /* so that getopt error messages are correct */
-       while ((c = getopt_long(argc - 2, argv + 2, "rvVwfno:hs",
+       while ((c = getopt_long(argc - 2, argv + 2, "rvVwfno:hsi",
                                longopts, NULL)) != -1) {
                switch (c) {
                case 'r':
                                longopts, NULL)) != -1) {
                switch (c) {
                case 'r':
@@ -450,6 +463,15 @@ int main(int argc, char *argv[])
                case 's':
                        ++sloppy;
                        break;
                case 's':
                        ++sloppy;
                        break;
+               case 'i':
+                       if (linux_version_code() < MAKE_VERSION(2, 6, 23)) {
+                               nfs_error(_("%s: Passing mount options via a"
+                                       " string is unsupported by this"
+                                       " kernel\n"), progname);
+                               exit(EX_USAGE);
+                       }
+                       ++string;
+                       break;
                case 'h':
                default:
                        mount_usage();
                case 'h':
                default:
                        mount_usage();