Subversion Repositories HelenOS-historic

Rev

Rev 959 | Rev 977 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
662 decky 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
 
678 decky 29
#include <syscall/syscall.h>
714 decky 30
#include <proc/thread.h>
712 decky 31
#include <print.h>
32
#include <putchar.h>
955 palkovsky 33
#include <ipc/ipc.h>
34
#include <errno.h>
35
#include <proc/task.h>
36
#include <arch.h>
37
#include <debug.h>
662 decky 38
 
955 palkovsky 39
static __native sys_ctl(void) {
714 decky 40
    printf("Thread finished\n");
41
    thread_exit();
42
    /* Unreachable */
662 decky 43
    return 0;
44
}
45
 
955 palkovsky 46
static __native sys_io(int fd, const void * buf, size_t count) {
712 decky 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
 
714 decky 55
    return count;
662 decky 56
}
57
 
959 palkovsky 58
/** Send a call over IPC, wait for reply, return to user
955 palkovsky 59
 *
60
 * @return Call identification, returns -1 on fatal error,
61
           -2 on 'Too many async request, handle answers first
62
 */
965 palkovsky 63
static __native sys_ipc_call_sync(__native phoneid, __native method,
64
                   __native arg1, __native *data)
955 palkovsky 65
{
965 palkovsky 66
    call_t call;
955 palkovsky 67
    phone_t *phone;
959 palkovsky 68
    /* Special answerbox for synchronous messages */
955 palkovsky 69
 
70
    if (phoneid >= IPC_MAX_PHONES)
965 palkovsky 71
        return IPC_CALLRET_FATAL;
955 palkovsky 72
 
73
    phone = &TASK->phones[phoneid];
74
    if (!phone->callee)
965 palkovsky 75
        return IPC_CALLRET_FATAL;
955 palkovsky 76
 
965 palkovsky 77
    ipc_call_init(&call);
78
    IPC_SET_METHOD(call.data, method);
79
    IPC_SET_ARG1(call.data, arg1);
959 palkovsky 80
 
965 palkovsky 81
    ipc_call_sync(phone, &call);
955 palkovsky 82
 
965 palkovsky 83
    copy_to_uspace(data, &call.data, sizeof(call.data));
959 palkovsky 84
 
85
    return 0;
86
}
87
 
965 palkovsky 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));
103
 
104
    ipc_call_sync(phone, &call);
105
 
106
    copy_to_uspace(data, &call.data, sizeof(call.data));
107
 
108
    return 0;
109
}
110
 
111
 
959 palkovsky 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
 */
965 palkovsky 117
static __native sys_ipc_call_async(__native phoneid, __native method,
118
                   __native arg1, __native arg2)
959 palkovsky 119
{
120
    call_t *call;
121
    phone_t *phone;
122
 
123
    if (phoneid >= IPC_MAX_PHONES)
965 palkovsky 124
        return IPC_CALLRET_FATAL;
959 palkovsky 125
 
126
    phone = &TASK->phones[phoneid];
127
    if (!phone->callee)
965 palkovsky 128
        return IPC_CALLRET_FATAL;
959 palkovsky 129
 
955 palkovsky 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();
965 palkovsky 135
    IPC_SET_METHOD(call->data, method);
136
    IPC_SET_ARG1(call->data, arg1);
137
    IPC_SET_ARG2(call->data, arg2);
138
 
955 palkovsky 139
    ipc_call(phone, call);
140
 
141
    return (__native) call;
142
}
143
 
144
/** Send IPC answer */
965 palkovsky 145
static __native sys_ipc_answer(__native callid, __native retval, __native arg1,
146
                   __native arg2)
955 palkovsky 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
 
965 palkovsky 155
    IPC_SET_RETVAL(call->data, retval);
156
    IPC_SET_ARG1(call->data, arg1);
157
    IPC_SET_ARG2(call->data, arg2);
955 palkovsky 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
 
965 palkovsky 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
    }
955 palkovsky 181
    return (__native)call;
182
}
183
 
184
 
662 decky 185
syshandler_t syscall_table[SYSCALL_END] = {
186
    sys_ctl,
955 palkovsky 187
    sys_io,
959 palkovsky 188
    sys_ipc_call_sync,
965 palkovsky 189
    sys_ipc_call_sync_medium,
959 palkovsky 190
    sys_ipc_call_async,
955 palkovsky 191
    sys_ipc_answer,
192
    sys_ipc_wait_for_call
662 decky 193
};