Back to home page

OSCL-LXR

 
 

    


0001 .. SPDX-License-Identifier: GPL-2.0
0002 
0003 ======================
0004 The seq_file Interface
0005 ======================
0006 
0007         Copyright 2003 Jonathan Corbet <corbet@lwn.net>
0008 
0009         This file is originally from the LWN.net Driver Porting series at
0010         https://lwn.net/Articles/driver-porting/
0011 
0012 
0013 There are numerous ways for a device driver (or other kernel component) to
0014 provide information to the user or system administrator.  One useful
0015 technique is the creation of virtual files, in debugfs, /proc or elsewhere.
0016 Virtual files can provide human-readable output that is easy to get at
0017 without any special utility programs; they can also make life easier for
0018 script writers. It is not surprising that the use of virtual files has
0019 grown over the years.
0020 
0021 Creating those files correctly has always been a bit of a challenge,
0022 however. It is not that hard to make a virtual file which returns a
0023 string. But life gets trickier if the output is long - anything greater
0024 than an application is likely to read in a single operation.  Handling
0025 multiple reads (and seeks) requires careful attention to the reader's
0026 position within the virtual file - that position is, likely as not, in the
0027 middle of a line of output. The kernel has traditionally had a number of
0028 implementations that got this wrong.
0029 
0030 The 2.6 kernel contains a set of functions (implemented by Alexander Viro)
0031 which are designed to make it easy for virtual file creators to get it
0032 right.
0033 
0034 The seq_file interface is available via <linux/seq_file.h>. There are
0035 three aspects to seq_file:
0036 
0037      * An iterator interface which lets a virtual file implementation
0038        step through the objects it is presenting.
0039 
0040      * Some utility functions for formatting objects for output without
0041        needing to worry about things like output buffers.
0042 
0043      * A set of canned file_operations which implement most operations on
0044        the virtual file.
0045 
0046 We'll look at the seq_file interface via an extremely simple example: a
0047 loadable module which creates a file called /proc/sequence. The file, when
0048 read, simply produces a set of increasing integer values, one per line. The
0049 sequence will continue until the user loses patience and finds something
0050 better to do. The file is seekable, in that one can do something like the
0051 following::
0052 
0053     dd if=/proc/sequence of=out1 count=1
0054     dd if=/proc/sequence skip=1 of=out2 count=1
0055 
0056 Then concatenate the output files out1 and out2 and get the right
0057 result. Yes, it is a thoroughly useless module, but the point is to show
0058 how the mechanism works without getting lost in other details.  (Those
0059 wanting to see the full source for this module can find it at
0060 https://lwn.net/Articles/22359/).
0061 
0062 Deprecated create_proc_entry
0063 ============================
0064 
0065 Note that the above article uses create_proc_entry which was removed in
0066 kernel 3.10. Current versions require the following update::
0067 
0068     -   entry = create_proc_entry("sequence", 0, NULL);
0069     -   if (entry)
0070     -           entry->proc_fops = &ct_file_ops;
0071     +   entry = proc_create("sequence", 0, NULL, &ct_file_ops);
0072 
0073 The iterator interface
0074 ======================
0075 
0076 Modules implementing a virtual file with seq_file must implement an
0077 iterator object that allows stepping through the data of interest
0078 during a "session" (roughly one read() system call).  If the iterator
0079 is able to move to a specific position - like the file they implement,
0080 though with freedom to map the position number to a sequence location
0081 in whatever way is convenient - the iterator need only exist
0082 transiently during a session.  If the iterator cannot easily find a
0083 numerical position but works well with a first/next interface, the
0084 iterator can be stored in the private data area and continue from one
0085 session to the next.
0086 
0087 A seq_file implementation that is formatting firewall rules from a
0088 table, for example, could provide a simple iterator that interprets
0089 position N as the Nth rule in the chain.  A seq_file implementation
0090 that presents the content of a, potentially volatile, linked list
0091 might record a pointer into that list, providing that can be done
0092 without risk of the current location being removed.
0093 
0094 Positioning can thus be done in whatever way makes the most sense for
0095 the generator of the data, which need not be aware of how a position
0096 translates to an offset in the virtual file. The one obvious exception
0097 is that a position of zero should indicate the beginning of the file.
0098 
0099 The /proc/sequence iterator just uses the count of the next number it
0100 will output as its position.
0101 
0102 Four functions must be implemented to make the iterator work. The
0103 first, called start(), starts a session and takes a position as an
0104 argument, returning an iterator which will start reading at that
0105 position.  The pos passed to start() will always be either zero, or
0106 the most recent pos used in the previous session.
0107 
0108 For our simple sequence example,
0109 the start() function looks like::
0110 
0111         static void *ct_seq_start(struct seq_file *s, loff_t *pos)
0112         {
0113                 loff_t *spos = kmalloc(sizeof(loff_t), GFP_KERNEL);
0114                 if (! spos)
0115                         return NULL;
0116                 *spos = *pos;
0117                 return spos;
0118         }
0119 
0120 The entire data structure for this iterator is a single loff_t value
0121 holding the current position. There is no upper bound for the sequence
0122 iterator, but that will not be the case for most other seq_file
0123 implementations; in most cases the start() function should check for a
0124 "past end of file" condition and return NULL if need be.
0125 
0126 For more complicated applications, the private field of the seq_file
0127 structure can be used to hold state from session to session.  There is
0128 also a special value which can be returned by the start() function
0129 called SEQ_START_TOKEN; it can be used if you wish to instruct your
0130 show() function (described below) to print a header at the top of the
0131 output. SEQ_START_TOKEN should only be used if the offset is zero,
0132 however.  SEQ_START_TOKEN has no special meaning to the core seq_file
0133 code.  It is provided as a convenience for a start() funciton to
0134 communicate with the next() and show() functions.
0135 
0136 The next function to implement is called, amazingly, next(); its job is to
0137 move the iterator forward to the next position in the sequence.  The
0138 example module can simply increment the position by one; more useful
0139 modules will do what is needed to step through some data structure. The
0140 next() function returns a new iterator, or NULL if the sequence is
0141 complete. Here's the example version::
0142 
0143         static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
0144         {
0145                 loff_t *spos = v;
0146                 *pos = ++*spos;
0147                 return spos;
0148         }
0149 
0150 The next() function should set ``*pos`` to a value that start() can use
0151 to find the new location in the sequence.  When the iterator is being
0152 stored in the private data area, rather than being reinitialized on each
0153 start(), it might seem sufficient to simply set ``*pos`` to any non-zero
0154 value (zero always tells start() to restart the sequence).  This is not
0155 sufficient due to historical problems.
0156 
0157 Historically, many next() functions have *not* updated ``*pos`` at
0158 end-of-file.  If the value is then used by start() to initialise the
0159 iterator, this can result in corner cases where the last entry in the
0160 sequence is reported twice in the file.  In order to discourage this bug
0161 from being resurrected, the core seq_file code now produces a warning if
0162 a next() function does not change the value of ``*pos``.  Consequently a
0163 next() function *must* change the value of ``*pos``, and of course must
0164 set it to a non-zero value.
0165 
0166 The stop() function closes a session; its job, of course, is to clean
0167 up. If dynamic memory is allocated for the iterator, stop() is the
0168 place to free it; if a lock was taken by start(), stop() must release
0169 that lock.  The value that ``*pos`` was set to by the last next() call
0170 before stop() is remembered, and used for the first start() call of
0171 the next session unless lseek() has been called on the file; in that
0172 case next start() will be asked to start at position zero::
0173 
0174         static void ct_seq_stop(struct seq_file *s, void *v)
0175         {
0176                 kfree(v);
0177         }
0178 
0179 Finally, the show() function should format the object currently pointed to
0180 by the iterator for output.  The example module's show() function is::
0181 
0182         static int ct_seq_show(struct seq_file *s, void *v)
0183         {
0184                 loff_t *spos = v;
0185                 seq_printf(s, "%lld\n", (long long)*spos);
0186                 return 0;
0187         }
0188 
0189 If all is well, the show() function should return zero.  A negative error
0190 code in the usual manner indicates that something went wrong; it will be
0191 passed back to user space.  This function can also return SEQ_SKIP, which
0192 causes the current item to be skipped; if the show() function has already
0193 generated output before returning SEQ_SKIP, that output will be dropped.
0194 
0195 We will look at seq_printf() in a moment. But first, the definition of the
0196 seq_file iterator is finished by creating a seq_operations structure with
0197 the four functions we have just defined::
0198 
0199         static const struct seq_operations ct_seq_ops = {
0200                 .start = ct_seq_start,
0201                 .next  = ct_seq_next,
0202                 .stop  = ct_seq_stop,
0203                 .show  = ct_seq_show
0204         };
0205 
0206 This structure will be needed to tie our iterator to the /proc file in
0207 a little bit.
0208 
0209 It's worth noting that the iterator value returned by start() and
0210 manipulated by the other functions is considered to be completely opaque by
0211 the seq_file code. It can thus be anything that is useful in stepping
0212 through the data to be output. Counters can be useful, but it could also be
0213 a direct pointer into an array or linked list. Anything goes, as long as
0214 the programmer is aware that things can happen between calls to the
0215 iterator function. However, the seq_file code (by design) will not sleep
0216 between the calls to start() and stop(), so holding a lock during that time
0217 is a reasonable thing to do. The seq_file code will also avoid taking any
0218 other locks while the iterator is active.
0219 
0220 The iterater value returned by start() or next() is guaranteed to be
0221 passed to a subsequent next() or stop() call.  This allows resources
0222 such as locks that were taken to be reliably released.  There is *no*
0223 guarantee that the iterator will be passed to show(), though in practice
0224 it often will be.
0225 
0226 
0227 Formatted output
0228 ================
0229 
0230 The seq_file code manages positioning within the output created by the
0231 iterator and getting it into the user's buffer. But, for that to work, that
0232 output must be passed to the seq_file code. Some utility functions have
0233 been defined which make this task easy.
0234 
0235 Most code will simply use seq_printf(), which works pretty much like
0236 printk(), but which requires the seq_file pointer as an argument.
0237 
0238 For straight character output, the following functions may be used::
0239 
0240         seq_putc(struct seq_file *m, char c);
0241         seq_puts(struct seq_file *m, const char *s);
0242         seq_escape(struct seq_file *m, const char *s, const char *esc);
0243 
0244 The first two output a single character and a string, just like one would
0245 expect. seq_escape() is like seq_puts(), except that any character in s
0246 which is in the string esc will be represented in octal form in the output.
0247 
0248 There are also a pair of functions for printing filenames::
0249 
0250         int seq_path(struct seq_file *m, const struct path *path,
0251                      const char *esc);
0252         int seq_path_root(struct seq_file *m, const struct path *path,
0253                           const struct path *root, const char *esc)
0254 
0255 Here, path indicates the file of interest, and esc is a set of characters
0256 which should be escaped in the output.  A call to seq_path() will output
0257 the path relative to the current process's filesystem root.  If a different
0258 root is desired, it can be used with seq_path_root().  If it turns out that
0259 path cannot be reached from root, seq_path_root() returns SEQ_SKIP.
0260 
0261 A function producing complicated output may want to check::
0262 
0263         bool seq_has_overflowed(struct seq_file *m);
0264 
0265 and avoid further seq_<output> calls if true is returned.
0266 
0267 A true return from seq_has_overflowed means that the seq_file buffer will
0268 be discarded and the seq_show function will attempt to allocate a larger
0269 buffer and retry printing.
0270 
0271 
0272 Making it all work
0273 ==================
0274 
0275 So far, we have a nice set of functions which can produce output within the
0276 seq_file system, but we have not yet turned them into a file that a user
0277 can see. Creating a file within the kernel requires, of course, the
0278 creation of a set of file_operations which implement the operations on that
0279 file. The seq_file interface provides a set of canned operations which do
0280 most of the work. The virtual file author still must implement the open()
0281 method, however, to hook everything up. The open function is often a single
0282 line, as in the example module::
0283 
0284         static int ct_open(struct inode *inode, struct file *file)
0285         {
0286                 return seq_open(file, &ct_seq_ops);
0287         }
0288 
0289 Here, the call to seq_open() takes the seq_operations structure we created
0290 before, and gets set up to iterate through the virtual file.
0291 
0292 On a successful open, seq_open() stores the struct seq_file pointer in
0293 file->private_data. If you have an application where the same iterator can
0294 be used for more than one file, you can store an arbitrary pointer in the
0295 private field of the seq_file structure; that value can then be retrieved
0296 by the iterator functions.
0297 
0298 There is also a wrapper function to seq_open() called seq_open_private(). It
0299 kmallocs a zero filled block of memory and stores a pointer to it in the
0300 private field of the seq_file structure, returning 0 on success. The
0301 block size is specified in a third parameter to the function, e.g.::
0302 
0303         static int ct_open(struct inode *inode, struct file *file)
0304         {
0305                 return seq_open_private(file, &ct_seq_ops,
0306                                         sizeof(struct mystruct));
0307         }
0308 
0309 There is also a variant function, __seq_open_private(), which is functionally
0310 identical except that, if successful, it returns the pointer to the allocated
0311 memory block, allowing further initialisation e.g.::
0312 
0313         static int ct_open(struct inode *inode, struct file *file)
0314         {
0315                 struct mystruct *p =
0316                         __seq_open_private(file, &ct_seq_ops, sizeof(*p));
0317 
0318                 if (!p)
0319                         return -ENOMEM;
0320 
0321                 p->foo = bar; /* initialize my stuff */
0322                         ...
0323                 p->baz = true;
0324 
0325                 return 0;
0326         }
0327 
0328 A corresponding close function, seq_release_private() is available which
0329 frees the memory allocated in the corresponding open.
0330 
0331 The other operations of interest - read(), llseek(), and release() - are
0332 all implemented by the seq_file code itself. So a virtual file's
0333 file_operations structure will look like::
0334 
0335         static const struct file_operations ct_file_ops = {
0336                 .owner   = THIS_MODULE,
0337                 .open    = ct_open,
0338                 .read    = seq_read,
0339                 .llseek  = seq_lseek,
0340                 .release = seq_release
0341         };
0342 
0343 There is also a seq_release_private() which passes the contents of the
0344 seq_file private field to kfree() before releasing the structure.
0345 
0346 The final step is the creation of the /proc file itself. In the example
0347 code, that is done in the initialization code in the usual way::
0348 
0349         static int ct_init(void)
0350         {
0351                 struct proc_dir_entry *entry;
0352 
0353                 proc_create("sequence", 0, NULL, &ct_file_ops);
0354                 return 0;
0355         }
0356 
0357         module_init(ct_init);
0358 
0359 And that is pretty much it.
0360 
0361 
0362 seq_list
0363 ========
0364 
0365 If your file will be iterating through a linked list, you may find these
0366 routines useful::
0367 
0368         struct list_head *seq_list_start(struct list_head *head,
0369                                          loff_t pos);
0370         struct list_head *seq_list_start_head(struct list_head *head,
0371                                               loff_t pos);
0372         struct list_head *seq_list_next(void *v, struct list_head *head,
0373                                         loff_t *ppos);
0374 
0375 These helpers will interpret pos as a position within the list and iterate
0376 accordingly.  Your start() and next() functions need only invoke the
0377 ``seq_list_*`` helpers with a pointer to the appropriate list_head structure.
0378 
0379 
0380 The extra-simple version
0381 ========================
0382 
0383 For extremely simple virtual files, there is an even easier interface.  A
0384 module can define only the show() function, which should create all the
0385 output that the virtual file will contain. The file's open() method then
0386 calls::
0387 
0388         int single_open(struct file *file,
0389                         int (*show)(struct seq_file *m, void *p),
0390                         void *data);
0391 
0392 When output time comes, the show() function will be called once. The data
0393 value given to single_open() can be found in the private field of the
0394 seq_file structure. When using single_open(), the programmer should use
0395 single_release() instead of seq_release() in the file_operations structure
0396 to avoid a memory leak.