blob: 849357c1045c57b5c7a229dee3ccae27a9c2a922 [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
142 dentry = d_alloc_name(root, name);
143 if (!dentry)
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200144 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 inode = oprofilefs_get_inode(sb, S_IFREG | perm);
146 if (!inode) {
147 dput(dentry);
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200148 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150 inode->i_fop = fops;
151 d_add(dentry, inode);
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200152 dentry->d_inode->i_private = priv;
153 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156
Robert Richter25ad29132008-09-05 17:12:36 +0200157int oprofilefs_create_ulong(struct super_block *sb, struct dentry *root,
158 char const *name, unsigned long *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200160 return __oprofilefs_create_file(sb, root, name,
161 &ulong_fops, 0644, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
164
Robert Richter25ad29132008-09-05 17:12:36 +0200165int oprofilefs_create_ro_ulong(struct super_block *sb, struct dentry *root,
166 char const *name, unsigned long *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200168 return __oprofilefs_create_file(sb, root, name,
169 &ulong_ro_fops, 0444, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172
Robert Richter25ad29132008-09-05 17:12:36 +0200173static ssize_t atomic_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Robert Richter25ad29132008-09-05 17:12:36 +0200175 atomic_t *val = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return oprofilefs_ulong_to_user(atomic_read(val), buf, count, offset);
177}
Robert Richter6a180372008-10-16 15:01:40 +0200178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800180static const struct file_operations atomic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 .read = atomic_read_file,
Stephen Boyd234e3402012-04-05 14:25:11 -0700182 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200183 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
Robert Richter6a180372008-10-16 15:01:40 +0200185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Robert Richter25ad29132008-09-05 17:12:36 +0200187int oprofilefs_create_ro_atomic(struct super_block *sb, struct dentry *root,
188 char const *name, atomic_t *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200190 return __oprofilefs_create_file(sb, root, name,
191 &atomic_ro_fops, 0444, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Robert Richter6a180372008-10-16 15:01:40 +0200194
Robert Richter25ad29132008-09-05 17:12:36 +0200195int oprofilefs_create_file(struct super_block *sb, struct dentry *root,
196 char const *name, const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200198 return __oprofilefs_create_file(sb, root, name, fops, 0644, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
201
Robert Richter25ad29132008-09-05 17:12:36 +0200202int oprofilefs_create_file_perm(struct super_block *sb, struct dentry *root,
203 char const *name, const struct file_operations *fops, int perm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200205 return __oprofilefs_create_file(sb, root, name, fops, perm, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
208
Robert Richter25ad29132008-09-05 17:12:36 +0200209struct dentry *oprofilefs_mkdir(struct super_block *sb,
210 struct dentry *root, char const *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Robert Richter25ad29132008-09-05 17:12:36 +0200212 struct dentry *dentry;
213 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 dentry = d_alloc_name(root, name);
216 if (!dentry)
217 return NULL;
218 inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
219 if (!inode) {
220 dput(dentry);
221 return NULL;
222 }
223 inode->i_op = &simple_dir_inode_operations;
224 inode->i_fop = &simple_dir_operations;
225 d_add(dentry, inode);
226 return dentry;
227}
228
229
Robert Richter25ad29132008-09-05 17:12:36 +0200230static int oprofilefs_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Robert Richter25ad29132008-09-05 17:12:36 +0200232 struct inode *root_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 sb->s_blocksize = PAGE_CACHE_SIZE;
235 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
236 sb->s_magic = OPROFILEFS_MAGIC;
237 sb->s_op = &s_ops;
238 sb->s_time_gran = 1;
239
240 root_inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
241 if (!root_inode)
242 return -ENOMEM;
243 root_inode->i_op = &simple_dir_inode_operations;
244 root_inode->i_fop = &simple_dir_operations;
Al Viro318ceed2012-02-12 22:08:01 -0500245 sb->s_root = d_make_root(root_inode);
246 if (!sb->s_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Al Viro318ceed2012-02-12 22:08:01 -0500249 oprofile_create_files(sb, sb->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 // FIXME: verify kill_litter_super removes our dentries
252 return 0;
253}
254
255
Al Virofc14f2f2010-07-25 01:48:30 +0400256static struct dentry *oprofilefs_mount(struct file_system_type *fs_type,
257 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Al Virofc14f2f2010-07-25 01:48:30 +0400259 return mount_single(fs_type, flags, data, oprofilefs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262
263static struct file_system_type oprofilefs_type = {
264 .owner = THIS_MODULE,
265 .name = "oprofilefs",
Al Virofc14f2f2010-07-25 01:48:30 +0400266 .mount = oprofilefs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 .kill_sb = kill_litter_super,
268};
269
270
271int __init oprofilefs_register(void)
272{
273 return register_filesystem(&oprofilefs_type);
274}
275
276
277void __exit oprofilefs_unregister(void)
278{
279 unregister_filesystem(&oprofilefs_type);
280}