4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
9 * A simple filesystem for configuration and
13 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/oprofile.h>
17 #include <linux/pagemap.h>
18 #include <asm/uaccess.h>
22 #define OPROFILEFS_MAGIC 0x6f70726f
24 DEFINE_SPINLOCK(oprofilefs_lock
);
26 static struct inode
* oprofilefs_get_inode(struct super_block
* sb
, int mode
)
28 struct inode
* inode
= new_inode(sb
);
34 inode
->i_blksize
= PAGE_CACHE_SIZE
;
36 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
42 static struct super_operations s_ops
= {
43 .statfs
= simple_statfs
,
44 .drop_inode
= generic_delete_inode
,
48 ssize_t
oprofilefs_str_to_user(char const * str
, char __user
* buf
, size_t count
, loff_t
* offset
)
50 return simple_read_from_buffer(buf
, count
, offset
, str
, strlen(str
));
56 ssize_t
oprofilefs_ulong_to_user(unsigned long val
, char __user
* buf
, size_t count
, loff_t
* offset
)
58 char tmpbuf
[TMPBUFSIZE
];
59 size_t maxlen
= snprintf(tmpbuf
, TMPBUFSIZE
, "%lu\n", val
);
60 if (maxlen
> TMPBUFSIZE
)
62 return simple_read_from_buffer(buf
, count
, offset
, tmpbuf
, maxlen
);
66 int oprofilefs_ulong_from_user(unsigned long * val
, char const __user
* buf
, size_t count
)
68 char tmpbuf
[TMPBUFSIZE
];
73 if (count
> TMPBUFSIZE
- 1)
76 memset(tmpbuf
, 0x0, TMPBUFSIZE
);
78 if (copy_from_user(tmpbuf
, buf
, count
))
81 spin_lock(&oprofilefs_lock
);
82 *val
= simple_strtoul(tmpbuf
, NULL
, 0);
83 spin_unlock(&oprofilefs_lock
);
88 static ssize_t
ulong_read_file(struct file
* file
, char __user
* buf
, size_t count
, loff_t
* offset
)
90 unsigned long * val
= file
->private_data
;
91 return oprofilefs_ulong_to_user(*val
, buf
, count
, offset
);
95 static ssize_t
ulong_write_file(struct file
* file
, char const __user
* buf
, size_t count
, loff_t
* offset
)
97 unsigned long * value
= file
->private_data
;
103 retval
= oprofilefs_ulong_from_user(value
, buf
, count
);
111 static int default_open(struct inode
* inode
, struct file
* filp
)
113 if (inode
->u
.generic_ip
)
114 filp
->private_data
= inode
->u
.generic_ip
;
119 static struct file_operations ulong_fops
= {
120 .read
= ulong_read_file
,
121 .write
= ulong_write_file
,
122 .open
= default_open
,
126 static struct file_operations ulong_ro_fops
= {
127 .read
= ulong_read_file
,
128 .open
= default_open
,
132 static struct dentry
* __oprofilefs_create_file(struct super_block
* sb
,
133 struct dentry
* root
, char const * name
, struct file_operations
* fops
,
136 struct dentry
* dentry
;
137 struct inode
* inode
;
139 dentry
= d_alloc_name(root
, name
);
142 inode
= oprofilefs_get_inode(sb
, S_IFREG
| perm
);
148 d_add(dentry
, inode
);
153 int oprofilefs_create_ulong(struct super_block
* sb
, struct dentry
* root
,
154 char const * name
, unsigned long * val
)
156 struct dentry
* d
= __oprofilefs_create_file(sb
, root
, name
,
161 d
->d_inode
->u
.generic_ip
= val
;
166 int oprofilefs_create_ro_ulong(struct super_block
* sb
, struct dentry
* root
,
167 char const * name
, unsigned long * val
)
169 struct dentry
* d
= __oprofilefs_create_file(sb
, root
, name
,
170 &ulong_ro_fops
, 0444);
174 d
->d_inode
->u
.generic_ip
= val
;
179 static ssize_t
atomic_read_file(struct file
* file
, char __user
* buf
, size_t count
, loff_t
* offset
)
181 atomic_t
* val
= file
->private_data
;
182 return oprofilefs_ulong_to_user(atomic_read(val
), buf
, count
, offset
);
186 static struct file_operations atomic_ro_fops
= {
187 .read
= atomic_read_file
,
188 .open
= default_open
,
192 int oprofilefs_create_ro_atomic(struct super_block
* sb
, struct dentry
* root
,
193 char const * name
, atomic_t
* val
)
195 struct dentry
* d
= __oprofilefs_create_file(sb
, root
, name
,
196 &atomic_ro_fops
, 0444);
200 d
->d_inode
->u
.generic_ip
= val
;
205 int oprofilefs_create_file(struct super_block
* sb
, struct dentry
* root
,
206 char const * name
, struct file_operations
* fops
)
208 if (!__oprofilefs_create_file(sb
, root
, name
, fops
, 0644))
214 int oprofilefs_create_file_perm(struct super_block
* sb
, struct dentry
* root
,
215 char const * name
, struct file_operations
* fops
, int perm
)
217 if (!__oprofilefs_create_file(sb
, root
, name
, fops
, perm
))
223 struct dentry
* oprofilefs_mkdir(struct super_block
* sb
,
224 struct dentry
* root
, char const * name
)
226 struct dentry
* dentry
;
227 struct inode
* inode
;
229 dentry
= d_alloc_name(root
, name
);
232 inode
= oprofilefs_get_inode(sb
, S_IFDIR
| 0755);
237 inode
->i_op
= &simple_dir_inode_operations
;
238 inode
->i_fop
= &simple_dir_operations
;
239 d_add(dentry
, inode
);
244 static int oprofilefs_fill_super(struct super_block
* sb
, void * data
, int silent
)
246 struct inode
* root_inode
;
247 struct dentry
* root_dentry
;
249 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
250 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
251 sb
->s_magic
= OPROFILEFS_MAGIC
;
255 root_inode
= oprofilefs_get_inode(sb
, S_IFDIR
| 0755);
258 root_inode
->i_op
= &simple_dir_inode_operations
;
259 root_inode
->i_fop
= &simple_dir_operations
;
260 root_dentry
= d_alloc_root(root_inode
);
266 sb
->s_root
= root_dentry
;
268 oprofile_create_files(sb
, root_dentry
);
270 // FIXME: verify kill_litter_super removes our dentries
275 static struct super_block
*oprofilefs_get_sb(struct file_system_type
*fs_type
,
276 int flags
, const char *dev_name
, void *data
)
278 return get_sb_single(fs_type
, flags
, data
, oprofilefs_fill_super
);
282 static struct file_system_type oprofilefs_type
= {
283 .owner
= THIS_MODULE
,
284 .name
= "oprofilefs",
285 .get_sb
= oprofilefs_get_sb
,
286 .kill_sb
= kill_litter_super
,
290 int __init
oprofilefs_register(void)
292 return register_filesystem(&oprofilefs_type
);
296 void __exit
oprofilefs_unregister(void)
298 unregister_filesystem(&oprofilefs_type
);