Unix system file tables

Alfred picture Alfred · Jan 7, 2013 · Viewed 24.1k times · Source

I am confused about Unix system file tables.

  • When two or more processes open a file for reading, does the system file table create separate entries for each process or a single entry?

  • If a single entry is created for multiple processes opening the same file, will their file offsets also be the same?

  • If process 1 opens file1.txt for reading and process 2 opens the same file file1.txt for writing, will the system file table create one or two entries?

Answer

Jim Balter picture Jim Balter · Jan 7, 2013

There are three "system file tables": There is a file descriptor table that maps file descriptors (small integers) to entries in the open file table. Each entry in the open file table contains (among other things) a file offset and a pointer to the in-memory inode table. Here's a picture: enter image description here (source: rich from www.cs.ucsb.edu now on archive.org)

So there is neither just one file table entry for an open file nor is there just one per process ... there is one per open() call, and it is shared if the file descriptor is dup()ed or fork()ed.

Answering your questions:

  1. When two or more processes open a file for reading, there's an entry in the open file table per open. There is even an entry per open if one process opens the file multiple times.

  2. A single entry is not created in the open file table for different processes opening same file (but there is just one entry in the in-memory inode table).

  3. If file1.txt is opened twice, in the same or two different processes, there are two different open file table entries (but just one entry in the in-memory inode table).