don't bother with passing superblock to oprofile_create_stats_files()
[deliverable/linux.git] / drivers / oprofile / oprofilefs.c
CommitLineData
1da177e4
LT
1/**
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
2d21a29f 24DEFINE_RAW_SPINLOCK(oprofilefs_lock);
1da177e4 25
25ad2913 26static struct inode *oprofilefs_get_inode(struct super_block *sb, int mode)
1da177e4 27{
25ad2913 28 struct inode *inode = new_inode(sb);
1da177e4
LT
29
30 if (inode) {
85fe4025 31 inode->i_ino = get_next_ino();
1da177e4 32 inode->i_mode = mode;
1da177e4
LT
33 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
34 }
35 return inode;
36}
37
38
b87221de 39static const struct super_operations s_ops = {
1da177e4
LT
40 .statfs = simple_statfs,
41 .drop_inode = generic_delete_inode,
42};
43
44
25ad2913 45ssize_t oprofilefs_str_to_user(char const *str, char __user *buf, size_t count, loff_t *offset)
1da177e4
LT
46{
47 return simple_read_from_buffer(buf, count, offset, str, strlen(str));
48}
49
50
51#define TMPBUFSIZE 50
52
25ad2913 53ssize_t oprofilefs_ulong_to_user(unsigned long val, char __user *buf, size_t count, loff_t *offset)
1da177e4
LT
54{
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
913050b9
RR
63/*
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 */
25ad2913 70int oprofilefs_ulong_from_user(unsigned long *val, char const __user *buf, size_t count)
1da177e4
LT
71{
72 char tmpbuf[TMPBUFSIZE];
4dfc896e 73 unsigned long flags;
1da177e4
LT
74
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
2d21a29f 86 raw_spin_lock_irqsave(&oprofilefs_lock, flags);
1da177e4 87 *val = simple_strtoul(tmpbuf, NULL, 0);
2d21a29f 88 raw_spin_unlock_irqrestore(&oprofilefs_lock, flags);
913050b9 89 return count;
1da177e4
LT
90}
91
92
25ad2913 93static ssize_t ulong_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
1da177e4 94{
25ad2913 95 unsigned long *val = file->private_data;
1da177e4
LT
96 return oprofilefs_ulong_to_user(*val, buf, count, offset);
97}
98
99
25ad2913 100static ssize_t ulong_write_file(struct file *file, char const __user *buf, size_t count, loff_t *offset)
1da177e4 101{
7df01d96 102 unsigned long value;
1da177e4
LT
103 int retval;
104
105 if (*offset)
106 return -EINVAL;
107
7df01d96 108 retval = oprofilefs_ulong_from_user(&value, buf, count);
913050b9 109 if (retval <= 0)
7df01d96 110 return retval;
1da177e4 111
7df01d96 112 retval = oprofile_set_ulong(file->private_data, value);
1da177e4
LT
113 if (retval)
114 return retval;
7df01d96 115
1da177e4
LT
116 return count;
117}
118
119
d54b1fdb 120static const struct file_operations ulong_fops = {
1da177e4
LT
121 .read = ulong_read_file,
122 .write = ulong_write_file,
234e3405 123 .open = simple_open,
6038f373 124 .llseek = default_llseek,
1da177e4
LT
125};
126
127
d54b1fdb 128static const struct file_operations ulong_ro_fops = {
1da177e4 129 .read = ulong_read_file,
234e3405 130 .open = simple_open,
6038f373 131 .llseek = default_llseek,
1da177e4
LT
132};
133
134
4fdaa7b6 135static int __oprofilefs_create_file(struct super_block *sb,
25ad2913 136 struct dentry *root, char const *name, const struct file_operations *fops,
4fdaa7b6 137 int perm, void *priv)
1da177e4 138{
25ad2913
RR
139 struct dentry *dentry;
140 struct inode *inode;
1da177e4 141
3f3834c3 142 mutex_lock(&root->d_inode->i_mutex);
1da177e4 143 dentry = d_alloc_name(root, name);
3f3834c3
AV
144 if (!dentry) {
145 mutex_unlock(&root->d_inode->i_mutex);
4fdaa7b6 146 return -ENOMEM;
3f3834c3 147 }
1da177e4
LT
148 inode = oprofilefs_get_inode(sb, S_IFREG | perm);
149 if (!inode) {
150 dput(dentry);
3f3834c3 151 mutex_unlock(&root->d_inode->i_mutex);
4fdaa7b6 152 return -ENOMEM;
1da177e4
LT
153 }
154 inode->i_fop = fops;
3f3834c3 155 inode->i_private = priv;
1da177e4 156 d_add(dentry, inode);
3f3834c3 157 mutex_unlock(&root->d_inode->i_mutex);
4fdaa7b6 158 return 0;
1da177e4
LT
159}
160
161
25ad2913
RR
162int oprofilefs_create_ulong(struct super_block *sb, struct dentry *root,
163 char const *name, unsigned long *val)
1da177e4 164{
4fdaa7b6
RR
165 return __oprofilefs_create_file(sb, root, name,
166 &ulong_fops, 0644, val);
1da177e4
LT
167}
168
169
25ad2913
RR
170int oprofilefs_create_ro_ulong(struct super_block *sb, struct dentry *root,
171 char const *name, unsigned long *val)
1da177e4 172{
4fdaa7b6
RR
173 return __oprofilefs_create_file(sb, root, name,
174 &ulong_ro_fops, 0444, val);
1da177e4
LT
175}
176
177
25ad2913 178static ssize_t atomic_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
1da177e4 179{
25ad2913 180 atomic_t *val = file->private_data;
1da177e4
LT
181 return oprofilefs_ulong_to_user(atomic_read(val), buf, count, offset);
182}
6a18037d 183
1da177e4 184
d54b1fdb 185static const struct file_operations atomic_ro_fops = {
1da177e4 186 .read = atomic_read_file,
234e3405 187 .open = simple_open,
6038f373 188 .llseek = default_llseek,
1da177e4 189};
6a18037d 190
1da177e4 191
25ad2913
RR
192int oprofilefs_create_ro_atomic(struct super_block *sb, struct dentry *root,
193 char const *name, atomic_t *val)
1da177e4 194{
4fdaa7b6
RR
195 return __oprofilefs_create_file(sb, root, name,
196 &atomic_ro_fops, 0444, val);
1da177e4
LT
197}
198
6a18037d 199
25ad2913
RR
200int oprofilefs_create_file(struct super_block *sb, struct dentry *root,
201 char const *name, const struct file_operations *fops)
1da177e4 202{
4fdaa7b6 203 return __oprofilefs_create_file(sb, root, name, fops, 0644, NULL);
1da177e4
LT
204}
205
206
25ad2913
RR
207int oprofilefs_create_file_perm(struct super_block *sb, struct dentry *root,
208 char const *name, const struct file_operations *fops, int perm)
1da177e4 209{
4fdaa7b6 210 return __oprofilefs_create_file(sb, root, name, fops, perm, NULL);
1da177e4
LT
211}
212
213
25ad2913
RR
214struct dentry *oprofilefs_mkdir(struct super_block *sb,
215 struct dentry *root, char const *name)
1da177e4 216{
25ad2913
RR
217 struct dentry *dentry;
218 struct inode *inode;
1da177e4 219
3f3834c3 220 mutex_lock(&root->d_inode->i_mutex);
1da177e4 221 dentry = d_alloc_name(root, name);
3f3834c3
AV
222 if (!dentry) {
223 mutex_unlock(&root->d_inode->i_mutex);
1da177e4 224 return NULL;
3f3834c3 225 }
1da177e4
LT
226 inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
227 if (!inode) {
228 dput(dentry);
3f3834c3 229 mutex_unlock(&root->d_inode->i_mutex);
1da177e4
LT
230 return NULL;
231 }
232 inode->i_op = &simple_dir_inode_operations;
233 inode->i_fop = &simple_dir_operations;
234 d_add(dentry, inode);
3f3834c3 235 mutex_unlock(&root->d_inode->i_mutex);
1da177e4
LT
236 return dentry;
237}
238
239
25ad2913 240static int oprofilefs_fill_super(struct super_block *sb, void *data, int silent)
1da177e4 241{
25ad2913 242 struct inode *root_inode;
1da177e4
LT
243
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;
318ceed0
AV
255 sb->s_root = d_make_root(root_inode);
256 if (!sb->s_root)
1da177e4 257 return -ENOMEM;
1da177e4 258
a9e599e5 259 oprofile_create_files(sb->s_root);
1da177e4
LT
260
261 // FIXME: verify kill_litter_super removes our dentries
262 return 0;
263}
264
265
fc14f2fe
AV
266static struct dentry *oprofilefs_mount(struct file_system_type *fs_type,
267 int flags, const char *dev_name, void *data)
1da177e4 268{
fc14f2fe 269 return mount_single(fs_type, flags, data, oprofilefs_fill_super);
1da177e4
LT
270}
271
272
273static struct file_system_type oprofilefs_type = {
274 .owner = THIS_MODULE,
275 .name = "oprofilefs",
fc14f2fe 276 .mount = oprofilefs_mount,
1da177e4
LT
277 .kill_sb = kill_litter_super,
278};
7f78e035 279MODULE_ALIAS_FS("oprofilefs");
1da177e4
LT
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}
This page took 0.743264 seconds and 5 git commands to generate.