Header cleanup on two more networking files (move libbb.h to the top and
[oweals/busybox.git] / util-linux / mdev.c
1 /* vi:set ts=4:
2  *
3  * mdev - Mini udev for busybox
4  *
5  * Copyright 2005 Rob Landley <rob@landley.net>
6  * Copyright 2005 Frank Sorenson <frank@tuxrocks.com>
7  *
8  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
9  */
10
11 #include <ctype.h>
12 #include <dirent.h>
13 #include <errno.h>
14 #include <fcntl.h>
15 #include <stdio.h>
16 #include <string.h>
17 #include <sys/mman.h>
18 #include <sys/stat.h>
19 #include <sys/sysmacros.h>
20 #include <sys/types.h>
21 #include <unistd.h>
22 #include <stdlib.h>
23 #include "busybox.h"
24 #include "xregex.h"
25
26 #define DEV_PATH        "/dev"
27 #define MDEV_CONF       "/etc/mdev.conf"
28
29 #include <busybox.h>
30
31 struct mdev_globals
32 {
33         int root_major, root_minor;
34 } mdev_globals;
35
36 #define bbg mdev_globals
37
38 /* mknod in /dev based on a path like "/sys/block/hda/hda1" */
39 static void make_device(char *path)
40 {
41         char *device_name, *s;
42         int major, minor, type, len, fd;
43         int mode = 0660;
44         uid_t uid = 0;
45         gid_t gid = 0;
46         char *temp = path + strlen(path);
47
48         /* Try to read major/minor string.  Note that the kernel puts \n after
49          * the data, so we don't need to worry about null terminating the string
50          * because sscanf() will stop at the first nondigit, which \n is.  We
51          * also depend on path having writeable space after it. */
52
53         strcat(path, "/dev");
54         fd = open(path, O_RDONLY);
55         len = read(fd, temp + 1, 64);
56         *temp++ = 0;
57         close(fd);
58         if (len < 1) return;
59
60         /* Determine device name, type, major and minor */
61
62         device_name = strrchr(path, '/') + 1;
63         type = path[5]=='c' ? S_IFCHR : S_IFBLK;
64         if (sscanf(temp, "%d:%d", &major, &minor) != 2) return;
65
66         /* If we have a config file, look up permissions for this device */
67
68         if (ENABLE_FEATURE_MDEV_CONF) {
69                 char *conf, *pos, *end;
70
71                 /* mmap the config file */
72                 if (-1 != (fd=open(MDEV_CONF,O_RDONLY))) {
73                         len = lseek(fd, 0, SEEK_END);
74                         conf = mmap(NULL, len, PROT_READ, MAP_PRIVATE, fd, 0);
75                         if (conf) {
76                                 int line = 0;
77
78                                 /* Loop through lines in mmaped file*/
79                                 for (pos=conf; pos-conf<len;) {
80                                         int field;
81                                         char *end2;
82
83                                         line++;
84                                         /* find end of this line */
85                                         for(end=pos; end-conf<len && *end!='\n'; end++)
86                                                 ;
87
88                                         /* Three fields: regex, uid:gid, mode */
89                                         for (field=3; field; field--) {
90                                                 /* Skip whitespace */
91                                                 while (pos<end && isspace(*pos))
92                                                         pos++;
93                                                 if (pos==end || *pos=='#')
94                                                         break;
95                                                 for (end2=pos; end2<end && !isspace(*end2) && *end2!='#'; end2++)
96                                                         ;
97
98                                                 switch (field) {
99                                                         /* Regex to match this device */
100                                                         case 3:
101                                                         {
102                                                                 char *regex = strndupa(pos,end2-pos);
103                                                                 regex_t match;
104                                                                 regmatch_t off;
105                                                                 int result;
106
107                                                                 /* Is this it? */
108                                                                 xregcomp(&match,regex,REG_EXTENDED);
109                                                                 result = regexec(&match,device_name,1,&off,0);
110                                                                 regfree(&match);
111
112                                                                 /* If not this device, skip rest of line */
113                                                                 if (result || off.rm_so || off.rm_eo!=strlen(device_name))
114                                                                         goto end_line;
115
116                                                                 break;
117                                                         }
118                                                         /* uid:gid */
119                                                         case 2:
120                                                         {
121                                                                 char *s2;
122
123                                                                 /* Find : */
124                                                                 for(s=pos; s<end2 && *s!=':'; s++)
125                                                                         ;
126                                                                 if (s == end2)
127                                                                         goto end_line;
128
129                                                                 /* Parse UID */
130                                                                 uid = strtoul(pos,&s2,10);
131                                                                 if (s != s2) {
132                                                                         struct passwd *pass;
133                                                                         pass = getpwnam(strndupa(pos,s-pos));
134                                                                         if (!pass)
135                                                                                 goto end_line;
136                                                                         uid = pass->pw_uid;
137                                                                 }
138                                                                 s++;
139                                                                 /* parse GID */
140                                                                 gid = strtoul(s,&s2,10);
141                                                                 if (end2 != s2) {
142                                                                         struct group *grp;
143                                                                         grp = getgrnam(strndupa(s,end2-s));
144                                                                         if (!grp)
145                                                                                 goto end_line;
146                                                                         gid = grp->gr_gid;
147                                                                 }
148                                                                 break;
149                                                         }
150                                                         /* mode */
151                                                         case 1:
152                                                         {
153                                                                 mode = strtoul(pos,&pos,8);
154                                                                 if (pos != end2)
155                                                                         goto end_line;
156                                                                 else
157                                                                         goto found_device;
158                                                         }
159                                                 }
160                                                 pos = end2;
161                                         }
162 end_line:
163                                         /* Did everything parse happily? */
164                                         if (field && field!=3)
165                                                 bb_error_msg_and_die("Bad line %d",line);
166
167                                         /* Next line */
168                                         pos = ++end;
169                                 }
170 found_device:
171                                 munmap(conf, len);
172                         }
173                         close(fd);
174                 }
175         }
176
177         umask(0);
178         if (mknod(device_name, mode | type, makedev(major, minor)) && errno != EEXIST)
179                 bb_perror_msg_and_die("mknod %s failed", device_name);
180
181         if (major==bbg.root_major && minor==bbg.root_minor)
182                 symlink(device_name, "root");
183         
184         if (ENABLE_FEATURE_MDEV_CONF) chown(device_name, uid, gid);
185 }
186
187 /* Recursive search of /sys/block or /sys/class.  path must be a writeable
188  * buffer of size PATH_MAX containing the directory string to start at. */
189
190 static void find_dev(char *path)
191 {
192         DIR *dir;
193         size_t len = strlen(path);
194         struct dirent *entry;
195
196         if ((dir = opendir(path)) == NULL)
197                 return;
198
199         while ((entry = readdir(dir)) != NULL) {
200
201                 /* Skip "." and ".." (also skips hidden files, which is ok) */
202
203                 if (entry->d_name[0] == '.')
204                         continue;
205
206                 if (entry->d_type == DT_DIR) {
207                         snprintf(path+len, PATH_MAX-len, "/%s", entry->d_name);
208                         find_dev(path);
209                         path[len] = 0;
210                 }
211
212                 /* If there's a dev entry, mknod it */
213
214                 if (!strcmp(entry->d_name, "dev")) make_device(path);
215         }
216
217         closedir(dir);
218 }
219
220 int mdev_main(int argc, char *argv[])
221 {
222         char *action;
223         char *env_path;
224         RESERVE_CONFIG_BUFFER(temp,PATH_MAX);
225
226         bb_xchdir(DEV_PATH);
227
228         /* Scan */
229
230         if (argc == 2 && !strcmp(argv[1],"-s")) {
231                 struct stat st;
232
233                 stat("/", &st);  // If this fails, we have bigger problems.
234                 bbg.root_major=major(st.st_dev);
235                 bbg.root_minor=minor(st.st_dev);
236                 strcpy(temp,"/sys/block");
237                 find_dev(temp);
238                 strcpy(temp,"/sys/class");
239                 find_dev(temp);
240
241         /* Hotplug */
242
243         } else {
244                 action = getenv("ACTION");
245                 env_path = getenv("DEVPATH");
246             if (!action || !env_path)
247                         bb_show_usage();
248
249                 if (!strcmp(action, "add")) {
250                         sprintf(temp, "/sys%s", env_path);
251                         make_device(temp);
252                 } else if (!strcmp(action, "remove")) {
253                         unlink(strrchr(env_path, '/') + 1);
254                 }
255         }
256
257         if (ENABLE_FEATURE_CLEAN_UP) RELEASE_CONFIG_BUFFER(temp);
258         return 0;
259 }