ARM: Merge for-2637/s3c24xx/rx1950
[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
24DEFINE_SPINLOCK(oprofilefs_lock);
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) {
31 inode->i_mode = mode;
1da177e4
LT
32 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
33 }
34 return inode;
35}
36
37
b87221de 38static const struct super_operations s_ops = {
1da177e4
LT
39 .statfs = simple_statfs,
40 .drop_inode = generic_delete_inode,
41};
42
43
25ad2913 44ssize_t oprofilefs_str_to_user(char const *str, char __user *buf, size_t count, loff_t *offset)
1da177e4
LT
45{
46 return simple_read_from_buffer(buf, count, offset, str, strlen(str));
47}
48
49
50#define TMPBUFSIZE 50
51
25ad2913 52ssize_t oprofilefs_ulong_to_user(unsigned long val, char __user *buf, size_t count, loff_t *offset)
1da177e4
LT
53{
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
25ad2913 62int oprofilefs_ulong_from_user(unsigned long *val, char const __user *buf, size_t count)
1da177e4
LT
63{
64 char tmpbuf[TMPBUFSIZE];
4dfc896e 65 unsigned long flags;
1da177e4
LT
66
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
4dfc896e 78 spin_lock_irqsave(&oprofilefs_lock, flags);
1da177e4 79 *val = simple_strtoul(tmpbuf, NULL, 0);
4dfc896e 80 spin_unlock_irqrestore(&oprofilefs_lock, flags);
1da177e4
LT
81 return 0;
82}
83
84
25ad2913 85static ssize_t ulong_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
1da177e4 86{
25ad2913 87 unsigned long *val = file->private_data;
1da177e4
LT
88 return oprofilefs_ulong_to_user(*val, buf, count, offset);
89}
90
91
25ad2913 92static ssize_t ulong_write_file(struct file *file, char const __user *buf, size_t count, loff_t *offset)
1da177e4 93{
7df01d96 94 unsigned long value;
1da177e4
LT
95 int retval;
96
97 if (*offset)
98 return -EINVAL;
99
7df01d96
RR
100 retval = oprofilefs_ulong_from_user(&value, buf, count);
101 if (retval)
102 return retval;
1da177e4 103
7df01d96 104 retval = oprofile_set_ulong(file->private_data, value);
1da177e4
LT
105 if (retval)
106 return retval;
7df01d96 107
1da177e4
LT
108 return count;
109}
110
111
25ad2913 112static int default_open(struct inode *inode, struct file *filp)
1da177e4 113{
8e18e294
TT
114 if (inode->i_private)
115 filp->private_data = inode->i_private;
1da177e4
LT
116 return 0;
117}
118
119
d54b1fdb 120static const struct file_operations ulong_fops = {
1da177e4
LT
121 .read = ulong_read_file,
122 .write = ulong_write_file,
123 .open = default_open,
6038f373 124 .llseek = default_llseek,
1da177e4
LT
125};
126
127
d54b1fdb 128static const struct file_operations ulong_ro_fops = {
1da177e4
LT
129 .read = ulong_read_file,
130 .open = default_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
LT
141
142 dentry = d_alloc_name(root, name);
143 if (!dentry)
4fdaa7b6 144 return -ENOMEM;
1da177e4
LT
145 inode = oprofilefs_get_inode(sb, S_IFREG | perm);
146 if (!inode) {
147 dput(dentry);
4fdaa7b6 148 return -ENOMEM;
1da177e4
LT
149 }
150 inode->i_fop = fops;
151 d_add(dentry, inode);
4fdaa7b6
RR
152 dentry->d_inode->i_private = priv;
153 return 0;
1da177e4
LT
154}
155
156
25ad2913
RR
157int oprofilefs_create_ulong(struct super_block *sb, struct dentry *root,
158 char const *name, unsigned long *val)
1da177e4 159{
4fdaa7b6
RR
160 return __oprofilefs_create_file(sb, root, name,
161 &ulong_fops, 0644, val);
1da177e4
LT
162}
163
164
25ad2913
RR
165int oprofilefs_create_ro_ulong(struct super_block *sb, struct dentry *root,
166 char const *name, unsigned long *val)
1da177e4 167{
4fdaa7b6
RR
168 return __oprofilefs_create_file(sb, root, name,
169 &ulong_ro_fops, 0444, val);
1da177e4
LT
170}
171
172
25ad2913 173static ssize_t atomic_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
1da177e4 174{
25ad2913 175 atomic_t *val = file->private_data;
1da177e4
LT
176 return oprofilefs_ulong_to_user(atomic_read(val), buf, count, offset);
177}
6a18037d 178
1da177e4 179
d54b1fdb 180static const struct file_operations atomic_ro_fops = {
1da177e4
LT
181 .read = atomic_read_file,
182 .open = default_open,
6038f373 183 .llseek = default_llseek,
1da177e4 184};
6a18037d 185
1da177e4 186
25ad2913
RR
187int oprofilefs_create_ro_atomic(struct super_block *sb, struct dentry *root,
188 char const *name, atomic_t *val)
1da177e4 189{
4fdaa7b6
RR
190 return __oprofilefs_create_file(sb, root, name,
191 &atomic_ro_fops, 0444, val);
1da177e4
LT
192}
193
6a18037d 194
25ad2913
RR
195int oprofilefs_create_file(struct super_block *sb, struct dentry *root,
196 char const *name, const struct file_operations *fops)
1da177e4 197{
4fdaa7b6 198 return __oprofilefs_create_file(sb, root, name, fops, 0644, NULL);
1da177e4
LT
199}
200
201
25ad2913
RR
202int oprofilefs_create_file_perm(struct super_block *sb, struct dentry *root,
203 char const *name, const struct file_operations *fops, int perm)
1da177e4 204{
4fdaa7b6 205 return __oprofilefs_create_file(sb, root, name, fops, perm, NULL);
1da177e4
LT
206}
207
208
25ad2913
RR
209struct dentry *oprofilefs_mkdir(struct super_block *sb,
210 struct dentry *root, char const *name)
1da177e4 211{
25ad2913
RR
212 struct dentry *dentry;
213 struct inode *inode;
1da177e4
LT
214
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
25ad2913 230static int oprofilefs_fill_super(struct super_block *sb, void *data, int silent)
1da177e4 231{
25ad2913
RR
232 struct inode *root_inode;
233 struct dentry *root_dentry;
1da177e4
LT
234
235 sb->s_blocksize = PAGE_CACHE_SIZE;
236 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
237 sb->s_magic = OPROFILEFS_MAGIC;
238 sb->s_op = &s_ops;
239 sb->s_time_gran = 1;
240
241 root_inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
242 if (!root_inode)
243 return -ENOMEM;
244 root_inode->i_op = &simple_dir_inode_operations;
245 root_inode->i_fop = &simple_dir_operations;
246 root_dentry = d_alloc_root(root_inode);
247 if (!root_dentry) {
248 iput(root_inode);
249 return -ENOMEM;
250 }
251
252 sb->s_root = root_dentry;
253
254 oprofile_create_files(sb, root_dentry);
255
256 // FIXME: verify kill_litter_super removes our dentries
257 return 0;
258}
259
260
454e2398
DH
261static int oprofilefs_get_sb(struct file_system_type *fs_type,
262 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
1da177e4 263{
454e2398 264 return get_sb_single(fs_type, flags, data, oprofilefs_fill_super, mnt);
1da177e4
LT
265}
266
267
268static struct file_system_type oprofilefs_type = {
269 .owner = THIS_MODULE,
270 .name = "oprofilefs",
271 .get_sb = oprofilefs_get_sb,
272 .kill_sb = kill_litter_super,
273};
274
275
276int __init oprofilefs_register(void)
277{
278 return register_filesystem(&oprofilefs_type);
279}
280
281
282void __exit oprofilefs_unregister(void)
283{
284 unregister_filesystem(&oprofilefs_type);
285}
This page took 0.509222 seconds and 5 git commands to generate.