2005-07-03 06:43:07 +00:00
|
|
|
/* Invoke open, but return either a desired file descriptor or -1.
|
|
|
|
|
|
2011-01-01 11:37:32 +01:00
|
|
|
Copyright (C) 2005-2006, 2008-2011 Free Software Foundation, Inc.
|
2005-07-03 06:43:07 +00:00
|
|
|
|
2007-07-23 14:35:58 +02:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
2005-07-03 06:43:07 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-23 14:35:58 +02:00
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
2005-07-03 06:43:07 +00:00
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-07-23 14:35:58 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2005-07-03 06:43:07 +00:00
|
|
|
|
|
|
|
|
/* Written by Paul Eggert. */
|
|
|
|
|
|
2006-08-26 06:55:57 +00:00
|
|
|
#include <config.h>
|
2005-10-30 21:44:31 +00:00
|
|
|
|
2005-07-03 06:43:07 +00:00
|
|
|
#include "fd-reopen.h"
|
|
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <fcntl.h>
|
2005-07-03 09:07:22 +00:00
|
|
|
#include <unistd.h>
|
2005-07-03 06:43:07 +00:00
|
|
|
|
|
|
|
|
/* Open a file to a particular file descriptor. This is like standard
|
|
|
|
|
`open', except it always returns DESIRED_FD if successful. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
fd_reopen (int desired_fd, char const *file, int flags, mode_t mode)
|
|
|
|
|
{
|
2008-03-31 08:37:36 +02:00
|
|
|
int fd = open (file, flags, mode);
|
2005-07-03 06:43:07 +00:00
|
|
|
|
|
|
|
|
if (fd == desired_fd || fd < 0)
|
|
|
|
|
return fd;
|
|
|
|
|
else
|
|
|
|
|
{
|
2008-03-31 08:37:36 +02:00
|
|
|
int fd2 = dup2 (fd, desired_fd);
|
2005-07-03 06:43:07 +00:00
|
|
|
int saved_errno = errno;
|
|
|
|
|
close (fd);
|
|
|
|
|
errno = saved_errno;
|
|
|
|
|
return fd2;
|
|
|
|
|
}
|
|
|
|
|
}
|