seq_file.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. The seq_file interface
  2. Copyright 2003 Jonathan Corbet <corbet@lwn.net>
  3. This file is originally from the LWN.net Driver Porting series at
  4. http://lwn.net/Articles/driver-porting/
  5. There are numerous ways for a device driver (or other kernel component) to
  6. provide information to the user or system administrator. One useful
  7. technique is the creation of virtual files, in debugfs, /proc or elsewhere.
  8. Virtual files can provide human-readable output that is easy to get at
  9. without any special utility programs; they can also make life easier for
  10. script writers. It is not surprising that the use of virtual files has
  11. grown over the years.
  12. Creating those files correctly has always been a bit of a challenge,
  13. however. It is not that hard to make a virtual file which returns a
  14. string. But life gets trickier if the output is long - anything greater
  15. than an application is likely to read in a single operation. Handling
  16. multiple reads (and seeks) requires careful attention to the reader's
  17. position within the virtual file - that position is, likely as not, in the
  18. middle of a line of output. The kernel has traditionally had a number of
  19. implementations that got this wrong.
  20. The 2.6 kernel contains a set of functions (implemented by Alexander Viro)
  21. which are designed to make it easy for virtual file creators to get it
  22. right.
  23. The seq_file interface is available via <linux/seq_file.h>. There are
  24. three aspects to seq_file:
  25. * An iterator interface which lets a virtual file implementation
  26. step through the objects it is presenting.
  27. * Some utility functions for formatting objects for output without
  28. needing to worry about things like output buffers.
  29. * A set of canned file_operations which implement most operations on
  30. the virtual file.
  31. We'll look at the seq_file interface via an extremely simple example: a
  32. loadable module which creates a file called /proc/sequence. The file, when
  33. read, simply produces a set of increasing integer values, one per line. The
  34. sequence will continue until the user loses patience and finds something
  35. better to do. The file is seekable, in that one can do something like the
  36. following:
  37. dd if=/proc/sequence of=out1 count=1
  38. dd if=/proc/sequence skip=1 of=out2 count=1
  39. Then concatenate the output files out1 and out2 and get the right
  40. result. Yes, it is a thoroughly useless module, but the point is to show
  41. how the mechanism works without getting lost in other details. (Those
  42. wanting to see the full source for this module can find it at
  43. http://lwn.net/Articles/22359/).
  44. The iterator interface
  45. Modules implementing a virtual file with seq_file must implement a simple
  46. iterator object that allows stepping through the data of interest.
  47. Iterators must be able to move to a specific position - like the file they
  48. implement - but the interpretation of that position is up to the iterator
  49. itself. A seq_file implementation that is formatting firewall rules, for
  50. example, could interpret position N as the Nth rule in the chain.
  51. Positioning can thus be done in whatever way makes the most sense for the
  52. generator of the data, which need not be aware of how a position translates
  53. to an offset in the virtual file. The one obvious exception is that a
  54. position of zero should indicate the beginning of the file.
  55. The /proc/sequence iterator just uses the count of the next number it
  56. will output as its position.
  57. Four functions must be implemented to make the iterator work. The first,
  58. called start() takes a position as an argument and returns an iterator
  59. which will start reading at that position. For our simple sequence example,
  60. the start() function looks like:
  61. static void *ct_seq_start(struct seq_file *s, loff_t *pos)
  62. {
  63. loff_t *spos = kmalloc(sizeof(loff_t), GFP_KERNEL);
  64. if (! spos)
  65. return NULL;
  66. *spos = *pos;
  67. return spos;
  68. }
  69. The entire data structure for this iterator is a single loff_t value
  70. holding the current position. There is no upper bound for the sequence
  71. iterator, but that will not be the case for most other seq_file
  72. implementations; in most cases the start() function should check for a
  73. "past end of file" condition and return NULL if need be.
  74. For more complicated applications, the private field of the seq_file
  75. structure can be used. There is also a special value which can be returned
  76. by the start() function called SEQ_START_TOKEN; it can be used if you wish
  77. to instruct your show() function (described below) to print a header at the
  78. top of the output. SEQ_START_TOKEN should only be used if the offset is
  79. zero, however.
  80. The next function to implement is called, amazingly, next(); its job is to
  81. move the iterator forward to the next position in the sequence. The
  82. example module can simply increment the position by one; more useful
  83. modules will do what is needed to step through some data structure. The
  84. next() function returns a new iterator, or NULL if the sequence is
  85. complete. Here's the example version:
  86. static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
  87. {
  88. loff_t *spos = v;
  89. *pos = ++*spos;
  90. return spos;
  91. }
  92. The stop() function is called when iteration is complete; its job, of
  93. course, is to clean up. If dynamic memory is allocated for the iterator,
  94. stop() is the place to free it.
  95. static void ct_seq_stop(struct seq_file *s, void *v)
  96. {
  97. kfree(v);
  98. }
  99. Finally, the show() function should format the object currently pointed to
  100. by the iterator for output. The example module's show() function is:
  101. static int ct_seq_show(struct seq_file *s, void *v)
  102. {
  103. loff_t *spos = v;
  104. seq_printf(s, "%lld\n", (long long)*spos);
  105. return 0;
  106. }
  107. If all is well, the show() function should return zero. A negative error
  108. code in the usual manner indicates that something went wrong; it will be
  109. passed back to user space. This function can also return SEQ_SKIP, which
  110. causes the current item to be skipped; if the show() function has already
  111. generated output before returning SEQ_SKIP, that output will be dropped.
  112. We will look at seq_printf() in a moment. But first, the definition of the
  113. seq_file iterator is finished by creating a seq_operations structure with
  114. the four functions we have just defined:
  115. static const struct seq_operations ct_seq_ops = {
  116. .start = ct_seq_start,
  117. .next = ct_seq_next,
  118. .stop = ct_seq_stop,
  119. .show = ct_seq_show
  120. };
  121. This structure will be needed to tie our iterator to the /proc file in
  122. a little bit.
  123. It's worth noting that the iterator value returned by start() and
  124. manipulated by the other functions is considered to be completely opaque by
  125. the seq_file code. It can thus be anything that is useful in stepping
  126. through the data to be output. Counters can be useful, but it could also be
  127. a direct pointer into an array or linked list. Anything goes, as long as
  128. the programmer is aware that things can happen between calls to the
  129. iterator function. However, the seq_file code (by design) will not sleep
  130. between the calls to start() and stop(), so holding a lock during that time
  131. is a reasonable thing to do. The seq_file code will also avoid taking any
  132. other locks while the iterator is active.
  133. Formatted output
  134. The seq_file code manages positioning within the output created by the
  135. iterator and getting it into the user's buffer. But, for that to work, that
  136. output must be passed to the seq_file code. Some utility functions have
  137. been defined which make this task easy.
  138. Most code will simply use seq_printf(), which works pretty much like
  139. printk(), but which requires the seq_file pointer as an argument. It is
  140. common to ignore the return value from seq_printf(), but a function
  141. producing complicated output may want to check that value and quit if
  142. something non-zero is returned; an error return means that the seq_file
  143. buffer has been filled and further output will be discarded.
  144. For straight character output, the following functions may be used:
  145. int seq_putc(struct seq_file *m, char c);
  146. int seq_puts(struct seq_file *m, const char *s);
  147. int seq_escape(struct seq_file *m, const char *s, const char *esc);
  148. The first two output a single character and a string, just like one would
  149. expect. seq_escape() is like seq_puts(), except that any character in s
  150. which is in the string esc will be represented in octal form in the output.
  151. There is also a pair of functions for printing filenames:
  152. int seq_path(struct seq_file *m, struct path *path, char *esc);
  153. int seq_path_root(struct seq_file *m, struct path *path,
  154. struct path *root, char *esc)
  155. Here, path indicates the file of interest, and esc is a set of characters
  156. which should be escaped in the output. A call to seq_path() will output
  157. the path relative to the current process's filesystem root. If a different
  158. root is desired, it can be used with seq_path_root(). Note that, if it
  159. turns out that path cannot be reached from root, the value of root will be
  160. changed in seq_file_root() to a root which *does* work.
  161. Making it all work
  162. So far, we have a nice set of functions which can produce output within the
  163. seq_file system, but we have not yet turned them into a file that a user
  164. can see. Creating a file within the kernel requires, of course, the
  165. creation of a set of file_operations which implement the operations on that
  166. file. The seq_file interface provides a set of canned operations which do
  167. most of the work. The virtual file author still must implement the open()
  168. method, however, to hook everything up. The open function is often a single
  169. line, as in the example module:
  170. static int ct_open(struct inode *inode, struct file *file)
  171. {
  172. return seq_open(file, &ct_seq_ops);
  173. }
  174. Here, the call to seq_open() takes the seq_operations structure we created
  175. before, and gets set up to iterate through the virtual file.
  176. On a successful open, seq_open() stores the struct seq_file pointer in
  177. file->private_data. If you have an application where the same iterator can
  178. be used for more than one file, you can store an arbitrary pointer in the
  179. private field of the seq_file structure; that value can then be retrieved
  180. by the iterator functions.
  181. The other operations of interest - read(), llseek(), and release() - are
  182. all implemented by the seq_file code itself. So a virtual file's
  183. file_operations structure will look like:
  184. static const struct file_operations ct_file_ops = {
  185. .owner = THIS_MODULE,
  186. .open = ct_open,
  187. .read = seq_read,
  188. .llseek = seq_lseek,
  189. .release = seq_release
  190. };
  191. There is also a seq_release_private() which passes the contents of the
  192. seq_file private field to kfree() before releasing the structure.
  193. The final step is the creation of the /proc file itself. In the example
  194. code, that is done in the initialization code in the usual way:
  195. static int ct_init(void)
  196. {
  197. struct proc_dir_entry *entry;
  198. proc_create("sequence", 0, NULL, &ct_file_ops);
  199. return 0;
  200. }
  201. module_init(ct_init);
  202. And that is pretty much it.
  203. seq_list
  204. If your file will be iterating through a linked list, you may find these
  205. routines useful:
  206. struct list_head *seq_list_start(struct list_head *head,
  207. loff_t pos);
  208. struct list_head *seq_list_start_head(struct list_head *head,
  209. loff_t pos);
  210. struct list_head *seq_list_next(void *v, struct list_head *head,
  211. loff_t *ppos);
  212. These helpers will interpret pos as a position within the list and iterate
  213. accordingly. Your start() and next() functions need only invoke the
  214. seq_list_* helpers with a pointer to the appropriate list_head structure.
  215. The extra-simple version
  216. For extremely simple virtual files, there is an even easier interface. A
  217. module can define only the show() function, which should create all the
  218. output that the virtual file will contain. The file's open() method then
  219. calls:
  220. int single_open(struct file *file,
  221. int (*show)(struct seq_file *m, void *p),
  222. void *data);
  223. When output time comes, the show() function will be called once. The data
  224. value given to single_open() can be found in the private field of the
  225. seq_file structure. When using single_open(), the programmer should use
  226. single_release() instead of seq_release() in the file_operations structure
  227. to avoid a memory leak.