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