debugfs.txt 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. Copyright 2009 Jonathan Corbet <corbet@lwn.net>
  2. Debugfs exists as a simple way for kernel developers to make information
  3. available to user space. Unlike /proc, which is only meant for information
  4. about a process, or sysfs, which has strict one-value-per-file rules,
  5. debugfs has no rules at all. Developers can put any information they want
  6. there. The debugfs filesystem is also intended to not serve as a stable
  7. ABI to user space; in theory, there are no stability constraints placed on
  8. files exported there. The real world is not always so simple, though [1];
  9. even debugfs interfaces are best designed with the idea that they will need
  10. to be maintained forever.
  11. Debugfs is typically mounted with a command like:
  12. mount -t debugfs none /sys/kernel/debug
  13. (Or an equivalent /etc/fstab line).
  14. Note that the debugfs API is exported GPL-only to modules.
  15. Code using debugfs should include <linux/debugfs.h>. Then, the first order
  16. of business will be to create at least one directory to hold a set of
  17. debugfs files:
  18. struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
  19. This call, if successful, will make a directory called name underneath the
  20. indicated parent directory. If parent is NULL, the directory will be
  21. created in the debugfs root. On success, the return value is a struct
  22. dentry pointer which can be used to create files in the directory (and to
  23. clean it up at the end). A NULL return value indicates that something went
  24. wrong. If ERR_PTR(-ENODEV) is returned, that is an indication that the
  25. kernel has been built without debugfs support and none of the functions
  26. described below will work.
  27. The most general way to create a file within a debugfs directory is with:
  28. struct dentry *debugfs_create_file(const char *name, mode_t mode,
  29. struct dentry *parent, void *data,
  30. const struct file_operations *fops);
  31. Here, name is the name of the file to create, mode describes the access
  32. permissions the file should have, parent indicates the directory which
  33. should hold the file, data will be stored in the i_private field of the
  34. resulting inode structure, and fops is a set of file operations which
  35. implement the file's behavior. At a minimum, the read() and/or write()
  36. operations should be provided; others can be included as needed. Again,
  37. the return value will be a dentry pointer to the created file, NULL for
  38. error, or ERR_PTR(-ENODEV) if debugfs support is missing.
  39. In a number of cases, the creation of a set of file operations is not
  40. actually necessary; the debugfs code provides a number of helper functions
  41. for simple situations. Files containing a single integer value can be
  42. created with any of:
  43. struct dentry *debugfs_create_u8(const char *name, mode_t mode,
  44. struct dentry *parent, u8 *value);
  45. struct dentry *debugfs_create_u16(const char *name, mode_t mode,
  46. struct dentry *parent, u16 *value);
  47. struct dentry *debugfs_create_u32(const char *name, mode_t mode,
  48. struct dentry *parent, u32 *value);
  49. struct dentry *debugfs_create_u64(const char *name, mode_t mode,
  50. struct dentry *parent, u64 *value);
  51. These files support both reading and writing the given value; if a specific
  52. file should not be written to, simply set the mode bits accordingly. The
  53. values in these files are in decimal; if hexadecimal is more appropriate,
  54. the following functions can be used instead:
  55. struct dentry *debugfs_create_x8(const char *name, mode_t mode,
  56. struct dentry *parent, u8 *value);
  57. struct dentry *debugfs_create_x16(const char *name, mode_t mode,
  58. struct dentry *parent, u16 *value);
  59. struct dentry *debugfs_create_x32(const char *name, mode_t mode,
  60. struct dentry *parent, u32 *value);
  61. struct dentry *debugfs_create_x64(const char *name, mode_t mode,
  62. struct dentry *parent, u64 *value);
  63. These functions are useful as long as the developer knows the size of the
  64. value to be exported. Some types can have different widths on different
  65. architectures, though, complicating the situation somewhat. There is a
  66. function meant to help out in one special case:
  67. struct dentry *debugfs_create_size_t(const char *name, mode_t mode,
  68. struct dentry *parent,
  69. size_t *value);
  70. As might be expected, this function will create a debugfs file to represent
  71. a variable of type size_t.
  72. Boolean values can be placed in debugfs with:
  73. struct dentry *debugfs_create_bool(const char *name, mode_t mode,
  74. struct dentry *parent, u32 *value);
  75. A read on the resulting file will yield either Y (for non-zero values) or
  76. N, followed by a newline. If written to, it will accept either upper- or
  77. lower-case values, or 1 or 0. Any other input will be silently ignored.
  78. Finally, a block of arbitrary binary data can be exported with:
  79. struct debugfs_blob_wrapper {
  80. void *data;
  81. unsigned long size;
  82. };
  83. struct dentry *debugfs_create_blob(const char *name, mode_t mode,
  84. struct dentry *parent,
  85. struct debugfs_blob_wrapper *blob);
  86. A read of this file will return the data pointed to by the
  87. debugfs_blob_wrapper structure. Some drivers use "blobs" as a simple way
  88. to return several lines of (static) formatted text output. This function
  89. can be used to export binary information, but there does not appear to be
  90. any code which does so in the mainline. Note that all files created with
  91. debugfs_create_blob() are read-only.
  92. There are a couple of other directory-oriented helper functions:
  93. struct dentry *debugfs_rename(struct dentry *old_dir,
  94. struct dentry *old_dentry,
  95. struct dentry *new_dir,
  96. const char *new_name);
  97. struct dentry *debugfs_create_symlink(const char *name,
  98. struct dentry *parent,
  99. const char *target);
  100. A call to debugfs_rename() will give a new name to an existing debugfs
  101. file, possibly in a different directory. The new_name must not exist prior
  102. to the call; the return value is old_dentry with updated information.
  103. Symbolic links can be created with debugfs_create_symlink().
  104. There is one important thing that all debugfs users must take into account:
  105. there is no automatic cleanup of any directories created in debugfs. If a
  106. module is unloaded without explicitly removing debugfs entries, the result
  107. will be a lot of stale pointers and no end of highly antisocial behavior.
  108. So all debugfs users - at least those which can be built as modules - must
  109. be prepared to remove all files and directories they create there. A file
  110. can be removed with:
  111. void debugfs_remove(struct dentry *dentry);
  112. The dentry value can be NULL, in which case nothing will be removed.
  113. Once upon a time, debugfs users were required to remember the dentry
  114. pointer for every debugfs file they created so that all files could be
  115. cleaned up. We live in more civilized times now, though, and debugfs users
  116. can call:
  117. void debugfs_remove_recursive(struct dentry *dentry);
  118. If this function is passed a pointer for the dentry corresponding to the
  119. top-level directory, the entire hierarchy below that directory will be
  120. removed.
  121. Notes:
  122. [1] http://lwn.net/Articles/309298/