Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ipvs: initialize tbl->entries in ip_vs_lblc_init_svc()

Similarly, tbl->entries is not initialized after kmalloc(),
therefore causes an uninit-value warning in ip_vs_lblc_check_expire(),
as reported by syzbot.

Reported-by: <syzbot+3e9695f147fb529aa9bc@syzkaller.appspotmail.com>
Cc: Simon Horman <horms@verge.net.au>
Cc: Julian Anastasov <ja@ssi.bg>
Cc: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Acked-by: Julian Anastasov <ja@ssi.bg>
Acked-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

authored by

Cong Wang and committed by
Pablo Neira Ayuso
8b2ebb6c 3aa1409a

+1
+1
net/netfilter/ipvs/ip_vs_lblc.c
··· 372 372 tbl->counter = 1; 373 373 tbl->dead = false; 374 374 tbl->svc = svc; 375 + atomic_set(&tbl->entries, 0); 375 376 376 377 /* 377 378 * Hook periodic timer for garbage collection