Missed half the support for __USE_ISOC11
[glibc.git] / libio / freopen64.c
blob6c4a20f9a38f3151dba216c7a584b3ee6442404f
1 /* Copyright (C) 1993,1995,1996,1997,1998,2000,2001,2002, 2003, 2008, 2011
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA.
20 As a special exception, if you link the code in this file with
21 files compiled with a GNU compiler to produce an executable,
22 that does not cause the resulting executable to be covered by
23 the GNU Lesser General Public License. This exception does not
24 however invalidate any other reasons why the executable file
25 might be covered by the GNU Lesser General Public License.
26 This exception applies to code released by its copyright holders
27 in files containing the exception. */
29 #include "libioP.h"
30 #include "stdio.h"
31 #include <fcntl.h>
32 #include <stdlib.h>
33 #include <unistd.h>
35 #include <fd_to_filename.h>
37 FILE *
38 freopen64 (filename, mode, fp)
39 const char* filename;
40 const char* mode;
41 FILE *fp;
43 #ifdef _G_OPEN64
44 FILE *result;
45 CHECK_FILE (fp, NULL);
46 if (!(fp->_flags & _IO_IS_FILEBUF))
47 return NULL;
48 _IO_acquire_lock (fp);
49 int fd = _IO_fileno (fp);
50 const char *gfilename = (filename == NULL && fd >= 0
51 ? fd_to_filename (fd) : filename);
52 fp->_flags2 |= _IO_FLAGS2_NOCLOSE;
53 INTUSE(_IO_file_close_it) (fp);
54 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps;
55 if (_IO_vtable_offset (fp) == 0 && fp->_wide_data != NULL)
56 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
57 result = INTUSE(_IO_file_fopen) (fp, gfilename, mode, 0);
58 fp->_flags2 &= ~_IO_FLAGS2_NOCLOSE;
59 if (result != NULL)
60 result = __fopen_maybe_mmap (result);
61 if (result != NULL)
63 /* unbound stream orientation */
64 result->_mode = 0;
66 if (fd != -1)
68 #ifdef O_CLOEXEC
69 # ifndef __ASSUME_DUP3
70 int newfd;
71 if (__have_dup3 < 0)
72 newfd = -1;
73 else
74 newfd =
75 # endif
76 dup3 (_IO_fileno (result), fd,
77 (result->_flags2 & _IO_FLAGS2_CLOEXEC) != 0
78 ? O_CLOEXEC : 0);
79 #else
80 # define newfd 1
81 #endif
83 #ifndef __ASSUME_DUP3
84 if (newfd < 0)
86 if (errno == ENOSYS)
87 __have_dup3 = -1;
89 __dup2 (_IO_fileno (result), fd);
90 if ((result->_flags2 & _IO_FLAGS2_CLOEXEC) != 0)
91 __fcntl (fd, F_SETFD, FD_CLOEXEC);
93 #endif
94 __close (_IO_fileno (result));
95 _IO_fileno (result) = fd;
98 else if (fd != -1)
99 __close (fd);
100 if (filename == NULL)
101 free ((char *) gfilename);
102 _IO_release_lock (fp);
103 return result;
104 #else
105 __set_errno (ENOSYS);
106 return NULL;
107 #endif