read maps from /proc/pid/

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat read maps from /proc/pid/
# 1  
Old 10-29-2007
read maps from /proc/pid/

hi,
i hav a query abt reading the contents of /proc/pid/maps file.is there any system apis or functions available to get the data from dat file and parse according to my need. i need name of the .so,Create date of the .so file.,Location of .so file etc.

please provide a good source.
yes i hav RHEL 4.

sanjay
# 2  
Old 10-29-2007
This post is related in some way to another post by you regarding the file descriptors. I don't know about any APIs that you can use, but you could just read the file one line at a time.

Also, according to the man page of /proc, in all kernels above 2.0, the last field in each line will contain the name of the file that is mapped to the particular region (if the second to last field is non-zero). So you can easily get the files that are mapped by that process. However, regarding create time of the library, file inodes in unix do not hold any information regarding file creation times, so you won't be able to get that.

Again, note that you will need root if you want to read this file for all processes on the system.
# 3  
Old 10-30-2007
re:

yes, that i got. then i want only module(i mean .so file) path and module(.so file name) name from map.how can i get these two things thru a program?

thanks 4 the replay..
sanjya

Quote:
Originally Posted by blowtorch
This post is related in some way to another post by you regarding the file descriptors. I don't know about any APIs that you can use, but you could just read the file one line at a time.

Also, according to the man page of /proc, in all kernels above 2.0, the last field in each line will contain the name of the file that is mapped to the particular region (if the second to last field is non-zero). So you can easily get the files that are mapped by that process. However, regarding create time of the library, file inodes in unix do not hold any information regarding file creation times, so you won't be able to get that.

Again, note that you will need root if you want to read this file for all processes on the system.
# 4  
Old 10-30-2007
Quote:
Originally Posted by sanjaykhuntia
yes, that i got. then i want only module(i mean .so file) path and module(.so file name) name from map.how can i get these two things thru a program?
Seeing that this is a flat file, you can just open(2), read(2) line-by-line, check if the line contains a '.so', and close(2). There's your program.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

/proc/pid/maps

I think the libc.so is shared between processes, because it is a shared library and OS is engaged for saving memory. But, below, the maps of bash, shows r-xp and r--p rw-p attributes to libc.so which mean private memory space. Can anybody explain this for me? :)cat /proc/$$/maps... (4 Replies)
Discussion started by: vistastar
4 Replies

2. Shell Programming and Scripting

Closing open file descriptors from /proc/pid/fd

Hi guys, i need to write a shell script that will close file descriptors from /proc/pid/fd will calling exec 4<&- solve the problem ? thanks in advance :) (15 Replies)
Discussion started by: alpha_romeo
15 Replies

3. Shell Programming and Scripting

does the pid of background process show in /proc?

Hi all, I'm reading <advanced bash scripting> and there is a example to kill a background process in a limited time,as shown below: #! /bin/bash #set -n TIMEOUT=$1 count=0 hanging_jobs & { while ((count < TIMEOUT));do eval ' && ((count = TIMEOUT))' ((count++)) sleep 1... (6 Replies)
Discussion started by: homeboy
6 Replies

4. UNIX for Dummies Questions & Answers

_/proc/stat vs /proc/uptime

Hi, I am trying to calculate the CPU Usage by getting the difference between the idle time reported by /proc/stat at 2 different intervals. Now the 4th entry in the first line of /proc/stat will give me the 'idle time'. But I also came across /proc/uptime that gives me 2 entries : 1st one as the... (0 Replies)
Discussion started by: coderd
0 Replies

5. UNIX for Dummies Questions & Answers

Need to get pid of a process and have to store the pid in a variable

Hi, I need to get the pid of a process and have to store the pid in a variable and i want to use this value(pid) of the variable for some process. Please can anyone tell me how to get the pid of a process and store it in a variable. please help me on this. Thanks in advance, Amudha (7 Replies)
Discussion started by: samudha
7 Replies

6. UNIX for Dummies Questions & Answers

Session PID & socket connection pid

1. If I use an software application(which connects to the database in the server) in my local pc, how many PID should be registered? Would there be PID for the session and another PID for socket connection? 2. I noticed (through netstat) that when I logged in using the my software application,... (1 Reply)
Discussion started by: pcx26
1 Replies

7. Programming

printing ppid,child pid,pid

question: for the below program i just printed the value for pid, child pid and parent pid why does it give me 6 values? i assume ppid is 28086 but can't figure out why there are 5 values printed instead of just two! can someone comment on that! #include<stdio.h> #define DIM 8 int... (3 Replies)
Discussion started by: a25khan
3 Replies

8. UNIX for Advanced & Expert Users

NIS Maps

Hello.. I stink at NIS! :) Im having a problem with NIS on solaris 2.X. / SPARC I have some maps that are exported to all clients in the domain. Now I setup a new server and add it as a nis client to the domain. On the NIS server there is a auto_direct map that mounts /usr/local . This is... (4 Replies)
Discussion started by: s93366
4 Replies
Login or Register to Ask a Question