]> err.no Git - util-linux/commitdiff
mount: finalize support of quoted LABELs/UUIDs
authorKarel Zak <kzak@redhat.com>
Tue, 6 Jan 2009 23:00:35 +0000 (00:00 +0100)
committerKarel Zak <kzak@redhat.com>
Tue, 6 Jan 2009 23:00:35 +0000 (00:00 +0100)
The [u]mount does not properly support LABEL="foo" or UUID="foo" in
/etc/fstab. This patch fix last places where we assume unquoted
LABELs/UUIDs only.

Signed-off-by: Karel Zak <kzak@redhat.com>
mount/fstab.c

index 306e7bec76852acc210fb2478b28eeea0629a8e9..8e7019a5dc639d905e84914a5406d9ba5cc2d86b 100644 (file)
@@ -288,6 +288,16 @@ getmntoptfile (const char *file) {
        return NULL;
 }
 
+/* compares "quoted" or 'quoted' with unquoted */
+static int
+streq_quoted(const char *quoted, const char *unquoted)
+{
+       if (*quoted == '"' || *quoted == '\'')
+               return !strncmp(quoted + 1, unquoted, strlen(quoted) - 2);
+
+       return streq(quoted, unquoted);
+}
+
 static int
 has_label(const char *device, const char *label) {
        const char *devlabel;
@@ -297,7 +307,7 @@ has_label(const char *device, const char *label) {
        if (!devlabel)
                return 0;
 
-       ret = !strcmp(label, devlabel);
+       ret = streq_quoted(label, devlabel);
        my_free(devlabel);
        return ret;
 }
@@ -311,7 +321,7 @@ has_uuid(const char *device, const char *uuid){
        if (!devuuid)
                return 0;
 
-       ret = !strcmp(uuid, devuuid);
+       ret = streq_quoted(uuid, devuuid);
        my_free(devuuid);
        return ret;
 }
@@ -456,7 +466,7 @@ getfs_by_uuid (const char *uuid) {
        mc0 = fstab_head();
        for (mc = mc0->nxt; mc && mc != mc0; mc = mc->nxt)
                if (strncmp (mc->m.mnt_fsname, "UUID=", 5) == 0
-                   && streq(mc->m.mnt_fsname + 5, uuid))
+                   && streq_quoted(mc->m.mnt_fsname + 5, uuid))
                        return mc;
        return NULL;
 }
@@ -469,7 +479,7 @@ getfs_by_label (const char *label) {
        mc0 = fstab_head();
        for (mc = mc0->nxt; mc && mc != mc0; mc = mc->nxt)
                if (strncmp (mc->m.mnt_fsname, "LABEL=", 6) == 0
-                   && streq(mc->m.mnt_fsname + 6, label))
+                   && streq_quoted(mc->m.mnt_fsname + 6, label))
                        return mc;
        return NULL;
 }