Subversion Repositories HelenOS

Rev

Rev 2662 | Rev 3020 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2662 Rev 2802
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
/* Lock ordering
35
/* Lock ordering
36
 *
36
 *
37
 * First the answerbox, then the phone.
37
 * First the answerbox, then the phone.
38
 */
38
 */
39
 
39
 
40
#include <synch/spinlock.h>
40
#include <synch/spinlock.h>
41
#include <synch/waitq.h>
41
#include <synch/waitq.h>
42
#include <synch/synch.h>
42
#include <synch/synch.h>
43
#include <ipc/ipc.h>
43
#include <ipc/ipc.h>
44
#include <errno.h>
44
#include <errno.h>
45
#include <mm/slab.h>
45
#include <mm/slab.h>
46
#include <arch.h>
46
#include <arch.h>
47
#include <proc/task.h>
47
#include <proc/task.h>
48
#include <memstr.h>
48
#include <memstr.h>
49
#include <debug.h>
49
#include <debug.h>
50
 
50
 
51
#include <print.h>
51
#include <print.h>
52
#include <proc/thread.h>
52
#include <proc/thread.h>
53
#include <arch/interrupt.h>
53
#include <arch/interrupt.h>
54
#include <ipc/irq.h>
54
#include <ipc/irq.h>
55
 
55
 
56
/** Open channel that is assigned automatically to new tasks */
56
/** Open channel that is assigned automatically to new tasks */
57
answerbox_t *ipc_phone_0 = NULL;
57
answerbox_t *ipc_phone_0 = NULL;
58
 
58
 
59
static slab_cache_t *ipc_call_slab;
59
static slab_cache_t *ipc_call_slab;
60
 
60
 
61
/** Initialize a call structure.
61
/** Initialize a call structure.
62
 *
62
 *
63
 * @param call      Call structure to be initialized.
63
 * @param call      Call structure to be initialized.
64
 */
64
 */
65
static void _ipc_call_init(call_t *call)
65
static void _ipc_call_init(call_t *call)
66
{
66
{
67
    memsetb((uintptr_t) call, sizeof(*call), 0);
67
    memsetb((uintptr_t) call, sizeof(*call), 0);
68
    call->callerbox = &TASK->answerbox;
68
    call->callerbox = &TASK->answerbox;
69
    call->sender = TASK;
69
    call->sender = TASK;
70
    call->buffer = NULL;
70
    call->buffer = NULL;
71
}
71
}
72
 
72
 
73
/** Allocate and initialize a call structure.
73
/** Allocate and initialize a call structure.
74
 *
74
 *
75
 * The call is initialized, so that the reply will be directed to
75
 * The call is initialized, so that the reply will be directed to
76
 * TASK->answerbox.
76
 * TASK->answerbox.
77
 *
77
 *
78
 * @param flags     Parameters for slab_alloc (e.g FRAME_ATOMIC).
78
 * @param flags     Parameters for slab_alloc (e.g FRAME_ATOMIC).
79
 *
79
 *
80
 * @return      If flags permit it, return NULL, or initialized kernel
80
 * @return      If flags permit it, return NULL, or initialized kernel
81
 *          call structure.
81
 *          call structure.
82
 */
82
 */
83
call_t *ipc_call_alloc(int flags)
83
call_t *ipc_call_alloc(int flags)
84
{
84
{
85
    call_t *call;
85
    call_t *call;
86
 
86
 
87
    call = slab_alloc(ipc_call_slab, flags);
87
    call = slab_alloc(ipc_call_slab, flags);
88
    _ipc_call_init(call);
88
    _ipc_call_init(call);
89
 
89
 
90
    return call;
90
    return call;
91
}
91
}
92
 
92
 
93
/** Initialize a statically allocated call structure.
93
/** Initialize a statically allocated call structure.
94
 *
94
 *
95
 * @param call      Statically allocated kernel call structure to be
95
 * @param call      Statically allocated kernel call structure to be
96
 *          initialized.
96
 *          initialized.
97
 */
97
 */
98
void ipc_call_static_init(call_t *call)
98
void ipc_call_static_init(call_t *call)
99
{
99
{
100
    _ipc_call_init(call);
100
    _ipc_call_init(call);
101
    call->flags |= IPC_CALL_STATIC_ALLOC;
101
    call->flags |= IPC_CALL_STATIC_ALLOC;
102
}
102
}
103
 
103
 
104
/** Deallocate a call structure.
104
/** Deallocate a call structure.
105
 *
105
 *
106
 * @param call      Call structure to be freed.
106
 * @param call      Call structure to be freed.
107
 */
107
 */
108
void ipc_call_free(call_t *call)
108
void ipc_call_free(call_t *call)
109
{
109
{
110
    ASSERT(!(call->flags & IPC_CALL_STATIC_ALLOC));
110
    ASSERT(!(call->flags & IPC_CALL_STATIC_ALLOC));
111
    /* Check to see if we have data in the IPC_M_DATA_SEND buffer. */
111
    /* Check to see if we have data in the IPC_M_DATA_SEND buffer. */
112
    if (call->buffer)
112
    if (call->buffer)
113
        free(call->buffer);
113
        free(call->buffer);
114
    slab_free(ipc_call_slab, call);
114
    slab_free(ipc_call_slab, call);
115
}
115
}
116
 
116
 
