nommu.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* nommu.c: mmu-less memory info files
  2. *
  3. * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #include <linux/init.h>
  12. #include <linux/module.h>
  13. #include <linux/errno.h>
  14. #include <linux/time.h>
  15. #include <linux/kernel.h>
  16. #include <linux/string.h>
  17. #include <linux/mman.h>
  18. #include <linux/proc_fs.h>
  19. #include <linux/mm.h>
  20. #include <linux/mmzone.h>
  21. #include <linux/pagemap.h>
  22. #include <linux/swap.h>
  23. #include <linux/slab.h>
  24. #include <linux/smp.h>
  25. #include <linux/seq_file.h>
  26. #include <linux/hugetlb.h>
  27. #include <linux/vmalloc.h>
  28. #include <asm/uaccess.h>
  29. #include <asm/pgtable.h>
  30. #include <asm/tlb.h>
  31. #include <asm/div64.h>
  32. #include "internal.h"
  33. /*
  34. * display a list of all the VMAs the kernel knows about
  35. * - nommu kernals have a single flat list
  36. */
  37. static int nommu_vma_list_show(struct seq_file *m, void *v)
  38. {
  39. struct vm_area_struct *vma;
  40. unsigned long ino = 0;
  41. struct file *file;
  42. dev_t dev = 0;
  43. int flags, len;
  44. vma = rb_entry((struct rb_node *) v, struct vm_area_struct, vm_rb);
  45. flags = vma->vm_flags;
  46. file = vma->vm_file;
  47. if (file) {
  48. struct inode *inode = vma->vm_file->f_dentry->d_inode;
  49. dev = inode->i_sb->s_dev;
  50. ino = inode->i_ino;
  51. }
  52. seq_printf(m,
  53. "%08lx-%08lx %c%c%c%c %08lx %02x:%02x %lu %n",
  54. vma->vm_start,
  55. vma->vm_end,
  56. flags & VM_READ ? 'r' : '-',
  57. flags & VM_WRITE ? 'w' : '-',
  58. flags & VM_EXEC ? 'x' : '-',
  59. flags & VM_MAYSHARE ? flags & VM_SHARED ? 'S' : 's' : 'p',
  60. vma->vm_pgoff << PAGE_SHIFT,
  61. MAJOR(dev), MINOR(dev), ino, &len);
  62. if (file) {
  63. len = 25 + sizeof(void *) * 6 - len;
  64. if (len < 1)
  65. len = 1;
  66. seq_printf(m, "%*c", len, ' ');
  67. seq_path(m, file->f_vfsmnt, file->f_dentry, "");
  68. }
  69. seq_putc(m, '\n');
  70. return 0;
  71. }
  72. static void *nommu_vma_list_start(struct seq_file *m, loff_t *_pos)
  73. {
  74. struct rb_node *_rb;
  75. loff_t pos = *_pos;
  76. void *next = NULL;
  77. down_read(&nommu_vma_sem);
  78. for (_rb = rb_first(&nommu_vma_tree); _rb; _rb = rb_next(_rb)) {
  79. if (pos == 0) {
  80. next = _rb;
  81. break;
  82. }
  83. pos--;
  84. }
  85. return next;
  86. }
  87. static void nommu_vma_list_stop(struct seq_file *m, void *v)
  88. {
  89. up_read(&nommu_vma_sem);
  90. }
  91. static void *nommu_vma_list_next(struct seq_file *m, void *v, loff_t *pos)
  92. {
  93. (*pos)++;
  94. return rb_next((struct rb_node *) v);
  95. }
  96. static struct seq_operations proc_nommu_vma_list_seqop = {
  97. .start = nommu_vma_list_start,
  98. .next = nommu_vma_list_next,
  99. .stop = nommu_vma_list_stop,
  100. .show = nommu_vma_list_show
  101. };
  102. static int proc_nommu_vma_list_open(struct inode *inode, struct file *file)
  103. {
  104. return seq_open(file, &proc_nommu_vma_list_seqop);
  105. }
  106. static struct file_operations proc_nommu_vma_list_operations = {
  107. .open = proc_nommu_vma_list_open,
  108. .read = seq_read,
  109. .llseek = seq_lseek,
  110. .release = seq_release,
  111. };
  112. static int __init proc_nommu_init(void)
  113. {
  114. create_seq_entry("maps", S_IRUGO, &proc_nommu_vma_list_operations);
  115. return 0;
  116. }
  117. module_init(proc_nommu_init);