summaryrefslogtreecommitdiff
path: root/libblkid-tiny/mkdev.c
blob: e8ce841f3eb7629d17593a31e1cebdcdce7b6d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 * 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 _DEFAULT_SOURCE

#include <sys/stat.h>
#include <sys/types.h>
#include <sys/sysmacros.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 "libblkid-tiny.h"

#include <syslog.h>

static char buf[PATH_MAX + 1];
static char buf2[PATH_MAX];
static unsigned int mode = 0600;

static void make_dev(const char *path, bool block, int major, int minor)
{
	unsigned int _mode = mode | (block ? S_IFBLK : S_IFCHR);

	mknod(path, _mode, makedev(major, minor));
}

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 || len == sizeof(buf))
			continue;

		buf[len] = 0;

		c = strrchr(buf, '/');
		if (!c)
			continue;


		c++;
		make_dev(c, block, major, minor);
	}
	closedir(dir);
}

int mkblkdev(void)
{
	if (chdir("/dev"))
		return 1;

	mode = 0600;
	find_devs(true);

	return chdir("/");
}