]> git.ipfire.org Git - people/ms/linux.git/blame - fs/seq_file.c
Linux 3.18-rc1
[people/ms/linux.git] / fs / seq_file.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/seq_file.c
3 *
4 * helper functions for making synthetic files from sequences of records.
5 * initial implementation -- AV, Oct 2001.
6 */
7
8#include <linux/fs.h>
630d9c47 9#include <linux/export.h>
1da177e4 10#include <linux/seq_file.h>
058504ed 11#include <linux/vmalloc.h>
1da177e4 12#include <linux/slab.h>
adb37c4c 13#include <linux/cred.h>
058504ed 14#include <linux/mm.h>
1da177e4
LT
15
16#include <asm/uaccess.h>
17#include <asm/page.h>
18
e075f591
KH
19
20/*
21 * seq_files have a buffer which can may overflow. When this happens a larger
22 * buffer is reallocated and all the data will be printed again.
23 * The overflow state is true when m->count == m->size.
24 */
25static bool seq_overflow(struct seq_file *m)
26{
27 return m->count == m->size;
28}
29
30static void seq_set_overflow(struct seq_file *m)
31{
32 m->count = m->size;
33}
34
058504ed
HC
35static void *seq_buf_alloc(unsigned long size)
36{
37 void *buf;
38
39 buf = kmalloc(size, GFP_KERNEL | __GFP_NOWARN);
40 if (!buf && size > PAGE_SIZE)
41 buf = vmalloc(size);
42 return buf;
43}
44
1da177e4
LT
45/**
46 * seq_open - initialize sequential file
47 * @file: file we initialize
48 * @op: method table describing the sequence
49 *
50 * seq_open() sets @file, associating it with a sequence described
51 * by @op. @op->start() sets the iterator up and returns the first
52 * element of sequence. @op->stop() shuts it down. @op->next()
53 * returns the next element of sequence. @op->show() prints element
54 * into the buffer. In case of error ->start() and ->next() return
55 * ERR_PTR(error). In the end of sequence they return %NULL. ->show()
56 * returns 0 in case of success and negative number in case of error.
521b5d0c 57 * Returning SEQ_SKIP means "discard this element and move on".
1da177e4 58 */
15ad7cdc 59int seq_open(struct file *file, const struct seq_operations *op)
1da177e4 60{
1abe77b0
AV
61 struct seq_file *p = file->private_data;
62
63 if (!p) {
64 p = kmalloc(sizeof(*p), GFP_KERNEL);
65 if (!p)
66 return -ENOMEM;
67 file->private_data = p;
68 }
1da177e4 69 memset(p, 0, sizeof(*p));
0ac1759a 70 mutex_init(&p->lock);
1da177e4 71 p->op = op;
adb37c4c
EB
72#ifdef CONFIG_USER_NS
73 p->user_ns = file->f_cred->user_ns;
74#endif
1da177e4
LT
75
76 /*
77 * Wrappers around seq_open(e.g. swaps_open) need to be
78 * aware of this. If they set f_version themselves, they
79 * should call seq_open first and then set f_version.
80 */
81 file->f_version = 0;
82
8f19d472
EB
83 /*
84 * seq_files support lseek() and pread(). They do not implement
85 * write() at all, but we clear FMODE_PWRITE here for historical
86 * reasons.
87 *
88 * If a client of seq_files a) implements file.write() and b) wishes to
89 * support pwrite() then that client will need to implement its own
90 * file.open() which calls seq_open() and then sets FMODE_PWRITE.
91 */
92 file->f_mode &= ~FMODE_PWRITE;
1da177e4
LT
93 return 0;
94}
95EXPORT_SYMBOL(seq_open);
96
33da8892
EB
97static int traverse(struct seq_file *m, loff_t offset)
98{
99 loff_t pos = 0, index;
100 int error = 0;
101 void *p;
102
103 m->version = 0;
104 index = 0;
105 m->count = m->from = 0;
106 if (!offset) {
107 m->index = index;
108 return 0;
109 }
110 if (!m->buf) {
058504ed 111 m->buf = seq_buf_alloc(m->size = PAGE_SIZE);
33da8892
EB
112 if (!m->buf)
113 return -ENOMEM;
114 }
115 p = m->op->start(m, &index);
116 while (p) {
117 error = PTR_ERR(p);
118 if (IS_ERR(p))
119 break;
120 error = m->op->show(m, p);
121 if (error < 0)
122 break;
123 if (unlikely(error)) {
124 error = 0;
125 m->count = 0;
126 }
e075f591 127 if (seq_overflow(m))
33da8892
EB
128 goto Eoverflow;
129 if (pos + m->count > offset) {
130 m->from = offset - pos;
131 m->count -= m->from;
132 m->index = index;
133 break;
134 }
135 pos += m->count;
136 m->count = 0;
137 if (pos == offset) {
138 index++;
139 m->index = index;
140 break;
141 }
142 p = m->op->next(m, p, &index);
143 }
144 m->op->stop(m, p);
f01d1d54 145 m->index = index;
33da8892
EB
146 return error;
147
148Eoverflow:
149 m->op->stop(m, p);
058504ed 150 kvfree(m->buf);
801a7605 151 m->count = 0;
058504ed 152 m->buf = seq_buf_alloc(m->size <<= 1);
33da8892
EB
153 return !m->buf ? -ENOMEM : -EAGAIN;
154}
155
1da177e4
LT
156/**
157 * seq_read - ->read() method for sequential files.
67be2dd1
MW
158 * @file: the file to read from
159 * @buf: the buffer to read to
160 * @size: the maximum number of bytes to read
161 * @ppos: the current position in the file
1da177e4
LT
162 *
163 * Ready-made ->f_op->read()
164 */
165ssize_t seq_read(struct file *file, char __user *buf, size_t size, loff_t *ppos)
166{
8209e2f4 167 struct seq_file *m = file->private_data;
1da177e4
LT
168 size_t copied = 0;
169 loff_t pos;
170 size_t n;
171 void *p;
172 int err = 0;
173
0ac1759a 174 mutex_lock(&m->lock);
8f19d472 175
7904ac84
EC
176 /*
177 * seq_file->op->..m_start/m_stop/m_next may do special actions
178 * or optimisations based on the file->f_version, so we want to
179 * pass the file->f_version to those methods.
180 *
181 * seq_file->version is just copy of f_version, and seq_file
182 * methods can treat it simply as file version.
183 * It is copied in first and copied out after all operations.
184 * It is convenient to have it as part of structure to avoid the
185 * need of passing another argument to all the seq_file methods.
186 */
187 m->version = file->f_version;
188
8f19d472
EB
189 /* Don't assume *ppos is where we left it */
190 if (unlikely(*ppos != m->read_pos)) {
8f19d472
EB
191 while ((err = traverse(m, *ppos)) == -EAGAIN)
192 ;
193 if (err) {
194 /* With prejudice... */
195 m->read_pos = 0;
196 m->version = 0;
197 m->index = 0;
198 m->count = 0;
199 goto Done;
7904ac84
EC
200 } else {
201 m->read_pos = *ppos;
8f19d472
EB
202 }
203 }
204
1da177e4
LT
205 /* grab buffer if we didn't have one */
206 if (!m->buf) {
058504ed 207 m->buf = seq_buf_alloc(m->size = PAGE_SIZE);
1da177e4
LT
208 if (!m->buf)
209 goto Enomem;
210 }
211 /* if not empty - flush it first */
212 if (m->count) {
213 n = min(m->count, size);
214 err = copy_to_user(buf, m->buf + m->from, n);
215 if (err)
216 goto Efault;
217 m->count -= n;
218 m->from += n;
219 size -= n;
220 buf += n;
221 copied += n;
222 if (!m->count)
223 m->index++;
224 if (!size)
225 goto Done;
226 }
227 /* we need at least one record in buffer */
4cdfe84b
AV
228 pos = m->index;
229 p = m->op->start(m, &pos);
1da177e4 230 while (1) {
1da177e4
LT
231 err = PTR_ERR(p);
232 if (!p || IS_ERR(p))
233 break;
234 err = m->op->show(m, p);
521b5d0c 235 if (err < 0)
1da177e4 236 break;
521b5d0c
AV
237 if (unlikely(err))
238 m->count = 0;
4cdfe84b
AV
239 if (unlikely(!m->count)) {
240 p = m->op->next(m, p, &pos);
241 m->index = pos;
242 continue;
243 }
1da177e4
LT
244 if (m->count < m->size)
245 goto Fill;
246 m->op->stop(m, p);
058504ed 247 kvfree(m->buf);
801a7605 248 m->count = 0;
058504ed 249 m->buf = seq_buf_alloc(m->size <<= 1);
1da177e4
LT
250 if (!m->buf)
251 goto Enomem;
1da177e4 252 m->version = 0;
4cdfe84b
AV
253 pos = m->index;
254 p = m->op->start(m, &pos);
1da177e4
LT
255 }
256 m->op->stop(m, p);
257 m->count = 0;
258 goto Done;
259Fill:
260 /* they want more? let's try to get some more */
261 while (m->count < size) {
262 size_t offs = m->count;
263 loff_t next = pos;
264 p = m->op->next(m, p, &next);
265 if (!p || IS_ERR(p)) {
266 err = PTR_ERR(p);
267 break;
268 }
269 err = m->op->show(m, p);
e075f591 270 if (seq_overflow(m) || err) {
1da177e4 271 m->count = offs;
521b5d0c
AV
272 if (likely(err <= 0))
273 break;
1da177e4
LT
274 }
275 pos = next;
276 }
277 m->op->stop(m, p);
278 n = min(m->count, size);
279 err = copy_to_user(buf, m->buf, n);
280 if (err)
281 goto Efault;
282 copied += n;
283 m->count -= n;
284 if (m->count)
285 m->from = n;
286 else
287 pos++;
288 m->index = pos;
289Done:
290 if (!copied)
291 copied = err;
8f19d472 292 else {
1da177e4 293 *ppos += copied;
8f19d472
EB
294 m->read_pos += copied;
295 }
1da177e4 296 file->f_version = m->version;
0ac1759a 297 mutex_unlock(&m->lock);
1da177e4
LT
298 return copied;
299Enomem:
300 err = -ENOMEM;
301 goto Done;
302Efault:
303 err = -EFAULT;
304 goto Done;
305}
306EXPORT_SYMBOL(seq_read);
307
1da177e4
LT
308/**
309 * seq_lseek - ->llseek() method for sequential files.
67be2dd1
MW
310 * @file: the file in question
311 * @offset: new position
254adaa4 312 * @whence: 0 for absolute, 1 for relative position
1da177e4
LT
313 *
314 * Ready-made ->f_op->llseek()
315 */
965c8e59 316loff_t seq_lseek(struct file *file, loff_t offset, int whence)
1da177e4 317{
8209e2f4 318 struct seq_file *m = file->private_data;
16abef0e 319 loff_t retval = -EINVAL;
1da177e4 320
0ac1759a 321 mutex_lock(&m->lock);
1da177e4 322 m->version = file->f_version;
965c8e59 323 switch (whence) {
5e62adef
AM
324 case SEEK_CUR:
325 offset += file->f_pos;
326 case SEEK_SET:
327 if (offset < 0)
328 break;
329 retval = offset;
330 if (offset != m->read_pos) {
331 while ((retval = traverse(m, offset)) == -EAGAIN)
332 ;
333 if (retval) {
334 /* with extreme prejudice... */
335 file->f_pos = 0;
336 m->read_pos = 0;
337 m->version = 0;
338 m->index = 0;
339 m->count = 0;
340 } else {
341 m->read_pos = offset;
342 retval = file->f_pos = offset;
1da177e4 343 }
05e16745
GZ
344 } else {
345 file->f_pos = offset;
5e62adef 346 }
1da177e4 347 }
1da177e4 348 file->f_version = m->version;
00c5746d 349 mutex_unlock(&m->lock);
1da177e4
LT
350 return retval;
351}
352EXPORT_SYMBOL(seq_lseek);
353
354/**
355 * seq_release - free the structures associated with sequential file.
356 * @file: file in question
6131ffaa 357 * @inode: its inode
1da177e4
LT
358 *
359 * Frees the structures associated with sequential file; can be used
360 * as ->f_op->release() if you don't have private data to destroy.
361 */
362int seq_release(struct inode *inode, struct file *file)
363{
8209e2f4 364 struct seq_file *m = file->private_data;
058504ed 365 kvfree(m->buf);
1da177e4
LT
366 kfree(m);
367 return 0;
368}
369EXPORT_SYMBOL(seq_release);
370
371/**
372 * seq_escape - print string into buffer, escaping some characters
373 * @m: target buffer
374 * @s: string
375 * @esc: set of characters that need escaping
376 *
377 * Puts string into buffer, replacing each occurrence of character from
378 * @esc with usual octal escape. Returns 0 in case of success, -1 - in
379 * case of overflow.
380 */
381int seq_escape(struct seq_file *m, const char *s, const char *esc)
382{
383 char *end = m->buf + m->size;
384 char *p;
385 char c;
386
387 for (p = m->buf + m->count; (c = *s) != '\0' && p < end; s++) {
388 if (!strchr(esc, c)) {
389 *p++ = c;
390 continue;
391 }
392 if (p + 3 < end) {
393 *p++ = '\\';
394 *p++ = '0' + ((c & 0300) >> 6);
395 *p++ = '0' + ((c & 070) >> 3);
396 *p++ = '0' + (c & 07);
397 continue;
398 }
e075f591 399 seq_set_overflow(m);
1da177e4
LT
400 return -1;
401 }
402 m->count = p - m->buf;
403 return 0;
404}
405EXPORT_SYMBOL(seq_escape);
406
a4808147 407int seq_vprintf(struct seq_file *m, const char *f, va_list args)
1da177e4 408{
1da177e4
LT
409 int len;
410
411 if (m->count < m->size) {
1da177e4 412 len = vsnprintf(m->buf + m->count, m->size - m->count, f, args);
1da177e4
LT
413 if (m->count + len < m->size) {
414 m->count += len;
415 return 0;
416 }
417 }
e075f591 418 seq_set_overflow(m);
1da177e4
LT
419 return -1;
420}
a4808147
SW
421EXPORT_SYMBOL(seq_vprintf);
422
423int seq_printf(struct seq_file *m, const char *f, ...)
424{
425 int ret;
426 va_list args;
427
428 va_start(args, f);
429 ret = seq_vprintf(m, f, args);
430 va_end(args);
431
432 return ret;
433}
1da177e4
LT
434EXPORT_SYMBOL(seq_printf);
435
74e2f334 436/**
958086d1
TE
437 * mangle_path - mangle and copy path to buffer beginning
438 * @s: buffer start
439 * @p: beginning of path in above buffer
440 * @esc: set of characters that need escaping
74e2f334
TE
441 *
442 * Copy the path from @p to @s, replacing each occurrence of character from
443 * @esc with usual octal escape.
444 * Returns pointer past last written character in @s, or NULL in case of
445 * failure.
446 */
8c9379e9 447char *mangle_path(char *s, const char *p, const char *esc)
6092d048
RP
448{
449 while (s <= p) {
450 char c = *p++;
451 if (!c) {
452 return s;
453 } else if (!strchr(esc, c)) {
454 *s++ = c;
455 } else if (s + 4 > p) {
456 break;
457 } else {
458 *s++ = '\\';
459 *s++ = '0' + ((c & 0300) >> 6);
460 *s++ = '0' + ((c & 070) >> 3);
461 *s++ = '0' + (c & 07);
462 }
463 }
464 return NULL;
465}
604094f4 466EXPORT_SYMBOL(mangle_path);
6092d048 467
52afeefb
AV
468/**
469 * seq_path - seq_file interface to print a pathname
470 * @m: the seq_file handle
471 * @path: the struct path to print
472 * @esc: set of characters to escape in the output
473 *
474 * return the absolute path of 'path', as represented by the
475 * dentry / mnt pair in the path parameter.
6092d048 476 */
8c9379e9 477int seq_path(struct seq_file *m, const struct path *path, const char *esc)
1da177e4 478{
f8439806
MS
479 char *buf;
480 size_t size = seq_get_buf(m, &buf);
481 int res = -1;
482
483 if (size) {
484 char *p = d_path(path, buf, size);
1da177e4 485 if (!IS_ERR(p)) {
f8439806
MS
486 char *end = mangle_path(buf, p, esc);
487 if (end)
488 res = end - buf;
1da177e4
LT
489 }
490 }
f8439806
MS
491 seq_commit(m, res);
492
493 return res;
1da177e4
LT
494}
495EXPORT_SYMBOL(seq_path);
496
9d1bc601
MS
497/*
498 * Same as seq_path, but relative to supplied root.
9d1bc601 499 */
8c9379e9
AV
500int seq_path_root(struct seq_file *m, const struct path *path,
501 const struct path *root, const char *esc)
9d1bc601 502{
f8439806
MS
503 char *buf;
504 size_t size = seq_get_buf(m, &buf);
505 int res = -ENAMETOOLONG;
506
507 if (size) {
9d1bc601
MS
508 char *p;
509
f8439806 510 p = __d_path(path, root, buf, size);
02125a82
AV
511 if (!p)
512 return SEQ_SKIP;
f8439806 513 res = PTR_ERR(p);
9d1bc601 514 if (!IS_ERR(p)) {
f8439806
MS
515 char *end = mangle_path(buf, p, esc);
516 if (end)
517 res = end - buf;
518 else
519 res = -ENAMETOOLONG;
9d1bc601
MS
520 }
521 }
f8439806
MS
522 seq_commit(m, res);
523
02125a82 524 return res < 0 && res != -ENAMETOOLONG ? res : 0;
9d1bc601
MS
525}
526
6092d048
RP
527/*
528 * returns the path of the 'dentry' from the root of its filesystem.
529 */
8c9379e9 530int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc)
6092d048 531{
f8439806
MS
532 char *buf;
533 size_t size = seq_get_buf(m, &buf);
534 int res = -1;
535
536 if (size) {
537 char *p = dentry_path(dentry, buf, size);
6092d048 538 if (!IS_ERR(p)) {
f8439806
MS
539 char *end = mangle_path(buf, p, esc);
540 if (end)
541 res = end - buf;
6092d048
RP
542 }
543 }
f8439806
MS
544 seq_commit(m, res);
545
546 return res;
6092d048
RP
547}
548
cb78a0ce
RR
549int seq_bitmap(struct seq_file *m, const unsigned long *bits,
550 unsigned int nr_bits)
50ac2d69 551{
85dd030e
LJ
552 if (m->count < m->size) {
553 int len = bitmap_scnprintf(m->buf + m->count,
554 m->size - m->count, bits, nr_bits);
555 if (m->count + len < m->size) {
556 m->count += len;
557 return 0;
558 }
50ac2d69 559 }
e075f591 560 seq_set_overflow(m);
50ac2d69
AD
561 return -1;
562}
85dd030e 563EXPORT_SYMBOL(seq_bitmap);
50ac2d69 564
af76aba0 565int seq_bitmap_list(struct seq_file *m, const unsigned long *bits,
3eda2011
LJ
566 unsigned int nr_bits)
567{
568 if (m->count < m->size) {
569 int len = bitmap_scnlistprintf(m->buf + m->count,
570 m->size - m->count, bits, nr_bits);
571 if (m->count + len < m->size) {
572 m->count += len;
573 return 0;
574 }
575 }
e075f591 576 seq_set_overflow(m);
3eda2011
LJ
577 return -1;
578}
579EXPORT_SYMBOL(seq_bitmap_list);
580
1da177e4
LT
581static void *single_start(struct seq_file *p, loff_t *pos)
582{
583 return NULL + (*pos == 0);
584}
585
586static void *single_next(struct seq_file *p, void *v, loff_t *pos)
587{
588 ++*pos;
589 return NULL;
590}
591
592static void single_stop(struct seq_file *p, void *v)
593{
594}
595
596int single_open(struct file *file, int (*show)(struct seq_file *, void *),
597 void *data)
598{
599 struct seq_operations *op = kmalloc(sizeof(*op), GFP_KERNEL);
600 int res = -ENOMEM;
601
602 if (op) {
603 op->start = single_start;
604 op->next = single_next;
605 op->stop = single_stop;
606 op->show = show;
607 res = seq_open(file, op);
608 if (!res)
609 ((struct seq_file *)file->private_data)->private = data;
610 else
611 kfree(op);
612 }
613 return res;
614}
615EXPORT_SYMBOL(single_open);
616
2043f495
AV
617int single_open_size(struct file *file, int (*show)(struct seq_file *, void *),
618 void *data, size_t size)
619{
058504ed 620 char *buf = seq_buf_alloc(size);
2043f495
AV
621 int ret;
622 if (!buf)
623 return -ENOMEM;
624 ret = single_open(file, show, data);
625 if (ret) {
058504ed 626 kvfree(buf);
2043f495
AV
627 return ret;
628 }
629 ((struct seq_file *)file->private_data)->buf = buf;
630 ((struct seq_file *)file->private_data)->size = size;
631 return 0;
632}
633EXPORT_SYMBOL(single_open_size);
634
1da177e4
LT
635int single_release(struct inode *inode, struct file *file)
636{
15ad7cdc 637 const struct seq_operations *op = ((struct seq_file *)file->private_data)->op;
1da177e4
LT
638 int res = seq_release(inode, file);
639 kfree(op);
640 return res;
641}
642EXPORT_SYMBOL(single_release);
643
644int seq_release_private(struct inode *inode, struct file *file)
645{
646 struct seq_file *seq = file->private_data;
647
648 kfree(seq->private);
649 seq->private = NULL;
650 return seq_release(inode, file);
651}
652EXPORT_SYMBOL(seq_release_private);
653
39699037
PE
654void *__seq_open_private(struct file *f, const struct seq_operations *ops,
655 int psize)
656{
657 int rc;
658 void *private;
659 struct seq_file *seq;
660
661 private = kzalloc(psize, GFP_KERNEL);
662 if (private == NULL)
663 goto out;
664
665 rc = seq_open(f, ops);
666 if (rc < 0)
667 goto out_free;
668
669 seq = f->private_data;
670 seq->private = private;
671 return private;
672
673out_free:
674 kfree(private);
675out:
676 return NULL;
677}
678EXPORT_SYMBOL(__seq_open_private);
679
680int seq_open_private(struct file *filp, const struct seq_operations *ops,
681 int psize)
682{
683 return __seq_open_private(filp, ops, psize) ? 0 : -ENOMEM;
684}
685EXPORT_SYMBOL(seq_open_private);
686
1da177e4
LT
687int seq_putc(struct seq_file *m, char c)
688{
689 if (m->count < m->size) {
690 m->buf[m->count++] = c;
691 return 0;
692 }
693 return -1;
694}
695EXPORT_SYMBOL(seq_putc);
696
697int seq_puts(struct seq_file *m, const char *s)
698{
699 int len = strlen(s);
700 if (m->count + len < m->size) {
701 memcpy(m->buf + m->count, s, len);
702 m->count += len;
703 return 0;
704 }
e075f591 705 seq_set_overflow(m);
1da177e4
LT
706 return -1;
707}
708EXPORT_SYMBOL(seq_puts);
bcf67e16 709
1ac101a5
KH
710/*
711 * A helper routine for putting decimal numbers without rich format of printf().
712 * only 'unsigned long long' is supported.
713 * This routine will put one byte delimiter + number into seq_file.
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 */
717int seq_put_decimal_ull(struct seq_file *m, char delimiter,
718 unsigned long long num)
719{
720 int len;
721
722 if (m->count + 2 >= m->size) /* we'll write 2 bytes at least */
723 goto overflow;
724
bda7bad6
KH
725 if (delimiter)
726 m->buf[m->count++] = delimiter;
1ac101a5
KH
727
728 if (num < 10) {
729 m->buf[m->count++] = num + '0';
730 return 0;
731 }
732
733 len = num_to_str(m->buf + m->count, m->size - m->count, num);
734 if (!len)
735 goto overflow;
736 m->count += len;
737 return 0;
738overflow:
e075f591 739 seq_set_overflow(m);
1ac101a5
KH
740 return -1;
741}
742EXPORT_SYMBOL(seq_put_decimal_ull);
743
bda7bad6
KH
744int seq_put_decimal_ll(struct seq_file *m, char delimiter,
745 long long num)
746{
747 if (num < 0) {
748 if (m->count + 3 >= m->size) {
e075f591 749 seq_set_overflow(m);
bda7bad6
KH
750 return -1;
751 }
752 if (delimiter)
753 m->buf[m->count++] = delimiter;
754 num = -num;
755 delimiter = '-';
756 }
757 return seq_put_decimal_ull(m, delimiter, num);
758
759}
760EXPORT_SYMBOL(seq_put_decimal_ll);
761
0b923606
PO
762/**
763 * seq_write - write arbitrary data to buffer
764 * @seq: seq_file identifying the buffer to which data should be written
765 * @data: data address
766 * @len: number of bytes
767 *
768 * Return 0 on success, non-zero otherwise.
769 */
770int seq_write(struct seq_file *seq, const void *data, size_t len)
771{
772 if (seq->count + len < seq->size) {
773 memcpy(seq->buf + seq->count, data, len);
774 seq->count += len;
775 return 0;
776 }
e075f591 777 seq_set_overflow(seq);
0b923606
PO
778 return -1;
779}
780EXPORT_SYMBOL(seq_write);
781
839cc2a9
TH
782/**
783 * seq_pad - write padding spaces to buffer
784 * @m: seq_file identifying the buffer to which data should be written
785 * @c: the byte to append after padding if non-zero
786 */
787void seq_pad(struct seq_file *m, char c)
788{
789 int size = m->pad_until - m->count;
790 if (size > 0)
791 seq_printf(m, "%*s", size, "");
792 if (c)
793 seq_putc(m, c);
794}
795EXPORT_SYMBOL(seq_pad);
796
bcf67e16
PE
797struct list_head *seq_list_start(struct list_head *head, loff_t pos)
798{
799 struct list_head *lh;
800
801 list_for_each(lh, head)
802 if (pos-- == 0)
803 return lh;
804
805 return NULL;
806}
bcf67e16
PE
807EXPORT_SYMBOL(seq_list_start);
808
809struct list_head *seq_list_start_head(struct list_head *head, loff_t pos)
810{
811 if (!pos)
812 return head;
813
814 return seq_list_start(head, pos - 1);
815}
bcf67e16
PE
816EXPORT_SYMBOL(seq_list_start_head);
817
818struct list_head *seq_list_next(void *v, struct list_head *head, loff_t *ppos)
819{
820 struct list_head *lh;
821
822 lh = ((struct list_head *)v)->next;
823 ++*ppos;
824 return lh == head ? NULL : lh;
825}
bcf67e16 826EXPORT_SYMBOL(seq_list_next);
66655de6
LZ
827
828/**
829 * seq_hlist_start - start an iteration of a hlist
830 * @head: the head of the hlist
831 * @pos: the start position of the sequence
832 *
833 * Called at seq_file->op->start().
834 */
835struct hlist_node *seq_hlist_start(struct hlist_head *head, loff_t pos)
836{
837 struct hlist_node *node;
838
839 hlist_for_each(node, head)
840 if (pos-- == 0)
841 return node;
842 return NULL;
843}
844EXPORT_SYMBOL(seq_hlist_start);
845
846/**
847 * seq_hlist_start_head - start an iteration of a hlist
848 * @head: the head of the hlist
849 * @pos: the start position of the sequence
850 *
851 * Called at seq_file->op->start(). Call this function if you want to
852 * print a header at the top of the output.
853 */
854struct hlist_node *seq_hlist_start_head(struct hlist_head *head, loff_t pos)
855{
856 if (!pos)
857 return SEQ_START_TOKEN;
858
859 return seq_hlist_start(head, pos - 1);
860}
861EXPORT_SYMBOL(seq_hlist_start_head);
862
863/**
864 * seq_hlist_next - move to the next position of the hlist
865 * @v: the current iterator
866 * @head: the head of the hlist
138860b9 867 * @ppos: the current position
66655de6
LZ
868 *
869 * Called at seq_file->op->next().
870 */
871struct hlist_node *seq_hlist_next(void *v, struct hlist_head *head,
872 loff_t *ppos)
873{
874 struct hlist_node *node = v;
875
876 ++*ppos;
877 if (v == SEQ_START_TOKEN)
878 return head->first;
879 else
880 return node->next;
881}
882EXPORT_SYMBOL(seq_hlist_next);
1cc52327 883
884/**
885 * seq_hlist_start_rcu - start an iteration of a hlist protected by RCU
886 * @head: the head of the hlist
887 * @pos: the start position of the sequence
888 *
889 * Called at seq_file->op->start().
890 *
891 * This list-traversal primitive may safely run concurrently with
892 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
893 * as long as the traversal is guarded by rcu_read_lock().
894 */
895struct hlist_node *seq_hlist_start_rcu(struct hlist_head *head,
896 loff_t pos)
897{
898 struct hlist_node *node;
899
900 __hlist_for_each_rcu(node, head)
901 if (pos-- == 0)
902 return node;
903 return NULL;
904}
905EXPORT_SYMBOL(seq_hlist_start_rcu);
906
907/**
908 * seq_hlist_start_head_rcu - start an iteration of a hlist protected by RCU
909 * @head: the head of the hlist
910 * @pos: the start position of the sequence
911 *
912 * Called at seq_file->op->start(). Call this function if you want to
913 * print a header at the top of the output.
914 *
915 * This list-traversal primitive may safely run concurrently with
916 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
917 * as long as the traversal is guarded by rcu_read_lock().
918 */
919struct hlist_node *seq_hlist_start_head_rcu(struct hlist_head *head,
920 loff_t pos)
921{
922 if (!pos)
923 return SEQ_START_TOKEN;
924
925 return seq_hlist_start_rcu(head, pos - 1);
926}
927EXPORT_SYMBOL(seq_hlist_start_head_rcu);
928
929/**
930 * seq_hlist_next_rcu - move to the next position of the hlist protected by RCU
931 * @v: the current iterator
932 * @head: the head of the hlist
138860b9 933 * @ppos: the current position
1cc52327 934 *
935 * Called at seq_file->op->next().
936 *
937 * This list-traversal primitive may safely run concurrently with
938 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
939 * as long as the traversal is guarded by rcu_read_lock().
940 */
941struct hlist_node *seq_hlist_next_rcu(void *v,
942 struct hlist_head *head,
943 loff_t *ppos)
944{
945 struct hlist_node *node = v;
946
947 ++*ppos;
948 if (v == SEQ_START_TOKEN)
949 return rcu_dereference(head->first);
950 else
951 return rcu_dereference(node->next);
952}
953EXPORT_SYMBOL(seq_hlist_next_rcu);
0bc77381
JL
954
955/**
956 * seq_hlist_start_precpu - start an iteration of a percpu hlist array
957 * @head: pointer to percpu array of struct hlist_heads
958 * @cpu: pointer to cpu "cursor"
959 * @pos: start position of sequence
960 *
961 * Called at seq_file->op->start().
962 */
963struct hlist_node *
964seq_hlist_start_percpu(struct hlist_head __percpu *head, int *cpu, loff_t pos)
965{
966 struct hlist_node *node;
967
968 for_each_possible_cpu(*cpu) {
969 hlist_for_each(node, per_cpu_ptr(head, *cpu)) {
970 if (pos-- == 0)
971 return node;
972 }
973 }
974 return NULL;
975}
976EXPORT_SYMBOL(seq_hlist_start_percpu);
977
978/**
979 * seq_hlist_next_percpu - move to the next position of the percpu hlist array
980 * @v: pointer to current hlist_node
981 * @head: pointer to percpu array of struct hlist_heads
982 * @cpu: pointer to cpu "cursor"
983 * @pos: start position of sequence
984 *
985 * Called at seq_file->op->next().
986 */
987struct hlist_node *
988seq_hlist_next_percpu(void *v, struct hlist_head __percpu *head,
989 int *cpu, loff_t *pos)
990{
991 struct hlist_node *node = v;
992
993 ++*pos;
994
995 if (node->next)
996 return node->next;
997
998 for (*cpu = cpumask_next(*cpu, cpu_possible_mask); *cpu < nr_cpu_ids;
999 *cpu = cpumask_next(*cpu, cpu_possible_mask)) {
1000 struct hlist_head *bucket = per_cpu_ptr(head, *cpu);
1001
1002 if (!hlist_empty(bucket))
1003 return bucket->first;
1004 }
1005 return NULL;
1006}
1007EXPORT_SYMBOL(seq_hlist_next_percpu);