eal: support dynamic log types
[dpdk.git] / lib / librte_eal / common / eal_common_log.c
index 7916c78..68d879a 100644 (file)
 #include <stdint.h>
 #include <stdarg.h>
 #include <stdlib.h>
+#include <string.h>
+#include <errno.h>
 
+#include <rte_eal.h>
 #include <rte_log.h>
 #include <rte_per_lcore.h>
 
@@ -48,43 +51,33 @@ struct rte_logs rte_logs = {
        .file = NULL,
 };
 
+/* Stream to use for logging if rte_logs.file is NULL */
 static FILE *default_log_stream;
 
 /**
  * This global structure stores some informations about the message
- * that is currently beeing processed by one lcore
+ * that is currently being processed by one lcore
  */
 struct log_cur_msg {
        uint32_t loglevel; /**< log level - see rte_log.h */
        uint32_t logtype;  /**< log type  - see rte_log.h */
 };
 
+struct rte_log_dynamic_type {
+       const char *name;
+       uint32_t loglevel;
+};
+
  /* per core log */
 static RTE_DEFINE_PER_LCORE(struct log_cur_msg, log_cur_msg);
 
 /* default logs */
 
-int
-rte_log_add_in_history(const char *buf __rte_unused, size_t size __rte_unused)
-{
-       return 0;
-}
-
-void
-rte_log_set_history(int enable)
-{
-       if (enable)
-               RTE_LOG(WARNING, EAL, "The log history is deprecated.\n");
-}
-
 /* Change the stream that will be used by logging system */
 int
 rte_openlog_stream(FILE *f)
 {
-       if (f == NULL)
-               rte_logs.file = default_log_stream;
-       else
-               rte_logs.file = f;
+       rte_logs.file = f;
        return 0;
 }
 
@@ -106,10 +99,17 @@ rte_get_log_level(void)
 void
 rte_set_log_type(uint32_t type, int enable)
 {
+       if (type < RTE_LOGTYPE_FIRST_EXT_ID) {
+               if (enable)
+                       rte_logs.type |= type;
+               else
+                       rte_logs.type &= ~type;
+       }
+
        if (enable)
-               rte_logs.type |= type;
+               rte_log_set_level(type, 0);
        else
-               rte_logs.type &= (~type);
+               rte_log_set_level(type, RTE_LOG_DEBUG);
 }
 
 /* Get global log type */
@@ -119,6 +119,19 @@ rte_get_log_type(void)
        return rte_logs.type;
 }
 
+int
+rte_log_set_level(uint32_t type, uint32_t level)
+{
+       if (type >= rte_logs.dynamic_types_len)
+               return -1;
+       if (level > RTE_LOG_DEBUG)
+               return -1;
+
+       rte_logs.dynamic_types[type].loglevel = level;
+
+       return 0;
+}
+
 /* get the current loglevel for the message beeing processed */
 int rte_log_cur_msg_loglevel(void)
 {
@@ -131,10 +144,103 @@ int rte_log_cur_msg_logtype(void)
        return RTE_PER_LCORE(log_cur_msg).logtype;
 }
 
