blob: 70f5fdf99bf690a654ff18ef194a45cc848a7d0d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/seq_file.c
4 *
5 * helper functions for making synthetic files from sequences of records.
6 * initial implementation -- AV, Oct 2001.
7 */
8
Alexey Dobriyan0965232032018-04-10 16:34:45 -07009#include <linux/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/fs.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050011#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/seq_file.h>
Heiko Carstens058504e2014-07-02 15:22:37 -070013#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/slab.h>
Eric W. Biedermanadb37c42012-05-23 18:01:20 -060015#include <linux/cred.h>
Heiko Carstens058504e2014-07-02 15:22:37 -070016#include <linux/mm.h>
Andy Shevchenko37607102015-09-09 15:38:33 -070017#include <linux/printk.h>
Andy Shevchenko25c6bb72015-11-06 16:32:40 -080018#include <linux/string_helpers.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080020#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/page.h>
22
Alexey Dobriyan0965232032018-04-10 16:34:45 -070023static struct kmem_cache *seq_file_cache __ro_after_init;
24
KAMEZAWA Hiroyukie075f592012-03-23 15:02:55 -070025static void seq_set_overflow(struct seq_file *m)
26{
27 m->count = m->size;
28}
29
Heiko Carstens058504e2014-07-02 15:22:37 -070030static void *seq_buf_alloc(unsigned long size)
31{
Alexey Dobriyand64d01a2018-04-10 16:34:49 -070032 return kvmalloc(size, GFP_KERNEL_ACCOUNT);
Heiko Carstens058504e2014-07-02 15:22:37 -070033}
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/**
36 * seq_open - initialize sequential file
37 * @file: file we initialize
38 * @op: method table describing the sequence
39 *
40 * seq_open() sets @file, associating it with a sequence described
41 * by @op. @op->start() sets the iterator up and returns the first
42 * element of sequence. @op->stop() shuts it down. @op->next()
43 * returns the next element of sequence. @op->show() prints element
44 * into the buffer. In case of error ->start() and ->next() return
45 * ERR_PTR(error). In the end of sequence they return %NULL. ->show()
46 * returns 0 in case of success and negative number in case of error.
Al Viro521b5d02008-03-28 00:46:41 -040047 * Returning SEQ_SKIP means "discard this element and move on".
Yann Droneaud460b8652015-06-30 14:57:36 -070048 * Note: seq_open() will allocate a struct seq_file and store its
49 * pointer in @file->private_data. This pointer should not be modified.
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 */
Helge Deller15ad7cd2006-12-06 20:40:36 -080051int seq_open(struct file *file, const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Yann Droneaud189f9842015-06-30 14:57:33 -070053 struct seq_file *p;
Al Viro1abe77b2005-11-07 17:15:34 -050054
Yann Droneaud189f9842015-06-30 14:57:33 -070055 WARN_ON(file->private_data);
56
Alexey Dobriyan0965232032018-04-10 16:34:45 -070057 p = kmem_cache_zalloc(seq_file_cache, GFP_KERNEL);
Yann Droneaud189f9842015-06-30 14:57:33 -070058 if (!p)
59 return -ENOMEM;
60
61 file->private_data = p;
62
Ingo Molnar0ac17592006-03-23 03:00:37 -080063 mutex_init(&p->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 p->op = op;
Linus Torvalds34dbbcd2016-04-14 11:22:00 -070065
66 // No refcounting: the lifetime of 'p' is constrained
67 // to the lifetime of the file.
68 p->file = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 /*
Eric Biederman8f19d472009-02-18 14:48:16 -080071 * seq_files support lseek() and pread(). They do not implement
72 * write() at all, but we clear FMODE_PWRITE here for historical
73 * reasons.
74 *
75 * If a client of seq_files a) implements file.write() and b) wishes to
76 * support pwrite() then that client will need to implement its own
77 * file.open() which calls seq_open() and then sets FMODE_PWRITE.
78 */
79 file->f_mode &= ~FMODE_PWRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return 0;
81}
82EXPORT_SYMBOL(seq_open);
83
Eric Biederman33da8892009-02-04 15:12:25 -080084static int traverse(struct seq_file *m, loff_t offset)
85{
NeilBrown1f4aace2018-08-17 15:44:41 -070086 loff_t pos = 0;
Eric Biederman33da8892009-02-04 15:12:25 -080087 int error = 0;
88 void *p;
89
NeilBrown1f4aace2018-08-17 15:44:41 -070090 m->index = 0;
Eric Biederman33da8892009-02-04 15:12:25 -080091 m->count = m->from = 0;
NeilBrown1f4aace2018-08-17 15:44:41 -070092 if (!offset)
Eric Biederman33da8892009-02-04 15:12:25 -080093 return 0;
NeilBrown1f4aace2018-08-17 15:44:41 -070094
Eric Biederman33da8892009-02-04 15:12:25 -080095 if (!m->buf) {
Heiko Carstens058504e2014-07-02 15:22:37 -070096 m->buf = seq_buf_alloc(m->size = PAGE_SIZE);
Eric Biederman33da8892009-02-04 15:12:25 -080097 if (!m->buf)
98 return -ENOMEM;
99 }
NeilBrown1f4aace2018-08-17 15:44:41 -0700100 p = m->op->start(m, &m->index);
Eric Biederman33da8892009-02-04 15:12:25 -0800101 while (p) {
102 error = PTR_ERR(p);
103 if (IS_ERR(p))
104 break;
105 error = m->op->show(m, p);
106 if (error < 0)
107 break;
108 if (unlikely(error)) {
109 error = 0;
110 m->count = 0;
111 }
Joe Perches1f33c412014-09-29 16:08:21 -0700112 if (seq_has_overflowed(m))
Eric Biederman33da8892009-02-04 15:12:25 -0800113 goto Eoverflow;
NeilBrown6a2aeab2019-08-13 15:37:44 -0700114 p = m->op->next(m, p, &m->index);
Eric Biederman33da8892009-02-04 15:12:25 -0800115 if (pos + m->count > offset) {
116 m->from = offset - pos;
117 m->count -= m->from;
Eric Biederman33da8892009-02-04 15:12:25 -0800118 break;
119 }
120 pos += m->count;
121 m->count = 0;
NeilBrown1f4aace2018-08-17 15:44:41 -0700122 if (pos == offset)
Eric Biederman33da8892009-02-04 15:12:25 -0800123 break;
Eric Biederman33da8892009-02-04 15:12:25 -0800124 }
125 m->op->stop(m, p);
126 return error;
127
128Eoverflow:
129 m->op->stop(m, p);
Heiko Carstens058504e2014-07-02 15:22:37 -0700130 kvfree(m->buf);
Al Viro801a7602013-11-19 01:20:43 +0000131 m->count = 0;
Heiko Carstens058504e2014-07-02 15:22:37 -0700132 m->buf = seq_buf_alloc(m->size <<= 1);
Eric Biederman33da8892009-02-04 15:12:25 -0800133 return !m->buf ? -ENOMEM : -EAGAIN;
134}
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/**
137 * seq_read - ->read() method for sequential files.
Martin Waitz67be2dd2005-05-01 08:59:26 -0700138 * @file: the file to read from
139 * @buf: the buffer to read to
140 * @size: the maximum number of bytes to read
141 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 *
143 * Ready-made ->f_op->read()
144 */
145ssize_t seq_read(struct file *file, char __user *buf, size_t size, loff_t *ppos)
146{
Joe Perches8209e2f2010-09-04 18:52:49 -0700147 struct seq_file *m = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 size_t copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 size_t n;
150 void *p;
151 int err = 0;
152
Ingo Molnar0ac17592006-03-23 03:00:37 -0800153 mutex_lock(&m->lock);
Eric Biederman8f19d472009-02-18 14:48:16 -0800154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /*
Tomasz Majchrzake5227512016-11-29 15:18:20 +0100156 * if request is to read from zero offset, reset iterator to first
157 * record as it might have been already advanced by previous requests
158 */
Miklos Szeredicf5eeba2017-11-15 11:34:58 +0100159 if (*ppos == 0) {
Tomasz Majchrzake5227512016-11-29 15:18:20 +0100160 m->index = 0;
Miklos Szeredicf5eeba2017-11-15 11:34:58 +0100161 m->count = 0;
162 }
Tomasz Majchrzake5227512016-11-29 15:18:20 +0100163
Earl Chew7904ac82012-03-21 16:33:43 -0700164 /* Don't assume *ppos is where we left it */
165 if (unlikely(*ppos != m->read_pos)) {
166 while ((err = traverse(m, *ppos)) == -EAGAIN)
167 ;
168 if (err) {
169 /* With prejudice... */
170 m->read_pos = 0;
Earl Chew7904ac82012-03-21 16:33:43 -0700171 m->index = 0;
172 m->count = 0;
173 goto Done;
174 } else {
175 m->read_pos = *ppos;
176 }
177 }
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /* grab buffer if we didn't have one */
180 if (!m->buf) {
Heiko Carstens058504e2014-07-02 15:22:37 -0700181 m->buf = seq_buf_alloc(m->size = PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (!m->buf)
183 goto Enomem;
184 }
185 /* if not empty - flush it first */
186 if (m->count) {
187 n = min(m->count, size);
188 err = copy_to_user(buf, m->buf + m->from, n);
189 if (err)
190 goto Efault;
191 m->count -= n;
192 m->from += n;
193 size -= n;
194 buf += n;
195 copied += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (!size)
197 goto Done;
198 }
199 /* we need at least one record in buffer */
NeilBrown1f4aace2018-08-17 15:44:41 -0700200 m->from = 0;
201 p = m->op->start(m, &m->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 err = PTR_ERR(p);
204 if (!p || IS_ERR(p))
205 break;
206 err = m->op->show(m, p);
Al Viro521b5d02008-03-28 00:46:41 -0400207 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 break;
Al Viro521b5d02008-03-28 00:46:41 -0400209 if (unlikely(err))
210 m->count = 0;
Al Viro4cdfe842008-08-24 07:45:33 -0400211 if (unlikely(!m->count)) {
NeilBrown1f4aace2018-08-17 15:44:41 -0700212 p = m->op->next(m, p, &m->index);
Al Viro4cdfe842008-08-24 07:45:33 -0400213 continue;
214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (m->count < m->size)
216 goto Fill;
217 m->op->stop(m, p);
Heiko Carstens058504e2014-07-02 15:22:37 -0700218 kvfree(m->buf);
Al Viro801a7602013-11-19 01:20:43 +0000219 m->count = 0;
Heiko Carstens058504e2014-07-02 15:22:37 -0700220 m->buf = seq_buf_alloc(m->size <<= 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (!m->buf)
222 goto Enomem;
NeilBrown1f4aace2018-08-17 15:44:41 -0700223 p = m->op->start(m, &m->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225 m->op->stop(m, p);
226 m->count = 0;
227 goto Done;
228Fill:
229 /* they want more? let's try to get some more */
NeilBrown1f4aace2018-08-17 15:44:41 -0700230 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 size_t offs = m->count;
NeilBrown1f4aace2018-08-17 15:44:41 -0700232 loff_t pos = m->index;
233
234 p = m->op->next(m, p, &m->index);
Vasily Averin3bfa7e12020-04-10 14:34:06 -0700235 if (pos == m->index) {
236 pr_info_ratelimited("buggy seq_file .next function %ps "
237 "did not updated position index\n",
238 m->op->next);
NeilBrown1f4aace2018-08-17 15:44:41 -0700239 m->index++;
Vasily Averin3bfa7e12020-04-10 14:34:06 -0700240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (!p || IS_ERR(p)) {
242 err = PTR_ERR(p);
243 break;
244 }
NeilBrown1f4aace2018-08-17 15:44:41 -0700245 if (m->count >= size)
246 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 err = m->op->show(m, p);
Joe Perches1f33c412014-09-29 16:08:21 -0700248 if (seq_has_overflowed(m) || err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 m->count = offs;
Al Viro521b5d02008-03-28 00:46:41 -0400250 if (likely(err <= 0))
251 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254 m->op->stop(m, p);
255 n = min(m->count, size);
256 err = copy_to_user(buf, m->buf, n);
257 if (err)
258 goto Efault;
259 copied += n;
260 m->count -= n;
NeilBrown1f4aace2018-08-17 15:44:41 -0700261 m->from = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262Done:
263 if (!copied)
264 copied = err;
Eric Biederman8f19d472009-02-18 14:48:16 -0800265 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 *ppos += copied;
Eric Biederman8f19d472009-02-18 14:48:16 -0800267 m->read_pos += copied;
268 }
Ingo Molnar0ac17592006-03-23 03:00:37 -0800269 mutex_unlock(&m->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return copied;
271Enomem:
272 err = -ENOMEM;
273 goto Done;
274Efault:
275 err = -EFAULT;
276 goto Done;
277}
278EXPORT_SYMBOL(seq_read);
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280/**
281 * seq_lseek - ->llseek() method for sequential files.
Martin Waitz67be2dd2005-05-01 08:59:26 -0700282 * @file: the file in question
283 * @offset: new position
Randy Dunlap254adaa2013-01-09 17:13:00 -0800284 * @whence: 0 for absolute, 1 for relative position
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 *
286 * Ready-made ->f_op->llseek()
287 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800288loff_t seq_lseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Joe Perches8209e2f2010-09-04 18:52:49 -0700290 struct seq_file *m = file->private_data;
David Sterba16abef02008-04-22 15:09:22 +0200291 loff_t retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Ingo Molnar0ac17592006-03-23 03:00:37 -0800293 mutex_lock(&m->lock);
Andrew Morton965c8e52012-12-17 15:59:39 -0800294 switch (whence) {
Andrew Morton5e62ade2013-02-27 17:03:22 -0800295 case SEEK_CUR:
296 offset += file->f_pos;
Gustavo A. R. Silva0a4c9262019-01-23 02:48:28 -0600297 /* fall through */
Andrew Morton5e62ade2013-02-27 17:03:22 -0800298 case SEEK_SET:
299 if (offset < 0)
300 break;
301 retval = offset;
302 if (offset != m->read_pos) {
303 while ((retval = traverse(m, offset)) == -EAGAIN)
304 ;
305 if (retval) {
306 /* with extreme prejudice... */
307 file->f_pos = 0;
308 m->read_pos = 0;
Andrew Morton5e62ade2013-02-27 17:03:22 -0800309 m->index = 0;
310 m->count = 0;
311 } else {
312 m->read_pos = offset;
313 retval = file->f_pos = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
Gu Zheng05e16742013-10-25 18:15:06 +0800315 } else {
316 file->f_pos = offset;
Andrew Morton5e62ade2013-02-27 17:03:22 -0800317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Alexey Dobriyan00c57462007-07-15 23:40:22 -0700319 mutex_unlock(&m->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return retval;
321}
322EXPORT_SYMBOL(seq_lseek);
323
324/**
325 * seq_release - free the structures associated with sequential file.
326 * @file: file in question
Al Viro6131ffa2013-02-27 16:59:05 -0500327 * @inode: its inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 *
329 * Frees the structures associated with sequential file; can be used
330 * as ->f_op->release() if you don't have private data to destroy.
331 */
332int seq_release(struct inode *inode, struct file *file)
333{
Joe Perches8209e2f2010-09-04 18:52:49 -0700334 struct seq_file *m = file->private_data;
Heiko Carstens058504e2014-07-02 15:22:37 -0700335 kvfree(m->buf);
Alexey Dobriyan0965232032018-04-10 16:34:45 -0700336 kmem_cache_free(seq_file_cache, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return 0;
338}
339EXPORT_SYMBOL(seq_release);
340
341/**
342 * seq_escape - print string into buffer, escaping some characters
343 * @m: target buffer
344 * @s: string
345 * @esc: set of characters that need escaping
346 *
347 * Puts string into buffer, replacing each occurrence of character from
Joe Perches6798a8c2015-09-11 13:07:48 -0700348 * @esc with usual octal escape.
349 * Use seq_has_overflowed() to check for errors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
Joe Perches6798a8c2015-09-11 13:07:48 -0700351void seq_escape(struct seq_file *m, const char *s, const char *esc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Andy Shevchenko25c6bb72015-11-06 16:32:40 -0800353 char *buf;
354 size_t size = seq_get_buf(m, &buf);
355 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Andy Shevchenko25c6bb72015-11-06 16:32:40 -0800357 ret = string_escape_str(s, buf, size, ESCAPE_OCTAL, esc);
358 seq_commit(m, ret < size ? ret : -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360EXPORT_SYMBOL(seq_escape);
361
J. Bruce Fieldsea053e12019-06-19 12:30:13 -0400362void seq_escape_mem_ascii(struct seq_file *m, const char *src, size_t isz)
363{
364 char *buf;
365 size_t size = seq_get_buf(m, &buf);
366 int ret;
367
368 ret = string_escape_mem_ascii(src, isz, buf, size);
369 seq_commit(m, ret < size ? ret : -1);
370}
371EXPORT_SYMBOL(seq_escape_mem_ascii);
372
Joe Perches6798a8c2015-09-11 13:07:48 -0700373void seq_vprintf(struct seq_file *m, const char *f, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 int len;
376
377 if (m->count < m->size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 len = vsnprintf(m->buf + m->count, m->size - m->count, f, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (m->count + len < m->size) {
380 m->count += len;
Joe Perches6798a8c2015-09-11 13:07:48 -0700381 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383 }
KAMEZAWA Hiroyukie075f592012-03-23 15:02:55 -0700384 seq_set_overflow(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
Steven Whitehousea4808142012-06-11 13:16:35 +0100386EXPORT_SYMBOL(seq_vprintf);
387
Joe Perches6798a8c2015-09-11 13:07:48 -0700388void seq_printf(struct seq_file *m, const char *f, ...)
Steven Whitehousea4808142012-06-11 13:16:35 +0100389{
Steven Whitehousea4808142012-06-11 13:16:35 +0100390 va_list args;
391
392 va_start(args, f);
Joe Perches6798a8c2015-09-11 13:07:48 -0700393 seq_vprintf(m, f, args);
Steven Whitehousea4808142012-06-11 13:16:35 +0100394 va_end(args);
Steven Whitehousea4808142012-06-11 13:16:35 +0100395}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396EXPORT_SYMBOL(seq_printf);
397
Török Edwin74e2f332008-11-22 13:28:48 +0200398/**
Török Edwin958086d2008-11-23 23:24:53 +0200399 * mangle_path - mangle and copy path to buffer beginning
400 * @s: buffer start
401 * @p: beginning of path in above buffer
402 * @esc: set of characters that need escaping
Török Edwin74e2f332008-11-22 13:28:48 +0200403 *
404 * Copy the path from @p to @s, replacing each occurrence of character from
405 * @esc with usual octal escape.
406 * Returns pointer past last written character in @s, or NULL in case of
407 * failure.
408 */
Al Viro8c9379e2011-12-08 20:18:57 -0500409char *mangle_path(char *s, const char *p, const char *esc)
Ram Pai6092d042008-03-27 13:06:20 +0100410{
411 while (s <= p) {
412 char c = *p++;
413 if (!c) {
414 return s;
415 } else if (!strchr(esc, c)) {
416 *s++ = c;
417 } else if (s + 4 > p) {
418 break;
419 } else {
420 *s++ = '\\';
421 *s++ = '0' + ((c & 0300) >> 6);
422 *s++ = '0' + ((c & 070) >> 3);
423 *s++ = '0' + (c & 07);
424 }
425 }
426 return NULL;
427}
Ingo Molnar604094f2008-11-28 18:03:22 +0100428EXPORT_SYMBOL(mangle_path);
Ram Pai6092d042008-03-27 13:06:20 +0100429
Arjan van de Ven52afeef2008-12-01 14:35:00 -0800430/**
431 * seq_path - seq_file interface to print a pathname
432 * @m: the seq_file handle
433 * @path: the struct path to print
434 * @esc: set of characters to escape in the output
435 *
436 * return the absolute path of 'path', as represented by the
437 * dentry / mnt pair in the path parameter.
Ram Pai6092d042008-03-27 13:06:20 +0100438 */
Al Viro8c9379e2011-12-08 20:18:57 -0500439int seq_path(struct seq_file *m, const struct path *path, const char *esc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Miklos Szeredif8439802009-09-21 14:48:36 +0200441 char *buf;
442 size_t size = seq_get_buf(m, &buf);
443 int res = -1;
444
445 if (size) {
446 char *p = d_path(path, buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (!IS_ERR(p)) {
Miklos Szeredif8439802009-09-21 14:48:36 +0200448 char *end = mangle_path(buf, p, esc);
449 if (end)
450 res = end - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452 }
Miklos Szeredif8439802009-09-21 14:48:36 +0200453 seq_commit(m, res);
454
455 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457EXPORT_SYMBOL(seq_path);
458
Miklos Szeredi2726d562015-06-19 10:30:28 +0200459/**
460 * seq_file_path - seq_file interface to print a pathname of a file
461 * @m: the seq_file handle
462 * @file: the struct file to print
463 * @esc: set of characters to escape in the output
464 *
465 * return the absolute path to the file.
466 */
467int seq_file_path(struct seq_file *m, struct file *file, const char *esc)
468{
469 return seq_path(m, &file->f_path, esc);
470}
471EXPORT_SYMBOL(seq_file_path);
472
Ram Pai6092d042008-03-27 13:06:20 +0100473/*
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +0100474 * Same as seq_path, but relative to supplied root.
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +0100475 */
Al Viro8c9379e2011-12-08 20:18:57 -0500476int seq_path_root(struct seq_file *m, const struct path *path,
477 const struct path *root, const char *esc)
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +0100478{
Miklos Szeredif8439802009-09-21 14:48:36 +0200479 char *buf;
480 size_t size = seq_get_buf(m, &buf);
481 int res = -ENAMETOOLONG;
482
483 if (size) {
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +0100484 char *p;
485
Miklos Szeredif8439802009-09-21 14:48:36 +0200486 p = __d_path(path, root, buf, size);
Al Viro02125a82011-12-05 08:43:34 -0500487 if (!p)
488 return SEQ_SKIP;
Miklos Szeredif8439802009-09-21 14:48:36 +0200489 res = PTR_ERR(p);
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +0100490 if (!IS_ERR(p)) {
Miklos Szeredif8439802009-09-21 14:48:36 +0200491 char *end = mangle_path(buf, p, esc);
492 if (end)
493 res = end - buf;
494 else
495 res = -ENAMETOOLONG;
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +0100496 }
497 }
Miklos Szeredif8439802009-09-21 14:48:36 +0200498 seq_commit(m, res);
499
Al Viro02125a82011-12-05 08:43:34 -0500500 return res < 0 && res != -ENAMETOOLONG ? res : 0;
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +0100501}
502
503/*
Ram Pai6092d042008-03-27 13:06:20 +0100504 * returns the path of the 'dentry' from the root of its filesystem.
505 */
Al Viro8c9379e2011-12-08 20:18:57 -0500506int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc)
Ram Pai6092d042008-03-27 13:06:20 +0100507{
Miklos Szeredif8439802009-09-21 14:48:36 +0200508 char *buf;
509 size_t size = seq_get_buf(m, &buf);
510 int res = -1;
511
512 if (size) {
513 char *p = dentry_path(dentry, buf, size);
Ram Pai6092d042008-03-27 13:06:20 +0100514 if (!IS_ERR(p)) {
Miklos Szeredif8439802009-09-21 14:48:36 +0200515 char *end = mangle_path(buf, p, esc);
516 if (end)
517 res = end - buf;
Ram Pai6092d042008-03-27 13:06:20 +0100518 }
519 }
Miklos Szeredif8439802009-09-21 14:48:36 +0200520 seq_commit(m, res);
521
522 return res;
Ram Pai6092d042008-03-27 13:06:20 +0100523}
Omar Sandovalc8d3fe02015-05-18 02:16:31 -0700524EXPORT_SYMBOL(seq_dentry);
Ram Pai6092d042008-03-27 13:06:20 +0100525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526static void *single_start(struct seq_file *p, loff_t *pos)
527{
528 return NULL + (*pos == 0);
529}
530
531static void *single_next(struct seq_file *p, void *v, loff_t *pos)
532{
533 ++*pos;
534 return NULL;
535}
536
537static void single_stop(struct seq_file *p, void *v)
538{
539}
540
541int single_open(struct file *file, int (*show)(struct seq_file *, void *),
542 void *data)
543{
Alexey Dobriyand64d01a2018-04-10 16:34:49 -0700544 struct seq_operations *op = kmalloc(sizeof(*op), GFP_KERNEL_ACCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 int res = -ENOMEM;
546
547 if (op) {
548 op->start = single_start;
549 op->next = single_next;
550 op->stop = single_stop;
551 op->show = show;
552 res = seq_open(file, op);
553 if (!res)
554 ((struct seq_file *)file->private_data)->private = data;
555 else
556 kfree(op);
557 }
558 return res;
559}
560EXPORT_SYMBOL(single_open);
561
Al Viro2043f492013-03-31 13:43:23 -0400562int single_open_size(struct file *file, int (*show)(struct seq_file *, void *),
563 void *data, size_t size)
564{
Heiko Carstens058504e2014-07-02 15:22:37 -0700565 char *buf = seq_buf_alloc(size);
Al Viro2043f492013-03-31 13:43:23 -0400566 int ret;
567 if (!buf)
568 return -ENOMEM;
569 ret = single_open(file, show, data);
570 if (ret) {
Heiko Carstens058504e2014-07-02 15:22:37 -0700571 kvfree(buf);
Al Viro2043f492013-03-31 13:43:23 -0400572 return ret;
573 }
574 ((struct seq_file *)file->private_data)->buf = buf;
575 ((struct seq_file *)file->private_data)->size = size;
576 return 0;
577}
578EXPORT_SYMBOL(single_open_size);
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580int single_release(struct inode *inode, struct file *file)
581{
Helge Deller15ad7cd2006-12-06 20:40:36 -0800582 const struct seq_operations *op = ((struct seq_file *)file->private_data)->op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 int res = seq_release(inode, file);
584 kfree(op);
585 return res;
586}
587EXPORT_SYMBOL(single_release);
588
589int seq_release_private(struct inode *inode, struct file *file)
590{
591 struct seq_file *seq = file->private_data;
592
593 kfree(seq->private);
594 seq->private = NULL;
595 return seq_release(inode, file);
596}
597EXPORT_SYMBOL(seq_release_private);
598
Pavel Emelyanov39699032007-10-10 02:28:42 -0700599void *__seq_open_private(struct file *f, const struct seq_operations *ops,
600 int psize)
601{
602 int rc;
603 void *private;
604 struct seq_file *seq;
605
Alexey Dobriyand64d01a2018-04-10 16:34:49 -0700606 private = kzalloc(psize, GFP_KERNEL_ACCOUNT);
Pavel Emelyanov39699032007-10-10 02:28:42 -0700607 if (private == NULL)
608 goto out;
609
610 rc = seq_open(f, ops);
611 if (rc < 0)
612 goto out_free;
613
614 seq = f->private_data;
615 seq->private = private;
616 return private;
617
618out_free:
619 kfree(private);
620out:
621 return NULL;
622}
623EXPORT_SYMBOL(__seq_open_private);
624
625int seq_open_private(struct file *filp, const struct seq_operations *ops,
626 int psize)
627{
628 return __seq_open_private(filp, ops, psize) ? 0 : -ENOMEM;
629}
630EXPORT_SYMBOL(seq_open_private);
631
Joe Perches6798a8c2015-09-11 13:07:48 -0700632void seq_putc(struct seq_file *m, char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Joe Perches6798a8c2015-09-11 13:07:48 -0700634 if (m->count >= m->size)
635 return;
636
637 m->buf[m->count++] = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639EXPORT_SYMBOL(seq_putc);
640
Joe Perches6798a8c2015-09-11 13:07:48 -0700641void seq_puts(struct seq_file *m, const char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 int len = strlen(s);
Joe Perches6798a8c2015-09-11 13:07:48 -0700644
645 if (m->count + len >= m->size) {
646 seq_set_overflow(m);
647 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Joe Perches6798a8c2015-09-11 13:07:48 -0700649 memcpy(m->buf + m->count, s, len);
650 m->count += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652EXPORT_SYMBOL(seq_puts);
Pavel Emelianovbcf67e12007-07-10 17:22:26 -0700653
Andrei Vagind1be35c2018-04-10 16:31:16 -0700654/**
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700655 * A helper routine for putting decimal numbers without rich format of printf().
656 * only 'unsigned long long' is supported.
Andrei Vagind1be35c2018-04-10 16:31:16 -0700657 * @m: seq_file identifying the buffer to which data should be written
658 * @delimiter: a string which is printed before the number
659 * @num: the number
660 * @width: a minimum field width
661 *
662 * This routine will put strlen(delimiter) + number into seq_filed.
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700663 * This routine is very quick when you show lots of numbers.
664 * In usual cases, it will be better to use seq_printf(). It's easier to read.
665 */
Andrei Vagind1be35c2018-04-10 16:31:16 -0700666void seq_put_decimal_ull_width(struct seq_file *m, const char *delimiter,
667 unsigned long long num, unsigned int width)
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700668{
669 int len;
670
671 if (m->count + 2 >= m->size) /* we'll write 2 bytes at least */
672 goto overflow;
673
Andrei Vagin48dffbf2018-04-10 16:31:23 -0700674 if (delimiter && delimiter[0]) {
675 if (delimiter[1] == 0)
676 seq_putc(m, delimiter[0]);
677 else
678 seq_puts(m, delimiter);
679 }
Joe Perches75ba1d02016-10-07 17:02:20 -0700680
Andrei Vagind1be35c2018-04-10 16:31:16 -0700681 if (!width)
682 width = 1;
683
684 if (m->count + width >= m->size)
Joe Perches75ba1d02016-10-07 17:02:20 -0700685 goto overflow;
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700686
Andrei Vagind1be35c2018-04-10 16:31:16 -0700687 len = num_to_str(m->buf + m->count, m->size - m->count, num, width);
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700688 if (!len)
689 goto overflow;
Joe Perches75ba1d02016-10-07 17:02:20 -0700690
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700691 m->count += len;
Joe Perches6798a8c2015-09-11 13:07:48 -0700692 return;
693
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700694overflow:
KAMEZAWA Hiroyukie075f592012-03-23 15:02:55 -0700695 seq_set_overflow(m);
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700696}
Andrei Vagind1be35c2018-04-10 16:31:16 -0700697
698void seq_put_decimal_ull(struct seq_file *m, const char *delimiter,
699 unsigned long long num)
700{
701 return seq_put_decimal_ull_width(m, delimiter, num, 0);
702}
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700703EXPORT_SYMBOL(seq_put_decimal_ull);
704
Andrei Vagin0e3dc012018-04-10 16:30:44 -0700705/**
706 * seq_put_hex_ll - put a number in hexadecimal notation
707 * @m: seq_file identifying the buffer to which data should be written
708 * @delimiter: a string which is printed before the number
709 * @v: the number
710 * @width: a minimum field width
711 *
712 * seq_put_hex_ll(m, "", v, 8) is equal to seq_printf(m, "%08llx", v)
713 *
714 * This routine is very quick when you show lots of numbers.
715 * In usual cases, it will be better to use seq_printf(). It's easier to read.
716 */
717void seq_put_hex_ll(struct seq_file *m, const char *delimiter,
718 unsigned long long v, unsigned int width)
719{
720 unsigned int len;
721 int i;
722
723 if (delimiter && delimiter[0]) {
724 if (delimiter[1] == 0)
725 seq_putc(m, delimiter[0]);
726 else
727 seq_puts(m, delimiter);
728 }
729
730 /* If x is 0, the result of __builtin_clzll is undefined */
731 if (v == 0)
732 len = 1;
733 else
734 len = (sizeof(v) * 8 - __builtin_clzll(v) + 3) / 4;
735
736 if (len < width)
737 len = width;
738
739 if (m->count + len > m->size) {
740 seq_set_overflow(m);
741 return;
742 }
743
744 for (i = len - 1; i >= 0; i--) {
745 m->buf[m->count + i] = hex_asc[0xf & v];
746 v = v >> 4;
747 }
748 m->count += len;
749}
750
Joe Perches75ba1d02016-10-07 17:02:20 -0700751void seq_put_decimal_ll(struct seq_file *m, const char *delimiter, long long num)
KAMEZAWA Hiroyukibda7bad2012-03-23 15:02:54 -0700752{
Joe Perches75ba1d02016-10-07 17:02:20 -0700753 int len;
754
755 if (m->count + 3 >= m->size) /* we'll write 2 bytes at least */
756 goto overflow;
757
Andrei Vagin48dffbf2018-04-10 16:31:23 -0700758 if (delimiter && delimiter[0]) {
759 if (delimiter[1] == 0)
760 seq_putc(m, delimiter[0]);
761 else
762 seq_puts(m, delimiter);
763 }
Joe Perches75ba1d02016-10-07 17:02:20 -0700764
765 if (m->count + 2 >= m->size)
766 goto overflow;
767
KAMEZAWA Hiroyukibda7bad2012-03-23 15:02:54 -0700768 if (num < 0) {
Joe Perches75ba1d02016-10-07 17:02:20 -0700769 m->buf[m->count++] = '-';
KAMEZAWA Hiroyukibda7bad2012-03-23 15:02:54 -0700770 num = -num;
KAMEZAWA Hiroyukibda7bad2012-03-23 15:02:54 -0700771 }
Joe Perches75ba1d02016-10-07 17:02:20 -0700772
773 if (num < 10) {
774 m->buf[m->count++] = num + '0';
775 return;
776 }
777
Andrei Vagind1be35c2018-04-10 16:31:16 -0700778 len = num_to_str(m->buf + m->count, m->size - m->count, num, 0);
Joe Perches75ba1d02016-10-07 17:02:20 -0700779 if (!len)
780 goto overflow;
781
782 m->count += len;
783 return;
784
785overflow:
786 seq_set_overflow(m);
KAMEZAWA Hiroyukibda7bad2012-03-23 15:02:54 -0700787}
788EXPORT_SYMBOL(seq_put_decimal_ll);
789
Peter Oberparleiter0b923602009-06-17 16:28:05 -0700790/**
791 * seq_write - write arbitrary data to buffer
792 * @seq: seq_file identifying the buffer to which data should be written
793 * @data: data address
794 * @len: number of bytes
795 *
796 * Return 0 on success, non-zero otherwise.
797 */
798int seq_write(struct seq_file *seq, const void *data, size_t len)
799{
800 if (seq->count + len < seq->size) {
801 memcpy(seq->buf + seq->count, data, len);
802 seq->count += len;
803 return 0;
804 }
KAMEZAWA Hiroyukie075f592012-03-23 15:02:55 -0700805 seq_set_overflow(seq);
Peter Oberparleiter0b923602009-06-17 16:28:05 -0700806 return -1;
807}
808EXPORT_SYMBOL(seq_write);
809
Tetsuo Handa839cc2a2013-11-14 14:31:56 -0800810/**
811 * seq_pad - write padding spaces to buffer
812 * @m: seq_file identifying the buffer to which data should be written
813 * @c: the byte to append after padding if non-zero
814 */
815void seq_pad(struct seq_file *m, char c)
816{
817 int size = m->pad_until - m->count;
Andrei Vagin8cfa67b42018-04-10 16:30:47 -0700818 if (size > 0) {
819 if (size + m->count > m->size) {
820 seq_set_overflow(m);
821 return;
822 }
823 memset(m->buf + m->count, ' ', size);
824 m->count += size;
825 }
Tetsuo Handa839cc2a2013-11-14 14:31:56 -0800826 if (c)
827 seq_putc(m, c);
828}
829EXPORT_SYMBOL(seq_pad);
830
Andy Shevchenko37607102015-09-09 15:38:33 -0700831/* A complete analogue of print_hex_dump() */
832void seq_hex_dump(struct seq_file *m, const char *prefix_str, int prefix_type,
833 int rowsize, int groupsize, const void *buf, size_t len,
834 bool ascii)
835{
836 const u8 *ptr = buf;
837 int i, linelen, remaining = len;
Andy Shevchenko8b91a312015-11-06 16:32:37 -0800838 char *buffer;
839 size_t size;
Andy Shevchenko37607102015-09-09 15:38:33 -0700840 int ret;
841
842 if (rowsize != 16 && rowsize != 32)
843 rowsize = 16;
844
845 for (i = 0; i < len && !seq_has_overflowed(m); i += rowsize) {
846 linelen = min(remaining, rowsize);
847 remaining -= rowsize;
848
849 switch (prefix_type) {
850 case DUMP_PREFIX_ADDRESS:
851 seq_printf(m, "%s%p: ", prefix_str, ptr + i);
852 break;
853 case DUMP_PREFIX_OFFSET:
854 seq_printf(m, "%s%.8x: ", prefix_str, i);
855 break;
856 default:
857 seq_printf(m, "%s", prefix_str);
858 break;
859 }
860
Andy Shevchenko8b91a312015-11-06 16:32:37 -0800861 size = seq_get_buf(m, &buffer);
Andy Shevchenko37607102015-09-09 15:38:33 -0700862 ret = hex_dump_to_buffer(ptr + i, linelen, rowsize, groupsize,
Andy Shevchenko8b91a312015-11-06 16:32:37 -0800863 buffer, size, ascii);
864 seq_commit(m, ret < size ? ret : -1);
865
866 seq_putc(m, '\n');
Andy Shevchenko37607102015-09-09 15:38:33 -0700867 }
868}
869EXPORT_SYMBOL(seq_hex_dump);
870
Pavel Emelianovbcf67e12007-07-10 17:22:26 -0700871struct list_head *seq_list_start(struct list_head *head, loff_t pos)
872{
873 struct list_head *lh;
874
875 list_for_each(lh, head)
876 if (pos-- == 0)
877 return lh;
878
879 return NULL;
880}
Pavel Emelianovbcf67e12007-07-10 17:22:26 -0700881EXPORT_SYMBOL(seq_list_start);
882
883struct list_head *seq_list_start_head(struct list_head *head, loff_t pos)
884{
885 if (!pos)
886 return head;
887
888 return seq_list_start(head, pos - 1);
889}
Pavel Emelianovbcf67e12007-07-10 17:22:26 -0700890EXPORT_SYMBOL(seq_list_start_head);
891
892struct list_head *seq_list_next(void *v, struct list_head *head, loff_t *ppos)
893{
894 struct list_head *lh;
895
896 lh = ((struct list_head *)v)->next;
897 ++*ppos;
898 return lh == head ? NULL : lh;
899}
Pavel Emelianovbcf67e12007-07-10 17:22:26 -0700900EXPORT_SYMBOL(seq_list_next);
Li Zefan66655de2010-02-08 23:18:22 +0000901
902/**
903 * seq_hlist_start - start an iteration of a hlist
904 * @head: the head of the hlist
905 * @pos: the start position of the sequence
906 *
907 * Called at seq_file->op->start().
908 */
909struct hlist_node *seq_hlist_start(struct hlist_head *head, loff_t pos)
910{
911 struct hlist_node *node;
912
913 hlist_for_each(node, head)
914 if (pos-- == 0)
915 return node;
916 return NULL;
917}
918EXPORT_SYMBOL(seq_hlist_start);
919
920/**
921 * seq_hlist_start_head - start an iteration of a hlist
922 * @head: the head of the hlist
923 * @pos: the start position of the sequence
924 *
925 * Called at seq_file->op->start(). Call this function if you want to
926 * print a header at the top of the output.
927 */
928struct hlist_node *seq_hlist_start_head(struct hlist_head *head, loff_t pos)
929{
930 if (!pos)
931 return SEQ_START_TOKEN;
932
933 return seq_hlist_start(head, pos - 1);
934}
935EXPORT_SYMBOL(seq_hlist_start_head);
936
937/**
938 * seq_hlist_next - move to the next position of the hlist
939 * @v: the current iterator
940 * @head: the head of the hlist
Randy Dunlap138860b2010-03-04 09:37:12 -0800941 * @ppos: the current position
Li Zefan66655de2010-02-08 23:18:22 +0000942 *
943 * Called at seq_file->op->next().
944 */
945struct hlist_node *seq_hlist_next(void *v, struct hlist_head *head,
946 loff_t *ppos)
947{
948 struct hlist_node *node = v;
949
950 ++*ppos;
951 if (v == SEQ_START_TOKEN)
952 return head->first;
953 else
954 return node->next;
955}
956EXPORT_SYMBOL(seq_hlist_next);
stephen hemminger1cc52322010-02-22 07:57:17 +0000957
958/**
959 * seq_hlist_start_rcu - start an iteration of a hlist protected by RCU
960 * @head: the head of the hlist
961 * @pos: the start position of the sequence
962 *
963 * Called at seq_file->op->start().
964 *
965 * This list-traversal primitive may safely run concurrently with
966 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
967 * as long as the traversal is guarded by rcu_read_lock().
968 */
969struct hlist_node *seq_hlist_start_rcu(struct hlist_head *head,
970 loff_t pos)
971{
972 struct hlist_node *node;
973
974 __hlist_for_each_rcu(node, head)
975 if (pos-- == 0)
976 return node;
977 return NULL;
978}
979EXPORT_SYMBOL(seq_hlist_start_rcu);
980
981/**
982 * seq_hlist_start_head_rcu - start an iteration of a hlist protected by RCU
983 * @head: the head of the hlist
984 * @pos: the start position of the sequence
985 *
986 * Called at seq_file->op->start(). Call this function if you want to
987 * print a header at the top of the output.
988 *
989 * This list-traversal primitive may safely run concurrently with
990 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
991 * as long as the traversal is guarded by rcu_read_lock().
992 */
993struct hlist_node *seq_hlist_start_head_rcu(struct hlist_head *head,
994 loff_t pos)
995{
996 if (!pos)
997 return SEQ_START_TOKEN;
998
999 return seq_hlist_start_rcu(head, pos - 1);
1000}
1001EXPORT_SYMBOL(seq_hlist_start_head_rcu);
1002
1003/**
1004 * seq_hlist_next_rcu - move to the next position of the hlist protected by RCU
1005 * @v: the current iterator
1006 * @head: the head of the hlist
Randy Dunlap138860b2010-03-04 09:37:12 -08001007 * @ppos: the current position
stephen hemminger1cc52322010-02-22 07:57:17 +00001008 *
1009 * Called at seq_file->op->next().
1010 *
1011 * This list-traversal primitive may safely run concurrently with
1012 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
1013 * as long as the traversal is guarded by rcu_read_lock().
1014 */
1015struct hlist_node *seq_hlist_next_rcu(void *v,
1016 struct hlist_head *head,
1017 loff_t *ppos)
1018{
1019 struct hlist_node *node = v;
1020
1021 ++*ppos;
1022 if (v == SEQ_START_TOKEN)
1023 return rcu_dereference(head->first);
1024 else
1025 return rcu_dereference(node->next);
1026}
1027EXPORT_SYMBOL(seq_hlist_next_rcu);
Jeff Layton0bc77382013-06-21 08:58:21 -04001028
1029/**
1030 * seq_hlist_start_precpu - start an iteration of a percpu hlist array
1031 * @head: pointer to percpu array of struct hlist_heads
1032 * @cpu: pointer to cpu "cursor"
1033 * @pos: start position of sequence
1034 *
1035 * Called at seq_file->op->start().
1036 */
1037struct hlist_node *
1038seq_hlist_start_percpu(struct hlist_head __percpu *head, int *cpu, loff_t pos)
1039{
1040 struct hlist_node *node;
1041
1042 for_each_possible_cpu(*cpu) {
1043 hlist_for_each(node, per_cpu_ptr(head, *cpu)) {
1044 if (pos-- == 0)
1045 return node;
1046 }
1047 }
1048 return NULL;
1049}
1050EXPORT_SYMBOL(seq_hlist_start_percpu);
1051
1052/**
1053 * seq_hlist_next_percpu - move to the next position of the percpu hlist array
1054 * @v: pointer to current hlist_node
1055 * @head: pointer to percpu array of struct hlist_heads
1056 * @cpu: pointer to cpu "cursor"
1057 * @pos: start position of sequence
1058 *
1059 * Called at seq_file->op->next().
1060 */
1061struct hlist_node *
1062seq_hlist_next_percpu(void *v, struct hlist_head __percpu *head,
1063 int *cpu, loff_t *pos)
1064{
1065 struct hlist_node *node = v;
1066
1067 ++*pos;
1068
1069 if (node->next)
1070 return node->next;
1071
1072 for (*cpu = cpumask_next(*cpu, cpu_possible_mask); *cpu < nr_cpu_ids;
1073 *cpu = cpumask_next(*cpu, cpu_possible_mask)) {
1074 struct hlist_head *bucket = per_cpu_ptr(head, *cpu);
1075
1076 if (!hlist_empty(bucket))
1077 return bucket->first;
1078 }
1079 return NULL;
1080}
1081EXPORT_SYMBOL(seq_hlist_next_percpu);
Alexey Dobriyan0965232032018-04-10 16:34:45 -07001082
1083void __init seq_file_init(void)
1084{
Alexey Dobriyand64d01a2018-04-10 16:34:49 -07001085 seq_file_cache = KMEM_CACHE(seq_file, SLAB_ACCOUNT|SLAB_PANIC);
Alexey Dobriyan0965232032018-04-10 16:34:45 -07001086}