mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-14 10:37:11 +07:00
[PATCH] make logging a config option
Once again, patch to make logging a config option. Reason for this (since you asked for it): - In our setup it is easy (although still annoying) .. just edit the ebuild, add logging support (or remove it) and rebuild. For say a binary distro, having the logging is useful for debugging some times, but its more a once of, or rare thing, as you do not add or change config files every day. Sure, we can have logging by default, but many do not want ~300 lines of extra debugging in their logs is not pleasant, and they will complain. Rebuilding the package for that binary package (given the users it is targeted to) is usually not within most users grasp.
This commit is contained in:
parent
da92f46b9e
commit
4d803d8d04
1
Makefile
1
Makefile
@ -239,6 +239,7 @@ udev_version.h:
|
||||
@echo \#define UDEV_CONFIG_FILE \"$(configdir)\udev.conf\" >> $@
|
||||
@echo \#define UDEV_RULES_FILE \"$(configdir)\udev.rules\" >> $@
|
||||
@echo \#define UDEV_PERMISSION_FILE \"$(configdir)\udev.permissions\" >> $@
|
||||
@echo \#define UDEV_LOG_DEFAULT \"yes\" >> $@
|
||||
@echo \#define UDEV_BIN \"$(DESTDIR)$(sbindir)/udev\" >> $@
|
||||
@echo \#define UDEVD_BIN \"$(DESTDIR)$(sbindir)/udevd\" >> $@
|
||||
|
||||
|
@ -29,3 +29,6 @@ default_owner="root"
|
||||
# explicit match in the permissions file
|
||||
default_group="root"
|
||||
|
||||
# udev_log - set to "yes" if you want logging, else "no"
|
||||
udev_log="yes"
|
||||
|
||||
|
@ -34,6 +34,9 @@
|
||||
#include <unistd.h>
|
||||
#include <syslog.h>
|
||||
|
||||
#include "udev.h"
|
||||
#include "udev_version.h"
|
||||
|
||||
#undef info
|
||||
#define info(format, arg...) \
|
||||
do { \
|
||||
@ -63,6 +66,9 @@ static inline void log_message (int level, const char *format, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
||||
if (0 != strncmp(udev_log_str, UDEV_LOG_DEFAULT, BOOL_SIZE))
|
||||
return;
|
||||
|
||||
va_start(args, format);
|
||||
vsyslog(level, format, args);
|
||||
va_end(args);
|
||||
|
3
udev.h
3
udev.h
@ -32,6 +32,8 @@
|
||||
#define OWNER_SIZE 30
|
||||
#define GROUP_SIZE 30
|
||||
#define MODE_SIZE 8
|
||||
#define BOOL_SIZE 5 /* 'yes', 'no' and possibly 'true' or 'false'
|
||||
in future */
|
||||
|
||||
struct udevice {
|
||||
char name[NAME_SIZE];
|
||||
@ -72,5 +74,6 @@ extern char udev_rules_filename[PATH_MAX+NAME_MAX];
|
||||
extern char default_mode_str[MODE_SIZE];
|
||||
extern char default_owner_str[OWNER_SIZE];
|
||||
extern char default_group_str[GROUP_SIZE];
|
||||
extern char udev_log_str[BOOL_SIZE];
|
||||
|
||||
#endif
|
||||
|
@ -48,6 +48,7 @@ char udev_config_filename[PATH_MAX+NAME_MAX];
|
||||
char default_mode_str[MODE_SIZE];
|
||||
char default_owner_str[OWNER_SIZE];
|
||||
char default_group_str[GROUP_SIZE];
|
||||
char udev_log_str[BOOL_SIZE];
|
||||
|
||||
|
||||
static void init_variables(void)
|
||||
@ -60,6 +61,7 @@ static void init_variables(void)
|
||||
strfieldcpy(udev_config_filename, UDEV_CONFIG_FILE);
|
||||
strfieldcpy(udev_rules_filename, UDEV_RULES_FILE);
|
||||
strfieldcpy(udev_permissions_filename, UDEV_PERMISSION_FILE);
|
||||
strfieldcpy(udev_log_str, UDEV_LOG_DEFAULT);
|
||||
}
|
||||
|
||||
#define set_var(_name, _var) \
|
||||
@ -156,6 +158,7 @@ static int parse_config_file(void)
|
||||
set_var("default_mode", default_mode_str);
|
||||
set_var("default_owner", default_owner_str);
|
||||
set_var("default_group", default_group_str);
|
||||
set_var("udev_log", udev_log_str);
|
||||
}
|
||||
dbg_parse("%s:%d:%Zd: error parsing '%s'", udev_config_filename,
|
||||
lineno, temp - line, temp);
|
||||
@ -191,6 +194,7 @@ static void get_dirs(void)
|
||||
dbg_parse("udev_db_filename = %s", udev_db_filename);
|
||||
dbg_parse("udev_rules_filename = %s", udev_rules_filename);
|
||||
dbg_parse("udev_permissions_filename = %s", udev_permissions_filename);
|
||||
dbg_parse("udev_log_str = %s", udev_log_str);
|
||||
parse_config_file();
|
||||
|
||||
dbg_parse("udev_root = %s", udev_root);
|
||||
@ -198,6 +202,7 @@ static void get_dirs(void)
|
||||
dbg_parse("udev_db_filename = %s", udev_db_filename);
|
||||
dbg_parse("udev_rules_filename = %s", udev_rules_filename);
|
||||
dbg_parse("udev_permissions_filename = %s", udev_permissions_filename);
|
||||
dbg_parse("udev_log_str = %s", udev_log_str);
|
||||
}
|
||||
|
||||
void udev_init_config(void)
|
||||
|
Loading…
Reference in New Issue
Block a user