6 * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation version 2 of the License.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include "libsysfs/libsysfs.h"
31 #define dbg(format, arg...) \
33 log_message (LOG_DEBUG , "%s: " format , __FUNCTION__ , ## arg); \
36 #define dbg(format, arg...) do { } while (0)
39 /* Parser needs it's own debugging statement, we usually don't care about this at all */
41 #define dbg_parse(format, arg...) \
43 log_message (LOG_DEBUG , "%s: " format , __FUNCTION__ , ## arg); \
46 #define dbg_parse(format, arg...) do { } while (0)
50 extern int log_message (int level, const char *format, ...)
51 __attribute__ ((format (printf, 2, 3)));
54 /* filenames for the config and database files */
55 #define UDEV_DB "udev.tdb"
56 #define UDEV_CONFIG_PERMISSION_FILE "udev.permissions"
57 #define UDEV_CONFIG_FILE "udev.config"
65 char owner[OWNER_SIZE];
66 char group[GROUP_SIZE];
73 extern int udev_add_device(char *path, char *subsystem);
74 extern int udev_remove_device(char *path, char *subsystem);
76 extern char **main_argv;
77 extern char **main_envp;
78 extern char sysfs_path[SYSFS_PATH_MAX];
79 extern char *udev_config_dir;
80 extern char *udev_root;
81 extern char udev_db_filename[PATH_MAX+NAME_MAX];
82 extern char udev_config_permission_filename[PATH_MAX+NAME_MAX];
83 extern char udev_config_filename[PATH_MAX+NAME_MAX];