summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/stdio/__fopen_rb_ca.c
blob: 192050b00606031afa188c76f99918ae09237625 (plain)
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
#include "stdio_impl.h"
#include <fcntl.h>
#include <string.h>

FILE *__fopen_rb_ca(const char *filename, FILE *f, unsigned char *buf, size_t len)
{
	memset(f, 0, sizeof *f);

#ifdef __wasilibc_unmodified_upstream // WASI has no sys_open
	f->fd = sys_open(filename, O_RDONLY|O_CLOEXEC);
#else
	f->fd = open(filename, O_RDONLY|O_CLOEXEC);
#endif
	if (f->fd < 0) return 0;
#ifdef __wasilibc_unmodified_upstream // WASI has no syscall
	__syscall(SYS_fcntl, f->fd, F_SETFD, FD_CLOEXEC);
#else
	fcntl(f->fd, F_SETFD, FD_CLOEXEC);
#endif

	f->flags = F_NOWR | F_PERM;
	f->buf = buf + UNGET;
	f->buf_size = len - UNGET;
	f->read = __stdio_read;
	f->seek = __stdio_seek;
	f->close = __stdio_close;
#if defined(__wasilibc_unmodified_upstream) || defined(_REENTRANT)
	f->lock = -1;
#endif

	return f;
}