]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/oprofile/oprofilefs.c
nvmet-tcp: fix out-of-bounds access when receiving multiple h2cdata PDUs
[mirror_ubuntu-jammy-kernel.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>
c6a2c720 17#include <linux/fs_context.h>
1da177e4 18#include <linux/pagemap.h>
7c0f6ba6 19#include <linux/uaccess.h>
1da177e4
LT
20
21#include "oprof.h"
22
23#define OPROFILEFS_MAGIC 0x6f70726f
24
2d21a29f 25DEFINE_RAW_SPINLOCK(oprofilefs_lock);
1da177e4 26
25ad2913 27static struct inode *oprofilefs_get_inode(struct super_block *sb, int mode)
1da177e4 28{
25ad2913 29 struct inode *inode = new_inode(sb);
1da177e4
LT
30
31 if (inode) {
85fe4025 32 inode->i_ino = get_next_ino();
1da177e4 33 inode->i_mode = mode;
078cd827 34 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
1da177e4
LT
35 }
36 return inode;
37}
38
39
b87221de 40static const struct super_operations s_ops = {
1da177e4
LT
41 .statfs = simple_statfs,
42 .drop_inode = generic_delete_inode,
43};
44
45
25ad2913 46ssize_t oprofilefs_str_to_user(char const *str, char __user *buf, size_t count, loff_t *offset)
1da177e4
LT
47{
48 return simple_read_from_buffer(buf, count, offset, str, strlen(str));
49}
50
51
52#define TMPBUFSIZE 50
53
25ad2913 54ssize_t oprofilefs_ulong_to_user(unsigned long val, char __user *buf, size_t count, loff_t *offset)
1da177e4
LT
55{
56 char tmpbuf[TMPBUFSIZE];
57 size_t maxlen = snprintf(tmpbuf, TMPBUFSIZE, "%lu\n", val);
58 if (maxlen > TMPBUFSIZE)
59 maxlen = TMPBUFSIZE;
60 return simple_read_from_buffer(buf, count, offset, tmpbuf, maxlen);
61}
62
63
913050b9
RR
64/*
65 * Note: If oprofilefs_ulong_from_user() returns 0, then *val remains
66 * unchanged and might be uninitialized. This follows write syscall
67 * implementation when count is zero: "If count is zero ... [and if]
68 * no errors are detected, 0 will be returned without causing any
69 * other effect." (man 2 write)
70 */
25ad2913 71int oprofilefs_ulong_from_user(unsigned long *val, char const __user *buf, size_t count)
1da177e4
LT
72{
73 char tmpbuf[TMPBUFSIZE];
4dfc896e 74 unsigned long flags;
1da177e4
LT
75
76 if (!count)
77 return 0;
78
79 if (count > TMPBUFSIZE - 1)
80 return -EINVAL;
81
82 memset(tmpbuf, 0x0, TMPBUFSIZE);
83
84 if (copy_from_user(tmpbuf, buf, count))
85 return -EFAULT;
86
2d21a29f 87 raw_spin_lock_irqsave(&oprofilefs_lock, flags);
1da177e4 88 *val = simple_strtoul(tmpbuf, NULL, 0);
2d21a29f 89 raw_spin_unlock_irqrestore(&oprofilefs_lock, flags);
913050b9 90 return count;
1da177e4
LT
91}
92
93
25ad2913 94static ssize_t ulong_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
1da177e4 95{
25ad2913 96 unsigned long *val = file->private_data;
1da177e4
LT
97 return oprofilefs_ulong_to_user(*val, buf, count, offset);
98}
99
100
25ad2913 101static ssize_t ulong_write_file(struct file *file, char const __user *buf, size_t count, loff_t *offset)
1da177e4 102{
7df01d96 103 unsigned long value;
1da177e4
LT
104 int retval;
105
106 if (*offset)
107 return -EINVAL;
108
7df01d96 109 retval = oprofilefs_ulong_from_user(&value, buf, count);
913050b9 110 if (retval <= 0)
7df01d96 111 return retval;
1da177e4 112
7df01d96 113 retval = oprofile_set_ulong(file->private_data, value);
1da177e4
LT
114 if (retval)
115 return retval;
7df01d96 116
1da177e4
LT
117 return count;
118}
119
120
d54b1fdb 121static const struct file_operations ulong_fops = {
1da177e4
LT
122 .read = ulong_read_file,
123 .write = ulong_write_file,
234e3405 124 .open = simple_open,
6038f373 125 .llseek = default_llseek,
1da177e4
LT
126};
127
128
d54b1fdb 129static const struct file_operations ulong_ro_fops = {
1da177e4 130 .read = ulong_read_file,
234e3405 131 .open = simple_open,
6038f373 132 .llseek = default_llseek,
1da177e4
LT
133};
134
135
6af4ea0b
AV
136static int __oprofilefs_create_file(struct dentry *root, char const *name,
137 const struct file_operations *fops, int perm, void *priv)
1da177e4 138{
25ad2913
RR
139 struct dentry *dentry;
140 struct inode *inode;
1da177e4 141
a7498968
AV
142 if (!root)
143 return -ENOMEM;
144
5955102c 145 inode_lock(d_inode(root));
1da177e4 146 dentry = d_alloc_name(root, name);
3f3834c3 147 if (!dentry) {
5955102c 148 inode_unlock(d_inode(root));
4fdaa7b6 149 return -ENOMEM;
3f3834c3 150 }
6af4ea0b 151 inode = oprofilefs_get_inode(root->d_sb, S_IFREG | perm);
1da177e4
LT
152 if (!inode) {
153 dput(dentry);
5955102c 154 inode_unlock(d_inode(root));
4fdaa7b6 155 return -ENOMEM;
1da177e4
LT
156 }
157 inode->i_fop = fops;
3f3834c3 158 inode->i_private = priv;
1da177e4 159 d_add(dentry, inode);
5955102c 160 inode_unlock(d_inode(root));
4fdaa7b6 161 return 0;
1da177e4
LT
162}
163
164
6af4ea0b 165int oprofilefs_create_ulong(struct dentry *root,
25ad2913 166 char const *name, unsigned long *val)
1da177e4 167{
6af4ea0b 168 return __oprofilefs_create_file(root, name,
4fdaa7b6 169 &ulong_fops, 0644, val);
1da177e4
LT
170}
171
172
6af4ea0b 173int oprofilefs_create_ro_ulong(struct dentry *root,
25ad2913 174 char const *name, unsigned long *val)
1da177e4 175{
6af4ea0b 176 return __oprofilefs_create_file(root, name,
4fdaa7b6 177 &ulong_ro_fops, 0444, val);
1da177e4
LT
178}
179
180
25ad2913 181static ssize_t atomic_read_file(struct file *file, char __user *buf, size_t count, loff_t *offset)
1da177e4 182{
25ad2913 183 atomic_t *val = file->private_data;
1da177e4
LT
184 return oprofilefs_ulong_to_user(atomic_read(val), buf, count, offset);
185}
6a18037d 186
1da177e4 187
d54b1fdb 188static const struct file_operations atomic_ro_fops = {
1da177e4 189 .read = atomic_read_file,
234e3405 190 .open = simple_open,
6038f373 191 .llseek = default_llseek,
1da177e4 192};
6a18037d 193
1da177e4 194
6af4ea0b 195int oprofilefs_create_ro_atomic(struct dentry *root,
25ad2913 196 char const *name, atomic_t *val)
1da177e4 197{
6af4ea0b 198 return __oprofilefs_create_file(root, name,
4fdaa7b6 199 &atomic_ro_fops, 0444, val);
1da177e4
LT
200}
201
6a18037d 202
6af4ea0b 203int oprofilefs_create_file(struct dentry *root,
25ad2913 204 char const *name, const struct file_operations *fops)
1da177e4 205{
6af4ea0b 206 return __oprofilefs_create_file(root, name, fops, 0644, NULL);
1da177e4
LT
207}
208
209
6af4ea0b 210int oprofilefs_create_file_perm(struct dentry *root,
25ad2913 211 char const *name, const struct file_operations *fops, int perm)
1da177e4 212{
6af4ea0b 213 return __oprofilefs_create_file(root, name, fops, perm, NULL);
1da177e4
LT
214}
215
216
ecde2823 217struct dentry *oprofilefs_mkdir(struct dentry *parent, char const *name)
1da177e4 218{
25ad2913
RR
219 struct dentry *dentry;
220 struct inode *inode;
1da177e4 221
5955102c 222 inode_lock(d_inode(parent));
ecde2823 223 dentry = d_alloc_name(parent, name);
3f3834c3 224 if (!dentry) {
5955102c 225 inode_unlock(d_inode(parent));
1da177e4 226 return NULL;
3f3834c3 227 }
ecde2823 228 inode = oprofilefs_get_inode(parent->d_sb, S_IFDIR | 0755);
1da177e4
LT
229 if (!inode) {
230 dput(dentry);
5955102c 231 inode_unlock(d_inode(parent));
1da177e4
LT
232 return NULL;
233 }
234 inode->i_op = &simple_dir_inode_operations;
235 inode->i_fop = &simple_dir_operations;
236 d_add(dentry, inode);
5955102c 237 inode_unlock(d_inode(parent));
1da177e4
LT
238 return dentry;
239}
240
241
c6a2c720 242static int oprofilefs_fill_super(struct super_block *sb, struct fs_context *fc)
1da177e4 243{
25ad2913 244 struct inode *root_inode;
1da177e4 245
09cbfeaf
KS
246 sb->s_blocksize = PAGE_SIZE;
247 sb->s_blocksize_bits = PAGE_SHIFT;
1da177e4
LT
248 sb->s_magic = OPROFILEFS_MAGIC;
249 sb->s_op = &s_ops;
250 sb->s_time_gran = 1;
251
252 root_inode = oprofilefs_get_inode(sb, S_IFDIR | 0755);
253 if (!root_inode)
254 return -ENOMEM;
255 root_inode->i_op = &simple_dir_inode_operations;
256 root_inode->i_fop = &simple_dir_operations;
318ceed0
AV
257 sb->s_root = d_make_root(root_inode);
258 if (!sb->s_root)
1da177e4 259 return -ENOMEM;
1da177e4 260
a9e599e5 261 oprofile_create_files(sb->s_root);
1da177e4
LT
262
263 // FIXME: verify kill_litter_super removes our dentries
264 return 0;
265}
266
c6a2c720 267static int oprofilefs_get_tree(struct fs_context *fc)
1da177e4 268{
c6a2c720 269 return get_tree_single(fc, oprofilefs_fill_super);
1da177e4
LT
270}
271
c6a2c720
DH
272static const struct fs_context_operations oprofilefs_context_ops = {
273 .get_tree = oprofilefs_get_tree,
274};
275
276static int oprofilefs_init_fs_context(struct fs_context *fc)
277{
278 fc->ops = &oprofilefs_context_ops;
279 return 0;
280}
1da177e4
LT
281
282static struct file_system_type oprofilefs_type = {
283 .owner = THIS_MODULE,
284 .name = "oprofilefs",
c6a2c720 285 .init_fs_context = oprofilefs_init_fs_context,
1da177e4
LT
286 .kill_sb = kill_litter_super,
287};
7f78e035 288MODULE_ALIAS_FS("oprofilefs");
1da177e4
LT
289
290
291int __init oprofilefs_register(void)
292{
293 return register_filesystem(&oprofilefs_type);
294}
295
296
297void __exit oprofilefs_unregister(void)
298{
299 unregister_filesystem(&oprofilefs_type);
300}