summaryrefslogtreecommitdiffstats
path: root/initd/mkdev.c
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-11-14 13:41:13 +0100
committerJohn Crispin <blogic@openwrt.org>2013-11-15 17:05:20 +0100
commit916f95cb58604038695347ee41a430d8ca1f0556 (patch)
tree5dbb52a6adaf28c6c6989ea37e6975aa52075160 /initd/mkdev.c
parentf9d31edb8938341b9217ee4c14eb58111414eb97 (diff)
downloadunitd-916f95cb58604038695347ee41a430d8ca1f0556.tar
unitd-916f95cb58604038695347ee41a430d8ca1f0556.zip
debloat and reorganize code
split app into procd and init binaries remove log support, this is an external service now Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'initd/mkdev.c')
-rw-r--r--initd/mkdev.c129
1 files changed, 129 insertions, 0 deletions
diff --git a/initd/mkdev.c b/initd/mkdev.c
new file mode 100644
index 0000000..3471461
--- /dev/null
+++ b/initd/mkdev.c
@@ -0,0 +1,129 @@
+/*
+ * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
+ * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 2.1
+ * as published by the Free Software Foundation
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#define _BSD_SOURCE
+
+#include <sys/stat.h>
+#include <sys/types.h>
+
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <stdbool.h>
+#include <dirent.h>
+#include <limits.h>
+#include <fnmatch.h>
+
+#include "init.h"
+
+#include "../log.h"
+
+static char **patterns;
+static int n_patterns;
+static char buf[PATH_MAX];
+static char buf2[PATH_MAX];
+static unsigned int mode = 0600;
+
+static bool find_pattern(const char *name)
+{
+ int i;
+
+ for (i = 0; i < n_patterns; i++)
+ if (!fnmatch(patterns[i], name, 0))
+ return true;
+
+ return false;
+}
+
+static void make_dev(const char *path, bool block, int major, int minor)
+{
+ unsigned int oldumask = umask(0);
+ unsigned int _mode = mode | (block ? S_IFBLK : S_IFCHR);
+
+ DEBUG(4, "Creating %s device %s(%d,%d)\n",
+ block ? "block" : "character",
+ path, major, minor);
+
+ mknod(path, _mode, makedev(major, minor));
+ umask(oldumask);
+}
+
+static void find_devs(bool block)
+{
+ char *path = block ? "/sys/dev/block" : "/sys/dev/char";
+ struct dirent *dp;
+ DIR *dir;
+
+ dir = opendir(path);
+ if (!dir)
+ return;
+
+ path = buf2 + sprintf(buf2, "%s/", path);
+ while ((dp = readdir(dir)) != NULL) {
+ char *c;
+ int major = 0, minor = 0;
+ int len;
+
+ if (dp->d_type != DT_LNK)
+ continue;
+
+ if (sscanf(dp->d_name, "%d:%d", &major, &minor) != 2)
+ continue;
+
+ strcpy(path, dp->d_name);
+ len = readlink(buf2, buf, sizeof(buf));
+ if (len <= 0)
+ continue;
+
+ buf[len] = 0;
+ if (!find_pattern(buf))
+ continue;
+
+ c = strrchr(buf, '/');
+ if (!c)
+ continue;
+
+ c++;
+ make_dev(c, block, major, minor);
+ }
+ closedir(dir);
+}
+
+static char *add_pattern(const char *name)
+{
+ char *str = malloc(strlen(name) + 2);
+
+ str[0] = '*';
+ strcpy(str + 1, name);
+ return str;
+}
+
+int mkdev(const char *name, int _mode)
+{
+ char *pattern;
+
+ if (chdir("/dev"))
+ return 1;
+
+ pattern = add_pattern(name);
+ patterns = &pattern;
+ mode = _mode;
+ n_patterns = 1;
+ find_devs(true);
+ find_devs(false);
+ chdir("/");
+
+ return 0;
+}