[6d9c49a] | 1 | /*
|
---|
| 2 | * Copyright (C) 2006 Ondrej Palkovsky
|
---|
| 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 |
|
---|
| 29 | /* Lock ordering
|
---|
| 30 | *
|
---|
| 31 | * First the answerbox, then the phone
|
---|
| 32 | */
|
---|
| 33 |
|
---|
[2ba7810] | 34 | #include <synch/spinlock.h>
|
---|
| 35 | #include <synch/waitq.h>
|
---|
[bd5a663] | 36 | #include <synch/synch.h>
|
---|
[6d9c49a] | 37 | #include <ipc/ipc.h>
|
---|
| 38 | #include <errno.h>
|
---|
| 39 | #include <mm/slab.h>
|
---|
| 40 | #include <arch.h>
|
---|
| 41 | #include <proc/task.h>
|
---|
| 42 | #include <memstr.h>
|
---|
| 43 | #include <debug.h>
|
---|
| 44 |
|
---|
| 45 | #include <print.h>
|
---|
| 46 | #include <proc/thread.h>
|
---|
[5626277] | 47 | #include <arch/interrupt.h>
|
---|
[162f919] | 48 | #include <ipc/irq.h>
|
---|
[6d9c49a] | 49 |
|
---|
[e74cb73] | 50 | /* Open channel that is assigned automatically to new tasks */
|
---|
| 51 | answerbox_t *ipc_phone_0 = NULL;
|
---|
[6d9c49a] | 52 |
|
---|
| 53 | static slab_cache_t *ipc_call_slab;
|
---|
| 54 |
|
---|
[ba81cab] | 55 | /* Initialize new call */
|
---|
| 56 | static void _ipc_call_init(call_t *call)
|
---|
| 57 | {
|
---|
| 58 | memsetb((__address)call, sizeof(*call), 0);
|
---|
| 59 | call->callerbox = &TASK->answerbox;
|
---|
| 60 | call->sender = TASK;
|
---|
| 61 | }
|
---|
| 62 |
|
---|
[6d9c49a] | 63 | /** Allocate & initialize call structure
|
---|
| 64 | *
|
---|
| 65 | * The call is initialized, so that the reply will be directed
|
---|
| 66 | * to TASK->answerbox
|
---|
[5626277] | 67 | *
|
---|
| 68 | * @param flags Parameters for slab_alloc (ATOMIC, etc.)
|
---|
[6d9c49a] | 69 | */
|
---|
[5626277] | 70 | call_t * ipc_call_alloc(int flags)
|
---|
[6d9c49a] | 71 | {
|
---|
| 72 | call_t *call;
|
---|
| 73 |
|
---|
[5626277] | 74 | call = slab_alloc(ipc_call_slab, flags);
|
---|
[ba81cab] | 75 | _ipc_call_init(call);
|
---|
[6d9c49a] | 76 |
|
---|
| 77 | return call;
|
---|
| 78 | }
|
---|
| 79 |
|
---|
[e74cb73] | 80 | /** Initialize allocated call */
|
---|
[ba81cab] | 81 | void ipc_call_static_init(call_t *call)
|
---|
[e74cb73] | 82 | {
|
---|
[ba81cab] | 83 | _ipc_call_init(call);
|
---|
| 84 | call->flags |= IPC_CALL_STATIC_ALLOC;
|
---|
[e74cb73] | 85 | }
|
---|
| 86 |
|
---|
[6d9c49a] | 87 | /** Deallocate call stracuture */
|
---|
| 88 | void ipc_call_free(call_t *call)
|
---|
| 89 | {
|
---|
| 90 | slab_free(ipc_call_slab, call);
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | /** Initialize answerbox structure
|
---|
| 94 | */
|
---|
| 95 | void ipc_answerbox_init(answerbox_t *box)
|
---|
| 96 | {
|
---|
[2ba7810] | 97 | spinlock_initialize(&box->lock, "ipc_box_lock");
|
---|
[5626277] | 98 | spinlock_initialize(&box->irq_lock, "ipc_box_irqlock");
|
---|
[2ba7810] | 99 | waitq_initialize(&box->wq);
|
---|
[6d9c49a] | 100 | list_initialize(&box->connected_phones);
|
---|
| 101 | list_initialize(&box->calls);
|
---|
| 102 | list_initialize(&box->dispatched_calls);
|
---|
| 103 | list_initialize(&box->answers);
|
---|
[5626277] | 104 | list_initialize(&box->irq_notifs);
|
---|
[2d5a54f3] | 105 | box->task = TASK;
|
---|
[6d9c49a] | 106 | }
|
---|
| 107 |
|
---|
[2ba7810] | 108 | /** Connect phone to answerbox */
|
---|
| 109 | void ipc_phone_connect(phone_t *phone, answerbox_t *box)
|
---|
[6d9c49a] | 110 | {
|
---|
[ba81cab] | 111 | spinlock_lock(&phone->lock);
|
---|
| 112 |
|
---|
[eb3d379] | 113 | phone->state = IPC_PHONE_CONNECTED;
|
---|
[6d9c49a] | 114 | phone->callee = box;
|
---|
[e74cb73] | 115 |
|
---|
[2ba7810] | 116 | spinlock_lock(&box->lock);
|
---|
[c4e4507] | 117 | list_append(&phone->link, &box->connected_phones);
|
---|
[2ba7810] | 118 | spinlock_unlock(&box->lock);
|
---|
[ba81cab] | 119 |
|
---|
| 120 | spinlock_unlock(&phone->lock);
|
---|
[2ba7810] | 121 | }
|
---|
| 122 |
|
---|
[6ecc8bce] | 123 | /** Initialize phone structure and connect phone to answerbox
|
---|
[2ba7810] | 124 | */
|
---|
| 125 | void ipc_phone_init(phone_t *phone)
|
---|
| 126 | {
|
---|
| 127 | spinlock_initialize(&phone->lock, "phone_lock");
|
---|
| 128 | phone->callee = NULL;
|
---|
[eb3d379] | 129 | phone->state = IPC_PHONE_FREE;
|
---|
[9f22213] | 130 | atomic_set(&phone->active_calls, 0);
|
---|
[6d9c49a] | 131 | }
|
---|
| 132 |
|
---|
[631ca4d] | 133 | /** Helper function to facilitate synchronous calls */
|
---|
| 134 | void ipc_call_sync(phone_t *phone, call_t *request)
|
---|
| 135 | {
|
---|
| 136 | answerbox_t sync_box;
|
---|
| 137 |
|
---|
| 138 | ipc_answerbox_init(&sync_box);
|
---|
| 139 |
|
---|
| 140 | /* We will receive data on special box */
|
---|
| 141 | request->callerbox = &sync_box;
|
---|
| 142 |
|
---|
| 143 | ipc_call(phone, request);
|
---|
[116d1ef4] | 144 | ipc_wait_for_call(&sync_box, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE);
|
---|
[631ca4d] | 145 | }
|
---|
[6d9c49a] | 146 |
|
---|
[ba81cab] | 147 | /** Answer message that was not dispatched and is not entered in
|
---|
| 148 | * any queue
|
---|
| 149 | */
|
---|
| 150 | static void _ipc_answer_free_call(call_t *call)
|
---|
| 151 | {
|
---|
| 152 | answerbox_t *callerbox = call->callerbox;
|
---|
| 153 |
|
---|
| 154 | call->flags |= IPC_CALL_ANSWERED;
|
---|
| 155 |
|
---|
| 156 | spinlock_lock(&callerbox->lock);
|
---|
[c4e4507] | 157 | list_append(&call->link, &callerbox->answers);
|
---|
[ba81cab] | 158 | spinlock_unlock(&callerbox->lock);
|
---|
| 159 | waitq_wakeup(&callerbox->wq, 0);
|
---|
| 160 | }
|
---|
| 161 |
|
---|
| 162 | /** Answer message, that is in callee queue
|
---|
| 163 | *
|
---|
| 164 | * @param box Answerbox that is answering the message
|
---|
| 165 | * @param call Modified request that is being sent back
|
---|
| 166 | */
|
---|
| 167 | void ipc_answer(answerbox_t *box, call_t *call)
|
---|
| 168 | {
|
---|
| 169 | /* Remove from active box */
|
---|
| 170 | spinlock_lock(&box->lock);
|
---|
[c4e4507] | 171 | list_remove(&call->link);
|
---|
[ba81cab] | 172 | spinlock_unlock(&box->lock);
|
---|
| 173 | /* Send back answer */
|
---|
| 174 | _ipc_answer_free_call(call);
|
---|
| 175 | }
|
---|
| 176 |
|
---|
[7c7aae16] | 177 | /** Simulate sending back a message
|
---|
| 178 | *
|
---|
| 179 | * Most errors are better handled by forming a normal backward
|
---|
| 180 | * message and sending it as a normal answer.
|
---|
| 181 | */
|
---|
| 182 | void ipc_backsend_err(phone_t *phone, call_t *call, __native err)
|
---|
| 183 | {
|
---|
| 184 | call->data.phone = phone;
|
---|
| 185 | atomic_inc(&phone->active_calls);
|
---|
[eb3d379] | 186 | IPC_SET_RETVAL(call->data, err);
|
---|
[7c7aae16] | 187 | _ipc_answer_free_call(call);
|
---|
| 188 | }
|
---|
| 189 |
|
---|
[fbcfd458] | 190 | /* Unsafe unchecking ipc_call */
|
---|
| 191 | static void _ipc_call(phone_t *phone, answerbox_t *box, call_t *call)
|
---|
| 192 | {
|
---|
[9f22213] | 193 | if (! (call->flags & IPC_CALL_FORWARDED)) {
|
---|
| 194 | atomic_inc(&phone->active_calls);
|
---|
| 195 | call->data.phone = phone;
|
---|
| 196 | }
|
---|
[fbcfd458] | 197 |
|
---|
| 198 | spinlock_lock(&box->lock);
|
---|
[c4e4507] | 199 | list_append(&call->link, &box->calls);
|
---|
[fbcfd458] | 200 | spinlock_unlock(&box->lock);
|
---|
| 201 | waitq_wakeup(&box->wq, 0);
|
---|
| 202 | }
|
---|
| 203 |
|
---|
[631ca4d] | 204 | /** Send a asynchronous request using phone to answerbox
|
---|
[6d9c49a] | 205 | *
|
---|
| 206 | * @param phone Phone connected to answerbox
|
---|
| 207 | * @param request Request to be sent
|
---|
| 208 | */
|
---|
[9f22213] | 209 | int ipc_call(phone_t *phone, call_t *call)
|
---|
[6d9c49a] | 210 | {
|
---|
[ba81cab] | 211 | answerbox_t *box;
|
---|
[6d9c49a] | 212 |
|
---|
[ba81cab] | 213 | spinlock_lock(&phone->lock);
|
---|
[eb3d379] | 214 | if (phone->state != IPC_PHONE_CONNECTED) {
|
---|
[fbcfd458] | 215 | spinlock_unlock(&phone->lock);
|
---|
[9f22213] | 216 | if (call->flags & IPC_CALL_FORWARDED) {
|
---|
| 217 | IPC_SET_RETVAL(call->data, EFORWARD);
|
---|
[7c7aae16] | 218 | _ipc_answer_free_call(call);
|
---|
[eb3d379] | 219 | } else {
|
---|
| 220 | if (phone->state == IPC_PHONE_HUNGUP)
|
---|
[7c7aae16] | 221 | ipc_backsend_err(phone, call, EHANGUP);
|
---|
[9f22213] | 222 | else
|
---|
[7c7aae16] | 223 | ipc_backsend_err(phone, call, ENOENT);
|
---|
[9f22213] | 224 | }
|
---|
| 225 | return ENOENT;
|
---|
[ba81cab] | 226 | }
|
---|
[eb3d379] | 227 | box = phone->callee;
|
---|
[fbcfd458] | 228 | _ipc_call(phone, box, call);
|
---|
| 229 |
|
---|
| 230 | spinlock_unlock(&phone->lock);
|
---|
[9f22213] | 231 | return 0;
|
---|
[fbcfd458] | 232 | }
|
---|
| 233 |
|
---|
| 234 | /** Disconnect phone from answerbox
|
---|
| 235 | *
|
---|
[eb3d379] | 236 | * This call leaves the phone in HUNGUP state. The change to 'free' is done
|
---|
| 237 | * lazily later.
|
---|
[fbcfd458] | 238 | *
|
---|
[eb3d379] | 239 | * @param phone Phone to be hung up
|
---|
| 240 | * @param aggressive If false, the phone is only marked hungup, and all
|
---|
| 241 | * messages are allowed to complete.
|
---|
| 242 | * If true, all messages in all queues are discarded. There
|
---|
| 243 | * may still be some messages that will be 'in-transit' on
|
---|
| 244 | * other CPU.
|
---|
| 245 | *
|
---|
[fbcfd458] | 246 | * @return 0 - phone disconnected, -1 - the phone was already disconnected
|
---|
| 247 | */
|
---|
[eb3d379] | 248 | int ipc_phone_hangup(phone_t *phone, int aggressive)
|
---|
[fbcfd458] | 249 | {
|
---|
| 250 | answerbox_t *box;
|
---|
| 251 | call_t *call;
|
---|
| 252 |
|
---|
| 253 | spinlock_lock(&phone->lock);
|
---|
[eb3d379] | 254 | if (phone->state == IPC_PHONE_FREE || phone->state ==IPC_PHONE_HUNGUP \
|
---|
| 255 | || phone->state == IPC_PHONE_CONNECTING) {
|
---|
[fbcfd458] | 256 | spinlock_unlock(&phone->lock);
|
---|
[eb3d379] | 257 | return -1;
|
---|
[fbcfd458] | 258 | }
|
---|
[eb3d379] | 259 | box = phone->callee;
|
---|
| 260 | if (phone->state != IPC_PHONE_SLAMMED) {
|
---|
| 261 | /* Remove myself from answerbox */
|
---|
| 262 | spinlock_lock(&box->lock);
|
---|
[c4e4507] | 263 | list_remove(&phone->link);
|
---|
[eb3d379] | 264 | spinlock_unlock(&box->lock);
|
---|
[6d9c49a] | 265 |
|
---|
[eb3d379] | 266 | if (phone->state != IPC_PHONE_SLAMMED) {
|
---|
| 267 | call = ipc_call_alloc(0);
|
---|
| 268 | IPC_SET_METHOD(call->data, IPC_M_PHONE_HUNGUP);
|
---|
| 269 | call->flags |= IPC_CALL_DISCARD_ANSWER;
|
---|
| 270 | _ipc_call(phone, box, call);
|
---|
| 271 | }
|
---|
| 272 | }
|
---|
[fbcfd458] | 273 |
|
---|
[eb3d379] | 274 | if (aggressive && atomic_get(&phone->active_calls) > 0) {
|
---|
| 275 | /* TODO: Do some stuff be VERY aggressive */
|
---|
| 276 | }
|
---|
[fbcfd458] | 277 |
|
---|
[eb3d379] | 278 | phone->state = IPC_PHONE_HUNGUP;
|
---|
[ba81cab] | 279 | spinlock_unlock(&phone->lock);
|
---|
[fbcfd458] | 280 |
|
---|
| 281 | return 0;
|
---|
[2ba7810] | 282 | }
|
---|
| 283 |
|
---|
| 284 | /** Forwards call from one answerbox to a new one
|
---|
| 285 | *
|
---|
[ad575d7] | 286 | * @param call Call to be redirected.
|
---|
| 287 | * @param newphone Phone to target answerbox.
|
---|
[2ba7810] | 288 | * @param oldbox Old answerbox
|
---|
[9f22213] | 289 | * @return 0 on forward ok, error code, if there was error
|
---|
| 290 | *
|
---|
| 291 | * - the return value serves only as an information for the forwarder,
|
---|
| 292 | * the original caller is notified automatically with EFORWARD
|
---|
[2ba7810] | 293 | */
|
---|
[9f22213] | 294 | int ipc_forward(call_t *call, phone_t *newphone, answerbox_t *oldbox)
|
---|
[2ba7810] | 295 | {
|
---|
| 296 | spinlock_lock(&oldbox->lock);
|
---|
[c4e4507] | 297 | list_remove(&call->link);
|
---|
[2ba7810] | 298 | spinlock_unlock(&oldbox->lock);
|
---|
| 299 |
|
---|
[9f22213] | 300 | return ipc_call(newphone, call);
|
---|
[6d9c49a] | 301 | }
|
---|
| 302 |
|
---|
| 303 |
|
---|
| 304 | /** Wait for phone call
|
---|
| 305 | *
|
---|
[bd5a663] | 306 | * @param box Answerbox expecting the call.
|
---|
| 307 | * @param usec Timeout in microseconds. See documentation for waitq_sleep_timeout() for
|
---|
| 308 | * decription of its special meaning.
|
---|
[116d1ef4] | 309 | * @param flags Select mode of sleep operation. See documentation for waitq_sleep_timeout()i
|
---|
| 310 | * for description of its special meaning.
|
---|
[6d9c49a] | 311 | * @return Recived message address
|
---|
| 312 | * - to distinguish between call and answer, look at call->flags
|
---|
| 313 | */
|
---|
[116d1ef4] | 314 | call_t * ipc_wait_for_call(answerbox_t *box, __u32 usec, int flags)
|
---|
[6d9c49a] | 315 | {
|
---|
| 316 | call_t *request;
|
---|
[5626277] | 317 | ipl_t ipl;
|
---|
[bd5a663] | 318 | int rc;
|
---|
[6d9c49a] | 319 |
|
---|
[bd5a663] | 320 | restart:
|
---|
[116d1ef4] | 321 | rc = waitq_sleep_timeout(&box->wq, usec, flags);
|
---|
[bd5a663] | 322 | if (SYNCH_FAILED(rc))
|
---|
| 323 | return NULL;
|
---|
[fbcfd458] | 324 |
|
---|
[2ba7810] | 325 | spinlock_lock(&box->lock);
|
---|
[5626277] | 326 | if (!list_empty(&box->irq_notifs)) {
|
---|
| 327 | ipl = interrupts_disable();
|
---|
| 328 | spinlock_lock(&box->irq_lock);
|
---|
| 329 |
|
---|
[c4e4507] | 330 | request = list_get_instance(box->irq_notifs.next, call_t, link);
|
---|
| 331 | list_remove(&request->link);
|
---|
[5626277] | 332 |
|
---|
| 333 | spinlock_unlock(&box->irq_lock);
|
---|
| 334 | interrupts_restore(ipl);
|
---|
| 335 | } else if (!list_empty(&box->answers)) {
|
---|
[fbcfd458] | 336 | /* Handle asynchronous answers */
|
---|
[c4e4507] | 337 | request = list_get_instance(box->answers.next, call_t, link);
|
---|
| 338 | list_remove(&request->link);
|
---|
[fbcfd458] | 339 | atomic_dec(&request->data.phone->active_calls);
|
---|
| 340 | } else if (!list_empty(&box->calls)) {
|
---|
| 341 | /* Handle requests */
|
---|
[c4e4507] | 342 | request = list_get_instance(box->calls.next, call_t, link);
|
---|
| 343 | list_remove(&request->link);
|
---|
[fbcfd458] | 344 | /* Append request to dispatch queue */
|
---|
[c4e4507] | 345 | list_append(&request->link, &box->dispatched_calls);
|
---|
[fbcfd458] | 346 | } else {
|
---|
[ca687ad] | 347 | /* This can happen regularly after ipc_cleanup, remove
|
---|
| 348 | * the warning in the future when the IPC is
|
---|
| 349 | * more debugged */
|
---|
[fbcfd458] | 350 | printf("WARNING: Spurious IPC wakeup.\n");
|
---|
| 351 | spinlock_unlock(&box->lock);
|
---|
| 352 | goto restart;
|
---|
[6d9c49a] | 353 | }
|
---|
[2ba7810] | 354 | spinlock_unlock(&box->lock);
|
---|
[6d9c49a] | 355 | return request;
|
---|
| 356 | }
|
---|
| 357 |
|
---|
[ca687ad] | 358 | /** Answer all calls from list with EHANGUP msg */
|
---|
| 359 | static void ipc_cleanup_call_list(link_t *lst)
|
---|
| 360 | {
|
---|
| 361 | call_t *call;
|
---|
| 362 |
|
---|
| 363 | while (!list_empty(lst)) {
|
---|
[c4e4507] | 364 | call = list_get_instance(lst->next, call_t, link);
|
---|
| 365 | list_remove(&call->link);
|
---|
[ca687ad] | 366 |
|
---|
| 367 | IPC_SET_RETVAL(call->data, EHANGUP);
|
---|
| 368 | _ipc_answer_free_call(call);
|
---|
| 369 | }
|
---|
| 370 | }
|
---|
| 371 |
|
---|
[214c5a0] | 372 | /** Cleans up all IPC communication of the current task
|
---|
[4e49572] | 373 | *
|
---|
[214c5a0] | 374 | * Note: ipc_hangup sets returning answerbox to TASK->answerbox, you
|
---|
| 375 | * have to change it as well if you want to cleanup other current then current.
|
---|
[4e49572] | 376 | */
|
---|
[214c5a0] | 377 | void ipc_cleanup(void)
|
---|
[4e49572] | 378 | {
|
---|
[9f22213] | 379 | int i;
|
---|
[ca687ad] | 380 | call_t *call;
|
---|
| 381 | phone_t *phone;
|
---|
[214c5a0] | 382 |
|
---|
[9f22213] | 383 | /* Disconnect all our phones ('ipc_phone_hangup') */
|
---|
| 384 | for (i=0;i < IPC_MAX_PHONES; i++)
|
---|
[214c5a0] | 385 | ipc_phone_hangup(&TASK->phones[i], 1);
|
---|
[9f22213] | 386 |
|
---|
[5626277] | 387 | /* Disconnect all connected irqs */
|
---|
[214c5a0] | 388 | ipc_irq_cleanup(&TASK->answerbox);
|
---|
[5626277] | 389 |
|
---|
[ca687ad] | 390 | /* Disconnect all phones connected to our answerbox */
|
---|
| 391 | restart_phones:
|
---|
[214c5a0] | 392 | spinlock_lock(&TASK->answerbox.lock);
|
---|
| 393 | while (!list_empty(&TASK->answerbox.connected_phones)) {
|
---|
| 394 | phone = list_get_instance(TASK->answerbox.connected_phones.next,
|
---|
[c4e4507] | 395 | phone_t, link);
|
---|
[ca687ad] | 396 | if (! spinlock_trylock(&phone->lock)) {
|
---|
[214c5a0] | 397 | spinlock_unlock(&TASK->answerbox.lock);
|
---|
[ca687ad] | 398 | goto restart_phones;
|
---|
| 399 | }
|
---|
| 400 |
|
---|
| 401 | /* Disconnect phone */
|
---|
[eb3d379] | 402 | ASSERT(phone->state == IPC_PHONE_CONNECTED);
|
---|
| 403 | phone->state = IPC_PHONE_SLAMMED;
|
---|
[c4e4507] | 404 | list_remove(&phone->link);
|
---|
[ca687ad] | 405 |
|
---|
| 406 | spinlock_unlock(&phone->lock);
|
---|
| 407 | }
|
---|
[9f22213] | 408 |
|
---|
| 409 | /* Answer all messages in 'calls' and 'dispatched_calls' queues */
|
---|
[214c5a0] | 410 | ipc_cleanup_call_list(&TASK->answerbox.dispatched_calls);
|
---|
| 411 | ipc_cleanup_call_list(&TASK->answerbox.calls);
|
---|
| 412 | spinlock_unlock(&TASK->answerbox.lock);
|
---|
[4e49572] | 413 |
|
---|
[9f22213] | 414 | /* Wait for all async answers to arrive */
|
---|
[eb3d379] | 415 | while (1) {
|
---|
| 416 | /* Go through all phones, until all are FREE... */
|
---|
| 417 | /* Locking not needed, no one else should modify
|
---|
| 418 | * it, when we are in cleanup */
|
---|
| 419 | for (i=0;i < IPC_MAX_PHONES; i++) {
|
---|
[214c5a0] | 420 | if (TASK->phones[i].state == IPC_PHONE_HUNGUP && \
|
---|
| 421 | atomic_get(&TASK->phones[i].active_calls) == 0)
|
---|
| 422 | TASK->phones[i].state = IPC_PHONE_FREE;
|
---|
| 423 |
|
---|
| 424 | if (TASK->phones[i].state == IPC_PHONE_CONNECTED)
|
---|
| 425 | ipc_phone_hangup(&TASK->phones[i], 1);
|
---|
| 426 |
|
---|
| 427 | if (TASK->phones[i].state != IPC_PHONE_FREE)
|
---|
[eb3d379] | 428 | break;
|
---|
| 429 | }
|
---|
| 430 | /* Voila, got into cleanup */
|
---|
| 431 | if (i == IPC_MAX_PHONES)
|
---|
| 432 | break;
|
---|
| 433 |
|
---|
[214c5a0] | 434 | call = ipc_wait_for_call(&TASK->answerbox, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE);
|
---|
[51a7dc1] | 435 | ASSERT((call->flags & IPC_CALL_ANSWERED) || (call->flags & IPC_CALL_NOTIF));
|
---|
[ca687ad] | 436 | ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC));
|
---|
| 437 |
|
---|
[214c5a0] | 438 | atomic_dec(&TASK->active_calls);
|
---|
[ca687ad] | 439 | ipc_call_free(call);
|
---|
| 440 | }
|
---|
[4e49572] | 441 | }
|
---|
[5626277] | 442 |
|
---|
| 443 |
|
---|
| 444 | /** Initilize ipc subsystem */
|
---|
| 445 | void ipc_init(void)
|
---|
| 446 | {
|
---|
| 447 | ipc_call_slab = slab_cache_create("ipc_call",
|
---|
| 448 | sizeof(call_t),
|
---|
| 449 | 0,
|
---|
| 450 | NULL, NULL, 0);
|
---|
| 451 | ipc_irq_make_table(IRQ_COUNT);
|
---|
| 452 | }
|
---|
| 453 |
|
---|
[c4e4507] | 454 |
|
---|
| 455 | /** Kconsole - list answerbox contents */
|
---|
| 456 | void ipc_print_task(task_id_t taskid)
|
---|
| 457 | {
|
---|
| 458 | task_t *task;
|
---|
| 459 | int i;
|
---|
| 460 | call_t *call;
|
---|
| 461 | link_t *tmp;
|
---|
| 462 |
|
---|
| 463 | spinlock_lock(&tasks_lock);
|
---|
| 464 | task = task_find_by_id(taskid);
|
---|
| 465 | if (task)
|
---|
| 466 | spinlock_lock(&task->lock);
|
---|
| 467 | spinlock_unlock(&tasks_lock);
|
---|
| 468 | if (!task)
|
---|
| 469 | return;
|
---|
| 470 |
|
---|
| 471 | /* Print opened phones & details */
|
---|
| 472 | printf("PHONE:\n");
|
---|
| 473 | for (i=0; i < IPC_MAX_PHONES;i++) {
|
---|
| 474 | spinlock_lock(&task->phones[i].lock);
|
---|
| 475 | if (task->phones[i].state != IPC_PHONE_FREE) {
|
---|
| 476 | printf("%d: ",i);
|
---|
| 477 | switch (task->phones[i].state) {
|
---|
| 478 | case IPC_PHONE_CONNECTING:
|
---|
| 479 | printf("connecting ");
|
---|
| 480 | break;
|
---|
| 481 | case IPC_PHONE_CONNECTED:
|
---|
| 482 | printf("connected to: %P ",
|
---|
| 483 | task->phones[i].callee);
|
---|
| 484 | break;
|
---|
| 485 | case IPC_PHONE_SLAMMED:
|
---|
| 486 | printf("slammed by: %P ",
|
---|
| 487 | task->phones[i].callee);
|
---|
| 488 | break;
|
---|
| 489 | case IPC_PHONE_HUNGUP:
|
---|
| 490 | printf("hung up - was: %P ",
|
---|
| 491 | task->phones[i].callee);
|
---|
| 492 | break;
|
---|
| 493 | default:
|
---|
| 494 | break;
|
---|
| 495 | }
|
---|
| 496 | printf("active: %d\n", atomic_get(&task->phones[i].active_calls));
|
---|
| 497 | }
|
---|
| 498 | spinlock_unlock(&task->phones[i].lock);
|
---|
| 499 | }
|
---|
| 500 |
|
---|
| 501 |
|
---|
| 502 | /* Print answerbox - calls */
|
---|
| 503 | spinlock_lock(&task->answerbox.lock);
|
---|
| 504 | printf("ABOX - CALLS:\n");
|
---|
| 505 | for (tmp=task->answerbox.calls.next; tmp != &task->answerbox.calls;tmp = tmp->next) {
|
---|
| 506 | call = list_get_instance(tmp, call_t, link);
|
---|
| 507 | printf("Callid: %P Srctask:%lld M:%d A1:%d A2:%d A3:%d Flags:%x\n",call,
|
---|
| 508 | call->sender->taskid, IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
|
---|
| 509 | IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data), call->flags);
|
---|
| 510 | }
|
---|
| 511 | /* Print answerbox - calls */
|
---|
| 512 | printf("ABOX - DISPATCHED CALLS:\n");
|
---|
| 513 | for (tmp=task->answerbox.dispatched_calls.next;
|
---|
| 514 | tmp != &task->answerbox.dispatched_calls;
|
---|
| 515 | tmp = tmp->next) {
|
---|
| 516 | call = list_get_instance(tmp, call_t, link);
|
---|
| 517 | printf("Callid: %P Srctask:%lld M:%d A1:%d A2:%d A3:%d Flags:%x\n",call,
|
---|
| 518 | call->sender->taskid, IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
|
---|
| 519 | IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data), call->flags);
|
---|
| 520 | }
|
---|
| 521 | /* Print answerbox - calls */
|
---|
| 522 | printf("ABOX - ANSWERS:\n");
|
---|
| 523 | for (tmp=task->answerbox.answers.next; tmp != &task->answerbox.answers; tmp = tmp->next) {
|
---|
| 524 | call = list_get_instance(tmp, call_t, link);
|
---|
| 525 | printf("Callid:%P M:%d A1:%d A2:%d A3:%d Flags:%x\n",call,
|
---|
| 526 | IPC_GET_METHOD(call->data), IPC_GET_ARG1(call->data),
|
---|
| 527 | IPC_GET_ARG2(call->data), IPC_GET_ARG3(call->data), call->flags);
|
---|
| 528 | }
|
---|
| 529 |
|
---|
| 530 | spinlock_unlock(&task->answerbox.lock);
|
---|
| 531 | spinlock_unlock(&task->lock);
|
---|
| 532 | }
|
---|