117
/** Initialize an answerbox structure.
117
/** Initialize an answerbox structure.
118
 *
118
 *
119
 * @param box       Answerbox structure to be initialized.
119
 * @param box       Answerbox structure to be initialized.
-
 
120
 * @param task      Task to which the answerbox belongs.
120
 */
121
 */
121
void ipc_answerbox_init(answerbox_t *box)
122
void ipc_answerbox_init(answerbox_t *box, task_t *task)
122
{
123
{
123
    spinlock_initialize(&box->lock, "ipc_box_lock");
124
    spinlock_initialize(&box->lock, "ipc_box_lock");
124
    spinlock_initialize(&box->irq_lock, "ipc_box_irqlock");
125
    spinlock_initialize(&box->irq_lock, "ipc_box_irqlock");
125
    waitq_initialize(&box->wq);
126
    waitq_initialize(&box->wq);
126
    list_initialize(&box->connected_phones);
127
    list_initialize(&box->connected_phones);
127
    list_initialize(&box->calls);
128
    list_initialize(&box->calls);
128
    list_initialize(&box->dispatched_calls);
129
    list_initialize(&box->dispatched_calls);
129
    list_initialize(&box->answers);
130
    list_initialize(&box->answers);
130
    list_initialize(&box->irq_notifs);
131
    list_initialize(&box->irq_notifs);
131
    list_initialize(&box->irq_head);
132
    list_initialize(&box->irq_head);
132
    box->task = TASK;
133
    box->task = task;
133
}
134
}
134
 
135
 
135
/** Connect a phone to an answerbox.
136
/** Connect a phone to an answerbox.
136
 *
137
 *
137
 * @param phone     Initialized phone structure.
138
 * @param phone     Initialized phone structure.
138
 * @param box       Initialized answerbox structure.
139
 * @param box       Initialized answerbox structure.
139
 */
140
 */
140
void ipc_phone_connect(phone_t *phone, answerbox_t *box)
141
void ipc_phone_connect(phone_t *phone, answerbox_t *box)
141
{
142
{
142
    spinlock_lock(&phone->lock);
143
    spinlock_lock(&phone->lock);
143
 
144
 
144
    phone->state = IPC_PHONE_CONNECTED;
145
    phone->state = IPC_PHONE_CONNECTED;
145
    phone->callee = box;
146
    phone->callee = box;
146
 
147
 
147
    spinlock_lock(&box->lock);
148
    spinlock_lock(&box->lock);
148
    list_append(&phone->link, &box->connected_phones);
149
    list_append(&phone->link, &box->connected_phones);
149
    spinlock_unlock(&box->lock);
150
    spinlock_unlock(&box->lock);
150
 
151
 
151
    spinlock_unlock(&phone->lock);
152
    spinlock_unlock(&phone->lock);
152
}
153
}
153
 
154
 
154
/** Initialize a phone structure.
155
/** Initialize a phone structure.
155
 *
156
 *
156
 * @param phone     Phone structure to be initialized.
157
 * @param phone     Phone structure to be initialized.
157
 */
158
 */
158
void ipc_phone_init(phone_t *phone)
159
void ipc_phone_init(phone_t *phone)
159
{
160
{
160
    spinlock_initialize(&phone->lock, "phone_lock");
161
    spinlock_initialize(&phone->lock, "phone_lock");
161
    phone->callee = NULL;
162
    phone->callee = NULL;
162
    phone->state = IPC_PHONE_FREE;
163
    phone->state = IPC_PHONE_FREE;
163
    atomic_set(&phone->active_calls, 0);
164
    atomic_set(&phone->active_calls, 0);
164
}
165
}
165
 
166
 
166
/** Helper function to facilitate synchronous calls.
167
/** Helper function to facilitate synchronous calls.
167
 *
168
 *
168
 * @param phone     Destination kernel phone structure.
169
 * @param phone     Destination kernel phone structure.
169
 * @param request   Call structure with request.
170
 * @param request   Call structure with request.
170
 */
171
 */
171
void ipc_call_sync(phone_t *phone, call_t *request)
172
void ipc_call_sync(phone_t *phone, call_t *request)
172
{
173
{
173
    answerbox_t sync_box;
174
    answerbox_t sync_box;
174
 
175
 
175
    ipc_answerbox_init(&sync_box);
176
    ipc_answerbox_init(&sync_box, TASK);
176
 
177
 
177
    /* We will receive data in a special box. */
178
    /* We will receive data in a special box. */
178
    request->callerbox = &sync_box;
179
    request->callerbox = &sync_box;
179
 
180
 
180
    ipc_call(phone, request);
181
    ipc_call(phone, request);
181
    ipc_wait_for_call(&sync_box, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE);
182
    ipc_wait_for_call(&sync_box, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE);
182
}
183
}
183
 
184
 
184
/** Answer a message which was not dispatched and is not listed in any queue.
185
/** Answer a message which was not dispatched and is not listed in any queue.
185
 *
186
 *
186
 * @param call      Call structure to be answered.
187
 * @param call      Call structure to be answered.
187
 */
188
 */
188
static void _ipc_answer_free_call(call_t *call)
189
static void _ipc_answer_free_call(call_t *call)
189
{
190
{
190
    answerbox_t *callerbox = call->callerbox;
191
    answerbox_t *callerbox = call->callerbox;
191
 
192
 
192
    call->flags |= IPC_CALL_ANSWERED;
193
    call->flags |= IPC_CALL_ANSWERED;
193
 
194
 
194
    spinlock_lock(&callerbox->lock);
195
    spinlock_lock(&callerbox->lock);
195
    list_append(&call->link, &callerbox->answers);
196
    list_append(&call->link, &callerbox->answers);
196
    spinlock_unlock(&callerbox->lock);
197
    spinlock_unlock(&callerbox->lock);
197
    waitq_wakeup(&callerbox->wq, WAKEUP_FIRST);
198
    waitq_wakeup(&callerbox->wq, WAKEUP_FIRST);
198
}
199
}
199
 
200
 
200
/** Answer a message which is in a callee queue.
201
/** Answer a message which is in a callee queue.
201
 *
202
 *
202
 * @param box       Answerbox that is answering the message.
203
 * @param box       Answerbox that is answering the message.
203
 * @param call      Modified request that is being sent back.
204
 * @param call      Modified request that is being sent back.
204
 */
205
 */
205
void ipc_answer(answerbox_t *box, call_t *call)
206
void ipc_answer(answerbox_t *box, call_t *call)
206
{
207
{
207
    /* Remove from active box */
208
    /* Remove from active box */
208
    spinlock_lock(&box->lock);
209
    spinlock_lock(&box->lock);
209
    list_remove(&call->link);
210
    list_remove(&call->link);
210
    spinlock_unlock(&box->lock);
211
    spinlock_unlock(&box->lock);
211
    /* Send back answer */
212
    /* Send back answer */
212
    _ipc_answer_free_call(call);
213
    _ipc_answer_free_call(call);
213
}
214
}
214
 
215
 
215
/** Simulate sending back a message.
216
/** Simulate sending back a message.
216
 *
217
 *
217
 * Most errors are better handled by forming a normal backward
218
 * Most errors are better handled by forming a normal backward
218
 * message and sending it as a normal answer.
219
 * message and sending it as a normal answer.
219
 *
220
 *
220
 * @param phone     Phone structure the call should appear to come from.
221
 * @param phone     Phone structure the call should appear to come from.
221
 * @param call      Call structure to be answered.
222
 * @param call      Call structure to be answered.
222
 * @param err       Return value to be used for the answer.
223
 * @param err       Return value to be used for the answer.
223
 */
224
 */
224
void ipc_backsend_err(phone_t *phone, call_t *call, unative_t err)
225
void ipc_backsend_err(phone_t *phone, call_t *call, unative_t err)
225
{
226
{
226
    call->data.phone = phone;
227
    call->data.phone = phone;
227
    atomic_inc(&phone->active_calls);
228
    atomic_inc(&phone->active_calls);
228
    IPC_SET_RETVAL(call->data, err);
229
    IPC_SET_RETVAL(call->data, err);
229
    _ipc_answer_free_call(call);
230
    _ipc_answer_free_call(call);
230
}
231
}
231
 
232
 
232
/** Unsafe unchecking version of ipc_call.
233
/** Unsafe unchecking version of ipc_call.
233
 *
234
 *
234
 * @param phone     Phone structure the call comes from.
235
 * @param phone     Phone structure the call comes from.
235
 * @param box       Destination answerbox structure.
236
 * @param box       Destination answerbox structure.
236
 * @param call      Call structure with request.
237
 * @param call      Call structure with request.
237
 */
238
 */
238
static void _ipc_call(phone_t *phone, answerbox_t *box, call_t *call)
239
static void _ipc_call(phone_t *phone, answerbox_t *box, call_t *call)
239
{
240
{
240
    if (!(call->flags & IPC_CALL_FORWARDED)) {
241
    if (!(call->flags & IPC_CALL_FORWARDED)) {
241
        atomic_inc(&phone->active_calls);
242
        atomic_inc(&phone->active_calls);
242
        call->data.phone = phone;
243
        call->data.phone = phone;
243
    }
244
    }
244
 
245
 
245
    spinlock_lock(&box->lock);
246
    spinlock_lock(&box->lock);
246
    list_append(&call->link, &box->calls);
247
    list_append(&call->link, &box->calls);
247
    spinlock_unlock(&box->lock);
248
    spinlock_unlock(&box->lock);
248
    waitq_wakeup(&box->wq, WAKEUP_FIRST);
249
    waitq_wakeup(&box->wq, WAKEUP_FIRST);
249
}
250
}
250
 
251
 
251
/** Send an asynchronous request using a phone to an answerbox.
252
/** Send an asynchronous request using a phone to an answerbox.
252
 *
253
 *
253
 * @param phone     Phone structure the call comes from and which is
254
 * @param phone     Phone structure the call comes from and which is
254
 *          connected to the destination answerbox.
255
 *          connected to the destination answerbox.
255
 * @param call      Call structure with request.
256
 * @param call      Call structure with request.
256
 *
257
 *
257
 * @return      Return 0 on success, ENOENT on error.
258
 * @return      Return 0 on success, ENOENT on error.
258
 */
259
 */
259
int ipc_call(phone_t *phone, call_t *call)
260
int ipc_call(phone_t *phone, call_t *call)
260
{
261
{
261
    answerbox_t *box;
262
    answerbox_t *box;
262
 
263
 
263
    spinlock_lock(&phone->lock);
264
    spinlock_lock(&phone->lock);
264
    if (phone->state != IPC_PHONE_CONNECTED) {
265
    if (phone->state != IPC_PHONE_CONNECTED) {
265
        spinlock_unlock(&phone->lock);
266
        spinlock_unlock(&phone->lock);
266
        if (call->flags & IPC_CALL_FORWARDED) {
267
        if (call->flags & IPC_CALL_FORWARDED) {
267
            IPC_SET_RETVAL(call->data, EFORWARD);
268
            IPC_SET_RETVAL(call->data, EFORWARD);
268
            _ipc_answer_free_call(call);
269
            _ipc_answer_free_call(call);
269
        } else {
270
        } else {
270
            if (phone->state == IPC_PHONE_HUNGUP)
271
            if (phone->state == IPC_PHONE_HUNGUP)
271
                ipc_backsend_err(phone, call, EHANGUP);
272
                ipc_backsend_err(phone, call, EHANGUP);
272
            else
273
            else
273
                ipc_backsend_err(phone, call, ENOENT);
274
                ipc_backsend_err(phone, call, ENOENT);
274
        }
275
        }
275
        return ENOENT;
276
        return ENOENT;
276
    }
277
    }
277
    box = phone->callee;
278
    box = phone->callee;
278
    _ipc_call(phone, box, call);
279
    _ipc_call(phone, box, call);
279
   
280
   
280
    spinlock_unlock(&phone->lock);
281
    spinlock_unlock(&phone->lock);
281
    return 0;
282
    return 0;
282
}
283
}
283
 
284
 
284
/** Disconnect phone from answerbox.
285
/** Disconnect phone from answerbox.
285
 *
286
 *
286
 * This call leaves the phone in the HUNGUP state. The change to 'free' is done
287
 * This call leaves the phone in the HUNGUP state. The change to 'free' is done
287
 * lazily later.
288
 * lazily later.
288
 *
289
 *
289
 * @param phone     Phone structure to be hung up.
290
 * @param phone     Phone structure to be hung up.
290
 *              
291
 *              
291
 * @return      Return 0 if the phone is disconnected.
292
 * @return      Return 0 if the phone is disconnected.
292
 *          Return -1 if the phone was already disconnected.
293
 *          Return -1 if the phone was already disconnected.
293
 */
294
 */
294
int ipc_phone_hangup(phone_t *phone)
295
int ipc_phone_hangup(phone_t *phone)
295
{
296
{
296
    answerbox_t *box;
297
    answerbox_t *box;
297
    call_t *call;
298
    call_t *call;
298
   
299
   
299
    spinlock_lock(&phone->lock);
300
    spinlock_lock(&phone->lock);
300
    if (phone->state == IPC_PHONE_FREE ||
301
    if (phone->state == IPC_PHONE_FREE ||
301
        phone->state == IPC_PHONE_HUNGUP ||
302
        phone->state == IPC_PHONE_HUNGUP ||
302
        phone->state == IPC_PHONE_CONNECTING) {
303
        phone->state == IPC_PHONE_CONNECTING) {
303
        spinlock_unlock(&phone->lock);
304
        spinlock_unlock(&phone->lock);
304
        return -1;
305
        return -1;
305
    }
306
    }
306
    box = phone->callee;
307
    box = phone->callee;
307
    if (phone->state != IPC_PHONE_SLAMMED) {
308
    if (phone->state != IPC_PHONE_SLAMMED) {
308
        /* Remove myself from answerbox */
309
        /* Remove myself from answerbox */
309
        spinlock_lock(&box->lock);
310
        spinlock_lock(&box->lock);
310
        list_remove(&phone->link);
311
        list_remove(&phone->link);
311
        spinlock_unlock(&box->lock);
312
        spinlock_unlock(&box->lock);
312
 
313
 
313
        if (phone->state != IPC_PHONE_SLAMMED) {
314
        if (phone->state != IPC_PHONE_SLAMMED) {
314
            call = ipc_call_alloc(0);
315
            call = ipc_call_alloc(0);
315
            IPC_SET_METHOD(call->data, IPC_M_PHONE_HUNGUP);
316
            IPC_SET_METHOD(call->data, IPC_M_PHONE_HUNGUP);
316
            call->flags |= IPC_CALL_DISCARD_ANSWER;
317
            call->flags |= IPC_CALL_DISCARD_ANSWER;
317
            _ipc_call(phone, box, call);
318
            _ipc_call(phone, box, call);
318
        }
319
        }
319
    }
320
    }
320
 
321
 
321
    phone->state = IPC_PHONE_HUNGUP;
322
    phone->state = IPC_PHONE_HUNGUP;
322
    spinlock_unlock(&phone->lock);
323
    spinlock_unlock(&phone->lock);
323
 
324
 
324
    return 0;
325
    return 0;
325
}
326
}
326
 
327
 
327
/** Forwards call from one answerbox to another one.
328
/** Forwards call from one answerbox to another one.
328
 *
329
 *
329
 * @param call      Call structure to be redirected.
330
 * @param call      Call structure to be redirected.
330
 * @param newphone  Phone structure to target answerbox.
331
 * @param newphone  Phone structure to target answerbox.
331
 * @param oldbox    Old answerbox structure.
332
 * @param oldbox    Old answerbox structure.
332
 * @param mode      Flags that specify mode of the forward operation.
333
 * @param mode      Flags that specify mode of the forward operation.
333
 *
334
 *
334
 * @return      Return 0 if forwarding succeeded or an error code if
335
 * @return      Return 0 if forwarding succeeded or an error code if
335
 *          there was error.
336
 *          there was error.
336
 *
337
 *
337
 * The return value serves only as an information for the forwarder,
338
 * The return value serves only as an information for the forwarder,
338
 * the original caller is notified automatically with EFORWARD.
339
 * the original caller is notified automatically with EFORWARD.
339
 */
340
 */
340
int ipc_forward(call_t *call, phone_t *newphone, answerbox_t *oldbox, int mode)
341
int ipc_forward(call_t *call, phone_t *newphone, answerbox_t *oldbox, int mode)
341
{
342
{
342
    spinlock_lock(&oldbox->lock);
343
    spinlock_lock(&oldbox->lock);
343
    list_remove(&call->link);
344
    list_remove(&call->link);
344
    spinlock_unlock(&oldbox->lock);
345
    spinlock_unlock(&oldbox->lock);
345
 
346
 
346
    if (mode & IPC_FF_ROUTE_FROM_ME)
347
    if (mode & IPC_FF_ROUTE_FROM_ME)
347
        call->data.phone = newphone;
348
        call->data.phone = newphone;
348
 
349
 
349
    return ipc_call(newphone, call);
350
    return ipc_call(newphone, call);
350
}
351
}
351
 
352
 
352
 
353
 
353
/** Wait for a phone call.
354
/** Wait for a phone call.
354
 *
355
 *
355
 * @param box       Answerbox expecting the call.
356
 * @param box       Answerbox expecting the call.
356
 * @param usec      Timeout in microseconds. See documentation for
357
 * @param usec      Timeout in microseconds. See documentation for
357
 *          waitq_sleep_timeout() for decription of its special
358
 *          waitq_sleep_timeout() for decription of its special
358
 *          meaning.
359
 *          meaning.
359
 * @param flags     Select mode of sleep operation. See documentation for
360
 * @param flags     Select mode of sleep operation. See documentation for
360
 *          waitq_sleep_timeout() for description of its special
361
 *          waitq_sleep_timeout() for description of its special
361
 *          meaning.
362
 *          meaning.
362
 * @return      Recived call structure or NULL.
363
 * @return      Recived call structure or NULL.
363
 *
364
 *
364
 * To distinguish between a call and an answer, have a look at call->flags.
365
 * To distinguish between a call and an answer, have a look at call->flags.
365
 */
366
 */
366
call_t *ipc_wait_for_call(answerbox_t *box, uint32_t usec, int flags)
367
call_t *ipc_wait_for_call(answerbox_t *box, uint32_t usec, int flags)
367
{
368
{
368
    call_t *request;
369
    call_t *request;
369
    ipl_t ipl;
370
    ipl_t ipl;
370
    int rc;
371
    int rc;
371
 
372
 
372
restart:
373
restart:
373
    rc = waitq_sleep_timeout(&box->wq, usec, flags);
374
    rc = waitq_sleep_timeout(&box->wq, usec, flags);
374
    if (SYNCH_FAILED(rc))
375
    if (SYNCH_FAILED(rc))
375
        return NULL;
376
        return NULL;
376
   
377
   
377
    spinlock_lock(&box->lock);
378
    spinlock_lock(&box->lock);
378
    if (!list_empty(&box->irq_notifs)) {
379
    if (!list_empty(&box->irq_notifs)) {
379
        ipl = interrupts_disable();
380
        ipl = interrupts_disable();
380
        spinlock_lock(&box->irq_lock);
381
        spinlock_lock(&box->irq_lock);
381
 
382
 
382
        request = list_get_instance(box->irq_notifs.next, call_t, link);
383
        request = list_get_instance(box->irq_notifs.next, call_t, link);
383
        list_remove(&request->link);
384
        list_remove(&request->link);
384
 
385
 
385
        spinlock_unlock(&box->irq_lock);
386
        spinlock_unlock(&box->irq_lock);
386
        interrupts_restore(ipl);
387
        interrupts_restore(ipl);
387
    } else if (!list_empty(&box->answers)) {
388
    } else if (!list_empty(&box->answers)) {
388
        /* Handle asynchronous answers */
389
        /* Handle asynchronous answers */
389
        request = list_get_instance(box->answers.next, call_t, link);
390
        request = list_get_instance(box->answers.next, call_t, link);
390
        list_remove(&request->link);
391
        list_remove(&request->link);
391
        atomic_dec(&request->data.phone->active_calls);
392
        atomic_dec(&request->data.phone->active_calls);
392
    } else if (!list_empty(&box->calls)) {
393
    } else if (!list_empty(&box->calls)) {
393
        /* Handle requests */
394
        /* Handle requests */
394
        request = list_get_instance(box->calls.next, call_t, link);
395
        request = list_get_instance(box->calls.next, call_t, link);
395
        list_remove(&request->link);
396
        list_remove(&request->link);
396
        /* Append request to dispatch queue */
397
        /* Append request to dispatch queue */
397
        list_append(&request->link, &box->dispatched_calls);
398
        list_append(&request->link, &box->dispatched_calls);
398
    } else {
399
    } else {
399
        /* This can happen regularly after ipc_cleanup */
400
        /* This can happen regularly after ipc_cleanup */
400
        spinlock_unlock(&box->lock);
401
        spinlock_unlock(&box->lock);
401
        goto restart;
402
        goto restart;
402
    }
403
    }
403
    spinlock_unlock(&box->lock);
404
    spinlock_unlock(&box->lock);
404
    return request;
405
    return request;
405
}
406
}
406
 
407
 
407
/** Answer all calls from list with EHANGUP answer.
408
/** Answer all calls from list with EHANGUP answer.
408
 *
409
 *
409
 * @param lst       Head of the list to be cleaned up.
410
 * @param lst       Head of the list to be cleaned up.
410
 */
411
 */
411
static void ipc_cleanup_call_list(link_t *lst)
412
static void ipc_cleanup_call_list(link_t *lst)
412
{
413
{
413
    call_t *call;
414
    call_t *call;
414
 
415
 
415
    while (!list_empty(lst)) {
416
    while (!list_empty(lst)) {
416
        call = list_get_instance(lst->next, call_t, link);
417
        call = list_get_instance(lst->next, call_t, link);
417
        if (call->buffer)
418
        if (call->buffer)
418
            free(call->buffer);
419
            free(call->buffer);
419
        list_remove(&call->link);
420
        list_remove(&call->link);
420
 
421
 
421
        IPC_SET_RETVAL(call->data, EHANGUP);
422
        IPC_SET_RETVAL(call->data, EHANGUP);
422
        _ipc_answer_free_call(call);
423
        _ipc_answer_free_call(call);
423
    }
424
    }
424
}
425
}
425
 
426
 
426
/** Cleans up all IPC communication of the current task.
427
/** Cleans up all IPC communication of the current task.
427
 *
428
 *
428
 * Note: ipc_hangup sets returning answerbox to TASK->answerbox, you
429
 * Note: ipc_hangup sets returning answerbox to TASK->answerbox, you
429
 * have to change it as well if you want to cleanup other tasks than TASK.
430
 * have to change it as well if you want to cleanup other tasks than TASK.
430
 */
431
 */
431
void ipc_cleanup(void)
432
void ipc_cleanup(void)
432
{
433
{
433
    int i;
434
    int i;
434
    call_t *call;
435
    call_t *call;
435
    phone_t *phone;
436
    phone_t *phone;
436
    DEADLOCK_PROBE_INIT(p_phonelck);
437
    DEADLOCK_PROBE_INIT(p_phonelck);
437
 
438
 
438
    /* Disconnect all our phones ('ipc_phone_hangup') */
439
    /* Disconnect all our phones ('ipc_phone_hangup') */
439
    for (i = 0; i < IPC_MAX_PHONES; i++)
440
    for (i = 0; i < IPC_MAX_PHONES; i++)
440
        ipc_phone_hangup(&TASK->phones[i]);
441
        ipc_phone_hangup(&TASK->phones[i]);
441
 
442
 
442
    /* Disconnect all connected irqs */
443
    /* Disconnect all connected irqs */
443
    ipc_irq_cleanup(&TASK->answerbox);
444
    ipc_irq_cleanup(&TASK->answerbox);
444
 
445
 
445
    /* Disconnect all phones connected to our answerbox */
446
    /* Disconnect all phones connected to our answerbox */
446
restart_phones:
447
restart_phones:
447
    spinlock_lock(&TASK->answerbox.lock);
448
    spinlock_lock(&TASK->answerbox.lock);
448
    while (!list_empty(&TASK->answerbox.connected_phones)) {
449
    while (!list_empty(&TASK->answerbox.connected_phones)) {
449
        phone = list_get_instance(TASK->answerbox.connected_phones.next,
450
        phone = list_get_instance(TASK->answerbox.connected_phones.next,
450
            phone_t, link);
451
            phone_t, link);
451
        if (!spinlock_trylock(&phone->lock)) {
452
        if (!spinlock_trylock(&phone->lock)) {
452
            spinlock_unlock(&TASK->answerbox.lock);
453
            spinlock_unlock(&TASK->answerbox.lock);
453
            DEADLOCK_PROBE(p_phonelck, DEADLOCK_THRESHOLD);
454
            DEADLOCK_PROBE(p_phonelck, DEADLOCK_THRESHOLD);
454
            goto restart_phones;
455
            goto restart_phones;
455
        }
456
        }
456
       
457
       
457
        /* Disconnect phone */
458
        /* Disconnect phone */
458
        ASSERT(phone->state == IPC_PHONE_CONNECTED);
459
        ASSERT(phone->state == IPC_PHONE_CONNECTED);
459
        phone->state = IPC_PHONE_SLAMMED;
460
        phone->state = IPC_PHONE_SLAMMED;
460
        list_remove(&phone->link);
461
        list_remove(&phone->link);
461
 
462
 
462
        spinlock_unlock(&phone->lock);
463
        spinlock_unlock(&phone->lock);
463
    }
464
    }
464
 
465
 
465
    /* Answer all messages in 'calls' and 'dispatched_calls' queues */
466
    /* Answer all messages in 'calls' and 'dispatched_calls' queues */
466
    ipc_cleanup_call_list(&TASK->answerbox.dispatched_calls);
467
    ipc_cleanup_call_list(&TASK->answerbox.dispatched_calls);
467
    ipc_cleanup_call_list(&TASK->answerbox.calls);
468
    ipc_cleanup_call_list(&TASK->answerbox.calls);
468
    spinlock_unlock(&TASK->answerbox.lock);
469
    spinlock_unlock(&TASK->answerbox.lock);
469
   
470
   
470
    /* Wait for all async answers to arrive */
471
    /* Wait for all async answers to arrive */
471
    while (1) {
472
    while (1) {
472
        /* Go through all phones, until all are FREE... */
473
        /* Go through all phones, until all are FREE... */
473
        /* Locking not needed, no one else should modify
474
        /* Locking not needed, no one else should modify
474
         * it, when we are in cleanup */
475
         * it, when we are in cleanup */
475
        for (i = 0; i < IPC_MAX_PHONES; i++) {
476
        for (i = 0; i < IPC_MAX_PHONES; i++) {
476
            if (TASK->phones[i].state == IPC_PHONE_HUNGUP &&
477
            if (TASK->phones[i].state == IPC_PHONE_HUNGUP &&
477
                atomic_get(&TASK->phones[i].active_calls) == 0)
478
                atomic_get(&TASK->phones[i].active_calls) == 0)
478
                TASK->phones[i].state = IPC_PHONE_FREE;
479
                TASK->phones[i].state = IPC_PHONE_FREE;
479
           
480
           
480
            /* Just for sure, we might have had some
481
            /* Just for sure, we might have had some
481
             * IPC_PHONE_CONNECTING phones */
482
             * IPC_PHONE_CONNECTING phones */
482
            if (TASK->phones[i].state == IPC_PHONE_CONNECTED)
483
            if (TASK->phones[i].state == IPC_PHONE_CONNECTED)
483
                ipc_phone_hangup(&TASK->phones[i]);
484
                ipc_phone_hangup(&TASK->phones[i]);
484
            /* If the hangup succeeded, it has sent a HANGUP
485
            /* If the hangup succeeded, it has sent a HANGUP
485
             * message, the IPC is now in HUNGUP state, we
486
             * message, the IPC is now in HUNGUP state, we
486
             * wait for the reply to come */
487
             * wait for the reply to come */
487
           
488
           
488
            if (TASK->phones[i].state != IPC_PHONE_FREE)
489
            if (TASK->phones[i].state != IPC_PHONE_FREE)
489
                break;
490
                break;
490
        }
491
        }
491
        /* Voila, got into cleanup */
492
        /* Voila, got into cleanup */
492
        if (i == IPC_MAX_PHONES)
493
        if (i == IPC_MAX_PHONES)
493
            break;
494
            break;
494
       
495
       
495
        call = ipc_wait_for_call(&TASK->answerbox, SYNCH_NO_TIMEOUT,
496
        call = ipc_wait_for_call(&TASK->answerbox, SYNCH_NO_TIMEOUT,
496
            SYNCH_FLAGS_NONE);
497
            SYNCH_FLAGS_NONE);
497
        ASSERT((call->flags & IPC_CALL_ANSWERED) ||
498
        ASSERT((call->flags & IPC_CALL_ANSWERED) ||
498
            (call->flags & IPC_CALL_NOTIF));
499
            (call->flags & IPC_CALL_NOTIF));
499
        ASSERT(!(call->flags & IPC_CALL_STATIC_ALLOC));
500
        ASSERT(!(call->flags & IPC_CALL_STATIC_ALLOC));
500
       
501
       
501
        atomic_dec(&TASK->active_calls);
502
        atomic_dec(&TASK->active_calls);
502
        ipc_call_free(call);
503
        ipc_call_free(call);
503
    }
504
    }
504
}
505
}
505
 
