aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolai Stange <nicstange@gmail.com>2017-10-30 19:15:47 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-11-07 14:25:02 -0500
commit7c8d469877b16d2c1cecf101a0abb7b218db85bc (patch)
treea6d2637db3d3d721e0079fd70e9f95ede449b942
parent2ec16150179888b81717d1d3ce84e634f4736af2 (diff)
debugfs: add support for more elaborate ->d_fsdata
Currently, the user provided fops, "real_fops", are stored directly into ->d_fsdata. In order to be able to store more per-file state and thus prepare for more granular file removal protection, wrap the real_fops into a dynamically allocated container struct, debugfs_fsdata. A struct debugfs_fsdata gets allocated at file creation and freed from the newly intoduced ->d_release(). Finally, move the implementation of debugfs_real_fops() out of the public debugfs header such that struct debugfs_fsdata's declaration can be kept private. Signed-off-by: Nicolai Stange <nicstange@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--fs/debugfs/file.c12
-rw-r--r--fs/debugfs/inode.c22
-rw-r--r--fs/debugfs/internal.h4
-rw-r--r--include/linux/debugfs.h20
4 files changed, 38 insertions, 20 deletions
diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c
index 6dabc4a10396..b6f5ddab66bf 100644
--- a/fs/debugfs/file.c
+++ b/fs/debugfs/file.c
@@ -97,6 +97,18 @@ EXPORT_SYMBOL_GPL(debugfs_use_file_finish);
97 97
98#define F_DENTRY(filp) ((filp)->f_path.dentry) 98#define F_DENTRY(filp) ((filp)->f_path.dentry)
99 99
100const struct file_operations *debugfs_real_fops(const struct file *filp)
101 __must_hold(&debugfs_srcu)
102{
103 struct debugfs_fsdata *fsd = F_DENTRY(filp)->d_fsdata;
104 /*
105 * Neither the pointer to the struct file_operations, nor its
106 * contents ever change -- srcu_dereference() is not needed here.
107 */
108 return fsd->real_fops;
109}
110EXPORT_SYMBOL_GPL(debugfs_real_fops);
111
100static int open_proxy_open(struct inode *inode, struct file *filp) 112static int open_proxy_open(struct inode *inode, struct file *filp)
101{ 113{
102 const struct dentry *dentry = F_DENTRY(filp); 114 const struct dentry *dentry = F_DENTRY(filp);
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c
index c59f015f386e..a9c3d3e9af39 100644
--- a/fs/debugfs/inode.c
+++ b/fs/debugfs/inode.c
@@ -185,6 +185,11 @@ static const struct super_operations debugfs_super_operations = {
185 .evict_inode = debugfs_evict_inode, 185 .evict_inode = debugfs_evict_inode,
186}; 186};
187 187
188static void debugfs_release_dentry(struct dentry *dentry)
189{
190 kfree(dentry->d_fsdata);
191}
192
188static struct vfsmount *debugfs_automount(struct path *path) 193static struct vfsmount *debugfs_automount(struct path *path)
189{ 194{
190 debugfs_automount_t f; 195 debugfs_automount_t f;
@@ -194,6 +199,7 @@ static struct vfsmount *debugfs_automount(struct path *path)
194 199
195static const struct dentry_operations debugfs_dops = { 200static const struct dentry_operations debugfs_dops = {
196 .d_delete = always_delete_dentry, 201 .d_delete = always_delete_dentry,
202 .d_release = debugfs_release_dentry,
197 .d_automount = debugfs_automount, 203 .d_automount = debugfs_automount,
198}; 204};
199 205
@@ -341,24 +347,34 @@ static struct dentry *__debugfs_create_file(const char *name, umode_t mode,
341{ 347{
342 struct dentry *dentry; 348 struct dentry *dentry;
343 struct inode *inode; 349 struct inode *inode;
350 struct debugfs_fsdata *fsd;
351
352 fsd = kmalloc(sizeof(*fsd), GFP_KERNEL);
353 if (!fsd)
354 return NULL;
344 355
345 if (!(mode & S_IFMT)) 356 if (!(mode & S_IFMT))
346 mode |= S_IFREG; 357 mode |= S_IFREG;
347 BUG_ON(!S_ISREG(mode)); 358 BUG_ON(!S_ISREG(mode));
348 dentry = start_creating(name, parent); 359 dentry = start_creating(name, parent);
349 360
350 if (IS_ERR(dentry)) 361 if (IS_ERR(dentry)) {
362 kfree(fsd);
351 return NULL; 363 return NULL;
364 }
352 365
353 inode = debugfs_get_inode(dentry->d_sb); 366 inode = debugfs_get_inode(dentry->d_sb);
354 if (unlikely(!inode)) 367 if (unlikely(!inode)) {
368 kfree(fsd);
355 return failed_creating(dentry); 369 return failed_creating(dentry);
370 }
356 371
357 inode->i_mode = mode; 372 inode->i_mode = mode;
358 inode->i_private = data; 373 inode->i_private = data;
359 374
360 inode->i_fop = proxy_fops; 375 inode->i_fop = proxy_fops;
361 dentry->d_fsdata = (void *)real_fops; 376 fsd->real_fops = real_fops;
377 dentry->d_fsdata = fsd;
362 378
363 d_instantiate(dentry, inode); 379 d_instantiate(dentry, inode);
364 fsnotify_create(d_inode(dentry->d_parent), dentry); 380 fsnotify_create(d_inode(dentry->d_parent), dentry);
diff --git a/fs/debugfs/internal.h b/fs/debugfs/internal.h
index b3e8443a1f47..512601eed3ce 100644
--- a/fs/debugfs/internal.h
+++ b/fs/debugfs/internal.h
@@ -19,4 +19,8 @@ extern const struct file_operations debugfs_noop_file_operations;
19extern const struct file_operations debugfs_open_proxy_file_operations; 19extern const struct file_operations debugfs_open_proxy_file_operations;
20extern const struct file_operations debugfs_full_proxy_file_operations; 20extern const struct file_operations debugfs_full_proxy_file_operations;
21 21
22struct debugfs_fsdata {
23 const struct file_operations *real_fops;
24};
25
22#endif /* _DEBUGFS_INTERNAL_H_ */ 26#endif /* _DEBUGFS_INTERNAL_H_ */
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h
index b93efc8feecd..cbee5f4a02a3 100644
--- a/include/linux/debugfs.h
+++ b/include/linux/debugfs.h
@@ -45,23 +45,6 @@ extern struct dentry *arch_debugfs_dir;
45 45
46extern struct srcu_struct debugfs_srcu; 46extern struct srcu_struct debugfs_srcu;
47 47
48/**
49 * debugfs_real_fops - getter for the real file operation
50 * @filp: a pointer to a struct file
51 *
52 * Must only be called under the protection established by
53 * debugfs_use_file_start().
54 */
55static inline const struct file_operations *debugfs_real_fops(const struct file *filp)
56 __must_hold(&debugfs_srcu)
57{
58 /*
59 * Neither the pointer to the struct file_operations, nor its
60 * contents ever change -- srcu_dereference() is not needed here.
61 */
62 return filp->f_path.dentry->d_fsdata;
63}
64
65#define DEFINE_DEBUGFS_ATTRIBUTE(__fops, __get, __set, __fmt) \ 48#define DEFINE_DEBUGFS_ATTRIBUTE(__fops, __get, __set, __fmt) \
66static int __fops ## _open(struct inode *inode, struct file *file) \ 49static int __fops ## _open(struct inode *inode, struct file *file) \
67{ \ 50{ \
@@ -112,6 +95,9 @@ int debugfs_use_file_start(const struct dentry *dentry, int *srcu_idx)
112 95
113void debugfs_use_file_finish(int srcu_idx) __releases(&debugfs_srcu); 96void debugfs_use_file_finish(int srcu_idx) __releases(&debugfs_srcu);
114 97
98const struct file_operations *debugfs_real_fops(const struct file *filp)
99 __must_hold(&debugfs_srcu);
100
115ssize_t debugfs_attr_read(struct file *file, char __user *buf, 101ssize_t debugfs_attr_read(struct file *file, char __user *buf,
116 size_t len, loff_t *ppos); 102 size_t len, loff_t *ppos);
117ssize_t debugfs_attr_write(struct file *file, const char __user *buf, 103ssize_t debugfs_attr_write(struct file *file, const char __user *buf,