All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] fsverity updates for 5.12
@ 2021-02-16 17:31 ` Eric Biggers
  0 siblings, 0 replies; 4+ messages in thread
From: Eric Biggers @ 2021-02-16 17:31 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-fscrypt, linux-ext4, linux-f2fs-devel, linux-fsdevel,
	linux-kernel, Theodore Ts'o, Jaegeuk Kim, Victor Hsieh

The following changes since commit 6ee1d745b7c9fd573fba142a2efdad76a9f1cb04:

  Linux 5.11-rc5 (2021-01-24 16:47:14 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git tags/fsverity-for-linus

for you to fetch changes up to 07c99001312cbf90a357d4877a358f796eede65b:

  fs-verity: support reading signature with ioctl (2021-02-07 14:51:19 -0800)

----------------------------------------------------------------

Add an ioctl which allows reading fs-verity metadata from a file.

This is useful when a file with fs-verity enabled needs to be served
somewhere, and the other end wants to do its own fs-verity compatible
verification of the file.  See the commit messages for details.

This new ioctl has been tested using new xfstests I've written for it.

----------------------------------------------------------------
Eric Biggers (6):
      fs-verity: factor out fsverity_get_descriptor()
      fs-verity: don't pass whole descriptor to fsverity_verify_signature()
      fs-verity: add FS_IOC_READ_VERITY_METADATA ioctl
      fs-verity: support reading Merkle tree with ioctl
      fs-verity: support reading descriptor with ioctl
      fs-verity: support reading signature with ioctl

 Documentation/filesystems/fsverity.rst |  76 +++++++++++++
 fs/ext4/ioctl.c                        |   7 ++
 fs/f2fs/file.c                         |  11 ++
 fs/verity/Makefile                     |   1 +
 fs/verity/fsverity_private.h           |  13 ++-
 fs/verity/open.c                       | 133 ++++++++++++++--------
 fs/verity/read_metadata.c              | 195 +++++++++++++++++++++++++++++++++
 fs/verity/signature.c                  |  20 +---
 include/linux/fsverity.h               |  12 ++
 include/uapi/linux/fsverity.h          |  14 +++
 10 files changed, 417 insertions(+), 65 deletions(-)
 create mode 100644 fs/verity/read_metadata.c

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

* [f2fs-dev] [GIT PULL] fsverity updates for 5.12
@ 2021-02-16 17:31 ` Eric Biggers
  0 siblings, 0 replies; 4+ messages in thread
From: Eric Biggers @ 2021-02-16 17:31 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Theodore Ts'o, linux-kernel, linux-f2fs-devel, linux-fscrypt,
	linux-fsdevel, Jaegeuk Kim, linux-ext4, Victor Hsieh

The following changes since commit 6ee1d745b7c9fd573fba142a2efdad76a9f1cb04:

  Linux 5.11-rc5 (2021-01-24 16:47:14 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git tags/fsverity-for-linus

for you to fetch changes up to 07c99001312cbf90a357d4877a358f796eede65b:

  fs-verity: support reading signature with ioctl (2021-02-07 14:51:19 -0800)

----------------------------------------------------------------

Add an ioctl which allows reading fs-verity metadata from a file.

This is useful when a file with fs-verity enabled needs to be served
somewhere, and the other end wants to do its own fs-verity compatible
verification of the file.  See the commit messages for details.

This new ioctl has been tested using new xfstests I've written for it.

----------------------------------------------------------------
Eric Biggers (6):
      fs-verity: factor out fsverity_get_descriptor()
      fs-verity: don't pass whole descriptor to fsverity_verify_signature()
      fs-verity: add FS_IOC_READ_VERITY_METADATA ioctl
      fs-verity: support reading Merkle tree with ioctl
      fs-verity: support reading descriptor with ioctl
      fs-verity: support reading signature with ioctl

 Documentation/filesystems/fsverity.rst |  76 +++++++++++++
 fs/ext4/ioctl.c                        |   7 ++
 fs/f2fs/file.c                         |  11 ++
 fs/verity/Makefile                     |   1 +
 fs/verity/fsverity_private.h           |  13 ++-
 fs/verity/open.c                       | 133 ++++++++++++++--------
 fs/verity/read_metadata.c              | 195 +++++++++++++++++++++++++++++++++
 fs/verity/signature.c                  |  20 +---
 include/linux/fsverity.h               |  12 ++
 include/uapi/linux/fsverity.h          |  14 +++
 10 files changed, 417 insertions(+), 65 deletions(-)
 create mode 100644 fs/verity/read_metadata.c


_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

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

* Re: [GIT PULL] fsverity updates for 5.12
  2021-02-16 17:31 ` [f2fs-dev] " Eric Biggers
@ 2021-02-21 18:39   ` pr-tracker-bot
  -1 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-02-21 18:39 UTC (permalink / raw)
  To: Eric Biggers
  Cc: Linus Torvalds, linux-fscrypt, linux-ext4, linux-f2fs-devel,
	linux-fsdevel, linux-kernel, Theodore Ts'o, Jaegeuk Kim,
	Victor Hsieh

The pull request you sent on Tue, 16 Feb 2021 09:31:15 -0800:

> https://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git tags/fsverity-for-linus

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/f7b36dc5cb37615b568b7161ddc53d604973ec8b

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* Re: [f2fs-dev] [GIT PULL] fsverity updates for 5.12
@ 2021-02-21 18:39   ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-02-21 18:39 UTC (permalink / raw)
  To: Eric Biggers
  Cc: Theodore Ts'o, linux-kernel, linux-f2fs-devel, linux-fscrypt,
	linux-fsdevel, Jaegeuk Kim, linux-ext4, Linus Torvalds,
	Victor Hsieh

The pull request you sent on Tue, 16 Feb 2021 09:31:15 -0800:

> https://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git tags/fsverity-for-linus

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/f7b36dc5cb37615b568b7161ddc53d604973ec8b

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html


_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

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

end of thread, other threads:[~2021-02-21 18:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-16 17:31 [GIT PULL] fsverity updates for 5.12 Eric Biggers
2021-02-16 17:31 ` [f2fs-dev] " Eric Biggers
2021-02-21 18:39 ` pr-tracker-bot
2021-02-21 18:39   ` [f2fs-dev] " pr-tracker-bot

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.