-/* Dump log history to file */
-void
-rte_log_dump_history(FILE *out __rte_unused)
+static int
+rte_log_lookup(const char *name)
 {
+       size_t i;
+
+       for (i = 0; i < rte_logs.dynamic_types_len; i++) {
+               if (rte_logs.dynamic_types[i].name == NULL)
+                       continue;
+               if (strcmp(name, rte_logs.dynamic_types[i].name) == 0)
+                       return i;
+       }
+
+       return -1;
+}
+
+/* register an extended log type, assuming table is large enough, and id
+ * is not yet registered.
+ */
+static int
+__rte_log_register(const char *name, int id)
+{
+       char *dup_name = strdup(name);
+
+       if (dup_name == NULL)
+               return -ENOMEM;
+
+       rte_logs.dynamic_types[id].name = dup_name;
+       rte_logs.dynamic_types[id].loglevel = RTE_LOG_DEBUG;
+
+       return id;
+}
+
+/* register an extended log type */
+int
+rte_log_register(const char *name)
+{
+       struct rte_log_dynamic_type *new_dynamic_types;
+       int id, ret;
+
+       id = rte_log_lookup(name);
+       if (id >= 0)
+               return id;
+
+       new_dynamic_types = realloc(rte_logs.dynamic_types,
+               sizeof(struct rte_log_dynamic_type) *
+               (rte_logs.dynamic_types_len + 1));
+       if (new_dynamic_types == NULL)
+               return -ENOMEM;
+       rte_logs.dynamic_types = new_dynamic_types;
+
+       ret = __rte_log_register(name, rte_logs.dynamic_types_len);
+       if (ret < 0)
+               return ret;
+
+       rte_logs.dynamic_types_len++;
+
+       return ret;
+}
+
+RTE_INIT(rte_log_init);
+static void
+rte_log_init(void)
+{
+       rte_logs.dynamic_types = calloc(RTE_LOGTYPE_FIRST_EXT_ID,
+               sizeof(struct rte_log_dynamic_type));
+       if (rte_logs.dynamic_types == NULL)
+               return;
+
+       /* register legacy log types, keep sync'd with RTE_LOGTYPE_* */
+       __rte_log_register("eal", 0);
+       __rte_log_register("malloc", 1);
+       __rte_log_register("ring", 2);
+       __rte_log_register("mempool", 3);
+       __rte_log_register("timer", 4);
+       __rte_log_register("pmd", 5);
+       __rte_log_register("hash", 6);
+       __rte_log_register("lpm", 7);
+       __rte_log_register("kni", 8);
+       __rte_log_register("acl", 9);
+       __rte_log_register("power", 10);
+       __rte_log_register("meter", 11);
+       __rte_log_register("sched", 12);
+       __rte_log_register("port", 13);
+       __rte_log_register("table", 14);
+       __rte_log_register("pipeline", 15);
+       __rte_log_register("mbuf", 16);
+       __rte_log_register("cryptodev", 17);
+       __rte_log_register("user1", 24);
+       __rte_log_register("user2", 25);
+       __rte_log_register("user3", 26);
+       __rte_log_register("user4", 27);
+       __rte_log_register("user5", 28);
+       __rte_log_register("user6", 29);
+       __rte_log_register("user7", 30);
+       __rte_log_register("user8", 31);
+
+       rte_logs.dynamic_types_len = RTE_LOGTYPE_FIRST_EXT_ID;
 }
 
 /*
@@ -146,8 +252,25 @@ rte_vlog(uint32_t level, uint32_t logtype, const char *format, va_list ap)
 {
        int ret;
        FILE *f = rte_logs.file;
+       if (f == NULL) {
+               f = default_log_stream;
+               if (f == NULL) {
+                       /*
+                        * Grab the current value of stderr here, rather than
+                        * just initializing default_log_stream to stderr. This
+                        * ensures that we will always use the current value
+                        * of stderr, even if the application closes and
+                        * reopens it.
+                        */
+                       f = stderr;
+               }
+       }
 
-       if ((level > rte_logs.level) || !(logtype & rte_logs.type))
+       if (level > rte_logs.level)
+               return 0;
+       if (logtype >= rte_logs.dynamic_types_len)
+               return -1;
+       if (level > rte_logs.dynamic_types[logtype].loglevel)
                return 0;
 
        /* save loglevel and logtype in a global per-lcore variable */
@@ -177,17 +300,15 @@ rte_log(uint32_t level, uint32_t logtype, const char *format, ...)
 }
 
 /*
- * called by environment-specific log init function
+ * Called by environment-specific initialization functions.
  */
-int
-rte_eal_common_log_init(FILE *default_log)
+void
+eal_log_set_default(FILE *default_log)
 {
        default_log_stream = default_log;
-       rte_openlog_stream(default_log);
 
-#if RTE_LOG_LEVEL >= RTE_LOG_DEBUG
-       RTE_LOG(NOTICE, EAL, "Debug logs available - lower performance\n");
+#if RTE_LOG_DP_LEVEL >= RTE_LOG_DEBUG
+       RTE_LOG(NOTICE, EAL,
+               "Debug dataplane logs available - lower performance\n");
 #endif
-
-       return 0;
 }