source: mainline/kernel/generic/src/ipc/ipc.c@ ddb0df5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since ddb0df5 was 74965d2, checked in by Jakub Jermar <jakub@…>, 17 years ago

Demasquerade the caller phone during ipc_answer_n() rather than in
ipc_wait_for_call().

  • Property mode set to 100644
File size: 17.1 KB
RevLine 
[6d9c49a]1/*
[df4ed85]2 * Copyright (c) 2006 Ondrej Palkovsky
[6d9c49a]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[cc73a8a1]29/** @addtogroup genericipc
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[6d9c49a]35/* Lock ordering
36 *
[8b243f2]37 * First the answerbox, then the phone.
[6d9c49a]38 */
39
[ff48a15]40#include <synch/synch.h>
[2ba7810]41#include <synch/spinlock.h>
[ff48a15]42#include <synch/mutex.h>
[2ba7810]43#include <synch/waitq.h>
[bd5a663]44#include <synch/synch.h>
[6d9c49a]45#include <ipc/ipc.h>
46#include <errno.h>
47#include <mm/slab.h>
48#include <arch.h>
49#include <proc/task.h>
50#include <memstr.h>
51#include <debug.h>
52
53#include <print.h>
54#include <proc/thread.h>
[5626277]55#include <arch/interrupt.h>
[162f919]56#include <ipc/irq.h>
[6d9c49a]57
[8b243f2]58/** Open channel that is assigned automatically to new tasks */
[e74cb73]59answerbox_t *ipc_phone_0 = NULL;
[6d9c49a]60
61static slab_cache_t *ipc_call_slab;
62
[8b243f2]63/** Initialize a call structure.
64 *
65 * @param call Call structure to be initialized.
66 */
[ba81cab]67static void _ipc_call_init(call_t *call)
68{
[e32e092]69 memsetb(call, sizeof(*call), 0);
[ba81cab]70 call->callerbox = &TASK->answerbox;
71 call->sender = TASK;
[7918fce]72 call->buffer = NULL;
[ba81cab]73}
74
[8b243f2]75/** Allocate and initialize a call structure.
[6d9c49a]76 *
[8b243f2]77 * The call is initialized, so that the reply will be directed to
78 * TASK->answerbox.
79 *
80 * @param flags Parameters for slab_alloc (e.g FRAME_ATOMIC).
[5626277]81 *
[8b243f2]82 * @return If flags permit it, return NULL, or initialized kernel
83 * call structure.
[6d9c49a]84 */
[8b243f2]85call_t *ipc_call_alloc(int flags)
[6d9c49a]86{
87 call_t *call;
88
[5626277]89 call = slab_alloc(ipc_call_slab, flags);
[69eac4aa]90 if (call)
91 _ipc_call_init(call);
[6d9c49a]92
93 return call;
94}
95
[8b243f2]96/** Initialize a statically allocated call structure.
97 *
98 * @param call Statically allocated kernel call structure to be
99 * initialized.
100 */
[ba81cab]101void ipc_call_static_init(call_t *call)
[e74cb73]102{
[ba81cab]103 _ipc_call_init(call);
104 call->flags |= IPC_CALL_STATIC_ALLOC;
[e74cb73]105}
106
[bd72c3e9]107/** Deallocate a call structure.
[8b243f2]108 *
109 * @param call Call structure to be freed.
110 */
[6d9c49a]111void ipc_call_free(call_t *call)
112{
[8b243f2]113 ASSERT(!(call->flags & IPC_CALL_STATIC_ALLOC));
[7918fce]114 /* Check to see if we have data in the IPC_M_DATA_SEND buffer. */
115 if (call->buffer)
116 free(call->buffer);
[6d9c49a]117 slab_free(ipc_call_slab, call);
118}
119
[8b243f2]120/** Initialize an answerbox structure.
121 *
122 * @param box Answerbox structure to be initialized.
[12ab886]123 * @param task Task to which the answerbox belongs.
[6d9c49a]124 */
[12ab886]125void ipc_answerbox_init(answerbox_t *box, task_t *task)
[6d9c49a]126{
[2ba7810]127 spinlock_initialize(&box->lock, "ipc_box_lock");
[5626277]128 spinlock_initialize(&box->irq_lock, "ipc_box_irqlock");
[2ba7810]129 waitq_initialize(&box->wq);
[6d9c49a]130 list_initialize(&box->connected_phones);
131 list_initialize(&box->calls);
132 list_initialize(&box->dispatched_calls);
133 list_initialize(&box->answers);
[5626277]134 list_initialize(&box->irq_notifs);
[b14e35f2]135 list_initialize(&box->irq_head);
[12ab886]136 box->task = task;
[6d9c49a]137}
138
[8b243f2]139/** Connect a phone to an answerbox.
140 *
141 * @param phone Initialized phone structure.
142 * @param box Initialized answerbox structure.
143 */
[2ba7810]144void ipc_phone_connect(phone_t *phone, answerbox_t *box)
[6d9c49a]145{
[ff48a15]146 mutex_lock(&phone->lock);
[ba81cab]147
[eb3d379]148 phone->state = IPC_PHONE_CONNECTED;
[6d9c49a]149 phone->callee = box;
[e74cb73]150
[2ba7810]151 spinlock_lock(&box->lock);
[c4e4507]152 list_append(&phone->link, &box->connected_phones);
[2ba7810]153 spinlock_unlock(&box->lock);
[ba81cab]154
[ff48a15]155 mutex_unlock(&phone->lock);
[2ba7810]156}
157
[8b243f2]158/** Initialize a phone structure.
159 *
160 * @param phone Phone structure to be initialized.
[2ba7810]161 */
162void ipc_phone_init(phone_t *phone)
163{
[08a19ba]164 mutex_initialize(&phone->lock, MUTEX_PASSIVE);
[2ba7810]165 phone->callee = NULL;
[eb3d379]166 phone->state = IPC_PHONE_FREE;
[9f22213]167 atomic_set(&phone->active_calls, 0);
[6d9c49a]168}
169
[8b243f2]170/** Helper function to facilitate synchronous calls.
171 *
172 * @param phone Destination kernel phone structure.
173 * @param request Call structure with request.
174 */
[631ca4d]175void ipc_call_sync(phone_t *phone, call_t *request)
176{
177 answerbox_t sync_box;
178
[12ab886]179 ipc_answerbox_init(&sync_box, TASK);
[631ca4d]180
[8b243f2]181 /* We will receive data in a special box. */
[631ca4d]182 request->callerbox = &sync_box;
183
184 ipc_call(phone, request);
[116d1ef4]185 ipc_wait_for_call(&sync_box, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE);
[631ca4d]186}
[6d9c49a]187
[8b243f2]188/** Answer a message which was not dispatched and is not listed in any queue.
189 *
190 * @param call Call structure to be answered.
[ba81cab]191 */
192static void _ipc_answer_free_call(call_t *call)
193{
194 answerbox_t *callerbox = call->callerbox;
195
196 call->flags |= IPC_CALL_ANSWERED;
197
[74965d2]198 if (call->flags & IPC_CALL_FORWARDED) {
199 if (call->data.caller_phone) {
200 /* Demasquerade the caller phone. */
201 call->data.phone = call->data.caller_phone;
202 }
203 }
204
[ba81cab]205 spinlock_lock(&callerbox->lock);
[c4e4507]206 list_append(&call->link, &callerbox->answers);
[ba81cab]207 spinlock_unlock(&callerbox->lock);
[5c8ba05]208 waitq_wakeup(&callerbox->wq, WAKEUP_FIRST);
[ba81cab]209}
210
[8b243f2]211/** Answer a message which is in a callee queue.
[ba81cab]212 *
[8b243f2]213 * @param box Answerbox that is answering the message.
214 * @param call Modified request that is being sent back.
[ba81cab]215 */
216void ipc_answer(answerbox_t *box, call_t *call)
217{
218 /* Remove from active box */
219 spinlock_lock(&box->lock);
[c4e4507]220 list_remove(&call->link);
[ba81cab]221 spinlock_unlock(&box->lock);
222 /* Send back answer */
223 _ipc_answer_free_call(call);
224}
225
[8b243f2]226/** Simulate sending back a message.
[7c7aae16]227 *
228 * Most errors are better handled by forming a normal backward
229 * message and sending it as a normal answer.
[8b243f2]230 *
231 * @param phone Phone structure the call should appear to come from.
232 * @param call Call structure to be answered.
233 * @param err Return value to be used for the answer.
[7c7aae16]234 */
[7f1c620]235void ipc_backsend_err(phone_t *phone, call_t *call, unative_t err)
[7c7aae16]236{
237 call->data.phone = phone;
238 atomic_inc(&phone->active_calls);
[eb3d379]239 IPC_SET_RETVAL(call->data, err);
[7c7aae16]240 _ipc_answer_free_call(call);
241}
242
[8b243f2]243/** Unsafe unchecking version of ipc_call.
244 *
245 * @param phone Phone structure the call comes from.
246 * @param box Destination answerbox structure.
[7c5bcc0]247 * @param call Call structure with request.
[8b243f2]248 */
[fbcfd458]249static void _ipc_call(phone_t *phone, answerbox_t *box, call_t *call)
250{
[8b243f2]251 if (!(call->flags & IPC_CALL_FORWARDED)) {
[9f22213]252 atomic_inc(&phone->active_calls);
253 call->data.phone = phone;
254 }
[fbcfd458]255
256 spinlock_lock(&box->lock);
[c4e4507]257 list_append(&call->link, &box->calls);
[fbcfd458]258 spinlock_unlock(&box->lock);
[5c8ba05]259 waitq_wakeup(&box->wq, WAKEUP_FIRST);
[fbcfd458]260}
261
[8b243f2]262/** Send an asynchronous request using a phone to an answerbox.
263 *
264 * @param phone Phone structure the call comes from and which is
265 * connected to the destination answerbox.
266 * @param call Call structure with request.
[6d9c49a]267 *
[8b243f2]268 * @return Return 0 on success, ENOENT on error.
[6d9c49a]269 */
[9f22213]270int ipc_call(phone_t *phone, call_t *call)
[6d9c49a]271{
[ba81cab]272 answerbox_t *box;
[6d9c49a]273
[ff48a15]274 mutex_lock(&phone->lock);
[eb3d379]275 if (phone->state != IPC_PHONE_CONNECTED) {
[ff48a15]276 mutex_unlock(&phone->lock);
[9f22213]277 if (call->flags & IPC_CALL_FORWARDED) {
278 IPC_SET_RETVAL(call->data, EFORWARD);
[7c7aae16]279 _ipc_answer_free_call(call);
[eb3d379]280 } else {
281 if (phone->state == IPC_PHONE_HUNGUP)
[7c7aae16]282 ipc_backsend_err(phone, call, EHANGUP);
[9f22213]283 else
[7c7aae16]284 ipc_backsend_err(phone, call, ENOENT);
[9f22213]285 }
286 return ENOENT;
[ba81cab]287 }
[eb3d379]288 box = phone->callee;
[fbcfd458]289 _ipc_call(phone, box, call);
290
[ff48a15]291 mutex_unlock(&phone->lock);
[9f22213]292 return 0;
[fbcfd458]293}
294
[8b243f2]295/** Disconnect phone from answerbox.
[fbcfd458]296 *
[8b243f2]297 * This call leaves the phone in the HUNGUP state. The change to 'free' is done
[eb3d379]298 * lazily later.
[fbcfd458]299 *
[8b243f2]300 * @param phone Phone structure to be hung up.
[eb3d379]301 *
[8b243f2]302 * @return Return 0 if the phone is disconnected.
303 * Return -1 if the phone was already disconnected.
[fbcfd458]304 */
[d8f7362]305int ipc_phone_hangup(phone_t *phone)
[fbcfd458]306{
307 answerbox_t *box;
308 call_t *call;
309
[ff48a15]310 mutex_lock(&phone->lock);
[7918fce]311 if (phone->state == IPC_PHONE_FREE ||
312 phone->state == IPC_PHONE_HUNGUP ||
[8b243f2]313 phone->state == IPC_PHONE_CONNECTING) {
[ff48a15]314 mutex_unlock(&phone->lock);
[eb3d379]315 return -1;
[fbcfd458]316 }
[eb3d379]317 box = phone->callee;
318 if (phone->state != IPC_PHONE_SLAMMED) {
319 /* Remove myself from answerbox */
320 spinlock_lock(&box->lock);
[c4e4507]321 list_remove(&phone->link);
[eb3d379]322 spinlock_unlock(&box->lock);
[6d9c49a]323
[eb3d379]324 if (phone->state != IPC_PHONE_SLAMMED) {
325 call = ipc_call_alloc(0);
326 IPC_SET_METHOD(call->data, IPC_M_PHONE_HUNGUP);
327 call->flags |= IPC_CALL_DISCARD_ANSWER;
328 _ipc_call(phone, box, call);
329 }
330 }
[fbcfd458]331
[eb3d379]332 phone->state = IPC_PHONE_HUNGUP;
[ff48a15]333 mutex_unlock(&phone->lock);
[fbcfd458]334
335 return 0;
[2ba7810]336}
337
[8b243f2]338/** Forwards call from one answerbox to another one.
[2ba7810]339 *
[8b243f2]340 * @param call Call structure to be redirected.
341 * @param newphone Phone structure to target answerbox.
342 * @param oldbox Old answerbox structure.
[d40a8ff]343 * @param mode Flags that specify mode of the forward operation.
[8b243f2]344 *
345 * @return Return 0 if forwarding succeeded or an error code if
346 * there was error.
[9f22213]347 *
[8b243f2]348 * The return value serves only as an information for the forwarder,
349 * the original caller is notified automatically with EFORWARD.
[2ba7810]350 */
[d40a8ff]351int ipc_forward(call_t *call, phone_t *newphone, answerbox_t *oldbox, int mode)
[2ba7810]352{
353 spinlock_lock(&oldbox->lock);
[c4e4507]354 list_remove(&call->link);
[2ba7810]355 spinlock_unlock(&oldbox->lock);
356
[645d9ed2]357 if (mode & IPC_FF_ROUTE_FROM_ME) {
358 if (!call->data.caller_phone)
359 call->data.caller_phone = call->data.phone;
[9201f47]360 call->data.phone = newphone;
[645d9ed2]361 }
[9201f47]362
[9f22213]363 return ipc_call(newphone, call);
[6d9c49a]364}
365
366
[8b243f2]367/** Wait for a phone call.
[6d9c49a]368 *
[8b243f2]369 * @param box Answerbox expecting the call.
370 * @param usec Timeout in microseconds. See documentation for
371 * waitq_sleep_timeout() for decription of its special
372 * meaning.
373 * @param flags Select mode of sleep operation. See documentation for
374 * waitq_sleep_timeout() for description of its special
375 * meaning.
376 * @return Recived call structure or NULL.
377 *
378 * To distinguish between a call and an answer, have a look at call->flags.
[6d9c49a]379 */
[8b243f2]380call_t *ipc_wait_for_call(answerbox_t *box, uint32_t usec, int flags)
[6d9c49a]381{
382 call_t *request;
[5626277]383 ipl_t ipl;
[bd5a663]384 int rc;
[6d9c49a]385
[bd5a663]386restart:
[116d1ef4]387 rc = waitq_sleep_timeout(&box->wq, usec, flags);
[bd5a663]388 if (SYNCH_FAILED(rc))
389 return NULL;
[fbcfd458]390
[2ba7810]391 spinlock_lock(&box->lock);
[5626277]392 if (!list_empty(&box->irq_notifs)) {
393 ipl = interrupts_disable();
394 spinlock_lock(&box->irq_lock);
395
[c4e4507]396 request = list_get_instance(box->irq_notifs.next, call_t, link);
397 list_remove(&request->link);
[5626277]398
399 spinlock_unlock(&box->irq_lock);
400 interrupts_restore(ipl);
401 } else if (!list_empty(&box->answers)) {
[fbcfd458]402 /* Handle asynchronous answers */
[c4e4507]403 request = list_get_instance(box->answers.next, call_t, link);
404 list_remove(&request->link);
[74965d2]405 atomic_dec(&request->data.phone->active_calls);
[fbcfd458]406 } else if (!list_empty(&box->calls)) {
407 /* Handle requests */
[c4e4507]408 request = list_get_instance(box->calls.next, call_t, link);
409 list_remove(&request->link);
[fbcfd458]410 /* Append request to dispatch queue */
[c4e4507]411 list_append(&request->link, &box->dispatched_calls);
[fbcfd458]412 } else {
[874621f]413 /* This can happen regularly after ipc_cleanup */
[fbcfd458]414 spinlock_unlock(&box->lock);
415 goto restart;
[6d9c49a]416 }
[2ba7810]417 spinlock_unlock(&box->lock);
[6d9c49a]418 return request;
419}
420
[8b243f2]421/** Answer all calls from list with EHANGUP answer.
422 *
423 * @param lst Head of the list to be cleaned up.
424 */
[ca687ad]425static void ipc_cleanup_call_list(link_t *lst)
426{
427 call_t *call;
428
429 while (!list_empty(lst)) {
[c4e4507]430 call = list_get_instance(lst->next, call_t, link);
[a55d5f9f]431 if (call->buffer)
432 free(call->buffer);
[c4e4507]433 list_remove(&call->link);
[ca687ad]434
435 IPC_SET_RETVAL(call->data, EHANGUP);
436 _ipc_answer_free_call(call);
437 }
438}
439
[8b243f2]440/** Cleans up all IPC communication of the current task.
[4e49572]441 *
[214c5a0]442 * Note: ipc_hangup sets returning answerbox to TASK->answerbox, you
[8b243f2]443 * have to change it as well if you want to cleanup other tasks than TASK.
[4e49572]444 */
[214c5a0]445void ipc_cleanup(void)
[4e49572]446{
[9f22213]447 int i;
[ca687ad]448 call_t *call;
449 phone_t *phone;
[31d8e10]450 DEADLOCK_PROBE_INIT(p_phonelck);
[214c5a0]451
[9f22213]452 /* Disconnect all our phones ('ipc_phone_hangup') */
[8b243f2]453 for (i = 0; i < IPC_MAX_PHONES; i++)
[d8f7362]454 ipc_phone_hangup(&TASK->phones[i]);
[9f22213]455
[5626277]456 /* Disconnect all connected irqs */
[214c5a0]457 ipc_irq_cleanup(&TASK->answerbox);
[5626277]458
[ca687ad]459 /* Disconnect all phones connected to our answerbox */
460restart_phones:
[214c5a0]461 spinlock_lock(&TASK->answerbox.lock);
462 while (!list_empty(&TASK->answerbox.connected_phones)) {
463 phone = list_get_instance(TASK->answerbox.connected_phones.next,
[31d8e10]464 phone_t, link);
[ff48a15]465 if (SYNCH_FAILED(mutex_trylock(&phone->lock))) {
[214c5a0]466 spinlock_unlock(&TASK->answerbox.lock);
[31d8e10]467 DEADLOCK_PROBE(p_phonelck, DEADLOCK_THRESHOLD);
[ca687ad]468 goto restart_phones;
469 }
470
471 /* Disconnect phone */
[eb3d379]472 ASSERT(phone->state == IPC_PHONE_CONNECTED);
473 phone->state = IPC_PHONE_SLAMMED;
[c4e4507]474 list_remove(&phone->link);
[ca687ad]475
[ff48a15]476 mutex_unlock(&phone->lock);
[ca687ad]477 }
[9f22213]478
479 /* Answer all messages in 'calls' and 'dispatched_calls' queues */
[214c5a0]480 ipc_cleanup_call_list(&TASK->answerbox.dispatched_calls);
481 ipc_cleanup_call_list(&TASK->answerbox.calls);
482 spinlock_unlock(&TASK->answerbox.lock);
[4e49572]483
[9f22213]484 /* Wait for all async answers to arrive */
[eb3d379]485 while (1) {
486 /* Go through all phones, until all are FREE... */
487 /* Locking not needed, no one else should modify
488 * it, when we are in cleanup */
[8b243f2]489 for (i = 0; i < IPC_MAX_PHONES; i++) {
490 if (TASK->phones[i].state == IPC_PHONE_HUNGUP &&
[214c5a0]491 atomic_get(&TASK->phones[i].active_calls) == 0)
492 TASK->phones[i].state = IPC_PHONE_FREE;
493
[d8f7362]494 /* Just for sure, we might have had some
495 * IPC_PHONE_CONNECTING phones */
[214c5a0]496 if (TASK->phones[i].state == IPC_PHONE_CONNECTED)
[d8f7362]497 ipc_phone_hangup(&TASK->phones[i]);
498 /* If the hangup succeeded, it has sent a HANGUP
499 * message, the IPC is now in HUNGUP state, we
500 * wait for the reply to come */
[214c5a0]501
502 if (TASK->phones[i].state != IPC_PHONE_FREE)
[eb3d379]503 break;
504 }
505 /* Voila, got into cleanup */
506 if (i == IPC_MAX_PHONES)
507 break;
508
[8b243f2]509 call = ipc_wait_for_call(&TASK->answerbox, SYNCH_NO_TIMEOUT,
510 SYNCH_FLAGS_NONE);
511 ASSERT((call->flags & IPC_CALL_ANSWERED) ||
512 (call->flags & IPC_CALL_NOTIF));
513 ASSERT(!(call->flags & IPC_CALL_STATIC_ALLOC));
[ca687ad]514
[214c5a0]515 atomic_dec(&TASK->active_calls);
[ca687ad]516 ipc_call_free(call);
517 }
[4e49572]518}
[5626277]519
520
[2b017ba]521/** Initilize IPC subsystem */
[5626277]522void ipc_init(void)
523{
[8b243f2]524 ipc_call_slab = slab_cache_create("ipc_call", sizeof(call_t), 0, NULL,
525 NULL, 0);
[5626277]526}
527
[c4e4507]528
[8b243f2]529/** List answerbox contents.
530 *
531 * @param taskid Task ID.
532 */
[c4e4507]533void ipc_print_task(task_id_t taskid)
534{
535 task_t *task;
536 int i;
537 call_t *call;
538 link_t *tmp;
539
540 spinlock_lock(&tasks_lock);
541 task = task_find_by_id(taskid);
542 if (task)
543 spinlock_lock(&task->lock);
544 spinlock_unlock(&tasks_lock);
545 if (!task)
546 return;
547
548 /* Print opened phones & details */
549 printf("PHONE:\n");
[8b243f2]550 for (i = 0; i < IPC_MAX_PHONES; i++) {
[ff48a15]551 if (SYNCH_FAILED(mutex_trylock(&task->phones[i].lock))) {
552 printf("%d: mutex busy\n", i);
553 continue;
554 }
[c4e4507]555 if (task->phones[i].state != IPC_PHONE_FREE) {
[8b243f2]556 printf("%d: ", i);
[c4e4507]557 switch (task->phones[i].state) {
558 case IPC_PHONE_CONNECTING:
559 printf("connecting ");
560 break;
561 case IPC_PHONE_CONNECTED:
[fbf7b4c]562 printf("connected to: %p ",
[c4e4507]563 task->phones[i].callee);
564 break;
565 case IPC_PHONE_SLAMMED:
[fbf7b4c]566 printf("slammed by: %p ",
[c4e4507]567 task->phones[i].callee);
568 break;
569 case IPC_PHONE_HUNGUP:
[fbf7b4c]570 printf("hung up - was: %p ",
[c4e4507]571 task->phones[i].callee);
572 break;
573 default:
574 break;
575 }
[9fe962d6]576 printf("active: %ld\n",
[bd72c3e9]577 atomic_get(&task->phones[i].active_calls));
[c4e4507]578 }
[ff48a15]579 mutex_unlock(&task->phones[i].lock);
[c4e4507]580 }
581
582
583 /* Print answerbox - calls */
584 spinlock_lock(&task->answerbox.lock);
585 printf("ABOX - CALLS:\n");
[bd72c3e9]586 for (tmp = task->answerbox.calls.next; tmp != &task->answerbox.calls;
[78d0da8]587 tmp = tmp->next) {
[c4e4507]588 call = list_get_instance(tmp, call_t, link);
[9fe962d6]589 printf("Callid: %p Srctask:%" PRIu64 " M:%" PRIun
590 " A1:%" PRIun " A2:%" PRIun " A3:%" PRIun
591 " A4:%" PRIun " A5:%" PRIun " Flags:%x\n", call, call->sender->taskid,
[bd72c3e9]592 IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
593 IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data),
[38c706cc]594 IPC_GET_ARG4(call->data), IPC_GET_ARG5(call->data),
[bd72c3e9]595 call->flags);
[c4e4507]596 }
597 /* Print answerbox - calls */
598 printf("ABOX - DISPATCHED CALLS:\n");
[9fe962d6]599 for (tmp = task->answerbox.dispatched_calls.next;
[78d0da8]600 tmp != &task->answerbox.dispatched_calls;
601 tmp = tmp->next) {
[c4e4507]602 call = list_get_instance(tmp, call_t, link);
[9fe962d6]603 printf("Callid: %p Srctask:%" PRIu64 " M:%" PRIun
604 " A1:%" PRIun " A2:%" PRIun " A3:%" PRIun
605 " A4:%" PRIun " A5:%" PRIun " Flags:%x\n", call, call->sender->taskid,
[bd72c3e9]606 IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
607 IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data),
[38c706cc]608 IPC_GET_ARG4(call->data), IPC_GET_ARG5(call->data),
[bd72c3e9]609 call->flags);
[c4e4507]610 }
611 /* Print answerbox - calls */
612 printf("ABOX - ANSWERS:\n");
[bd72c3e9]613 for (tmp = task->answerbox.answers.next; tmp != &task->answerbox.answers;
[78d0da8]614 tmp = tmp->next) {
[c4e4507]615 call = list_get_instance(tmp, call_t, link);
[9fe962d6]616 printf("Callid:%p M:%" PRIun " A1:%" PRIun " A2:%" PRIun
617 " A3:%" PRIun " A4:%" PRIun " A5:%" PRIun " Flags:%x\n",
[38c706cc]618 call, IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
[bd72c3e9]619 IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data),
[38c706cc]620 IPC_GET_ARG4(call->data), IPC_GET_ARG5(call->data),
[bd72c3e9]621 call->flags);
[c4e4507]622 }
623
624 spinlock_unlock(&task->answerbox.lock);
625 spinlock_unlock(&task->lock);
626}
[b45c443]627
[cc73a8a1]628/** @}
[b45c443]629 */
Note: See TracBrowser for help on using the repository browser.