Skip to content
Snippets Groups Projects
Commit 70c245d5 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

modupd: fix heap-buffer-overflow for XDP access

parent c7e82db6
No related branches found
No related tags found
No related merge requests found
Pipeline #63376 failed
......@@ -60,8 +60,9 @@ int noudp_load(knotd_mod_t *mod)
ctx->rate = conf.single.integer;
if (ctx->rate > 0) {
knotd_conf_t udp = knotd_conf_env(mod, KNOTD_CONF_ENV_WORKERS_UDP);
knotd_conf_t tcp = knotd_conf_env(mod, KNOTD_CONF_ENV_WORKERS_TCP);
knotd_conf_t xdp = knotd_conf_env(mod, KNOTD_CONF_ENV_WORKERS_XDP);
size_t workers = udp.single.integer + xdp.single.integer;
size_t workers = udp.single.integer + tcp.single.integer + xdp.single.integer;
ctx->counters = calloc(workers, sizeof(uint32_t));
if (ctx->counters == NULL) {
free(ctx);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment