blob: 592059f88e04f7757c9e3bc413ab78bec58dee09 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * file.c - part of debugfs, a tiny little debug file system
3 *
4 * Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
5 * Copyright (C) 2004 IBM Inc.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
10 *
11 * debugfs is for people to use instead of /proc or /sys.
Robert P. J. Day883ce422008-04-25 08:52:51 -040012 * See Documentation/DocBook/filesystems for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/fs.h>
Alessandro Rubini1a087c62011-11-18 14:50:21 +010018#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/pagemap.h>
20#include <linux/debugfs.h>
Alessandro Rubini03e099f2011-11-21 10:01:40 +010021#include <linux/io.h>
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +053022#include <linux/slab.h>
Seth Jennings3a76e5e2013-06-03 15:33:02 -050023#include <linux/atomic.h>
Arend van Spriel98210b72014-11-09 11:31:58 +010024#include <linux/device.h>
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010025#include <linux/srcu.h>
Nicolai Stange49d200d2016-03-22 14:11:14 +010026#include <asm/poll.h>
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010027
28#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Nicolai Stange49d200d2016-03-22 14:11:14 +010030struct poll_table_struct;
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static ssize_t default_read_file(struct file *file, char __user *buf,
33 size_t count, loff_t *ppos)
34{
35 return 0;
36}
37
38static ssize_t default_write_file(struct file *file, const char __user *buf,
39 size_t count, loff_t *ppos)
40{
41 return count;
42}
43
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010044const struct file_operations debugfs_noop_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 .read = default_read_file,
46 .write = default_write_file,
Stephen Boyd234e3402012-04-05 14:25:11 -070047 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +020048 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010051/**
52 * debugfs_use_file_start - mark the beginning of file data access
53 * @dentry: the dentry object whose data is being accessed.
54 * @srcu_idx: a pointer to some memory to store a SRCU index in.
55 *
56 * Up to a matching call to debugfs_use_file_finish(), any
57 * successive call into the file removing functions debugfs_remove()
58 * and debugfs_remove_recursive() will block. Since associated private
59 * file data may only get freed after a successful return of any of
60 * the removal functions, you may safely access it after a successful
61 * call to debugfs_use_file_start() without worrying about
62 * lifetime issues.
63 *
64 * If -%EIO is returned, the file has already been removed and thus,
65 * it is not safe to access any of its data. If, on the other hand,
66 * it is allowed to access the file data, zero is returned.
67 *
68 * Regardless of the return code, any call to
69 * debugfs_use_file_start() must be followed by a matching call
70 * to debugfs_use_file_finish().
71 */
Nicolai Stange49d200d2016-03-22 14:11:14 +010072int debugfs_use_file_start(const struct dentry *dentry, int *srcu_idx)
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010073 __acquires(&debugfs_srcu)
74{
75 *srcu_idx = srcu_read_lock(&debugfs_srcu);
76 barrier();
77 if (d_unlinked(dentry))
78 return -EIO;
79 return 0;
80}
Nicolai Stange49d200d2016-03-22 14:11:14 +010081EXPORT_SYMBOL_GPL(debugfs_use_file_start);
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010082
83/**
84 * debugfs_use_file_finish - mark the end of file data access
85 * @srcu_idx: the SRCU index "created" by a former call to
86 * debugfs_use_file_start().
87 *
88 * Allow any ongoing concurrent call into debugfs_remove() or
89 * debugfs_remove_recursive() blocked by a former call to
90 * debugfs_use_file_start() to proceed and return to its caller.
91 */
Nicolai Stange49d200d2016-03-22 14:11:14 +010092void debugfs_use_file_finish(int srcu_idx) __releases(&debugfs_srcu)
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010093{
94 srcu_read_unlock(&debugfs_srcu, srcu_idx);
95}
Nicolai Stange49d200d2016-03-22 14:11:14 +010096EXPORT_SYMBOL_GPL(debugfs_use_file_finish);
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010097
98#define F_DENTRY(filp) ((filp)->f_path.dentry)
99
100#define REAL_FOPS_DEREF(dentry) \
101 ((const struct file_operations *)(dentry)->d_fsdata)
102
103static int open_proxy_open(struct inode *inode, struct file *filp)
104{
105 const struct dentry *dentry = F_DENTRY(filp);
106 const struct file_operations *real_fops = NULL;
107 int srcu_idx, r;
108
109 r = debugfs_use_file_start(dentry, &srcu_idx);
110 if (r) {
111 r = -ENOENT;
112 goto out;
113 }
114
115 real_fops = REAL_FOPS_DEREF(dentry);
116 real_fops = fops_get(real_fops);
117 if (!real_fops) {
118 /* Huh? Module did not clean up after itself at exit? */
119 WARN(1, "debugfs file owner did not clean up at exit: %pd",
120 dentry);
121 r = -ENXIO;
122 goto out;
123 }
124 replace_fops(filp, real_fops);
125
126 if (real_fops->open)
127 r = real_fops->open(inode, filp);
128
129out:
Nicolai Stange9fd4dce2016-03-22 14:11:13 +0100130 debugfs_use_file_finish(srcu_idx);
131 return r;
132}
133
134const struct file_operations debugfs_open_proxy_file_operations = {
135 .open = open_proxy_open,
136};
137
Nicolai Stange49d200d2016-03-22 14:11:14 +0100138#define PROTO(args...) args
139#define ARGS(args...) args
140
141#define FULL_PROXY_FUNC(name, ret_type, filp, proto, args) \
142static ret_type full_proxy_ ## name(proto) \
143{ \
144 const struct dentry *dentry = F_DENTRY(filp); \
145 const struct file_operations *real_fops = \
146 REAL_FOPS_DEREF(dentry); \
147 int srcu_idx; \
148 ret_type r; \
149 \
150 r = debugfs_use_file_start(dentry, &srcu_idx); \
151 if (likely(!r)) \
152 r = real_fops->name(args); \
153 debugfs_use_file_finish(srcu_idx); \
154 return r; \
155}
156
157FULL_PROXY_FUNC(llseek, loff_t, filp,
158 PROTO(struct file *filp, loff_t offset, int whence),
159 ARGS(filp, offset, whence));
160
161FULL_PROXY_FUNC(read, ssize_t, filp,
162 PROTO(struct file *filp, char __user *buf, size_t size,
163 loff_t *ppos),
164 ARGS(filp, buf, size, ppos));
165
166FULL_PROXY_FUNC(write, ssize_t, filp,
167 PROTO(struct file *filp, const char __user *buf, size_t size,
168 loff_t *ppos),
169 ARGS(filp, buf, size, ppos));
170
171FULL_PROXY_FUNC(unlocked_ioctl, long, filp,
172 PROTO(struct file *filp, unsigned int cmd, unsigned long arg),
173 ARGS(filp, cmd, arg));
174
175static unsigned int full_proxy_poll(struct file *filp,
176 struct poll_table_struct *wait)
177{
178 const struct dentry *dentry = F_DENTRY(filp);
179 const struct file_operations *real_fops = REAL_FOPS_DEREF(dentry);
180 int srcu_idx;
181 unsigned int r = 0;
182
183 if (debugfs_use_file_start(dentry, &srcu_idx)) {
184 debugfs_use_file_finish(srcu_idx);
185 return POLLHUP;
186 }
187
188 r = real_fops->poll(filp, wait);
189 debugfs_use_file_finish(srcu_idx);
190 return r;
191}
192
193static int full_proxy_release(struct inode *inode, struct file *filp)
194{
195 const struct dentry *dentry = F_DENTRY(filp);
196 const struct file_operations *real_fops = REAL_FOPS_DEREF(dentry);
197 const struct file_operations *proxy_fops = filp->f_op;
198 int r = 0;
199
200 /*
201 * We must not protect this against removal races here: the
202 * original releaser should be called unconditionally in order
203 * not to leak any resources. Releasers must not assume that
204 * ->i_private is still being meaningful here.
205 */
206 if (real_fops->release)
207 r = real_fops->release(inode, filp);
208
209 replace_fops(filp, d_inode(dentry)->i_fop);
210 kfree((void *)proxy_fops);
211 fops_put(real_fops);
212 return 0;
213}
214
215static void __full_proxy_fops_init(struct file_operations *proxy_fops,
216 const struct file_operations *real_fops)
217{
218 proxy_fops->release = full_proxy_release;
219 if (real_fops->llseek)
220 proxy_fops->llseek = full_proxy_llseek;
221 if (real_fops->read)
222 proxy_fops->read = full_proxy_read;
223 if (real_fops->write)
224 proxy_fops->write = full_proxy_write;
225 if (real_fops->poll)
226 proxy_fops->poll = full_proxy_poll;
227 if (real_fops->unlocked_ioctl)
228 proxy_fops->unlocked_ioctl = full_proxy_unlocked_ioctl;
229}
230
231static int full_proxy_open(struct inode *inode, struct file *filp)
232{
233 const struct dentry *dentry = F_DENTRY(filp);
234 const struct file_operations *real_fops = NULL;
235 struct file_operations *proxy_fops = NULL;
236 int srcu_idx, r;
237
238 r = debugfs_use_file_start(dentry, &srcu_idx);
239 if (r) {
240 r = -ENOENT;
241 goto out;
242 }
243
244 real_fops = REAL_FOPS_DEREF(dentry);
245 real_fops = fops_get(real_fops);
246 if (!real_fops) {
247 /* Huh? Module did not cleanup after itself at exit? */
248 WARN(1, "debugfs file owner did not clean up at exit: %pd",
249 dentry);
250 r = -ENXIO;
251 goto out;
252 }
253
254 proxy_fops = kzalloc(sizeof(*proxy_fops), GFP_KERNEL);
255 if (!proxy_fops) {
256 r = -ENOMEM;
257 goto free_proxy;
258 }
259 __full_proxy_fops_init(proxy_fops, real_fops);
260 replace_fops(filp, proxy_fops);
261
262 if (real_fops->open) {
263 r = real_fops->open(inode, filp);
Nicolai Stangeb10e3e92016-05-24 13:08:53 +0200264 if (r) {
265 replace_fops(filp, d_inode(dentry)->i_fop);
266 goto free_proxy;
267 } else if (filp->f_op != proxy_fops) {
Nicolai Stange49d200d2016-03-22 14:11:14 +0100268 /* No protection against file removal anymore. */
269 WARN(1, "debugfs file owner replaced proxy fops: %pd",
270 dentry);
271 goto free_proxy;
272 }
273 }
274
275 goto out;
276free_proxy:
277 kfree(proxy_fops);
278 fops_put(real_fops);
279out:
280 debugfs_use_file_finish(srcu_idx);
281 return r;
282}
283
284const struct file_operations debugfs_full_proxy_file_operations = {
285 .open = full_proxy_open,
286};
287
Nicolai Stangec6468802016-03-22 14:11:15 +0100288ssize_t debugfs_attr_read(struct file *file, char __user *buf,
289 size_t len, loff_t *ppos)
290{
291 ssize_t ret;
292 int srcu_idx;
293
294 ret = debugfs_use_file_start(F_DENTRY(file), &srcu_idx);
295 if (likely(!ret))
296 ret = simple_attr_read(file, buf, len, ppos);
297 debugfs_use_file_finish(srcu_idx);
298 return ret;
299}
300EXPORT_SYMBOL_GPL(debugfs_attr_read);
301
302ssize_t debugfs_attr_write(struct file *file, const char __user *buf,
303 size_t len, loff_t *ppos)
304{
305 ssize_t ret;
306 int srcu_idx;
307
308 ret = debugfs_use_file_start(F_DENTRY(file), &srcu_idx);
309 if (likely(!ret))
310 ret = simple_attr_write(file, buf, len, ppos);
311 debugfs_use_file_finish(srcu_idx);
312 return ret;
313}
314EXPORT_SYMBOL_GPL(debugfs_attr_write);
315
Nicolai Stange4909f162016-03-22 14:11:17 +0100316static struct dentry *debugfs_create_mode_unsafe(const char *name, umode_t mode,
317 struct dentry *parent, void *value,
318 const struct file_operations *fops,
319 const struct file_operations *fops_ro,
320 const struct file_operations *fops_wo)
321{
322 /* if there are no write bits set, make read only */
323 if (!(mode & S_IWUGO))
324 return debugfs_create_file_unsafe(name, mode, parent, value,
325 fops_ro);
326 /* if there are no read bits set, make write only */
327 if (!(mode & S_IRUGO))
328 return debugfs_create_file_unsafe(name, mode, parent, value,
329 fops_wo);
330
331 return debugfs_create_file_unsafe(name, mode, parent, value, fops);
332}
333
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800334static int debugfs_u8_set(void *data, u64 val)
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200335{
336 *(u8 *)data = val;
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800337 return 0;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200338}
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800339static int debugfs_u8_get(void *data, u64 *val)
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200340{
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800341 *val = *(u8 *)data;
342 return 0;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200343}
Nicolai Stange4909f162016-03-22 14:11:17 +0100344DEFINE_DEBUGFS_ATTRIBUTE(fops_u8, debugfs_u8_get, debugfs_u8_set, "%llu\n");
345DEFINE_DEBUGFS_ATTRIBUTE(fops_u8_ro, debugfs_u8_get, NULL, "%llu\n");
346DEFINE_DEBUGFS_ATTRIBUTE(fops_u8_wo, NULL, debugfs_u8_set, "%llu\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348/**
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700349 * debugfs_create_u8 - create a debugfs file that is used to read and write an unsigned 8-bit value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 * @name: a pointer to a string containing the name of the file to create.
351 * @mode: the permission that the file should have
352 * @parent: a pointer to the parent dentry for this file. This should be a
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700353 * directory dentry if set. If this parameter is %NULL, then the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 * file will be created in the root of the debugfs filesystem.
355 * @value: a pointer to the variable that the file should read to and write
356 * from.
357 *
358 * This function creates a file in debugfs with the given name that
359 * contains the value of the variable @value. If the @mode variable is so
360 * set, it can be read from, and written to.
361 *
362 * This function will return a pointer to a dentry if it succeeds. This
363 * pointer must be passed to the debugfs_remove() function when the file is
364 * to be removed (no automatic cleanup happens if your module is unloaded,
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700365 * you are responsible here.) If an error occurs, %NULL will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 *
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700367 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 * returned. It is not wise to check for this value, but rather, check for
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700369 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 * code.
371 */
Al Virof4ae40a2011-07-24 04:33:43 -0400372struct dentry *debugfs_create_u8(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 struct dentry *parent, u8 *value)
374{
Nicolai Stange4909f162016-03-22 14:11:17 +0100375 return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u8,
Stephen Boydb97f6792015-10-12 18:09:09 -0700376 &fops_u8_ro, &fops_u8_wo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378EXPORT_SYMBOL_GPL(debugfs_create_u8);
379
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800380static int debugfs_u16_set(void *data, u64 val)
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200381{
382 *(u16 *)data = val;
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800383 return 0;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200384}
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800385static int debugfs_u16_get(void *data, u64 *val)
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200386{
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800387 *val = *(u16 *)data;
388 return 0;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200389}
Nicolai Stange4909f162016-03-22 14:11:17 +0100390DEFINE_DEBUGFS_ATTRIBUTE(fops_u16, debugfs_u16_get, debugfs_u16_set, "%llu\n");
391DEFINE_DEBUGFS_ATTRIBUTE(fops_u16_ro, debugfs_u16_get, NULL, "%llu\n");
392DEFINE_DEBUGFS_ATTRIBUTE(fops_u16_wo, NULL, debugfs_u16_set, "%llu\n");
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394/**
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700395 * debugfs_create_u16 - create a debugfs file that is used to read and write an unsigned 16-bit value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * @name: a pointer to a string containing the name of the file to create.
397 * @mode: the permission that the file should have
398 * @parent: a pointer to the parent dentry for this file. This should be a
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700399 * directory dentry if set. If this parameter is %NULL, then the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * file will be created in the root of the debugfs filesystem.
401 * @value: a pointer to the variable that the file should read to and write
402 * from.
403 *
404 * This function creates a file in debugfs with the given name that
405 * contains the value of the variable @value. If the @mode variable is so
406 * set, it can be read from, and written to.
407 *
408 * This function will return a pointer to a dentry if it succeeds. This
409 * pointer must be passed to the debugfs_remove() function when the file is
410 * to be removed (no automatic cleanup happens if your module is unloaded,
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700411 * you are responsible here.) If an error occurs, %NULL will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 *
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700413 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * returned. It is not wise to check for this value, but rather, check for
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700415 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * code.
417 */
Al Virof4ae40a2011-07-24 04:33:43 -0400418struct dentry *debugfs_create_u16(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 struct dentry *parent, u16 *value)
420{
Nicolai Stange4909f162016-03-22 14:11:17 +0100421 return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u16,
Stephen Boydb97f6792015-10-12 18:09:09 -0700422 &fops_u16_ro, &fops_u16_wo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424EXPORT_SYMBOL_GPL(debugfs_create_u16);
425
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800426static int debugfs_u32_set(void *data, u64 val)
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200427{
428 *(u32 *)data = val;
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800429 return 0;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200430}
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800431static int debugfs_u32_get(void *data, u64 *val)
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200432{
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800433 *val = *(u32 *)data;
434 return 0;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200435}
Nicolai Stange4909f162016-03-22 14:11:17 +0100436DEFINE_DEBUGFS_ATTRIBUTE(fops_u32, debugfs_u32_get, debugfs_u32_set, "%llu\n");
437DEFINE_DEBUGFS_ATTRIBUTE(fops_u32_ro, debugfs_u32_get, NULL, "%llu\n");
438DEFINE_DEBUGFS_ATTRIBUTE(fops_u32_wo, NULL, debugfs_u32_set, "%llu\n");
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/**
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700441 * debugfs_create_u32 - create a debugfs file that is used to read and write an unsigned 32-bit value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 * @name: a pointer to a string containing the name of the file to create.
443 * @mode: the permission that the file should have
444 * @parent: a pointer to the parent dentry for this file. This should be a
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700445 * directory dentry if set. If this parameter is %NULL, then the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * file will be created in the root of the debugfs filesystem.
447 * @value: a pointer to the variable that the file should read to and write
448 * from.
449 *
450 * This function creates a file in debugfs with the given name that
451 * contains the value of the variable @value. If the @mode variable is so
452 * set, it can be read from, and written to.
453 *
454 * This function will return a pointer to a dentry if it succeeds. This
455 * pointer must be passed to the debugfs_remove() function when the file is
456 * to be removed (no automatic cleanup happens if your module is unloaded,
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700457 * you are responsible here.) If an error occurs, %NULL will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 *
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700459 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * returned. It is not wise to check for this value, but rather, check for
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700461 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 * code.
463 */
Al Virof4ae40a2011-07-24 04:33:43 -0400464struct dentry *debugfs_create_u32(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 struct dentry *parent, u32 *value)
466{
Nicolai Stange4909f162016-03-22 14:11:17 +0100467 return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u32,
Stephen Boydb97f6792015-10-12 18:09:09 -0700468 &fops_u32_ro, &fops_u32_wo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470EXPORT_SYMBOL_GPL(debugfs_create_u32);
471
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800472static int debugfs_u64_set(void *data, u64 val)
Michael Ellerman84478912007-04-17 15:59:36 +1000473{
474 *(u64 *)data = val;
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800475 return 0;
Michael Ellerman84478912007-04-17 15:59:36 +1000476}
477
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800478static int debugfs_u64_get(void *data, u64 *val)
Michael Ellerman84478912007-04-17 15:59:36 +1000479{
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800480 *val = *(u64 *)data;
481 return 0;
Michael Ellerman84478912007-04-17 15:59:36 +1000482}
Nicolai Stange4909f162016-03-22 14:11:17 +0100483DEFINE_DEBUGFS_ATTRIBUTE(fops_u64, debugfs_u64_get, debugfs_u64_set, "%llu\n");
484DEFINE_DEBUGFS_ATTRIBUTE(fops_u64_ro, debugfs_u64_get, NULL, "%llu\n");
485DEFINE_DEBUGFS_ATTRIBUTE(fops_u64_wo, NULL, debugfs_u64_set, "%llu\n");
Michael Ellerman84478912007-04-17 15:59:36 +1000486
487/**
488 * debugfs_create_u64 - create a debugfs file that is used to read and write an unsigned 64-bit value
489 * @name: a pointer to a string containing the name of the file to create.
490 * @mode: the permission that the file should have
491 * @parent: a pointer to the parent dentry for this file. This should be a
492 * directory dentry if set. If this parameter is %NULL, then the
493 * file will be created in the root of the debugfs filesystem.
494 * @value: a pointer to the variable that the file should read to and write
495 * from.
496 *
497 * This function creates a file in debugfs with the given name that
498 * contains the value of the variable @value. If the @mode variable is so
499 * set, it can be read from, and written to.
500 *
501 * This function will return a pointer to a dentry if it succeeds. This
502 * pointer must be passed to the debugfs_remove() function when the file is
503 * to be removed (no automatic cleanup happens if your module is unloaded,
504 * you are responsible here.) If an error occurs, %NULL will be returned.
505 *
506 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
507 * returned. It is not wise to check for this value, but rather, check for
508 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
509 * code.
510 */
Al Virof4ae40a2011-07-24 04:33:43 -0400511struct dentry *debugfs_create_u64(const char *name, umode_t mode,
Michael Ellerman84478912007-04-17 15:59:36 +1000512 struct dentry *parent, u64 *value)
513{
Nicolai Stange4909f162016-03-22 14:11:17 +0100514 return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u64,
Stephen Boydb97f6792015-10-12 18:09:09 -0700515 &fops_u64_ro, &fops_u64_wo);
Michael Ellerman84478912007-04-17 15:59:36 +1000516}
517EXPORT_SYMBOL_GPL(debugfs_create_u64);
518
Viresh Kumarc23fe832015-10-18 22:43:19 +0530519static int debugfs_ulong_set(void *data, u64 val)
520{
521 *(unsigned long *)data = val;
522 return 0;
523}
524
525static int debugfs_ulong_get(void *data, u64 *val)
526{
527 *val = *(unsigned long *)data;
528 return 0;
529}
Nicolai Stange4909f162016-03-22 14:11:17 +0100530DEFINE_DEBUGFS_ATTRIBUTE(fops_ulong, debugfs_ulong_get, debugfs_ulong_set,
531 "%llu\n");
532DEFINE_DEBUGFS_ATTRIBUTE(fops_ulong_ro, debugfs_ulong_get, NULL, "%llu\n");
533DEFINE_DEBUGFS_ATTRIBUTE(fops_ulong_wo, NULL, debugfs_ulong_set, "%llu\n");
Viresh Kumarc23fe832015-10-18 22:43:19 +0530534
535/**
536 * debugfs_create_ulong - create a debugfs file that is used to read and write
537 * an unsigned long value.
538 * @name: a pointer to a string containing the name of the file to create.
539 * @mode: the permission that the file should have
540 * @parent: a pointer to the parent dentry for this file. This should be a
541 * directory dentry if set. If this parameter is %NULL, then the
542 * file will be created in the root of the debugfs filesystem.
543 * @value: a pointer to the variable that the file should read to and write
544 * from.
545 *
546 * This function creates a file in debugfs with the given name that
547 * contains the value of the variable @value. If the @mode variable is so
548 * set, it can be read from, and written to.
549 *
550 * This function will return a pointer to a dentry if it succeeds. This
551 * pointer must be passed to the debugfs_remove() function when the file is
552 * to be removed (no automatic cleanup happens if your module is unloaded,
553 * you are responsible here.) If an error occurs, %NULL will be returned.
554 *
555 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
556 * returned. It is not wise to check for this value, but rather, check for
557 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
558 * code.
559 */
560struct dentry *debugfs_create_ulong(const char *name, umode_t mode,
561 struct dentry *parent, unsigned long *value)
562{
Nicolai Stange4909f162016-03-22 14:11:17 +0100563 return debugfs_create_mode_unsafe(name, mode, parent, value,
564 &fops_ulong, &fops_ulong_ro,
565 &fops_ulong_wo);
Viresh Kumarc23fe832015-10-18 22:43:19 +0530566}
567EXPORT_SYMBOL_GPL(debugfs_create_ulong);
568
Nicolai Stange4909f162016-03-22 14:11:17 +0100569DEFINE_DEBUGFS_ATTRIBUTE(fops_x8, debugfs_u8_get, debugfs_u8_set, "0x%02llx\n");
570DEFINE_DEBUGFS_ATTRIBUTE(fops_x8_ro, debugfs_u8_get, NULL, "0x%02llx\n");
571DEFINE_DEBUGFS_ATTRIBUTE(fops_x8_wo, NULL, debugfs_u8_set, "0x%02llx\n");
Robin Getz2ebefc52007-08-02 18:23:50 -0400572
Nicolai Stange4909f162016-03-22 14:11:17 +0100573DEFINE_DEBUGFS_ATTRIBUTE(fops_x16, debugfs_u16_get, debugfs_u16_set,
574 "0x%04llx\n");
575DEFINE_DEBUGFS_ATTRIBUTE(fops_x16_ro, debugfs_u16_get, NULL, "0x%04llx\n");
576DEFINE_DEBUGFS_ATTRIBUTE(fops_x16_wo, NULL, debugfs_u16_set, "0x%04llx\n");
Robin Getz2ebefc52007-08-02 18:23:50 -0400577
Nicolai Stange4909f162016-03-22 14:11:17 +0100578DEFINE_DEBUGFS_ATTRIBUTE(fops_x32, debugfs_u32_get, debugfs_u32_set,
579 "0x%08llx\n");
580DEFINE_DEBUGFS_ATTRIBUTE(fops_x32_ro, debugfs_u32_get, NULL, "0x%08llx\n");
581DEFINE_DEBUGFS_ATTRIBUTE(fops_x32_wo, NULL, debugfs_u32_set, "0x%08llx\n");
Robin Getz2ebefc52007-08-02 18:23:50 -0400582
Nicolai Stange4909f162016-03-22 14:11:17 +0100583DEFINE_DEBUGFS_ATTRIBUTE(fops_x64, debugfs_u64_get, debugfs_u64_set,
584 "0x%016llx\n");
585DEFINE_DEBUGFS_ATTRIBUTE(fops_x64_ro, debugfs_u64_get, NULL, "0x%016llx\n");
586DEFINE_DEBUGFS_ATTRIBUTE(fops_x64_wo, NULL, debugfs_u64_set, "0x%016llx\n");
Huang Ying15b0bea2010-05-18 14:35:23 +0800587
Randy Dunlape6716b82007-10-15 17:30:19 -0700588/*
Huang Ying15b0bea2010-05-18 14:35:23 +0800589 * debugfs_create_x{8,16,32,64} - create a debugfs file that is used to read and write an unsigned {8,16,32,64}-bit value
Randy Dunlape6716b82007-10-15 17:30:19 -0700590 *
591 * These functions are exactly the same as the above functions (but use a hex
592 * output for the decimal challenged). For details look at the above unsigned
593 * decimal functions.
594 */
595
Robin Getz2ebefc52007-08-02 18:23:50 -0400596/**
597 * debugfs_create_x8 - create a debugfs file that is used to read and write an unsigned 8-bit value
Randy Dunlape6716b82007-10-15 17:30:19 -0700598 * @name: a pointer to a string containing the name of the file to create.
599 * @mode: the permission that the file should have
600 * @parent: a pointer to the parent dentry for this file. This should be a
601 * directory dentry if set. If this parameter is %NULL, then the
602 * file will be created in the root of the debugfs filesystem.
603 * @value: a pointer to the variable that the file should read to and write
604 * from.
Robin Getz2ebefc52007-08-02 18:23:50 -0400605 */
Al Virof4ae40a2011-07-24 04:33:43 -0400606struct dentry *debugfs_create_x8(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400607 struct dentry *parent, u8 *value)
608{
Nicolai Stange4909f162016-03-22 14:11:17 +0100609 return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x8,
Stephen Boydb97f6792015-10-12 18:09:09 -0700610 &fops_x8_ro, &fops_x8_wo);
Robin Getz2ebefc52007-08-02 18:23:50 -0400611}
612EXPORT_SYMBOL_GPL(debugfs_create_x8);
613
Randy Dunlape6716b82007-10-15 17:30:19 -0700614/**
615 * debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit value
616 * @name: a pointer to a string containing the name of the file to create.
617 * @mode: the permission that the file should have
618 * @parent: a pointer to the parent dentry for this file. This should be a
619 * directory dentry if set. If this parameter is %NULL, then the
620 * file will be created in the root of the debugfs filesystem.
621 * @value: a pointer to the variable that the file should read to and write
622 * from.
623 */
Al Virof4ae40a2011-07-24 04:33:43 -0400624struct dentry *debugfs_create_x16(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400625 struct dentry *parent, u16 *value)
626{
Nicolai Stange4909f162016-03-22 14:11:17 +0100627 return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x16,
Stephen Boydb97f6792015-10-12 18:09:09 -0700628 &fops_x16_ro, &fops_x16_wo);
Robin Getz2ebefc52007-08-02 18:23:50 -0400629}
630EXPORT_SYMBOL_GPL(debugfs_create_x16);
631
Randy Dunlape6716b82007-10-15 17:30:19 -0700632/**
633 * debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit value
634 * @name: a pointer to a string containing the name of the file to create.
635 * @mode: the permission that the file should have
636 * @parent: a pointer to the parent dentry for this file. This should be a
637 * directory dentry if set. If this parameter is %NULL, then the
638 * file will be created in the root of the debugfs filesystem.
639 * @value: a pointer to the variable that the file should read to and write
640 * from.
641 */
Al Virof4ae40a2011-07-24 04:33:43 -0400642struct dentry *debugfs_create_x32(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400643 struct dentry *parent, u32 *value)
644{
Nicolai Stange4909f162016-03-22 14:11:17 +0100645 return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x32,
Stephen Boydb97f6792015-10-12 18:09:09 -0700646 &fops_x32_ro, &fops_x32_wo);
Robin Getz2ebefc52007-08-02 18:23:50 -0400647}
648EXPORT_SYMBOL_GPL(debugfs_create_x32);
649
Huang Ying15b0bea2010-05-18 14:35:23 +0800650/**
651 * debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit value
652 * @name: a pointer to a string containing the name of the file to create.
653 * @mode: the permission that the file should have
654 * @parent: a pointer to the parent dentry for this file. This should be a
655 * directory dentry if set. If this parameter is %NULL, then the
656 * file will be created in the root of the debugfs filesystem.
657 * @value: a pointer to the variable that the file should read to and write
658 * from.
659 */
Al Virof4ae40a2011-07-24 04:33:43 -0400660struct dentry *debugfs_create_x64(const char *name, umode_t mode,
Huang Ying15b0bea2010-05-18 14:35:23 +0800661 struct dentry *parent, u64 *value)
662{
Nicolai Stange4909f162016-03-22 14:11:17 +0100663 return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x64,
Stephen Boyd82b7d4f2015-10-12 18:09:10 -0700664 &fops_x64_ro, &fops_x64_wo);
Huang Ying15b0bea2010-05-18 14:35:23 +0800665}
666EXPORT_SYMBOL_GPL(debugfs_create_x64);
667
Inaky Perez-Gonzalez5e078782008-12-20 16:57:39 -0800668
669static int debugfs_size_t_set(void *data, u64 val)
670{
671 *(size_t *)data = val;
672 return 0;
673}
674static int debugfs_size_t_get(void *data, u64 *val)
675{
676 *val = *(size_t *)data;
677 return 0;
678}
Nicolai Stange4909f162016-03-22 14:11:17 +0100679DEFINE_DEBUGFS_ATTRIBUTE(fops_size_t, debugfs_size_t_get, debugfs_size_t_set,
680 "%llu\n"); /* %llu and %zu are more or less the same */
681DEFINE_DEBUGFS_ATTRIBUTE(fops_size_t_ro, debugfs_size_t_get, NULL, "%llu\n");
682DEFINE_DEBUGFS_ATTRIBUTE(fops_size_t_wo, NULL, debugfs_size_t_set, "%llu\n");
Inaky Perez-Gonzalez5e078782008-12-20 16:57:39 -0800683
684/**
685 * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value
686 * @name: a pointer to a string containing the name of the file to create.
687 * @mode: the permission that the file should have
688 * @parent: a pointer to the parent dentry for this file. This should be a
689 * directory dentry if set. If this parameter is %NULL, then the
690 * file will be created in the root of the debugfs filesystem.
691 * @value: a pointer to the variable that the file should read to and write
692 * from.
693 */
Al Virof4ae40a2011-07-24 04:33:43 -0400694struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
Inaky Perez-Gonzalez5e078782008-12-20 16:57:39 -0800695 struct dentry *parent, size_t *value)
696{
Nicolai Stange4909f162016-03-22 14:11:17 +0100697 return debugfs_create_mode_unsafe(name, mode, parent, value,
698 &fops_size_t, &fops_size_t_ro,
699 &fops_size_t_wo);
Inaky Perez-Gonzalez5e078782008-12-20 16:57:39 -0800700}
701EXPORT_SYMBOL_GPL(debugfs_create_size_t);
702
Seth Jennings3a76e5e2013-06-03 15:33:02 -0500703static int debugfs_atomic_t_set(void *data, u64 val)
704{
705 atomic_set((atomic_t *)data, val);
706 return 0;
707}
708static int debugfs_atomic_t_get(void *data, u64 *val)
709{
710 *val = atomic_read((atomic_t *)data);
711 return 0;
712}
Nicolai Stange4909f162016-03-22 14:11:17 +0100713DEFINE_DEBUGFS_ATTRIBUTE(fops_atomic_t, debugfs_atomic_t_get,
Seth Jennings3a76e5e2013-06-03 15:33:02 -0500714 debugfs_atomic_t_set, "%lld\n");
Nicolai Stange4909f162016-03-22 14:11:17 +0100715DEFINE_DEBUGFS_ATTRIBUTE(fops_atomic_t_ro, debugfs_atomic_t_get, NULL,
716 "%lld\n");
717DEFINE_DEBUGFS_ATTRIBUTE(fops_atomic_t_wo, NULL, debugfs_atomic_t_set,
718 "%lld\n");
Seth Jennings3a76e5e2013-06-03 15:33:02 -0500719
720/**
721 * debugfs_create_atomic_t - create a debugfs file that is used to read and
722 * write an atomic_t value
723 * @name: a pointer to a string containing the name of the file to create.
724 * @mode: the permission that the file should have
725 * @parent: a pointer to the parent dentry for this file. This should be a
726 * directory dentry if set. If this parameter is %NULL, then the
727 * file will be created in the root of the debugfs filesystem.
728 * @value: a pointer to the variable that the file should read to and write
729 * from.
730 */
731struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
732 struct dentry *parent, atomic_t *value)
733{
Nicolai Stange4909f162016-03-22 14:11:17 +0100734 return debugfs_create_mode_unsafe(name, mode, parent, value,
735 &fops_atomic_t, &fops_atomic_t_ro,
736 &fops_atomic_t_wo);
Seth Jennings3a76e5e2013-06-03 15:33:02 -0500737}
738EXPORT_SYMBOL_GPL(debugfs_create_atomic_t);
Inaky Perez-Gonzalez5e078782008-12-20 16:57:39 -0800739
Richard Fitzgerald0642ef62015-06-23 14:32:54 +0100740ssize_t debugfs_read_file_bool(struct file *file, char __user *user_buf,
741 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 char buf[3];
Nicolai Stange4d45f792016-03-22 14:11:18 +0100744 bool val;
745 int r, srcu_idx;
Rahul Bedarkar88e412e2014-06-06 23:12:04 +0530746
Nicolai Stange4d45f792016-03-22 14:11:18 +0100747 r = debugfs_use_file_start(F_DENTRY(file), &srcu_idx);
748 if (likely(!r))
749 val = *(bool *)file->private_data;
750 debugfs_use_file_finish(srcu_idx);
751 if (r)
752 return r;
753
754 if (val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 buf[0] = 'Y';
756 else
757 buf[0] = 'N';
758 buf[1] = '\n';
759 buf[2] = 0x00;
760 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
761}
Richard Fitzgerald0642ef62015-06-23 14:32:54 +0100762EXPORT_SYMBOL_GPL(debugfs_read_file_bool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Richard Fitzgerald0642ef62015-06-23 14:32:54 +0100764ssize_t debugfs_write_file_bool(struct file *file, const char __user *user_buf,
765 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
767 char buf[32];
Stephen Boydc42d2232011-05-12 16:50:07 -0700768 size_t buf_size;
Jonathan Cameron8705b482011-04-19 12:43:46 +0100769 bool bv;
Nicolai Stange4d45f792016-03-22 14:11:18 +0100770 int r, srcu_idx;
Viresh Kumar621a5f72015-09-26 15:04:07 -0700771 bool *val = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 buf_size = min(count, (sizeof(buf)-1));
774 if (copy_from_user(buf, user_buf, buf_size))
775 return -EFAULT;
776
Mathias Krausea3b2c8c72013-05-31 23:24:29 +0200777 buf[buf_size] = '\0';
Nicolai Stange4d45f792016-03-22 14:11:18 +0100778 if (strtobool(buf, &bv) == 0) {
779 r = debugfs_use_file_start(F_DENTRY(file), &srcu_idx);
780 if (likely(!r))
781 *val = bv;
782 debugfs_use_file_finish(srcu_idx);
783 if (r)
784 return r;
785 }
Jonathan Cameron8705b482011-04-19 12:43:46 +0100786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return count;
788}
Richard Fitzgerald0642ef62015-06-23 14:32:54 +0100789EXPORT_SYMBOL_GPL(debugfs_write_file_bool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800791static const struct file_operations fops_bool = {
Richard Fitzgerald0642ef62015-06-23 14:32:54 +0100792 .read = debugfs_read_file_bool,
793 .write = debugfs_write_file_bool,
Stephen Boyd234e3402012-04-05 14:25:11 -0700794 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200795 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796};
797
Stephen Boyd6713e8f2015-10-12 18:09:12 -0700798static const struct file_operations fops_bool_ro = {
799 .read = debugfs_read_file_bool,
800 .open = simple_open,
801 .llseek = default_llseek,
802};
803
804static const struct file_operations fops_bool_wo = {
805 .write = debugfs_write_file_bool,
806 .open = simple_open,
807 .llseek = default_llseek,
808};
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810/**
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700811 * debugfs_create_bool - create a debugfs file that is used to read and write a boolean value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * @name: a pointer to a string containing the name of the file to create.
813 * @mode: the permission that the file should have
814 * @parent: a pointer to the parent dentry for this file. This should be a
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700815 * directory dentry if set. If this parameter is %NULL, then the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 * file will be created in the root of the debugfs filesystem.
817 * @value: a pointer to the variable that the file should read to and write
818 * from.
819 *
820 * This function creates a file in debugfs with the given name that
821 * contains the value of the variable @value. If the @mode variable is so
822 * set, it can be read from, and written to.
823 *
824 * This function will return a pointer to a dentry if it succeeds. This
825 * pointer must be passed to the debugfs_remove() function when the file is
826 * to be removed (no automatic cleanup happens if your module is unloaded,
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700827 * you are responsible here.) If an error occurs, %NULL will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 *
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700829 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 * returned. It is not wise to check for this value, but rather, check for
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700831 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 * code.
833 */
Al Virof4ae40a2011-07-24 04:33:43 -0400834struct dentry *debugfs_create_bool(const char *name, umode_t mode,
Viresh Kumar621a5f72015-09-26 15:04:07 -0700835 struct dentry *parent, bool *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Nicolai Stange4d45f792016-03-22 14:11:18 +0100837 return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_bool,
Stephen Boyd6713e8f2015-10-12 18:09:12 -0700838 &fops_bool_ro, &fops_bool_wo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840EXPORT_SYMBOL_GPL(debugfs_create_bool);
841
Michael Ellermandd308bc2006-03-07 21:41:59 +1100842static ssize_t read_file_blob(struct file *file, char __user *user_buf,
843 size_t count, loff_t *ppos)
844{
845 struct debugfs_blob_wrapper *blob = file->private_data;
Nicolai Stange83b711c2016-03-22 14:11:19 +0100846 ssize_t r;
847 int srcu_idx;
848
849 r = debugfs_use_file_start(F_DENTRY(file), &srcu_idx);
850 if (likely(!r))
851 r = simple_read_from_buffer(user_buf, count, ppos, blob->data,
852 blob->size);
853 debugfs_use_file_finish(srcu_idx);
854 return r;
Michael Ellermandd308bc2006-03-07 21:41:59 +1100855}
856
Arjan van de Ven00977a52007-02-12 00:55:34 -0800857static const struct file_operations fops_blob = {
Michael Ellermandd308bc2006-03-07 21:41:59 +1100858 .read = read_file_blob,
Stephen Boyd234e3402012-04-05 14:25:11 -0700859 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200860 .llseek = default_llseek,
Michael Ellermandd308bc2006-03-07 21:41:59 +1100861};
862
863/**
Jonathan Corbet400ced62009-05-25 10:15:27 -0600864 * debugfs_create_blob - create a debugfs file that is used to read a binary blob
Michael Ellermandd308bc2006-03-07 21:41:59 +1100865 * @name: a pointer to a string containing the name of the file to create.
866 * @mode: the permission that the file should have
867 * @parent: a pointer to the parent dentry for this file. This should be a
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700868 * directory dentry if set. If this parameter is %NULL, then the
Michael Ellermandd308bc2006-03-07 21:41:59 +1100869 * file will be created in the root of the debugfs filesystem.
870 * @blob: a pointer to a struct debugfs_blob_wrapper which contains a pointer
871 * to the blob data and the size of the data.
872 *
873 * This function creates a file in debugfs with the given name that exports
874 * @blob->data as a binary blob. If the @mode variable is so set it can be
875 * read from. Writing is not supported.
876 *
877 * This function will return a pointer to a dentry if it succeeds. This
878 * pointer must be passed to the debugfs_remove() function when the file is
879 * to be removed (no automatic cleanup happens if your module is unloaded,
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700880 * you are responsible here.) If an error occurs, %NULL will be returned.
Michael Ellermandd308bc2006-03-07 21:41:59 +1100881 *
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700882 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
Michael Ellermandd308bc2006-03-07 21:41:59 +1100883 * returned. It is not wise to check for this value, but rather, check for
Randy Dunlap6468b3a2006-07-20 08:16:42 -0700884 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
Michael Ellermandd308bc2006-03-07 21:41:59 +1100885 * code.
886 */
Al Virof4ae40a2011-07-24 04:33:43 -0400887struct dentry *debugfs_create_blob(const char *name, umode_t mode,
Michael Ellermandd308bc2006-03-07 21:41:59 +1100888 struct dentry *parent,
889 struct debugfs_blob_wrapper *blob)
890{
Nicolai Stange83b711c2016-03-22 14:11:19 +0100891 return debugfs_create_file_unsafe(name, mode, parent, blob, &fops_blob);
Michael Ellermandd308bc2006-03-07 21:41:59 +1100892}
893EXPORT_SYMBOL_GPL(debugfs_create_blob);
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100894
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530895struct array_data {
896 void *array;
897 u32 elements;
898};
899
Linus Torvaldse05e2792012-09-21 11:48:05 -0700900static size_t u32_format_array(char *buf, size_t bufsize,
901 u32 *array, int array_size)
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530902{
903 size_t ret = 0;
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530904
Linus Torvaldse05e2792012-09-21 11:48:05 -0700905 while (--array_size >= 0) {
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530906 size_t len;
Linus Torvaldse05e2792012-09-21 11:48:05 -0700907 char term = array_size ? ' ' : '\n';
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530908
Linus Torvaldse05e2792012-09-21 11:48:05 -0700909 len = snprintf(buf, bufsize, "%u%c", *array++, term);
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530910 ret += len;
911
Linus Torvaldse05e2792012-09-21 11:48:05 -0700912 buf += len;
913 bufsize -= len;
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530914 }
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530915 return ret;
916}
917
David Rientjes36048852012-09-21 02:16:29 -0700918static int u32_array_open(struct inode *inode, struct file *file)
919{
920 struct array_data *data = inode->i_private;
Linus Torvaldse05e2792012-09-21 11:48:05 -0700921 int size, elements = data->elements;
922 char *buf;
David Rientjes36048852012-09-21 02:16:29 -0700923
Linus Torvaldse05e2792012-09-21 11:48:05 -0700924 /*
925 * Max size:
926 * - 10 digits + ' '/'\n' = 11 bytes per number
927 * - terminating NUL character
928 */
929 size = elements*11;
930 buf = kmalloc(size+1, GFP_KERNEL);
931 if (!buf)
David Rientjes36048852012-09-21 02:16:29 -0700932 return -ENOMEM;
Linus Torvaldse05e2792012-09-21 11:48:05 -0700933 buf[size] = 0;
934
935 file->private_data = buf;
936 u32_format_array(buf, size, data->array, data->elements);
937
David Rientjes36048852012-09-21 02:16:29 -0700938 return nonseekable_open(inode, file);
939}
940
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530941static ssize_t u32_array_read(struct file *file, char __user *buf, size_t len,
942 loff_t *ppos)
943{
David Rientjes36048852012-09-21 02:16:29 -0700944 size_t size = strlen(file->private_data);
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530945
946 return simple_read_from_buffer(buf, len, ppos,
947 file->private_data, size);
948}
949
950static int u32_array_release(struct inode *inode, struct file *file)
951{
952 kfree(file->private_data);
953
954 return 0;
955}
956
957static const struct file_operations u32_array_fops = {
958 .owner = THIS_MODULE,
959 .open = u32_array_open,
960 .release = u32_array_release,
961 .read = u32_array_read,
962 .llseek = no_llseek,
963};
964
965/**
966 * debugfs_create_u32_array - create a debugfs file that is used to read u32
967 * array.
968 * @name: a pointer to a string containing the name of the file to create.
969 * @mode: the permission that the file should have.
970 * @parent: a pointer to the parent dentry for this file. This should be a
971 * directory dentry if set. If this parameter is %NULL, then the
972 * file will be created in the root of the debugfs filesystem.
973 * @array: u32 array that provides data.
974 * @elements: total number of elements in the array.
975 *
976 * This function creates a file in debugfs with the given name that exports
977 * @array as data. If the @mode variable is so set it can be read from.
978 * Writing is not supported. Seek within the file is also not supported.
979 * Once array is created its size can not be changed.
980 *
981 * The function returns a pointer to dentry on success. If debugfs is not
982 * enabled in the kernel, the value -%ENODEV will be returned.
983 */
984struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
985 struct dentry *parent,
986 u32 *array, u32 elements)
987{
988 struct array_data *data = kmalloc(sizeof(*data), GFP_KERNEL);
989
990 if (data == NULL)
991 return NULL;
992
993 data->array = array;
994 data->elements = elements;
995
Nicolai Stangec4a74f62016-03-22 14:11:20 +0100996 return debugfs_create_file_unsafe(name, mode, parent, data,
997 &u32_array_fops);
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530998}
999EXPORT_SYMBOL_GPL(debugfs_create_u32_array);
1000
Heiko Carstens3b85e4a2011-12-27 15:08:28 +01001001#ifdef CONFIG_HAS_IOMEM
1002
Alessandro Rubini1a087c62011-11-18 14:50:21 +01001003/*
1004 * The regset32 stuff is used to print 32-bit registers using the
1005 * seq_file utilities. We offer printing a register set in an already-opened
1006 * sequential file or create a debugfs file that only prints a regset32.
1007 */
1008
1009/**
1010 * debugfs_print_regs32 - use seq_print to describe a set of registers
1011 * @s: the seq_file structure being used to generate output
1012 * @regs: an array if struct debugfs_reg32 structures
Randy Dunlapb5763ac2012-01-21 11:02:42 -08001013 * @nregs: the length of the above array
Alessandro Rubini1a087c62011-11-18 14:50:21 +01001014 * @base: the base address to be used in reading the registers
1015 * @prefix: a string to be prefixed to every output line
1016 *
1017 * This function outputs a text block describing the current values of
1018 * some 32-bit hardware registers. It is meant to be used within debugfs
1019 * files based on seq_file that need to show registers, intermixed with other
1020 * information. The prefix argument may be used to specify a leading string,
1021 * because some peripherals have several blocks of identical registers,
1022 * for example configuration of dma channels
1023 */
Joe Perches97615362014-09-29 16:08:26 -07001024void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
1025 int nregs, void __iomem *base, char *prefix)
Alessandro Rubini1a087c62011-11-18 14:50:21 +01001026{
Joe Perches97615362014-09-29 16:08:26 -07001027 int i;
Alessandro Rubini1a087c62011-11-18 14:50:21 +01001028
1029 for (i = 0; i < nregs; i++, regs++) {
1030 if (prefix)
Joe Perches97615362014-09-29 16:08:26 -07001031 seq_printf(s, "%s", prefix);
1032 seq_printf(s, "%s = 0x%08x\n", regs->name,
1033 readl(base + regs->offset));
1034 if (seq_has_overflowed(s))
1035 break;
Alessandro Rubini1a087c62011-11-18 14:50:21 +01001036 }
Alessandro Rubini1a087c62011-11-18 14:50:21 +01001037}
1038EXPORT_SYMBOL_GPL(debugfs_print_regs32);
1039
1040static int debugfs_show_regset32(struct seq_file *s, void *data)
1041{
1042 struct debugfs_regset32 *regset = s->private;
1043
1044 debugfs_print_regs32(s, regset->regs, regset->nregs, regset->base, "");
1045 return 0;
1046}
1047
1048static int debugfs_open_regset32(struct inode *inode, struct file *file)
1049{
1050 return single_open(file, debugfs_show_regset32, inode->i_private);
1051}
1052
1053static const struct file_operations fops_regset32 = {
1054 .open = debugfs_open_regset32,
1055 .read = seq_read,
1056 .llseek = seq_lseek,
1057 .release = single_release,
1058};
1059
1060/**
1061 * debugfs_create_regset32 - create a debugfs file that returns register values
1062 * @name: a pointer to a string containing the name of the file to create.
1063 * @mode: the permission that the file should have
1064 * @parent: a pointer to the parent dentry for this file. This should be a
1065 * directory dentry if set. If this parameter is %NULL, then the
1066 * file will be created in the root of the debugfs filesystem.
1067 * @regset: a pointer to a struct debugfs_regset32, which contains a pointer
1068 * to an array of register definitions, the array size and the base
1069 * address where the register bank is to be found.
1070 *
1071 * This function creates a file in debugfs with the given name that reports
1072 * the names and values of a set of 32-bit registers. If the @mode variable
1073 * is so set it can be read from. Writing is not supported.
1074 *
1075 * This function will return a pointer to a dentry if it succeeds. This
1076 * pointer must be passed to the debugfs_remove() function when the file is
1077 * to be removed (no automatic cleanup happens if your module is unloaded,
1078 * you are responsible here.) If an error occurs, %NULL will be returned.
1079 *
1080 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
1081 * returned. It is not wise to check for this value, but rather, check for
1082 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
1083 * code.
1084 */
Al Viro88187392012-03-20 06:00:24 -04001085struct dentry *debugfs_create_regset32(const char *name, umode_t mode,
Alessandro Rubini1a087c62011-11-18 14:50:21 +01001086 struct dentry *parent,
1087 struct debugfs_regset32 *regset)
1088{
1089 return debugfs_create_file(name, mode, parent, regset, &fops_regset32);
1090}
1091EXPORT_SYMBOL_GPL(debugfs_create_regset32);
Heiko Carstens3b85e4a2011-12-27 15:08:28 +01001092
1093#endif /* CONFIG_HAS_IOMEM */
Arend van Spriel98210b72014-11-09 11:31:58 +01001094
1095struct debugfs_devm_entry {
1096 int (*read)(struct seq_file *seq, void *data);
1097 struct device *dev;
1098};
1099
1100static int debugfs_devm_entry_open(struct inode *inode, struct file *f)
1101{
1102 struct debugfs_devm_entry *entry = inode->i_private;
1103
1104 return single_open(f, entry->read, entry->dev);
1105}
1106
1107static const struct file_operations debugfs_devm_entry_ops = {
1108 .owner = THIS_MODULE,
1109 .open = debugfs_devm_entry_open,
1110 .release = single_release,
1111 .read = seq_read,
1112 .llseek = seq_lseek
1113};
1114
1115/**
1116 * debugfs_create_devm_seqfile - create a debugfs file that is bound to device.
1117 *
1118 * @dev: device related to this debugfs file.
1119 * @name: name of the debugfs file.
1120 * @parent: a pointer to the parent dentry for this file. This should be a
1121 * directory dentry if set. If this parameter is %NULL, then the
1122 * file will be created in the root of the debugfs filesystem.
1123 * @read_fn: function pointer called to print the seq_file content.
1124 */
1125struct dentry *debugfs_create_devm_seqfile(struct device *dev, const char *name,
1126 struct dentry *parent,
1127 int (*read_fn)(struct seq_file *s,
1128 void *data))
1129{
1130 struct debugfs_devm_entry *entry;
1131
1132 if (IS_ERR(parent))
1133 return ERR_PTR(-ENOENT);
1134
1135 entry = devm_kzalloc(dev, sizeof(*entry), GFP_KERNEL);
1136 if (!entry)
1137 return ERR_PTR(-ENOMEM);
1138
1139 entry->read = read_fn;
1140 entry->dev = dev;
1141
1142 return debugfs_create_file(name, S_IRUGO, parent, entry,
1143 &debugfs_devm_entry_ops);
1144}
1145EXPORT_SYMBOL_GPL(debugfs_create_devm_seqfile);
1146