projects
/
unionfs-2.6.39.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b26a9c
)
econet: fix CVE-2010-3850
author
Phil Blundell
<philb@gnu.org>
Wed, 24 Nov 2010 19:49:53 +0000
(11:49 -0800)
committer
Paul Gortmaker
<paul.gortmaker@windriver.com>
Sun, 17 Apr 2011 20:15:59 +0000
(16:15 -0400)
commit
16c41745c7b92a243d0874f534c1655196c64b74
upstream.
Add missing check for capable(CAP_NET_ADMIN) in SIOCSIFADDR operation.
Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
net/econet/af_econet.c
patch
|
blob
|
history
diff --git
a/net/econet/af_econet.c
b/net/econet/af_econet.c
index 8170acbe280db307f833064943335f553de28d24..cd62e27035ef1dc6a3fbbd74b93b2d5c0d79d368 100644
(file)
--- a/
net/econet/af_econet.c
+++ b/
net/econet/af_econet.c
@@
-661,6
+661,9
@@
static int ec_dev_ioctl(struct socket *sock, unsigned int cmd, void __user *arg)
err = 0;
switch (cmd) {
case SIOCSIFADDR:
+ if (!capable(CAP_NET_ADMIN))
+ return -EPERM;
+
edev = dev->ec_ptr;
if (edev == NULL) {
/* Magic up a new one. */