musl/src/stdio/freopen.c

50 lines
1.1 KiB
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include "stdio_impl.h"
/* The basic idea of this implementation is to open a new FILE,
* hack the necessary parts of the new FILE into the old one, then
* close the new FILE. */
/* Locking is not necessary because, in the event of failure, the stream
* passed to freopen is invalid as soon as freopen is called. */
int __dup3(int, int, int);
FILE *freopen(const char *restrict filename, const char *restrict mode, FILE *restrict f)
2011-02-12 00:22:29 -05:00
{
int fl = __fmodeflags(mode);
2011-02-12 00:22:29 -05:00
FILE *f2;
fflush(f);
if (!filename) {
if (fl&O_CLOEXEC)
__syscall(SYS_fcntl, f->fd, F_SETFD, FD_CLOEXEC);
fl &= ~(O_CREAT|O_EXCL|O_CLOEXEC);
if (syscall(SYS_fcntl, f->fd, F_SETFL, fl) < 0)
goto fail;
return f;
2011-02-12 00:22:29 -05:00
} else {
f2 = fopen(filename, mode);
if (!f2) goto fail;
if (f2->fd == f->fd) f2->fd = -1; /* avoid closing in fclose */
else if (__dup3(f2->fd, f->fd, fl&O_CLOEXEC)<0) goto fail2;
2011-02-12 00:22:29 -05:00
}
f->flags = (f->flags & F_PERM) | f2->flags;
f->read = f2->read;
f->write = f2->write;
f->seek = f2->seek;
f->close = f2->close;
fclose(f2);
return f;
fail2:
fclose(f2);
fail:
fclose(f);
return NULL;
}
LFS64(freopen);