mount: pass NULL, not "", as "data" to mount syscall if we have no opts
authorAlexander Shishkin <virtuoso@slind.org>
Thu, 28 Oct 2010 04:10:03 +0000 (06:10 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Thu, 28 Oct 2010 04:10:03 +0000 (06:10 +0200)
When mounting a filesystem without any additional options (data parameter
to the mount(2) syscall), pass NULL instead of an empty string like GNU
mount does. This fixes, for example mounting cgroup fs with bbox mount.

Signed-off-by: Alexander Shishkin <virtuoso@slind.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
util-linux/mount.c

index 3ac8ce093ec7894f08d2843baa3c6c34dbeb1fdb..0f213bb30e6e952bf200d0c284ca997bfb96582e 100644 (file)
@@ -332,7 +332,7 @@ static void append_mount_options(char **oldopts, const char *newopts)
 }
 
 // Use the mount_options list to parse options into flags.
-// Also return list of unrecognized options if unrecognized != NULL
+// Also update list of unrecognized options if unrecognized != NULL
 static long parse_mount_options(char *options, char **unrecognized)
 {
        long flags = MS_SILENT;
@@ -348,25 +348,35 @@ static long parse_mount_options(char *options, char **unrecognized)
 // FIXME: use hasmntopt()
                // Find this option in mount_options
                for (i = 0; i < ARRAY_SIZE(mount_options); i++) {
-                       if (!strcasecmp(option_str, options)) {
+                       if (strcasecmp(option_str, options) == 0) {
                                long fl = mount_options[i];
-                               if (fl < 0) flags &= fl;
-                               else flags |= fl;
-                               break;
+                               if (fl < 0)
+                                       flags &= fl;
+                               else
+                                       flags |= fl;
+                               goto found;
                        }
                        option_str += strlen(option_str) + 1;
                }
-               // If unrecognized not NULL, append unrecognized mount options
-               if (unrecognized && i == ARRAY_SIZE(mount_options)) {
+               // We did not recognize this option.
+               // If "unrecognized" is not NULL, append option there.
+               // Note that we should not append *empty* option -
+               // in this case we want to pass NULL, not "", to "data"
+               // parameter of mount(2) syscall.
+               // This is crucial for filesystems that don't accept
+               // any arbitrary mount options, like cgroup fs:
+               // "mount -t cgroup none /mnt"
+               if (options[0] && unrecognized) {
                        // Add it to strflags, to pass on to kernel
-                       i = *unrecognized ? strlen(*unrecognized) : 0;
-                       *unrecognized = xrealloc(*unrecognized, i + strlen(options) + 2);
+                       char *p = *unrecognized;
+                       unsigned len = p ? strlen(p) : 0;
+                       *unrecognized = p = xrealloc(p, len + strlen(options) + 2);
 
                        // Comma separated if it's not the first one
-                       if (i) (*unrecognized)[i++] = ',';
-                       strcpy((*unrecognized)+i, options);
+                       if (len) p[len++] = ',';
+                       strcpy(p + len, options);
                }
-
+ found:
                if (!comma)
                        break;
                // Advance to next option