506
 
506
 
507
 
507
/** Initilize IPC subsystem */
508
/** Initilize IPC subsystem */
508
void ipc_init(void)
509
void ipc_init(void)
509
{
510
{
510
    ipc_call_slab = slab_cache_create("ipc_call", sizeof(call_t), 0, NULL,
511
    ipc_call_slab = slab_cache_create("ipc_call", sizeof(call_t), 0, NULL,
511
        NULL, 0);
512
        NULL, 0);
512
}
513
}
513
 
514
 
514
 
515
 
515
/** List answerbox contents.
516
/** List answerbox contents.
516
 *
517
 *
517
 * @param taskid    Task ID.
518
 * @param taskid    Task ID.
518
 */
519
 */
519
void ipc_print_task(task_id_t taskid)
520
void ipc_print_task(task_id_t taskid)
520
{
521
{
521
    task_t *task;
522
    task_t *task;
522
    int i;
523
    int i;
523
    call_t *call;
524
    call_t *call;
524
    link_t *tmp;
525
    link_t *tmp;
525
   
526
   
526
    spinlock_lock(&tasks_lock);
527
    spinlock_lock(&tasks_lock);
527
    task = task_find_by_id(taskid);
528
    task = task_find_by_id(taskid);
528
    if (task)
529
    if (task)
529
        spinlock_lock(&task->lock);
530
        spinlock_lock(&task->lock);
530
    spinlock_unlock(&tasks_lock);
531
    spinlock_unlock(&tasks_lock);
531
    if (!task)
532
    if (!task)
532
        return;
533
        return;
533
 
534
 
534
    /* Print opened phones & details */
535
    /* Print opened phones & details */
535
    printf("PHONE:\n");
536
    printf("PHONE:\n");
536
    for (i = 0; i < IPC_MAX_PHONES; i++) {
537
    for (i = 0; i < IPC_MAX_PHONES; i++) {
537
        spinlock_lock(&task->phones[i].lock);
538
        spinlock_lock(&task->phones[i].lock);
538
        if (task->phones[i].state != IPC_PHONE_FREE) {
539
        if (task->phones[i].state != IPC_PHONE_FREE) {
539
            printf("%d: ", i);
540
            printf("%d: ", i);
540
            switch (task->phones[i].state) {
541
            switch (task->phones[i].state) {
541
            case IPC_PHONE_CONNECTING:
542
            case IPC_PHONE_CONNECTING:
542
                printf("connecting ");
543
                printf("connecting ");
543
                break;
544
                break;
544
            case IPC_PHONE_CONNECTED:
545
            case IPC_PHONE_CONNECTED:
545
                printf("connected to: %p ",
546
                printf("connected to: %p ",
546
                       task->phones[i].callee);
547
                       task->phones[i].callee);
547
                break;
548
                break;
548
            case IPC_PHONE_SLAMMED:
549
            case IPC_PHONE_SLAMMED:
549
                printf("slammed by: %p ",
550
                printf("slammed by: %p ",
550
                       task->phones[i].callee);
551
                       task->phones[i].callee);
551
                break;
552
                break;
552
            case IPC_PHONE_HUNGUP:
553
            case IPC_PHONE_HUNGUP:
553
                printf("hung up - was: %p ",
554
                printf("hung up - was: %p ",
554
                       task->phones[i].callee);
555
                       task->phones[i].callee);
555
                break;
556
                break;
556
            default:
557
            default:
557
                break;
558
                break;
558
            }
559
            }
559
            printf("active: %d\n",
560
            printf("active: %d\n",
560
                atomic_get(&task->phones[i].active_calls));
561
                atomic_get(&task->phones[i].active_calls));
561
        }
562
        }
562
        spinlock_unlock(&task->phones[i].lock);
563
        spinlock_unlock(&task->phones[i].lock);
563
    }
564
    }
564
 
565
 
565
 
566
 
566
    /* Print answerbox - calls */
567
    /* Print answerbox - calls */
567
    spinlock_lock(&task->answerbox.lock);
568
    spinlock_lock(&task->answerbox.lock);
568
    printf("ABOX - CALLS:\n");
569
    printf("ABOX - CALLS:\n");
569
    for (tmp = task->answerbox.calls.next; tmp != &task->answerbox.calls;
570
    for (tmp = task->answerbox.calls.next; tmp != &task->answerbox.calls;
570
        tmp = tmp->next) {
571
        tmp = tmp->next) {
571
        call = list_get_instance(tmp, call_t, link);
572
        call = list_get_instance(tmp, call_t, link);
572
        printf("Callid: %p Srctask:%llu M:%d A1:%d A2:%d A3:%d "
573
        printf("Callid: %p Srctask:%llu M:%d A1:%d A2:%d A3:%d "
573
            "A4:%d A5:%d Flags:%x\n", call, call->sender->taskid,
574
            "A4:%d A5:%d Flags:%x\n", call, call->sender->taskid,
574
            IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
575
            IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
575
            IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data),
576
            IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data),
576
            IPC_GET_ARG4(call->data), IPC_GET_ARG5(call->data),
577
            IPC_GET_ARG4(call->data), IPC_GET_ARG5(call->data),
577
            call->flags);
578
            call->flags);
578
    }
579
    }
579
    /* Print answerbox - calls */
580
    /* Print answerbox - calls */
580
    printf("ABOX - DISPATCHED CALLS:\n");
581
    printf("ABOX - DISPATCHED CALLS:\n");
581
    for (tmp=task->answerbox.dispatched_calls.next;
582
    for (tmp=task->answerbox.dispatched_calls.next;
582
         tmp != &task->answerbox.dispatched_calls;
583
         tmp != &task->answerbox.dispatched_calls;
583
         tmp = tmp->next) {
584
         tmp = tmp->next) {
584
        call = list_get_instance(tmp, call_t, link);
585
        call = list_get_instance(tmp, call_t, link);
585
        printf("Callid: %p Srctask:%llu M:%d A1:%d A2:%d A3:%d "
586
        printf("Callid: %p Srctask:%llu M:%d A1:%d A2:%d A3:%d "
586
            "A4:%d A5:%d Flags:%x\n", call, call->sender->taskid,
587
            "A4:%d A5:%d Flags:%x\n", call, call->sender->taskid,
587
            IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
588
            IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
588
            IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data),
589
            IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data),
589
            IPC_GET_ARG4(call->data), IPC_GET_ARG5(call->data),
590
            IPC_GET_ARG4(call->data), IPC_GET_ARG5(call->data),
590
            call->flags);
591
            call->flags);
591
    }
592
    }
592
    /* Print answerbox - calls */
593
    /* Print answerbox - calls */
593
    printf("ABOX - ANSWERS:\n");
594
    printf("ABOX - ANSWERS:\n");
594
    for (tmp = task->answerbox.answers.next; tmp != &task->answerbox.answers;
595
    for (tmp = task->answerbox.answers.next; tmp != &task->answerbox.answers;
595
        tmp = tmp->next) {
596
        tmp = tmp->next) {
596
        call = list_get_instance(tmp, call_t, link);
597
        call = list_get_instance(tmp, call_t, link);
597
        printf("Callid:%p M:%d A1:%d A2:%d A3:%d A4:%d A5:%d Flags:%x\n",
598
        printf("Callid:%p M:%d A1:%d A2:%d A3:%d A4:%d A5:%d Flags:%x\n",
598
            call, IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
599
            call, IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
599
            IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data),
600
            IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data),
600
            IPC_GET_ARG4(call->data), IPC_GET_ARG5(call->data),
601
            IPC_GET_ARG4(call->data), IPC_GET_ARG5(call->data),
601
            call->flags);
602
            call->flags);
602
    }
603
    }
603
 
604
 
604
    spinlock_unlock(&task->answerbox.lock);
605
    spinlock_unlock(&task->answerbox.lock);
605
    spinlock_unlock(&task->lock);
606
    spinlock_unlock(&task->lock);
606
}
607
}
607
 
608
 
608
/** @}
609
/** @}
609
 */
610
 */
610
 
611