blob: 8d6ce813e45ec8ed880e1680d38fb409b4f63000 [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include "stdio_impl.h"
Rich Felker835f9f92012-11-08 16:39:41 -05002#include <stdlib.h>
Rich Felker835f9f92012-11-08 16:39:41 -05003#include <sys/ioctl.h>
4#include <fcntl.h>
5#include <errno.h>
6#include <string.h>
Rich Felker0b44a032011-02-12 00:22:29 -05007
8FILE *__fdopen(int fd, const char *mode)
9{
10 FILE *f;
Rich Felker2de85a92015-02-23 18:53:01 -050011 struct winsize wsz;
Rich Felker0b44a032011-02-12 00:22:29 -050012
13 /* Check for valid initial mode character */
Rich Felker3b43d102012-06-17 20:34:04 -040014 if (!strchr("rwa", *mode)) {
15 errno = EINVAL;
16 return 0;
17 }
Rich Felker0b44a032011-02-12 00:22:29 -050018
19 /* Allocate FILE+buffer or fail */
20 if (!(f=malloc(sizeof *f + UNGET + BUFSIZ))) return 0;
21
22 /* Zero-fill only the struct, not the buffer */
23 memset(f, 0, sizeof *f);
24
25 /* Impose mode restrictions */
Rich Felker8582a6e2012-09-29 18:09:34 -040026 if (!strchr(mode, '+')) f->flags = (*mode == 'r') ? F_NOWR : F_NORD;
27
28 /* Apply close-on-exec flag */
29 if (strchr(mode, 'e')) __syscall(SYS_fcntl, fd, F_SETFD, FD_CLOEXEC);
Rich Felker0b44a032011-02-12 00:22:29 -050030
31 /* Set append mode on fd if opened for append */
32 if (*mode == 'a') {
Rich Felkereb0e8fa2011-04-17 16:32:15 -040033 int flags = __syscall(SYS_fcntl, fd, F_GETFL);
Rich Felker758ab352014-02-07 01:16:53 -050034 if (!(flags & O_APPEND))
35 __syscall(SYS_fcntl, fd, F_SETFL, flags | O_APPEND);
Rich Felker3af2ede2014-02-07 00:57:50 -050036 f->flags |= F_APP;
Rich Felker0b44a032011-02-12 00:22:29 -050037 }
38
39 f->fd = fd;
40 f->buf = (unsigned char *)f + sizeof *f + UNGET;
41 f->buf_size = BUFSIZ;
42
43 /* Activate line buffered mode for terminals */
44 f->lbf = EOF;
Rich Felker2de85a92015-02-23 18:53:01 -050045 if (!(f->flags & F_NOWR) && !__syscall(SYS_ioctl, fd, TIOCGWINSZ, &wsz))
Rich Felker0b44a032011-02-12 00:22:29 -050046 f->lbf = '\n';
47
48 /* Initialize op ptrs. No problem if some are unneeded. */
49 f->read = __stdio_read;
50 f->write = __stdio_write;
51 f->seek = __stdio_seek;
52 f->close = __stdio_close;
53
Rich Felkerdba68bf2011-07-30 08:02:14 -040054 if (!libc.threaded) f->lock = -1;
55
Rich Felker0b44a032011-02-12 00:22:29 -050056 /* Add new FILE to open file list */
Rich Felker1b0cdc82015-06-16 07:11:19 +000057 return __ofl_add(f);
Rich Felker0b44a032011-02-12 00:22:29 -050058}
59
60weak_alias(__fdopen, fdopen);