2005-04-17 02:20:36 +04:00
/* nommu.c: mmu-less memory info files
*
* Copyright ( C ) 2004 Red Hat , Inc . All Rights Reserved .
* Written by David Howells ( dhowells @ redhat . com )
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation ; either version
* 2 of the License , or ( at your option ) any later version .
*/
# 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/uaccess.h>
# include <asm/pgtable.h>
# include <asm/tlb.h>
# include <asm/div64.h>
# include "internal.h"
/*
2009-01-08 15:04:47 +03:00
* display a single region to a sequenced file
2005-04-17 02:20:36 +04:00
*/
2009-01-08 15:04:47 +03:00
static int nommu_region_show ( struct seq_file * m , struct vm_region * region )
2005-04-17 02:20:36 +04:00
{
unsigned long ino = 0 ;
struct file * file ;
dev_t dev = 0 ;
2013-11-15 02:31:57 +04:00
int flags ;
2005-04-17 02:20:36 +04:00
2009-01-08 15:04:47 +03:00
flags = region - > vm_flags ;
file = region - > vm_file ;
2005-04-17 02:20:36 +04:00
if ( file ) {
2013-01-24 02:07:38 +04:00
struct inode * inode = file_inode ( region - > vm_file ) ;
2005-04-17 02:20:36 +04:00
dev = inode - > i_sb - > s_dev ;
ino = inode - > i_ino ;
}
2013-11-15 02:31:57 +04:00
seq_setwidth ( m , 25 + sizeof ( void * ) * 6 - 1 ) ;
2005-04-17 02:20:36 +04:00
seq_printf ( m ,
2013-11-15 02:31:57 +04:00
" %08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu " ,
2009-01-08 15:04:47 +03:00
region - > vm_start ,
region - > vm_end ,
2005-04-17 02:20:36 +04: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 15:04:47 +03:00
( ( loff_t ) region - > vm_pgoff ) < < PAGE_SHIFT ,
2013-11-15 02:31:57 +04:00
MAJOR ( dev ) , MINOR ( dev ) , ino ) ;
2005-04-17 02:20:36 +04:00
if ( file ) {
2013-11-15 02:31:57 +04:00
seq_pad ( m , ' ' ) ;
2008-02-15 06:38:43 +03:00
seq_path ( m , & file - > f_path , " " ) ;
2005-04-17 02:20:36 +04:00
}
seq_putc ( m , ' \n ' ) ;
return 0 ;
}
2006-09-27 12:50:19 +04:00
/*
2009-01-08 15:04:47 +03:00
* display a list of all the REGIONs the kernel knows about
2009-01-13 01:35:47 +03:00
* - nommu kernels have a single flat list
2006-09-27 12:50:19 +04:00
*/
2009-01-08 15:04:47 +03:00
static int nommu_region_list_show ( struct seq_file * m , void * _p )
2006-09-27 12:50:19 +04:00
{
2009-01-08 15:04:47 +03:00
struct rb_node * p = _p ;
2006-09-27 12:50:19 +04:00
2009-01-08 15:04:47 +03:00
return nommu_region_show ( m , rb_entry ( p , struct vm_region , vm_rb ) ) ;
2006-09-27 12:50:19 +04:00
}
2009-01-08 15:04:47 +03:00
static void * nommu_region_list_start ( struct seq_file * m , loff_t * _pos )
2005-04-17 02:20:36 +04:00
{
2009-01-08 15:04:47 +03:00
struct rb_node * p ;
2005-04-17 02:20:36 +04:00
loff_t pos = * _pos ;
2009-01-08 15:04:47 +03:00
down_read ( & nommu_region_sem ) ;
2005-04-17 02:20:36 +04:00
2009-01-08 15:04:47 +03:00
for ( p = rb_first ( & nommu_region_tree ) ; p ; p = rb_next ( p ) )
if ( pos - - = = 0 )
return p ;
return NULL ;
2005-04-17 02:20:36 +04:00
}
2009-01-08 15:04:47 +03:00
static void nommu_region_list_stop ( struct seq_file * m , void * v )
2005-04-17 02:20:36 +04:00
{
2009-01-08 15:04:47 +03:00
up_read ( & nommu_region_sem ) ;
2005-04-17 02:20:36 +04:00
}
2009-01-08 15:04:47 +03:00
static void * nommu_region_list_next ( struct seq_file * m , void * v , loff_t * pos )
2005-04-17 02:20:36 +04:00
{
( * pos ) + + ;
return rb_next ( ( struct rb_node * ) v ) ;
}
2009-09-23 03:43:43 +04:00
static const struct seq_operations proc_nommu_region_list_seqop = {
2009-01-08 15:04:47 +03:00
. start = nommu_region_list_start ,
. next = nommu_region_list_next ,
. stop = nommu_region_list_stop ,
. show = nommu_region_list_show
2005-04-17 02:20:36 +04:00
} ;
2009-01-08 15:04:47 +03:00
static int proc_nommu_region_list_open ( struct inode * inode , struct file * file )
2005-04-17 02:20:36 +04:00
{
2009-01-08 15:04:47 +03:00
return seq_open ( file , & proc_nommu_region_list_seqop ) ;
2005-04-17 02:20:36 +04:00
}
2009-01-08 15:04:47 +03:00
static const struct file_operations proc_nommu_region_list_operations = {
. open = proc_nommu_region_list_open ,
2005-04-17 02:20:36 +04:00
. read = seq_read ,
. llseek = seq_lseek ,
. release = seq_release ,
} ;
static int __init proc_nommu_init ( void )
{
2009-01-08 15:04:47 +03:00
proc_create ( " maps " , S_IRUGO , NULL , & proc_nommu_region_list_operations ) ;
2005-04-17 02:20:36 +04:00
return 0 ;
}
2014-01-24 03:55:45 +04:00
fs_initcall ( proc_nommu_init ) ;