linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Topi Miettinen <toiwoton@gmail.com>
To: Luis Chamberlain <mcgrof@kernel.org>,
	Kees Cook <keescook@chromium.org>,
	Alexey Dobriyan <adobriyan@gmail.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"open list:FILESYSTEMS (VFS and infrastructure)" 
	<linux-fsdevel@vger.kernel.org>,
	"Eric W. Biederman" <ebiederm@xmission.com>
Subject: [PATCH] proc: Allow restricting permissions in /proc/sys
Date: Mon, 4 Nov 2019 14:07:29 +0200	[thread overview]
Message-ID: <ed51f7dd-50a2-fbf5-7ea8-4bab6d48279e@gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 4713 bytes --]

Several items in /proc/sys need not be accessible to unprivileged
tasks. Let the system administrator change the permissions, but only
to more restrictive modes than what the sysctl tables allow.

Signed-off-by: Topi Miettinen <toiwoton@gmail.com>
---
v2: actually keep track of changed permissions instead of relying on 
inode cache
---
  fs/proc/proc_sysctl.c  | 42 ++++++++++++++++++++++++++++++++++++++----
  include/linux/sysctl.h |  1 +
  2 files changed, 39 insertions(+), 4 deletions(-)

diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
index d80989b6c344..1f75382c49fd 100644
--- a/fs/proc/proc_sysctl.c
+++ b/fs/proc/proc_sysctl.c
@@ -818,6 +818,10 @@ static int proc_sys_permission(struct inode *inode, 
int mask)
         if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
                 return -EACCES;

+       error = generic_permission(inode, mask);
+       if (error)
+               return error;
+
         head = grab_header(inode);
         if (IS_ERR(head))
                 return PTR_ERR(head);
@@ -835,17 +839,46 @@ static int proc_sys_permission(struct inode 
*inode, int mask)
  static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
  {
         struct inode *inode = d_inode(dentry);
+       struct ctl_table_header *head = grab_header(inode);
+       struct ctl_table *table = PROC_I(inode)->sysctl_entry;
         int error;

-       if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
+       if (attr->ia_valid & (ATTR_UID | ATTR_GID))
                 return -EPERM;

+       if (attr->ia_valid & ATTR_MODE) {
+               umode_t max_mode = 0777; /* Only these bits may change */
+
+               if (IS_ERR(head))
+                       return PTR_ERR(head);
+
+               if (!table) /* global root - r-xr-xr-x */
+                       max_mode &= ~0222;
+               else /*
+                     * Don't allow permissions to become less
+                     * restrictive than the sysctl table entry
+                     */
+                       max_mode &= table->mode;
+
+               /* Execute bits only allowed for directories */
+               if (!S_ISDIR(inode->i_mode))
+                       max_mode &= ~0111;
+
+               if (attr->ia_mode & ~S_IFMT & ~max_mode)
+                       return -EPERM;
+       }
+
         error = setattr_prepare(dentry, attr);
         if (error)
                 return error;

         setattr_copy(inode, attr);
         mark_inode_dirty(inode);
+
+       if (table)
+               table->current_mode = inode->i_mode;
+       sysctl_head_finish(head);
+
         return 0;
  }

@@ -861,7 +894,7 @@ static int proc_sys_getattr(const struct path *path, 
struct kstat *stat,

         generic_fillattr(inode, stat);
         if (table)
-               stat->mode = (stat->mode & S_IFMT) | table->mode;
+               stat->mode = (stat->mode & S_IFMT) | table->current_mode;

         sysctl_head_finish(head);
         return 0;
@@ -981,7 +1014,7 @@ static struct ctl_dir *new_dir(struct ctl_table_set 
*set,
         memcpy(new_name, name, namelen);
         new_name[namelen] = '\0';
         table[0].procname = new_name;
-       table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
+       table[0].current_mode = table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
         init_header(&new->header, set->dir.header.root, set, node, table);

         return new;
@@ -1155,6 +1188,7 @@ static int sysctl_check_table(const char *path, 
struct ctl_table *table)
                 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
                         err |= sysctl_err(path, table, "bogus .mode 0%o",
                                 table->mode);
+               table->current_mode = table->mode;
         }
         return err;
  }
@@ -1192,7 +1226,7 @@ static struct ctl_table_header *new_links(struct 
ctl_dir *dir, struct ctl_table
                 int len = strlen(entry->procname) + 1;
                 memcpy(link_name, entry->procname, len);
                 link->procname = link_name;
-               link->mode = S_IFLNK|S_IRWXUGO;
+               link->current_mode = link->mode = S_IFLNK|S_IRWXUGO;
                 link->data = link_root;
                 link_name += len;
         }
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h
index 6df477329b76..7c519c35bf9c 100644
--- a/include/linux/sysctl.h
+++ b/include/linux/sysctl.h
@@ -126,6 +126,7 @@ struct ctl_table
         void *data;
         int maxlen;
         umode_t mode;
+       umode_t current_mode;
         struct ctl_table *child;        /* Deprecated */
         proc_handler *proc_handler;     /* Callback for text formatting */
         struct ctl_table_poll *poll;
-- 
2.24.0.rc1


