Re: [ovs-dev] [PATCH branch-2.12] pinctrl: Fix DNS packet parsing

2019-09-12 Thread Dumitru Ceara
On Wed, Aug 28, 2019 at 9:39 PM Ben Pfaff wrote: > > On Fri, Aug 16, 2019 at 04:35:52PM +0200, Dumitru Ceara wrote: > > Please backport this to 2.11, 2.10, 2.9 at least. > > Done. Thank you! ___ dev mailing list d...@openvswitch.org https://mail.openvsw

Re: [ovs-dev] [PATCH branch-2.12] pinctrl: Fix DNS packet parsing

2019-08-28 Thread Ben Pfaff
On Fri, Aug 16, 2019 at 04:35:52PM +0200, Dumitru Ceara wrote: > Please backport this to 2.11, 2.10, 2.9 at least. Done. ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] [PATCH branch-2.12] pinctrl: Fix DNS packet parsing

2019-08-23 Thread Dumitru Ceara
On Fri, Aug 16, 2019 at 4:35 PM Dumitru Ceara wrote: > > On Fri, Aug 16, 2019 at 4:32 PM Dumitru Ceara wrote: > > > > From: Dumitru Ceara > > > > Due to the use of a uint8_t to index inside the DNS payload we could end > > up in an infinite loop when specific (invalid) DNS packets were > > proce

Re: [ovs-dev] [PATCH branch-2.12] pinctrl: Fix DNS packet parsing

2019-08-19 Thread 0-day Robot
Bleep bloop. Greetings Dumitru Ceara, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. checkpatch: WARNING: Unexpected sign-offs from developers who are not authors or co-authors or committers

Re: [ovs-dev] [PATCH branch-2.12] pinctrl: Fix DNS packet parsing

2019-08-16 Thread Dumitru Ceara
On Fri, Aug 16, 2019 at 4:32 PM Dumitru Ceara wrote: > > From: Dumitru Ceara > > Due to the use of a uint8_t to index inside the DNS payload we could end > up in an infinite loop when specific (invalid) DNS packets were > processed by ovn-controller. In the infinite loop we keep increasing the >

[ovs-dev] [PATCH branch-2.12] pinctrl: Fix DNS packet parsing

2019-08-16 Thread Dumitru Ceara
From: Dumitru Ceara Due to the use of a uint8_t to index inside the DNS payload we could end up in an infinite loop when specific (invalid) DNS packets were processed by ovn-controller. In the infinite loop we keep increasing the query_name dynamic string until running out of memory. One way to