Tagged Questions
The proc filesystem is a virtual filesystem through which kernels of Unix-like operating systems, including Linux, expose process and kernel information.
8
votes
3answers
536 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 ...
7
votes
7answers
7k views
sscanf in Python
I'm looking for an equivalent to sscanf() in Python. I want to parse /proc/net/* files, in C I could do something like this:
int matches = sscanf(
buffer,
"%*d: %64[0-9A-Fa-f]:%X ...
6
votes
3answers
486 views
Linux c++: apis vs /proc files?
Im working on an app to collect and send various bits of system info (partition space/free, laptop battery info, etc). Im not having much success getting this information in the form of direct c++ ...
4
votes
1answer
301 views
Is it safe to use lseek() when reading from Proc-FS files second time
Is it safe to use lseek(fd,0) and then read(fd,buf) for /proc/stat file instead of reopening it to get updated contents of this file next time?
And what does the mmap() call after opening this file ...
4
votes
2answers
232 views
howto create a filesystem like /proc?
I would like to create a pseudo filesystem like /proc to access an applications configuration.
How could i achieve this or where could i find some introductory documentation about it?
4
votes
7answers
2k views
Unix Proc Directory
I am trying to find the virtual file that contains the current users id. I was told that I could find it in the proc directory, but not quite sure which file.
3
votes
4answers
53 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 ...
3
votes
1answer
102 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 ...
3
votes
3answers
696 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 ...
3
votes
2answers
402 views
Shared library load address under Linux
I have a major doubt regarding the shared library. What I studied is that the virtual address of a library that will be shared by different processes will be same for all these processes. But I tried ...
3
votes
4answers
8k views
Entries in /proc/meminfo
I can make sense of most of the information contained in /proc/meminfo like total memory, buffers, cache etc. Could you tell me what do the less obvious ones like the ones listed below mean?
...
3
votes
2answers
2k views
How to create proc entry under /proc/driver?
I want to create a file under a /proc/driver directory. I would like to use a macro like proc_root_driver (or something else provided) rather than use "driver/MODULE_NAME" explicitly. I use ...
2
votes
2answers
295 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 %) ...
2
votes
1answer
468 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 ...
2
votes
1answer
583 views
Find out how long a process is sleeping in Linux?
Basically I want to have all processes that have been sleeping for more than one hour.
I know that there is etime in ps, but sadly it shows the overall lifetime.
How can this be done under linux ...
2
votes
3answers
663 views
Monitoring mount point changes via /proc/mounts
According proc manual, one can monitor for mount point changes in linux system by opening "/proc/mounts", and adding the file descriptor to read fd_set in select() call.
Following piece of code works ...
2
votes
2answers
678 views
Reading a child process's /proc/pid/mem file from the parent
In the program below, I am trying to cause the following to happen:
Process A assigns a value to a stack variable a.
Process A (parent) creates process B (child) with PID child_pid.
Process B calls ...
2
votes
2answers
593 views
How to read/write from/to a linux /proc file from kernel space?
I am writing a program consisting of user program and a kernel module. The kernel module needs to gather data that it will then "send" to the user program. This has to be done via a /proc file. Now, I ...
2
votes
1answer
979 views
Understanding the counters in /proc/[pid]/io
I'm creating a plugin for Munin to monitor stats of named processes. One of the sources of information would be /proc/[pid]/io. But I have a hard time finding out what the difference is between ...
2
votes
2answers
756 views
How can i match each /proc/net/tcp entry to each opened socket?
I'm trying to parse socket info from /proc/net/tcp and while I can identify some fields, such as memory addresses or send queue use, I can't find how each entry is bound to its socket descriptor. ...
2
votes
1answer
1k views
How to interpret the contents of /proc/bus/pci/devices?
The first few fields of 'cat /proc/bus/pci/devices' are understandable.
Field 1 - BusDevFunc
Field 2 - Vendor Id + Device Id
Field 3 - Interrupt Line
Field 4 - BAR 0
and the rest of the BAR ...
2
votes
3answers
765 views
What makes a pthread defunct?
i'm working with a multi-threaded program (using pthreads) that currently create a background thread (PTHREAD_DETACHED) and then invokes pthread_exit(0). My problem is that the process is then listed ...
1
vote
1answer
39 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 ...
1
vote
2answers
111 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.
...
1
vote
2answers
160 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
0answers
179 views
sysfs or procfs info about raid status for dmraid
I am looking into getting raid status from dmraid. I know that it can be done using dmraid -s and dmraid -s -s. Though, I am looking for something similar to what mdadm does, where the user is able to ...
1
vote
2answers
157 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 ...
1
vote
1answer
105 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.
1
vote
1answer
397 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 ...
1
vote
1answer
180 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 ...
1
vote
1answer
445 views
mmap on /proc/pid/mem
Has anybody succeeded in mmap'ing a /proc/pid/mem file with Linux kernel 2.6? I am getting an ENODEV (No such device) error. My call looks like this:
char * map = mmap(NULL, PAGE_SIZE, PROT_READ, ...
1
vote
3answers
239 views
Access /proc fs variable from other parts of Kernel code
I'm trying to get a user-level program to communicate with the kernel via /proc.
I followed the instructions on tldp, and was successfully able to create a custom proc file, load it dynamically with ...
1
vote
4answers
513 views
How to find all read-write memory address of a process in Linux/UNIX with C/C++ language?
Through /proc file system , it's probable to read memory mappings with /proc/PID_PROCESS/maps , but is there any native APIs that dedicated for this function in C/C++ ?
i.e to find out memory address ...
1
vote
1answer
733 views
Understanding /proc/sys/vm/lowmem_reserve_ratio
I am not able to understand the meaning of the variable "lowmem_reserve_ratio" by reading the explanation from Documentation/sysctl/vm.txt.
I have also tried to google it but all the explanations ...
1
vote
1answer
157 views
Ubuntu proc_root_driver missing from <linux/proc_fs.h>
I am trying to compile a kernel module in Ubuntu 10.04 with kernel 2.6.35-22 and it is complaining about proc_root_driver missing. I did some searching and I found that is supposed to define this ...
1
vote
1answer
121 views
How to set watchpoints via procfs in Linux?
I'm trying to build a debugger-like program
under Linux (Ubuntu) and I've run into some problems.
From what I've heard, the /proc vfs provides mechanisms to
create watchpoints, but I can't seem to ...
1
vote
1answer
301 views
Accessing the proc_dir_entry from proc_fops.open?
I writing a linux kernel module that does some work with /proc... I'm trying to use the new seq methods for returning the data for /proc... Anyhow, after I call proc_create_data() I have a ...
1
vote
2answers
946 views
parsing proc/pid/cmdline to get function parameters
I'm trying to extract the parameter with which an app was called by using the data inside cmdline.
If I start an application instance like this:
myapp 1 2
and then cat the cmdline of myapp I ...
1
vote
3answers
285 views
Linux kernel code that uses procfs: what should I be aware of?
I have a very nice idea for a kernel patch, and I want to conduct some research and see code examples before I shape my idea.
I'm looking for interesting code examples that would demonstrate advanced ...
1
vote
1answer
118 views
What would be the simplest way to interface custom hardware with one input to have switch somewhere in /proc?
I have a device that takes low current 3-12v input signal to do it's magic and I would like to interface it to my linux box. What kind of options do I have on this? It would be great to have some ...
1
vote
4answers
2k views
Linux kernel /proc FIFO/pipe
I'm currently trying to create a kernel module that will produce data based on kernel events and push them to a file. After reading that this is bad (and I agree), I decided it would make more sense ...
0
votes
2answers
88 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
106 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 !
0
votes
0answers
83 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 ...
0
votes
1answer
61 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 ...
0
votes
1answer
36 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 ...
0
votes
0answers
118 views
How to get thread blocked times from procfs
I am trying to convert code from QNX to Linux and in doing so I need to replace all the devctl calls in QNX. For this, I need to get the same info as I was getting from devctl before, by reading the ...
0
votes
1answer
250 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 ...
0
votes
2answers
154 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
139 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 ?