Patch "net: cxgb3_main: Add CAP_NET_ADMIN check to CHELSIO_GET_MEM" has been added to the 4.9-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net: cxgb3_main: Add CAP_NET_ADMIN check to CHELSIO_GET_MEM

to the 4.9-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-cxgb3_main-add-cap_net_admin-check-to-chelsio_get_mem.patch
and it can be found in the queue-4.9 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.


>From foo@baz Mon 27 Jan 2020 04:06:27 PM CET
From: Michael Ellerman <mpe@xxxxxxxxxxxxxx>
Date: Fri, 24 Jan 2020 20:41:44 +1100
Subject: net: cxgb3_main: Add CAP_NET_ADMIN check to CHELSIO_GET_MEM

From: Michael Ellerman <mpe@xxxxxxxxxxxxxx>

[ Upstream commit 3546d8f1bbe992488ed91592cf6bf76e7114791a =

The cxgb3 driver for "Chelsio T3-based gigabit and 10Gb Ethernet
adapters" implements a custom ioctl as SIOCCHIOCTL/SIOCDEVPRIVATE in
cxgb_extension_ioctl().

One of the subcommands of the ioctl is CHELSIO_GET_MEM, which appears
to read memory directly out of the adapter and return it to userspace.
It's not entirely clear what the contents of the adapter memory
contains, but the assumption is that it shouldn't be accessible to all
users.

So add a CAP_NET_ADMIN check to the CHELSIO_GET_MEM case. Put it after
the is_offload() check, which matches two of the other subcommands in
the same function which also check for is_offload() and CAP_NET_ADMIN.

Found by Ilja by code inspection, not tested as I don't have the
required hardware.

Reported-by: Ilja Van Sprundel <ivansprundel@xxxxxxxxxxxx>
Signed-off-by: Michael Ellerman <mpe@xxxxxxxxxxxxxx>
Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>
---
 drivers/net/ethernet/chelsio/cxgb3/cxgb3_main.c |    2 ++
 1 file changed, 2 insertions(+)

--- a/drivers/net/ethernet/chelsio/cxgb3/cxgb3_main.c
+++ b/drivers/net/ethernet/chelsio/cxgb3/cxgb3_main.c
@@ -2440,6 +2440,8 @@ static int cxgb_extension_ioctl(struct n
 
 		if (!is_offload(adapter))
 			return -EOPNOTSUPP;
+		if (!capable(CAP_NET_ADMIN))
+			return -EPERM;
 		if (!(adapter->flags & FULL_INIT_DONE))
 			return -EIO;	/* need the memory controllers */
 		if (copy_from_user(&t, useraddr, sizeof(t)))


Patches currently in stable-queue which might be from mpe@xxxxxxxxxxxxxx are

queue-4.9/powerpc-vdso-make-vdso32-installation-conditional-in.patch
queue-4.9/net-cxgb3_main-add-cap_net_admin-check-to-chelsio_get_mem.patch
queue-4.9/fbdev-chipsfb-remove-set-but-not-used-variable-size.patch
queue-4.9/perf-ioctl-add-check-for-the-sample_period-value.patch
queue-4.9/powerpc-archrandom-fix-arch_get_random_seed_int.patch
queue-4.9/net-pasemi-fix-an-use-after-free-in-pasemi_mac_phy_i.patch
queue-4.9/powerpc-cacheinfo-add-cacheinfo_teardown-cacheinfo_r.patch



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux