Subversion Repositories HelenOS

Rev

Rev 2617 | Rev 2619 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2617 Rev 2618
1
/*
1
/*
2
 * Copyright (c) 2006 Ondrej Palkovsky
2
 * Copyright (c) 2006 Ondrej Palkovsky
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup genericipc
29
/** @addtogroup genericipc
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#include <arch.h>
35
#include <arch.h>
36
#include <proc/task.h>
36
#include <proc/task.h>
37
#include <proc/thread.h>
37
#include <proc/thread.h>
38
#include <errno.h>
38
#include <errno.h>
39
#include <memstr.h>
39
#include <memstr.h>
40
#include <debug.h>
40
#include <debug.h>
41
#include <ipc/ipc.h>
41
#include <ipc/ipc.h>
42
#include <ipc/sysipc.h>
42
#include <ipc/sysipc.h>
43
#include <ipc/irq.h>
43
#include <ipc/irq.h>
44
#include <ipc/ipcrsc.h>
44
#include <ipc/ipcrsc.h>
45
#include <arch/interrupt.h>
45
#include <arch/interrupt.h>
46
#include <print.h>
46
#include <print.h>
47
#include <syscall/copy.h>
47
#include <syscall/copy.h>
48
#include <security/cap.h>
48
#include <security/cap.h>
49
#include <mm/as.h>
49
#include <mm/as.h>
50
#include <print.h>
50
#include <print.h>
51
 
51
 
52
/** Maximum buffer size allowed for IPC_M_DATA_SEND requests. */
52
/** Maximum buffer size allowed for IPC_M_DATA_SEND requests. */
53
#define DATA_SEND_LIMIT     (64 * 1024)
53
#define DATA_SEND_LIMIT     (64 * 1024)
54
 
54
 
55
#define GET_CHECK_PHONE(phone, phoneid, err) \
55
#define GET_CHECK_PHONE(phone, phoneid, err) \
56
{ \
56
{ \
57
    if (phoneid > IPC_MAX_PHONES) { \
57
    if (phoneid > IPC_MAX_PHONES) { \
58
        err; \
58
        err; \
59
    } \
59
    } \
60
    phone = &TASK->phones[phoneid]; \
60
    phone = &TASK->phones[phoneid]; \
61
}
61
}
62
 
62
 
63
#define STRUCT_TO_USPACE(dst, src)  copy_to_uspace(dst, src, sizeof(*(src)))
63
#define STRUCT_TO_USPACE(dst, src)  copy_to_uspace(dst, src, sizeof(*(src)))
64
 
64
 
65
/** Decide if the method is a system method.
65
/** Decide if the method is a system method.
66
 *
66
 *
67
 * @param method    Method to be decided.
67
 * @param method    Method to be decided.
68
 *
68
 *
69
 * @return      Return 1 if the method is a system method.
69
 * @return      Return 1 if the method is a system method.
70
 *          Otherwise return 0.
70
 *          Otherwise return 0.
71
 */
71
 */
72
static inline int method_is_system(unative_t method)
72
static inline int method_is_system(unative_t method)
73
{
73
{
74
    if (method <= IPC_M_LAST_SYSTEM)
74
    if (method <= IPC_M_LAST_SYSTEM)
75
        return 1;
75
        return 1;
76
    return 0;
76
    return 0;
77
}
77
}
78
 
78
 
79
/** Decide if the message with this method is forwardable.
79
/** Decide if the message with this method is forwardable.
80
 *
80
 *
81
 * - some system messages may be forwarded, for some of them
81
 * - some system messages may be forwarded, for some of them
82
 *   it is useless
82
 *   it is useless
83
 *
83
 *
84
 * @param method    Method to be decided.
84
 * @param method    Method to be decided.
85
 *
85
 *
86
 * @return      Return 1 if the method is forwardable.
86
 * @return      Return 1 if the method is forwardable.
87
 *          Otherwise return 0.
87
 *          Otherwise return 0.
88
 */
88
 */
89
static inline int method_is_forwardable(unative_t method)
89
static inline int method_is_forwardable(unative_t method)
90
{
90
{
91
    switch (method) {
91
    switch (method) {
92
    case IPC_M_PHONE_HUNGUP:
92
    case IPC_M_PHONE_HUNGUP:
93
        /* This message is meant only for the original recipient. */
93
        /* This message is meant only for the original recipient. */
94
        return 0;
94
        return 0;
95
    default:
95
    default:
96
        return 1;
96
        return 1;
97
    }
97
    }
98
}
98
}
99
 
99
 
100
/** Decide if the message with this method is immutable on forward.
100
/** Decide if the message with this method is immutable on forward.
101
 *
101
 *
102
 * - some system messages may be forwarded but their content cannot be altered
102
 * - some system messages may be forwarded but their content cannot be altered
103
 *
103
 *
104
 * @param method    Method to be decided.
104
 * @param method    Method to be decided.
105
 *
105
 *
106
 * @return      Return 1 if the method is immutable on forward.
106
 * @return      Return 1 if the method is immutable on forward.
107
 *          Otherwise return 0.
107
 *          Otherwise return 0.
108
 */
108
 */
109
static inline int method_is_immutable(unative_t method)
109
static inline int method_is_immutable(unative_t method)
110
{
110
{
111
    switch (method) {
111
    switch (method) {
112
    case IPC_M_AS_AREA_SEND:
112
    case IPC_M_AS_AREA_SEND:
113
    case IPC_M_AS_AREA_RECV:
113
    case IPC_M_AS_AREA_RECV:
114
    case IPC_M_DATA_SEND:
114
    case IPC_M_DATA_SEND:
115
        return 1;
115
        return 1;
116
        break;
116
        break;
117
    default:
117
    default:
118
        return 0;
118
        return 0;
119
    }
119
    }
120
}
120
}
121
 
121
 
122
 
122
 
123
/***********************************************************************
123
/***********************************************************************
124
 * Functions that preprocess answer before sending it to the recepient.
124
 * Functions that preprocess answer before sending it to the recepient.
125
 ***********************************************************************/
125
 ***********************************************************************/
126
 
126
 
127
/** Decide if the caller (e.g. ipc_answer()) should save the old call contents
127
/** Decide if the caller (e.g. ipc_answer()) should save the old call contents
128
 * for answer_preprocess().
128
 * for answer_preprocess().
129
 *
129
 *
130
 * @param call      Call structure to be decided.
130
 * @param call      Call structure to be decided.
131
 *
131
 *
132
 * @return      Return 1 if the old call contents should be saved.
132
 * @return      Return 1 if the old call contents should be saved.
133
 *          Return 0 otherwise.
133
 *          Return 0 otherwise.
134
 */
134
 */
135
static inline int answer_need_old(call_t *call)
135
static inline int answer_need_old(call_t *call)
136
{
136
{
137
    switch (IPC_GET_METHOD(call->data)) {
137
    switch (IPC_GET_METHOD(call->data)) {
138
    case IPC_M_CONNECT_TO_ME:
138
    case IPC_M_CONNECT_TO_ME:
139
    case IPC_M_CONNECT_ME_TO:
139
    case IPC_M_CONNECT_ME_TO:
140
    case IPC_M_AS_AREA_SEND:
140
    case IPC_M_AS_AREA_SEND:
141
    case IPC_M_AS_AREA_RECV:
141
    case IPC_M_AS_AREA_RECV:
142
    case IPC_M_DATA_SEND:
142
    case IPC_M_DATA_SEND:
143
        return 1;
143
        return 1;
144
    default:
144
    default:
145
        return 0;
145
        return 0;
146
    }
146
    }
147
}
147
}
148
 
148
 
149
/** Interpret process answer as control information.
149
/** Interpret process answer as control information.
150
 *
150
 *
151
 * This function is called directly after sys_ipc_answer().
151
 * This function is called directly after sys_ipc_answer().
152
 *
152
 *
153
 * @param answer    Call structure with the answer.
153
 * @param answer    Call structure with the answer.
154
 * @param olddata   Saved data of the request.
154
 * @param olddata   Saved data of the request.
155
 *
155
 *
156
 * @return      Return 0 on success or an error code.
156
 * @return      Return 0 on success or an error code.
157
 */
157
 */
158
static inline int answer_preprocess(call_t *answer, ipc_data_t *olddata)
158
static inline int answer_preprocess(call_t *answer, ipc_data_t *olddata)
159
{
159
{
160
    int phoneid;
160
    int phoneid;
161
 
161
 
162
    if (IPC_GET_RETVAL(answer->data) == EHANGUP) {
162
    if (IPC_GET_RETVAL(answer->data) == EHANGUP) {
163
        /* In case of forward, hangup the forwared phone,
163
        /* In case of forward, hangup the forwared phone,
164
         * not the originator
164
         * not the originator
165
         */
165
         */
166
        spinlock_lock(&answer->data.phone->lock);
166
        spinlock_lock(&answer->data.phone->lock);
167
        spinlock_lock(&TASK->answerbox.lock);
167
        spinlock_lock(&TASK->answerbox.lock);
168
        if (answer->data.phone->state == IPC_PHONE_CONNECTED) {
168
        if (answer->data.phone->state == IPC_PHONE_CONNECTED) {
169
            list_remove(&answer->data.phone->link);
169
            list_remove(&answer->data.phone->link);
170
            answer->data.phone->state = IPC_PHONE_SLAMMED;
170
            answer->data.phone->state = IPC_PHONE_SLAMMED;
171
        }
171
        }
172
        spinlock_unlock(&TASK->answerbox.lock);
172
        spinlock_unlock(&TASK->answerbox.lock);
173
        spinlock_unlock(&answer->data.phone->lock);
173
        spinlock_unlock(&answer->data.phone->lock);
174
    }
174
    }
175
 
175
 
176
    if (!olddata)
176
    if (!olddata)
177
        return 0;
177
        return 0;
178
 
178
 
179
    if (IPC_GET_METHOD(*olddata) == IPC_M_CONNECT_TO_ME) {
179
    if (IPC_GET_METHOD(*olddata) == IPC_M_CONNECT_TO_ME) {
180
        phoneid = IPC_GET_ARG3(*olddata);
180
        phoneid = IPC_GET_ARG3(*olddata);
181
        if (IPC_GET_RETVAL(answer->data)) {
181
        if (IPC_GET_RETVAL(answer->data)) {
182
            /* The connection was not accepted */
182
            /* The connection was not accepted */
183
            phone_dealloc(phoneid);
183
            phone_dealloc(phoneid);
184
        } else {
184
        } else {
185
            /* The connection was accepted */
185
            /* The connection was accepted */
186
            phone_connect(phoneid, &answer->sender->answerbox);
186
            phone_connect(phoneid, &answer->sender->answerbox);
187
            /* Set 'phone hash' as arg3 of response */
187
            /* Set 'phone hash' as arg3 of response */
188
            IPC_SET_ARG3(answer->data,
188
            IPC_SET_ARG3(answer->data,
189
                (unative_t) &TASK->phones[phoneid]);
189
                (unative_t) &TASK->phones[phoneid]);
190
        }
190
        }
191
    } else if (IPC_GET_METHOD(*olddata) == IPC_M_CONNECT_ME_TO) {
191
    } else if (IPC_GET_METHOD(*olddata) == IPC_M_CONNECT_ME_TO) {
192
        /* If the users accepted call, connect */
192
        /* If the users accepted call, connect */
193
        if (!IPC_GET_RETVAL(answer->data)) {
193
        if (!IPC_GET_RETVAL(answer->data)) {
194
            ipc_phone_connect((phone_t *) IPC_GET_ARG3(*olddata),
194
            ipc_phone_connect((phone_t *) IPC_GET_ARG3(*olddata),
195
                &TASK->answerbox);
195
                &TASK->answerbox);
196
        }
196
        }
197
    } else if (IPC_GET_METHOD(*olddata) == IPC_M_AS_AREA_SEND) {
197
    } else if (IPC_GET_METHOD(*olddata) == IPC_M_AS_AREA_SEND) {
198
        if (!IPC_GET_RETVAL(answer->data)) {
198
        if (!IPC_GET_RETVAL(answer->data)) {
199
            /* Accepted, handle as_area receipt */
199
            /* Accepted, handle as_area receipt */
200
            ipl_t ipl;
200
            ipl_t ipl;
201
            int rc;
201
            int rc;
202
            as_t *as;
202
            as_t *as;
203
           
203
           
204
            ipl = interrupts_disable();
204
            ipl = interrupts_disable();
205
            spinlock_lock(&answer->sender->lock);
205
            spinlock_lock(&answer->sender->lock);
206
            as = answer->sender->as;
206
            as = answer->sender->as;
207
            spinlock_unlock(&answer->sender->lock);
207
            spinlock_unlock(&answer->sender->lock);
208
            interrupts_restore(ipl);
208
            interrupts_restore(ipl);
209
           
209
           
210
            rc = as_area_share(as, IPC_GET_ARG1(*olddata),
210
            rc = as_area_share(as, IPC_GET_ARG1(*olddata),
211
                IPC_GET_ARG2(*olddata), AS,
211
                IPC_GET_ARG2(*olddata), AS,
212
                IPC_GET_ARG1(answer->data), IPC_GET_ARG3(*olddata));
212
                IPC_GET_ARG1(answer->data), IPC_GET_ARG3(*olddata));
213
            IPC_SET_RETVAL(answer->data, rc);
213
            IPC_SET_RETVAL(answer->data, rc);
214
            return rc;
214
            return rc;
215
        }
215
        }
216
    } else if (IPC_GET_METHOD(*olddata) == IPC_M_AS_AREA_RECV) {
216
    } else if (IPC_GET_METHOD(*olddata) == IPC_M_AS_AREA_RECV) {
217
        if (!IPC_GET_RETVAL(answer->data)) {
217
        if (!IPC_GET_RETVAL(answer->data)) {
218
            ipl_t ipl;
218
            ipl_t ipl;
219
            as_t *as;
219
            as_t *as;
220
            int rc;
220
            int rc;
221
           
221
           
222
            ipl = interrupts_disable();
222
            ipl = interrupts_disable();
223
            spinlock_lock(&answer->sender->lock);
223
            spinlock_lock(&answer->sender->lock);
224
            as = answer->sender->as;
224
            as = answer->sender->as;
225
            spinlock_unlock(&answer->sender->lock);
225
            spinlock_unlock(&answer->sender->lock);
226
            interrupts_restore(ipl);
226
            interrupts_restore(ipl);
227
           
227
           
228
            rc = as_area_share(AS, IPC_GET_ARG1(answer->data),
228
            rc = as_area_share(AS, IPC_GET_ARG1(answer->data),
229
                IPC_GET_ARG2(*olddata), as, IPC_GET_ARG1(*olddata),
229
                IPC_GET_ARG2(*olddata), as, IPC_GET_ARG1(*olddata),
230
                IPC_GET_ARG2(answer->data));
230
                IPC_GET_ARG2(answer->data));
231
            IPC_SET_RETVAL(answer->data, rc);
231
            IPC_SET_RETVAL(answer->data, rc);
232
        }
232
        }
233
    } else if (IPC_GET_METHOD(*olddata) == IPC_M_DATA_SEND) {
233
    } else if (IPC_GET_METHOD(*olddata) == IPC_M_DATA_SEND) {
234
        if (!IPC_GET_RETVAL(answer->data)) {
234
        if (!IPC_GET_RETVAL(answer->data)) {
235
            int rc;
235
            int rc;
236
            uintptr_t dst;
236
            uintptr_t dst;
237
            uintptr_t size;
237
            uintptr_t size;
238
 
238
 
239
            ASSERT(answer->buffer);
239
            ASSERT(answer->buffer);
240
 
240
 
241
            dst = IPC_GET_ARG1(answer->data);
241
            dst = IPC_GET_ARG1(answer->data);
242
            size = IPC_GET_ARG3(answer->data);
242
            size = IPC_GET_ARG3(answer->data);
243
 
243
 
244
            rc = copy_to_uspace((void *) dst, answer->buffer, size);
244
            rc = copy_to_uspace((void *) dst, answer->buffer, size);
245
            if (rc != 0)
245
            if (rc != 0)
246
                IPC_SET_RETVAL(answer->data, rc);
246
                IPC_SET_RETVAL(answer->data, rc);
247
            free(answer->buffer);
247
            free(answer->buffer);
248
            answer->buffer = NULL;
248
            answer->buffer = NULL;
249
        }
249
        }
250
    }
250
    }
251
    return 0;
251
    return 0;
252
}
252
}
253
 
253
 
254
/** Called before the request is sent.
254
/** Called before the request is sent.
255
 *
255
 *
256
 * @param call      Call structure with the request.
256
 * @param call      Call structure with the request.
257
 *
257
 *
258
 * @return      Return 0 on success, ELIMIT or EPERM on error.
258
 * @return      Return 0 on success, ELIMIT or EPERM on error.
259
 */
259
 */
260
static int request_preprocess(call_t *call)
260
static int request_preprocess(call_t *call)
261
{
261
{
262
    int newphid;
262
    int newphid;
263
    size_t size;
263
    size_t size;
264
    uintptr_t src;
264
    uintptr_t src;
265
    int rc;
265
    int rc;
266
 
266
 
267
    switch (IPC_GET_METHOD(call->data)) {
267
    switch (IPC_GET_METHOD(call->data)) {
268
    case IPC_M_CONNECT_ME_TO:
268
    case IPC_M_CONNECT_ME_TO:
269
        newphid = phone_alloc();
269
        newphid = phone_alloc();
270
        if (newphid < 0)
270
        if (newphid < 0)
271
            return ELIMIT;
271
            return ELIMIT;
272
        /* Set arg3 for server */
272
        /* Set arg3 for server */
273
        IPC_SET_ARG3(call->data, (unative_t) &TASK->phones[newphid]);
273
        IPC_SET_ARG3(call->data, (unative_t) &TASK->phones[newphid]);
274
        call->flags |= IPC_CALL_CONN_ME_TO;
274
        call->flags |= IPC_CALL_CONN_ME_TO;
275
        call->priv = newphid;
275
        call->priv = newphid;
276
        break;
276
        break;
277
    case IPC_M_AS_AREA_SEND:
277
    case IPC_M_AS_AREA_SEND:
278
        size = as_area_get_size(IPC_GET_ARG1(call->data));
278
        size = as_area_get_size(IPC_GET_ARG1(call->data));
279
        if (!size)
279
        if (!size)
280
            return EPERM;
280
            return EPERM;
281
        IPC_SET_ARG2(call->data, size);
281
        IPC_SET_ARG2(call->data, size);
282
        break;
282
        break;
283
    case IPC_M_DATA_SEND:
283
    case IPC_M_DATA_SEND:
284
        src = IPC_GET_ARG2(call->data);
284
        src = IPC_GET_ARG2(call->data);
285
        size = IPC_GET_ARG3(call->data);
285
        size = IPC_GET_ARG3(call->data);
286
       
286
       
287
        if ((size <= 0) || (size > DATA_SEND_LIMIT))
287
        if ((size <= 0) || (size > DATA_SEND_LIMIT))
288
            return ELIMIT;
288
            return ELIMIT;
289
       
289
       
290
        call->buffer = (uint8_t *) malloc(size, 0);
290
        call->buffer = (uint8_t *) malloc(size, 0);
291
        rc = copy_from_uspace(call->buffer, (void *) src, size);
291
        rc = copy_from_uspace(call->buffer, (void *) src, size);
292
        if (rc != 0) {
292
        if (rc != 0) {
293
            free(call->buffer);
293
            free(call->buffer);
294
            return rc;
294
            return rc;
295
        }
295
        }
296
        break;
296
        break;
297
    default:
297
    default:
298
        break;
298
        break;
299
    }
299
    }
300
    return 0;
300
    return 0;
301
}
301
}
302
 
302
 
303
/*******************************************************************************
303
/*******************************************************************************
304
 * Functions called to process received call/answer before passing it to uspace.
304
 * Functions called to process received call/answer before passing it to uspace.
305
 *******************************************************************************/
305
 *******************************************************************************/
306
 
306
 
307
/** Do basic kernel processing of received call answer.
307
/** Do basic kernel processing of received call answer.
308
 *
308
 *
309
 * @param call      Call structure with the answer.
309
 * @param call      Call structure with the answer.
310
 */
310
 */
311
static void process_answer(call_t *call)
311
static void process_answer(call_t *call)
312
{
312
{
313
    if (IPC_GET_RETVAL(call->data) == EHANGUP &&
313
    if (IPC_GET_RETVAL(call->data) == EHANGUP &&
314
        (call->flags & IPC_CALL_FORWARDED))
314
        (call->flags & IPC_CALL_FORWARDED))
315
        IPC_SET_RETVAL(call->data, EFORWARD);
315
        IPC_SET_RETVAL(call->data, EFORWARD);
316
 
316
 
317
    if (call->flags & IPC_CALL_CONN_ME_TO) {
317
    if (call->flags & IPC_CALL_CONN_ME_TO) {
318
        if (IPC_GET_RETVAL(call->data))
318
        if (IPC_GET_RETVAL(call->data))
319
            phone_dealloc(call->priv);
319
            phone_dealloc(call->priv);
320
        else
320
        else
321
            IPC_SET_ARG3(call->data, call->priv);
321
            IPC_SET_ARG3(call->data, call->priv);
322
    }
322
    }
323
}
323
}
324
 
324
 
325
/** Do basic kernel processing of received call request.
325
/** Do basic kernel processing of received call request.
326
 *
326
 *
327
 * @param box       Destination answerbox structure.
327
 * @param box       Destination answerbox structure.
328
 * @param call      Call structure with the request.
328
 * @param call      Call structure with the request.
329
 *
329
 *
330
 * @return      Return 0 if the call should be passed to userspace.
330
 * @return      Return 0 if the call should be passed to userspace.
331
 *          Return -1 if the call should be ignored.
331
 *          Return -1 if the call should be ignored.
332
 */
332
 */
333
static int process_request(answerbox_t *box, call_t *call)
333
static int process_request(answerbox_t *box, call_t *call)
334
{
334
{
335
    int phoneid;
335
    int phoneid;
336
 
336
 
337
    if (IPC_GET_METHOD(call->data) == IPC_M_CONNECT_TO_ME) {
337
    if (IPC_GET_METHOD(call->data) == IPC_M_CONNECT_TO_ME) {
338
        phoneid = phone_alloc();
338
        phoneid = phone_alloc();
339
        if (phoneid < 0) { /* Failed to allocate phone */
339
        if (phoneid < 0) { /* Failed to allocate phone */
340
            IPC_SET_RETVAL(call->data, ELIMIT);
340
            IPC_SET_RETVAL(call->data, ELIMIT);
341
            ipc_answer(box, call);
341
            ipc_answer(box, call);
342
            return -1;
342
            return -1;
343
        }
343
        }
344
        IPC_SET_ARG3(call->data, phoneid);
344
        IPC_SET_ARG3(call->data, phoneid);
345
    }
345
    }
346
    return 0;
346
    return 0;
347
}
347
}
348
 
348
 
349
/** Make a fast call over IPC, wait for reply and return to user.
349
/** Make a fast call over IPC, wait for reply and return to user.
350
 *
350
 *
351
 * This function can handle only three arguments of payload, but is faster than
351
 * This function can handle only three arguments of payload, but is faster than
352
 * the generic function (i.e. sys_ipc_call_sync_slow()).
352
 * the generic function (i.e. sys_ipc_call_sync_slow()).
353
 *
353
 *
354
 * @param phoneid   Phone handle for the call.
354
 * @param phoneid   Phone handle for the call.
355
 * @param method    Method of the call.
355
 * @param method    Method of the call.
356
 * @param arg1      Service-defined payload argument.
356
 * @param arg1      Service-defined payload argument.
357
 * @param arg2      Service-defined payload argument.
357
 * @param arg2      Service-defined payload argument.
358
 * @param arg3      Service-defined payload argument.
358
 * @param arg3      Service-defined payload argument.
359
 * @param data      Address of userspace structure where the reply call will
359
 * @param data      Address of userspace structure where the reply call will
360
 *          be stored.
360
 *          be stored.
361
 *
361
 *
362
 * @return      Returns 0 on success.
362
 * @return      Returns 0 on success.
363
 *          Return ENOENT if there is no such phone handle.
363
 *          Return ENOENT if there is no such phone handle.
364
 */
364
 */
365
unative_t sys_ipc_call_sync_fast(unative_t phoneid, unative_t method,
365
unative_t sys_ipc_call_sync_fast(unative_t phoneid, unative_t method,
366
    unative_t arg1, unative_t arg2, unative_t arg3, ipc_data_t *data)
366
    unative_t arg1, unative_t arg2, unative_t arg3, ipc_data_t *data)
367
{
367
{
368
    call_t call;
368
    call_t call;
369
    phone_t *phone;
369
    phone_t *phone;
370
    int res;
370
    int res;
371
    int rc;
371
    int rc;
372
 
372
 
373
    GET_CHECK_PHONE(phone, phoneid, return ENOENT);
373
    GET_CHECK_PHONE(phone, phoneid, return ENOENT);
374
 
374
 
375
    ipc_call_static_init(&call);
375
    ipc_call_static_init(&call);
376
    IPC_SET_METHOD(call.data, method);
376
    IPC_SET_METHOD(call.data, method);
377
    IPC_SET_ARG1(call.data, arg1);
377
    IPC_SET_ARG1(call.data, arg1);
378
    IPC_SET_ARG2(call.data, arg2);
378
    IPC_SET_ARG2(call.data, arg2);
379
    IPC_SET_ARG3(call.data, arg3);
379
    IPC_SET_ARG3(call.data, arg3);
380
 
380
 
381
    if (!(res = request_preprocess(&call))) {
381
    if (!(res = request_preprocess(&call))) {
382
        ipc_call_sync(phone, &call);
382
        ipc_call_sync(phone, &call);
383
        process_answer(&call);
383
        process_answer(&call);
384
    } else {
384
    } else {
385
        IPC_SET_RETVAL(call.data, res);
385
        IPC_SET_RETVAL(call.data, res);
386
    }
386
    }
387
    rc = STRUCT_TO_USPACE(&data->args, &call.data.args);
387
    rc = STRUCT_TO_USPACE(&data->args, &call.data.args);
388
    if (rc != 0)
388
    if (rc != 0)
389
        return rc;
389
        return rc;
390
 
390
 
391
    return 0;
391
    return 0;
392
}
392
}
393
 
393
 
394
/** Make a synchronous IPC call allowing to transmit the entire payload.
394
/** Make a synchronous IPC call allowing to transmit the entire payload.
395
 *
395
 *
396
 * @param phoneid   Phone handle for the call.
396
 * @param phoneid   Phone handle for the call.
397
 * @param question  Userspace address of call data with the request.
397
 * @param question  Userspace address of call data with the request.
398
 * @param reply     Userspace address of call data where to store the
398
 * @param reply     Userspace address of call data where to store the
399
 *          answer.
399
 *          answer.
400
 *
400
 *
401
 * @return      Zero on success or an error code.
401
 * @return      Zero on success or an error code.
402
 */
402
 */
403
unative_t sys_ipc_call_sync_slow(unative_t phoneid, ipc_data_t *question,
403
unative_t sys_ipc_call_sync_slow(unative_t phoneid, ipc_data_t *question,
404
    ipc_data_t *reply)
404
    ipc_data_t *reply)
405
{
405
{
406
    call_t call;
406
    call_t call;
407
    phone_t *phone;
407
    phone_t *phone;
408
    int res;
408
    int res;
409
    int rc;
409
    int rc;
410
 
410
 
411
    ipc_call_static_init(&call);
411
    ipc_call_static_init(&call);
412
    rc = copy_from_uspace(&call.data.args, &question->args,
412
    rc = copy_from_uspace(&call.data.args, &question->args,
413
        sizeof(call.data.args));
413
        sizeof(call.data.args));
414
    if (rc != 0)
414
    if (rc != 0)
415
        return (unative_t) rc;
415
        return (unative_t) rc;
416
 
416
 
417
    GET_CHECK_PHONE(phone, phoneid, return ENOENT);
417
    GET_CHECK_PHONE(phone, phoneid, return ENOENT);
418
 
418
 
419
    if (!(res = request_preprocess(&call))) {
419
    if (!(res = request_preprocess(&call))) {
420
        ipc_call_sync(phone, &call);
420
        ipc_call_sync(phone, &call);
421
        process_answer(&call);
421
        process_answer(&call);
422
    } else
422
    } else
423
        IPC_SET_RETVAL(call.data, res);
423
        IPC_SET_RETVAL(call.data, res);
424
 
424
 
425
    rc = STRUCT_TO_USPACE(&reply->args, &call.data.args);
425
    rc = STRUCT_TO_USPACE(&reply->args, &call.data.args);
426
    if (rc != 0)
426
    if (rc != 0)
427
        return rc;
427
        return rc;
428
 
428
 
429
    return 0;
429
    return 0;
430
}
430
}
431
 
431
 
432
/** Check that the task did not exceed the allowed limit of asynchronous calls.
432
/** Check that the task did not exceed the allowed limit of asynchronous calls.
433
 *
433
 *
434
 * @return      Return 0 if limit not reached or -1 if limit exceeded.
434
 * @return      Return 0 if limit not reached or -1 if limit exceeded.
435
 */
435
 */
436
static int check_call_limit(void)
436
static int check_call_limit(void)
437
{
437
{
438
    if (atomic_preinc(&TASK->active_calls) > IPC_MAX_ASYNC_CALLS) {
438
    if (atomic_preinc(&TASK->active_calls) > IPC_MAX_ASYNC_CALLS) {
439
        atomic_dec(&TASK->active_calls);
439
        atomic_dec(&TASK->active_calls);
440
        return -1;
440
        return -1;
441
    }
441
    }
442
    return 0;
442
    return 0;
443
}
443
}
444
 
444
 
445
/** Make a fast asynchronous call over IPC.
445
/** Make a fast asynchronous call over IPC.
446
 *
446
 *
447
 * This function can only handle two arguments of payload, but is faster than
447
 * This function can only handle four arguments of payload, but is faster than
448
 * the generic function sys_ipc_call_async().
448
 * the generic function sys_ipc_call_async_slow().
449
 *
449
 *
450
 * @param phoneid   Phone handle for the call.
450
 * @param phoneid   Phone handle for the call.
451
 * @param method    Method of the call.
451
 * @param method    Method of the call.
452
 * @param arg1      Service-defined payload argument.
452
 * @param arg1      Service-defined payload argument.
453
 * @param arg2      Service-defined payload argument.
453
 * @param arg2      Service-defined payload argument.
-
 
454
 * @param arg3      Service-defined payload argument.
-
 
455
 * @param arg4      Service-defined payload argument.
454
 *
456
 *
455
 * @return      Return call hash on success.
457
 * @return      Return call hash on success.
456
 *          Return IPC_CALLRET_FATAL in case of a fatal error and
458
 *          Return IPC_CALLRET_FATAL in case of a fatal error and
457
 *          IPC_CALLRET_TEMPORARY if there are too many pending
459
 *          IPC_CALLRET_TEMPORARY if there are too many pending
458
 *          asynchronous requests; answers should be handled first.
460
 *          asynchronous requests; answers should be handled first.
459
 */
461
 */
460
unative_t sys_ipc_call_async_fast(unative_t phoneid, unative_t method,
462
unative_t sys_ipc_call_async_fast(unative_t phoneid, unative_t method,
461
    unative_t arg1, unative_t arg2)
463
    unative_t arg1, unative_t arg2, unative_t arg3, unative_t arg4)
462
{
464
{
463
    call_t *call;
465
    call_t *call;
464
    phone_t *phone;
466
    phone_t *phone;
465
    int res;
467
    int res;
466
 
468
 
467
    if (check_call_limit())
469
    if (check_call_limit())
468
        return IPC_CALLRET_TEMPORARY;
470
        return IPC_CALLRET_TEMPORARY;
469
 
471
 
470
    GET_CHECK_PHONE(phone, phoneid, return IPC_CALLRET_FATAL);
472
    GET_CHECK_PHONE(phone, phoneid, return IPC_CALLRET_FATAL);
471
 
473
 
472
    call = ipc_call_alloc(0);
474
    call = ipc_call_alloc(0);
473
    IPC_SET_METHOD(call->data, method);
475
    IPC_SET_METHOD(call->data, method);
474
    IPC_SET_ARG1(call->data, arg1);
476
    IPC_SET_ARG1(call->data, arg1);
475
    IPC_SET_ARG2(call->data, arg2);
477
    IPC_SET_ARG2(call->data, arg2);
476
    IPC_SET_ARG3(call->data, 0);
478
    IPC_SET_ARG3(call->data, arg3);
-
 
479
    IPC_SET_ARG4(call->data, arg4);
477
 
480
 
478
    if (!(res = request_preprocess(call)))
481
    if (!(res = request_preprocess(call)))
479
        ipc_call(phone, call);
482
        ipc_call(phone, call);
480
    else
483
    else
481
        ipc_backsend_err(phone, call, res);
484
        ipc_backsend_err(phone, call, res);
482
 
485
 
483
    return (unative_t) call;
486
    return (unative_t) call;
484
}
487
}
485
 
488
 
486
/** Make an asynchronous IPC call allowing to transmit the entire payload.
489
/** Make an asynchronous IPC call allowing to transmit the entire payload.
487
 *
490
 *
488
 * @param phoneid   Phone handle for the call.
491
 * @param phoneid   Phone handle for the call.
489
 * @param data      Userspace address of call data with the request.
492
 * @param data      Userspace address of call data with the request.
490
 *
493
 *
491
 * @return      See sys_ipc_call_async_fast().
494
 * @return      See sys_ipc_call_async_fast().
492
 */
495
 */
493
unative_t sys_ipc_call_async(unative_t phoneid, ipc_data_t *data)
496
unative_t sys_ipc_call_async_slow(unative_t phoneid, ipc_data_t *data)
494
{
497
{
495
    call_t *call;
498
    call_t *call;
496
    phone_t *phone;
499
    phone_t *phone;
497
    int res;
500
    int res;
498
    int rc;
501
    int rc;
499
 
502
 
500
    if (check_call_limit())
503
    if (check_call_limit())
501
        return IPC_CALLRET_TEMPORARY;
504
        return IPC_CALLRET_TEMPORARY;
502
 
505
 
503
    GET_CHECK_PHONE(phone, phoneid, return IPC_CALLRET_FATAL);
506
    GET_CHECK_PHONE(phone, phoneid, return IPC_CALLRET_FATAL);
504
 
507
 
505
    call = ipc_call_alloc(0);
508
    call = ipc_call_alloc(0);
506
    rc = copy_from_uspace(&call->data.args, &data->args,
509
    rc = copy_from_uspace(&call->data.args, &data->args,
507
        sizeof(call->data.args));
510
        sizeof(call->data.args));
508
    if (rc != 0) {
511
    if (rc != 0) {
509
        ipc_call_free(call);
512
        ipc_call_free(call);
510
        return (unative_t) rc;
513
        return (unative_t) rc;
511
    }
514
    }
512
    if (!(res = request_preprocess(call)))
515
    if (!(res = request_preprocess(call)))
513
        ipc_call(phone, call);
516
        ipc_call(phone, call);
514
    else
517
    else
515
        ipc_backsend_err(phone, call, res);
518
        ipc_backsend_err(phone, call, res);
516
 
519
 
517
    return (unative_t) call;
520
    return (unative_t) call;
518
}
521
}
519
 
522
 
520
/** Forward a received call to another destination.
523
/** Forward a received call to another destination.
521
 *
524
 *
522
 * @param callid    Hash of the call to forward.
525
 * @param callid    Hash of the call to forward.
523
 * @param phoneid   Phone handle to use for forwarding.
526
 * @param phoneid   Phone handle to use for forwarding.
524
 * @param method    New method to use for the forwarded call.
527
 * @param method    New method to use for the forwarded call.
525
 * @param arg1      New value of the first argument for the forwarded call.
528
 * @param arg1      New value of the first argument for the forwarded call.
526
 *
529
 *
527
 * @return      Return 0 on succes, otherwise return an error code.
530
 * @return      Return 0 on succes, otherwise return an error code.
528
 *
531
 *
529
 * In case the original method is a system method, ARG1 and ARG2 are overwritten
532
 * In case the original method is a system method, ARG1 and ARG2 are overwritten
530
 * in the forwarded message with the new method and the new arg1, respectively.
533
 * in the forwarded message with the new method and the new arg1, respectively.
531
 * Otherwise the METHOD and ARG1 are rewritten with the new method and arg1,
534
 * Otherwise the METHOD and ARG1 are rewritten with the new method and arg1,
532
 * respectively. Also note there is a set of immutable methods, for which the
535
 * respectively. Also note there is a set of immutable methods, for which the
533
 * new method and argument is not set and these values are ignored.
536
 * new method and argument is not set and these values are ignored.
534
 *
537
 *
535
 * Warning: If implementing non-fast version, make sure that
538
 * Warning: If implementing non-fast version, make sure that
536
 *          ARG3 is not rewritten for certain system IPC
539
 *          ARG3 is not rewritten for certain system IPC
537
 */
540
 */
538
unative_t sys_ipc_forward_fast(unative_t callid, unative_t phoneid,
541
unative_t sys_ipc_forward_fast(unative_t callid, unative_t phoneid,
539
    unative_t method, unative_t arg1)
542
    unative_t method, unative_t arg1)
540
{
543
{
541
    call_t *call;
544
    call_t *call;
542
    phone_t *phone;
545
    phone_t *phone;
543
 
546
 
544
    call = get_call(callid);
547
    call = get_call(callid);
545
    if (!call)
548
    if (!call)
546
        return ENOENT;
549
        return ENOENT;
547
 
550
 
548
    call->flags |= IPC_CALL_FORWARDED;
551
    call->flags |= IPC_CALL_FORWARDED;
549
 
552
 
550
    GET_CHECK_PHONE(phone, phoneid, {
553
    GET_CHECK_PHONE(phone, phoneid, {
551
        IPC_SET_RETVAL(call->data, EFORWARD);
554
        IPC_SET_RETVAL(call->data, EFORWARD);
552
        ipc_answer(&TASK->answerbox, call);
555
        ipc_answer(&TASK->answerbox, call);
553
        return ENOENT;
556
        return ENOENT;
554
    });    
557
    });    
555
 
558
 
556
    if (!method_is_forwardable(IPC_GET_METHOD(call->data))) {
559
    if (!method_is_forwardable(IPC_GET_METHOD(call->data))) {
557
        IPC_SET_RETVAL(call->data, EFORWARD);
560
        IPC_SET_RETVAL(call->data, EFORWARD);
558
        ipc_answer(&TASK->answerbox, call);
561
        ipc_answer(&TASK->answerbox, call);
559
        return EPERM;
562
        return EPERM;
560
    }
563
    }
561
 
564
 
562
    /*
565
    /*
563
     * Userspace is not allowed to change method of system methods on
566
     * Userspace is not allowed to change method of system methods on
564
     * forward, allow changing ARG1 and ARG2 by means of method and arg1.
567
     * forward, allow changing ARG1 and ARG2 by means of method and arg1.
565
     * If the method is immutable, don't change anything.
568
     * If the method is immutable, don't change anything.
566
     */
569
     */
567
    if (!method_is_immutable(IPC_GET_METHOD(call->data))) {
570
    if (!method_is_immutable(IPC_GET_METHOD(call->data))) {
568
        if (method_is_system(IPC_GET_METHOD(call->data))) {
571
        if (method_is_system(IPC_GET_METHOD(call->data))) {
569
            if (IPC_GET_METHOD(call->data) == IPC_M_CONNECT_TO_ME)
572
            if (IPC_GET_METHOD(call->data) == IPC_M_CONNECT_TO_ME)
570
                phone_dealloc(IPC_GET_ARG3(call->data));
573
                phone_dealloc(IPC_GET_ARG3(call->data));
571
 
574
 
572
            IPC_SET_ARG1(call->data, method);
575
            IPC_SET_ARG1(call->data, method);
573
            IPC_SET_ARG2(call->data, arg1);
576
            IPC_SET_ARG2(call->data, arg1);
574
        } else {
577
        } else {
575
            IPC_SET_METHOD(call->data, method);
578
            IPC_SET_METHOD(call->data, method);
576
            IPC_SET_ARG1(call->data, arg1);
579
            IPC_SET_ARG1(call->data, arg1);
577
        }
580
        }
578
    }
581
    }
579
 
582
 
580
    return ipc_forward(call, phone, &TASK->answerbox);
583
    return ipc_forward(call, phone, &TASK->answerbox);
581
}
584
}
582
 
585
 
583
/** Answer an IPC call - fast version.
586
/** Answer an IPC call - fast version.
584
 *
587
 *
585
 * This function can handle only two return arguments of payload, but is faster
588
 * This function can handle only two return arguments of payload, but is faster
586
 * than the generic sys_ipc_answer().
589
 * than the generic sys_ipc_answer().
587
 *
590
 *
588
 * @param callid    Hash of the call to be answered.
591
 * @param callid    Hash of the call to be answered.
589
 * @param retval    Return value of the answer.
592
 * @param retval    Return value of the answer.
590
 * @param arg1      Service-defined return value.
593
 * @param arg1      Service-defined return value.
591
 * @param arg2      Service-defined return value.
594
 * @param arg2      Service-defined return value.
592
 *
595
 *
593
 * @return      Return 0 on success, otherwise return an error code.   
596
 * @return      Return 0 on success, otherwise return an error code.   
594
 */
597
 */
595
unative_t sys_ipc_answer_fast(unative_t callid, unative_t retval,
598
unative_t sys_ipc_answer_fast(unative_t callid, unative_t retval,
596
    unative_t arg1, unative_t arg2)
599
    unative_t arg1, unative_t arg2)
597
{
600
{
598
    call_t *call;
601
    call_t *call;
599
    ipc_data_t saved_data;
602
    ipc_data_t saved_data;
600
    int saveddata = 0;
603
    int saveddata = 0;
601
    int rc;
604
    int rc;
602
 
605
 
603
    /* Do not answer notification callids */
606
    /* Do not answer notification callids */
604
    if (callid & IPC_CALLID_NOTIFICATION)
607
    if (callid & IPC_CALLID_NOTIFICATION)
605
        return 0;
608
        return 0;
606
 
609
 
607
    call = get_call(callid);
610
    call = get_call(callid);
608
    if (!call)
611
    if (!call)
609
        return ENOENT;
612
        return ENOENT;
610
 
613
 
611
    if (answer_need_old(call)) {
614
    if (answer_need_old(call)) {
612
        memcpy(&saved_data, &call->data, sizeof(call->data));
615
        memcpy(&saved_data, &call->data, sizeof(call->data));
613
        saveddata = 1;
616
        saveddata = 1;
614
    }
617
    }
615
 
618
 
616
    IPC_SET_RETVAL(call->data, retval);
619
    IPC_SET_RETVAL(call->data, retval);
617
    IPC_SET_ARG1(call->data, arg1);
620
    IPC_SET_ARG1(call->data, arg1);
618
    IPC_SET_ARG2(call->data, arg2);
621
    IPC_SET_ARG2(call->data, arg2);
619
    rc = answer_preprocess(call, saveddata ? &saved_data : NULL);
622
    rc = answer_preprocess(call, saveddata ? &saved_data : NULL);
620
 
623
 
621
    ipc_answer(&TASK->answerbox, call);
624
    ipc_answer(&TASK->answerbox, call);
622
    return rc;
625
    return rc;
623
}
626
}
624
 
627
 
625
/** Answer an IPC call.
628
/** Answer an IPC call.
626
 *
629
 *
627
 * @param callid    Hash of the call to be answered.
630
 * @param callid    Hash of the call to be answered.
628
 * @param data      Userspace address of call data with the answer.
631
 * @param data      Userspace address of call data with the answer.
629
 *
632
 *
630
 * @return      Return 0 on success, otherwise return an error code.
633
 * @return      Return 0 on success, otherwise return an error code.
631
 */
634
 */
632
unative_t sys_ipc_answer(unative_t callid, ipc_data_t *data)
635
unative_t sys_ipc_answer(unative_t callid, ipc_data_t *data)
633
{
636
{
634
    call_t *call;
637
    call_t *call;
635
    ipc_data_t saved_data;
638
    ipc_data_t saved_data;
636
    int saveddata = 0;
639
    int saveddata = 0;
637
    int rc;
640
    int rc;
638
 
641
 
639
    /* Do not answer notification callids */
642
    /* Do not answer notification callids */
640
    if (callid & IPC_CALLID_NOTIFICATION)
643
    if (callid & IPC_CALLID_NOTIFICATION)
641
        return 0;
644
        return 0;
642
 
645
 
643
    call = get_call(callid);
646
    call = get_call(callid);
644
    if (!call)
647
    if (!call)
645
        return ENOENT;
648
        return ENOENT;
646
 
649
 
647
    if (answer_need_old(call)) {
650
    if (answer_need_old(call)) {
648
        memcpy(&saved_data, &call->data, sizeof(call->data));
651
        memcpy(&saved_data, &call->data, sizeof(call->data));
649
        saveddata = 1;
652
        saveddata = 1;
650
    }
653
    }
651
    rc = copy_from_uspace(&call->data.args, &data->args,
654
    rc = copy_from_uspace(&call->data.args, &data->args,
652
        sizeof(call->data.args));
655
        sizeof(call->data.args));
653
    if (rc != 0)
656
    if (rc != 0)
654
        return rc;
657
        return rc;
655
 
658
 
656
    rc = answer_preprocess(call, saveddata ? &saved_data : NULL);
659
    rc = answer_preprocess(call, saveddata ? &saved_data : NULL);
657
   
660
   
658
    ipc_answer(&TASK->answerbox, call);
661
    ipc_answer(&TASK->answerbox, call);
659
 
662
 
660
    return rc;
663
    return rc;
661
}
664
}
662
 
665
 
663
/** Hang up a phone.
666
/** Hang up a phone.
664
 *
667
 *
665
 * @param       Phone handle of the phone to be hung up.
668
 * @param       Phone handle of the phone to be hung up.
666
 *
669
 *
667
 * @return      Return 0 on success or an error code.
670
 * @return      Return 0 on success or an error code.
668
 */
671
 */
669
unative_t sys_ipc_hangup(int phoneid)
672
unative_t sys_ipc_hangup(int phoneid)
670
{
673
{
671
    phone_t *phone;
674
    phone_t *phone;
672
 
675
 
673
    GET_CHECK_PHONE(phone, phoneid, return ENOENT);
676
    GET_CHECK_PHONE(phone, phoneid, return ENOENT);
674
 
677
 
675
    if (ipc_phone_hangup(phone))
678
    if (ipc_phone_hangup(phone))
676
        return -1;
679
        return -1;
677
 
680
 
678
    return 0;
681
    return 0;
679
}
682
}
680
 
683
 
