The proc filesystem is a virtual filesystem through which kernels of Unix-like operating systems, including Linux, expose process and kernel information.
0
votes
2answers
43 views
Create ProcFS entry in /proc/net
I try to create an entry inside /proc/net from a kernel module, like this:
struct file *filp = filp_open("/proc/net", O_RDONLY, 0);
struct proc_dir_entry *parent = PDE(filp->f_dentry->d_inode);
...
0
votes
1answer
45 views
Fetching the TCP RTT in Linux
I need to fetch the RTT for TCP flow.
I have looked into the proc file system but not able to get the RTT value of TCP .If any one having any idea regarding it that, in which file RTT would be stored ...
1
vote
1answer
61 views
Android Strange bluetooth issue either in API or i m missing something
My problem is that i am not able to find the class of device and device services of my own bluetooth device. Though i am able to find the Connection State, MAC address and other info using the
...
0
votes
0answers
26 views
Auditing procfs
I want to keep track on important system changes on GNU/Linux boxes, like disabling PaX, enabling traffic forwarding, ICMP redirects, changing printk verbosity level and so on. At general all these ...
1
vote
0answers
24 views
setenv/clearenv + procfs environ
Is it possible to get relevant information from /proc/pid/environ file if process modified its environment? My tests show that setenv/putenv/clearenv don't update environ file. However, in bash its ...
0
votes
1answer
131 views
what is clock-delta in /proc/pid/sched?
main (xxxxx, #threads: xxxxx)
---------------------------------------------------------
se.exec_start : xxxx
se.vruntime : ...
4
votes
1answer
295 views
Programmatically drop Linux cache as non-root user
For testing purposes, I can drop cached memory by writing to the drop_caches file in Linux under the procfs. I can only do this as root. This is on embedded Linux so there is no sudo.
sync; echo 3 ...
0
votes
2answers
63 views
Which libraries appear in /proc/$PID/pmaps?
On Linux you can inspect /proc/$PID/pmaps to see the libraries loaded by a particular program, and a program can open /proc/self/pmaps to examine the libraries it itself has loaded.
I know pmaps will ...
1
vote
1answer
127 views
How to access kernel parameters in kernel space
This is one of my lab assignments: I have to create an proc entry here: /proc/sys/kernel/ and I have to write a system call to manipulate a user space variable for different values of the proc entry I ...
1
vote
2answers
227 views
Finding a process ID given a socket and inode in Python 3
/proc/net/tcp gives me a local address, port, and inode number for a socket (0.0.0.0:5432 and 9289, for example).
I'd like to find the PID for a specific process, given the above information.
It's ...
2
votes
0answers
144 views
embedded linux: first offset in /proc/pid/maps wrong?
Details of my endeavour below, they are only partly relevant to my question:
In a map from /proc/pid/maps on an embedded linux (arm) with kernel version 2.6.37.6, the offset of the first line (the ...
0
votes
0answers
90 views
How to analyse data segment of a running program
I have a program that uses a lot of memory. By having a look in procfs in the status file, I can noticed that the data area is around 19Mb big!
root@coconut:~# cat /proc/1484/status
...
VmPeak: ...
0
votes
1answer
497 views
Knowing the process status using procf/<pid>/status
I am working on solaris Unix OS.
I know that if there is a process running on unix there is a file called /proc//status which has a field called state in it.
i took an example of the shell process ...
2
votes
1answer
118 views
Current value of process' environment variable
I was wondering if there is a way to set an environment variable from a bash process and read it from another.
As environment variables' values are local to processes (besides the inheritance), one ...
0
votes
2answers
30 views
finding out thread information
I have a list of processes running in my system and the threads belonging to these processes. I want to know if there is anyway to get the complete information about a specific thread, for example: ...
1
vote
0answers
139 views
Linux Kernel Procfs multiple read/writes
How does the Linux kernel handle multiple reads/writes to procfs? For instance, if two processes write to procfs at once, is one process queued (i.e. a kernel trap actually blocks one of the ...
0
votes
1answer
102 views
how to print contents of proc/meminfo in a kernel module?
I am currently working on making a kernel module that would print certain contents of proc/meminfo (SwapTotal to be specific) into the kernel using printk. Unfortunately all the guides on the net ...
3
votes
1answer
350 views
Does RCHAR include READ_BYTES (proc/<pid>/io)?
I read proc/<pid>/io to measure the IO-activity of SQL-queries, where <pid> is the PID of the database server. I read the values before and after each query to compute the difference and ...
1
vote
1answer
48 views
Where do the write operations come from?
I do some experiments on databases. In this case, every query selects everything from one of the tables of the TPCH Benchmark (select * from table;). Before and after each query I parse ...
2
votes
2answers
3k views
How do VmRSS and resident set size match?
I parse data from /proc/[pid]/statm to get a clue about memory usage of a certain process. man proc states that resident set size(measured in 'pages') is the same as VmRSS (KB??) in ...
3
votes
1answer
173 views
Am I too fast to count jiffies?
I do some local experiments on different database systems. I collect (sum up) CPU information from /proc/status before and after I execute a query. The difference should tell me the amount of jiffies ...
1
vote
0answers
317 views
Memory usage when running valgrind
I'm currently trying to measure memory usage of some application on Linux (Ubuntu 11.04). I have analyzed data from /proc file system and used valgrind.
Data from /proc indicates that application is ...
1
vote
1answer
806 views
copy_from_user warning on size not being provably correct?
I encountered a warning produced when compiling my kernel module that I can't get to work around.
First take a look at this simplified code:
#define READ_CHUNK 100u
static int _procfs_write(struct ...
1
vote
1answer
421 views
Is copy_to_user necessary with procfs?
I always thought copy_to_user was necessary when the kernel writes to users via procfs.
I forgot to do it once though (and I used snprintf) and everything was working fine. Now that I noticed it, I ...
8
votes
3answers
441 views
How to parse large amount of data passed to kernel module through /proc file?
Edit: I have found seq_file that eases writing a lot of data from kernel to user-space. What I am looking for is the opposite; an API that facilitates reading a lot of data (more than one page) from ...
0
votes
1answer
833 views
Idle time of a process in Linux
I need to calculate CPU usage (user mode, system mode, idle time) of a process in Linux.
I am able to calculate usage in user and system mode using utime and stime values from /proc/PID/stat, but I ...
3
votes
2answers
217 views
How can I read large data from proc file?
I'm trying to write a kernel module which writes some data to a proc file. I'm trying to write something like 5000 characters but when I say $>cat /proc/myentry I can read only 1000 characters.
int ...
4
votes
4answers
303 views
Export program state to procfs?
Can I create any file mappings in procfs to reflect the internal state of my program?
For example,
main.c:
char *message;
...
Assume the pid is 1200, is it possible to create a transient file ...
4
votes
1answer
328 views
How to get executable shared library list from C++?
I'd like to programmatically get a list of the shared libraries linked by my binary on Linux and Solaris. Right now I shell out to pmap (I can't use ldd on the binary because it won't include dlopen'd ...
0
votes
2answers
285 views
Linux app sends UDP without socket
fellow coders.
I'm monitoring my outgoing traffic using libnetfilter_queue module and an iptables rule
ipatbles -I OUTPUT 1 -p all -j NFQUEUE --queue-num 11220
A certain app, called Jitsi (which ...
0
votes
1answer
507 views
How to get jobid from procfs in Linux
I would like to get the jobid from procfs in Linux. I see only Pid , Ppid in the /proc//status files. But I needed jobid too. Please let me know if there is a way to get the info.
Thanks !
1
vote
2answers
330 views
Linux procfs inode number changed whill process was running
I'm working on security software(SW) for Linux.
One thing that our SW does on is that when some process is started, the SW stat()s the process's /proc/ entry and remembers the entry's inode number.
...
2
votes
1answer
325 views
Accessing /proc
I'm currently developing an application which needs a lot of system and process information, some of which is only available through /proc, and I have some general questions about accessing the ...
3
votes
2answers
2k views
Calculating user, nice, sys, idle, iowait, irq and sirq from /proc/stat
/proc/stat shows ticks for user, nice, sys, idle, iowait, irq and sirq like this:
cpu 6214713 286 1216407 121074379 260283 253506 197368 0 0 0
How can I calculate the individual utilizations (in %) ...
0
votes
1answer
243 views
reading and writing from a file in linux kernel
I'm writing a patch for VFS FAT implmentation on kernel 3.0
I want to add posix attributes to FAT files that are created in linux.
to achive that, I must save a file that contains all the relevant ...
12
votes
5answers
5k views
Getting Linux process resource usage (cpu,disk,network)
I want to use the /proc to find the resource usage of a particular process every second. The resources include cputime, disk usage and network usage. I looked at /proc/pid/stat , but I am not sure ...
0
votes
1answer
41 views
Avoid related processes in process listing
How can I generate a process listing, that does not include the current process, its shell and any related processes in the process group, and the SSHD process generated to handle the session?
Does ...
4
votes
1answer
3k views
List of possible internal socket statuses from /proc
I would like to know the possible values of st column in /proc/net/tcp. I think the st column equates to STATE column from netstat(8) or ss(8).
I have managed to identify three codes:
sl ...
0
votes
1answer
1k views
How do I find the owning PID of a socket using only /proc
How do I (or does netstat-p or ss -p) find the owning PID from /proc/net/tcp output?
Given output below:
sl local_address rem_address st tx_queue rx_queue tr tm->when retrnsmt uid timeout ...
2
votes
2answers
609 views
Is there anything like /proc for windows
I'm Curious about 2 things,
What is the closest equivalent to /proc that ships with windows
Are there any products which add a proc like filesystem to windows?
1
vote
2answers
383 views
PCI device driver exporting information to /proc file system
I was asked this question in an interview. You are writing a PCI driver and you want to export the hardware-related information to the /proc filesystem. The interesting thing is that I searched the ...
102
votes
7answers
5k views
Is it safe to parse a /proc/ file?
I want to parse /proc/net/tcp/, but is it safe?
How should I open and read files from /proc/ and not be afraid, that some other process (or the OS itself) will be changing it in the same time?
1
vote
1answer
186 views
/proc directory script
I'm looking for a ruby script that accesses the /proc directory and saves the process ID and command line (cmdline) information in a file.
2
votes
1answer
911 views
How often are utime and stime fields in /proc/<pid>/task/<tid>/stat updated?
When I repeatedly check the values in /proc/<pid>/task/<tid>/stat on a Linux with kernel version > 2.6.2, where <pid> is a process ID, and <tid> is a thread ID, I noticed that ...
0
votes
2answers
345 views
Not seeing /proc/cpuinfo on FreeBSD 7.3 [closed]
I'm using FreeBSD 7.3 and the proc file system is not mounted by default. So I tried the following command to mount proc file system.
sudo mount -t procfs proc /proc
Now the /proc directory shows ...
0
votes
1answer
334 views
could not find /proc/self/maps
I'm using FreeBSD 7.3 (64 bit). When I try the command "cat /proc/self/maps", I get an error as, "cat: /proc/self/maps: No such file or directory". What should I do to resolve this ?
0
votes
1answer
1k views
Ordering of /proc/mounts and /etc/mtab
Does anyone know whether /proc/mounts is guaranteed to be in the order in which devices are mounted?
For instance:
[root@machine proc]# cat /proc/mounts
rootfs / rootfs rw 0 0
/dev/root / ext3 ...
0
votes
2answers
299 views
Unmounting proc file system
As far as I know proc file system is a virtual file system. Is there any way to unmount the proc file system and even if I do that what will be the consequences after that.
7
votes
5answers
4k views
Get local network interface addresses using only proc?
How can I obtain the (IPv4) addresses for all network interfaces using only proc? After some extensive investigation I've discovered the following:
ifconfig makes use of SIOCGIFADDR, which requires ...
2
votes
2answers
449 views
How can I get system time from a proc file?
How can I get system time from a proc file? I know we can get system time from some commands such as date, and also can write some code based on time API. But I really need to use a simple proc file ...

