summaryrefslogtreecommitdiff
path: root/src/stdio/freopen.c
blob: 5b4f126dbddbcf4c9c11c5d177e48345e197be29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#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. */

FILE *freopen(const char *restrict filename, const char *restrict mode, FILE *restrict f)
{
	int fl;
	FILE *f2;

	fflush(f);

	if (!filename) {
		f2 = fopen("/dev/null", mode);
		if (!f2) goto fail;
		fl = __syscall(SYS_fcntl, f2->fd, F_GETFL, 0);
		if (syscall(SYS_fcntl, f->fd, F_SETFL, fl) < 0)
			goto fail2;
	} else {
		f2 = fopen(filename, mode);
		if (!f2) goto fail;
		if (syscall(SYS_dup2, f2->fd, f->fd) < 0)
			goto fail2;
	}

	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);