summaryrefslogtreecommitdiffstats
path: root/utils/lib/match.c
diff options
context:
space:
mode:
authorManuel Bentele2020-09-08 15:07:31 +0200
committerManuel Bentele2020-09-16 07:37:56 +0200
commitefc492d327ea6a9658674eb9e971aff3742818cd (patch)
tree72a3e3e61ee3cbc7df4059ee24ae95487c265b60 /utils/lib/match.c
parentAdded file format file format subsystem for loop devices (diff)
downloadxloop-efc492d327ea6a9658674eb9e971aff3742818cd.tar.gz
xloop-efc492d327ea6a9658674eb9e971aff3742818cd.tar.xz
xloop-efc492d327ea6a9658674eb9e971aff3742818cd.zip
Added patched losetup utility to configure xloop devices
Diffstat (limited to 'utils/lib/match.c')
-rw-r--r--utils/lib/match.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/utils/lib/match.c b/utils/lib/match.c
new file mode 100644
index 0000000..a286a19
--- /dev/null
+++ b/utils/lib/match.c
@@ -0,0 +1,53 @@
+/*
+ * Copyright (C) 2011 Karel Zak <kzak@redhat.com>
+ *
+ * This file may be redistributed under the terms of the
+ * GNU Lesser General Public License.
+ */
+
+#include <string.h>
+
+#include "match.h"
+
+/*
+ * match_fstype:
+ * @type: filesystem type
+ * @pattern: filesystem name or comma delimited list of names
+ *
+ * The @pattern list of filesystem can be prefixed with a global
+ * "no" prefix to invert matching of the whole list. The "no" could
+ * also be used for individual items in the @pattern list. So,
+ * "nofoo,bar" has the same meaning as "nofoo,nobar".
+ */
+int match_fstype(const char *type, const char *pattern)
+{
+ int no = 0; /* negated types list */
+ int len;
+ const char *p;
+
+ if (!pattern && !type)
+ return 1;
+ if (!pattern)
+ return 0;
+
+ if (!strncmp(pattern, "no", 2)) {
+ no = 1;
+ pattern += 2;
+ }
+
+ /* Does type occur in types, separated by commas? */
+ len = strlen(type);
+ p = pattern;
+ while(1) {
+ if (!strncmp(p, "no", 2) && !strncasecmp(p+2, type, len) &&
+ (p[len+2] == 0 || p[len+2] == ','))
+ return 0;
+ if (strncasecmp(p, type, len) == 0 && (p[len] == 0 || p[len] == ','))
+ return !no;
+ p = strchr(p,',');
+ if (!p)
+ break;
+ p++;
+ }
+ return no;
+}