681
/** Wait for an incoming IPC call or an answer.
684
/** Wait for an incoming IPC call or an answer.
682
 *
685
 *
683
 * @param calldata  Pointer to buffer where the call/answer data is stored.
686
 * @param calldata  Pointer to buffer where the call/answer data is stored.
684
 * @param usec      Timeout. See waitq_sleep_timeout() for explanation.
687
 * @param usec      Timeout. See waitq_sleep_timeout() for explanation.
685
 * @param flags     Select mode of sleep operation. See waitq_sleep_timeout()
688
 * @param flags     Select mode of sleep operation. See waitq_sleep_timeout()
686
 *          for explanation.
689
 *          for explanation.
687
 *
690
 *
688
 * @return      Hash of the call.
691
 * @return      Hash of the call.
689
 *          If IPC_CALLID_NOTIFICATION bit is set in the hash, the
692
 *          If IPC_CALLID_NOTIFICATION bit is set in the hash, the
690
 *          call is a notification. IPC_CALLID_ANSWERED denotes an
693
 *          call is a notification. IPC_CALLID_ANSWERED denotes an
691
 *          answer.
694
 *          answer.
692
 */
695
 */
693
unative_t sys_ipc_wait_for_call(ipc_data_t *calldata, uint32_t usec, int flags)
696
unative_t sys_ipc_wait_for_call(ipc_data_t *calldata, uint32_t usec, int flags)
694
{
697
{
695
    call_t *call;
698
    call_t *call;
696
 
699
 
697
restart:   
700
restart:   
698
    call = ipc_wait_for_call(&TASK->answerbox, usec,
701
    call = ipc_wait_for_call(&TASK->answerbox, usec,
699
        flags | SYNCH_FLAGS_INTERRUPTIBLE);
702
        flags | SYNCH_FLAGS_INTERRUPTIBLE);
700
    if (!call)
703
    if (!call)
701
        return 0;
704
        return 0;
702
 
705
 
703
    if (call->flags & IPC_CALL_NOTIF) {
706
    if (call->flags & IPC_CALL_NOTIF) {
704
        ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC));
707
        ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC));
705
 
708
 
706
        /* Set in_phone_hash to the interrupt counter */
709
        /* Set in_phone_hash to the interrupt counter */
707
        call->data.phone = (void *) call->priv;
710
        call->data.phone = (void *) call->priv;
708
       
711
       
709
        STRUCT_TO_USPACE(calldata, &call->data);
712
        STRUCT_TO_USPACE(calldata, &call->data);
710
 
713
 
711
        ipc_call_free(call);
714
        ipc_call_free(call);
712
       
715
       
713
        return ((unative_t) call) | IPC_CALLID_NOTIFICATION;
716
        return ((unative_t) call) | IPC_CALLID_NOTIFICATION;
714
    }
717
    }
715
 
718
 
716
    if (call->flags & IPC_CALL_ANSWERED) {
719
    if (call->flags & IPC_CALL_ANSWERED) {
717
        process_answer(call);
720
        process_answer(call);
718
 
721
 
719
        ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC));
722
        ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC));
720
 
723
 
721
        atomic_dec(&TASK->active_calls);
724
        atomic_dec(&TASK->active_calls);
722
 
725
 
723
        if (call->flags & IPC_CALL_DISCARD_ANSWER) {
726
        if (call->flags & IPC_CALL_DISCARD_ANSWER) {
724
            ipc_call_free(call);
727
            ipc_call_free(call);
725
            goto restart;
728
            goto restart;
726
        }
729
        }
727
 
730
 
728
        STRUCT_TO_USPACE(&calldata->args, &call->data.args);
731
        STRUCT_TO_USPACE(&calldata->args, &call->data.args);
729
        ipc_call_free(call);
732
        ipc_call_free(call);
730
 
733
 
731
        return ((unative_t) call) | IPC_CALLID_ANSWERED;
734
        return ((unative_t) call) | IPC_CALLID_ANSWERED;
732
    }
735
    }
733
 
736
 
734
    if (process_request(&TASK->answerbox, call))
737
    if (process_request(&TASK->answerbox, call))
735
        goto restart;
738
        goto restart;
736
 
739
 
737
    /* Include phone address('id') of the caller in the request,
740
    /* Include phone address('id') of the caller in the request,
738
     * copy whole call->data, not only call->data.args */
741
     * copy whole call->data, not only call->data.args */
739
    if (STRUCT_TO_USPACE(calldata, &call->data)) {
742
    if (STRUCT_TO_USPACE(calldata, &call->data)) {
740
        return 0;
743
        return 0;
741
    }
744
    }
742
    return (unative_t)call;
745
    return (unative_t)call;
743
}
746
}
744
 
747
 
745
/** Connect an IRQ handler to a task.
748
/** Connect an IRQ handler to a task.
746
 *
749
 *
747
 * @param inr       IRQ number.
750
 * @param inr       IRQ number.
748
 * @param devno     Device number.
751
 * @param devno     Device number.
749
 * @param method    Method to be associated with the notification.
752
 * @param method    Method to be associated with the notification.
750
 * @param ucode     Uspace pointer to the top-half pseudocode.
753
 * @param ucode     Uspace pointer to the top-half pseudocode.
751
 *
754
 *
752
 * @return      EPERM or a return code returned by ipc_irq_register().
755
 * @return      EPERM or a return code returned by ipc_irq_register().
753
 */
756
 */
754
unative_t sys_ipc_register_irq(inr_t inr, devno_t devno, unative_t method,
757
unative_t sys_ipc_register_irq(inr_t inr, devno_t devno, unative_t method,
755
    irq_code_t *ucode)
758
    irq_code_t *ucode)
756
{
759
{
757
    if (!(cap_get(TASK) & CAP_IRQ_REG))
760
    if (!(cap_get(TASK) & CAP_IRQ_REG))
758
        return EPERM;
761
        return EPERM;
759
 
762
 
760
    return ipc_irq_register(&TASK->answerbox, inr, devno, method, ucode);
763
    return ipc_irq_register(&TASK->answerbox, inr, devno, method, ucode);
761
}
764
}
762
 
765
 
763
/** Disconnect an IRQ handler from a task.
766
/** Disconnect an IRQ handler from a task.
764
 *
767
 *
765
 * @param inr       IRQ number.
768
 * @param inr       IRQ number.
766
 * @param devno     Device number.
769
 * @param devno     Device number.
767
 *
770
 *
768
 * @return      Zero on success or EPERM on error..
771
 * @return      Zero on success or EPERM on error..
769
 */
772
 */
770
unative_t sys_ipc_unregister_irq(inr_t inr, devno_t devno)
773
unative_t sys_ipc_unregister_irq(inr_t inr, devno_t devno)
771
{
774
{
772
    if (!(cap_get(TASK) & CAP_IRQ_REG))
775
    if (!(cap_get(TASK) & CAP_IRQ_REG))
773
        return EPERM;
776
        return EPERM;
774
 
777
 
775
    ipc_irq_unregister(&TASK->answerbox, inr, devno);
778
    ipc_irq_unregister(&TASK->answerbox, inr, devno);
776
 
779
 
777
    return 0;
780
    return 0;
778
}
781
}
779
 
782
 
780
/** @}
783
/** @}
781
 */
784
 */
782
 
785