]> git.ipfire.org Git - thirdparty/systemd.git/blame - udev_config.c
[PATCH] fix compilation warning in tdb log message.
[thirdparty/systemd.git] / udev_config.c
CommitLineData
e8baccca
GKH
1/*
2 * udev_config.c
3 *
4 * Userspace devfs
5 *
274812b5 6 * Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
e8baccca
GKH
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
c80da508 35#include "libsysfs/sysfs/libsysfs.h"
e8baccca 36#include "udev.h"
c81b35c0 37#include "udev_lib.h"
e8baccca 38#include "udev_version.h"
54988802 39#include "logging.h"
e8baccca 40#include "namedev.h"
e8baccca
GKH
41
42/* global variables */
43char sysfs_path[SYSFS_PATH_MAX];
e8baccca
GKH
44char udev_root[PATH_MAX];
45char udev_db_filename[PATH_MAX+NAME_MAX];
3836a3c4 46char udev_permissions_filename[PATH_MAX+NAME_MAX];
e8baccca
GKH
47char udev_rules_filename[PATH_MAX+NAME_MAX];
48char udev_config_filename[PATH_MAX+NAME_MAX];
765cbd97 49char default_mode_str[MODE_SIZE];
74c73ef9 50char default_owner_str[OWNER_SIZE];
51char default_group_str[GROUP_SIZE];
51a8bb2f 52int udev_log;
961e4784 53int udev_sleep;
bbbe503e 54int udev_dev_d;
e8baccca
GKH
55
56
51a8bb2f
GKH
57static 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;
c3335930 63 if (strcasecmp(str, "1") == 0)
64 return 1;
51a8bb2f
GKH
65 return 0;
66}
67
e8baccca
GKH
68static void init_variables(void)
69{
c3335930 70 char *env;
71
3836a3c4
GKH
72 /* fill up the defaults.
73 * If any config values are specified, they will
74 * override these values. */
e8baccca 75 strfieldcpy(udev_root, UDEV_ROOT);
3836a3c4
GKH
76 strfieldcpy(udev_db_filename, UDEV_DB);
77 strfieldcpy(udev_config_filename, UDEV_CONFIG_FILE);
78 strfieldcpy(udev_rules_filename, UDEV_RULES_FILE);
79 strfieldcpy(udev_permissions_filename, UDEV_PERMISSION_FILE);
51a8bb2f 80 udev_log = string_is_true(UDEV_LOG_DEFAULT);
961e4784
GKH
81
82 udev_sleep = 1;
c3335930 83 env = getenv("UDEV_NO_SLEEP");
84 if (env && string_is_true(env))
961e4784 85 udev_sleep = 0;
bbbe503e
KS
86
87 udev_dev_d = 1;
c3335930 88 env = getenv("UDEV_NO_DEVD");
89 if (env && string_is_true(env))
bbbe503e 90 udev_dev_d = 0;
e8baccca
GKH
91}
92
274812b5
GKH
93int parse_get_pair(char **orig_string, char **left, char **right)
94{
95 char *temp;
96 char *string = *orig_string;
97
98 if (!string)
99 return -ENODEV;
100
101 /* eat any whitespace */
102 while (isspace(*string) || *string == ',')
103 ++string;
104
105 /* split based on '=' */
106 temp = strsep(&string, "=");
107 *left = temp;
108 if (!string)
109 return -ENODEV;
110
111 /* take the right side and strip off the '"' */
112 while (isspace(*string))
113 ++string;
114 if (*string == '"')
115 ++string;
116 else
117 return -ENODEV;
118
119 temp = strsep(&string, "\"");
120 if (!string || *temp == '\0')
121 return -ENODEV;
122 *right = temp;
123 *orig_string = string;
124
125 return 0;
126}
127
e8baccca
GKH
128static int parse_config_file(void)
129{
3e441450 130 char line[LINE_SIZE];
131 char *bufline;
e8baccca
GKH
132 char *temp;
133 char *variable;
134 char *value;
c81b35c0
KS
135 char *buf;
136 size_t bufsize;
137 size_t cur;
138 size_t count;
139 int lineno;
e8baccca 140 int retval = 0;
c81b35c0
KS
141
142 if (file_map(udev_config_filename, &buf, &bufsize) == 0) {
e8baccca
GKH
143 dbg("reading '%s' as config file", udev_config_filename);
144 } else {
145 dbg("can't open '%s' as config file", udev_config_filename);
146 return -ENODEV;
147 }
148
149 /* loop through the whole file */
c81b35c0
KS
150 lineno = 0;
151 cur = 0;
3e441450 152 while (cur < bufsize) {
c81b35c0 153 count = buf_get_line(buf, bufsize, cur);
3e441450 154 bufline = &buf[cur];
c81b35c0 155 cur += count+1;
3e441450 156 lineno++;
e8baccca 157
3e441450 158 if (count >= LINE_SIZE) {
159 info("line too long, conf line skipped %s, line %d",
160 udev_config_filename, lineno);
161 continue;
162 }
e8baccca 163
3e441450 164 /* eat the whitespace */
3db7fa27 165 while ((count > 0) && isspace(bufline[0])) {
3e441450 166 bufline++;
167 count--;
168 }
3db7fa27
KS
169 if (count == 0)
170 continue;
3e441450 171
e8baccca 172 /* see if this is a comment */
3e441450 173 if (bufline[0] == COMMENT_CHARACTER)
e8baccca
GKH
174 continue;
175
3e441450 176 strncpy(line, bufline, count);
177 line[count] = '\0';
178 temp = line;
179 dbg_parse("read '%s'", temp);
180
274812b5 181 retval = parse_get_pair(&temp, &variable, &value);
aef6bb13
KS
182 if (retval != 0)
183 info("%s:%d:%Zd: error parsing '%s'",
184 udev_config_filename, lineno, temp-line, temp);
185
186 dbg_parse("variable='%s', value='%s'", variable, value);
187
188 if (strcasecmp(variable, "udev_root") == 0) {
189 strfieldcpy(udev_root, value);
190 leading_slash(udev_root);
191 continue;
192 }
193
194 if (strcasecmp(variable, "udev_db") == 0) {
195 strfieldcpy(udev_db_filename, value);
196 continue;
197 }
198
199 if (strcasecmp(variable, "udev_rules") == 0) {
200 strfieldcpy(udev_rules_filename, value);
201 no_leading_slash(udev_rules_filename);
202 continue;
203 }
204
205 if (strcasecmp(variable, "udev_permissions") == 0) {
206 strfieldcpy(udev_permissions_filename, value);
207 no_leading_slash(udev_permissions_filename);
208 continue;
209 }
210
211 if (strcasecmp(variable, "default_mode") == 0) {
212 strfieldcpy(default_mode_str, value);
213 continue;
214 }
215
216 if (strcasecmp(variable, "default_owner") == 0) {
217 strfieldcpy(default_owner_str, value);
218 continue;
219 }
220
221 if (strcasecmp(variable, "default_group") == 0) {
222 strfieldcpy(default_group_str, value);
223 continue;
224 }
225
226 if (strcasecmp(variable, "udev_log") == 0) {
227 udev_log = string_is_true(value);
228 continue;
229 }
230
231 info("%s:%d:%Zd: unknown key '%s'",
232 udev_config_filename, lineno, temp-line, temp);
e8baccca 233 }
c81b35c0
KS
234
235 file_unmap(buf, bufsize);
e8baccca
GKH
236 return retval;
237}
238
239static void get_dirs(void)
240{
241 char *temp;
e8baccca
GKH
242 int retval;
243
244 retval = sysfs_get_mnt_path(sysfs_path, SYSFS_PATH_MAX);
245 if (retval)
246 dbg("sysfs_get_mnt_path failed");
247
248 /* see if we should try to override any of the default values */
aef6bb13 249 if (getenv("UDEV_TEST") != NULL) {
e8baccca 250 temp = getenv("SYSFS_PATH");
aef6bb13 251 if (temp != NULL) {
e8baccca 252 strfieldcpy(sysfs_path, temp);
aef6bb13
KS
253 no_leading_slash(sysfs_path);
254 }
255
e8baccca 256 temp = getenv("UDEV_CONFIG_FILE");
aef6bb13 257 if (temp != NULL)
3836a3c4 258 strfieldcpy(udev_config_filename, temp);
e8baccca 259 }
e8baccca 260
aef6bb13 261 dbg("sysfs_path='%s'", sysfs_path);
e8baccca
GKH
262 dbg_parse("udev_root = %s", udev_root);
263 dbg_parse("udev_config_filename = %s", udev_config_filename);
264 dbg_parse("udev_db_filename = %s", udev_db_filename);
265 dbg_parse("udev_rules_filename = %s", udev_rules_filename);
3836a3c4 266 dbg_parse("udev_permissions_filename = %s", udev_permissions_filename);
51a8bb2f 267 dbg_parse("udev_log = %d", udev_log);
aef6bb13 268
e8baccca
GKH
269 parse_config_file();
270
aef6bb13
KS
271 dbg("udev_root = %s", udev_root);
272 dbg("udev_config_filename = %s", udev_config_filename);
273 dbg("udev_db_filename = %s", udev_db_filename);
274 dbg("udev_rules_filename = %s", udev_rules_filename);
275 dbg("udev_permissions_filename = %s", udev_permissions_filename);
276 dbg("udev_log_str = %d", udev_log);
e8baccca
GKH
277}
278
279void udev_init_config(void)
280{
281 init_variables();
282 get_dirs();
283}