source: mainline/uspace/lib/libc/generic/async.c@ 36c9234

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

Improve comments in async.c

  • Property mode set to 100644
File size: 22.9 KB
RevLine 
[06502f7d]1/*
[df4ed85]2 * Copyright (c) 2006 Ondrej Palkovsky
[06502f7d]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.
[b2951e2]27 */
28
[a46da63]29/** @addtogroup libc
[b2951e2]30 * @{
31 */
32/** @file
[450cd3a]33 */
[06502f7d]34
[80649a91]35/**
36 * Asynchronous library
37 *
[9591265]38 * The aim of this library is facilitating writing programs utilizing the
39 * asynchronous nature of HelenOS IPC, yet using a normal way of programming.
[80649a91]40 *
[9591265]41 * You should be able to write very simple multithreaded programs, the async
42 * framework will automatically take care of most synchronization problems.
[80649a91]43 *
44 * Default semantics:
[9591265]45 * - async_send_*(): send asynchronously. If the kernel refuses to send
46 * more messages, [ try to get responses from kernel, if
47 * nothing found, might try synchronous ]
[80649a91]48 *
[9591265]49 * Example of use (pseudo C):
[80649a91]50 *
51 * 1) Multithreaded client application
[9591265]52 *
53 * fibril_create(fibril1, ...);
54 * fibril_create(fibril2, ...);
55 * ...
[80649a91]56 *
[9591265]57 * int fibril1(void *arg)
58 * {
59 * conn = ipc_connect_me_to();
60 * c1 = async_send(conn);
61 * c2 = async_send(conn);
62 * async_wait_for(c1);
63 * async_wait_for(c2);
64 * ...
65 * }
[80649a91]66 *
67 *
68 * 2) Multithreaded server application
[9591265]69 * main()
70 * {
71 * async_manager();
[80649a91]72 * }
73 *
74 *
[36c9234]75 * my_client_connection(icallid, *icall)
[9591265]76 * {
77 * if (want_refuse) {
78 * ipc_answer_fast(icallid, ELIMIT, 0, 0);
79 * return;
80 * }
81 * ipc_answer_fast(icallid, EOK, 0, 0);
[80649a91]82 *
[9591265]83 * callid = async_get_call(&call);
84 * handle_call(callid, call);
85 * ipc_answer_fast(callid, 1, 2, 3);
[53ca318]86 *
[9591265]87 * callid = async_get_call(&call);
88 * ....
[80649a91]89 * }
[a2cd194]90 *
[80649a91]91 */
[9591265]92
[80649a91]93#include <futex.h>
94#include <async.h>
[bc1f1c2]95#include <fibril.h>
[80649a91]96#include <stdio.h>
97#include <libadt/hash_table.h>
98#include <libadt/list.h>
99#include <ipc/ipc.h>
100#include <assert.h>
101#include <errno.h>
[daa90e8]102#include <sys/time.h>
[c042bdd]103#include <arch/barrier.h>
[80649a91]104
[fc42b28]105atomic_t async_futex = FUTEX_INITIALIZER;
[80649a91]106static hash_table_t conn_hash_table;
[c042bdd]107static LIST_INITIALIZE(timeout_list);
[80649a91]108
[e70bfa5]109/** Structures of this type represent a waiting fibril. */
[01ff41c]110typedef struct {
[e70bfa5]111 /** Expiration time. */
[bc1f1c2]112 struct timeval expires;
113 /** If true, this struct is in the timeout list. */
114 int inlist;
[e70bfa5]115 /** Timeout list link. */
[49d072e]116 link_t link;
117
[36c9234]118 /** Identification of and link to the waiting fibril. */
[bc1f1c2]119 fid_t fid;
[e70bfa5]120 /** If true, this fibril is currently active. */
[bc1f1c2]121 int active;
[e70bfa5]122 /** If true, we have timed out. */
[bc1f1c2]123 int timedout;
[49d072e]124} awaiter_t;
125
126typedef struct {
127 awaiter_t wdata;
[e70bfa5]128
129 /** If reply was received. */
130 int done;
131 /** Pointer to where the answer data is stored. */
132 ipc_call_t *dataptr;
[49d072e]133
[01ff41c]134 ipcarg_t retval;
135} amsg_t;
136
[36c9234]137/**
138 * Structures of this type are used to group information about a call and a
139 * message queue link.
140 */
[80649a91]141typedef struct {
142 link_t link;
143 ipc_callid_t callid;
144 ipc_call_t call;
145} msg_t;
146
147typedef struct {
[49d072e]148 awaiter_t wdata;
149
[e70bfa5]150 /** Hash table link. */
151 link_t link;
152
153 /** Incoming phone hash. */
154 ipcarg_t in_phone_hash;
155
156 /** Messages that should be delivered to this fibril. */
157 link_t msg_queue;
158
159 /** Identification of the opening call. */
[80649a91]160 ipc_callid_t callid;
[e70bfa5]161 /** Call data of the opening call. */
[80649a91]162 ipc_call_t call;
[e70bfa5]163
164 /** Identification of the closing call. */
165 ipc_callid_t close_callid;
166
167 /** Fibril function that will be used to handle the connection. */
[bc1f1c2]168 void (*cfibril)(ipc_callid_t, ipc_call_t *);
[80649a91]169} connection_t;
170
[bc1f1c2]171/** Identifier of the incoming connection handled by the current fibril. */
172__thread connection_t *FIBRIL_connection;
[e70bfa5]173
[36c9234]174/**
175 * If true, it is forbidden to use async_req functions and all preemption is
176 * disabled.
177 */
[085bd54]178__thread int in_interrupt_handler;
[80649a91]179
[da0c91e7]180static void default_client_connection(ipc_callid_t callid, ipc_call_t *call);
[51dbadf3]181static void default_interrupt_received(ipc_callid_t callid, ipc_call_t *call);
[36c9234]182
183/**
184 * Pointer to a fibril function that will be used to handle connections.
185 */
[da0c91e7]186static async_client_conn_t client_connection = default_client_connection;
[36c9234]187/**
188 * Pointer to a fibril function that will be used to handle interrupt
189 * notifications.
190 */
[51dbadf3]191static async_client_conn_t interrupt_received = default_interrupt_received;
[da0c91e7]192
[a2cd194]193#define CONN_HASH_TABLE_CHAINS 32
[80649a91]194
[e70bfa5]195/** Compute hash into the connection hash table based on the source phone hash.
196 *
197 * @param key Pointer to source phone hash.
198 *
199 * @return Index into the connection hash table.
200 */
[80649a91]201static hash_index_t conn_hash(unsigned long *key)
[450cd3a]202{
[80649a91]203 assert(key);
[a2cd194]204 return ((*key) >> 4) % CONN_HASH_TABLE_CHAINS;
[450cd3a]205}
[06502f7d]206
[e70bfa5]207/** Compare hash table item with a key.
208 *
209 * @param key Array containing the source phone hash as the only item.
210 * @param keys Expected 1 but ignored.
211 * @param item Connection hash table item.
212 *
213 * @return True on match, false otherwise.
214 */
[80649a91]215static int conn_compare(unsigned long key[], hash_count_t keys, link_t *item)
[450cd3a]216{
[80649a91]217 connection_t *hs;
218
219 hs = hash_table_get_instance(item, connection_t, link);
220
221 return key[0] == hs->in_phone_hash;
[450cd3a]222}
[06502f7d]223
[e70bfa5]224/** Connection hash table removal callback function.
225 *
226 * This function is called whenever a connection is removed from the connection
227 * hash table.
228 *
229 * @param item Connection hash table item being removed.
230 */
[80649a91]231static void conn_remove(link_t *item)
[450cd3a]232{
[80649a91]233 free(hash_table_get_instance(item, connection_t, link));
[450cd3a]234}
235
[80649a91]236
[e70bfa5]237/** Operations for the connection hash table. */
[80649a91]238static hash_table_operations_t conn_hash_table_ops = {
239 .hash = conn_hash,
240 .compare = conn_compare,
241 .remove_callback = conn_remove
242};
243
[e70bfa5]244/** Sort in current fibril's timeout request.
[49d072e]245 *
[e70bfa5]246 * @param wd Wait data of the current fibril.
[49d072e]247 */
248static void insert_timeout(awaiter_t *wd)
249{
250 link_t *tmp;
251 awaiter_t *cur;
252
253 wd->timedout = 0;
[085bd54]254 wd->inlist = 1;
[49d072e]255
256 tmp = timeout_list.next;
257 while (tmp != &timeout_list) {
258 cur = list_get_instance(tmp, awaiter_t, link);
259 if (tv_gteq(&cur->expires, &wd->expires))
260 break;
261 tmp = tmp->next;
262 }
263 list_append(&wd->link, tmp);
264}
265
[e70bfa5]266/** Try to route a call to an appropriate connection fibril.
[80649a91]267 *
[36c9234]268 * If the proper connection fibril is found, a message with the call is added to
269 * its message queue. If the fibril was not active, it is activated and all
270 * timeouts are unregistered.
271 *
272 * @param callid Hash of the incoming call.
273 * @param call Data of the incoming call.
274 *
275 * @return Zero if the call doesn't match any connection.
276 * One if the call was passed to the respective connection
277 * fibril.
[80649a91]278 */
279static int route_call(ipc_callid_t callid, ipc_call_t *call)
[450cd3a]280{
[80649a91]281 connection_t *conn;
282 msg_t *msg;
283 link_t *hlp;
284 unsigned long key;
285
[01ff41c]286 futex_down(&async_futex);
[80649a91]287
288 key = call->in_phone_hash;
289 hlp = hash_table_find(&conn_hash_table, &key);
290 if (!hlp) {
[01ff41c]291 futex_up(&async_futex);
[80649a91]292 return 0;
[450cd3a]293 }
[80649a91]294 conn = hash_table_get_instance(hlp, connection_t, link);
295
296 msg = malloc(sizeof(*msg));
297 msg->callid = callid;
298 msg->call = *call;
299 list_append(&msg->link, &conn->msg_queue);
[41269bd]300
301 if (IPC_GET_METHOD(*call) == IPC_M_PHONE_HUNGUP)
302 conn->close_callid = callid;
[80649a91]303
[36c9234]304 /* If the connection fibril is waiting for an event, activate it */
[49d072e]305 if (!conn->wdata.active) {
306 /* If in timeout list, remove it */
307 if (conn->wdata.inlist) {
308 conn->wdata.inlist = 0;
309 list_remove(&conn->wdata.link);
310 }
311 conn->wdata.active = 1;
[bc1f1c2]312 fibril_add_ready(conn->wdata.fid);
[80649a91]313 }
314
[01ff41c]315 futex_up(&async_futex);
[80649a91]316
317 return 1;
318}
319
[e70bfa5]320/** Return new incoming message for the current (fibril-local) connection.
321 *
322 * @param call Storage where the incoming call data will be stored.
323 * @param usecs Timeout in microseconds. Zero denotes no timeout.
324 *
325 * @return If no timeout was specified, then a hash of the
326 * incoming call is returned. If a timeout is specified,
327 * then a hash of the incoming call is returned unless
328 * the timeout expires prior to receiving a message. In
329 * that case zero is returned.
330 */
[49d072e]331ipc_callid_t async_get_call_timeout(ipc_call_t *call, suseconds_t usecs)
[80649a91]332{
333 msg_t *msg;
334 ipc_callid_t callid;
[6c46350]335 connection_t *conn;
[80649a91]336
[bc1f1c2]337 assert(FIBRIL_connection);
338 /* GCC 4.1.0 coughs on FIBRIL_connection-> dereference,
[6c46350]339 * GCC 4.1.1 happilly puts the rdhwr instruction in delay slot.
340 * I would never expect to find so many errors in
[36c9234]341 * a compiler *($&$(*&$
[6c46350]342 */
[bc1f1c2]343 conn = FIBRIL_connection;
[c0e674a]344
[01ff41c]345 futex_down(&async_futex);
[80649a91]346
[49d072e]347 if (usecs) {
[6c46350]348 gettimeofday(&conn->wdata.expires, NULL);
349 tv_add(&conn->wdata.expires, usecs);
[49d072e]350 } else {
[6c46350]351 conn->wdata.inlist = 0;
[49d072e]352 }
[e70bfa5]353 /* If nothing in queue, wait until something arrives */
[6c46350]354 while (list_empty(&conn->msg_queue)) {
[085bd54]355 if (usecs)
[6c46350]356 insert_timeout(&conn->wdata);
[085bd54]357
[6c46350]358 conn->wdata.active = 0;
[bc1f1c2]359 fibril_schedule_next_adv(FIBRIL_TO_MANAGER);
[e70bfa5]360 /*
361 * Futex is up after getting back from async_manager get it
362 * again.
363 */
[49d072e]364 futex_down(&async_futex);
[bc1f1c2]365 if (usecs && conn->wdata.timedout &&
[6c46350]366 list_empty(&conn->msg_queue)) {
[e70bfa5]367 /* If we timed out -> exit */
[49d072e]368 futex_up(&async_futex);
369 return 0;
370 }
[450cd3a]371 }
372
[6c46350]373 msg = list_get_instance(conn->msg_queue.next, msg_t, link);
[80649a91]374 list_remove(&msg->link);
375 callid = msg->callid;
376 *call = msg->call;
377 free(msg);
378
[01ff41c]379 futex_up(&async_futex);
[80649a91]380 return callid;
381}
382
[36c9234]383/** Default fibril function that gets called to handle new connection.
[a2cd194]384 *
[e70bfa5]385 * This function is defined as a weak symbol - to be redefined in user code.
[36c9234]386 *
387 * @param callid Hash of the incoming call.
388 * @param call Data of the incoming call.
[a2cd194]389 */
[da0c91e7]390static void default_client_connection(ipc_callid_t callid, ipc_call_t *call)
[80649a91]391{
[a2cd194]392 ipc_answer_fast(callid, ENOENT, 0, 0);
[80649a91]393}
[36c9234]394
395/** Default fibril function that gets called to handle interrupt notifications.
396 *
397 * @param callid Hash of the incoming call.
398 * @param call Data of the incoming call.
399 */
[51dbadf3]400static void default_interrupt_received(ipc_callid_t callid, ipc_call_t *call)
[44c6d88d]401{
402}
403
[f2f0392]404/** Wrapper for client connection fibril.
405 *
[36c9234]406 * When a new connection arrives, a fibril with this implementing function is
[f2f0392]407 * created. It calls client_connection() and does the final cleanup.
[a2cd194]408 *
[36c9234]409 * @param arg Connection structure pointer.
[a2cd194]410 *
[f2f0392]411 * @return Always zero.
[a2cd194]412 */
[bc1f1c2]413static int connection_fibril(void *arg)
[80649a91]414{
[a2cd194]415 unsigned long key;
416 msg_t *msg;
[41269bd]417 int close_answered = 0;
[a2cd194]418
[f2f0392]419 /* Setup fibril-local connection pointer */
[bc1f1c2]420 FIBRIL_connection = (connection_t *) arg;
421 FIBRIL_connection->cfibril(FIBRIL_connection->callid,
422 &FIBRIL_connection->call);
[a46da63]423
[36c9234]424 /* Remove myself from the connection hash table */
[01ff41c]425 futex_down(&async_futex);
[bc1f1c2]426 key = FIBRIL_connection->in_phone_hash;
[a2cd194]427 hash_table_remove(&conn_hash_table, &key, 1);
[01ff41c]428 futex_up(&async_futex);
[a46da63]429
[36c9234]430 /* Answer all remaining messages with EHANGUP */
[bc1f1c2]431 while (!list_empty(&FIBRIL_connection->msg_queue)) {
432 msg = list_get_instance(FIBRIL_connection->msg_queue.next,
433 msg_t, link);
[a2cd194]434 list_remove(&msg->link);
[bc1f1c2]435 if (msg->callid == FIBRIL_connection->close_callid)
[41269bd]436 close_answered = 1;
[a2cd194]437 ipc_answer_fast(msg->callid, EHANGUP, 0, 0);
438 free(msg);
439 }
[bc1f1c2]440 if (FIBRIL_connection->close_callid)
441 ipc_answer_fast(FIBRIL_connection->close_callid, 0, 0, 0);
[a46da63]442
443 return 0;
[80649a91]444}
445
[f2f0392]446/** Create a new fibril for a new connection.
[80649a91]447 *
[f2f0392]448 * Creates new fibril for connection, fills in connection structures and inserts
449 * it into the hash table, so that later we can easily do routing of messages to
450 * particular fibrils.
[53ca318]451 *
[36c9234]452 * @param in_phone_hash Identification of the incoming connection.
453 * @param callid Hash of the opening IPC_M_CONNECT_ME_TO call.
454 * @param call Call data of the opening call.
455 * @param cfibril Fibril function that should be called upon opening the
456 * connection.
457 *
458 * @return New fibril id or NULL on failure.
[80649a91]459 */
[bc1f1c2]460fid_t async_new_connection(ipcarg_t in_phone_hash, ipc_callid_t callid,
461 ipc_call_t *call, void (*cfibril)(ipc_callid_t, ipc_call_t *))
[80649a91]462{
463 connection_t *conn;
464 unsigned long key;
465
466 conn = malloc(sizeof(*conn));
467 if (!conn) {
468 ipc_answer_fast(callid, ENOMEM, 0, 0);
[53ca318]469 return NULL;
[80649a91]470 }
[44c6d88d]471 conn->in_phone_hash = in_phone_hash;
[80649a91]472 list_initialize(&conn->msg_queue);
473 conn->callid = callid;
[41269bd]474 conn->close_callid = 0;
[eaf34f7]475 if (call)
476 conn->call = *call;
[36c9234]477 conn->wdata.active = 1; /* We will activate the fibril ASAP */
[bc1f1c2]478 conn->cfibril = cfibril;
[49d072e]479
[bc1f1c2]480 conn->wdata.fid = fibril_create(connection_fibril, conn);
481 if (!conn->wdata.fid) {
[80649a91]482 free(conn);
483 ipc_answer_fast(callid, ENOMEM, 0, 0);
[53ca318]484 return NULL;
[80649a91]485 }
[36c9234]486 /* Add connection to the connection hash table */
[80649a91]487 key = conn->in_phone_hash;
[01ff41c]488 futex_down(&async_futex);
[80649a91]489 hash_table_insert(&conn_hash_table, &key, &conn->link);
[01ff41c]490 futex_up(&async_futex);
[80649a91]491
[bc1f1c2]492 fibril_add_ready(conn->wdata.fid);
[53ca318]493
[bc1f1c2]494 return conn->wdata.fid;
[80649a91]495}
496
[36c9234]497/** Handle a call that was received.
498 *
499 * If the call has the IPC_M_CONNECT_ME_TO method, a new connection is created.
500 * Otherwise the call is routed to its connection fibril.
501 *
502 * @param callid Hash of the incoming call.
503 * @param call Data of the incoming call.
504 */
[80649a91]505static void handle_call(ipc_callid_t callid, ipc_call_t *call)
506{
[44c6d88d]507 /* Unrouted call - do some default behaviour */
[15039b67]508 if ((callid & IPC_CALLID_NOTIFICATION)) {
[085bd54]509 in_interrupt_handler = 1;
[51dbadf3]510 (*interrupt_received)(callid,call);
[085bd54]511 in_interrupt_handler = 0;
[44c6d88d]512 return;
[15039b67]513 }
514
515 switch (IPC_GET_METHOD(*call)) {
[80649a91]516 case IPC_M_CONNECT_ME_TO:
[f2f0392]517 /* Open new connection with fibril etc. */
[bc1f1c2]518 async_new_connection(IPC_GET_ARG3(*call), callid, call,
519 client_connection);
[44c6d88d]520 return;
[80649a91]521 }
[44c6d88d]522
[36c9234]523 /* Try to route the call through the connection hash table */
[44c6d88d]524 if (route_call(callid, call))
525 return;
526
527 /* Unknown call from unknown phone - hang it up */
528 ipc_answer_fast(callid, EHANGUP, 0, 0);
[450cd3a]529}
530
[f2f0392]531/** Fire all timeouts that expired. */
[c042bdd]532static void handle_expired_timeouts(void)
533{
534 struct timeval tv;
[49d072e]535 awaiter_t *waiter;
[c042bdd]536 link_t *cur;
537
[36c9234]538 gettimeofday(&tv, NULL);
[c042bdd]539 futex_down(&async_futex);
540
541 cur = timeout_list.next;
542 while (cur != &timeout_list) {
[bc1f1c2]543 waiter = list_get_instance(cur, awaiter_t, link);
[49d072e]544 if (tv_gt(&waiter->expires, &tv))
[c042bdd]545 break;
546 cur = cur->next;
[49d072e]547 list_remove(&waiter->link);
548 waiter->inlist = 0;
549 waiter->timedout = 1;
[36c9234]550 /*
551 * Redundant condition?
552 * The fibril should not be active when it gets here.
[c042bdd]553 */
[49d072e]554 if (!waiter->active) {
555 waiter->active = 1;
[bc1f1c2]556 fibril_add_ready(waiter->fid);
[c042bdd]557 }
558 }
559
560 futex_up(&async_futex);
561}
562
[36c9234]563/** Endless loop dispatching incoming calls and answers.
564 *
565 * @return Never returns.
566 */
[085bd54]567static int async_manager_worker(void)
[80649a91]568{
569 ipc_call_t call;
570 ipc_callid_t callid;
[0b99e40]571 int timeout;
[49d072e]572 awaiter_t *waiter;
[c042bdd]573 struct timeval tv;
[80649a91]574
575 while (1) {
[bc1f1c2]576 if (fibril_schedule_next_adv(FIBRIL_FROM_MANAGER)) {
[a46da63]577 futex_up(&async_futex);
[36c9234]578 /*
579 * async_futex is always held when entering a manager
580 * fibril.
[a46da63]581 */
[80649a91]582 continue;
583 }
[c042bdd]584 futex_down(&async_futex);
585 if (!list_empty(&timeout_list)) {
[bc1f1c2]586 waiter = list_get_instance(timeout_list.next, awaiter_t,
587 link);
588 gettimeofday(&tv, NULL);
[49d072e]589 if (tv_gteq(&tv, &waiter->expires)) {
[6c46350]590 futex_up(&async_futex);
[c042bdd]591 handle_expired_timeouts();
592 continue;
593 } else
[49d072e]594 timeout = tv_sub(&waiter->expires, &tv);
[c042bdd]595 } else
[0b99e40]596 timeout = SYNCH_NO_TIMEOUT;
[c042bdd]597 futex_up(&async_futex);
598
[2d22049]599 callid = ipc_wait_cycle(&call, timeout, SYNCH_FLAGS_NONE);
[0b99e40]600
601 if (!callid) {
[c042bdd]602 handle_expired_timeouts();
[0b99e40]603 continue;
604 }
[80649a91]605
[085bd54]606 if (callid & IPC_CALLID_ANSWERED) {
[80649a91]607 continue;
[085bd54]608 }
[01ff41c]609
[80649a91]610 handle_call(callid, &call);
611 }
[a46da63]612
613 return 0;
[80649a91]614}
615
[36c9234]616/** Function to start async_manager as a standalone fibril.
[a2cd194]617 *
[36c9234]618 * When more kernel threads are used, one async manager should exist per thread.
619 *
620 * @param arg Unused.
621 *
622 * @return Never returns.
[a2cd194]623 */
[9591265]624static int async_manager_fibril(void *arg)
[80649a91]625{
[a46da63]626 futex_up(&async_futex);
[36c9234]627 /*
628 * async_futex is always locked when entering manager
629 */
[085bd54]630 async_manager_worker();
[a46da63]631
632 return 0;
[80649a91]633}
[450cd3a]634
[36c9234]635/** Add one manager to manager list. */
[80649a91]636void async_create_manager(void)
[450cd3a]637{
[bc1f1c2]638 fid_t fid;
[80649a91]639
[9591265]640 fid = fibril_create(async_manager_fibril, NULL);
[bc1f1c2]641 fibril_add_manager(fid);
[80649a91]642}
643
644/** Remove one manager from manager list */
645void async_destroy_manager(void)
646{
[bc1f1c2]647 fibril_remove_manager();
[80649a91]648}
649
[36c9234]650/** Initialize the async framework.
651 *
652 * @return Zero on success or an error code.
653 */
[80649a91]654int _async_init(void)
655{
[bc1f1c2]656 if (!hash_table_create(&conn_hash_table, CONN_HASH_TABLE_CHAINS, 1,
657 &conn_hash_table_ops)) {
[80649a91]658 printf("%s: cannot create hash table\n", "async");
659 return ENOMEM;
660 }
661
[a46da63]662 return 0;
[450cd3a]663}
[01ff41c]664
[36c9234]665/** Reply received callback.
[01ff41c]666 *
[36c9234]667 * This function is called whenever a reply for an asynchronous message sent out
668 * by the asynchronous framework is received.
669 *
670 * Notify the fibril which is waiting for this message that it has arrived.
671 *
672 * @param private Pointer to the asynchronous message record.
673 * @param retval Value returned in the answer.
674 * @param data Call data of the answer.
[01ff41c]675 */
[f2f0392]676static void reply_received(void *private, int retval, ipc_call_t *data)
[01ff41c]677{
678 amsg_t *msg = (amsg_t *) private;
679
680 msg->retval = retval;
681
682 futex_down(&async_futex);
[36c9234]683 /* Copy data after futex_down, just in case the call was detached */
[01ff41c]684 if (msg->dataptr)
685 *msg->dataptr = *data;
[0b99e40]686
[c042bdd]687 write_barrier();
688 /* Remove message from timeout list */
[49d072e]689 if (msg->wdata.inlist)
690 list_remove(&msg->wdata.link);
[01ff41c]691 msg->done = 1;
[36c9234]692 if (!msg->wdata.active) {
[49d072e]693 msg->wdata.active = 1;
[bc1f1c2]694 fibril_add_ready(msg->wdata.fid);
[01ff41c]695 }
696 futex_up(&async_futex);
697}
698
[36c9234]699/** Send message and return id of the sent message.
700 *
701 * The return value can be used as input for async_wait() to wait for
702 * completion.
[01ff41c]703 *
[36c9234]704 * @param phoneid Handle of the phone that will be used for the send.
705 * @param method Service-defined method.
706 * @param arg1 Service-defined payload argument.
707 * @param arg2 Service-defined payload argument.
708 * @param dataptr If non-NULL, storage where the reply data will be
709 * stored.
710 *
711 * @return Hash of the sent message.
[01ff41c]712 */
713aid_t async_send_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2,
[f2f0392]714 ipc_call_t *dataptr)
[01ff41c]715{
716 amsg_t *msg;
717
[085bd54]718 if (in_interrupt_handler) {
[bc1f1c2]719 printf("Cannot send asynchronous request in interrupt "
720 "handler.\n");
[085bd54]721 _exit(1);
722 }
723
[01ff41c]724 msg = malloc(sizeof(*msg));
725 msg->done = 0;
726 msg->dataptr = dataptr;
[49d072e]727
[36c9234]728 /* We may sleep in the next method, but it will use its own mechanism */
729 msg->wdata.active = 1;
730
[bc1f1c2]731 ipc_call_async_2(phoneid, method, arg1, arg2, msg, reply_received, 1);
[01ff41c]732
733 return (aid_t) msg;
734}
735
[90f5d64]736/** Send message and return id of the sent message
737 *
[36c9234]738 * The return value can be used as input for async_wait() to wait for
739 * completion.
740 *
741 * @param phoneid Handle of the phone that will be used for the send.
742 * @param method Service-defined method.
743 * @param arg1 Service-defined payload argument.
744 * @param arg2 Service-defined payload argument.
745 * @param arg3 Service-defined payload argument.
746 * @param dataptr If non-NULL, storage where the reply data will be
747 * stored.
748 *
749 * @return Hash of the sent message.
[90f5d64]750 */
751aid_t async_send_3(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2,
[f2f0392]752 ipcarg_t arg3, ipc_call_t *dataptr)
[90f5d64]753{
754 amsg_t *msg;
755
[085bd54]756 if (in_interrupt_handler) {
[36c9234]757 printf("Cannot send asynchronous request in interrupt "
758 "handler.\n");
[085bd54]759 _exit(1);
760 }
761
[90f5d64]762 msg = malloc(sizeof(*msg));
763 msg->done = 0;
764 msg->dataptr = dataptr;
765
[36c9234]766 /* We may sleep in next method, but it will use its own mechanism */
767 msg->wdata.active = 1;
768
[bc1f1c2]769 ipc_call_async_3(phoneid, method, arg1, arg2, arg3, msg, reply_received,
770 1);
[90f5d64]771
772 return (aid_t) msg;
773}
774
[36c9234]775/** Wait for a message sent by the async framework.
[01ff41c]776 *
[36c9234]777 * @param amsgid Hash of the message to wait for.
778 * @param retval Pointer to storage where the retval of the answer will
779 * be stored.
[01ff41c]780 */
781void async_wait_for(aid_t amsgid, ipcarg_t *retval)
782{
783 amsg_t *msg = (amsg_t *) amsgid;
784
785 futex_down(&async_futex);
786 if (msg->done) {
787 futex_up(&async_futex);
788 goto done;
789 }
790
[bc1f1c2]791 msg->wdata.fid = fibril_get_id();
[49d072e]792 msg->wdata.active = 0;
793 msg->wdata.inlist = 0;
[36c9234]794 /* Leave the async_futex locked when entering this function */
[bc1f1c2]795 fibril_schedule_next_adv(FIBRIL_TO_MANAGER);
796 /* futex is up automatically after fibril_schedule_next...*/
[01ff41c]797done:
798 if (retval)
799 *retval = msg->retval;
800 free(msg);
801}
[0b99e40]802
[36c9234]803/** Wait for a message sent by the async framework, timeout variant.
[c042bdd]804 *
[36c9234]805 * @param amsgid Hash of the message to wait for.
806 * @param retval Pointer to storage where the retval of the answer will
807 * be stored.
808 * @param timeout Timeout in microseconds.
[c042bdd]809 *
[36c9234]810 * @return Zero on success, ETIMEOUT if the timeout has expired.
[c042bdd]811 */
812int async_wait_timeout(aid_t amsgid, ipcarg_t *retval, suseconds_t timeout)
813{
814 amsg_t *msg = (amsg_t *) amsgid;
[0b99e40]815
[86029498]816 /* TODO: Let it go through the event read at least once */
817 if (timeout < 0)
818 return ETIMEOUT;
819
[c042bdd]820 futex_down(&async_futex);
821 if (msg->done) {
822 futex_up(&async_futex);
823 goto done;
824 }
[0b99e40]825
[49d072e]826 gettimeofday(&msg->wdata.expires, NULL);
827 tv_add(&msg->wdata.expires, timeout);
828
[bc1f1c2]829 msg->wdata.fid = fibril_get_id();
[49d072e]830 msg->wdata.active = 0;
831 insert_timeout(&msg->wdata);
[0b99e40]832
[36c9234]833 /* Leave the async_futex locked when entering this function */
[bc1f1c2]834 fibril_schedule_next_adv(FIBRIL_TO_MANAGER);
835 /* futex is up automatically after fibril_schedule_next...*/
[0b99e40]836
[c042bdd]837 if (!msg->done)
838 return ETIMEOUT;
[0b99e40]839
[c042bdd]840done:
841 if (retval)
842 *retval = msg->retval;
843 free(msg);
844
845 return 0;
846}
[0b99e40]847
[36c9234]848/** Wait for specified time.
[44c6d88d]849 *
[36c9234]850 * The current fibril is suspended but the thread continues to execute.
851 *
852 * @param timeout Duration of the wait in microseconds.
[44c6d88d]853 */
854void async_usleep(suseconds_t timeout)
855{
856 amsg_t *msg;
857
[085bd54]858 if (in_interrupt_handler) {
859 printf("Cannot call async_usleep in interrupt handler.\n");
860 _exit(1);
861 }
862
[44c6d88d]863 msg = malloc(sizeof(*msg));
864 if (!msg)
865 return;
866
[bc1f1c2]867 msg->wdata.fid = fibril_get_id();
[49d072e]868 msg->wdata.active = 0;
[44c6d88d]869
[49d072e]870 gettimeofday(&msg->wdata.expires, NULL);
871 tv_add(&msg->wdata.expires, timeout);
[44c6d88d]872
873 futex_down(&async_futex);
[49d072e]874 insert_timeout(&msg->wdata);
[36c9234]875 /* Leave the async_futex locked when entering this function */
[bc1f1c2]876 fibril_schedule_next_adv(FIBRIL_TO_MANAGER);
[f2f0392]877 /* futex is up automatically after fibril_schedule_next_adv()...*/
[44c6d88d]878 free(msg);
879}
[da0c91e7]880
[36c9234]881/** Setter for client_connection function pointer.
[da0c91e7]882 *
[36c9234]883 * @param conn Function that will implement a new connection fibril.
[da0c91e7]884 */
885void async_set_client_connection(async_client_conn_t conn)
886{
887 client_connection = conn;
888}
[36c9234]889
890/** Setter for interrupt_received function pointer.
891 *
892 * @param conn Function that will implement a new interrupt
893 * notification fibril.
894 */
[51dbadf3]895void async_set_interrupt_received(async_client_conn_t conn)
896{
897 interrupt_received = conn;
898}
[085bd54]899
900/* Primitive functions for simple communication */
901void async_msg_3(int phoneid, ipcarg_t method, ipcarg_t arg1,
902 ipcarg_t arg2, ipcarg_t arg3)
903{
[bc1f1c2]904 ipc_call_async_3(phoneid, method, arg1, arg2, arg3, NULL, NULL,
905 !in_interrupt_handler);
[085bd54]906}
907
908void async_msg_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2)
909{
[bc1f1c2]910 ipc_call_async_2(phoneid, method, arg1, arg2, NULL, NULL,
911 !in_interrupt_handler);
[085bd54]912}
[b2951e2]913
[a46da63]914/** @}
[b2951e2]915 */
[36c9234]916
Note: See TracBrowser for help on using the repository browser.