source: mainline/uspace/lib/c/generic/io/io.c@ fb4a424

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since fb4a424 was 6afc9d7, checked in by Jiri Svoboda <jiri@…>, 10 years ago

UNIX-like I/O functions should use errno to return error code for many reasons.

  • Property mode set to 100644
File size: 16.6 KB
RevLine 
[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>
[3e6a98c5]41#include <stdbool.h>
[2595dab]42#include <malloc.h>
[64d2b10]43#include <async.h>
[6fa9a99d]44#include <io/kio.h>
[2595dab]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]52static void _ffillbuf(FILE *stream);
[ef8bcc6]53static void _fflushbuf(FILE *stream);
54
[a68f737]55static FILE stdin_null = {
[2595dab]56 .fd = -1,
57 .error = true,
58 .eof = true,
[6fa9a99d]59 .kio = 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,
[c70703a]66 .buf_state = _bs_empty
[2595dab]67};
[350514c]68
[6fa9a99d]69static FILE stdout_kio = {
[2595dab]70 .fd = -1,
71 .error = false,
72 .eof = false,
[6fa9a99d]73 .kio = 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
[6fa9a99d]83static FILE stderr_kio = {
[a68f737]84 .fd = -1,
85 .error = false,
86 .eof = false,
[6fa9a99d]87 .kio = 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
97FILE *stdin = NULL;
98FILE *stdout = NULL;
99FILE *stderr = NULL;
100
101static LIST_INITIALIZE(files);
102
[7171760]103void __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 {
[6fa9a99d]115 stdout = &stdout_kio;
[a68f737]116 list_append(&stdout->link, &files);
117 }
118
119 if (filc > 2) {
[76d6169]120 stderr = fdopen(2, "w");
[a68f737]121 } else {
[6fa9a99d]122 stderr = &stderr_kio;
[a68f737]123 list_append(&stderr->link, &files);
124 }
125}
126
[db24058]127void __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
135static 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. */
184void 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
[7699c21]194/** Set stream buffer.
195 *
196 * When @p buf is NULL, the stream is set as unbuffered, otherwise
197 * full buffering is enabled.
198 */
199void setbuf(FILE *stream, void *buf)
200{
201 if (buf == NULL) {
202 setvbuf(stream, NULL, _IONBF, BUFSIZ);
203 } else {
204 setvbuf(stream, buf, _IOFBF, BUFSIZ);
205 }
206}
207
[bfd247f]208static void _setvbuf(FILE *stream)
209{
210 /* FIXME: Use more complex rules for setting buffering options. */
211
212 switch (stream->fd) {
213 case 1:
214 setvbuf(stream, NULL, _IOLBF, BUFSIZ);
215 break;
216 case 0:
217 case 2:
218 setvbuf(stream, NULL, _IONBF, 0);
219 break;
220 default:
221 setvbuf(stream, NULL, _IOFBF, BUFSIZ);
222 }
223}
224
[ef8bcc6]225/** Allocate stream buffer. */
226static int _fallocbuf(FILE *stream)
227{
228 assert(stream->buf == NULL);
[bfd247f]229
[ef8bcc6]230 stream->buf = malloc(stream->buf_size);
231 if (stream->buf == NULL) {
232 errno = ENOMEM;
[6afc9d7]233 return EOF;
[ef8bcc6]234 }
[bfd247f]235
[ef8bcc6]236 stream->buf_head = stream->buf;
[facebd56]237 stream->buf_tail = stream->buf;
[ef8bcc6]238 return 0;
239}
240
[2595dab]241/** Open a stream.
242 *
243 * @param path Path of the file to open.
244 * @param mode Mode string, (r|w|a)[b|t][+].
245 *
[4e2cf8b]246 */
[2595dab]247FILE *fopen(const char *path, const char *mode)
[4e2cf8b]248{
[2595dab]249 int flags;
250 if (!parse_mode(mode, &flags))
251 return NULL;
[4e2cf8b]252
[2595dab]253 /* Open file. */
254 FILE *stream = malloc(sizeof(FILE));
255 if (stream == NULL) {
256 errno = ENOMEM;
257 return NULL;
258 }
259
260 stream->fd = open(path, flags, 0666);
261 if (stream->fd < 0) {
262 /* errno was set by open() */
263 free(stream);
264 return NULL;
265 }
266
267 stream->error = false;
268 stream->eof = false;
[6fa9a99d]269 stream->kio = false;
[79ae36dd]270 stream->sess = NULL;
[facebd56]271 stream->need_sync = false;
[bfd247f]272 _setvbuf(stream);
[2595dab]273
[a68f737]274 list_append(&stream->link, &files);
275
[2595dab]276 return stream;
277}
278
[080ad7f]279FILE *fdopen(int fd, const char *mode)
280{
281 /* Open file. */
282 FILE *stream = malloc(sizeof(FILE));
283 if (stream == NULL) {
284 errno = ENOMEM;
285 return NULL;
286 }
287
288 stream->fd = fd;
289 stream->error = false;
290 stream->eof = false;
[6fa9a99d]291 stream->kio = false;
[79ae36dd]292 stream->sess = NULL;
[facebd56]293 stream->need_sync = false;
[bfd247f]294 _setvbuf(stream);
[080ad7f]295
296 list_append(&stream->link, &files);
297
298 return stream;
299}
300
[80bee81]301
302static int _fclose_nofree(FILE *stream)
[2595dab]303{
304 int rc = 0;
305
306 fflush(stream);
307
[79ae36dd]308 if (stream->sess != NULL)
309 async_hangup(stream->sess);
[2595dab]310
311 if (stream->fd >= 0)
312 rc = close(stream->fd);
313
[a68f737]314 list_remove(&stream->link);
315
[80bee81]316 if (rc != 0) {
317 /* errno was set by close() */
318 return EOF;
319 }
320
321 return 0;
322}
323
324int fclose(FILE *stream)
325{
326 int rc = _fclose_nofree(stream);
327
[a68f737]328 if ((stream != &stdin_null)
[6fa9a99d]329 && (stream != &stdout_kio)
330 && (stream != &stderr_kio))
[2595dab]331 free(stream);
332
[80bee81]333 return rc;
334}
335
336FILE *freopen(const char *path, const char *mode, FILE *stream)
337{
338 FILE *nstr;
[2595dab]339
[80bee81]340 if (path == NULL) {
341 /* Changing mode is not supported */
342 return NULL;
[2595dab]343 }
344
[80bee81]345 (void) _fclose_nofree(stream);
346 nstr = fopen(path, mode);
347 if (nstr == NULL) {
348 free(stream);
349 return NULL;
350 }
351
352 list_remove(&nstr->link);
353 *stream = *nstr;
354 list_append(&stream->link, &files);
355
356 free(nstr);
357
358 return stream;
[4e2cf8b]359}
360
[facebd56]361/** Read from a stream (unbuffered).
[2595dab]362 *
363 * @param buf Destination buffer.
364 * @param size Size of each record.
365 * @param nmemb Number of records to read.
366 * @param stream Pointer to the stream.
[6afc9d7]367 *
368 * @return Number of elements successfully read. On error this is less than
369 * nmemb, stream error indicator is set and errno is set.
[4e2cf8b]370 */
[facebd56]371static size_t _fread(void *buf, size_t size, size_t nmemb, FILE *stream)
[4e2cf8b]372{
[002252a]373 size_t left, done;
374
375 if (size == 0 || nmemb == 0)
376 return 0;
377
378 left = size * nmemb;
379 done = 0;
[bfd247f]380
[2595dab]381 while ((left > 0) && (!stream->error) && (!stream->eof)) {
382 ssize_t rd = read(stream->fd, buf + done, left);
383
[6afc9d7]384 if (rd < 0) {
385 /* errno was set by read() */
[2595dab]386 stream->error = true;
[6afc9d7]387 } else if (rd == 0) {
[2595dab]388 stream->eof = true;
[6afc9d7]389 } else {
[2595dab]390 left -= rd;
391 done += rd;
392 }
393 }
[4e2cf8b]394
[2595dab]395 return (done / size);
396}
[55cff86]397
[facebd56]398/** Write to a stream (unbuffered).
399 *
400 * @param buf Source buffer.
401 * @param size Size of each record.
402 * @param nmemb Number of records to write.
403 * @param stream Pointer to the stream.
[6afc9d7]404 *
405 * @return Number of elements successfully written. On error this is less than
406 * nmemb, stream error indicator is set and errno is set.
[facebd56]407 */
[ef8bcc6]408static size_t _fwrite(const void *buf, size_t size, size_t nmemb, FILE *stream)
[2595dab]409{
[002252a]410 size_t left;
411 size_t done;
[6afc9d7]412 int rc;
[002252a]413
414 if (size == 0 || nmemb == 0)
415 return 0;
416
417 left = size * nmemb;
418 done = 0;
419
[2595dab]420 while ((left > 0) && (!stream->error)) {
421 ssize_t wr;
[6afc9d7]422 size_t uwr;
[2595dab]423
[6afc9d7]424 if (stream->kio) {
425 uwr = 0;
426 rc = kio_write(buf + done, left, &uwr);
427 if (rc != EOK)
428 errno = rc;
429 } else {
[2595dab]430 wr = write(stream->fd, buf + done, left);
[6afc9d7]431 if (wr >= 0) {
432 uwr = (size_t)wr;
433 rc = EOK;
434 } else {
435 /* errno was set by write */
436 uwr = 0;
437 rc = errno;
438 }
439 }
[2595dab]440
[6afc9d7]441 if (rc != EOK) {
442 /* errno was set above */
[2595dab]443 stream->error = true;
[6afc9d7]444 } else {
445 left -= uwr;
446 done += uwr;
[2595dab]447 }
448 }
[facebd56]449
450 if (done > 0)
451 stream->need_sync = true;
[2595dab]452
453 return (done / size);
[4e2cf8b]454}
455
[6afc9d7]456/** Read some data in stream buffer.
457 *
458 * On error, stream error indicator is set and errno is set.
459 */
[facebd56]460static void _ffillbuf(FILE *stream)
461{
462 ssize_t rc;
463
464 stream->buf_head = stream->buf_tail = stream->buf;
465
466 rc = read(stream->fd, stream->buf, stream->buf_size);
467 if (rc < 0) {
[6afc9d7]468 /* errno was set by read() */
[facebd56]469 stream->error = true;
470 return;
471 }
472
473 if (rc == 0) {
474 stream->eof = true;
475 return;
476 }
477
478 stream->buf_head += rc;
479 stream->buf_state = _bs_read;
480}
481
482/** Write out stream buffer, do not sync stream. */
[ef8bcc6]483static void _fflushbuf(FILE *stream)
484{
485 size_t bytes_used;
[facebd56]486
[bfd247f]487 if ((!stream->buf) || (stream->btype == _IONBF) || (stream->error))
[ef8bcc6]488 return;
[facebd56]489
490 bytes_used = stream->buf_head - stream->buf_tail;
491
492 /* If buffer has prefetched read data, we need to seek back. */
[6afc9d7]493 if (bytes_used > 0 && stream->buf_state == _bs_read) {
494 off64_t rc;
495 rc = lseek(stream->fd, - (ssize_t) bytes_used, SEEK_CUR);
496 if (rc == (off64_t)-1) {
497 /* errno was set by lseek */
498 stream->error = 1;
499 return;
500 }
501 }
[facebd56]502
503 /* If buffer has unwritten data, we need to write them out. */
[6afc9d7]504 if (bytes_used > 0 && stream->buf_state == _bs_write) {
[facebd56]505 (void) _fwrite(stream->buf_tail, 1, bytes_used, stream);
[6afc9d7]506 /* On error stream error indicator and errno are set by _fwrite */
507 if (stream->error)
508 return;
509 }
[facebd56]510
[ef8bcc6]511 stream->buf_head = stream->buf;
[facebd56]512 stream->buf_tail = stream->buf;
513 stream->buf_state = _bs_empty;
[ef8bcc6]514}
515
[facebd56]516/** Read from a stream.
517 *
518 * @param dest Destination buffer.
519 * @param size Size of each record.
520 * @param nmemb Number of records to read.
521 * @param stream Pointer to the stream.
522 *
523 */
524size_t fread(void *dest, size_t size, size_t nmemb, FILE *stream)
525{
526 uint8_t *dp;
527 size_t bytes_left;
528 size_t now;
529 size_t data_avail;
530 size_t total_read;
531 size_t i;
532
533 if (size == 0 || nmemb == 0)
534 return 0;
535
[bd5414e]536 bytes_left = size * nmemb;
537 total_read = 0;
538 dp = (uint8_t *) dest;
539
540 /* Bytes from ungetc() buffer */
541 while (stream->ungetc_chars > 0 && bytes_left > 0) {
542 *dp++ = stream->ungetc_buf[--stream->ungetc_chars];
543 ++total_read;
[a955fcc]544 --bytes_left;
[bd5414e]545 }
546
[facebd56]547 /* If not buffered stream, read in directly. */
548 if (stream->btype == _IONBF) {
[bd5414e]549 total_read += _fread(dest, 1, bytes_left, stream);
550 return total_read / size;
[facebd56]551 }
552
553 /* Make sure no data is pending write. */
554 if (stream->buf_state == _bs_write)
555 _fflushbuf(stream);
556
557 /* Perform lazy allocation of stream buffer. */
558 if (stream->buf == NULL) {
559 if (_fallocbuf(stream) != 0)
560 return 0; /* Errno set by _fallocbuf(). */
561 }
562
563 while ((!stream->error) && (!stream->eof) && (bytes_left > 0)) {
564 if (stream->buf_head == stream->buf_tail)
565 _ffillbuf(stream);
566
[6afc9d7]567 if (stream->error || stream->eof) {
568 /* On error errno was set by _ffillbuf() */
[facebd56]569 break;
[6afc9d7]570 }
[facebd56]571
572 data_avail = stream->buf_head - stream->buf_tail;
573
574 if (bytes_left > data_avail)
575 now = data_avail;
576 else
577 now = bytes_left;
578
579 for (i = 0; i < now; i++) {
580 dp[i] = stream->buf_tail[i];
581 }
582
583 dp += now;
584 stream->buf_tail += now;
585 bytes_left -= now;
586 total_read += now;
587 }
588
589 return (total_read / size);
590}
591
592
[ef8bcc6]593/** Write to a stream.
594 *
595 * @param buf Source buffer.
596 * @param size Size of each record.
597 * @param nmemb Number of records to write.
598 * @param stream Pointer to the stream.
599 *
600 */
601size_t fwrite(const void *buf, size_t size, size_t nmemb, FILE *stream)
602{
603 uint8_t *data;
604 size_t bytes_left;
605 size_t now;
606 size_t buf_free;
607 size_t total_written;
608 size_t i;
609 uint8_t b;
610 bool need_flush;
[002252a]611
612 if (size == 0 || nmemb == 0)
613 return 0;
614
[ef8bcc6]615 /* If not buffered stream, write out directly. */
[bfd247f]616 if (stream->btype == _IONBF) {
617 now = _fwrite(buf, size, nmemb, stream);
618 fflush(stream);
619 return now;
620 }
[facebd56]621
622 /* Make sure buffer contains no prefetched data. */
623 if (stream->buf_state == _bs_read)
624 _fflushbuf(stream);
625
[ef8bcc6]626 /* Perform lazy allocation of stream buffer. */
627 if (stream->buf == NULL) {
628 if (_fallocbuf(stream) != 0)
629 return 0; /* Errno set by _fallocbuf(). */
630 }
[bfd247f]631
[ef8bcc6]632 data = (uint8_t *) buf;
633 bytes_left = size * nmemb;
634 total_written = 0;
635 need_flush = false;
[bfd247f]636
637 while ((!stream->error) && (bytes_left > 0)) {
[ef8bcc6]638 buf_free = stream->buf_size - (stream->buf_head - stream->buf);
639 if (bytes_left > buf_free)
640 now = buf_free;
641 else
642 now = bytes_left;
[bfd247f]643
[ef8bcc6]644 for (i = 0; i < now; i++) {
645 b = data[i];
646 stream->buf_head[i] = b;
[bfd247f]647
648 if ((b == '\n') && (stream->btype == _IOLBF))
[ef8bcc6]649 need_flush = true;
650 }
[bfd247f]651
[0803134]652 data += now;
[ef8bcc6]653 stream->buf_head += now;
654 buf_free -= now;
655 bytes_left -= now;
656 total_written += now;
[0803134]657 stream->buf_state = _bs_write;
[bfd247f]658
[ef8bcc6]659 if (buf_free == 0) {
660 /* Only need to drain buffer. */
661 _fflushbuf(stream);
[6afc9d7]662 if (!stream->error)
663 need_flush = false;
[ef8bcc6]664 }
665 }
[facebd56]666
[ef8bcc6]667 if (need_flush)
668 fflush(stream);
[bfd247f]669
[ef8bcc6]670 return (total_written / size);
671}
672
[2595dab]673int fputc(wchar_t c, FILE *stream)
[c9857c6]674{
[56fa418]675 char buf[STR_BOUNDS(1)];
[2595dab]676 size_t sz = 0;
677
678 if (chr_encode(c, buf, &sz, STR_BOUNDS(1)) == EOK) {
[2a5af223]679 size_t wr = fwrite(buf, 1, sz, stream);
[2595dab]680
681 if (wr < sz)
682 return EOF;
683
684 return (int) c;
685 }
686
687 return EOF;
688}
[56fa418]689
[2595dab]690int putchar(wchar_t c)
691{
692 return fputc(c, stdout);
693}
[56fa418]694
[2595dab]695int fputs(const char *str, FILE *stream)
696{
[7db5cfd]697 (void) fwrite(str, str_size(str), 1, stream);
698 if (ferror(stream))
699 return EOF;
700 return 0;
[2595dab]701}
[56fa418]702
[2595dab]703int puts(const char *str)
704{
705 return fputs(str, stdout);
[c9857c6]706}
[b27a97bb]707
[2595dab]708int fgetc(FILE *stream)
[b27a97bb]709{
[2595dab]710 char c;
[bfd247f]711
[bac82eeb]712 /* This could be made faster by only flushing when needed. */
[b8e57e8c]713 if (stdout)
714 fflush(stdout);
715 if (stderr)
716 fflush(stderr);
[bfd247f]717
[2595dab]718 if (fread(&c, sizeof(char), 1, stream) < sizeof(char))
719 return EOF;
[b27a97bb]720
[2595dab]721 return (int) c;
722}
723
[c62d2e1]724char *fgets(char *str, int size, FILE *stream)
725{
[a634485]726 int c;
[c62d2e1]727 int idx;
728
729 idx = 0;
730 while (idx < size - 1) {
731 c = fgetc(stream);
732 if (c == EOF)
733 break;
734
735 str[idx++] = c;
736
737 if (c == '\n')
738 break;
739 }
740
741 if (ferror(stream))
742 return NULL;
743
744 if (idx == 0)
745 return NULL;
746
747 str[idx] = '\0';
748 return str;
749}
750
[2595dab]751int getchar(void)
752{
753 return fgetc(stdin);
[b27a97bb]754}
755
[bd5414e]756int ungetc(int c, FILE *stream)
757{
758 if (c == EOF)
759 return EOF;
760
761 if (stream->ungetc_chars >= UNGETC_MAX)
762 return EOF;
763
764 stream->ungetc_buf[stream->ungetc_chars++] =
765 (uint8_t)c;
766
767 stream->eof = false;
768 return (uint8_t)c;
769}
770
[ed903174]771int fseek(FILE *stream, off64_t offset, int whence)
[d2cc7e1]772{
[facebd56]773 off64_t rc;
774
[6afc9d7]775 if (stream->error)
776 return EOF;
777
[facebd56]778 _fflushbuf(stream);
[6afc9d7]779 if (stream->error) {
780 /* errno was set by _fflushbuf() */
781 return EOF;
782 }
783
[bd5414e]784 stream->ungetc_chars = 0;
[facebd56]785
786 rc = lseek(stream->fd, offset, whence);
[ed903174]787 if (rc == (off64_t) (-1)) {
[6afc9d7]788 /* errno has been set by lseek() */
789 return EOF;
[2595dab]790 }
[facebd56]791
[2595dab]792 stream->eof = false;
[566f4cfb]793 return 0;
[d2cc7e1]794}
795
[ed903174]796off64_t ftell(FILE *stream)
[08232ee]797{
[6afc9d7]798 off64_t pos;
799
800 if (stream->error)
801 return EOF;
802
[8ad496d]803 _fflushbuf(stream);
[6afc9d7]804 if (stream->error) {
805 /* errno was set by _fflushbuf() */
806 return EOF;
807 }
808
809 pos = lseek(stream->fd, 0, SEEK_CUR);
810 if (pos == (off64_t) -1) {
811 /* errno was set by lseek */
812 return (off64_t) -1;
813 }
814
815 return pos - stream->ungetc_chars;
[08232ee]816}
817
[080ad7f]818void rewind(FILE *stream)
819{
820 (void) fseek(stream, 0, SEEK_SET);
821}
822
[2595dab]823int fflush(FILE *stream)
824{
[6afc9d7]825 if (stream->error)
826 return EOF;
827
[ef8bcc6]828 _fflushbuf(stream);
[6afc9d7]829 if (stream->error) {
830 /* errno was set by _fflushbuf() */
831 return EOF;
832 }
[bfd247f]833
[6fa9a99d]834 if (stream->kio) {
835 kio_update();
[6afc9d7]836 return 0;
[2595dab]837 }
838
[79ae36dd]839 if ((stream->fd >= 0) && (stream->need_sync)) {
[facebd56]840 /**
841 * Better than syncing always, but probably still not the
842 * right thing to do.
843 */
844 stream->need_sync = false;
[6afc9d7]845 if (fsync(stream->fd) != 0) {
846 /* errno was set by fsync() */
847 return EOF;
848 }
849
850 return 0;
[facebd56]851 }
[2595dab]852
[6afc9d7]853 return 0;
[2595dab]854}
855
856int feof(FILE *stream)
857{
858 return stream->eof;
859}
860
861int ferror(FILE *stream)
862{
863 return stream->error;
864}
865
[c77a64f]866void clearerr(FILE *stream)
867{
868 stream->eof = false;
869 stream->error = false;
870}
871
[3629481]872int fileno(FILE *stream)
873{
[6fa9a99d]874 if (stream->kio) {
[3629481]875 errno = EBADF;
[6afc9d7]876 return EOF;
[3629481]877 }
878
879 return stream->fd;
880}
881
[6afc9d7]882async_sess_t *vfs_fsession(FILE *stream, iface_t iface)
[2595dab]883{
884 if (stream->fd >= 0) {
[79ae36dd]885 if (stream->sess == NULL)
[6afc9d7]886 stream->sess = vfs_fd_session(stream->fd, iface);
[2595dab]887
[79ae36dd]888 return stream->sess;
[2595dab]889 }
890
[79ae36dd]891 return NULL;
[2595dab]892}
893
[6afc9d7]894int vfs_fhandle(FILE *stream, int *handle)
[2595dab]895{
[7171760]896 if (stream->fd >= 0) {
897 *handle = stream->fd;
898 return EOK;
899 }
[a68f737]900
901 return ENOENT;
[2595dab]902}
903
[fadd381]904/** @}
[b2951e2]905 */
Note: See TracBrowser for help on using the repository browser.