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