Re: [PATCH 1/2] net: ipv6: router advertisement message length should be within limits

2023-07-27 Thread Tom Rini
On Thu, May 18, 2023 at 11:24:38AM -0700, emohand...@linux.microsoft.com wrote: > From: Ehsan Mohandesi > > The argument len passed to function process_ra is the length of the IPv6 > router advertisement message and needs to be between 0 and MTU because > it is assigned to remaining_option_len

Re: [PATCH 1/2] net: ipv6: router advertisement message length should be within limits

2023-06-10 Thread Ramon Fried
On Thu, May 18, 2023 at 9:24 PM wrote: > > From: Ehsan Mohandesi > > The argument len passed to function process_ra is the length of the IPv6 > router advertisement message and needs to be between 0 and MTU because > it is assigned to remaining_option_len and used as a loop variable. > >

Re: [PATCH 1/2] net: ipv6: router advertisement message length should be within limits

2023-05-19 Thread Vyacheslav V. Mitrofanov
On Thu, 2023-05-18 at 11:24 -0700, emohand...@linux.microsoft.com wrote: > > From: Ehsan Mohandesi > > The argument len passed to function process_ra is the length of the > IPv6 > router advertisement message and needs to be between 0 and MTU > because > it is assigned to remaining_option_len

[PATCH 1/2] net: ipv6: router advertisement message length should be within limits

2023-05-18 Thread emohandesi
From: Ehsan Mohandesi The argument len passed to function process_ra is the length of the IPv6 router advertisement message and needs to be between 0 and MTU because it is assigned to remaining_option_len and used as a loop variable. Addresses-Coverity-ID: 450971 ("TAINTED_SCALAR")