public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/3] overflow: Introduce wrapping helpers
@ 2024-02-05  9:12 Kees Cook
  2024-02-05  9:12 ` [PATCH v3 1/3] overflow: Adjust check_*_overflow() kern-doc to reflect results Kees Cook
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Kees Cook @ 2024-02-05  9:12 UTC (permalink / raw)
  To: linux-hardening
  Cc: Kees Cook, Rasmus Villemoes, Gustavo A. R. Silva, Mark Rutland,
	Marco Elver, linux-kernel

Hi,

v3:
 - reduce patches to just docs and new helpers; we don't need pointer fixes yet.
v2: https://lore.kernel.org/all/20240130220218.it.154-kees@kernel.org/
v1: https://lore.kernel.org/lkml/20240129182845.work.694-kees@kernel.org/

In preparation for gaining instrumentation for signed[1], unsigned[2], and
pointer[3] wrap-around, expand the overflow header to include wrap-around
helpers that can be used to annotate arithmetic where wrapped calculations
are expected (e.g. atomics).

After spending time getting the unsigned integer wrap-around sanitizer
running warning-free on a basic x86_64 boot[4], I think the *_wrap()
helpers first argument being the output type makes the most sense (as
suggested by Rasmus).

-Kees

Link: https://github.com/KSPP/linux/issues/26 [1]
Link: https://github.com/KSPP/linux/issues/27 [2]
Link: https://github.com/KSPP/linux/issues/344 [3]
Link: https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git/log/?h=devel/overflow/enable-unsigned-sanitizer [4]

Kees Cook (3):
  overflow: Adjust check_*_overflow() kern-doc to reflect results
  overflow: Introduce add_wrap(), sub_wrap(), and mul_wrap()
  overflow: Introduce inc_wrap() and dec_wrap()

 include/linux/overflow.h | 100 ++++++++++++++++++++++++++++++++++-----
 lib/overflow_kunit.c     |  65 +++++++++++++++++++++++--
 2 files changed, 149 insertions(+), 16 deletions(-)

-- 
2.34.1


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

end of thread, other threads:[~2024-02-06 10:05 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-05  9:12 [PATCH v3 0/3] overflow: Introduce wrapping helpers Kees Cook
2024-02-05  9:12 ` [PATCH v3 1/3] overflow: Adjust check_*_overflow() kern-doc to reflect results Kees Cook
2024-02-05 20:00   ` Gustavo A. R. Silva
2024-02-05  9:12 ` [PATCH v3 2/3] overflow: Introduce add_wrap(), sub_wrap(), and mul_wrap() Kees Cook
2024-02-05 13:31   ` Marco Elver
2024-02-05 19:53     ` Gustavo A. R. Silva
2024-02-06 10:05     ` Kees Cook
2024-02-05 20:21   ` Eric Biggers
2024-02-05 22:44     ` Kees Cook
2024-02-05 23:17       ` Eric Biggers
2024-02-05 23:21         ` Kees Cook
2024-02-06  8:42           ` Rasmus Villemoes
2024-02-06 10:01             ` Kees Cook
2024-02-05  9:12 ` [PATCH v3 3/3] overflow: Introduce inc_wrap() and dec_wrap() Kees Cook

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox