Re: [Patch nf] ipvs: initialize tbl->entries after allocation
On Thu, Apr 26, 2018 at 02:14:25PM +0200, Simon Horman wrote: > On Tue, Apr 24, 2018 at 08:16:14AM +0300, Julian Anastasov wrote: > > > > Hello, > > > > On Mon, 23 Apr 2018, Cong Wang wrote: > > > > > 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: > > > Cc: Simon Horman > > > Cc: Julian Anastasov > > > Cc: Pablo Neira Ayuso > > > Signed-off-by: Cong Wang > > > > Thanks! > > > > Acked-by: Julian Anastasov > > Thanks. > > Pablo, could you take this into nf? > > Acked-by: Simon Horman Done, thanks Simon.
Re: [Patch nf] ipvs: initialize tbl->entries after allocation
On Tue, Apr 24, 2018 at 08:16:14AM +0300, Julian Anastasov wrote: > > Hello, > > On Mon, 23 Apr 2018, Cong Wang wrote: > > > 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: > > Cc: Simon Horman > > Cc: Julian Anastasov > > Cc: Pablo Neira Ayuso > > Signed-off-by: Cong Wang > > Thanks! > > Acked-by: Julian Anastasov Thanks. Pablo, could you take this into nf? Acked-by: Simon Horman > > > --- > > net/netfilter/ipvs/ip_vs_lblcr.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/net/netfilter/ipvs/ip_vs_lblcr.c > > b/net/netfilter/ipvs/ip_vs_lblcr.c > > index 92adc04557ed..bc2bc5eebcb8 100644 > > --- a/net/netfilter/ipvs/ip_vs_lblcr.c > > +++ b/net/netfilter/ipvs/ip_vs_lblcr.c > > @@ -534,6 +534,7 @@ static int ip_vs_lblcr_init_svc(struct ip_vs_service > > *svc) > > tbl->counter = 1; > > tbl->dead = false; > > tbl->svc = svc; > > + atomic_set(&tbl->entries, 0); > > > > /* > > *Hook periodic timer for garbage collection > > -- > > 2.13.0 > > Regards > > -- > Julian Anastasov >
Re: [Patch nf] ipvs: initialize tbl->entries after allocation
Hello, On Mon, 23 Apr 2018, Cong Wang wrote: > 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: > Cc: Simon Horman > Cc: Julian Anastasov > Cc: Pablo Neira Ayuso > Signed-off-by: Cong Wang Thanks! Acked-by: Julian Anastasov > --- > net/netfilter/ipvs/ip_vs_lblcr.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/net/netfilter/ipvs/ip_vs_lblcr.c > b/net/netfilter/ipvs/ip_vs_lblcr.c > index 92adc04557ed..bc2bc5eebcb8 100644 > --- a/net/netfilter/ipvs/ip_vs_lblcr.c > +++ b/net/netfilter/ipvs/ip_vs_lblcr.c > @@ -534,6 +534,7 @@ static int ip_vs_lblcr_init_svc(struct ip_vs_service *svc) > tbl->counter = 1; > tbl->dead = false; > tbl->svc = svc; > + atomic_set(&tbl->entries, 0); > > /* >*Hook periodic timer for garbage collection > -- > 2.13.0 Regards -- Julian Anastasov
[Patch nf] ipvs: initialize tbl->entries after allocation
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: Cc: Simon Horman Cc: Julian Anastasov Cc: Pablo Neira Ayuso Signed-off-by: Cong Wang --- net/netfilter/ipvs/ip_vs_lblcr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/netfilter/ipvs/ip_vs_lblcr.c b/net/netfilter/ipvs/ip_vs_lblcr.c index 92adc04557ed..bc2bc5eebcb8 100644 --- a/net/netfilter/ipvs/ip_vs_lblcr.c +++ b/net/netfilter/ipvs/ip_vs_lblcr.c @@ -534,6 +534,7 @@ static int ip_vs_lblcr_init_svc(struct ip_vs_service *svc) tbl->counter = 1; tbl->dead = false; tbl->svc = svc; + atomic_set(&tbl->entries, 0); /* *Hook periodic timer for garbage collection -- 2.13.0