1993-12-24 10:32:00 +00:00
|
|
|
/*
|
|
|
|
* Public domain dup2() lookalike
|
|
|
|
* by Curtis Jackson @ AT&T Technologies, Burlington, NC
|
|
|
|
* electronic address: burl!rcj
|
|
|
|
*
|
|
|
|
* dup2 performs the following functions:
|
|
|
|
*
|
|
|
|
* Check to make sure that fd1 is a valid open file descriptor.
|
|
|
|
* Check to see if fd2 is already open; if so, close it.
|
|
|
|
* Duplicate fd1 onto fd2; checking to make sure fd2 is a valid fd.
|
|
|
|
* Return fd2 if all went well; return BADEXIT otherwise.
|
|
|
|
*/
|
|
|
|
|
2023-09-02 14:50:18 +00:00
|
|
|
#include <errno.h> // errno
|
|
|
|
#include <fcntl.h> // fcntl()
|
|
|
|
#include <unistd.h> // close()
|
1993-12-24 10:32:00 +00:00
|
|
|
|
|
|
|
#define BADEXIT -1
|
|
|
|
|
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
dup2(int fd1, int fd2)
|
1993-12-24 10:32:00 +00:00
|
|
|
{
|
2017-11-28 15:56:10 +00:00
|
|
|
if (fd1 != fd2) {
|
2022-07-26 09:16:51 +00:00
|
|
|
#ifdef F_DUPFD
|
2017-11-28 15:56:10 +00:00
|
|
|
if (fcntl(fd1, F_GETFL) < 0)
|
|
|
|
return BADEXIT;
|
|
|
|
if (fcntl(fd2, F_GETFL) >= 0)
|
|
|
|
close(fd2);
|
|
|
|
if (fcntl(fd1, F_DUPFD, fd2) < 0)
|
|
|
|
return BADEXIT;
|
2022-07-26 09:16:51 +00:00
|
|
|
#else
|
|
|
|
errno = ENOTSUP;
|
|
|
|
return BADEXIT;
|
|
|
|
#endif
|
2017-11-28 15:56:10 +00:00
|
|
|
}
|
|
|
|
return fd2;
|
1993-12-24 10:32:00 +00:00
|
|
|
}
|