]> git.ipfire.org Git - thirdparty/glibc.git/blame - libio/freopen.c
Replace FSF snail mail address with URLs.
[thirdparty/glibc.git] / libio / freopen.c
CommitLineData
94b7cc37 1/* Copyright (C) 1993,95,96,97,98,2000,2001,2002,2003,2008,2011
15a686af 2 Free Software Foundation, Inc.
41bdb6e2 3 This file is part of the GNU C Library.
96aa2d94 4
41bdb6e2
AJ
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.
96aa2d94 9
41bdb6e2
AJ
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
40a55d20 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
96aa2d94 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>.
96aa2d94 18
41bdb6e2
AJ
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. */
96aa2d94
RM
27
28#include "libioP.h"
29#include "stdio.h"
94b7cc37 30#include <fcntl.h>
1a35b7fd 31#include <stdlib.h>
94b7cc37 32#include <unistd.h>
96aa2d94 33
16710d58 34#include <shlib-compat.h>
c44a663d 35#include <fd_to_filename.h>
16710d58 36
96aa2d94 37FILE*
6973fc01 38freopen (filename, mode, fp)
96aa2d94
RM
39 const char* filename;
40 const char* mode;
41 FILE* fp;
42{
7c713e28 43 FILE *result;
96aa2d94
RM
44 CHECK_FILE (fp, NULL);
45 if (!(fp->_flags & _IO_IS_FILEBUF))
46 return NULL;
0261d33f 47 _IO_acquire_lock (fp);
94b7cc37
UD
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;
16710d58 52#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
6973fc01 53 if (&_IO_stdin_used == NULL)
81c64d40
UD
54 {
55 /* If the shared C library is used by the application binary which
56 was linked against the older version of libio, we just use the
57 older one even for internal use to avoid trouble since a pointer
58 to the old libio may be passed into shared C library and wind
59 up here. */
60 _IO_old_file_close_it (fp);
61 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_old_file_jumps;
94b7cc37 62 result = _IO_old_file_fopen (fp, gfilename, mode);
81c64d40 63 }
6973fc01
UD
64 else
65#endif
81c64d40
UD
66 {
67 INTUSE(_IO_file_close_it) (fp);
15a686af 68 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps;
bbdef797 69 if (_IO_vtable_offset (fp) == 0 && fp->_wide_data != NULL)
15a686af 70 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
94b7cc37 71 result = INTUSE(_IO_file_fopen) (fp, gfilename, mode, 1);
81c64d40
UD
72 if (result != NULL)
73 result = __fopen_maybe_mmap (result);
74 }
94b7cc37 75 fp->_flags2 &= ~_IO_FLAGS2_NOCLOSE;
3b1de3ba 76 if (result != NULL)
c44a663d 77 {
94b7cc37
UD
78 /* unbound stream orientation */
79 result->_mode = 0;
80
81 if (fd != -1)
82 {
83#ifdef O_CLOEXEC
84# ifndef __ASSUME_DUP3
85 int newfd;
86 if (__have_dup3 < 0)
87 newfd = -1;
88 else
89 newfd =
90# endif
91 dup3 (_IO_fileno (result), fd,
92 (result->_flags2 & _IO_FLAGS2_CLOEXEC) != 0
93 ? O_CLOEXEC : 0);
94#else
95# define newfd 1
96#endif
97
98#ifndef __ASSUME_DUP3
99 if (newfd < 0)
100 {
101 if (errno == ENOSYS)
102 __have_dup3 = -1;
103
ed690b2f 104 __dup2 (_IO_fileno (result), fd);
94b7cc37
UD
105 if ((result->_flags2 & _IO_FLAGS2_CLOEXEC) != 0)
106 __fcntl (fd, F_SETFD, FD_CLOEXEC);
107 }
108#endif
109 __close (_IO_fileno (result));
110 _IO_fileno (result) = fd;
111 }
c44a663d 112 }
94b7cc37
UD
113 else if (fd != -1)
114 __close (fd);
115 if (filename == NULL)
116 free ((char *) gfilename);
117
0261d33f 118 _IO_release_lock (fp);
7c713e28 119 return result;
96aa2d94 120}