Go to file
Max Kellermann e8a68b9a75 fs/kernfs/dir: obey S_ISGID
BugLink: https://bugs.launchpad.net/bugs/2058948

[ Upstream commit 5133bee62f0ea5d4c316d503cc0040cac5637601 ]

Handling of S_ISGID is usually done by inode_init_owner() in all other
filesystems, but kernfs doesn't use that function.  In kernfs, struct
kernfs_node is the primary data structure, and struct inode is only
created from it on demand.  Therefore, inode_init_owner() can't be
used and we need to imitate its behavior.

S_ISGID support is useful for the cgroup filesystem; it allows
subtrees managed by an unprivileged process to retain a certain owner
gid, which then enables sharing access to the subtree with another
unprivileged process.

--
v1 -> v2: minor coding style fix (comment)

Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
Acked-by: Tejun Heo <tj@kernel.org>
Link: https://lore.kernel.org/r/20231208093310.297233-2-max.kellermann@ionos.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Manuel Diewald <manuel.diewald@canonical.com>
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
2024-03-28 15:18:38 +01:00
Documentation ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument 2024-03-28 15:18:36 +01:00
LICENSES
arch um: net: Fix return type of uml_net_start_xmit() 2024-03-28 15:18:37 +01:00
block block: prevent an integer overflow in bvec_try_merge_hw_page 2024-03-28 15:18:36 +01:00
certs certs/blacklist_hashes.c: fix const confusion in certs blacklist 2022-08-26 11:10:49 +02:00
crypto crypto: api - Disallow identical driver names 2024-03-28 15:18:30 +01:00
debian UBUNTU: [Packaging] update annotations scripts 2024-03-07 17:38:06 +01:00
debian.master UBUNTU: [Config] updateconfigs for MFD_TI_AM335X_TSCADC 2024-03-28 15:18:38 +01:00
drivers usb: hub: Replace hardcoded quirk value with BIT() macro 2024-03-28 15:18:38 +01:00
fs fs/kernfs/dir: obey S_ISGID 2024-03-28 15:18:38 +01:00
include PCI: add INTEL_HDA_ARL to pci_ids.h 2024-03-28 15:18:37 +01:00
init rootfs: Fix support for rootfstype= when root= is given 2024-02-29 15:23:39 +01:00
ipc ipc: replace costly bailout check in sysvipc_find_ipc() 2023-02-24 14:01:18 +01:00
kernel bpf: Add map and need_defer parameters to .map_fd_put_ptr() 2024-03-28 15:18:35 +01:00
lib ida: Fix crash in ida_free when the bitmap is empty 2024-02-02 14:13:22 +01:00
mm mm: fix unmap_mapping_range high bits shift bug 2024-02-23 13:48:05 +01:00
net wifi: cfg80211: free beacon_ies when overridden from hidden BSS 2024-03-28 15:18:36 +01:00
samples samples/bpf: Fix buffer overflow in tcp_basertt 2023-10-02 12:12:01 +02:00
scripts sign-file: Fix incorrect return values check 2024-02-02 14:13:21 +01:00
security apparmor: avoid crash when parsed profile name is empty 2024-02-29 15:23:40 +01:00
sound ALSA: hda: Intel: add HDA_ARL PCI ID support 2024-03-28 15:18:37 +01:00
tools selftests/bpf: Fix pyperf180 compilation failure with clang18 2024-03-28 15:18:35 +01:00
ubuntu
usr
virt KVM: Destroy target device if coalesced MMIO unregistration fails 2023-05-12 17:15:09 +02:00
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS iio: stx104: Move to addac subdirectory 2023-10-30 11:41:56 +01:00
Makefile Linux 5.4.268 2024-02-29 15:23:41 +01:00
README
Ubuntu.md
dropped.txt
snapcraft.yaml

README

Linux kernel
============

There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.

In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``.  The formatted documentation can also be read online at:

    https://www.kernel.org/doc/html/latest/

There are various text files in the Documentation/ subdirectory,
several of them using the Restructured Text markup notation.

Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.