All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] overlayfs update for 6.6
@ 2023-08-29 10:35 Amir Goldstein
  2023-08-29 18:58 ` Linus Torvalds
  2023-08-30 19:50 ` pr-tracker-bot
  0 siblings, 2 replies; 4+ messages in thread
From: Amir Goldstein @ 2023-08-29 10:35 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Miklos Szeredi, Christian Brauner, linux-kernel, linux-fsdevel,
	linux-unionfs

Hi Linus,

This branch has been sitting in linux-next for several weeks and it
has gone through all the usual overlayfs test routines.

The branch has also been tested together with the changes in
Christain's vfs tree, which have been merged to master yesterday.

The branch merges cleanly with master branch of the moment.

Please refer to details about contained patch sets below.

Thanks,
Amir.

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

The following changes since commit 52a93d39b17dc7eb98b6aa3edb93943248e03b2f:

  Linux 6.5-rc5 (2023-08-06 15:07:51 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/overlayfs/vfs.git overlayfs-next

for you to fetch changes up to adcd459ff805ce5e11956cfa1e9aa85471b6ae8d:

  ovl: validate superblock in OVL_FS() (2023-08-12 19:02:54 +0300)

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

Overlayfs update for 6.6

Contains the following patch sets:

Alexander Larsson added the verification feature needed by composefs
- [1] Add support for fs-verity checking of lowerdata

Amir Goldstein improved integration of overlayfs and fanotify
- [2] Report overlayfs file ids with fanotify

Andrea Righi fortified some overlayfs code
- [3] overlayfs: debugging check for valid superblock

[1] https://lore.kernel.org/r/cover.1687345663.git.alexl@redhat.com
[2] https://lore.kernel.org/r/20230713120344.1422468-1-amir73il@gmail.com
[3] https://lore.kernel.org/r/20230521082813.17025-1-andrea.righi@canonical.com

----------------------------------------------------------------
Alexander Larsson (4):
      ovl: Add framework for verity support
      ovl: Add versioned header for overlay.metacopy xattr
      ovl: Validate verity xattr when resolving lowerdata
      ovl: Handle verity during copy-up

Amir Goldstein (4):
      ovl: support encoding non-decodable file handles
      ovl: add support for unique fsid per instance
      ovl: store persistent uuid/fsid with uuid=on
      ovl: auto generate uuid for new overlay filesystems

Andrea Righi (3):
      ovl: Kconfig: introduce CONFIG_OVERLAY_FS_DEBUG
      ovl: make consistent use of OVL_FS()
      ovl: validate superblock in OVL_FS()

 Documentation/filesystems/fsverity.rst  |   2 +
 Documentation/filesystems/overlayfs.rst |  72 ++++++++++
 fs/overlayfs/Kconfig                    |   9 ++
 fs/overlayfs/copy_up.c                  |  54 +++++++-
 fs/overlayfs/export.c                   |  36 +++--
 fs/overlayfs/file.c                     |   8 +-
 fs/overlayfs/inode.c                    |   8 +-
 fs/overlayfs/namei.c                    |  89 ++++++++++--
 fs/overlayfs/overlayfs.h                |  66 ++++++++-
 fs/overlayfs/ovl_entry.h                |   9 +-
 fs/overlayfs/params.c                   |  96 +++++++++++--
 fs/overlayfs/super.c                    |  40 ++++--
 fs/overlayfs/util.c                     | 233 ++++++++++++++++++++++++++++++--
 13 files changed, 654 insertions(+), 68 deletions(-)

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

* Re: [GIT PULL] overlayfs update for 6.6
  2023-08-29 10:35 [GIT PULL] overlayfs update for 6.6 Amir Goldstein
@ 2023-08-29 18:58 ` Linus Torvalds
  2023-08-30 19:50 ` pr-tracker-bot
  1 sibling, 0 replies; 4+ messages in thread
From: Linus Torvalds @ 2023-08-29 18:58 UTC (permalink / raw)
  To: Amir Goldstein
  Cc: Miklos Szeredi, Christian Brauner, linux-kernel, linux-fsdevel,
	linux-unionfs

On Tue, 29 Aug 2023 at 03:35, Amir Goldstein <amir73il@gmail.com> wrote:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/overlayfs/vfs.git overlayfs-next

Please send me a pull with signed tag, not a bare branch.

I know you can do that, since you've done that before...

               Linus

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

* Re: [GIT PULL] overlayfs update for 6.6
  2023-08-29 10:35 [GIT PULL] overlayfs update for 6.6 Amir Goldstein
  2023-08-29 18:58 ` Linus Torvalds
@ 2023-08-30 19:50 ` pr-tracker-bot
  1 sibling, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2023-08-30 19:50 UTC (permalink / raw)
  To: Amir Goldstein
  Cc: Linus Torvalds, Miklos Szeredi, Christian Brauner, linux-kernel,
	linux-fsdevel, linux-unionfs

The pull request you sent on Tue, 29 Aug 2023 13:35:12 +0300:

> git://git.kernel.org/pub/scm/linux/kernel/git/overlayfs/vfs.git overlayfs-next

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

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

* [GIT PULL] overlayfs update for 6.6
@ 2023-08-30  5:26 Amir Goldstein
  0 siblings, 0 replies; 4+ messages in thread
From: Amir Goldstein @ 2023-08-30  5:26 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Miklos Szeredi, Christian Brauner, linux-kernel, linux-fsdevel,
	linux-unionfs

Hi Linus,

Resending the pull request with signed tag.

This branch has been sitting in linux-next for several weeks and it
has gone through all the usual overlayfs test routines.

The branch has also been tested together with the changes in
Christain's vfs tree, which have been merged to master yesterday.

The branch merges cleanly with master branch of the moment.

Please refer to details about contained patch sets below.

Thanks,
Amir.

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

The following changes since commit 52a93d39b17dc7eb98b6aa3edb93943248e03b2f:

  Linux 6.5-rc5 (2023-08-06 15:07:51 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/overlayfs/vfs.git ovl-update-6.6

for you to fetch changes up to adcd459ff805ce5e11956cfa1e9aa85471b6ae8d:

  ovl: validate superblock in OVL_FS() (2023-08-12 19:02:54 +0300)

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

Overlayfs update for 6.6

Contains the following patch sets:

Alexander Larsson added the verification feature needed by composefs
- [1] Add support for fs-verity checking of lowerdata

Amir Goldstein improved integration of overlayfs and fanotify
- [2] Report overlayfs file ids with fanotify

Andrea Righi fortified some overlayfs code
- [3] overlayfs: debugging check for valid superblock

[1] https://lore.kernel.org/r/cover.1687345663.git.alexl@redhat.com
[2] https://lore.kernel.org/r/20230713120344.1422468-1-amir73il@gmail.com
[3] https://lore.kernel.org/r/20230521082813.17025-1-andrea.righi@canonical.com

----------------------------------------------------------------
Alexander Larsson (4):
      ovl: Add framework for verity support
      ovl: Add versioned header for overlay.metacopy xattr
      ovl: Validate verity xattr when resolving lowerdata
      ovl: Handle verity during copy-up

Amir Goldstein (4):
      ovl: support encoding non-decodable file handles
      ovl: add support for unique fsid per instance
      ovl: store persistent uuid/fsid with uuid=on
      ovl: auto generate uuid for new overlay filesystems

Andrea Righi (3):
      ovl: Kconfig: introduce CONFIG_OVERLAY_FS_DEBUG
      ovl: make consistent use of OVL_FS()
      ovl: validate superblock in OVL_FS()

 Documentation/filesystems/fsverity.rst  |   2 +
 Documentation/filesystems/overlayfs.rst |  72 ++++++++++
 fs/overlayfs/Kconfig                    |   9 ++
 fs/overlayfs/copy_up.c                  |  54 +++++++-
 fs/overlayfs/export.c                   |  36 +++--
 fs/overlayfs/file.c                     |   8 +-
 fs/overlayfs/inode.c                    |   8 +-
 fs/overlayfs/namei.c                    |  89 ++++++++++--
 fs/overlayfs/overlayfs.h                |  66 ++++++++-
 fs/overlayfs/ovl_entry.h                |   9 +-
 fs/overlayfs/params.c                   |  96 +++++++++++--
 fs/overlayfs/super.c                    |  40 ++++--
 fs/overlayfs/util.c                     | 233 ++++++++++++++++++++++++++++++--
 13 files changed, 654 insertions(+), 68 deletions(-)

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

end of thread, other threads:[~2023-08-30 23:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-29 10:35 [GIT PULL] overlayfs update for 6.6 Amir Goldstein
2023-08-29 18:58 ` Linus Torvalds
2023-08-30 19:50 ` pr-tracker-bot
2023-08-30  5:26 Amir Goldstein

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.