All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] docs: deprecated.rst: Clarify open-coded arithmetic with literals
@ 2021-09-25 14:34 Len Baker
  2021-10-20 23:52 ` Gustavo A. R. Silva
  2021-10-26 15:44 ` Jonathan Corbet
  0 siblings, 2 replies; 4+ messages in thread
From: Len Baker @ 2021-09-25 14:34 UTC (permalink / raw)
  To: Jonathan Corbet, Kees Cook
  Cc: Len Baker, Gustavo A. R. Silva, Joe Perches, linux-doc,
	linux-kernel, linux-hardening

Although using literals for size calculation in allocator arguments may
be harmless due to compiler warnings in case of overflows, it is better
to refactor the code to avoid the use of open-coded arithmetic.

So, clarify the preferred way in these cases.

Suggested-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Len Baker <len.baker@gmx.com>
---
Changelog v1 -> v2
 - Clarify the sentence by changing "keep <foo> out" with "avoid <foo>"
   (Joe Perches).

Changelog v2 -> v3
 - Reword the sentence to comunicate better (Jonathan Corbet).

The previous version can be found here [1].

[1] https://lore.kernel.org/linux-hardening/20210829144716.2931-1-len.baker@gmx.com/

 Documentation/process/deprecated.rst | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Documentation/process/deprecated.rst b/Documentation/process/deprecated.rst
index 8ced754a5a0f..388cb19f5dbb 100644
--- a/Documentation/process/deprecated.rst
+++ b/Documentation/process/deprecated.rst
@@ -59,8 +59,9 @@ risk of them overflowing. This could lead to values wrapping around and a
 smaller allocation being made than the caller was expecting. Using those
 allocations could lead to linear overflows of heap memory and other
 misbehaviors. (One exception to this is literal values where the compiler
-can warn if they might overflow. Though using literals for arguments as
-suggested below is also harmless.)
+can warn if they might overflow. However, the preferred way in these
+cases is to refactor the code as suggested below to avoid the open-coded
+arithmetic.)

 For example, do not use ``count * size`` as an argument, as in::

--
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] docs: deprecated.rst: Clarify open-coded arithmetic with literals
  2021-09-25 14:34 [PATCH v3] docs: deprecated.rst: Clarify open-coded arithmetic with literals Len Baker
@ 2021-10-20 23:52 ` Gustavo A. R. Silva
  2021-10-26 15:44 ` Jonathan Corbet
  1 sibling, 0 replies; 4+ messages in thread
From: Gustavo A. R. Silva @ 2021-10-20 23:52 UTC (permalink / raw)
  To: Len Baker
  Cc: Jonathan Corbet, Kees Cook, Joe Perches, linux-doc, linux-kernel,
	linux-hardening

On Sat, Sep 25, 2021 at 04:34:55PM +0200, Len Baker wrote:
> Although using literals for size calculation in allocator arguments may
> be harmless due to compiler warnings in case of overflows, it is better
> to refactor the code to avoid the use of open-coded arithmetic.
> 
> So, clarify the preferred way in these cases.
> 
> Suggested-by: Kees Cook <keescook@chromium.org>
> Signed-off-by: Len Baker <len.baker@gmx.com>

This looks good to me.

Reviewed-by: Gustavo A. R. Silva <gustavoars@kernel.org>

Thanks
--
Gustavo

> ---
> Changelog v1 -> v2
>  - Clarify the sentence by changing "keep <foo> out" with "avoid <foo>"
>    (Joe Perches).
> 
> Changelog v2 -> v3
>  - Reword the sentence to comunicate better (Jonathan Corbet).
> 
> The previous version can be found here [1].
> 
> [1] https://lore.kernel.org/linux-hardening/20210829144716.2931-1-len.baker@gmx.com/
> 
>  Documentation/process/deprecated.rst | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/process/deprecated.rst b/Documentation/process/deprecated.rst
> index 8ced754a5a0f..388cb19f5dbb 100644
> --- a/Documentation/process/deprecated.rst
> +++ b/Documentation/process/deprecated.rst
> @@ -59,8 +59,9 @@ risk of them overflowing. This could lead to values wrapping around and a
>  smaller allocation being made than the caller was expecting. Using those
>  allocations could lead to linear overflows of heap memory and other
>  misbehaviors. (One exception to this is literal values where the compiler
> -can warn if they might overflow. Though using literals for arguments as
> -suggested below is also harmless.)
> +can warn if they might overflow. However, the preferred way in these
> +cases is to refactor the code as suggested below to avoid the open-coded
> +arithmetic.)
> 
>  For example, do not use ``count * size`` as an argument, as in::
> 
> --
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] docs: deprecated.rst: Clarify open-coded arithmetic with literals
  2021-09-25 14:34 [PATCH v3] docs: deprecated.rst: Clarify open-coded arithmetic with literals Len Baker
  2021-10-20 23:52 ` Gustavo A. R. Silva
@ 2021-10-26 15:44 ` Jonathan Corbet
  2021-10-26 17:05   ` Gustavo A. R. Silva
  1 sibling, 1 reply; 4+ messages in thread
From: Jonathan Corbet @ 2021-10-26 15:44 UTC (permalink / raw)
  To: Len Baker, Kees Cook
  Cc: Len Baker, Gustavo A. R. Silva, Joe Perches, linux-doc,
	linux-kernel, linux-hardening

Len Baker <len.baker@gmx.com> writes:

> Although using literals for size calculation in allocator arguments may
> be harmless due to compiler warnings in case of overflows, it is better
> to refactor the code to avoid the use of open-coded arithmetic.
>
> So, clarify the preferred way in these cases.
>
> Suggested-by: Kees Cook <keescook@chromium.org>
> Signed-off-by: Len Baker <len.baker@gmx.com>
> ---
> Changelog v1 -> v2
>  - Clarify the sentence by changing "keep <foo> out" with "avoid <foo>"
>    (Joe Perches).
>
> Changelog v2 -> v3
>  - Reword the sentence to comunicate better (Jonathan Corbet).
>
> The previous version can be found here [1].
>
> [1] https://lore.kernel.org/linux-hardening/20210829144716.2931-1-len.baker@gmx.com/

Applied, thanks.

jon

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] docs: deprecated.rst: Clarify open-coded arithmetic with literals
  2021-10-26 15:44 ` Jonathan Corbet
@ 2021-10-26 17:05   ` Gustavo A. R. Silva
  0 siblings, 0 replies; 4+ messages in thread
From: Gustavo A. R. Silva @ 2021-10-26 17:05 UTC (permalink / raw)
  To: Jonathan Corbet
  Cc: Len Baker, Kees Cook, Joe Perches, linux-doc, linux-kernel,
	linux-hardening

On Tue, Oct 26, 2021 at 09:44:14AM -0600, Jonathan Corbet wrote:
[..]
> >  - Reword the sentence to comunicate better (Jonathan Corbet).
> >
> > The previous version can be found here [1].
> >
> > [1] https://lore.kernel.org/linux-hardening/20210829144716.2931-1-len.baker@gmx.com/
> 
> Applied, thanks.

Thanks, Jonathan.
--
Gustavo

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-10-26 17:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-25 14:34 [PATCH v3] docs: deprecated.rst: Clarify open-coded arithmetic with literals Len Baker
2021-10-20 23:52 ` Gustavo A. R. Silva
2021-10-26 15:44 ` Jonathan Corbet
2021-10-26 17:05   ` Gustavo A. R. Silva

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.