[b861b58] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2006 Josef Cejka
|
---|
[2595dab] | 3 | * Copyright (c) 2006 Jakub Vana
|
---|
[b861b58] | 4 | * All rights reserved.
|
---|
| 5 | *
|
---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
---|
| 7 | * modification, are permitted provided that the following conditions
|
---|
| 8 | * are met:
|
---|
| 9 | *
|
---|
| 10 | * - Redistributions of source code must retain the above copyright
|
---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 14 | * documentation and/or other materials provided with the distribution.
|
---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
---|
| 16 | * derived from this software without specific prior written permission.
|
---|
| 17 | *
|
---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
[4e2cf8b] | 28 | */
|
---|
[b861b58] | 29 |
|
---|
[fadd381] | 30 | /** @addtogroup libc
|
---|
[b2951e2] | 31 | * @{
|
---|
| 32 | */
|
---|
| 33 | /** @file
|
---|
| 34 | */
|
---|
| 35 |
|
---|
[582a0b8] | 36 | #include <stddef.h>
|
---|
[2595dab] | 37 | #include <libc.h>
|
---|
[19f857a] | 38 | #include <str.h>
|
---|
[8d2dd7f2] | 39 | #include <stdint.h>
|
---|
[45c8eea] | 40 | #include <stdlib.h>
|
---|
[d8de5d3] | 41 | #include <errno.h>
|
---|
[6fa9a99d] | 42 | #include <abi/kio.h>
|
---|
| 43 | #include <io/kio.h>
|
---|
[694ca3d6] | 44 | #include <printf_core.h>
|
---|
[5e904dd] | 45 | #include <macros.h>
|
---|
| 46 | #include <libarch/config.h>
|
---|
[f787c8e] | 47 |
|
---|
| 48 | #include "../private/futex.h"
|
---|
[5e904dd] | 49 |
|
---|
| 50 | #define KIO_BUFFER_SIZE PAGE_SIZE
|
---|
| 51 |
|
---|
| 52 | static struct {
|
---|
| 53 | futex_t futex;
|
---|
| 54 | char data[KIO_BUFFER_SIZE];
|
---|
| 55 | size_t used;
|
---|
[45c8eea] | 56 | } kio_buffer;
|
---|
| 57 |
|
---|
| 58 | void __kio_init(void)
|
---|
| 59 | {
|
---|
| 60 | if (futex_initialize(&kio_buffer.futex, 1) != EOK)
|
---|
| 61 | abort();
|
---|
| 62 | }
|
---|
[350514c] | 63 |
|
---|
[25f6bddb] | 64 | void __kio_fini(void)
|
---|
| 65 | {
|
---|
| 66 | futex_destroy(&kio_buffer.futex);
|
---|
| 67 | }
|
---|
| 68 |
|
---|
[b7fd2a0] | 69 | errno_t kio_write(const void *buf, size_t size, size_t *nwritten)
|
---|
[2595dab] | 70 | {
|
---|
[40abf56] | 71 | /* Using down/up instead of lock/unlock so we can print very early. */
|
---|
| 72 | futex_down(&kio_buffer.futex);
|
---|
[5e904dd] | 73 |
|
---|
| 74 | const char *s = buf;
|
---|
| 75 | while (true) {
|
---|
| 76 | const char *endl = memchr(s, '\n', size);
|
---|
| 77 | if (endl) {
|
---|
| 78 | size_t used = kio_buffer.used;
|
---|
| 79 |
|
---|
| 80 | size_t sz = min(KIO_BUFFER_SIZE - used, (size_t) (endl - s));
|
---|
| 81 | memcpy(&kio_buffer.data[used], s, sz);
|
---|
| 82 |
|
---|
| 83 | __SYSCALL3(SYS_KIO, KIO_WRITE,
|
---|
| 84 | (sysarg_t) &kio_buffer.data[0], used + sz);
|
---|
| 85 |
|
---|
| 86 | kio_buffer.used = 0;
|
---|
| 87 | size -= endl + 1 - s;
|
---|
| 88 | s = endl + 1;
|
---|
| 89 | } else {
|
---|
| 90 | size_t used = kio_buffer.used;
|
---|
| 91 | size_t sz = min(KIO_BUFFER_SIZE - used, size);
|
---|
| 92 | memcpy(&kio_buffer.data[used], s, sz);
|
---|
| 93 | kio_buffer.used += sz;
|
---|
| 94 | break;
|
---|
| 95 | }
|
---|
| 96 | }
|
---|
[a35b458] | 97 |
|
---|
[40abf56] | 98 | futex_up(&kio_buffer.futex);
|
---|
[5e904dd] | 99 | if (nwritten)
|
---|
[6afc9d7] | 100 | *nwritten = size;
|
---|
[5e904dd] | 101 | return EOK;
|
---|
[2595dab] | 102 | }
|
---|
[b861b58] | 103 |
|
---|
[6fa9a99d] | 104 | void kio_update(void)
|
---|
[2595dab] | 105 | {
|
---|
[6fa9a99d] | 106 | (void) __SYSCALL3(SYS_KIO, KIO_UPDATE, (uintptr_t) NULL, 0);
|
---|
[2595dab] | 107 | }
|
---|
[b2951e2] | 108 |
|
---|
[6fa9a99d] | 109 | void kio_command(const void *buf, size_t size)
|
---|
[ec85df0] | 110 | {
|
---|
[6fa9a99d] | 111 | (void) __SYSCALL3(SYS_KIO, KIO_COMMAND, (sysarg_t) buf, (sysarg_t) size);
|
---|
[ec85df0] | 112 | }
|
---|
| 113 |
|
---|
[6fa9a99d] | 114 | /** Print formatted text to kio.
|
---|
[d8de5d3] | 115 | *
|
---|
| 116 | * @param fmt Format string
|
---|
| 117 | *
|
---|
| 118 | * \see For more details about format string see printf_core.
|
---|
| 119 | *
|
---|
| 120 | */
|
---|
[6fa9a99d] | 121 | int kio_printf(const char *fmt, ...)
|
---|
[d8de5d3] | 122 | {
|
---|
| 123 | va_list args;
|
---|
| 124 | va_start(args, fmt);
|
---|
[a35b458] | 125 |
|
---|
[6fa9a99d] | 126 | int ret = kio_vprintf(fmt, args);
|
---|
[a35b458] | 127 |
|
---|
[d8de5d3] | 128 | va_end(args);
|
---|
[a35b458] | 129 |
|
---|
[d8de5d3] | 130 | return ret;
|
---|
| 131 | }
|
---|
| 132 |
|
---|
[163e34c] | 133 | static errno_t kio_vprintf_str_write(const char *str, size_t size, void *data)
|
---|
[d8de5d3] | 134 | {
|
---|
[163e34c] | 135 | size_t wr = 0;
|
---|
| 136 | return kio_write(str, size, &wr);
|
---|
[d8de5d3] | 137 | }
|
---|
| 138 |
|
---|
[6fa9a99d] | 139 | /** Print formatted text to kio.
|
---|
[d8de5d3] | 140 | *
|
---|
| 141 | * @param fmt Format string
|
---|
| 142 | * @param ap Format parameters
|
---|
| 143 | *
|
---|
| 144 | * \see For more details about format string see printf_core.
|
---|
| 145 | *
|
---|
| 146 | */
|
---|
[6fa9a99d] | 147 | int kio_vprintf(const char *fmt, va_list ap)
|
---|
[d8de5d3] | 148 | {
|
---|
| 149 | printf_spec_t ps = {
|
---|
[6fa9a99d] | 150 | kio_vprintf_str_write,
|
---|
[d8de5d3] | 151 | NULL
|
---|
| 152 | };
|
---|
[a35b458] | 153 |
|
---|
[d8de5d3] | 154 | return printf_core(fmt, &ps, ap);
|
---|
| 155 | }
|
---|
| 156 |
|
---|
[fadd381] | 157 | /** @}
|
---|
[b2951e2] | 158 | */
|
---|