[7ae4443] | 1 | /*
|
---|
| 2 | * Copyright (C) 2005 Martin Decky
|
---|
| 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.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[a59e81e] | 29 | #include <syscall/syscall.h>
|
---|
[4be51c8] | 30 | #include <proc/thread.h>
|
---|
[204674e] | 31 | #include <print.h>
|
---|
| 32 | #include <putchar.h>
|
---|
[6d9c49a] | 33 | #include <ipc/ipc.h>
|
---|
| 34 | #include <errno.h>
|
---|
| 35 | #include <proc/task.h>
|
---|
| 36 | #include <arch.h>
|
---|
| 37 | #include <debug.h>
|
---|
[7ae4443] | 38 |
|
---|
[6d9c49a] | 39 | static __native sys_ctl(void) {
|
---|
[4be51c8] | 40 | printf("Thread finished\n");
|
---|
| 41 | thread_exit();
|
---|
| 42 | /* Unreachable */
|
---|
[7ae4443] | 43 | return 0;
|
---|
| 44 | }
|
---|
| 45 |
|
---|
[6d9c49a] | 46 | static __native sys_io(int fd, const void * buf, size_t count) {
|
---|
[204674e] | 47 |
|
---|
| 48 | // TODO: buf sanity checks and a lot of other stuff ...
|
---|
| 49 |
|
---|
| 50 | size_t i;
|
---|
| 51 |
|
---|
| 52 | for (i = 0; i < count; i++)
|
---|
| 53 | putchar(((char *) buf)[i]);
|
---|
| 54 |
|
---|
[4be51c8] | 55 | return count;
|
---|
[7ae4443] | 56 | }
|
---|
| 57 |
|
---|
[631ca4d] | 58 | /** Send a call over IPC, wait for reply, return to user
|
---|
[6d9c49a] | 59 | *
|
---|
| 60 | * @return Call identification, returns -1 on fatal error,
|
---|
| 61 | -2 on 'Too many async request, handle answers first
|
---|
| 62 | */
|
---|
[e74cb73] | 63 | static __native sys_ipc_call_sync(__native phoneid, __native method,
|
---|
| 64 | __native arg1, __native *data)
|
---|
[631ca4d] | 65 | {
|
---|
[e74cb73] | 66 | call_t call;
|
---|
[631ca4d] | 67 | phone_t *phone;
|
---|
| 68 | /* Special answerbox for synchronous messages */
|
---|
| 69 |
|
---|
| 70 | if (phoneid >= IPC_MAX_PHONES)
|
---|
[e74cb73] | 71 | return IPC_CALLRET_FATAL;
|
---|
[631ca4d] | 72 |
|
---|
| 73 | phone = &TASK->phones[phoneid];
|
---|
| 74 | if (!phone->callee)
|
---|
[e74cb73] | 75 | return IPC_CALLRET_FATAL;
|
---|
[631ca4d] | 76 |
|
---|
[e74cb73] | 77 | ipc_call_init(&call);
|
---|
| 78 | IPC_SET_METHOD(call.data, method);
|
---|
| 79 | IPC_SET_ARG1(call.data, arg1);
|
---|
| 80 |
|
---|
| 81 | ipc_call_sync(phone, &call);
|
---|
| 82 |
|
---|
| 83 | copy_to_uspace(data, &call.data, sizeof(call.data));
|
---|
| 84 |
|
---|
| 85 | return 0;
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | static __native sys_ipc_call_sync_medium(__native phoneid, __native *data)
|
---|
| 89 | {
|
---|
| 90 | call_t call;
|
---|
| 91 | phone_t *phone;
|
---|
| 92 | /* Special answerbox for synchronous messages */
|
---|
| 93 |
|
---|
| 94 | if (phoneid >= IPC_MAX_PHONES)
|
---|
| 95 | return IPC_CALLRET_FATAL;
|
---|
| 96 |
|
---|
| 97 | phone = &TASK->phones[phoneid];
|
---|
| 98 | if (!phone->callee)
|
---|
| 99 | return IPC_CALLRET_FATAL;
|
---|
| 100 |
|
---|
| 101 | ipc_call_init(&call);
|
---|
| 102 | copy_from_uspace(&call.data, data, sizeof(call.data));
|
---|
[631ca4d] | 103 |
|
---|
[e74cb73] | 104 | ipc_call_sync(phone, &call);
|
---|
[631ca4d] | 105 |
|
---|
[e74cb73] | 106 | copy_to_uspace(data, &call.data, sizeof(call.data));
|
---|
[631ca4d] | 107 |
|
---|
| 108 | return 0;
|
---|
| 109 | }
|
---|
| 110 |
|
---|
[e74cb73] | 111 |
|
---|
[631ca4d] | 112 | /** Send an asynchronous call over ipc
|
---|
| 113 | *
|
---|
| 114 | * @return Call identification, returns -1 on fatal error,
|
---|
| 115 | -2 on 'Too many async request, handle answers first
|
---|
| 116 | */
|
---|
[e74cb73] | 117 | static __native sys_ipc_call_async(__native phoneid, __native method,
|
---|
| 118 | __native arg1, __native arg2)
|
---|
[6d9c49a] | 119 | {
|
---|
| 120 | call_t *call;
|
---|
| 121 | phone_t *phone;
|
---|
| 122 |
|
---|
| 123 | if (phoneid >= IPC_MAX_PHONES)
|
---|
[e74cb73] | 124 | return IPC_CALLRET_FATAL;
|
---|
[6d9c49a] | 125 |
|
---|
| 126 | phone = &TASK->phones[phoneid];
|
---|
| 127 | if (!phone->callee)
|
---|
[e74cb73] | 128 | return IPC_CALLRET_FATAL;
|
---|
[6d9c49a] | 129 |
|
---|
| 130 | /* TODO: Check that we did not exceed system imposed maximum
|
---|
| 131 | * of asynchrnously sent messages
|
---|
| 132 | * - the userspace should be able to handle it correctly
|
---|
| 133 | */
|
---|
| 134 | call = ipc_call_alloc();
|
---|
[e74cb73] | 135 | IPC_SET_METHOD(call->data, method);
|
---|
| 136 | IPC_SET_ARG1(call->data, arg1);
|
---|
| 137 | IPC_SET_ARG2(call->data, arg2);
|
---|
| 138 |
|
---|
[6d9c49a] | 139 | ipc_call(phone, call);
|
---|
| 140 |
|
---|
| 141 | return (__native) call;
|
---|
| 142 | }
|
---|
| 143 |
|
---|
| 144 | /** Send IPC answer */
|
---|
[e74cb73] | 145 | static __native sys_ipc_answer(__native callid, __native retval, __native arg1,
|
---|
| 146 | __native arg2)
|
---|
[6d9c49a] | 147 | {
|
---|
| 148 | call_t *call;
|
---|
| 149 |
|
---|
| 150 | /* Check that the user is not sending us answer callid */
|
---|
| 151 | ASSERT(! (callid & 1));
|
---|
| 152 | /* TODO: Check that the callid is in the dispatch table */
|
---|
| 153 | call = (call_t *) callid;
|
---|
| 154 |
|
---|
[e74cb73] | 155 | IPC_SET_RETVAL(call->data, retval);
|
---|
| 156 | IPC_SET_ARG1(call->data, arg1);
|
---|
| 157 | IPC_SET_ARG2(call->data, arg2);
|
---|
[6d9c49a] | 158 |
|
---|
| 159 | ipc_answer(&TASK->answerbox, call);
|
---|
| 160 | return 0;
|
---|
| 161 | }
|
---|
| 162 |
|
---|
| 163 | /** Wait for incoming ipc call or answer
|
---|
| 164 | *
|
---|
| 165 | * @param result
|
---|
| 166 | * @param flags
|
---|
| 167 | * @return Callid, if callid & 1, then the call is answer
|
---|
| 168 | */
|
---|
| 169 | static __native sys_ipc_wait_for_call(__native *calldata, __native flags)
|
---|
| 170 | {
|
---|
| 171 | call_t *call;
|
---|
| 172 |
|
---|
| 173 | call = ipc_wait_for_call(&TASK->answerbox, flags);
|
---|
| 174 |
|
---|
[e74cb73] | 175 | copy_to_uspace(calldata, &call->data, sizeof(call->data));
|
---|
| 176 | if (call->flags & IPC_CALL_ANSWERED) {
|
---|
| 177 | ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC));
|
---|
| 178 | ipc_call_free(call);
|
---|
| 179 | return ((__native)call) | IPC_CALLID_ANSWERED;
|
---|
| 180 | }
|
---|
[6d9c49a] | 181 | return (__native)call;
|
---|
| 182 | }
|
---|
| 183 |
|
---|
| 184 |
|
---|
[7ae4443] | 185 | syshandler_t syscall_table[SYSCALL_END] = {
|
---|
| 186 | sys_ctl,
|
---|
[6d9c49a] | 187 | sys_io,
|
---|
[631ca4d] | 188 | sys_ipc_call_sync,
|
---|
[e74cb73] | 189 | sys_ipc_call_sync_medium,
|
---|
[631ca4d] | 190 | sys_ipc_call_async,
|
---|
[6d9c49a] | 191 | sys_ipc_answer,
|
---|
| 192 | sys_ipc_wait_for_call
|
---|
[7ae4443] | 193 | };
|
---|