[systemd-commits] fixme src/mount.c src/util.c src/util.h

Lennart Poettering lennart at kemper.freedesktop.org
Thu Aug 19 17:46:26 PDT 2010


 fixme       |    2 --
 src/mount.c |   18 +++++++++++++++---
 src/util.c  |   13 +++++++++++++
 src/util.h  |    2 ++
 4 files changed, 30 insertions(+), 5 deletions(-)

New commits:
commit 11ce3427242b8b4ddf638ed5703d69041d719b4c
Author: Lennart Poettering <lennart at poettering.net>
Date:   Fri Aug 20 02:46:15 2010 +0200

    mount: properly handle LABEL="" in fstab

diff --git a/fixme b/fixme
index b1474f5..b43a102 100644
--- a/fixme
+++ b/fixme
@@ -60,8 +60,6 @@
 
 * bash completion a la gdbus
 
-* fstab mit tüdelchen
-
 * api mounts gegen fstab mergen und remounten
 
 External:
diff --git a/src/mount.c b/src/mount.c
index e0ca5bb..ac33787 100644
--- a/src/mount.c
+++ b/src/mount.c
@@ -1175,7 +1175,7 @@ fail:
 }
 
 static char *fstab_node_to_udev_node(char *p) {
-        char *dn, *t;
+        char *dn, *t, *u;
         int r;
 
         /* FIXME: to follow udev's logic 100% we need to leave valid
@@ -1183,7 +1183,13 @@ static char *fstab_node_to_udev_node(char *p) {
 
         if (startswith(p, "LABEL=")) {
 
-                if (!(t = xescape(p+6, "/ ")))
+                if (!(u = unquote(p+6, '"')))
+                        return NULL;
+
+                t = xescape(u, "/ ");
+                free(u);
+
+                if (!t)
                         return NULL;
 
                 r = asprintf(&dn, "/dev/disk/by-label/%s", t);
@@ -1197,7 +1203,13 @@ static char *fstab_node_to_udev_node(char *p) {
 
         if (startswith(p, "UUID=")) {
 
-                if (!(t = xescape(p+5, "/ ")))
+                if (!(u = unquote(p+5, '"')))
+                        return NULL;
+
+                t = xescape(u, "/ ");
+                free(u);
+
+                if (!t)
                         return NULL;
 
                 r = asprintf(&dn, "/dev/disk/by-uuid/%s", ascii_strlower(t));
diff --git a/src/util.c b/src/util.c
index 7903ca0..f1a7bbd 100644
--- a/src/util.c
+++ b/src/util.c
@@ -3004,6 +3004,19 @@ int touch(const char *path) {
         return 0;
 }
 
+char *unquote(const char *s, const char quote) {
+        size_t l;
+        assert(s);
+
+        if ((l = strlen(s)) < 2)
+                return strdup(s);
+
+        if (s[0] == quote && s[l-1] == quote)
+                return strndup(s+1, l-2);
+
+        return strdup(s);
+}
+
 static const char *const ioprio_class_table[] = {
         [IOPRIO_CLASS_NONE] = "none",
         [IOPRIO_CLASS_RT] = "realtime",
diff --git a/src/util.h b/src/util.h
index 7490236..4063ee7 100644
--- a/src/util.h
+++ b/src/util.h
@@ -339,6 +339,8 @@ char *ellipsize(const char *s, unsigned length, unsigned percent);
 
 int touch(const char *path);
 
+char *unquote(const char *s, const char quote);
+
 #define NULSTR_FOREACH(i, l) \
         for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)
 


More information about the systemd-commits mailing list