chiark / gitweb /
[PATCH] make logging a config option
[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 "udev.h"
36 #include "udev_version.h"
37 #include "logging.h"
38 #include "namedev.h"
39 #include "libsysfs/libsysfs.h"
40
41 /* global variables */
42 char sysfs_path[SYSFS_PATH_MAX];
43 char udev_root[PATH_MAX];
44 char udev_db_filename[PATH_MAX+NAME_MAX];
45 char udev_permissions_filename[PATH_MAX+NAME_MAX];
46 char udev_rules_filename[PATH_MAX+NAME_MAX];
47 char udev_config_filename[PATH_MAX+NAME_MAX];
48 char default_mode_str[MODE_SIZE];
49 char default_owner_str[OWNER_SIZE];
50 char default_group_str[GROUP_SIZE];
51 char udev_log_str[BOOL_SIZE];
52
53
54 static void init_variables(void)
55 {
56         /* fill up the defaults.  
57          * If any config values are specified, they will
58          * override these values. */
59         strfieldcpy(udev_root, UDEV_ROOT);
60         strfieldcpy(udev_db_filename, UDEV_DB);
61         strfieldcpy(udev_config_filename, UDEV_CONFIG_FILE);
62         strfieldcpy(udev_rules_filename, UDEV_RULES_FILE);
63         strfieldcpy(udev_permissions_filename, UDEV_PERMISSION_FILE);
64         strfieldcpy(udev_log_str, UDEV_LOG_DEFAULT);
65 }
66
67 #define set_var(_name, _var)                            \
68         if (strcasecmp(variable, _name) == 0) {         \
69                 dbg_parse("%s = '%s'", _name, value);   \
70                 strncpy(_var, value, sizeof(_var));     \
71         }
72
73 int parse_get_pair(char **orig_string, char **left, char **right)
74 {
75         char *temp;
76         char *string = *orig_string;
77
78         if (!string)
79                 return -ENODEV;
80
81         /* eat any whitespace */
82         while (isspace(*string) || *string == ',')
83                 ++string;
84
85         /* split based on '=' */
86         temp = strsep(&string, "=");
87         *left = temp;
88         if (!string)
89                 return -ENODEV;
90
91         /* take the right side and strip off the '"' */
92         while (isspace(*string))
93                 ++string;
94         if (*string == '"')
95                 ++string;
96         else
97                 return -ENODEV;
98
99         temp = strsep(&string, "\"");
100         if (!string || *temp == '\0')
101                 return -ENODEV;
102         *right = temp;
103         *orig_string = string;
104         
105         return 0;
106 }
107
108 static int parse_config_file(void)
109 {
110         char line[255];
111         char *temp;
112         char *variable;
113         char *value;
114         FILE *fd;
115         int lineno = 0;
116         int retval = 0;
117         
118         fd = fopen(udev_config_filename, "r");
119         if (fd != NULL) {
120                 dbg("reading '%s' as config file", udev_config_filename);
121         } else {
122                 dbg("can't open '%s' as config file", udev_config_filename);
123                 return -ENODEV;
124         }
125
126         /* loop through the whole file */
127         while (1) {
128                 /* get a line */
129                 temp = fgets(line, sizeof(line), fd);
130                 if (temp == NULL)
131                         goto exit;
132                 lineno++;
133
134                 dbg_parse("read '%s'", temp);
135
136                 /* eat the whitespace at the beginning of the line */
137                 while (isspace(*temp))
138                         ++temp;
139
140                 /* empty line? */
141                 if (*temp == 0x00)
142                         continue;
143
144                 /* see if this is a comment */
145                 if (*temp == COMMENT_CHARACTER)
146                         continue;
147
148                 retval = parse_get_pair(&temp, &variable, &value);
149                 if (retval)
150                         break;
151                 
152                 dbg_parse("variable = '%s', value = '%s'", variable, value);
153
154                 set_var("udev_root", udev_root);
155                 set_var("udev_db", udev_db_filename);
156                 set_var("udev_rules", udev_rules_filename);
157                 set_var("udev_permissions", udev_permissions_filename);
158                 set_var("default_mode", default_mode_str);
159                 set_var("default_owner", default_owner_str);
160                 set_var("default_group", default_group_str);
161                 set_var("udev_log", udev_log_str);
162         }
163         dbg_parse("%s:%d:%Zd: error parsing '%s'", udev_config_filename,
164                   lineno, temp - line, temp);
165 exit:
166         fclose(fd);
167         return retval;
168 }
169
170 static void get_dirs(void)
171 {
172         char *temp;
173         int retval;
174
175         retval = sysfs_get_mnt_path(sysfs_path, SYSFS_PATH_MAX);
176         if (retval)
177                 dbg("sysfs_get_mnt_path failed");
178
179         /* see if we should try to override any of the default values */
180         temp = getenv("UDEV_TEST");
181         if (temp != NULL) {
182                 /* hm testing is happening, use the specified values, if they are present */
183                 temp = getenv("SYSFS_PATH");
184                 if (temp)
185                         strfieldcpy(sysfs_path, temp);
186                 temp = getenv("UDEV_CONFIG_FILE");
187                 if (temp)
188                         strfieldcpy(udev_config_filename, temp);
189         }
190         dbg("sysfs_path='%s'", sysfs_path);
191
192         dbg_parse("udev_root = %s", udev_root);
193         dbg_parse("udev_config_filename = %s", udev_config_filename);
194         dbg_parse("udev_db_filename = %s", udev_db_filename);
195         dbg_parse("udev_rules_filename = %s", udev_rules_filename);
196         dbg_parse("udev_permissions_filename = %s", udev_permissions_filename);
197         dbg_parse("udev_log_str = %s", udev_log_str);
198         parse_config_file();
199
200         dbg_parse("udev_root = %s", udev_root);
201         dbg_parse("udev_config_filename = %s", udev_config_filename);
202         dbg_parse("udev_db_filename = %s", udev_db_filename);
203         dbg_parse("udev_rules_filename = %s", udev_rules_filename);
204         dbg_parse("udev_permissions_filename = %s", udev_permissions_filename);
205         dbg_parse("udev_log_str = %s", udev_log_str);
206 }
207
208 void udev_init_config(void)
209 {
210         init_variables();
211         get_dirs();
212 }
213
214