4 * helper functions for making synthetic files from sequences of records.
5 * initial implementation -- AV, Oct 2001.
9 #include <linux/export.h>
10 #include <linux/seq_file.h>
11 #include <linux/vmalloc.h>
12 #include <linux/slab.h>
13 #include <linux/cred.h>
16 #include <asm/uaccess.h>
19 static void seq_set_overflow(struct seq_file *m)
24 static void *seq_buf_alloc(unsigned long size)
29 * __GFP_NORETRY to avoid oom-killings with high-order allocations -
30 * it's better to fall back to vmalloc() than to kill things.
32 buf = kmalloc(size, GFP_KERNEL | __GFP_NORETRY | __GFP_NOWARN);
33 if (!buf && size > PAGE_SIZE)
39 * seq_open - initialize sequential file
40 * @file: file we initialize
41 * @op: method table describing the sequence
43 * seq_open() sets @file, associating it with a sequence described
44 * by @op. @op->start() sets the iterator up and returns the first
45 * element of sequence. @op->stop() shuts it down. @op->next()
46 * returns the next element of sequence. @op->show() prints element
47 * into the buffer. In case of error ->start() and ->next() return
48 * ERR_PTR(error). In the end of sequence they return %NULL. ->show()
49 * returns 0 in case of success and negative number in case of error.
50 * Returning SEQ_SKIP means "discard this element and move on".
51 * Note: seq_open() will allocate a struct seq_file and store its
52 * pointer in @file->private_data. This pointer should not be modified.
54 int seq_open(struct file *file, const struct seq_operations *op)
58 WARN_ON(file->private_data);
60 p = kzalloc(sizeof(*p), GFP_KERNEL);
64 file->private_data = p;
69 p->user_ns = file->f_cred->user_ns;
73 * Wrappers around seq_open(e.g. swaps_open) need to be
74 * aware of this. If they set f_version themselves, they
75 * should call seq_open first and then set f_version.
80 * seq_files support lseek() and pread(). They do not implement
81 * write() at all, but we clear FMODE_PWRITE here for historical
84 * If a client of seq_files a) implements file.write() and b) wishes to
85 * support pwrite() then that client will need to implement its own
86 * file.open() which calls seq_open() and then sets FMODE_PWRITE.
88 file->f_mode &= ~FMODE_PWRITE;
91 EXPORT_SYMBOL(seq_open);
93 static int traverse(struct seq_file *m, loff_t offset)
95 loff_t pos = 0, index;
101 m->count = m->from = 0;
107 m->buf = seq_buf_alloc(m->size = PAGE_SIZE);
111 p = m->op->start(m, &index);
116 error = m->op->show(m, p);
119 if (unlikely(error)) {
123 if (seq_has_overflowed(m))
125 if (pos + m->count > offset) {
126 m->from = offset - pos;
138 p = m->op->next(m, p, &index);
148 m->buf = seq_buf_alloc(m->size <<= 1);
149 return !m->buf ? -ENOMEM : -EAGAIN;
153 * seq_read - ->read() method for sequential files.
154 * @file: the file to read from
155 * @buf: the buffer to read to
156 * @size: the maximum number of bytes to read
157 * @ppos: the current position in the file
159 * Ready-made ->f_op->read()
161 ssize_t seq_read(struct file *file, char __user *buf, size_t size, loff_t *ppos)
163 struct seq_file *m = file->private_data;
170 mutex_lock(&m->lock);
173 * seq_file->op->..m_start/m_stop/m_next may do special actions
174 * or optimisations based on the file->f_version, so we want to
175 * pass the file->f_version to those methods.
177 * seq_file->version is just copy of f_version, and seq_file
178 * methods can treat it simply as file version.
179 * It is copied in first and copied out after all operations.
180 * It is convenient to have it as part of structure to avoid the
181 * need of passing another argument to all the seq_file methods.
183 m->version = file->f_version;
185 /* Don't assume *ppos is where we left it */
186 if (unlikely(*ppos != m->read_pos)) {
187 while ((err = traverse(m, *ppos)) == -EAGAIN)
190 /* With prejudice... */
201 /* grab buffer if we didn't have one */
203 m->buf = seq_buf_alloc(m->size = PAGE_SIZE);
207 /* if not empty - flush it first */
209 n = min(m->count, size);
210 err = copy_to_user(buf, m->buf + m->from, n);
223 /* we need at least one record in buffer */
225 p = m->op->start(m, &pos);
230 err = m->op->show(m, p);
235 if (unlikely(!m->count)) {
236 p = m->op->next(m, p, &pos);
240 if (m->count < m->size)
245 m->buf = seq_buf_alloc(m->size <<= 1);
250 p = m->op->start(m, &pos);
256 /* they want more? let's try to get some more */
257 while (m->count < size) {
258 size_t offs = m->count;
260 p = m->op->next(m, p, &next);
261 if (!p || IS_ERR(p)) {
265 err = m->op->show(m, p);
266 if (seq_has_overflowed(m) || err) {
268 if (likely(err <= 0))
274 n = min(m->count, size);
275 err = copy_to_user(buf, m->buf, n);
290 m->read_pos += copied;
292 file->f_version = m->version;
293 mutex_unlock(&m->lock);
302 EXPORT_SYMBOL(seq_read);
305 * seq_lseek - ->llseek() method for sequential files.
306 * @file: the file in question
307 * @offset: new position
308 * @whence: 0 for absolute, 1 for relative position
310 * Ready-made ->f_op->llseek()
312 loff_t seq_lseek(struct file *file, loff_t offset, int whence)
314 struct seq_file *m = file->private_data;
315 loff_t retval = -EINVAL;
317 mutex_lock(&m->lock);
318 m->version = file->f_version;
321 offset += file->f_pos;
326 if (offset != m->read_pos) {
327 while ((retval = traverse(m, offset)) == -EAGAIN)
330 /* with extreme prejudice... */
337 m->read_pos = offset;
338 retval = file->f_pos = offset;
341 file->f_pos = offset;
344 file->f_version = m->version;
345 mutex_unlock(&m->lock);
348 EXPORT_SYMBOL(seq_lseek);
351 * seq_release - free the structures associated with sequential file.
352 * @file: file in question
355 * Frees the structures associated with sequential file; can be used
356 * as ->f_op->release() if you don't have private data to destroy.
358 int seq_release(struct inode *inode, struct file *file)
360 struct seq_file *m = file->private_data;
365 EXPORT_SYMBOL(seq_release);
368 * seq_escape - print string into buffer, escaping some characters
371 * @esc: set of characters that need escaping
373 * Puts string into buffer, replacing each occurrence of character from
374 * @esc with usual octal escape. Returns 0 in case of success, -1 - in
377 int seq_escape(struct seq_file *m, const char *s, const char *esc)
379 char *end = m->buf + m->size;
383 for (p = m->buf + m->count; (c = *s) != '\0' && p < end; s++) {
384 if (!strchr(esc, c)) {
390 *p++ = '0' + ((c & 0300) >> 6);
391 *p++ = '0' + ((c & 070) >> 3);
392 *p++ = '0' + (c & 07);
398 m->count = p - m->buf;
401 EXPORT_SYMBOL(seq_escape);
403 int seq_vprintf(struct seq_file *m, const char *f, va_list args)
407 if (m->count < m->size) {
408 len = vsnprintf(m->buf + m->count, m->size - m->count, f, args);
409 if (m->count + len < m->size) {
417 EXPORT_SYMBOL(seq_vprintf);
419 int seq_printf(struct seq_file *m, const char *f, ...)
425 ret = seq_vprintf(m, f, args);
430 EXPORT_SYMBOL(seq_printf);
433 * mangle_path - mangle and copy path to buffer beginning
435 * @p: beginning of path in above buffer
436 * @esc: set of characters that need escaping
438 * Copy the path from @p to @s, replacing each occurrence of character from
439 * @esc with usual octal escape.
440 * Returns pointer past last written character in @s, or NULL in case of
443 char *mangle_path(char *s, const char *p, const char *esc)
449 } else if (!strchr(esc, c)) {
451 } else if (s + 4 > p) {
455 *s++ = '0' + ((c & 0300) >> 6);
456 *s++ = '0' + ((c & 070) >> 3);
457 *s++ = '0' + (c & 07);
462 EXPORT_SYMBOL(mangle_path);
465 * seq_path - seq_file interface to print a pathname
466 * @m: the seq_file handle
467 * @path: the struct path to print
468 * @esc: set of characters to escape in the output
470 * return the absolute path of 'path', as represented by the
471 * dentry / mnt pair in the path parameter.
473 int seq_path(struct seq_file *m, const struct path *path, const char *esc)
476 size_t size = seq_get_buf(m, &buf);
480 char *p = d_path(path, buf, size);
482 char *end = mangle_path(buf, p, esc);
491 EXPORT_SYMBOL(seq_path);
494 * seq_file_path - seq_file interface to print a pathname of a file
495 * @m: the seq_file handle
496 * @file: the struct file to print
497 * @esc: set of characters to escape in the output
499 * return the absolute path to the file.
501 int seq_file_path(struct seq_file *m, struct file *file, const char *esc)
503 return seq_path(m, &file->f_path, esc);
505 EXPORT_SYMBOL(seq_file_path);
508 * Same as seq_path, but relative to supplied root.
510 int seq_path_root(struct seq_file *m, const struct path *path,
511 const struct path *root, const char *esc)
514 size_t size = seq_get_buf(m, &buf);
515 int res = -ENAMETOOLONG;
520 p = __d_path(path, root, buf, size);
525 char *end = mangle_path(buf, p, esc);
534 return res < 0 && res != -ENAMETOOLONG ? res : 0;
538 * returns the path of the 'dentry' from the root of its filesystem.
540 int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc)
543 size_t size = seq_get_buf(m, &buf);
547 char *p = dentry_path(dentry, buf, size);
549 char *end = mangle_path(buf, p, esc);
558 EXPORT_SYMBOL(seq_dentry);
560 static void *single_start(struct seq_file *p, loff_t *pos)
562 return NULL + (*pos == 0);
565 static void *single_next(struct seq_file *p, void *v, loff_t *pos)
571 static void single_stop(struct seq_file *p, void *v)
575 int single_open(struct file *file, int (*show)(struct seq_file *, void *),
578 struct seq_operations *op = kmalloc(sizeof(*op), GFP_KERNEL);
582 op->start = single_start;
583 op->next = single_next;
584 op->stop = single_stop;
586 res = seq_open(file, op);
588 ((struct seq_file *)file->private_data)->private = data;
594 EXPORT_SYMBOL(single_open);
596 int single_open_size(struct file *file, int (*show)(struct seq_file *, void *),
597 void *data, size_t size)
599 char *buf = seq_buf_alloc(size);
603 ret = single_open(file, show, data);
608 ((struct seq_file *)file->private_data)->buf = buf;
609 ((struct seq_file *)file->private_data)->size = size;
612 EXPORT_SYMBOL(single_open_size);
614 int single_release(struct inode *inode, struct file *file)
616 const struct seq_operations *op = ((struct seq_file *)file->private_data)->op;
617 int res = seq_release(inode, file);
621 EXPORT_SYMBOL(single_release);
623 int seq_release_private(struct inode *inode, struct file *file)
625 struct seq_file *seq = file->private_data;
629 return seq_release(inode, file);
631 EXPORT_SYMBOL(seq_release_private);
633 void *__seq_open_private(struct file *f, const struct seq_operations *ops,
638 struct seq_file *seq;
640 private = kzalloc(psize, GFP_KERNEL);
644 rc = seq_open(f, ops);
648 seq = f->private_data;
649 seq->private = private;
657 EXPORT_SYMBOL(__seq_open_private);
659 int seq_open_private(struct file *filp, const struct seq_operations *ops,
662 return __seq_open_private(filp, ops, psize) ? 0 : -ENOMEM;
664 EXPORT_SYMBOL(seq_open_private);
666 int seq_putc(struct seq_file *m, char c)
668 if (m->count < m->size) {
669 m->buf[m->count++] = c;
674 EXPORT_SYMBOL(seq_putc);
676 int seq_puts(struct seq_file *m, const char *s)
679 if (m->count + len < m->size) {
680 memcpy(m->buf + m->count, s, len);
687 EXPORT_SYMBOL(seq_puts);
690 * A helper routine for putting decimal numbers without rich format of printf().
691 * only 'unsigned long long' is supported.
692 * This routine will put one byte delimiter + number into seq_file.
693 * This routine is very quick when you show lots of numbers.
694 * In usual cases, it will be better to use seq_printf(). It's easier to read.
696 int seq_put_decimal_ull(struct seq_file *m, char delimiter,
697 unsigned long long num)
701 if (m->count + 2 >= m->size) /* we'll write 2 bytes at least */
705 m->buf[m->count++] = delimiter;
708 m->buf[m->count++] = num + '0';
712 len = num_to_str(m->buf + m->count, m->size - m->count, num);
721 EXPORT_SYMBOL(seq_put_decimal_ull);
723 int seq_put_decimal_ll(struct seq_file *m, char delimiter,
727 if (m->count + 3 >= m->size) {
732 m->buf[m->count++] = delimiter;
736 return seq_put_decimal_ull(m, delimiter, num);
739 EXPORT_SYMBOL(seq_put_decimal_ll);
742 * seq_write - write arbitrary data to buffer
743 * @seq: seq_file identifying the buffer to which data should be written
744 * @data: data address
745 * @len: number of bytes
747 * Return 0 on success, non-zero otherwise.
749 int seq_write(struct seq_file *seq, const void *data, size_t len)
751 if (seq->count + len < seq->size) {
752 memcpy(seq->buf + seq->count, data, len);
756 seq_set_overflow(seq);
759 EXPORT_SYMBOL(seq_write);
762 * seq_pad - write padding spaces to buffer
763 * @m: seq_file identifying the buffer to which data should be written
764 * @c: the byte to append after padding if non-zero
766 void seq_pad(struct seq_file *m, char c)
768 int size = m->pad_until - m->count;
770 seq_printf(m, "%*s", size, "");
774 EXPORT_SYMBOL(seq_pad);
776 struct list_head *seq_list_start(struct list_head *head, loff_t pos)
778 struct list_head *lh;
780 list_for_each(lh, head)
786 EXPORT_SYMBOL(seq_list_start);
788 struct list_head *seq_list_start_head(struct list_head *head, loff_t pos)
793 return seq_list_start(head, pos - 1);
795 EXPORT_SYMBOL(seq_list_start_head);
797 struct list_head *seq_list_next(void *v, struct list_head *head, loff_t *ppos)
799 struct list_head *lh;
801 lh = ((struct list_head *)v)->next;
803 return lh == head ? NULL : lh;
805 EXPORT_SYMBOL(seq_list_next);
808 * seq_hlist_start - start an iteration of a hlist
809 * @head: the head of the hlist
810 * @pos: the start position of the sequence
812 * Called at seq_file->op->start().
814 struct hlist_node *seq_hlist_start(struct hlist_head *head, loff_t pos)
816 struct hlist_node *node;
818 hlist_for_each(node, head)
823 EXPORT_SYMBOL(seq_hlist_start);
826 * seq_hlist_start_head - start an iteration of a hlist
827 * @head: the head of the hlist
828 * @pos: the start position of the sequence
830 * Called at seq_file->op->start(). Call this function if you want to
831 * print a header at the top of the output.
833 struct hlist_node *seq_hlist_start_head(struct hlist_head *head, loff_t pos)
836 return SEQ_START_TOKEN;
838 return seq_hlist_start(head, pos - 1);
840 EXPORT_SYMBOL(seq_hlist_start_head);
843 * seq_hlist_next - move to the next position of the hlist
844 * @v: the current iterator
845 * @head: the head of the hlist
846 * @ppos: the current position
848 * Called at seq_file->op->next().
850 struct hlist_node *seq_hlist_next(void *v, struct hlist_head *head,
853 struct hlist_node *node = v;
856 if (v == SEQ_START_TOKEN)
861 EXPORT_SYMBOL(seq_hlist_next);
864 * seq_hlist_start_rcu - start an iteration of a hlist protected by RCU
865 * @head: the head of the hlist
866 * @pos: the start position of the sequence
868 * Called at seq_file->op->start().
870 * This list-traversal primitive may safely run concurrently with
871 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
872 * as long as the traversal is guarded by rcu_read_lock().
874 struct hlist_node *seq_hlist_start_rcu(struct hlist_head *head,
877 struct hlist_node *node;
879 __hlist_for_each_rcu(node, head)
884 EXPORT_SYMBOL(seq_hlist_start_rcu);
887 * seq_hlist_start_head_rcu - start an iteration of a hlist protected by RCU
888 * @head: the head of the hlist
889 * @pos: the start position of the sequence
891 * Called at seq_file->op->start(). Call this function if you want to
892 * print a header at the top of the output.
894 * This list-traversal primitive may safely run concurrently with
895 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
896 * as long as the traversal is guarded by rcu_read_lock().
898 struct hlist_node *seq_hlist_start_head_rcu(struct hlist_head *head,
902 return SEQ_START_TOKEN;
904 return seq_hlist_start_rcu(head, pos - 1);
906 EXPORT_SYMBOL(seq_hlist_start_head_rcu);
909 * seq_hlist_next_rcu - move to the next position of the hlist protected by RCU
910 * @v: the current iterator
911 * @head: the head of the hlist
912 * @ppos: the current position
914 * Called at seq_file->op->next().
916 * This list-traversal primitive may safely run concurrently with
917 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
918 * as long as the traversal is guarded by rcu_read_lock().
920 struct hlist_node *seq_hlist_next_rcu(void *v,
921 struct hlist_head *head,
924 struct hlist_node *node = v;
927 if (v == SEQ_START_TOKEN)
928 return rcu_dereference(head->first);
930 return rcu_dereference(node->next);
932 EXPORT_SYMBOL(seq_hlist_next_rcu);
935 * seq_hlist_start_precpu - start an iteration of a percpu hlist array
936 * @head: pointer to percpu array of struct hlist_heads
937 * @cpu: pointer to cpu "cursor"
938 * @pos: start position of sequence
940 * Called at seq_file->op->start().
943 seq_hlist_start_percpu(struct hlist_head __percpu *head, int *cpu, loff_t pos)
945 struct hlist_node *node;
947 for_each_possible_cpu(*cpu) {
948 hlist_for_each(node, per_cpu_ptr(head, *cpu)) {
955 EXPORT_SYMBOL(seq_hlist_start_percpu);
958 * seq_hlist_next_percpu - move to the next position of the percpu hlist array
959 * @v: pointer to current hlist_node
960 * @head: pointer to percpu array of struct hlist_heads
961 * @cpu: pointer to cpu "cursor"
962 * @pos: start position of sequence
964 * Called at seq_file->op->next().
967 seq_hlist_next_percpu(void *v, struct hlist_head __percpu *head,
968 int *cpu, loff_t *pos)
970 struct hlist_node *node = v;
977 for (*cpu = cpumask_next(*cpu, cpu_possible_mask); *cpu < nr_cpu_ids;
978 *cpu = cpumask_next(*cpu, cpu_possible_mask)) {
979 struct hlist_head *bucket = per_cpu_ptr(head, *cpu);
981 if (!hlist_empty(bucket))
982 return bucket->first;
986 EXPORT_SYMBOL(seq_hlist_next_percpu);