3 #include <linux/file.h>
4 #include <linux/fdtable.h>
5 #include <linux/fs_struct.h>
6 #include <linux/mount.h>
7 #include <linux/ptrace.h>
8 #include <linux/seq_file.h>
12 * Logic: we've got two memory sums for each process, "shared", and
13 * "non-shared". Shared memory may get counted more than once, for
14 * each process that owns it. Non-shared memory is counted
17 void task_mem(struct seq_file
*m
, struct mm_struct
*mm
)
19 struct vm_area_struct
*vma
;
20 struct vm_region
*region
;
22 unsigned long bytes
= 0, sbytes
= 0, slack
= 0, size
;
24 down_read(&mm
->mmap_sem
);
25 for (p
= rb_first(&mm
->mm_rb
); p
; p
= rb_next(p
)) {
26 vma
= rb_entry(p
, struct vm_area_struct
, vm_rb
);
28 bytes
+= kobjsize(vma
);
30 region
= vma
->vm_region
;
32 size
= kobjsize(region
);
33 size
+= region
->vm_end
- region
->vm_start
;
35 size
= vma
->vm_end
- vma
->vm_start
;
38 if (atomic_read(&mm
->mm_count
) > 1 ||
39 vma
->vm_flags
& VM_MAYSHARE
) {
44 slack
= region
->vm_end
- vma
->vm_end
;
48 if (atomic_read(&mm
->mm_count
) > 1)
49 sbytes
+= kobjsize(mm
);
51 bytes
+= kobjsize(mm
);
53 if (current
->fs
&& current
->fs
->users
> 1)
54 sbytes
+= kobjsize(current
->fs
);
56 bytes
+= kobjsize(current
->fs
);
58 if (current
->files
&& atomic_read(¤t
->files
->count
) > 1)
59 sbytes
+= kobjsize(current
->files
);
61 bytes
+= kobjsize(current
->files
);
63 if (current
->sighand
&& atomic_read(¤t
->sighand
->count
) > 1)
64 sbytes
+= kobjsize(current
->sighand
);
66 bytes
+= kobjsize(current
->sighand
);
68 bytes
+= kobjsize(current
); /* includes kernel stack */
72 "Slack:\t%8lu bytes\n"
73 "Shared:\t%8lu bytes\n",
74 bytes
, slack
, sbytes
);
76 up_read(&mm
->mmap_sem
);
79 unsigned long task_vsize(struct mm_struct
*mm
)
81 struct vm_area_struct
*vma
;
83 unsigned long vsize
= 0;
85 down_read(&mm
->mmap_sem
);
86 for (p
= rb_first(&mm
->mm_rb
); p
; p
= rb_next(p
)) {
87 vma
= rb_entry(p
, struct vm_area_struct
, vm_rb
);
88 vsize
+= vma
->vm_end
- vma
->vm_start
;
90 up_read(&mm
->mmap_sem
);
94 int task_statm(struct mm_struct
*mm
, int *shared
, int *text
,
95 int *data
, int *resident
)
97 struct vm_area_struct
*vma
;
98 struct vm_region
*region
;
100 int size
= kobjsize(mm
);
102 down_read(&mm
->mmap_sem
);
103 for (p
= rb_first(&mm
->mm_rb
); p
; p
= rb_next(p
)) {
104 vma
= rb_entry(p
, struct vm_area_struct
, vm_rb
);
105 size
+= kobjsize(vma
);
106 region
= vma
->vm_region
;
108 size
+= kobjsize(region
);
109 size
+= region
->vm_end
- region
->vm_start
;
113 *text
= (PAGE_ALIGN(mm
->end_code
) - (mm
->start_code
& PAGE_MASK
))
115 *data
= (PAGE_ALIGN(mm
->start_stack
) - (mm
->start_data
& PAGE_MASK
))
117 up_read(&mm
->mmap_sem
);
119 size
+= *text
+ *data
;
125 * display a single VMA to a sequenced file
127 static int nommu_vma_show(struct seq_file
*m
, struct vm_area_struct
*vma
)
129 unsigned long ino
= 0;
133 unsigned long long pgoff
= 0;
135 flags
= vma
->vm_flags
;
139 struct inode
*inode
= vma
->vm_file
->f_path
.dentry
->d_inode
;
140 dev
= inode
->i_sb
->s_dev
;
142 pgoff
= (loff_t
)vma
->vm_pgoff
<< PAGE_SHIFT
;
146 "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu %n",
149 flags
& VM_READ
? 'r' : '-',
150 flags
& VM_WRITE
? 'w' : '-',
151 flags
& VM_EXEC
? 'x' : '-',
152 flags
& VM_MAYSHARE
? flags
& VM_SHARED
? 'S' : 's' : 'p',
154 MAJOR(dev
), MINOR(dev
), ino
, &len
);
157 len
= 25 + sizeof(void *) * 6 - len
;
160 seq_printf(m
, "%*c", len
, ' ');
161 seq_path(m
, &file
->f_path
, "");
169 * display mapping lines for a particular process's /proc/pid/maps
171 static int show_map(struct seq_file
*m
, void *_p
)
173 struct rb_node
*p
= _p
;
175 return nommu_vma_show(m
, rb_entry(p
, struct vm_area_struct
, vm_rb
));
178 static void *m_start(struct seq_file
*m
, loff_t
*pos
)
180 struct proc_maps_private
*priv
= m
->private;
181 struct mm_struct
*mm
;
185 /* pin the task and mm whilst we play with them */
186 priv
->task
= get_pid_task(priv
->pid
, PIDTYPE_PID
);
190 mm
= mm_for_maps(priv
->task
);
192 put_task_struct(priv
->task
);
196 down_read(&mm
->mmap_sem
);
198 /* start from the Nth VMA */
199 for (p
= rb_first(&mm
->mm_rb
); p
; p
= rb_next(p
))
205 static void m_stop(struct seq_file
*m
, void *_vml
)
207 struct proc_maps_private
*priv
= m
->private;
210 struct mm_struct
*mm
= priv
->task
->mm
;
211 up_read(&mm
->mmap_sem
);
213 put_task_struct(priv
->task
);
217 static void *m_next(struct seq_file
*m
, void *_p
, loff_t
*pos
)
219 struct rb_node
*p
= _p
;
222 return p
? rb_next(p
) : NULL
;
225 static const struct seq_operations proc_pid_maps_ops
= {
232 static int maps_open(struct inode
*inode
, struct file
*file
)
234 struct proc_maps_private
*priv
;
237 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
239 priv
->pid
= proc_pid(inode
);
240 ret
= seq_open(file
, &proc_pid_maps_ops
);
242 struct seq_file
*m
= file
->private_data
;
251 const struct file_operations proc_maps_operations
= {
255 .release
= seq_release_private
,