Merge branch 'feature/eloop_debug_framework' into 'master'

wpa_supplicant: Add debug info for eloop functions

See merge request espressif/esp-idf!18451
This commit is contained in:
Kapil Gupta
2022-07-18 14:17:25 +08:00
5 changed files with 71 additions and 4 deletions

View File

@@ -23,6 +23,10 @@ struct eloop_timeout {
void *eloop_data; void *eloop_data;
void *user_data; void *user_data;
eloop_timeout_handler handler; eloop_timeout_handler handler;
#ifdef ELOOP_DEBUG
char func_name[100];
int line;
#endif
}; };
struct eloop_data { struct eloop_data {
@@ -56,12 +60,21 @@ int eloop_init(void)
return 0; return 0;
} }
#ifdef ELOOP_DEBUG
int eloop_register_timeout_debug(unsigned int secs, unsigned int usecs,
eloop_timeout_handler handler, void *eloop_data,
void *user_data, const char *func, int line)
#else
int eloop_register_timeout(unsigned int secs, unsigned int usecs, int eloop_register_timeout(unsigned int secs, unsigned int usecs,
eloop_timeout_handler handler, eloop_timeout_handler handler,
void *eloop_data, void *user_data) void *eloop_data, void *user_data)
#endif
{ {
struct eloop_timeout *timeout, *tmp; struct eloop_timeout *timeout, *tmp;
os_time_t now_sec; os_time_t now_sec;
#ifdef ELOOP_DEBUG
int count = 0;
#endif
timeout = os_zalloc(sizeof(*timeout)); timeout = os_zalloc(sizeof(*timeout));
if (timeout == NULL) if (timeout == NULL)
@@ -84,6 +97,10 @@ int eloop_register_timeout(unsigned int secs, unsigned int usecs,
timeout->eloop_data = eloop_data; timeout->eloop_data = eloop_data;
timeout->user_data = user_data; timeout->user_data = user_data;
timeout->handler = handler; timeout->handler = handler;
#ifdef ELOOP_DEBUG
os_strlcpy(timeout->func_name, func, 100);
timeout->line = line;
#endif
/* Maintain timeouts in order of increasing time */ /* Maintain timeouts in order of increasing time */
dl_list_for_each(tmp, &eloop.timeout, struct eloop_timeout, list) { dl_list_for_each(tmp, &eloop.timeout, struct eloop_timeout, list) {
@@ -93,12 +110,19 @@ int eloop_register_timeout(unsigned int secs, unsigned int usecs,
ELOOP_UNLOCK(); ELOOP_UNLOCK();
goto run; goto run;
} }
#ifdef ELOOP_DEBUG
count++;
#endif
} }
ELOOP_LOCK(); ELOOP_LOCK();
dl_list_add_tail(&eloop.timeout, &timeout->list); dl_list_add_tail(&eloop.timeout, &timeout->list);
ELOOP_UNLOCK(); ELOOP_UNLOCK();
run: run:
#ifdef ELOOP_DEBUG
wpa_printf(MSG_DEBUG, "ELOOP: Added one timer from %s:%d to call %p, current order=%d",
timeout->func_name, line, timeout->handler, count);
#endif
os_timer_disarm(&eloop.eloop_timer); os_timer_disarm(&eloop.eloop_timer);
os_timer_arm(&eloop.eloop_timer, 0, 0); os_timer_arm(&eloop.eloop_timer, 0, 0);
@@ -126,8 +150,13 @@ static void eloop_remove_timeout(struct eloop_timeout *timeout)
} }
#ifdef ELOOP_DEBUG
int eloop_cancel_timeout_debug(eloop_timeout_handler handler, void *eloop_data,
void *user_data, const char *func, int line)
#else
int eloop_cancel_timeout(eloop_timeout_handler handler, int eloop_cancel_timeout(eloop_timeout_handler handler,
void *eloop_data, void *user_data) void *eloop_data, void *user_data)
#endif
{ {
struct eloop_timeout *timeout, *prev; struct eloop_timeout *timeout, *prev;
int removed = 0; int removed = 0;
@@ -143,6 +172,10 @@ int eloop_cancel_timeout(eloop_timeout_handler handler,
removed++; removed++;
} }
} }
#ifdef ELOOP_DEBUG
wpa_printf(MSG_DEBUG, "ELOOP: %s:%d called to remove timer handler=%p, removed count=%d",
func, line, handler, removed);
#endif
return removed; return removed;
} }
@@ -286,7 +319,16 @@ void eloop_run(void)
void *user_data = timeout->user_data; void *user_data = timeout->user_data;
eloop_timeout_handler handler = eloop_timeout_handler handler =
timeout->handler; timeout->handler;
#ifdef ELOOP_DEBUG
char fn_name[100] = {0};
int line = timeout->line;
os_strlcpy(fn_name, timeout->func_name, 100);
#endif
eloop_remove_timeout(timeout); eloop_remove_timeout(timeout);
#ifdef ELOOP_DEBUG
wpa_printf(MSG_DEBUG, "ELOOP: Running timer fn:%p scheduled by %s:%d ",
handler, fn_name, line);
#endif
handler(eloop_data, user_data); handler(eloop_data, user_data);
} }
} }

