Well, this is going to be a short one...
I want to parse /proc/net/tcp/, but is it safe? I mean, how to open and read it and not be afraid, that some other process (or the OS) will be changing it in the same time?
feedback
|
|
Although the files in All the kernel does is print its internal state into its own memory using a The kernel handles these calls in an entirely different way than for regular files, which could mean that the entire snapshot of the data you will read could be ready at the time you My advice is to take a look at the implementation of a proc file in your particular Unix flavour. This is really an implementation issue (as is the format and the contents of the output) that is not governed by a standard. The simplest example would be the implementation of the | |||||||||||||
feedback
|
|
In general, no. (So most of the answers here are wrong.) It might be safe, depending on what property you want. But it's easy to end up with bugs in your code if you assume too much about the consistency of a file in For example:
The other piece that keeps Most files in In the case of | |||||
feedback
|
|
/proc is a virtual file system : in fact, it just gives a convenient view of the kernel internals. It's definitely safe to read it (that's why it's here) but it's risky on the long term, as the internal of these virtual files may evolve with newer version of kernel. EDIT More information available in proc documentation in Linux kernel doc, chapter 1.4 Networking I can't find if the information how the information evolve over time. I thought it was frozen on open, but can't have a definite answer. EDIT2 According to Sco doc (not linux, but I'm pretty sure all flavours of *nix behave like that)
| |||||||||||||||||||||
feedback
|
|
The procfs API in the Linux kernel provides an interface to make sure that reads return consistent data. Read the comments in That being said, it is of course up to the implementation of a specific proc file to use this interface correctly to make sure its returned data is consistent. So, to answer your question: no, the kernel does not guarantee consistency of the proc files during a read but it provides the means for the implementations of those files to provide consistency. | |||||||||
feedback
|
|
I have the source for Linux 2.6.27.8 handy since I'm doing driver development at the moment on an embedded ARM target. The file ...
which outputs
in function Some drivers (such as mine) implement the proc_read function with a single I tested that with a program using a 64K read buffer but it results in a kernel space buffer of 3072 bytes in my system for proc_read to return data. Multiple calls with advancing pointers are needed to get more than that much text returned. I don't know what the right way to make the returned data consistent when more than one i/o is needed. Certainly each entry in | |||||||||
feedback
|
|
Short of unknown bugs, there are no race conditions in | |||||||||||||||
feedback
|
|
When you read from a /proc file, the kernel is calling a function which has been registered in advance to be the "read" function for that proc file. See the Therefore, the safety of the proc read is only as safe as the function the kernel calls to satisfy the read request. If that function properly locks all data it touches and returns to you in a buffer, then it is completely safe to read using that function. Since proc files like the one used for satisfying read requests to /proc/net/tcp have been around for a while and have undergone scrupulous review, they are about as safe as you could ask for. In fact, many common Linux utilities rely on reading from the proc filesystem and formatting the output in a different way. (Off the top of my head, I think 'ps' and 'netstat' do this). As always, you don't have to take my word for it; you can look at the source to calm your fears. The following documentation from proc_net_tcp.txt tells you where the "read" functions for /proc/net/tcp live, so you can look at the actual code that is run when you read from that proc file and verify for yourself that there are no locking hazards.
| |||
|
feedback
|