Unit 2 LP Dup and Dup2 Systemcalls
Unit 2 LP Dup and Dup2 Systemcalls
int main()
{
// open() returns a file descriptor file_desc to a
// the file "dup.txt" here"
if(file_desc < 0)
printf("Error opening the file\n");
return 0;
}
Explanation: The open() returns a file descriptor file_desc to the file named “dup.txt”.
file_desc can be used to do some file operation with file “dup.txt”. After using the dup()
system call, a copy of file_desc is created copy_desc. This copy can also be used to do
some file operation with the same file “dup.txt”. After two write operations one with
file_desc and another with copy_desc, same file is edited i.e. “dup.txt”.
Before running the code, Let The file “dup.txt” before the write operation be as shown
below:
After running the C program shown above, the file “dup.txt” is as shown below:
dup2()
The dup2() system call is similar to dup() but the basic difference between them is that
instead of using the lowest-numbered unused file descriptor, it uses the descriptor number
specified by the user.
Syntax:
int dup2(int oldfd, int newfd);
Important points:
Include the header file unistd.h for using dup() and dup2() system call.
If the descriptor newfd was previously open, it is silently closed before being reused.
If oldfd is not a valid file descriptor, then the call fails, and newfd is not closed.
If oldfd is a valid file descriptor, and newfd has the same value as oldfd, then dup2()
does
nothing, and returns newfd.
A tricky use of dup2() system call: As in dup2(), in place of newfd any file descriptor can be
put. Below is a C implementation in which the file descriptor of Standard output (stdout) is
used. This will lead all the printf() statements to be written in the file referred by the old
file descriptor.
// CPP program to illustrate dup2()
#include<stdlib.h>
#include<unistd.h>
#include<stdio.h>
#include<fcntl.h>
int main()
{
int file_desc = open("tricky.txt",O_WRONLY | O_APPEND);
return 0;
}
This can be seen in the figure shown below:
Let The file “tricky.txt” before the dup2() operation be as shown below:
After running the C program shown above, the file “tricky.txt” is as shown below: