2 * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3 * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License version 2.1
7 * as published by the Free Software Foundation
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
18 #include <sys/types.h>
33 static char **patterns;
34 static int n_patterns;
35 static char buf[PATH_MAX];
36 static char buf2[PATH_MAX];
37 static unsigned int mode = 0600;
39 static bool find_pattern(const char *name)
43 for (i = 0; i < n_patterns; i++)
44 if (!fnmatch(patterns[i], name, 0))
50 static void make_dev(const char *path, bool block, int major, int minor)
52 unsigned int oldumask = umask(0);
53 unsigned int _mode = mode | (block ? S_IFBLK : S_IFCHR);
55 DEBUG(4, "Creating %s device %s(%d,%d)\n",
56 block ? "block" : "character",
59 mknod(path, _mode, makedev(major, minor));
63 static void find_devs(bool block)
65 char *path = block ? "/sys/dev/block" : "/sys/dev/char";
73 path = buf2 + sprintf(buf2, "%s/", path);
74 while ((dp = readdir(dir)) != NULL) {
76 int major = 0, minor = 0;
79 if (dp->d_type != DT_LNK)
82 if (sscanf(dp->d_name, "%d:%d", &major, &minor) != 2)
85 strcpy(path, dp->d_name);
86 len = readlink(buf2, buf, sizeof(buf));
91 if (!find_pattern(buf))
94 c = strrchr(buf, '/');
99 make_dev(c, block, major, minor);
104 static char *add_pattern(const char *name)
106 char *str = malloc(strlen(name) + 2);
109 strcpy(str + 1, name);
113 int mkdev(const char *name, int _mode)
120 pattern = add_pattern(name);