Re: [PATCH v3 0/3] Remove all strcpy() uses

2021-08-30 Thread ahmad almhmwd

Re: [PATCH v3 0/3] Remove all strcpy() uses

2021-08-05 Thread Andy Shevchenko
+Cc: David, Daniel, Noralf. The idea is to move fbtft under drivers/fbdev on the same terms, i.e. no acceptance of the new drivers there. The rationale is that for some of the panels it (fbtft) will be the only driver and nobody will convert it to tiny DRM. See more below. On Thu, Aug 5, 2021 at

Re: [PATCH v3 0/3] Remove all strcpy() uses

2021-08-05 Thread Greg Kroah-Hartman
On Thu, Aug 05, 2021 at 02:30:35PM +0300, Andy Shevchenko wrote: > On Thu, Aug 5, 2021 at 2:18 PM Greg Kroah-Hartman > wrote: > > On Sun, Aug 01, 2021 at 02:40:40PM +0300, Andy Shevchenko wrote: > > > On Sun, Aug 1, 2021 at 11:53 AM Len Baker wrote: > > > > > > > > strcpy() performs no bounds che

Re: [PATCH v3 0/3] Remove all strcpy() uses

2021-08-05 Thread Andy Shevchenko
On Thu, Aug 5, 2021 at 2:18 PM Greg Kroah-Hartman wrote: > On Sun, Aug 01, 2021 at 02:40:40PM +0300, Andy Shevchenko wrote: > > On Sun, Aug 1, 2021 at 11:53 AM Len Baker wrote: > > > > > > strcpy() performs no bounds checking on the destination buffer. This > > > could result in linear overflows

Re: [PATCH v3 0/3] Remove all strcpy() uses

2021-08-05 Thread Greg Kroah-Hartman
On Sun, Aug 01, 2021 at 02:40:40PM +0300, Andy Shevchenko wrote: > On Sun, Aug 1, 2021 at 11:53 AM Len Baker wrote: > > > > strcpy() performs no bounds checking on the destination buffer. This > > could result in linear overflows beyond the end of the buffer, leading > > to all kinds of misbehavio

Re: [PATCH v3 0/3] Remove all strcpy() uses

2021-08-01 Thread Len Baker
Hi Andy, On Sun, Aug 01, 2021 at 02:40:40PM +0300, Andy Shevchenko wrote: > On Sun, Aug 1, 2021 at 11:53 AM Len Baker wrote: > > > > strcpy() performs no bounds checking on the destination buffer. This > > could result in linear overflows beyond the end of the buffer, leading > > to all kinds of

Re: [PATCH v3 0/3] Remove all strcpy() uses

2021-08-01 Thread Andy Shevchenko
On Sun, Aug 1, 2021 at 11:53 AM Len Baker wrote: > > strcpy() performs no bounds checking on the destination buffer. This > could result in linear overflows beyond the end of the buffer, leading > to all kinds of misbehaviors. So, this serie removes all strcpy uses > from the "staging/fbtft" subsy

[PATCH v3 0/3] Remove all strcpy() uses

2021-08-01 Thread Len Baker
strcpy() performs no bounds checking on the destination buffer. This could result in linear overflows beyond the end of the buffer, leading to all kinds of misbehaviors. So, this serie removes all strcpy uses from the "staging/fbtft" subsystem. Also, refactor the code a bit to follow the kernel co