2019-05-27 06:55:01 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-16 22:20:36 +00:00
|
|
|
/* nommu.c: mmu-less memory info files
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
|
|
|
|
* Written by David Howells (dhowells@redhat.com)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/time.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/mman.h>
|
|
|
|
#include <linux/proc_fs.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/mmzone.h>
|
|
|
|
#include <linux/pagemap.h>
|
|
|
|
#include <linux/swap.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/hugetlb.h>
|
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
#include <asm/tlb.h>
|
|
|
|
#include <asm/div64.h>
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
/*
|
2009-01-08 12:04:47 +00:00
|
|
|
* display a single region to a sequenced file
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2009-01-08 12:04:47 +00:00
|
|
|
static int nommu_region_show(struct seq_file *m, struct vm_region *region)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned long ino = 0;
|
|
|
|
struct file *file;
|
|
|
|
dev_t dev = 0;
|
2013-11-14 22:31:57 +00:00
|
|
|
int flags;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-01-08 12:04:47 +00:00
|
|
|
flags = region->vm_flags;
|
|
|
|
file = region->vm_file;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (file) {
|
2013-01-23 22:07:38 +00:00
|
|
|
struct inode *inode = file_inode(region->vm_file);
|
2005-04-16 22:20:36 +00:00
|
|
|
dev = inode->i_sb->s_dev;
|
|
|
|
ino = inode->i_ino;
|
|
|
|
}
|
|
|
|
|
2013-11-14 22:31:57 +00:00
|
|
|
seq_setwidth(m, 25 + sizeof(void *) * 6 - 1);
|
2005-04-16 22:20:36 +00:00
|
|
|
seq_printf(m,
|
2013-11-14 22:31:57 +00:00
|
|
|
"%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu ",
|
2009-01-08 12:04:47 +00:00
|
|
|
region->vm_start,
|
|
|
|
region->vm_end,
|
2005-04-16 22:20:36 +00:00
|
|
|
flags & VM_READ ? 'r' : '-',
|
|
|
|
flags & VM_WRITE ? 'w' : '-',
|
|
|
|
flags & VM_EXEC ? 'x' : '-',
|
|
|
|
flags & VM_MAYSHARE ? flags & VM_SHARED ? 'S' : 's' : 'p',
|
2009-01-08 12:04:47 +00:00
|
|
|
((loff_t)region->vm_pgoff) << PAGE_SHIFT,
|
2013-11-14 22:31:57 +00:00
|
|
|
MAJOR(dev), MINOR(dev), ino);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (file) {
|
2013-11-14 22:31:57 +00:00
|
|
|
seq_pad(m, ' ');
|
2023-10-09 15:37:11 +00:00
|
|
|
seq_path(m, file_user_path(file), "");
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
seq_putc(m, '\n');
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-27 08:50:19 +00:00
|
|
|
/*
|
2009-01-08 12:04:47 +00:00
|
|
|
* display a list of all the REGIONs the kernel knows about
|
2009-01-12 22:35:47 +00:00
|
|
|
* - nommu kernels have a single flat list
|
2006-09-27 08:50:19 +00:00
|
|
|
*/
|
2009-01-08 12:04:47 +00:00
|
|
|
static int nommu_region_list_show(struct seq_file *m, void *_p)
|
2006-09-27 08:50:19 +00:00
|
|
|
{
|
2009-01-08 12:04:47 +00:00
|
|
|
struct rb_node *p = _p;
|
2006-09-27 08:50:19 +00:00
|
|
|
|
2009-01-08 12:04:47 +00:00
|
|
|
return nommu_region_show(m, rb_entry(p, struct vm_region, vm_rb));
|
2006-09-27 08:50:19 +00:00
|
|
|
}
|
|
|
|
|
2009-01-08 12:04:47 +00:00
|
|
|
static void *nommu_region_list_start(struct seq_file *m, loff_t *_pos)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-01-08 12:04:47 +00:00
|
|
|
struct rb_node *p;
|
2005-04-16 22:20:36 +00:00
|
|
|
loff_t pos = *_pos;
|
|
|
|
|
2009-01-08 12:04:47 +00:00
|
|
|
down_read(&nommu_region_sem);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-01-08 12:04:47 +00:00
|
|
|
for (p = rb_first(&nommu_region_tree); p; p = rb_next(p))
|
|
|
|
if (pos-- == 0)
|
|
|
|
return p;
|
|
|
|
return NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-01-08 12:04:47 +00:00
|
|
|
static void nommu_region_list_stop(struct seq_file *m, void *v)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-01-08 12:04:47 +00:00
|
|
|
up_read(&nommu_region_sem);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-01-08 12:04:47 +00:00
|
|
|
static void *nommu_region_list_next(struct seq_file *m, void *v, loff_t *pos)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
(*pos)++;
|
|
|
|
return rb_next((struct rb_node *) v);
|
|
|
|
}
|
|
|
|
|
2009-09-22 23:43:43 +00:00
|
|
|
static const struct seq_operations proc_nommu_region_list_seqop = {
|
2009-01-08 12:04:47 +00:00
|
|
|
.start = nommu_region_list_start,
|
|
|
|
.next = nommu_region_list_next,
|
|
|
|
.stop = nommu_region_list_stop,
|
|
|
|
.show = nommu_region_list_show
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int __init proc_nommu_init(void)
|
|
|
|
{
|
2018-04-13 17:44:18 +00:00
|
|
|
proc_create_seq("maps", S_IRUGO, NULL, &proc_nommu_region_list_seqop);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-23 23:55:45 +00:00
|
|
|
fs_initcall(proc_nommu_init);
|