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