Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1647067

[PATCH 14/23] procfs: Move proc_fill_super() to fs/proc/root.c [ver #4]

From David Howells <dhowells@redhat.com>
Newsgroups linux.kernel
Subject [PATCH 14/23] procfs: Move proc_fill_super() to fs/proc/root.c [ver #4]
Date 2017-05-22 18:00 +0200
Message-ID <tJXUv-7yP-31@gated-at.bofh.it> (permalink)
References <tJXUu-7yP-3@gated-at.bofh.it>
Organization Red Hat UK Ltd. Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 3798903

Show all headers | View raw


Move proc_fill_super() to fs/proc/root.c as that's where the other
superblock stuff is.

Signed-off-by: David Howells <dhowells@redhat.com>
---

 fs/proc/inode.c    |   48 +-----------------------------------------------
 fs/proc/internal.h |    4 +---
 fs/proc/root.c     |   48 +++++++++++++++++++++++++++++++++++++++++++++++-
 3 files changed, 49 insertions(+), 51 deletions(-)

diff --git a/fs/proc/inode.c b/fs/proc/inode.c
index e250910cffc8..a4bf66af0ba9 100644
--- a/fs/proc/inode.c
+++ b/fs/proc/inode.c
@@ -22,7 +22,6 @@
 #include <linux/seq_file.h>
 #include <linux/slab.h>
 #include <linux/mount.h>
-#include <linux/magic.h>
 
 #include <linux/uaccess.h>
 
@@ -113,7 +112,7 @@ static int proc_show_options(struct seq_file *seq, struct dentry *root)
 	return 0;
 }
 
-static const struct super_operations proc_sops = {
+const struct super_operations proc_sops = {
 	.alloc_inode	= proc_alloc_inode,
 	.destroy_inode	= proc_destroy_inode,
 	.drop_inode	= generic_delete_inode,
@@ -470,48 +469,3 @@ struct inode *proc_get_inode(struct super_block *sb, struct proc_dir_entry *de)
 	       pde_put(de);
 	return inode;
 }
-
-int proc_fill_super(struct super_block *s, void *data, int silent)
-{
-	struct pid_namespace *ns = get_pid_ns(s->s_fs_info);
-	struct inode *root_inode;
-	int ret;
-
-	if (!proc_parse_options(data, ns))
-		return -EINVAL;
-
-	/* User space would break if executables or devices appear on proc */
-	s->s_iflags |= SB_I_USERNS_VISIBLE | SB_I_NOEXEC | SB_I_NODEV;
-	s->s_flags |= MS_NODIRATIME | MS_NOSUID | MS_NOEXEC;
-	s->s_blocksize = 1024;
-	s->s_blocksize_bits = 10;
-	s->s_magic = PROC_SUPER_MAGIC;
-	s->s_op = &proc_sops;
-	s->s_time_gran = 1;
-
-	/*
-	 * procfs isn't actually a stacking filesystem; however, there is
-	 * too much magic going on inside it to permit stacking things on
-	 * top of it
-	 */
-	s->s_stack_depth = FILESYSTEM_MAX_STACK_DEPTH;
-	
-	pde_get(&proc_root);
-	root_inode = proc_get_inode(s, &proc_root);
-	if (!root_inode) {
-		pr_err("proc_fill_super: get root inode failed\n");
-		return -ENOMEM;
-	}
-
-	s->s_root = d_make_root(root_inode);
-	if (!s->s_root) {
-		pr_err("proc_fill_super: allocate dentry failed\n");
-		return -ENOMEM;
-	}
-
-	ret = proc_setup_self(s);
-	if (ret) {
-		return ret;
-	}
-	return proc_setup_thread_self(s);
-}
diff --git a/fs/proc/internal.h b/fs/proc/internal.h
index c5ae09b6c726..b681533f59dd 100644
--- a/fs/proc/internal.h
+++ b/fs/proc/internal.h
@@ -197,13 +197,12 @@ struct pde_opener {
 	struct completion *c;
 };
 extern const struct inode_operations proc_link_inode_operations;
-
 extern const struct inode_operations proc_pid_link_inode_operations;
+extern const struct super_operations proc_sops;
 
 extern void proc_init_inodecache(void);
 void set_proc_pid_nlink(void);
 extern struct inode *proc_get_inode(struct super_block *, struct proc_dir_entry *);
-extern int proc_fill_super(struct super_block *, void *data, int flags);
 extern void proc_entry_rundown(struct proc_dir_entry *);
 
 /*
@@ -261,7 +260,6 @@ static inline void proc_tty_init(void) {}
  * root.c
  */
 extern struct proc_dir_entry proc_root;
-extern int proc_parse_options(char *options, struct pid_namespace *pid);
 
 extern void proc_self_init(void);
 extern int proc_remount(struct super_block *, int *, char *);
diff --git a/fs/proc/root.c b/fs/proc/root.c
index deecb397daa3..ff2e810e9e64 100644
--- a/fs/proc/root.c
+++ b/fs/proc/root.c
@@ -22,6 +22,7 @@
 #include <linux/pid_namespace.h>
 #include <linux/parser.h>
 #include <linux/cred.h>
+#include <linux/magic.h>
 
 #include "internal.h"
 
@@ -35,7 +36,7 @@ static const match_table_t tokens = {
 	{Opt_err, NULL},
 };
 
-int proc_parse_options(char *options, struct pid_namespace *pid)
+static int proc_parse_options(char *options, struct pid_namespace *pid)
 {
 	char *p;
 	substring_t args[MAX_OPT_ARGS];
@@ -77,6 +78,51 @@ int proc_parse_options(char *options, struct pid_namespace *pid)
 	return 1;
 }
 
+static int proc_fill_super(struct super_block *s, void *data, int silent)
+{
+	struct pid_namespace *ns = get_pid_ns(s->s_fs_info);
+	struct inode *root_inode;
+	int ret;
+
+	if (!proc_parse_options(data, ns))
+		return -EINVAL;
+
+	/* User space would break if executables or devices appear on proc */
+	s->s_iflags |= SB_I_USERNS_VISIBLE | SB_I_NOEXEC | SB_I_NODEV;
+	s->s_flags |= MS_NODIRATIME | MS_NOSUID | MS_NOEXEC;
+	s->s_blocksize = 1024;
+	s->s_blocksize_bits = 10;
+	s->s_magic = PROC_SUPER_MAGIC;
+	s->s_op = &proc_sops;
+	s->s_time_gran = 1;
+
+	/*
+	 * procfs isn't actually a stacking filesystem; however, there is
+	 * too much magic going on inside it to permit stacking things on
+	 * top of it
+	 */
+	s->s_stack_depth = FILESYSTEM_MAX_STACK_DEPTH;
+	
+	pde_get(&proc_root);
+	root_inode = proc_get_inode(s, &proc_root);
+	if (!root_inode) {
+		pr_err("proc_fill_super: get root inode failed\n");
+		return -ENOMEM;
+	}
+
+	s->s_root = d_make_root(root_inode);
+	if (!s->s_root) {
+		pr_err("proc_fill_super: allocate dentry failed\n");
+		return -ENOMEM;
+	}
+
+	ret = proc_setup_self(s);
+	if (ret) {
+		return ret;
+	}
+	return proc_setup_thread_self(s);
+}
+
 int proc_remount(struct super_block *sb, int *flags, char *data)
 {
 	struct pid_namespace *pid = sb->s_fs_info;

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[RFC][PATCH 00/23] VFS: Introduce superblock configuration context  [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 14/23] procfs: Move proc_fill_super() to fs/proc/root.c [ver  #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 19/23] NFS: Split nfs_parse_mount_options() [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 12/23] VFS: Implement fsmount() to effect a pre-configured  mount [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 07/23] VFS: Introduce the structs and doc for a superblock  configuration context [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 17/23] NFS: Constify mount argument match tables [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 09/23] VFS: Implement a superblock configuration context  [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 08/23] VFS: Add LSM hooks for superblock configuration  context [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 21/23] NFS: Add a small buffer in nfs_sb_config to avoid  string dup [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 01/23] Provide a function to create a NUL-terminated string  from unterminated data [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 11/23] VFS: Implement fsopen() to prepare for a mount [ver  #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 05/23] VFS: Provide empty name qstr [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 22/23] NFS: Do some tidying of the parsing code [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 10/23] VFS: Remove unused code after superblock config  context changes [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 03/23] VFS: Make get_mnt_ns() return the namespace [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 13/23] VFS: Add a sample program for fsopen/fsmount [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:00 +0200
  [PATCH 06/23] Provide supplementary error message facility [ver #4] David Howells <dhowells@redhat.com> - 2017-05-22 18:10 +0200

csiph-web