chiark / gitweb /
[PATCH] udevd - cleanup and better timeout handling
[elogind.git] / udev_config.c
1 /*
2  * udev_config.c
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003 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
52
53 static void init_variables(void)
54 {
55         /* fill up the defaults.  
56          * If any config values are specified, they will
57          * override these values. */
58         strfieldcpy(udev_root, UDEV_ROOT);
59         strfieldcpy(udev_db_filename, UDEV_DB);
60         strfieldcpy(udev_config_filename, UDEV_CONFIG_FILE);
61         strfieldcpy(udev_rules_filename, UDEV_RULES_FILE);
62         strfieldcpy(udev_permissions_filename, UDEV_PERMISSION_FILE);
63 }
64
65 #define set_var(_name, _var)                            \
66         if (strcasecmp(variable, _name) == 0) {         \
67                 dbg_parse("%s = '%s'", _name, value);   \
68                 strncpy(_var, value, sizeof(_var));     \
69         }
70
71 static int parse_config_file(void)
72 {
73         char line[255];
74         char *temp;
75         char *variable;
76         char *value;
77         FILE *fd;
78         int lineno = 0;
79         int retval = 0;
80         
81         fd = fopen(udev_config_filename, "r");
82         if (fd != NULL) {
83                 dbg("reading '%s' as config file", udev_config_filename);
84         } else {
85                 dbg("can't open '%s' as config file", udev_config_filename);
86                 return -ENODEV;
87         }
88
89         /* loop through the whole file */
90         while (1) {
91                 /* get a line */
92                 temp = fgets(line, sizeof(line), fd);
93                 if (temp == NULL)
94                         goto exit;
95                 lineno++;
96
97                 dbg_parse("read '%s'", temp);
98
99                 /* eat the whitespace at the beginning of the line */
100                 while (isspace(*temp))
101                         ++temp;
102
103                 /* empty line? */
104                 if (*temp == 0x00)
105                         continue;
106
107                 /* see if this is a comment */
108                 if (*temp == COMMENT_CHARACTER)
109                         continue;
110
111                 retval = get_pair(&temp, &variable, &value);
112                 if (retval)
113                         break;
114                 
115                 dbg_parse("variable = '%s', value = '%s'", variable, value);
116
117                 set_var("udev_root", udev_root);
118                 set_var("udev_db", udev_db_filename);
119                 set_var("udev_rules", udev_rules_filename);
120                 set_var("udev_permissions", udev_permissions_filename);
121                 set_var("default_mode", default_mode_str);
122                 set_var("default_owner", default_owner_str);
123                 set_var("default_group", default_group_str);
124         }
125         dbg_parse("%s:%d:%Zd: error parsing '%s'", udev_config_filename,
126                   lineno, temp - line, temp);
127 exit:
128         fclose(fd);
129         return retval;
130 }
131
132 static void get_dirs(void)
133 {
134         char *temp;
135         int retval;
136
137         retval = sysfs_get_mnt_path(sysfs_path, SYSFS_PATH_MAX);
138         if (retval)
139                 dbg("sysfs_get_mnt_path failed");
140
141         /* see if we should try to override any of the default values */
142         temp = getenv("UDEV_TEST");
143         if (temp != NULL) {
144                 /* hm testing is happening, use the specified values, if they are present */
145                 temp = getenv("SYSFS_PATH");
146                 if (temp)
147                         strfieldcpy(sysfs_path, temp);
148                 temp = getenv("UDEV_CONFIG_FILE");
149                 if (temp)
150                         strfieldcpy(udev_config_filename, temp);
151         }
152         dbg("sysfs_path='%s'", sysfs_path);
153
154         dbg_parse("udev_root = %s", udev_root);
155         dbg_parse("udev_config_filename = %s", udev_config_filename);
156         dbg_parse("udev_db_filename = %s", udev_db_filename);
157         dbg_parse("udev_rules_filename = %s", udev_rules_filename);
158         dbg_parse("udev_permissions_filename = %s", udev_permissions_filename);
159         parse_config_file();
160
161         dbg_parse("udev_root = %s", udev_root);
162         dbg_parse("udev_config_filename = %s", udev_config_filename);
163         dbg_parse("udev_db_filename = %s", udev_db_filename);
164         dbg_parse("udev_rules_filename = %s", udev_rules_filename);
165         dbg_parse("udev_permissions_filename = %s", udev_permissions_filename);
166 }
167
168 void udev_init_config(void)
169 {
170         init_variables();
171         get_dirs();
172 }
173
174