"Gallegan" should be "Galician"
[glibc.git] / libio / freopen64.c
blob7e1beeff33bca3822a2c4e1258796baff53137e2
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, see
17 <http://www.gnu.org/licenses/>.
19 As a special exception, if you link the code in this file with
20 files compiled with a GNU compiler to produce an executable,
21 that does not cause the resulting executable to be covered by
22 the GNU Lesser General Public License. This exception does not
23 however invalidate any other reasons why the executable file
24 might be covered by the GNU Lesser General Public License.
25 This exception applies to code released by its copyright holders
26 in files containing the exception. */
28 #include "libioP.h"
29 #include "stdio.h"
30 #include <fcntl.h>
31 #include <stdlib.h>
32 #include <unistd.h>
34 #include <fd_to_filename.h>
36 FILE *
37 freopen64 (filename, mode, fp)
38 const char* filename;
39 const char* mode;
40 FILE *fp;
42 #ifdef _G_OPEN64
43 FILE *result;
44 CHECK_FILE (fp, NULL);
45 if (!(fp->_flags & _IO_IS_FILEBUF))
46 return NULL;
47 _IO_acquire_lock (fp);
48 int fd = _IO_fileno (fp);
49 const char *gfilename = (filename == NULL && fd >= 0
50 ? fd_to_filename (fd) : filename);
51 fp->_flags2 |= _IO_FLAGS2_NOCLOSE;
52 INTUSE(_IO_file_close_it) (fp);
53 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps;
54 if (_IO_vtable_offset (fp) == 0 && fp->_wide_data != NULL)
55 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
56 result = INTUSE(_IO_file_fopen) (fp, gfilename, mode, 0);
57 fp->_flags2 &= ~_IO_FLAGS2_NOCLOSE;
58 if (result != NULL)
59 result = __fopen_maybe_mmap (result);
60 if (result != NULL)
62 /* unbound stream orientation */
63 result->_mode = 0;
65 if (fd != -1)
67 #ifdef O_CLOEXEC
68 # ifndef __ASSUME_DUP3
69 int newfd;
70 if (__have_dup3 < 0)
71 newfd = -1;
72 else
73 newfd =
74 # endif
75 dup3 (_IO_fileno (result), fd,
76 (result->_flags2 & _IO_FLAGS2_CLOEXEC) != 0
77 ? O_CLOEXEC : 0);
78 #else
79 # define newfd 1
80 #endif
82 #ifndef __ASSUME_DUP3
83 if (newfd < 0)
85 if (errno == ENOSYS)
86 __have_dup3 = -1;
88 __dup2 (_IO_fileno (result), fd);
89 if ((result->_flags2 & _IO_FLAGS2_CLOEXEC) != 0)
90 __fcntl (fd, F_SETFD, FD_CLOEXEC);
92 #endif
93 __close (_IO_fileno (result));
94 _IO_fileno (result) = fd;
97 else if (fd != -1)
98 __close (fd);
99 if (filename == NULL)
100 free ((char *) gfilename);
101 _IO_release_lock (fp);
102 return result;
103 #else
104 __set_errno (ENOSYS);
105 return NULL;
106 #endif