[b861b58] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2005 Martin Decky
|
---|
[b861b58] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
[b2951e2] | 27 | */
|
---|
| 28 |
|
---|
[fadd381] | 29 | /** @addtogroup libc
|
---|
[b2951e2] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
[2595dab] | 33 | */
|
---|
[b861b58] | 34 |
|
---|
[cc6f688] | 35 | #include <stdio.h>
|
---|
[2595dab] | 36 | #include <unistd.h>
|
---|
| 37 | #include <fcntl.h>
|
---|
[ef8bcc6] | 38 | #include <assert.h>
|
---|
[19f857a] | 39 | #include <str.h>
|
---|
[56fa418] | 40 | #include <errno.h>
|
---|
[2595dab] | 41 | #include <bool.h>
|
---|
| 42 | #include <malloc.h>
|
---|
[64d2b10] | 43 | #include <async.h>
|
---|
[2595dab] | 44 | #include <io/klog.h>
|
---|
| 45 | #include <vfs/vfs.h>
|
---|
[79ae36dd] | 46 | #include <vfs/vfs_sess.h>
|
---|
[15f3c3f] | 47 | #include <ipc/loc.h>
|
---|
[d9c8c81] | 48 | #include <adt/list.h>
|
---|
[47b7006] | 49 | #include "../private/io.h"
|
---|
[79ae36dd] | 50 | #include "../private/stdio.h"
|
---|
[b861b58] | 51 |
|
---|
[facebd56] | 52 | static void _ffillbuf(FILE *stream);
|
---|
[ef8bcc6] | 53 | static void _fflushbuf(FILE *stream);
|
---|
| 54 |
|
---|
[a68f737] | 55 | static FILE stdin_null = {
|
---|
[2595dab] | 56 | .fd = -1,
|
---|
| 57 | .error = true,
|
---|
| 58 | .eof = true,
|
---|
| 59 | .klog = false,
|
---|
[79ae36dd] | 60 | .sess = NULL,
|
---|
[ef8bcc6] | 61 | .btype = _IONBF,
|
---|
| 62 | .buf = NULL,
|
---|
| 63 | .buf_size = 0,
|
---|
[facebd56] | 64 | .buf_head = NULL,
|
---|
| 65 | .buf_tail = NULL,
|
---|
| 66 | .buf_state = _bs_empty
|
---|
[2595dab] | 67 | };
|
---|
[350514c] | 68 |
|
---|
[a68f737] | 69 | static FILE stdout_klog = {
|
---|
[2595dab] | 70 | .fd = -1,
|
---|
| 71 | .error = false,
|
---|
| 72 | .eof = false,
|
---|
| 73 | .klog = true,
|
---|
[79ae36dd] | 74 | .sess = NULL,
|
---|
[ef8bcc6] | 75 | .btype = _IOLBF,
|
---|
| 76 | .buf = NULL,
|
---|
| 77 | .buf_size = BUFSIZ,
|
---|
[facebd56] | 78 | .buf_head = NULL,
|
---|
| 79 | .buf_tail = NULL,
|
---|
| 80 | .buf_state = _bs_empty
|
---|
[2595dab] | 81 | };
|
---|
| 82 |
|
---|
[a68f737] | 83 | static FILE stderr_klog = {
|
---|
| 84 | .fd = -1,
|
---|
| 85 | .error = false,
|
---|
| 86 | .eof = false,
|
---|
| 87 | .klog = true,
|
---|
[79ae36dd] | 88 | .sess = NULL,
|
---|
[ef8bcc6] | 89 | .btype = _IONBF,
|
---|
| 90 | .buf = NULL,
|
---|
| 91 | .buf_size = 0,
|
---|
[facebd56] | 92 | .buf_head = NULL,
|
---|
| 93 | .buf_tail = NULL,
|
---|
| 94 | .buf_state = _bs_empty
|
---|
[a68f737] | 95 | };
|
---|
| 96 |
|
---|
| 97 | FILE *stdin = NULL;
|
---|
| 98 | FILE *stdout = NULL;
|
---|
| 99 | FILE *stderr = NULL;
|
---|
| 100 |
|
---|
| 101 | static LIST_INITIALIZE(files);
|
---|
| 102 |
|
---|
[7171760] | 103 | void __stdio_init(int filc)
|
---|
[a68f737] | 104 | {
|
---|
| 105 | if (filc > 0) {
|
---|
[76d6169] | 106 | stdin = fdopen(0, "r");
|
---|
[a68f737] | 107 | } else {
|
---|
| 108 | stdin = &stdin_null;
|
---|
| 109 | list_append(&stdin->link, &files);
|
---|
| 110 | }
|
---|
| 111 |
|
---|
| 112 | if (filc > 1) {
|
---|
[76d6169] | 113 | stdout = fdopen(1, "w");
|
---|
[a68f737] | 114 | } else {
|
---|
| 115 | stdout = &stdout_klog;
|
---|
| 116 | list_append(&stdout->link, &files);
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | if (filc > 2) {
|
---|
[76d6169] | 120 | stderr = fdopen(2, "w");
|
---|
[a68f737] | 121 | } else {
|
---|
| 122 | stderr = &stderr_klog;
|
---|
| 123 | list_append(&stderr->link, &files);
|
---|
| 124 | }
|
---|
| 125 | }
|
---|
| 126 |
|
---|
[db24058] | 127 | void __stdio_done(void)
|
---|
[a68f737] | 128 | {
|
---|
[b72efe8] | 129 | while (!list_empty(&files)) {
|
---|
| 130 | FILE *file = list_get_instance(list_first(&files), FILE, link);
|
---|
[a68f737] | 131 | fclose(file);
|
---|
| 132 | }
|
---|
| 133 | }
|
---|
[2595dab] | 134 |
|
---|
| 135 | static bool parse_mode(const char *mode, int *flags)
|
---|
[b861b58] | 136 | {
|
---|
[2595dab] | 137 | /* Parse mode except first character. */
|
---|
| 138 | const char *mp = mode;
|
---|
| 139 | if (*mp++ == 0) {
|
---|
| 140 | errno = EINVAL;
|
---|
| 141 | return false;
|
---|
| 142 | }
|
---|
[cc6f688] | 143 |
|
---|
[2595dab] | 144 | if ((*mp == 'b') || (*mp == 't'))
|
---|
| 145 | mp++;
|
---|
[c9857c6] | 146 |
|
---|
[2595dab] | 147 | bool plus;
|
---|
| 148 | if (*mp == '+') {
|
---|
| 149 | mp++;
|
---|
| 150 | plus = true;
|
---|
| 151 | } else
|
---|
| 152 | plus = false;
|
---|
[566f4cfb] | 153 |
|
---|
[2595dab] | 154 | if (*mp != 0) {
|
---|
| 155 | errno = EINVAL;
|
---|
| 156 | return false;
|
---|
[350514c] | 157 | }
|
---|
| 158 |
|
---|
[2595dab] | 159 | /* Parse first character of mode and determine flags for open(). */
|
---|
| 160 | switch (mode[0]) {
|
---|
| 161 | case 'r':
|
---|
| 162 | *flags = plus ? O_RDWR : O_RDONLY;
|
---|
| 163 | break;
|
---|
| 164 | case 'w':
|
---|
| 165 | *flags = (O_TRUNC | O_CREAT) | (plus ? O_RDWR : O_WRONLY);
|
---|
| 166 | break;
|
---|
| 167 | case 'a':
|
---|
| 168 | /* TODO: a+ must read from beginning, append to the end. */
|
---|
| 169 | if (plus) {
|
---|
| 170 | errno = ENOTSUP;
|
---|
| 171 | return false;
|
---|
| 172 | }
|
---|
| 173 | *flags = (O_APPEND | O_CREAT) | (plus ? O_RDWR : O_WRONLY);
|
---|
[82582e4] | 174 | break;
|
---|
[2595dab] | 175 | default:
|
---|
| 176 | errno = EINVAL;
|
---|
| 177 | return false;
|
---|
| 178 | }
|
---|
| 179 |
|
---|
| 180 | return true;
|
---|
[cc6f688] | 181 | }
|
---|
[b861b58] | 182 |
|
---|
[ef8bcc6] | 183 | /** Set stream buffer. */
|
---|
| 184 | void setvbuf(FILE *stream, void *buf, int mode, size_t size)
|
---|
| 185 | {
|
---|
| 186 | stream->btype = mode;
|
---|
| 187 | stream->buf = buf;
|
---|
| 188 | stream->buf_size = size;
|
---|
| 189 | stream->buf_head = stream->buf;
|
---|
[facebd56] | 190 | stream->buf_tail = stream->buf;
|
---|
| 191 | stream->buf_state = _bs_empty;
|
---|
[ef8bcc6] | 192 | }
|
---|
| 193 |
|
---|
[bfd247f] | 194 | static void _setvbuf(FILE *stream)
|
---|
| 195 | {
|
---|
| 196 | /* FIXME: Use more complex rules for setting buffering options. */
|
---|
| 197 |
|
---|
| 198 | switch (stream->fd) {
|
---|
| 199 | case 1:
|
---|
| 200 | setvbuf(stream, NULL, _IOLBF, BUFSIZ);
|
---|
| 201 | break;
|
---|
| 202 | case 0:
|
---|
| 203 | case 2:
|
---|
| 204 | setvbuf(stream, NULL, _IONBF, 0);
|
---|
| 205 | break;
|
---|
| 206 | default:
|
---|
| 207 | setvbuf(stream, NULL, _IOFBF, BUFSIZ);
|
---|
| 208 | }
|
---|
| 209 | }
|
---|
| 210 |
|
---|
[ef8bcc6] | 211 | /** Allocate stream buffer. */
|
---|
| 212 | static int _fallocbuf(FILE *stream)
|
---|
| 213 | {
|
---|
| 214 | assert(stream->buf == NULL);
|
---|
[bfd247f] | 215 |
|
---|
[ef8bcc6] | 216 | stream->buf = malloc(stream->buf_size);
|
---|
| 217 | if (stream->buf == NULL) {
|
---|
| 218 | errno = ENOMEM;
|
---|
| 219 | return -1;
|
---|
| 220 | }
|
---|
[bfd247f] | 221 |
|
---|
[ef8bcc6] | 222 | stream->buf_head = stream->buf;
|
---|
[facebd56] | 223 | stream->buf_tail = stream->buf;
|
---|
[ef8bcc6] | 224 | return 0;
|
---|
| 225 | }
|
---|
| 226 |
|
---|
[2595dab] | 227 | /** Open a stream.
|
---|
| 228 | *
|
---|
| 229 | * @param path Path of the file to open.
|
---|
| 230 | * @param mode Mode string, (r|w|a)[b|t][+].
|
---|
| 231 | *
|
---|
[4e2cf8b] | 232 | */
|
---|
[2595dab] | 233 | FILE *fopen(const char *path, const char *mode)
|
---|
[4e2cf8b] | 234 | {
|
---|
[2595dab] | 235 | int flags;
|
---|
| 236 | if (!parse_mode(mode, &flags))
|
---|
| 237 | return NULL;
|
---|
[4e2cf8b] | 238 |
|
---|
[2595dab] | 239 | /* Open file. */
|
---|
| 240 | FILE *stream = malloc(sizeof(FILE));
|
---|
| 241 | if (stream == NULL) {
|
---|
| 242 | errno = ENOMEM;
|
---|
| 243 | return NULL;
|
---|
| 244 | }
|
---|
| 245 |
|
---|
| 246 | stream->fd = open(path, flags, 0666);
|
---|
| 247 | if (stream->fd < 0) {
|
---|
| 248 | /* errno was set by open() */
|
---|
| 249 | free(stream);
|
---|
| 250 | return NULL;
|
---|
| 251 | }
|
---|
| 252 |
|
---|
| 253 | stream->error = false;
|
---|
| 254 | stream->eof = false;
|
---|
| 255 | stream->klog = false;
|
---|
[79ae36dd] | 256 | stream->sess = NULL;
|
---|
[facebd56] | 257 | stream->need_sync = false;
|
---|
[bfd247f] | 258 | _setvbuf(stream);
|
---|
[2595dab] | 259 |
|
---|
[a68f737] | 260 | list_append(&stream->link, &files);
|
---|
| 261 |
|
---|
[2595dab] | 262 | return stream;
|
---|
| 263 | }
|
---|
| 264 |
|
---|
[080ad7f] | 265 | FILE *fdopen(int fd, const char *mode)
|
---|
| 266 | {
|
---|
| 267 | /* Open file. */
|
---|
| 268 | FILE *stream = malloc(sizeof(FILE));
|
---|
| 269 | if (stream == NULL) {
|
---|
| 270 | errno = ENOMEM;
|
---|
| 271 | return NULL;
|
---|
| 272 | }
|
---|
| 273 |
|
---|
| 274 | stream->fd = fd;
|
---|
| 275 | stream->error = false;
|
---|
| 276 | stream->eof = false;
|
---|
| 277 | stream->klog = false;
|
---|
[79ae36dd] | 278 | stream->sess = NULL;
|
---|
[facebd56] | 279 | stream->need_sync = false;
|
---|
[bfd247f] | 280 | _setvbuf(stream);
|
---|
[080ad7f] | 281 |
|
---|
| 282 | list_append(&stream->link, &files);
|
---|
| 283 |
|
---|
| 284 | return stream;
|
---|
| 285 | }
|
---|
| 286 |
|
---|
[2595dab] | 287 | int fclose(FILE *stream)
|
---|
| 288 | {
|
---|
| 289 | int rc = 0;
|
---|
| 290 |
|
---|
| 291 | fflush(stream);
|
---|
| 292 |
|
---|
[79ae36dd] | 293 | if (stream->sess != NULL)
|
---|
| 294 | async_hangup(stream->sess);
|
---|
[2595dab] | 295 |
|
---|
| 296 | if (stream->fd >= 0)
|
---|
| 297 | rc = close(stream->fd);
|
---|
| 298 |
|
---|
[a68f737] | 299 | list_remove(&stream->link);
|
---|
| 300 |
|
---|
| 301 | if ((stream != &stdin_null)
|
---|
| 302 | && (stream != &stdout_klog)
|
---|
| 303 | && (stream != &stderr_klog))
|
---|
[2595dab] | 304 | free(stream);
|
---|
| 305 |
|
---|
| 306 | stream = NULL;
|
---|
| 307 |
|
---|
| 308 | if (rc != 0) {
|
---|
| 309 | /* errno was set by close() */
|
---|
| 310 | return EOF;
|
---|
| 311 | }
|
---|
| 312 |
|
---|
| 313 | return 0;
|
---|
[4e2cf8b] | 314 | }
|
---|
| 315 |
|
---|
[facebd56] | 316 | /** Read from a stream (unbuffered).
|
---|
[2595dab] | 317 | *
|
---|
| 318 | * @param buf Destination buffer.
|
---|
| 319 | * @param size Size of each record.
|
---|
| 320 | * @param nmemb Number of records to read.
|
---|
| 321 | * @param stream Pointer to the stream.
|
---|
[4e2cf8b] | 322 | */
|
---|
[facebd56] | 323 | static size_t _fread(void *buf, size_t size, size_t nmemb, FILE *stream)
|
---|
[4e2cf8b] | 324 | {
|
---|
[002252a] | 325 | size_t left, done;
|
---|
| 326 |
|
---|
| 327 | if (size == 0 || nmemb == 0)
|
---|
| 328 | return 0;
|
---|
| 329 |
|
---|
| 330 | left = size * nmemb;
|
---|
| 331 | done = 0;
|
---|
[bfd247f] | 332 |
|
---|
[2595dab] | 333 | while ((left > 0) && (!stream->error) && (!stream->eof)) {
|
---|
| 334 | ssize_t rd = read(stream->fd, buf + done, left);
|
---|
| 335 |
|
---|
| 336 | if (rd < 0)
|
---|
| 337 | stream->error = true;
|
---|
| 338 | else if (rd == 0)
|
---|
| 339 | stream->eof = true;
|
---|
| 340 | else {
|
---|
| 341 | left -= rd;
|
---|
| 342 | done += rd;
|
---|
| 343 | }
|
---|
| 344 | }
|
---|
[4e2cf8b] | 345 |
|
---|
[2595dab] | 346 | return (done / size);
|
---|
| 347 | }
|
---|
[55cff86] | 348 |
|
---|
[facebd56] | 349 | /** Write to a stream (unbuffered).
|
---|
| 350 | *
|
---|
| 351 | * @param buf Source buffer.
|
---|
| 352 | * @param size Size of each record.
|
---|
| 353 | * @param nmemb Number of records to write.
|
---|
| 354 | * @param stream Pointer to the stream.
|
---|
| 355 | */
|
---|
[ef8bcc6] | 356 | static size_t _fwrite(const void *buf, size_t size, size_t nmemb, FILE *stream)
|
---|
[2595dab] | 357 | {
|
---|
[002252a] | 358 | size_t left;
|
---|
| 359 | size_t done;
|
---|
| 360 |
|
---|
| 361 | if (size == 0 || nmemb == 0)
|
---|
| 362 | return 0;
|
---|
| 363 |
|
---|
| 364 | left = size * nmemb;
|
---|
| 365 | done = 0;
|
---|
| 366 |
|
---|
[2595dab] | 367 | while ((left > 0) && (!stream->error)) {
|
---|
| 368 | ssize_t wr;
|
---|
| 369 |
|
---|
| 370 | if (stream->klog)
|
---|
| 371 | wr = klog_write(buf + done, left);
|
---|
| 372 | else
|
---|
| 373 | wr = write(stream->fd, buf + done, left);
|
---|
| 374 |
|
---|
| 375 | if (wr <= 0)
|
---|
| 376 | stream->error = true;
|
---|
| 377 | else {
|
---|
| 378 | left -= wr;
|
---|
| 379 | done += wr;
|
---|
| 380 | }
|
---|
| 381 | }
|
---|
[facebd56] | 382 |
|
---|
| 383 | if (done > 0)
|
---|
| 384 | stream->need_sync = true;
|
---|
[2595dab] | 385 |
|
---|
| 386 | return (done / size);
|
---|
[4e2cf8b] | 387 | }
|
---|
| 388 |
|
---|
[facebd56] | 389 | /** Read some data in stream buffer. */
|
---|
| 390 | static void _ffillbuf(FILE *stream)
|
---|
| 391 | {
|
---|
| 392 | ssize_t rc;
|
---|
| 393 |
|
---|
| 394 | stream->buf_head = stream->buf_tail = stream->buf;
|
---|
| 395 |
|
---|
| 396 | rc = read(stream->fd, stream->buf, stream->buf_size);
|
---|
| 397 | if (rc < 0) {
|
---|
| 398 | stream->error = true;
|
---|
| 399 | return;
|
---|
| 400 | }
|
---|
| 401 |
|
---|
| 402 | if (rc == 0) {
|
---|
| 403 | stream->eof = true;
|
---|
| 404 | return;
|
---|
| 405 | }
|
---|
| 406 |
|
---|
| 407 | stream->buf_head += rc;
|
---|
| 408 | stream->buf_state = _bs_read;
|
---|
| 409 | }
|
---|
| 410 |
|
---|
| 411 | /** Write out stream buffer, do not sync stream. */
|
---|
[ef8bcc6] | 412 | static void _fflushbuf(FILE *stream)
|
---|
| 413 | {
|
---|
| 414 | size_t bytes_used;
|
---|
[facebd56] | 415 |
|
---|
[bfd247f] | 416 | if ((!stream->buf) || (stream->btype == _IONBF) || (stream->error))
|
---|
[ef8bcc6] | 417 | return;
|
---|
[facebd56] | 418 |
|
---|
| 419 | bytes_used = stream->buf_head - stream->buf_tail;
|
---|
| 420 |
|
---|
| 421 | /* If buffer has prefetched read data, we need to seek back. */
|
---|
[2f72c67a] | 422 | if (bytes_used > 0 && stream->buf_state == _bs_read)
|
---|
[facebd56] | 423 | lseek(stream->fd, - (ssize_t) bytes_used, SEEK_CUR);
|
---|
| 424 |
|
---|
| 425 | /* If buffer has unwritten data, we need to write them out. */
|
---|
[2f72c67a] | 426 | if (bytes_used > 0 && stream->buf_state == _bs_write)
|
---|
[facebd56] | 427 | (void) _fwrite(stream->buf_tail, 1, bytes_used, stream);
|
---|
| 428 |
|
---|
[ef8bcc6] | 429 | stream->buf_head = stream->buf;
|
---|
[facebd56] | 430 | stream->buf_tail = stream->buf;
|
---|
| 431 | stream->buf_state = _bs_empty;
|
---|
[ef8bcc6] | 432 | }
|
---|
| 433 |
|
---|
[facebd56] | 434 | /** Read from a stream.
|
---|
| 435 | *
|
---|
| 436 | * @param dest Destination buffer.
|
---|
| 437 | * @param size Size of each record.
|
---|
| 438 | * @param nmemb Number of records to read.
|
---|
| 439 | * @param stream Pointer to the stream.
|
---|
| 440 | *
|
---|
| 441 | */
|
---|
| 442 | size_t fread(void *dest, size_t size, size_t nmemb, FILE *stream)
|
---|
| 443 | {
|
---|
| 444 | uint8_t *dp;
|
---|
| 445 | size_t bytes_left;
|
---|
| 446 | size_t now;
|
---|
| 447 | size_t data_avail;
|
---|
| 448 | size_t total_read;
|
---|
| 449 | size_t i;
|
---|
| 450 |
|
---|
| 451 | if (size == 0 || nmemb == 0)
|
---|
| 452 | return 0;
|
---|
| 453 |
|
---|
| 454 | /* If not buffered stream, read in directly. */
|
---|
| 455 | if (stream->btype == _IONBF) {
|
---|
| 456 | now = _fread(dest, size, nmemb, stream);
|
---|
| 457 | return now;
|
---|
| 458 | }
|
---|
| 459 |
|
---|
| 460 | /* Make sure no data is pending write. */
|
---|
| 461 | if (stream->buf_state == _bs_write)
|
---|
| 462 | _fflushbuf(stream);
|
---|
| 463 |
|
---|
| 464 | /* Perform lazy allocation of stream buffer. */
|
---|
| 465 | if (stream->buf == NULL) {
|
---|
| 466 | if (_fallocbuf(stream) != 0)
|
---|
| 467 | return 0; /* Errno set by _fallocbuf(). */
|
---|
| 468 | }
|
---|
| 469 |
|
---|
| 470 | bytes_left = size * nmemb;
|
---|
| 471 | total_read = 0;
|
---|
| 472 | dp = (uint8_t *) dest;
|
---|
| 473 |
|
---|
| 474 | while ((!stream->error) && (!stream->eof) && (bytes_left > 0)) {
|
---|
| 475 | if (stream->buf_head == stream->buf_tail)
|
---|
| 476 | _ffillbuf(stream);
|
---|
| 477 |
|
---|
| 478 | if (stream->error || stream->eof)
|
---|
| 479 | break;
|
---|
| 480 |
|
---|
| 481 | data_avail = stream->buf_head - stream->buf_tail;
|
---|
| 482 |
|
---|
| 483 | if (bytes_left > data_avail)
|
---|
| 484 | now = data_avail;
|
---|
| 485 | else
|
---|
| 486 | now = bytes_left;
|
---|
| 487 |
|
---|
| 488 | for (i = 0; i < now; i++) {
|
---|
| 489 | dp[i] = stream->buf_tail[i];
|
---|
| 490 | }
|
---|
| 491 |
|
---|
| 492 | dp += now;
|
---|
| 493 | stream->buf_tail += now;
|
---|
| 494 | bytes_left -= now;
|
---|
| 495 | total_read += now;
|
---|
| 496 | }
|
---|
| 497 |
|
---|
| 498 | return (total_read / size);
|
---|
| 499 | }
|
---|
| 500 |
|
---|
| 501 |
|
---|
[ef8bcc6] | 502 | /** Write to a stream.
|
---|
| 503 | *
|
---|
| 504 | * @param buf Source buffer.
|
---|
| 505 | * @param size Size of each record.
|
---|
| 506 | * @param nmemb Number of records to write.
|
---|
| 507 | * @param stream Pointer to the stream.
|
---|
| 508 | *
|
---|
| 509 | */
|
---|
| 510 | size_t fwrite(const void *buf, size_t size, size_t nmemb, FILE *stream)
|
---|
| 511 | {
|
---|
| 512 | uint8_t *data;
|
---|
| 513 | size_t bytes_left;
|
---|
| 514 | size_t now;
|
---|
| 515 | size_t buf_free;
|
---|
| 516 | size_t total_written;
|
---|
| 517 | size_t i;
|
---|
| 518 | uint8_t b;
|
---|
| 519 | bool need_flush;
|
---|
[002252a] | 520 |
|
---|
| 521 | if (size == 0 || nmemb == 0)
|
---|
| 522 | return 0;
|
---|
| 523 |
|
---|
[ef8bcc6] | 524 | /* If not buffered stream, write out directly. */
|
---|
[bfd247f] | 525 | if (stream->btype == _IONBF) {
|
---|
| 526 | now = _fwrite(buf, size, nmemb, stream);
|
---|
| 527 | fflush(stream);
|
---|
| 528 | return now;
|
---|
| 529 | }
|
---|
[facebd56] | 530 |
|
---|
| 531 | /* Make sure buffer contains no prefetched data. */
|
---|
| 532 | if (stream->buf_state == _bs_read)
|
---|
| 533 | _fflushbuf(stream);
|
---|
| 534 |
|
---|
| 535 |
|
---|
[ef8bcc6] | 536 | /* Perform lazy allocation of stream buffer. */
|
---|
| 537 | if (stream->buf == NULL) {
|
---|
| 538 | if (_fallocbuf(stream) != 0)
|
---|
| 539 | return 0; /* Errno set by _fallocbuf(). */
|
---|
| 540 | }
|
---|
[bfd247f] | 541 |
|
---|
[ef8bcc6] | 542 | data = (uint8_t *) buf;
|
---|
| 543 | bytes_left = size * nmemb;
|
---|
| 544 | total_written = 0;
|
---|
| 545 | need_flush = false;
|
---|
[bfd247f] | 546 |
|
---|
| 547 | while ((!stream->error) && (bytes_left > 0)) {
|
---|
[ef8bcc6] | 548 | buf_free = stream->buf_size - (stream->buf_head - stream->buf);
|
---|
| 549 | if (bytes_left > buf_free)
|
---|
| 550 | now = buf_free;
|
---|
| 551 | else
|
---|
| 552 | now = bytes_left;
|
---|
[bfd247f] | 553 |
|
---|
[ef8bcc6] | 554 | for (i = 0; i < now; i++) {
|
---|
| 555 | b = data[i];
|
---|
| 556 | stream->buf_head[i] = b;
|
---|
[bfd247f] | 557 |
|
---|
| 558 | if ((b == '\n') && (stream->btype == _IOLBF))
|
---|
[ef8bcc6] | 559 | need_flush = true;
|
---|
| 560 | }
|
---|
[bfd247f] | 561 |
|
---|
[0803134] | 562 | data += now;
|
---|
[ef8bcc6] | 563 | stream->buf_head += now;
|
---|
| 564 | buf_free -= now;
|
---|
| 565 | bytes_left -= now;
|
---|
| 566 | total_written += now;
|
---|
[0803134] | 567 | stream->buf_state = _bs_write;
|
---|
[bfd247f] | 568 |
|
---|
[ef8bcc6] | 569 | if (buf_free == 0) {
|
---|
| 570 | /* Only need to drain buffer. */
|
---|
| 571 | _fflushbuf(stream);
|
---|
| 572 | need_flush = false;
|
---|
| 573 | }
|
---|
| 574 | }
|
---|
[facebd56] | 575 |
|
---|
[ef8bcc6] | 576 | if (need_flush)
|
---|
| 577 | fflush(stream);
|
---|
[bfd247f] | 578 |
|
---|
[ef8bcc6] | 579 | return (total_written / size);
|
---|
| 580 | }
|
---|
| 581 |
|
---|
[2595dab] | 582 | int fputc(wchar_t c, FILE *stream)
|
---|
[c9857c6] | 583 | {
|
---|
[56fa418] | 584 | char buf[STR_BOUNDS(1)];
|
---|
[2595dab] | 585 | size_t sz = 0;
|
---|
| 586 |
|
---|
| 587 | if (chr_encode(c, buf, &sz, STR_BOUNDS(1)) == EOK) {
|
---|
[2a5af223] | 588 | size_t wr = fwrite(buf, 1, sz, stream);
|
---|
[2595dab] | 589 |
|
---|
| 590 | if (wr < sz)
|
---|
| 591 | return EOF;
|
---|
| 592 |
|
---|
| 593 | return (int) c;
|
---|
| 594 | }
|
---|
| 595 |
|
---|
| 596 | return EOF;
|
---|
| 597 | }
|
---|
[56fa418] | 598 |
|
---|
[2595dab] | 599 | int putchar(wchar_t c)
|
---|
| 600 | {
|
---|
| 601 | return fputc(c, stdout);
|
---|
| 602 | }
|
---|
[56fa418] | 603 |
|
---|
[2595dab] | 604 | int fputs(const char *str, FILE *stream)
|
---|
| 605 | {
|
---|
| 606 | return fwrite(str, str_size(str), 1, stream);
|
---|
| 607 | }
|
---|
[56fa418] | 608 |
|
---|
[2595dab] | 609 | int puts(const char *str)
|
---|
| 610 | {
|
---|
| 611 | return fputs(str, stdout);
|
---|
[c9857c6] | 612 | }
|
---|
[b27a97bb] | 613 |
|
---|
[2595dab] | 614 | int fgetc(FILE *stream)
|
---|
[b27a97bb] | 615 | {
|
---|
[2595dab] | 616 | char c;
|
---|
[bfd247f] | 617 |
|
---|
[bac82eeb] | 618 | /* This could be made faster by only flushing when needed. */
|
---|
[b8e57e8c] | 619 | if (stdout)
|
---|
| 620 | fflush(stdout);
|
---|
| 621 | if (stderr)
|
---|
| 622 | fflush(stderr);
|
---|
[bfd247f] | 623 |
|
---|
[2595dab] | 624 | if (fread(&c, sizeof(char), 1, stream) < sizeof(char))
|
---|
| 625 | return EOF;
|
---|
[b27a97bb] | 626 |
|
---|
[2595dab] | 627 | return (int) c;
|
---|
| 628 | }
|
---|
| 629 |
|
---|
[c62d2e1] | 630 | char *fgets(char *str, int size, FILE *stream)
|
---|
| 631 | {
|
---|
[a634485] | 632 | int c;
|
---|
[c62d2e1] | 633 | int idx;
|
---|
| 634 |
|
---|
| 635 | idx = 0;
|
---|
| 636 | while (idx < size - 1) {
|
---|
| 637 | c = fgetc(stream);
|
---|
| 638 | if (c == EOF)
|
---|
| 639 | break;
|
---|
| 640 |
|
---|
| 641 | str[idx++] = c;
|
---|
| 642 |
|
---|
| 643 | if (c == '\n')
|
---|
| 644 | break;
|
---|
| 645 | }
|
---|
| 646 |
|
---|
| 647 | if (ferror(stream))
|
---|
| 648 | return NULL;
|
---|
| 649 |
|
---|
| 650 | if (idx == 0)
|
---|
| 651 | return NULL;
|
---|
| 652 |
|
---|
| 653 | str[idx] = '\0';
|
---|
| 654 | return str;
|
---|
| 655 | }
|
---|
| 656 |
|
---|
[2595dab] | 657 | int getchar(void)
|
---|
| 658 | {
|
---|
| 659 | return fgetc(stdin);
|
---|
[b27a97bb] | 660 | }
|
---|
| 661 |
|
---|
[ed903174] | 662 | int fseek(FILE *stream, off64_t offset, int whence)
|
---|
[d2cc7e1] | 663 | {
|
---|
[facebd56] | 664 | off64_t rc;
|
---|
| 665 |
|
---|
| 666 | _fflushbuf(stream);
|
---|
| 667 |
|
---|
| 668 | rc = lseek(stream->fd, offset, whence);
|
---|
[ed903174] | 669 | if (rc == (off64_t) (-1)) {
|
---|
| 670 | /* errno has been set by lseek64. */
|
---|
[2595dab] | 671 | return -1;
|
---|
| 672 | }
|
---|
[facebd56] | 673 |
|
---|
[2595dab] | 674 | stream->eof = false;
|
---|
[566f4cfb] | 675 | return 0;
|
---|
[d2cc7e1] | 676 | }
|
---|
| 677 |
|
---|
[ed903174] | 678 | off64_t ftell(FILE *stream)
|
---|
[08232ee] | 679 | {
|
---|
[8ad496d2] | 680 | _fflushbuf(stream);
|
---|
[ed903174] | 681 | return lseek(stream->fd, 0, SEEK_CUR);
|
---|
[08232ee] | 682 | }
|
---|
| 683 |
|
---|
[080ad7f] | 684 | void rewind(FILE *stream)
|
---|
| 685 | {
|
---|
| 686 | (void) fseek(stream, 0, SEEK_SET);
|
---|
| 687 | }
|
---|
| 688 |
|
---|
[2595dab] | 689 | int fflush(FILE *stream)
|
---|
| 690 | {
|
---|
[ef8bcc6] | 691 | _fflushbuf(stream);
|
---|
[bfd247f] | 692 |
|
---|
[2595dab] | 693 | if (stream->klog) {
|
---|
| 694 | klog_update();
|
---|
| 695 | return EOK;
|
---|
| 696 | }
|
---|
| 697 |
|
---|
[79ae36dd] | 698 | if ((stream->fd >= 0) && (stream->need_sync)) {
|
---|
[facebd56] | 699 | /**
|
---|
| 700 | * Better than syncing always, but probably still not the
|
---|
| 701 | * right thing to do.
|
---|
| 702 | */
|
---|
| 703 | stream->need_sync = false;
|
---|
[2595dab] | 704 | return fsync(stream->fd);
|
---|
[facebd56] | 705 | }
|
---|
[2595dab] | 706 |
|
---|
| 707 | return ENOENT;
|
---|
| 708 | }
|
---|
| 709 |
|
---|
| 710 | int feof(FILE *stream)
|
---|
| 711 | {
|
---|
| 712 | return stream->eof;
|
---|
| 713 | }
|
---|
| 714 |
|
---|
| 715 | int ferror(FILE *stream)
|
---|
| 716 | {
|
---|
| 717 | return stream->error;
|
---|
| 718 | }
|
---|
| 719 |
|
---|
[c77a64f] | 720 | void clearerr(FILE *stream)
|
---|
| 721 | {
|
---|
| 722 | stream->eof = false;
|
---|
| 723 | stream->error = false;
|
---|
| 724 | }
|
---|
| 725 |
|
---|
[3629481] | 726 | int fileno(FILE *stream)
|
---|
| 727 | {
|
---|
| 728 | if (stream->klog) {
|
---|
| 729 | errno = EBADF;
|
---|
| 730 | return -1;
|
---|
| 731 | }
|
---|
| 732 |
|
---|
| 733 | return stream->fd;
|
---|
| 734 | }
|
---|
| 735 |
|
---|
[79ae36dd] | 736 | async_sess_t *fsession(exch_mgmt_t mgmt, FILE *stream)
|
---|
[2595dab] | 737 | {
|
---|
| 738 | if (stream->fd >= 0) {
|
---|
[79ae36dd] | 739 | if (stream->sess == NULL)
|
---|
| 740 | stream->sess = fd_session(mgmt, stream->fd);
|
---|
[2595dab] | 741 |
|
---|
[79ae36dd] | 742 | return stream->sess;
|
---|
[2595dab] | 743 | }
|
---|
| 744 |
|
---|
[79ae36dd] | 745 | return NULL;
|
---|
[2595dab] | 746 | }
|
---|
| 747 |
|
---|
[7171760] | 748 | int fhandle(FILE *stream, int *handle)
|
---|
[2595dab] | 749 | {
|
---|
[7171760] | 750 | if (stream->fd >= 0) {
|
---|
| 751 | *handle = stream->fd;
|
---|
| 752 | return EOK;
|
---|
| 753 | }
|
---|
[a68f737] | 754 |
|
---|
| 755 | return ENOENT;
|
---|
[2595dab] | 756 | }
|
---|
| 757 |
|
---|
[fadd381] | 758 | /** @}
|
---|
[b2951e2] | 759 | */
|
---|