All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/6] KEXEC_SIG with appended signature
@ 2021-11-25 18:02 ` Michal Suchanek
  0 siblings, 0 replies; 68+ messages in thread
From: Michal Suchanek @ 2021-11-25 18:02 UTC (permalink / raw)
  To: keyrings
  Cc: Nayna, Mimi Zohar, David Howells, Paul Mackerras,
	Alexander Gordeev, Rob Herring, Herbert Xu, Baoquan He,
	Christian Borntraeger, James Morris, Lakshmi Ramasubramanian,
	Michal Suchanek, Serge E. Hallyn, Vasily Gorbik, linux-s390,
	Heiko Carstens, linux-crypto, Dmitry Kasatkin, Hari Bathini,
	Daniel Axtens, Christian Borntraeger, Philipp Rudo,
	Frank van der Linden, kexec, linux-kernel, Luis Chamberlain,
	Sven Schnelle, linux-security-module, Jessica Yu,
	linux-integrity, linuxppc-dev, David S. Miller,
	Thiago Jung Bauermann, buendgen

Hello,

This is resend of the KEXEC_SIG patchset.

The first patch is new because it'a a cleanup that does not require any
change to the module verification code.

The second patch is the only one that is intended to change any
functionality.

The rest only deduplicates code but I did not receive any review on that
part so I don't know if it's desirable as implemented.

The first two patches can be applied separately without the rest.

Thanks

Michal

Michal Suchanek (6):
  s390/kexec_file: Don't opencode appended signature check.
  powerpc/kexec_file: Add KEXEC_SIG support.
  kexec_file: Don't opencode appended signature verification.
  module: strip the signature marker in the verification function.
  module: Use key_being_used_for for log messages in
    verify_appended_signature
  module: Move duplicate mod_check_sig users code to mod_parse_sig

 arch/powerpc/Kconfig                     | 11 +++++
 arch/powerpc/kexec/elf_64.c              | 14 ++++++
 arch/s390/kernel/machine_kexec_file.c    | 42 ++----------------
 crypto/asymmetric_keys/asymmetric_type.c |  1 +
 include/linux/module_signature.h         |  1 +
 include/linux/verification.h             |  4 ++
 kernel/module-internal.h                 |  2 -
 kernel/module.c                          | 12 +++--
 kernel/module_signature.c                | 56 +++++++++++++++++++++++-
 kernel/module_signing.c                  | 33 +++++++-------
 security/integrity/ima/ima_modsig.c      | 22 ++--------
 11 files changed, 113 insertions(+), 85 deletions(-)

-- 
2.31.1


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

end of thread, other threads:[~2021-12-13 18:18 UTC | newest]

Thread overview: 68+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-25 18:02 [PATCH v2 0/6] KEXEC_SIG with appended signature Michal Suchanek
2021-11-25 18:02 ` Michal Suchanek
2021-11-25 18:02 ` Michal Suchanek
2021-11-25 18:02 ` [PATCH v2 1/6] s390/kexec_file: Don't opencode appended signature check Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-11-25 18:02 ` [PATCH v2 2/6] powerpc/kexec_file: Add KEXEC_SIG support Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-12-09  1:51   ` Nayna
2021-12-09  9:21     ` Michal Suchánek
2021-12-09  9:21       ` Michal Suchánek
2021-12-09  9:21       ` Michal Suchánek
2021-12-09 21:53       ` Nayna
2021-12-09 21:53         ` Nayna
2021-12-09 21:53         ` Nayna
2021-12-11 23:37   ` Nayna
2021-12-13  0:46   ` Nayna
2021-12-13  0:46     ` Nayna
2021-12-13  0:46     ` Nayna
2021-12-13 18:18     ` Michal Suchánek
2021-12-13 18:18       ` Michal Suchánek
2021-12-13 18:18       ` Michal Suchánek
2021-11-25 18:02 ` [PATCH v2 3/6] kexec_file: Don't opencode appended signature verification Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-11-25 18:02 ` [PATCH v2 4/6] module: strip the signature marker in the verification function Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-12-07 16:11   ` Philipp Rudo
2021-12-07 16:11     ` Philipp Rudo
2021-12-07 16:11     ` Philipp Rudo
2021-11-25 18:02 ` [PATCH v2 5/6] module: Use key_being_used_for for log messages in verify_appended_signature Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-11-25 18:02 ` [PATCH v2 6/6] module: Move duplicate mod_check_sig users code to mod_parse_sig Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-11-25 18:02   ` Michal Suchanek
2021-12-07 16:10   ` Philipp Rudo
2021-12-07 16:10     ` Philipp Rudo
2021-12-07 16:10     ` Philipp Rudo
2021-12-13 18:06     ` Michal Suchánek
2021-12-13 18:06       ` Michal Suchánek
2021-12-13 18:06       ` Michal Suchánek
2021-11-30 15:28 ` [PATCH v2 0/6] KEXEC_SIG with appended signature Heiko Carstens
2021-11-30 15:28   ` Heiko Carstens
2021-11-30 15:28   ` Heiko Carstens
2021-12-01  2:37 ` Baoquan He
2021-12-01  2:37   ` Baoquan He
2021-12-01  2:37   ` Baoquan He
2021-12-01 11:48   ` Michal Suchánek
2021-12-01 11:48     ` Michal Suchánek
2021-12-01 11:48     ` Michal Suchánek
2021-12-07 16:10 ` Philipp Rudo
2021-12-07 16:10   ` Philipp Rudo
2021-12-07 16:10   ` Philipp Rudo
2021-12-07 17:32   ` Michal Suchánek
2021-12-07 17:32     ` Michal Suchánek
2021-12-07 17:32     ` Michal Suchánek
2021-12-08  9:54     ` Philipp Rudo
2021-12-08  9:54       ` Philipp Rudo
2021-12-08  9:54       ` Philipp Rudo
2021-12-09  1:50 ` Nayna
2021-12-09  1:50   ` Nayna
2021-12-09  1:50   ` Nayna
2021-12-09 14:57   ` Michal Suchánek
2021-12-09 14:57     ` Michal Suchánek
2021-12-09 14:57     ` Michal Suchánek

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.