blob: 7c12d9c2b23010a54c2752a0abac70b1bcf17735 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * @file oprofilefs.c
3 *
4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
6 *
7 * @author John Levon
8 *
9 * A simple filesystem for configuration and
10 * access of oprofile.
11 */
12
13#include <linux/init.h>
14#include <linux/module.h>
15#include <linux/oprofile.h>
16#include <linux/fs.h>
17#include <linux/pagemap.h>
18#include <asm/uaccess.h>
19
20#include "oprof.h"
21
22#define OPROFILEFS_MAGIC 0x6f70726f
23
Thomas Gleixner2d21a292009-07-25 16:18:34 +020024DEFINE_RAW_SPINLOCK(oprofilefs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Robert Richter25ad29132008-09-05 17:12:36 +020026static struct inode *oprofilefs_get_inode(struct super_block *sb, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Robert Richter25ad29132008-09-05 17:12:36 +020028 struct inode *inode = new_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -040031 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 inode->i_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
34 }
35 return inode;
36}
37
38
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070039static const struct super_operations s_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 .statfs = simple_statfs,
41 .drop_inode = generic_delete_inode,
42};
43
44
Robert Richter25ad29132008-09-05 17:12:36 +020045ssize_t oprofilefs_str_to_user(char const *str, char __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 return simple_read_from_buffer(buf, count, offset, str, strlen(str));
48}
49
50
51#define TMPBUFSIZE 50
52
Robert Richter25ad29132008-09-05 17:12:36 +020053ssize_t oprofilefs_ulong_to_user(unsigned long val, char __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 char tmpbuf[TMPBUFSIZE];
56 size_t maxlen = snprintf(tmpbuf, TMPBUFSIZE, "%lu\n", val);
57 if (maxlen > TMPBUFSIZE)
58 maxlen = TMPBUFSIZE;
59 return simple_read_from_buffer(buf, count, offset, tmpbuf, maxlen);
60}
61
62
Robert Richter913050b2011-12-19 16:38:30 +010063/*
64 * Note: If oprofilefs_ulong_from_user() returns 0, then *val remains
65 * unchanged and might be uninitialized. This follows write syscall
66 * implementation when count is zero: "If count is zero ... [and if]
67 * no errors are detected, 0 will be returned without causing any
68 * other effect." (man 2 write)
69 */
Robert Richter25ad29132008-09-05 17:12:36 +020070int oprofilefs_ulong_from_user(unsigned long *val, char const __user *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 char tmpbuf[TMPBUFSIZE];
Jiri Kosina4dfc8962007-03-28 18:12:34 +020073 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 if (!count)
76 return 0;
77
78 if (count > TMPBUFSIZE - 1)
79 return -EINVAL;
80
81 memset(tmpbuf, 0x0, TMPBUFSIZE);
82
83 if (copy_from_user(tmpbuf, buf, count))
84 return -EFAULT;
85
Thomas Gleixner2d21a292009-07-25 16:18:34 +020086 raw_spin_lock_irqsave(&oprofilefs_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 *val = simple_strtoul(tmpbuf, NULL, 0);
Thomas Gleixner2d21a292009-07-25 16:18:34 +020088 raw_spin_unlock_irqrestore(&oprofilefs_lock, flags);
Robert Richter913050b2011-12-19 16:38:30 +010089 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92
Robert Richter25ad29132008-09-05 17:12:36 +020093static ssize_t ulong_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Robert Richter25ad29132008-09-05 17:12:36 +020095 unsigned long *val = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return oprofilefs_ulong_to_user(*val, buf, count, offset);
97}
98
99
Robert Richter25ad29132008-09-05 17:12:36 +0200100static ssize_t ulong_write_file(struct file *file, char const __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Robert Richter7df01d92010-10-04 21:09:36 +0200102 unsigned long value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 int retval;
104
105 if (*offset)
106 return -EINVAL;
107
Robert Richter7df01d92010-10-04 21:09:36 +0200108 retval = oprofilefs_ulong_from_user(&value, buf, count);
Robert Richter913050b2011-12-19 16:38:30 +0100109 if (retval <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return retval;
Robert Richter7df01d92010-10-04 21:09:36 +0200111
112 retval = oprofile_set_ulong(file->private_data, value);
113 if (retval)
114 return retval;
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return count;
117}
118
119
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800120static const struct file_operations ulong_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .read = ulong_read_file,
122 .write = ulong_write_file,
Stephen Boyd234e3402012-04-05 14:25:11 -0700123 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200124 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
127
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800128static const struct file_operations ulong_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .read = ulong_read_file,
Stephen Boyd234e3402012-04-05 14:25:11 -0700130 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200131 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
134
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200135static int __oprofilefs_create_file(struct super_block *sb,
Robert Richter25ad29132008-09-05 17:12:36 +0200136 struct dentry *root, char const *name, const struct file_operations *fops,
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200137 int perm, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Robert Richter25ad29132008-09-05 17:12:36 +0200139 struct dentry *dentry;
140 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Al Viro3f3834c2013-01-28 14:42:42 -0500142 mutex_lock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 dentry = d_alloc_name(root, name);
Al Viro3f3834c2013-01-28 14:42:42 -0500144 if (!dentry) {
145 mutex_unlock(&root->d_inode->i_mutex);
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200146 return -ENOMEM;
Al Viro3f3834c2013-01-28 14:42:42 -0500147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 inode = oprofilefs_get_inode(sb, S_IFREG | perm);
149 if (!inode) {
150 dput(dentry);
Al Viro3f3834c2013-01-28 14:42:42 -0500151 mutex_unlock(&root->d_inode->i_mutex);
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200152 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
154 inode->i_fop = fops;
Al Viro3f3834c2013-01-28 14:42:42 -0500155 inode->i_private = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 d_add(dentry, inode);
Al Viro3f3834c2013-01-28 14:42:42 -0500157 mutex_unlock(&root->d_inode->i_mutex);
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200158 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
161
Robert Richter25ad29132008-09-05 17:12:36 +0200162int oprofilefs_create_ulong(struct super_block *sb, struct dentry *root,
163 char const *name, unsigned long *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200165 return __oprofilefs_create_file(sb, root, name,
166 &ulong_fops, 0644, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169
Robert Richter25ad29132008-09-05 17:12:36 +0200170int oprofilefs_create_ro_ulong(struct super_block *sb, struct dentry *root,
171 char const *name, unsigned long *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200173 return __oprofilefs_create_file(sb, root, name,
174 &ulong_ro_fops, 0444, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177
Robert Richter25ad29132008-09-05 17:12:36 +0200178static ssize_t atomic_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Robert Richter25ad29132008-09-05 17:12:36 +0200180 atomic_t *val = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return oprofilefs_ulong_to_user(atomic_read(val), buf, count, offset);
182}
Robert Richter6a180372008-10-16 15:01:40 +0200183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800185static const struct file_operations atomic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 .read = atomic_read_file,
Stephen Boyd234e3402012-04-05 14:25:11 -0700187 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200188 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189};
Robert Richter6a180372008-10-16 15:01:40 +0200190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Robert Richter25ad29132008-09-05 17:12:36 +0200192int oprofilefs_create_ro_atomic(struct super_block *sb, struct dentry *root,
193 char const *name, atomic_t *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200195 return __oprofilefs_create_file(sb, root, name,
196 &atomic_ro_fops, 0444, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
Robert Richter6a180372008-10-16 15:01:40 +0200199
Robert Richter25ad29132008-09-05 17:12:36 +0200200int oprofilefs_create_file(struct super_block *sb, struct dentry *root,
201 char const *name, const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200203 return __oprofilefs_create_file(sb, root, name, fops, 0644, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206
Robert Richter25ad29132008-09-05 17:12:36 +0200207int oprofilefs_create_file_perm(struct super_block *sb, struct dentry *root,
208 char const *name, const struct file_operations *fops, int perm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200210 return __oprofilefs_create_file(sb, root, name, fops, perm, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213
Robert Richter25ad29132008-09-05 17:12:36 +0200214struct dentry *oprofilefs_mkdir(struct super_block *sb,
215 struct dentry *root, char const *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Robert Richter25ad29132008-09-05 17:12:36 +0200217 struct dentry *dentry;
218 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Al Viro3f3834c2013-01-28 14:42:42 -0500220 mutex_lock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 dentry = d_alloc_name(root, name);
Al Viro3f3834c2013-01-28 14:42:42 -0500222 if (!dentry) {
223 mutex_unlock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return NULL;
Al Viro3f3834c2013-01-28 14:42:42 -0500225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
227 if (!inode) {
228 dput(dentry);
Al Viro3f3834c2013-01-28 14:42:42 -0500229 mutex_unlock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return NULL;
231 }
232 inode->i_op = &simple_dir_inode_operations;
233 inode->i_fop = &simple_dir_operations;
234 d_add(dentry, inode);
Al Viro3f3834c2013-01-28 14:42:42 -0500235 mutex_unlock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return dentry;
237}
238
239
Robert Richter25ad29132008-09-05 17:12:36 +0200240static int oprofilefs_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Robert Richter25ad29132008-09-05 17:12:36 +0200242 struct inode *root_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 sb->s_blocksize = PAGE_CACHE_SIZE;
245 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
246 sb->s_magic = OPROFILEFS_MAGIC;
247 sb->s_op = &s_ops;
248 sb->s_time_gran = 1;
249
250 root_inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
251 if (!root_inode)
252 return -ENOMEM;
253 root_inode->i_op = &simple_dir_inode_operations;
254 root_inode->i_fop = &simple_dir_operations;
Al Viro318ceed2012-02-12 22:08:01 -0500255 sb->s_root = d_make_root(root_inode);
256 if (!sb->s_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Al Viro318ceed2012-02-12 22:08:01 -0500259 oprofile_create_files(sb, sb->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 // FIXME: verify kill_litter_super removes our dentries
262 return 0;
263}
264
265
Al Virofc14f2f2010-07-25 01:48:30 +0400266static struct dentry *oprofilefs_mount(struct file_system_type *fs_type,
267 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Al Virofc14f2f2010-07-25 01:48:30 +0400269 return mount_single(fs_type, flags, data, oprofilefs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272
273static struct file_system_type oprofilefs_type = {
274 .owner = THIS_MODULE,
275 .name = "oprofilefs",
Al Virofc14f2f2010-07-25 01:48:30 +0400276 .mount = oprofilefs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 .kill_sb = kill_litter_super,
278};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800279MODULE_ALIAS_FS("oprofilefs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281
282int __init oprofilefs_register(void)
283{
284 return register_filesystem(&oprofilefs_type);
285}
286
287
288void __exit oprofilefs_unregister(void)
289{
290 unregister_filesystem(&oprofilefs_type);
291}