Tagged Questions
Generally, a file descriptor is an index for an entry in a kernel-resident data structure containing the details of all open files. In POSIX this data structure is called a file descriptor table, and each process has its own file descriptor table. In Microsoft Windows terminology and in the context of the C standard I/O library, "file handle" is preferred.
16
votes
5answers
3k views
Getting the highest allocated file descriptor
Is there a portable way (POSIX) to get the highest allocated file descriptor number for the current process?
I know that there's a nice way to get the number on AIX, for example, but I'm looking for ...
9
votes
6answers
3k views
What's the difference between a file descriptor and file pointer?
I want to know the difference between a file descriptor and file pointer.
Also, in what scenario would you use one instead of the other?
8
votes
3answers
257 views
Why do operating systems limit file descriptors?
I ask this question after trying my best to research the best way to implement a message queue server. Why do operating systems put limits on the number of open file descriptors a process and the ...
7
votes
1answer
252 views
Is there a way to restore/recover nohup to see the output in the console?
I know chances are extremely low, but is there a way
to see what a nohup-ed process has been outputting recently?
I still have this process open but I've run it with redirecting all output to ...
7
votes
5answers
5k views
Check the open FD limit for a given process in Linux
I recently had a Linux process which "leaked" file descriptors: It opened them and didn't properly close some of them.
If I had monitored this, I could tell - in advance - that the process was ...
6
votes
3answers
64 views
sh: How do I avoid clobbering numbered file descriptors?
When I have
exec 3>>file # file descriptor 3 now points to file
[ $dryrun ] && exec 3>&1 # or possibly to stdout
echo "running">&3
exec 3>&- ...
6
votes
5answers
12k views
IOException: Too many open files
I'm trying to debug a file descriptor leak in a Java webapp running in Jetty 7.0.1 on Linux.
The app had been happily running for a month or so when requests started to fail due to too many open ...
6
votes
3answers
2k views
Duplicate file descriptor with its own file offset
How can one create a new file descriptor from an existing file descriptor such that the new descriptor does not share the same internal file structure/entry in the file table? Specifically attributes ...
5
votes
1answer
1k views
Error with resque-web: Couldn't get a file descriptor referring to the console
I'm trying start resque-web, but this error occurs:
[Sun Mar 06 05:27:48 +0000 2011] Starting 'resque-web'...
[Sun Mar 06 05:27:48 +0000 2011] trying port 8281...
Couldn't get a file descriptor ...
5
votes
2answers
160 views
How to execute a program from file descriptor?
I need to execute a file when I only know the descriptor. It is also possible that there are no links to the file so finding out the name somehow is not an option. All the execve(), execvp(), etc ...
5
votes
3answers
957 views
Closing/cleaning up “mixed” file descriptors / sockets
When I create a socket using accept() and make a FILE out of it using fdopen(), what do I have to do to clean everything up? Do I need to do fclose() on the FILE, shutdown() and close() on the socket, ...
4
votes
2answers
87 views
How can I implement a POSIX file descriptor in Python 3?
I'd like to write a class that can behave as a bona fide file descriptor. Its .fileno() method should return a file descriptor that provides all the services a POSIX system expects.
This is my first ...
4
votes
1answer
62 views
How to use a variable to indicate a file descriptor in bash?
I want to use a bash variable to indicate a file descriptor, like this:
id=6
file=a
exec $id<>$file
But the usage is wrong:
-bash: exec: 6: not found
So, how to use a variable to indicate ...
4
votes
2answers
281 views
Linux proc/pid/fd for stdout is 11?
Executing a script with stdout redirected to a file. So /proc/$$/fd/1 should point to that file (since stdout fileno is 1). However, actual fd of the file is 11. Please, explain, why.
Here is ...
4
votes
3answers
293 views
exec n<&m versus exec n>&m — based on Sobell's Linux book
In Mark Sobell's A Practical Guide to Linux Commands, Editors, and Shell Programming, Second Edition he writes (p. 432):
The <& token duplicates an input file
descriptor; >& ...
4
votes
5answers
659 views
Bash redirection with file descriptor or filename in variable
In my script I want to be able to write to either a file or to stdout based on certain conditions. I'm curious as to why this doesn't work in my script:
out=\&1
echo "bird" 1>$out
I tried ...
4
votes
3answers
2k views
How does linux file descriptor limits work?
I was told that my server refused to accept client network connections at a specific port could be due to the lack of file descriptors. I looked up what this is all about and read about it here: ...
4
votes
2answers
310 views
How to determine if a file descriptor is seekable?
Is there any portable way (on POSIX systems) to determine if a file descriptor is seekable? My thought is to use lseek(fd, 0, SEEK_CUR); and check if the return value is -1, but I'm uncertain if this ...
4
votes
5answers
4k views
Is there a file descriptor leak when using sockets on a linux platform?
If I open and close a socket by calling for instance
Socket s = new Socket( ... );
s.setReuseAddress(true);
in = s.getInputStream();
...
in.close();
s.close();
Linux states that this socket is ...
4
votes
5answers
7k views
How to close a file descriptor from another process in unix systems
You can use command lsof to get file descriptors for all running processes, but what I would like to do is to close some of those descriptors without being inside that process. This can be done on ...
3
votes
2answers
47 views
node and Error: EMFILE, too many open files
For some days I have searched for a working solution to an error
Error: EMFILE, too many open files
It seems that many people have the same problem. The usual answer involves increasing the number ...
3
votes
2answers
32 views
Locking in bash, again — how to prevent lock propagation?
A simple and seemingly reliable way to do locking under bash is:
exec 9>>lockfile
flock 9
However, bash notoriously propagates such a fd lock to all forked stuff including executed programs ...
3
votes
2answers
137 views
is HANDLE similar to file descriptor in Linux?
Is HANDLE similar to file descriptor in Linux? As far as I know, HANDLE is used for handling every resources on Windows, such as font, icons, files, devices..., which in essence is just a void pointer ...
3
votes
2answers
65 views
Which end of a pipe is for input and which for output?
I have been fighting with pipes and forks many days now. Recently I started suspecting that I use the ends of the pipes wrongly.
From the man pages:
pipe() creates a pipe.. ..pipefd[0] refers ...
3
votes
1answer
253 views
Does Node.js “new Socket” create a Unix file socket?
I've been working with node.js for the past couple of weeks and I need to implement the FAST-CGI protocol.
The problem is that when I create a UNIX socket (via "new Socket") I need to get the ...
3
votes
2answers
173 views
Check if file descriptor is valid
How do I check to see if a given file descriptor is valid? I want to write to fd=3 if it's available; otherwise, I want to write to stdout. I'm aware that I could wrap every os.write call with ...
3
votes
3answers
160 views
Writing to file descriptor
In the following snippet i am redirecting the output of the ls command to input of wc -l which works perfectly .Now i also want to redirect the output of ls command to a file named "beejoutput.txt" ...
3
votes
1answer
322 views
Writing to child process file descriptor
I have a program "Sample" which takes input both from stdin and a non-standard file descriptor (3 or 4) as shown below
int pfds[2];
pipe(pfds);
printf("%s","\nEnter input for stdin");
read(0, pO, ...
3
votes
1answer
1k views
How to write data to existing process's STDIN from external process?
I'm seeking for ways to write data to the existing process's STDIN from external processes, and found similar question How do you stream data into the STDIN of a program from different local/remote ...
3
votes
2answers
405 views
On Windows/mingw, what is the equivalent of `fcntl(fd, F_GETFL) | O_ACCMODE`?
I am compiling a program on Windows with Mingw. How can I get the access mode for an open file descriptor?
3
votes
3answers
2k views
Too many open files in python
I wrote kind of a test suite which is heavily file intensive. After some time (2h) I get an IOError: [Errno 24] Too many open files: '/tmp/tmpxsqYPm'. I double checked all file handles whether I close ...
3
votes
2answers
1k views
Is O_LARGEFILE needed just to write a large file?
Is the O_LARGEFILE flag needed if all that I want to do is write a large file (O_WRONLY) or append to a large file (O_APPEND | O_WRONLY)?
From a thread that I read titled "Cannot write >2gb index ...
3
votes
1answer
461 views
Which tools to use and how to find file descriptors leaking from Glassfish?
We release new code to production every week and Glassfish hasn't had any problems. This weekend we had to move racks at our hosting provider. There were not any code changes (they just powered off, ...
3
votes
1answer
151 views
Are there any standard input/ouput macros for read/write system calls in C?
All my searches returned nothing and I find it odd that there aren't any macros to use as file descriptors for read/write system calls for standard input and output instead of a 0 (stdout) and a 1 ...
2
votes
1answer
44 views
Is there any way to tell that a file descriptor value has been reused?
I've got an API that is called with a file descriptor as an argument, and it internally stores some state associated with the file descriptor. Then on subsequent calls with the same file descriptor ...
2
votes
1answer
60 views
Multiprocessing and sockets in Python
I am trying to make multiprocessing and socket programming work together, but, I am stuck at this point. Problem is that, I am getting this error:
File "multiprocesssockserv.py", line 11, in worker
...
2
votes
3answers
115 views
Can you explain this C code? (Create a deamon program)
I want to understand the following code well:
/* Become deamon + unstoppable and no zombies children (= no wait()) */
if(fork() != 0) return 0; /* Parent returns OK to shell */
...
2
votes
3answers
105 views
Whats is difference between file descriptor and file pointer? [closed]
Possible Duplicate:
What's the difference between a file descriptor and file pointer?
If I open file like this:
FILE *fp = fopen("mr32.txr","r");
then fp is file pointer or file ...
2
votes
3answers
161 views
UNIX File Descriptors Reuse
Though I'm reasonably used to UNIX and have programmed on it for a long time, I'm not used to file manipulation.
I know that 0/1/2 file descriptors are standard in, out, and error. I'm aware that ...
2
votes
1answer
70 views
lsof not giving o/p for bash built in read
When I do
find /
on a terminal and then do on another terminal
lsof -a -d 0-2 -c fin
I see o/p listed from execution of lsof command.
But when I do
echo hi ; read -t 30 hello
hi
on the same ...
2
votes
4answers
228 views
Find how many bytes are ready to be read from a FILE* or a file descriptor
Given a FILE* or a file descriptor, is there a standard way to tell how many bytes are ready to be read?
I can't use s=ftell(f),fseek(f,0,SEEK_END),e=ftell(f),fseek(f,s,SEEK_SET),e-s since the FILE* ...
2
votes
1answer
67 views
Strange descriptor closing in some linux programs
While stracing some linux daemons (eg. sendmail) I noticed that some of them will call close() on a number of descriptors (usually ranging from 3 to 255) right at the beginning. Is this being done on ...
2
votes
2answers
258 views
Manipulate File Descriptors for select.select in Python
I have an itching problem I know could be solved using many different ways, but I would still like to know if the following approach is possible in Python.
Suppose I have some socket I am constantly ...
2
votes
2answers
253 views
How to Access File Descriptor of Open File
Is there any way to access the file descriptor of a file opened in c++? So ...
#include <iostream>
#include <fstream>
using namespace std;
int main() {
ifstream inputFile( ...
2
votes
2answers
267 views
Question about STDIN STDOUT STDERR
I'm designing a MIPS simulator in c++ and my simplified OS must be able to run stat() occasionally (when a program being executed on my simulator requires an input or an output or something.)
The ...
2
votes
2answers
395 views
How can I detect when someone opens the slave side of a pty (pseudo-terminal) in Linux?
Having more than one process read from a serial device (/dev/ttyXX) makes it so that both processes can't get all of the data -- the data will be split between them in some way. I'd like to write a ...
2
votes
1answer
303 views
Writing to multiple file descriptors with a single function call
I had a use case for a group chat server where the server had to write a common string to all clients' socket. I had then addressed this by looping through the list of file descriptors and writing the ...
2
votes
4answers
125 views
can a process create extra shell-redirectable file descriptors?
Can a process 'foo' write to file descriptor 3, for example, in such a way that inside a bash shell one can do
foo 1>f1 2>f2 3>f3
and if so how would you write it (in C)?
2
votes
3answers
184 views
specifying file descriptor number?
My understanding was that one could not control the file descriptor (integer) assigned by the OS when opening a new file using open(). How then is it possible in a bash shell to assign a specific ...
2
votes
2answers
712 views
How to check the number of open connections in node.js?
I have a machine running node.js (v0.1.32) with a tcp server (tcp.createServer) and a http server (http.createServer). The http server is hit by long polling requests (lasting 50 sec each) from a ...