[-- Attachment #2: 0001-proc-Allow-restricting-permissions-in-proc-sys.patch --]
[-- Type: text/x-diff, Size: 4044 bytes --]

From 3cde64e0aa2734c335355ee6d0d9f12c1f1e8a87 Mon Sep 17 00:00:00 2001
From: Topi Miettinen <toiwoton@gmail.com>
Date: Sun, 3 Nov 2019 16:36:43 +0200
Subject: [PATCH] proc: Allow restricting permissions in /proc/sys

Several items in /proc/sys need not be accessible to unprivileged
tasks. Let the system administrator change the permissions, but only
to more restrictive modes than what the sysctl tables allow.

Signed-off-by: Topi Miettinen <toiwoton@gmail.com>
---
 fs/proc/proc_sysctl.c  | 42 ++++++++++++++++++++++++++++++++++++++----
 include/linux/sysctl.h |  1 +
 2 files changed, 39 insertions(+), 4 deletions(-)

diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
index d80989b6c344..1f75382c49fd 100644
--- a/fs/proc/proc_sysctl.c
+++ b/fs/proc/proc_sysctl.c
@@ -818,6 +818,10 @@ static int proc_sys_permission(struct inode *inode, int mask)
 	if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
 		return -EACCES;
 
+	error = generic_permission(inode, mask);
+	if (error)
+		return error;
+
 	head = grab_header(inode);
 	if (IS_ERR(head))
 		return PTR_ERR(head);
@@ -835,17 +839,46 @@ static int proc_sys_permission(struct inode *inode, int mask)
 static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
 {
 	struct inode *inode = d_inode(dentry);
+	struct ctl_table_header *head = grab_header(inode);
+	struct ctl_table *table = PROC_I(inode)->sysctl_entry;
 	int error;
 
-	if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
+	if (attr->ia_valid & (ATTR_UID | ATTR_GID))
 		return -EPERM;
 
+	if (attr->ia_valid & ATTR_MODE) {
+		umode_t max_mode = 0777; /* Only these bits may change */
+
+		if (IS_ERR(head))
+			return PTR_ERR(head);
+
+		if (!table) /* global root - r-xr-xr-x */
+			max_mode &= ~0222;
+		else /*
+		      * Don't allow permissions to become less
+		      * restrictive than the sysctl table entry
+		      */
+			max_mode &= table->mode;
+
+		/* Execute bits only allowed for directories */
+		if (!S_ISDIR(inode->i_mode))
+			max_mode &= ~0111;
+
+		if (attr->ia_mode & ~S_IFMT & ~max_mode)
+			return -EPERM;
+	}
+
 	error = setattr_prepare(dentry, attr);
 	if (error)
 		return error;
 
 	setattr_copy(inode, attr);
 	mark_inode_dirty(inode);
+
+	if (table)
+		table->current_mode = inode->i_mode;
+	sysctl_head_finish(head);
+
 	return 0;
 }
 
@@ -861,7 +894,7 @@ static int proc_sys_getattr(const struct path *path, struct kstat *stat,
 
 	generic_fillattr(inode, stat);
 	if (table)
-		stat->mode = (stat->mode & S_IFMT) | table->mode;
+		stat->mode = (stat->mode & S_IFMT) | table->current_mode;
 
 	sysctl_head_finish(head);
 	return 0;
@@ -981,7 +1014,7 @@ static struct ctl_dir *new_dir(struct ctl_table_set *set,
 	memcpy(new_name, name, namelen);
 	new_name[namelen] = '\0';
 	table[0].procname = new_name;
-	table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
+	table[0].current_mode = table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
 	init_header(&new->header, set->dir.header.root, set, node, table);
 
 	return new;
@@ -1155,6 +1188,7 @@ static int sysctl_check_table(const char *path, struct ctl_table *table)
 		if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
 			err |= sysctl_err(path, table, "bogus .mode 0%o",
 				table->mode);
+		table->current_mode = table->mode;
 	}
 	return err;
 }
@@ -1192,7 +1226,7 @@ static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table
 		int len = strlen(entry->procname) + 1;
 		memcpy(link_name, entry->procname, len);
 		link->procname = link_name;
-		link->mode = S_IFLNK|S_IRWXUGO;
+		link->current_mode = link->mode = S_IFLNK|S_IRWXUGO;
 		link->data = link_root;
 		link_name += len;
 	}
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h
index 6df477329b76..7c519c35bf9c 100644
--- a/include/linux/sysctl.h
+++ b/include/linux/sysctl.h
@@ -126,6 +126,7 @@ struct ctl_table
 	void *data;
 	int maxlen;
 	umode_t mode;
+	umode_t current_mode;
 	struct ctl_table *child;	/* Deprecated */
 	proc_handler *proc_handler;	/* Callback for text formatting */
 	struct ctl_table_poll *poll;
-- 
2.24.0.rc1


             reply	other threads:[~2019-11-04 12:07 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-04 12:07 Topi Miettinen [this message]
2019-11-12 23:25 ` [PATCH] proc: Allow restricting permissions in /proc/sys Kees Cook
2019-11-13 14:52   ` Eric W. Biederman
2019-11-13 15:28     ` Topi Miettinen
2019-11-13  0:35 ` Luis Chamberlain
2019-11-13  0:59   ` Luis Chamberlain
2019-11-13 10:44   ` Topi Miettinen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ed51f7dd-50a2-fbf5-7ea8-4bab6d48279e@gmail.com \
    --to=toiwoton@gmail.com \
    --cc=adobriyan@gmail.com \
    --cc=ebiederm@xmission.com \
    --cc=keescook@chromium.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mcgrof@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).