blob: 277bb70b8d75452e84559bd9c460f0ed339b53ab [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
Robert Richter25ad29132008-09-05 17:12:36 +0200120static int default_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700122 if (inode->i_private)
123 filp->private_data = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return 0;
125}
126
127
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800128static const struct file_operations ulong_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .read = ulong_read_file,
130 .write = ulong_write_file,
131 .open = default_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200132 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
135
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800136static const struct file_operations ulong_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .read = ulong_read_file,
138 .open = default_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200139 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
142
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200143static int __oprofilefs_create_file(struct super_block *sb,
Robert Richter25ad29132008-09-05 17:12:36 +0200144 struct dentry *root, char const *name, const struct file_operations *fops,
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200145 int perm, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Robert Richter25ad29132008-09-05 17:12:36 +0200147 struct dentry *dentry;
148 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 dentry = d_alloc_name(root, name);
151 if (!dentry)
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200152 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 inode = oprofilefs_get_inode(sb, S_IFREG | perm);
154 if (!inode) {
155 dput(dentry);
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200156 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158 inode->i_fop = fops;
159 d_add(dentry, inode);
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200160 dentry->d_inode->i_private = priv;
161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
164
Robert Richter25ad29132008-09-05 17:12:36 +0200165int oprofilefs_create_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_fops, 0644, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172
Robert Richter25ad29132008-09-05 17:12:36 +0200173int oprofilefs_create_ro_ulong(struct super_block *sb, struct dentry *root,
174 char const *name, unsigned long *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200176 return __oprofilefs_create_file(sb, root, name,
177 &ulong_ro_fops, 0444, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180
Robert Richter25ad29132008-09-05 17:12:36 +0200181static ssize_t atomic_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Robert Richter25ad29132008-09-05 17:12:36 +0200183 atomic_t *val = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return oprofilefs_ulong_to_user(atomic_read(val), buf, count, offset);
185}
Robert Richter6a180372008-10-16 15:01:40 +0200186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800188static const struct file_operations atomic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 .read = atomic_read_file,
190 .open = default_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200191 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192};
Robert Richter6a180372008-10-16 15:01:40 +0200193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Robert Richter25ad29132008-09-05 17:12:36 +0200195int oprofilefs_create_ro_atomic(struct super_block *sb, struct dentry *root,
196 char const *name, atomic_t *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200198 return __oprofilefs_create_file(sb, root, name,
199 &atomic_ro_fops, 0444, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Robert Richter6a180372008-10-16 15:01:40 +0200202
Robert Richter25ad29132008-09-05 17:12:36 +0200203int oprofilefs_create_file(struct super_block *sb, struct dentry *root,
204 char const *name, const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200206 return __oprofilefs_create_file(sb, root, name, fops, 0644, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
209
Robert Richter25ad29132008-09-05 17:12:36 +0200210int oprofilefs_create_file_perm(struct super_block *sb, struct dentry *root,
211 char const *name, const struct file_operations *fops, int perm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200213 return __oprofilefs_create_file(sb, root, name, fops, perm, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
216
Robert Richter25ad29132008-09-05 17:12:36 +0200217struct dentry *oprofilefs_mkdir(struct super_block *sb,
218 struct dentry *root, char const *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Robert Richter25ad29132008-09-05 17:12:36 +0200220 struct dentry *dentry;
221 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 dentry = d_alloc_name(root, name);
224 if (!dentry)
225 return NULL;
226 inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
227 if (!inode) {
228 dput(dentry);
229 return NULL;
230 }
231 inode->i_op = &simple_dir_inode_operations;
232 inode->i_fop = &simple_dir_operations;
233 d_add(dentry, inode);
234 return dentry;
235}
236
237
Robert Richter25ad29132008-09-05 17:12:36 +0200238static int oprofilefs_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Robert Richter25ad29132008-09-05 17:12:36 +0200240 struct inode *root_inode;
241 struct dentry *root_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 sb->s_blocksize = PAGE_CACHE_SIZE;
244 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
245 sb->s_magic = OPROFILEFS_MAGIC;
246 sb->s_op = &s_ops;
247 sb->s_time_gran = 1;
248
249 root_inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
250 if (!root_inode)
251 return -ENOMEM;
252 root_inode->i_op = &simple_dir_inode_operations;
253 root_inode->i_fop = &simple_dir_operations;
Al Viro48fde702012-01-08 22:15:13 -0500254 root_dentry = d_make_root(root_inode);
255 if (!root_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 sb->s_root = root_dentry;
259
260 oprofile_create_files(sb, root_dentry);
261
262 // FIXME: verify kill_litter_super removes our dentries
263 return 0;
264}
265
266
Al Virofc14f2f2010-07-25 01:48:30 +0400267static struct dentry *oprofilefs_mount(struct file_system_type *fs_type,
268 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Al Virofc14f2f2010-07-25 01:48:30 +0400270 return mount_single(fs_type, flags, data, oprofilefs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273
274static struct file_system_type oprofilefs_type = {
275 .owner = THIS_MODULE,
276 .name = "oprofilefs",
Al Virofc14f2f2010-07-25 01:48:30 +0400277 .mount = oprofilefs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 .kill_sb = kill_litter_super,
279};
280
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}