All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/8] kexec/firmware: support system wide policy requiring signatures
@ 2018-05-29 18:01 ` Mimi Zohar
  0 siblings, 0 replies; 139+ messages in thread
From: Mimi Zohar @ 2018-05-29 18:01 UTC (permalink / raw)
  To: linux-integrity
  Cc: Mimi Zohar, linux-security-module, linux-kernel, David Howells,
	Luis R . Rodriguez, Eric Biederman, kexec, Andres Rodriguez,
	Greg Kroah-Hartman, Ard Biesheuvel

Instead of adding the security_kernel_read_file LSM hook - or defining a
wrapper for security_kernel_read_file LSM hook and adding it, or
renaming the existing hook to security_kernel_read_data() and adding it
- in places where the kernel isn't reading a file, this version of the
patch set defines a new LSM hook named security_kernel_load_data().

The new LSM hook does not replace the existing security_kernel_read_file
LSM hook, which is still needed, but defines a new LSM hook allowing
LSMs and IMA-appraisal the opportunity to fail loading userspace
provided file/data.

The only difference between the two LSM hooks is the LSM hook name and a
file descriptor.  Whether this is cause enough for requiring a new LSM
hook, is left to the security community.

---

IMA-appraisal is mostly being used in the embedded or single purpose
closed system environments.  In these environments, both the Kconfig
options and the userspace tools can be modified appropriately to limit
syscalls.  For stock kernels, userspace applications need to continue to
work with older kernels as well as with newer kernels.

In this environment, the customer needs the ability to define a system
wide IMA policy, such as requiring all kexec'ed images, firmware, kernel
modules to be signed, without being dependent on either the Kconfig
options or the userspace tools.[1]

This patch set allows the customer to define a policy which requires
the kexec'ed kernel images, firmware, and/or kernel modules to be
signed.

In addition, this patch set includes the ability to configure a build
time IMA policy, which is automatically loaded at run time without
needing to specify it on the boot command line and persists after
loading a custom kernel policy.

[1] kexec-tools suupports the new syscall based on a flag (-s).

Changelog v4:
- Define a new LSM hook named security_kernel_load_data().
- Define kernel_load_data_id enumeration.
- Replace the existing LSM hook in init_module syscall.

Changelog v3:
Based on James' feedback:
- Renamed security_kernel_read_file() to security_kernel_read_data().
- Defined new kernel_load_data_id enumeration.
- Cleaned up ima_read_data(), replacing if's with switch.

Changelog v2:
- combined "kexec: limit kexec_load syscall" and "firmware: kernel
signature verification" patch sets.
- add support for build time policy.
- defined generic security_kernel_read_blob() wrapper for
  security_kernel_read_file(). Suggested by Luis.

Mimi Zohar (8):
  security: define new LSM hook named security_kernel_load_data
  kexec: add call to LSM hook in original kexec_load syscall
  ima: based on policy require signed kexec kernel images
  firmware: add call to LSM hook before firmware sysfs fallback
  ima: based on policy require signed firmware (sysfs fallback)
  ima: add build time policy
  ima: based on policy prevent loading firmware (pre-allocated buffer)
  module: replace the existing LSM hook in init_module

 drivers/base/firmware_loader/fallback.c |  7 +++
 include/linux/ima.h                     |  7 +++
 include/linux/lsm_hooks.h               |  6 +++
 include/linux/security.h                | 33 ++++++++++++++
 kernel/kexec.c                          |  8 ++++
 kernel/module.c                         |  2 +-
 security/integrity/ima/Kconfig          | 58 ++++++++++++++++++++++++
 security/integrity/ima/ima.h            |  1 +
 security/integrity/ima/ima_main.c       | 79 ++++++++++++++++++++++++---------
 security/integrity/ima/ima_policy.c     | 48 ++++++++++++++++++--
 security/security.c                     | 10 +++++
 security/selinux/hooks.c                | 26 ++++++++---
 12 files changed, 255 insertions(+), 30 deletions(-)
-- 
2.7.5


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

end of thread, other threads:[~2018-06-06 22:06 UTC | newest]

Thread overview: 139+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-29 18:01 [PATCH v4 0/8] kexec/firmware: support system wide policy requiring signatures Mimi Zohar
2018-05-29 18:01 ` Mimi Zohar
2018-05-29 18:01 ` Mimi Zohar
2018-05-29 18:01 ` [PATCH v4 1/8] security: define new LSM hook named security_kernel_load_data Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-06-04 19:59   ` Serge E. Hallyn
2018-06-04 19:59     ` Serge E. Hallyn
2018-06-04 19:59     ` Serge E. Hallyn
2018-05-29 18:01 ` [PATCH v4 2/8] kexec: add call to LSM hook in original kexec_load syscall Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-06-04 20:00   ` Serge E. Hallyn
2018-06-04 20:00     ` Serge E. Hallyn
2018-06-04 20:00     ` Serge E. Hallyn
2018-05-29 18:01 ` [PATCH v4 3/8] ima: based on policy require signed kexec kernel images Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-05-29 18:01 ` [PATCH v4 4/8] firmware: add call to LSM hook before firmware sysfs fallback Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-06-01 18:19   ` Luis R. Rodriguez
2018-06-01 18:19     ` Luis R. Rodriguez
2018-06-01 18:19     ` Luis R. Rodriguez
2018-05-29 18:01 ` [PATCH v4 5/8] ima: based on policy require signed firmware (sysfs fallback) Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-06-01 18:21   ` Luis R. Rodriguez
2018-06-01 18:21     ` Luis R. Rodriguez
2018-06-01 18:21     ` Luis R. Rodriguez
2018-06-01 22:39     ` Mimi Zohar
2018-06-01 22:39       ` Mimi Zohar
2018-06-01 22:39       ` Mimi Zohar
2018-06-01 22:39       ` Mimi Zohar
2018-06-01 22:46       ` Luis R. Rodriguez
2018-06-01 22:46         ` Luis R. Rodriguez
2018-06-01 22:46         ` Luis R. Rodriguez
2018-06-01 22:46         ` Luis R. Rodriguez
2018-06-01 23:04         ` Mimi Zohar
2018-06-01 23:04           ` Mimi Zohar
2018-06-01 23:04           ` Mimi Zohar
2018-06-01 23:04           ` Mimi Zohar
2018-05-29 18:01 ` [PATCH v4 6/8] ima: add build time policy Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-05-29 18:01 ` [RFC PATCH v4 7/8] ima: based on policy prevent loading firmware (pre-allocated buffer) Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-05-29 18:01   ` Mimi Zohar
2018-06-01 19:15   ` Luis R. Rodriguez
2018-06-01 19:15     ` Luis R. Rodriguez
2018-06-01 19:15     ` Luis R. Rodriguez
2018-06-01 19:25     ` Luis R. Rodriguez
2018-06-01 19:25       ` Luis R. Rodriguez
2018-06-01 19:25       ` Luis R. Rodriguez
2018-06-05 22:37       ` Kees Cook
2018-06-05 22:37         ` Kees Cook
2018-06-05 22:37         ` Kees Cook
2018-06-06  6:20         ` Ard Biesheuvel
2018-06-06  6:20           ` Ard Biesheuvel
2018-06-06  6:20           ` Ard Biesheuvel
2018-06-06 22:06           ` Luis R. Rodriguez
2018-06-06 22:06             ` Luis R. Rodriguez
2018-06-06 22:06             ` Luis R. Rodriguez
2018-05-29 18:02 ` [PATCH v4 8/8] module: replace the existing LSM hook in init_module Mimi Zohar
2018-05-29 18:02   ` Mimi Zohar
2018-05-29 18:02   ` Mimi Zohar
2018-05-29 22:39   ` Paul Moore
2018-05-29 22:39     ` Paul Moore
2018-05-29 22:39     ` Paul Moore
2018-05-29 23:14     ` Mimi Zohar
2018-05-29 23:14       ` Mimi Zohar
2018-05-29 23:14       ` Mimi Zohar
2018-05-29 23:14       ` Mimi Zohar
2018-05-30 21:00       ` Paul Moore
2018-05-30 21:00         ` Paul Moore
2018-05-30 21:00         ` Paul Moore
2018-05-31 15:23         ` [PATCH v4a " Mimi Zohar
2018-05-31 15:23           ` Mimi Zohar
2018-05-31 15:23           ` Mimi Zohar
2018-06-01 22:28           ` Paul Moore
2018-06-01 22:28             ` Paul Moore
2018-06-01 22:28             ` Paul Moore
2018-06-04  9:19           ` Jessica Yu
2018-06-04  9:19             ` Jessica Yu
2018-06-04  9:19             ` Jessica Yu
2018-06-05 19:45           ` Kees Cook
2018-06-05 19:45             ` Kees Cook
2018-06-05 19:45             ` Kees Cook
2018-06-05 21:35             ` Mimi Zohar
2018-06-05 21:35               ` Mimi Zohar
2018-06-05 21:35               ` Mimi Zohar
2018-06-05 21:35               ` Mimi Zohar
2018-06-05 22:26               ` Kees Cook
2018-06-05 22:26                 ` Kees Cook
2018-06-05 22:26                 ` Kees Cook
2018-06-05 22:40                 ` Mimi Zohar
2018-06-05 22:40                   ` Mimi Zohar
2018-06-05 22:40                   ` Mimi Zohar
2018-06-05 22:40                   ` Mimi Zohar
2018-05-29 23:25     ` [PATCH v4 " Mimi Zohar
2018-05-29 23:25       ` Mimi Zohar
2018-05-29 23:25       ` Mimi Zohar
2018-05-29 23:25       ` Mimi Zohar
2018-05-30  2:25     ` Eric W. Biederman
2018-05-30  2:25       ` Eric W. Biederman
2018-05-30  2:25       ` Eric W. Biederman
2018-05-30 21:09       ` Paul Moore
2018-05-30 21:09         ` Paul Moore
2018-05-30 21:09         ` Paul Moore
2018-06-04 14:03 ` [PATCH v4 0/8] kexec/firmware: support system wide policy requiring signatures Mimi Zohar
2018-06-04 14:03   ` Mimi Zohar
2018-06-04 14:03   ` Mimi Zohar
2018-06-04 14:03   ` Mimi Zohar
2018-06-04 19:32   ` Serge E. Hallyn
2018-06-04 19:32     ` Serge E. Hallyn
2018-06-04 19:32     ` Serge E. Hallyn
2018-06-04 19:32     ` Serge E. Hallyn
2018-06-04 19:53     ` Mimi Zohar
2018-06-04 19:53       ` Mimi Zohar
2018-06-04 19:53       ` Mimi Zohar
2018-06-04 19:53       ` Mimi Zohar
2018-06-04 22:03   ` Kees Cook
2018-06-04 22:03     ` Kees Cook
2018-06-04 22:03     ` Kees Cook
2018-06-05  4:09     ` Serge E. Hallyn
2018-06-05  4:09       ` Serge E. Hallyn
2018-06-05  4:09       ` Serge E. Hallyn
2018-06-05 12:19       ` Kees Cook
2018-06-05 12:19         ` Kees Cook
2018-06-05 12:19         ` Kees Cook
2018-06-05 13:25         ` Serge E. Hallyn
2018-06-05 13:25           ` Serge E. Hallyn
2018-06-05 13:25           ` Serge E. Hallyn
2018-06-05 13:43           ` Kees Cook
2018-06-05 13:43             ` Kees Cook
2018-06-05 13:43             ` Kees Cook
2018-06-05 14:05             ` Mimi Zohar
2018-06-05 14:05               ` Mimi Zohar
2018-06-05 14:05               ` Mimi Zohar

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.