]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
modprobe: prefix libkmod messages to stderr with modprobe:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Thu, 1 Nov 2012 14:24:58 +0000 (12:24 -0200)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Thu, 1 Nov 2012 14:46:03 +0000 (12:46 -0200)
When we are logging to stderr we are previously relying on libkmod
sending it to the default location in case we are not asked to log to
syslog. The problem is that modprobe may be used in scripts that don't
want to log to syslog (since they are not daemons, like scripts to
generate initrd) and then it's difficult to know where the message comes
from.

This patch treats only the messages coming from libkmod.

tools/modprobe.c

index 7bcf2b04c753f60ad86beb2049fe378b88386f5d..17a8c1716bf8d27f1369f79eb897c620a023d8de 100644 (file)
@@ -796,19 +796,31 @@ static char **prepend_options_from_env(int *p_argc, char **orig_argv)
        return new_argv;
 }
 
-static void log_syslog(void *data, int priority, const char *file, int line,
+static void log_modprobe(void *data, int priority, const char *file, int line,
                        const char *fn, const char *format, va_list args)
 {
-       char *str;
        const char *prioname = prio_to_str(priority);
+       char *str;
 
        if (vasprintf(&str, format, args) < 0)
                return;
+
+       if (use_syslog) {
+#ifdef ENABLE_DEBUG
+               syslog(priority, "%s: %s:%d %s() %s", prioname, file, line,
+                      fn, str);
+#else
+               syslog(priority, "%s: %s", prioname, str);
+#endif
+       } else {
 #ifdef ENABLE_DEBUG
-       syslog(LOG_NOTICE, "%s: %s:%d %s() %s", prioname, file, line, fn, str);
+               fprintf(stderr, "modprobe: %s: %s:%d %s() %s", prioname, file,
+                       line, fn, str);
 #else
-       syslog(LOG_NOTICE, "%s: %s", prioname, str);
+               fprintf(stderr, "modprobe: %s: %s", prioname, str);
 #endif
+       }
+
        free(str);
        (void)data;
 }
@@ -974,10 +986,9 @@ static int do_modprobe(int argc, char **orig_argv)
        kmod_load_resources(ctx);
 
        kmod_set_log_priority(ctx, verbose);
-       if (use_syslog) {
+       kmod_set_log_fn(ctx, log_modprobe, NULL);
+       if (use_syslog)
                openlog("modprobe", LOG_CONS, LOG_DAEMON);
-               kmod_set_log_fn(ctx, log_syslog, NULL);
-       }
 
        if (do_show_config)
                err = show_config(ctx);