stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 5.10 00/20] Backport oops_limit to 5.10
@ 2023-01-24 19:29 Eric Biggers
  2023-01-24 19:29 ` [PATCH 5.10 01/20] sysctl: add a new register_sysctl_init() interface Eric Biggers
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: Eric Biggers @ 2023-01-24 19:29 UTC (permalink / raw)
  To: stable, Greg Kroah-Hartman
  Cc: Kees Cook, SeongJae Park, Seth Jenkins, Jann Horn,
	Eric W . Biederman, linux-hardening, linux-kernel

From: Eric Biggers <ebiggers@google.com>

This series backports the patchset
"exit: Put an upper limit on how often we can oops"
(https://lore.kernel.org/linux-mm/20221117233838.give.484-kees@kernel.org/T/#u)
to 5.10, as recommended at
https://googleprojectzero.blogspot.com/2023/01/exploiting-null-dereferences-in-linux.html

This required backporting various prerequisite patches.

I've tested that oops_limit and warn_limit work correctly on x86_64.

Eric W. Biederman (2):
  exit: Add and use make_task_dead.
  objtool: Add a missing comma to avoid string concatenation

Jann Horn (1):
  exit: Put an upper limit on how often we can oops

Kees Cook (8):
  panic: Separate sysctl logic from CONFIG_SMP
  exit: Expose "oops_count" to sysfs
  exit: Allow oops_limit to be disabled
  panic: Consolidate open-coded panic_on_warn checks
  panic: Introduce warn_limit
  panic: Expose "warn_count" to sysfs
  docs: Fix path paste-o for /sys/kernel/warn_count
  exit: Use READ_ONCE() for all oops/warn limit reads

Nathan Chancellor (3):
  hexagon: Fix function name in die()
  h8300: Fix build errors from do_exit() to make_task_dead() transition
  csky: Fix function name in csky_alignment() and die()

Randy Dunlap (1):
  ia64: make IA64_MCA_RECOVERY bool instead of tristate

Tiezhu Yang (3):
  panic: unset panic_on_warn inside panic()
  ubsan: no need to unset panic_on_warn in ubsan_epilogue()
  kasan: no need to unset panic_on_warn in end_report()

Xiaoming Ni (1):
  sysctl: add a new register_sysctl_init() interface

tangmeng (1):
  kernel/panic: move panic sysctls to its own file

 .../ABI/testing/sysfs-kernel-oops_count       |  6 ++
 .../ABI/testing/sysfs-kernel-warn_count       |  6 ++
 Documentation/admin-guide/sysctl/kernel.rst   | 19 ++++
 arch/alpha/kernel/traps.c                     |  6 +-
 arch/alpha/mm/fault.c                         |  2 +-
 arch/arm/kernel/traps.c                       |  2 +-
 arch/arm/mm/fault.c                           |  2 +-
 arch/arm64/kernel/traps.c                     |  2 +-
 arch/arm64/mm/fault.c                         |  2 +-
 arch/csky/abiv1/alignment.c                   |  2 +-
 arch/csky/kernel/traps.c                      |  2 +-
 arch/h8300/kernel/traps.c                     |  3 +-
 arch/h8300/mm/fault.c                         |  2 +-
 arch/hexagon/kernel/traps.c                   |  2 +-
 arch/ia64/Kconfig                             |  2 +-
 arch/ia64/kernel/mca_drv.c                    |  2 +-
 arch/ia64/kernel/traps.c                      |  2 +-
 arch/ia64/mm/fault.c                          |  2 +-
 arch/m68k/kernel/traps.c                      |  2 +-
 arch/m68k/mm/fault.c                          |  2 +-
 arch/microblaze/kernel/exceptions.c           |  4 +-
 arch/mips/kernel/traps.c                      |  2 +-
 arch/nds32/kernel/fpu.c                       |  2 +-
 arch/nds32/kernel/traps.c                     |  8 +-
 arch/nios2/kernel/traps.c                     |  4 +-
 arch/openrisc/kernel/traps.c                  |  2 +-
 arch/parisc/kernel/traps.c                    |  2 +-
 arch/powerpc/kernel/traps.c                   |  2 +-
 arch/riscv/kernel/traps.c                     |  2 +-
 arch/riscv/mm/fault.c                         |  2 +-
 arch/s390/kernel/dumpstack.c                  |  2 +-
 arch/s390/kernel/nmi.c                        |  2 +-
 arch/sh/kernel/traps.c                        |  2 +-
 arch/sparc/kernel/traps_32.c                  |  4 +-
 arch/sparc/kernel/traps_64.c                  |  4 +-
 arch/x86/entry/entry_32.S                     |  6 +-
 arch/x86/entry/entry_64.S                     |  6 +-
 arch/x86/kernel/dumpstack.c                   |  4 +-
 arch/xtensa/kernel/traps.c                    |  2 +-
 fs/proc/proc_sysctl.c                         | 33 +++++++
 include/linux/kernel.h                        |  7 +-
 include/linux/sched/task.h                    |  1 +
 include/linux/sysctl.h                        |  3 +
 kernel/exit.c                                 | 72 +++++++++++++++
 kernel/kcsan/report.c                         |  4 +-
 kernel/panic.c                                | 90 ++++++++++++++++---
 kernel/sched/core.c                           |  3 +-
 kernel/sysctl.c                               | 11 ---
 lib/ubsan.c                                   | 11 +--
 mm/kasan/report.c                             | 12 +--
 tools/objtool/check.c                         |  3 +-
 51 files changed, 277 insertions(+), 105 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-kernel-oops_count
 create mode 100644 Documentation/ABI/testing/sysfs-kernel-warn_count


base-commit: 179624a57b78c02de833370b7bdf0b0f4a27ca31
-- 
2.39.1


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

end of thread, other threads:[~2023-01-24 19:36 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-24 19:29 [PATCH 5.10 00/20] Backport oops_limit to 5.10 Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 01/20] sysctl: add a new register_sysctl_init() interface Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 02/20] kernel/panic: move panic sysctls to its own file Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 03/20] panic: unset panic_on_warn inside panic() Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 04/20] ubsan: no need to unset panic_on_warn in ubsan_epilogue() Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 05/20] kasan: no need to unset panic_on_warn in end_report() Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 06/20] exit: Add and use make_task_dead Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 07/20] objtool: Add a missing comma to avoid string concatenation Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 08/20] hexagon: Fix function name in die() Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 09/20] h8300: Fix build errors from do_exit() to make_task_dead() transition Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 10/20] csky: Fix function name in csky_alignment() and die() Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 11/20] ia64: make IA64_MCA_RECOVERY bool instead of tristate Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 12/20] panic: Separate sysctl logic from CONFIG_SMP Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 13/20] exit: Put an upper limit on how often we can oops Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 14/20] exit: Expose "oops_count" to sysfs Eric Biggers
2023-01-24 19:29 ` [PATCH 5.10 15/20] exit: Allow oops_limit to be disabled Eric Biggers
2023-01-24 19:30 ` [PATCH 5.10 16/20] panic: Consolidate open-coded panic_on_warn checks Eric Biggers
2023-01-24 19:30 ` [PATCH 5.10 17/20] panic: Introduce warn_limit Eric Biggers
2023-01-24 19:30 ` [PATCH 5.10 18/20] panic: Expose "warn_count" to sysfs Eric Biggers
2023-01-24 19:30 ` [PATCH 5.10 19/20] docs: Fix path paste-o for /sys/kernel/warn_count Eric Biggers
2023-01-24 19:30 ` [PATCH 5.10 20/20] exit: Use READ_ONCE() for all oops/warn limit reads Eric Biggers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).