blob: 789a1a857ddfaab3df81be563da6f428ad50ced5 [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
24DEFINE_SPINLOCK(oprofilefs_lock);
25
Robert Richter25ad2912008-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 Richter25ad2912008-09-05 17:12:36 +020028 struct inode *inode = new_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30 if (inode) {
31 inode->i_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
33 }
34 return inode;
35}
36
37
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070038static const struct super_operations s_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .statfs = simple_statfs,
40 .drop_inode = generic_delete_inode,
41};
42
43
Robert Richter25ad2912008-09-05 17:12:36 +020044ssize_t oprofilefs_str_to_user(char const *str, char __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 return simple_read_from_buffer(buf, count, offset, str, strlen(str));
47}
48
49
50#define TMPBUFSIZE 50
51
Robert Richter25ad2912008-09-05 17:12:36 +020052ssize_t oprofilefs_ulong_to_user(unsigned long val, char __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 char tmpbuf[TMPBUFSIZE];
55 size_t maxlen = snprintf(tmpbuf, TMPBUFSIZE, "%lu\n", val);
56 if (maxlen > TMPBUFSIZE)
57 maxlen = TMPBUFSIZE;
58 return simple_read_from_buffer(buf, count, offset, tmpbuf, maxlen);
59}
60
61
Robert Richter25ad2912008-09-05 17:12:36 +020062int oprofilefs_ulong_from_user(unsigned long *val, char const __user *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 char tmpbuf[TMPBUFSIZE];
Jiri Kosina4dfc8962007-03-28 18:12:34 +020065 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 if (!count)
68 return 0;
69
70 if (count > TMPBUFSIZE - 1)
71 return -EINVAL;
72
73 memset(tmpbuf, 0x0, TMPBUFSIZE);
74
75 if (copy_from_user(tmpbuf, buf, count))
76 return -EFAULT;
77
Jiri Kosina4dfc8962007-03-28 18:12:34 +020078 spin_lock_irqsave(&oprofilefs_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 *val = simple_strtoul(tmpbuf, NULL, 0);
Jiri Kosina4dfc8962007-03-28 18:12:34 +020080 spin_unlock_irqrestore(&oprofilefs_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return 0;
82}
83
84
Robert Richter25ad2912008-09-05 17:12:36 +020085static ssize_t ulong_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Robert Richter25ad2912008-09-05 17:12:36 +020087 unsigned long *val = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return oprofilefs_ulong_to_user(*val, buf, count, offset);
89}
90
91
Robert Richter25ad2912008-09-05 17:12:36 +020092static 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 -070093{
Robert Richter25ad2912008-09-05 17:12:36 +020094 unsigned long *value = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 int retval;
96
97 if (*offset)
98 return -EINVAL;
99
100 retval = oprofilefs_ulong_from_user(value, buf, count);
101
102 if (retval)
103 return retval;
104 return count;
105}
106
107
Robert Richter25ad2912008-09-05 17:12:36 +0200108static int default_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700110 if (inode->i_private)
111 filp->private_data = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return 0;
113}
114
115
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800116static const struct file_operations ulong_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .read = ulong_read_file,
118 .write = ulong_write_file,
119 .open = default_open,
120};
121
122
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800123static const struct file_operations ulong_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .read = ulong_read_file,
125 .open = default_open,
126};
127
128
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200129static int __oprofilefs_create_file(struct super_block *sb,
Robert Richter25ad2912008-09-05 17:12:36 +0200130 struct dentry *root, char const *name, const struct file_operations *fops,
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200131 int perm, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Robert Richter25ad2912008-09-05 17:12:36 +0200133 struct dentry *dentry;
134 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 dentry = d_alloc_name(root, name);
137 if (!dentry)
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200138 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 inode = oprofilefs_get_inode(sb, S_IFREG | perm);
140 if (!inode) {
141 dput(dentry);
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200142 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
144 inode->i_fop = fops;
145 d_add(dentry, inode);
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200146 dentry->d_inode->i_private = priv;
147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150
Robert Richter25ad2912008-09-05 17:12:36 +0200151int oprofilefs_create_ulong(struct super_block *sb, struct dentry *root,
152 char const *name, unsigned long *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200154 return __oprofilefs_create_file(sb, root, name,
155 &ulong_fops, 0644, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158
Robert Richter25ad2912008-09-05 17:12:36 +0200159int oprofilefs_create_ro_ulong(struct super_block *sb, struct dentry *root,
160 char const *name, unsigned long *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200162 return __oprofilefs_create_file(sb, root, name,
163 &ulong_ro_fops, 0444, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166
Robert Richter25ad2912008-09-05 17:12:36 +0200167static ssize_t atomic_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Robert Richter25ad2912008-09-05 17:12:36 +0200169 atomic_t *val = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return oprofilefs_ulong_to_user(atomic_read(val), buf, count, offset);
171}
Robert Richter6a180372008-10-16 15:01:40 +0200172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800174static const struct file_operations atomic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 .read = atomic_read_file,
176 .open = default_open,
177};
Robert Richter6a180372008-10-16 15:01:40 +0200178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Robert Richter25ad2912008-09-05 17:12:36 +0200180int oprofilefs_create_ro_atomic(struct super_block *sb, struct dentry *root,
181 char const *name, atomic_t *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200183 return __oprofilefs_create_file(sb, root, name,
184 &atomic_ro_fops, 0444, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Robert Richter6a180372008-10-16 15:01:40 +0200187
Robert Richter25ad2912008-09-05 17:12:36 +0200188int oprofilefs_create_file(struct super_block *sb, struct dentry *root,
189 char const *name, const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200191 return __oprofilefs_create_file(sb, root, name, fops, 0644, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194
Robert Richter25ad2912008-09-05 17:12:36 +0200195int oprofilefs_create_file_perm(struct super_block *sb, struct dentry *root,
196 char const *name, const struct file_operations *fops, int perm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Robert Richter4fdaa7b2010-08-19 10:50:26 +0200198 return __oprofilefs_create_file(sb, root, name, fops, perm, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
201
Robert Richter25ad2912008-09-05 17:12:36 +0200202struct dentry *oprofilefs_mkdir(struct super_block *sb,
203 struct dentry *root, char const *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Robert Richter25ad2912008-09-05 17:12:36 +0200205 struct dentry *dentry;
206 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 dentry = d_alloc_name(root, name);
209 if (!dentry)
210 return NULL;
211 inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
212 if (!inode) {
213 dput(dentry);
214 return NULL;
215 }
216 inode->i_op = &simple_dir_inode_operations;
217 inode->i_fop = &simple_dir_operations;
218 d_add(dentry, inode);
219 return dentry;
220}
221
222
Robert Richter25ad2912008-09-05 17:12:36 +0200223static int oprofilefs_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Robert Richter25ad2912008-09-05 17:12:36 +0200225 struct inode *root_inode;
226 struct dentry *root_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 sb->s_blocksize = PAGE_CACHE_SIZE;
229 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
230 sb->s_magic = OPROFILEFS_MAGIC;
231 sb->s_op = &s_ops;
232 sb->s_time_gran = 1;
233
234 root_inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
235 if (!root_inode)
236 return -ENOMEM;
237 root_inode->i_op = &simple_dir_inode_operations;
238 root_inode->i_fop = &simple_dir_operations;
239 root_dentry = d_alloc_root(root_inode);
240 if (!root_dentry) {
241 iput(root_inode);
242 return -ENOMEM;
243 }
244
245 sb->s_root = root_dentry;
246
247 oprofile_create_files(sb, root_dentry);
248
249 // FIXME: verify kill_litter_super removes our dentries
250 return 0;
251}
252
253
David Howells454e2392006-06-23 02:02:57 -0700254static int oprofilefs_get_sb(struct file_system_type *fs_type,
255 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
David Howells454e2392006-06-23 02:02:57 -0700257 return get_sb_single(fs_type, flags, data, oprofilefs_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260
261static struct file_system_type oprofilefs_type = {
262 .owner = THIS_MODULE,
263 .name = "oprofilefs",
264 .get_sb = oprofilefs_get_sb,
265 .kill_sb = kill_litter_super,
266};
267
268
269int __init oprofilefs_register(void)
270{
271 return register_filesystem(&oprofilefs_type);
272}
273
274
275void __exit oprofilefs_unregister(void)
276{
277 unregister_filesystem(&oprofilefs_type);
278}