All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH 0/3] safe_macros: Fix undefined behaviour in vararg handling
@ 2022-11-23 14:47 Tudor Cretu
  2022-11-23 14:47 ` [LTP] [PATCH 1/3] safe_open: " Tudor Cretu
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Tudor Cretu @ 2022-11-23 14:47 UTC (permalink / raw)
  To: ltp

Accessing elements in an empty va_list results in undefined behaviour[0]
that can include accessing arbitrary stack memory. While typically this
doesn't raise a fault, some new more security-oriented architectures
(e.g. CHERI[1] or Morello[2]) don't allow it.

Therefore, remove the variadicness from safe_* wrappers that always call
the functions with the optional argument included.

Adapt the respective SAFE_* macros to handle the change by passing a
default argument if they're omitted.

[0]: [ISO/IEC 9899:2011] Programming Languages—C, 3rd ed, paragraph 7.16.1.1
[1]: https://www.cl.cam.ac.uk/research/security/ctsrd/cheri/
[2]: https://www.morello-project.org/

Tudor Cretu (3):
  safe_open: Fix undefined behaviour in vararg handling
  safe_openat: Fix undefined behaviour in vararg handling
  safe_semctl: Fix undefined behaviour in vararg handling

 include/old/safe_macros.h   |  6 ++++--
 include/safe_macros_fn.h    |  3 ++-
 include/tst_safe_file_at.h  | 10 ++++++----
 include/tst_safe_macros.h   |  6 ++++--
 include/tst_safe_sysv_ipc.h | 14 +++++++++-----
 lib/safe_macros.c           | 13 +------------
 lib/tst_cgroup.c            |  2 +-
 lib/tst_safe_file_at.c      | 11 +++--------
 lib/tst_safe_sysv_ipc.c     | 10 +---------
 9 files changed, 31 insertions(+), 44 deletions(-)

-- 
2.25.1


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

end of thread, other threads:[~2022-11-29 12:02 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-23 14:47 [LTP] [PATCH 0/3] safe_macros: Fix undefined behaviour in vararg handling Tudor Cretu
2022-11-23 14:47 ` [LTP] [PATCH 1/3] safe_open: " Tudor Cretu
2022-11-23 14:47 ` [LTP] [PATCH 2/3] safe_openat: " Tudor Cretu
2022-11-23 14:47 ` [LTP] [PATCH 3/3] safe_semctl: " Tudor Cretu
2022-11-29 11:01 ` [LTP] [PATCH 0/3] safe_macros: " Petr Vorel
2022-11-29 11:06   ` Petr Vorel
2022-11-29 11:11     ` Richard Palethorpe
2022-11-29 11:27       ` Richard Palethorpe
2022-11-29 11:32         ` Petr Vorel
2022-11-29 11:46           ` Tudor Cretu
2022-11-29 12:01             ` Richard Palethorpe
2022-11-29 11:45   ` Tudor Cretu
2022-11-29 11:48 ` Cyril Hrubis

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.