Update copyright notices with scripts/update-copyrights
[glibc.git] / mach / devstream.c
blob66ad9193d5a5006b3c2117285bccfa626f9ce1b5
1 /* stdio on a Mach device port.
2 Translates \n to \r\n on output, echos and translates \r to \n on input.
3 Copyright (C) 1992-2014 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 #include <stdio.h>
21 #include <mach.h>
22 #include <device/device.h>
23 #include <errno.h>
24 #include <string.h>
27 static ssize_t
28 devstream_write (void *cookie, const char *buffer, size_t n)
30 const device_t dev = (device_t) cookie;
32 int write_some (const char *p, size_t to_write)
34 kern_return_t err;
35 int wrote;
36 int thiswrite;
38 while (to_write > 0)
40 thiswrite = to_write;
41 if (thiswrite > IO_INBAND_MAX)
42 thiswrite = IO_INBAND_MAX;
44 if (err = device_write_inband (dev, 0, 0, p, thiswrite, &wrote))
46 errno = err;
47 return 0;
49 p += wrote;
50 to_write -= wrote;
52 return 1;
54 int write_crlf (void)
56 static const char crlf[] = "\r\n";
57 return write_some (crlf, 2);
60 /* Search for newlines (LFs) in the buffer. */
62 const char *start = buffer, *p;
63 while ((p = memchr (start, '\n', n)) != NULL)
65 /* Found one. Write out through the preceding character,
66 and then write a CR/LF pair. */
68 if ((p > start && !write_some (start, p - start))
69 || !write_crlf ())
70 return (start - buffer) ?: -1;
72 n -= p + 1 - start;
73 start = p + 1;
76 /* Write the remainder of the buffer. */
77 if (write_some (start, n))
78 start += n;
79 return (start - buffer) ?: -1;
82 static ssize_t
83 devstream_read (void *cookie, char *buffer, size_t to_read)
85 const device_t dev = (device_t) cookie;
87 kern_return_t err;
88 mach_msg_type_number_t nread = to_read;
90 err = device_read_inband (dev, 0, 0, to_read, buffer, &nread);
91 if (err)
93 errno = err;
94 return -1;
97 /* Translate CR to LF. */
99 char *p;
100 for (p = memchr (buffer, '\r', nread); p;
101 p = memchr (p + 1, '\r', (buffer + nread) - (p + 1)))
102 *p = '\n';
105 /* Echo back what we read. */
106 (void) devstream_write (cookie, buffer, nread);
108 return nread;
111 static int
112 dealloc_ref (void *cookie)
114 if (mach_port_deallocate (mach_task_self (), (mach_port_t) cookie))
116 errno = EINVAL;
117 return -1;
119 return 0;
122 FILE *
123 mach_open_devstream (mach_port_t dev, const char *mode)
125 FILE *stream;
127 if (mach_port_mod_refs (mach_task_self (), dev, MACH_PORT_RIGHT_SEND, 1))
129 errno = EINVAL;
130 return NULL;
133 stream = fopencookie ((void *) dev, mode,
134 (cookie_io_functions_t) { write: devstream_write,
135 read: devstream_read,
136 close: dealloc_ref });
137 if (stream == NULL)
139 mach_port_deallocate (mach_task_self (), dev);
140 return NULL;
143 return stream;