chiark / gitweb /
[PATCH] udev default config layout changes
[elogind.git] / udev_config.c
1 /*
2  * udev_config.c
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
7  *
8  *
9  *      This program is free software; you can redistribute it and/or modify it
10  *      under the terms of the GNU General Public License as published by the
11  *      Free Software Foundation version 2 of the License.
12  * 
13  *      This program is distributed in the hope that it will be useful, but
14  *      WITHOUT ANY WARRANTY; without even the implied warranty of
15  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  *      General Public License for more details.
17  * 
18  *      You should have received a copy of the GNU General Public License along
19  *      with this program; if not, write to the Free Software Foundation, Inc.,
20  *      675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  */
23
24 /* define this to enable parsing debugging */
25 /* #define DEBUG_PARSER */
26
27 #include <stdlib.h>
28 #include <string.h>
29 #include <stdio.h>
30 #include <fcntl.h>
31 #include <unistd.h>
32 #include <errno.h>
33 #include <ctype.h>
34
35 #include "libsysfs/sysfs/libsysfs.h"
36 #include "udev.h"
37 #include "udev_lib.h"
38 #include "udev_version.h"
39 #include "logging.h"
40 #include "namedev.h"
41
42 /* global variables */
43 char sysfs_path[SYSFS_PATH_MAX];
44 char udev_root[PATH_MAX];
45 char udev_db_filename[PATH_MAX+NAME_MAX];
46 char udev_permissions_filename[PATH_MAX+NAME_MAX];
47 char udev_rules_filename[PATH_MAX+NAME_MAX];
48 char udev_config_filename[PATH_MAX+NAME_MAX];
49 char default_mode_str[MODE_SIZE];
50 char default_owner_str[OWNER_SIZE];
51 char default_group_str[GROUP_SIZE];
52 int udev_log;
53 int udev_sleep;
54 int udev_dev_d;
55
56
57 static int string_is_true(char *str)
58 {
59         if (strcasecmp(str, "true") == 0)
60                 return 1;
61         if (strcasecmp(str, "yes") == 0)
62                 return 1;
63         return 0;
64 }
65
66 static void init_variables(void)
67 {
68         /* fill up the defaults.  
69          * If any config values are specified, they will
70          * override these values. */
71         strfieldcpy(udev_root, UDEV_ROOT);
72         strfieldcpy(udev_db_filename, UDEV_DB);
73         strfieldcpy(udev_config_filename, UDEV_CONFIG_FILE);
74         strfieldcpy(udev_rules_filename, UDEV_RULES_FILE);
75         strfieldcpy(udev_permissions_filename, UDEV_PERMISSION_FILE);
76         udev_log = string_is_true(UDEV_LOG_DEFAULT);
77
78         udev_sleep = 1;
79         if (getenv("UDEV_NO_SLEEP") != NULL)
80                 udev_sleep = 0;
81
82         udev_dev_d = 1;
83         if (getenv("UDEV_NO_DEVD") != NULL)
84                 udev_dev_d = 0;
85 }
86
87 int parse_get_pair(char **orig_string, char **left, char **right)
88 {
89         char *temp;
90         char *string = *orig_string;
91
92         if (!string)
93                 return -ENODEV;
94
95         /* eat any whitespace */
96         while (isspace(*string) || *string == ',')
97                 ++string;
98
99         /* split based on '=' */
100         temp = strsep(&string, "=");
101         *left = temp;
102         if (!string)
103                 return -ENODEV;
104
105         /* take the right side and strip off the '"' */
106         while (isspace(*string))
107                 ++string;
108         if (*string == '"')
109                 ++string;
110         else
111                 return -ENODEV;
112
113         temp = strsep(&string, "\"");
114         if (!string || *temp == '\0')
115                 return -ENODEV;
116         *right = temp;
117         *orig_string = string;
118         
119         return 0;
120 }
121
122 static int parse_config_file(void)
123 {
124         char line[255];
125         char *temp;
126         char *variable;
127         char *value;
128         char *buf;
129         size_t bufsize;
130         size_t cur;
131         size_t count;
132         int lineno;
133         int retval = 0;
134
135         if (file_map(udev_config_filename, &buf, &bufsize) == 0) {
136                 dbg("reading '%s' as config file", udev_config_filename);
137         } else {
138                 dbg("can't open '%s' as config file", udev_config_filename);
139                 return -ENODEV;
140         }
141
142         /* loop through the whole file */
143         lineno = 0;
144         cur = 0;
145         while (1) {
146                 count = buf_get_line(buf, bufsize, cur);
147
148                 strncpy(line, buf + cur, count);
149                 line[count] = '\0';
150                 temp = line;
151                 lineno++;
152
153                 cur += count+1;
154                 if (cur > bufsize)
155                         break;
156
157                 dbg_parse("read '%s'", temp);
158
159                 /* eat the whitespace at the beginning of the line */
160                 while (isspace(*temp))
161                         ++temp;
162
163                 /* empty line? */
164                 if (*temp == 0x00)
165                         continue;
166
167                 /* see if this is a comment */
168                 if (*temp == COMMENT_CHARACTER)
169                         continue;
170
171                 retval = parse_get_pair(&temp, &variable, &value);
172                 if (retval != 0)
173                         info("%s:%d:%Zd: error parsing '%s'",
174                              udev_config_filename, lineno, temp-line, temp);
175
176                 dbg_parse("variable='%s', value='%s'", variable, value);
177
178                 if (strcasecmp(variable, "udev_root") == 0) {
179                         strfieldcpy(udev_root, value);
180                         leading_slash(udev_root);
181                         continue;
182                 }
183
184                 if (strcasecmp(variable, "udev_db") == 0) {
185                         strfieldcpy(udev_db_filename, value);
186                         continue;
187                 }
188
189                 if (strcasecmp(variable, "udev_rules") == 0) {
190                         strfieldcpy(udev_rules_filename, value);
191                         no_leading_slash(udev_rules_filename);
192                         continue;
193                 }
194
195                 if (strcasecmp(variable, "udev_permissions") == 0) {
196                         strfieldcpy(udev_permissions_filename, value);
197                         no_leading_slash(udev_permissions_filename);
198                         continue;
199                 }
200
201                 if (strcasecmp(variable, "default_mode") == 0) {
202                         strfieldcpy(default_mode_str, value);
203                         continue;
204                 }
205
206                 if (strcasecmp(variable, "default_owner") == 0) {
207                         strfieldcpy(default_owner_str, value);
208                         continue;
209                 }
210
211                 if (strcasecmp(variable, "default_group") == 0) {
212                         strfieldcpy(default_group_str, value);
213                         continue;
214                 }
215
216                 if (strcasecmp(variable, "udev_log") == 0) {
217                         udev_log = string_is_true(value);
218                         continue;
219                 }
220
221                 info("%s:%d:%Zd: unknown key '%s'",
222                      udev_config_filename, lineno, temp-line, temp);
223         }
224
225         file_unmap(buf, bufsize);
226         return retval;
227 }
228
229 static void get_dirs(void)
230 {
231         char *temp;
232         int retval;
233
234         retval = sysfs_get_mnt_path(sysfs_path, SYSFS_PATH_MAX);
235         if (retval)
236                 dbg("sysfs_get_mnt_path failed");
237
238         /* see if we should try to override any of the default values */
239         if (getenv("UDEV_TEST") != NULL) {
240                 temp = getenv("SYSFS_PATH");
241                 if (temp != NULL) {
242                         strfieldcpy(sysfs_path, temp);
243                         no_leading_slash(sysfs_path);
244                 }
245
246                 temp = getenv("UDEV_CONFIG_FILE");
247                 if (temp != NULL)
248                         strfieldcpy(udev_config_filename, temp);
249         }
250
251         dbg("sysfs_path='%s'", sysfs_path);
252         dbg_parse("udev_root = %s", udev_root);
253         dbg_parse("udev_config_filename = %s", udev_config_filename);
254         dbg_parse("udev_db_filename = %s", udev_db_filename);
255         dbg_parse("udev_rules_filename = %s", udev_rules_filename);
256         dbg_parse("udev_permissions_filename = %s", udev_permissions_filename);
257         dbg_parse("udev_log = %d", udev_log);
258
259         parse_config_file();
260
261         dbg("udev_root = %s", udev_root);
262         dbg("udev_config_filename = %s", udev_config_filename);
263         dbg("udev_db_filename = %s", udev_db_filename);
264         dbg("udev_rules_filename = %s", udev_rules_filename);
265         dbg("udev_permissions_filename = %s", udev_permissions_filename);
266         dbg("udev_log_str = %d", udev_log);
267 }
268
269 void udev_init_config(void)
270 {
271         init_variables();
272         get_dirs();
273 }