View File

@@ -11,6 +11,9 @@
#if CONFIG_WPA_DEBUG_PRINT #if CONFIG_WPA_DEBUG_PRINT
#define DEBUG_PRINT #define DEBUG_PRINT
#if defined(CONFIG_LOG_DEFAULT_LEVEL_DEBUG) || defined(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE)
#define ELOOP_DEBUG
#endif
#endif #endif
#if CONFIG_WPA_SCAN_CACHE #if CONFIG_WPA_SCAN_CACHE

View File

@@ -24,7 +24,6 @@
#include "os.h" #include "os.h"
#include <stdlib.h> #include <stdlib.h>
#include <time.h>
#include <unistd.h> #include <unistd.h>
#include <sys/time.h> #include <sys/time.h>
#include "esp_random.h" #include "esp_random.h"

View File

@@ -176,9 +176,19 @@ void eloop_unregister_event(void *event, size_t event_size);
* Register a timeout that will cause the handler function to be called after * Register a timeout that will cause the handler function to be called after
* given time. * given time.
*/ */
#ifdef ELOOP_DEBUG
int eloop_register_timeout_debug(unsigned int secs, unsigned int usecs,
eloop_timeout_handler handler, void *eloop_data,
void *user_data, const char *func, int line);
#define eloop_register_timeout(secs, usecs, handler, eloop_data, user_data) \
eloop_register_timeout_debug(secs, usecs, handler, eloop_data, user_data, __func__, __LINE__)
#else
int eloop_register_timeout(unsigned int secs, unsigned int usecs, int eloop_register_timeout(unsigned int secs, unsigned int usecs,
eloop_timeout_handler handler, eloop_timeout_handler handler,
void *eloop_data, void *user_data); void *eloop_data, void *user_data);
#endif
/** /**
* eloop_cancel_timeout - Cancel timeouts * eloop_cancel_timeout - Cancel timeouts
@@ -191,8 +201,15 @@ int eloop_register_timeout(unsigned int secs, unsigned int usecs,
* eloop_register_timeout(). ELOOP_ALL_CTX can be used as a wildcard for * eloop_register_timeout(). ELOOP_ALL_CTX can be used as a wildcard for
* cancelling all timeouts regardless of eloop_data/user_data. * cancelling all timeouts regardless of eloop_data/user_data.
*/ */
#ifdef ELOOP_DEBUG
int eloop_cancel_timeout_debug(eloop_timeout_handler handler, void *eloop_data,
void *user_data, const char *func, int line);
#define eloop_cancel_timeout(handler, eloop_data, user_data) \
eloop_cancel_timeout_debug(handler, eloop_data, user_data, __func__, __LINE__)
#else
int eloop_cancel_timeout(eloop_timeout_handler handler, int eloop_cancel_timeout(eloop_timeout_handler handler,
void *eloop_data, void *user_data); void *eloop_data, void *user_data);
#endif
/** /**
* eloop_cancel_timeout_one - Cancel a single timeout * eloop_cancel_timeout_one - Cancel a single timeout

View File

@@ -16,6 +16,7 @@
#include "esp_log.h" #include "esp_log.h"
#include "test_utils.h" #include "test_utils.h"
#include "memory_checks.h" #include "memory_checks.h"
#include <time.h>
uint32_t timeouts_usec[6] = { 10000, 1000, 10000, 5000, 15000, 1000 }; uint32_t timeouts_usec[6] = { 10000, 1000, 10000, 5000, 15000, 1000 };
uint32_t timeouts_sec[6] = { 10, 1, 10, 5, 15, 1 }; uint32_t timeouts_sec[6] = { 10, 1, 10, 5, 15, 1 };
@@ -23,6 +24,7 @@ int executed_order[6];
int t; int t;
struct os_reltime ts; struct os_reltime ts;
/* there is only single instance of esp_timer so no need of protection */ /* there is only single instance of esp_timer so no need of protection */
void callback(void *a, void *b) void callback(void *a, void *b)
{ {
@@ -32,15 +34,19 @@ void callback(void *a, void *b)
os_get_reltime(&now); os_get_reltime(&now);
os_time_sub(&now, &ts, &age); os_time_sub(&now, &ts, &age);
/* let's give 5 ms offset for this small block */ int32_t ms_diff = (age.sec - timeouts_sec[*i]) * 1000 +
if ((age.sec - timeouts_sec[*i]) || age.usec - timeouts_usec[*i] > 5000) { (age.usec - timeouts_usec[*i]) / 1000;
/* let's give 50 ms offset for this small block */
if (ms_diff > 50) {
executed_order[t] = -1; executed_order[t] = -1;
} else { } else {
executed_order[t] = *i; executed_order[t] = *i;
} }
t++; t++;
ESP_LOGI("Eloop Test", "timer ran after %lu sec and %lu usec of scheduled time", age.sec - timeouts_sec[*i], age.usec - timeouts_usec[*i]); ESP_LOGI("Eloop Test", "timer[%d] ran after %d msec of scheduled time",
*i, ms_diff);
} }