Rev 2485 | Rev 2488 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1351 | palkovsky | 1 | /* |
2071 | jermar | 2 | * Copyright (c) 2006 Ondrej Palkovsky |
1351 | 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. |
||
1653 | cejka | 27 | */ |
28 | |||
1719 | decky | 29 | /** @addtogroup libc |
1653 | cejka | 30 | * @{ |
31 | */ |
||
32 | /** @file |
||
1351 | palkovsky | 33 | */ |
34 | |||
1392 | palkovsky | 35 | /** |
36 | * Asynchronous library |
||
37 | * |
||
2484 | jermar | 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. |
||
1392 | palkovsky | 40 | * |
2484 | jermar | 41 | * You should be able to write very simple multithreaded programs, the async |
42 | * framework will automatically take care of most synchronization problems. |
||
1392 | palkovsky | 43 | * |
44 | * Default semantics: |
||
2484 | jermar | 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 ] |
||
1392 | palkovsky | 48 | * |
2484 | jermar | 49 | * Example of use (pseudo C): |
1392 | palkovsky | 50 | * |
51 | * 1) Multithreaded client application |
||
2484 | jermar | 52 | * |
53 | * fibril_create(fibril1, ...); |
||
54 | * fibril_create(fibril2, ...); |
||
55 | * ... |
||
1392 | palkovsky | 56 | * |
2484 | jermar | 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 | * } |
||
1392 | palkovsky | 66 | * |
67 | * |
||
68 | * 2) Multithreaded server application |
||
2484 | jermar | 69 | * main() |
70 | * { |
||
71 | * async_manager(); |
||
1392 | palkovsky | 72 | * } |
73 | * |
||
74 | * |
||
2484 | jermar | 75 | * client_connection(icallid, *icall) |
76 | * { |
||
77 | * if (want_refuse) { |
||
78 | * ipc_answer_fast(icallid, ELIMIT, 0, 0); |
||
79 | * return; |
||
80 | * } |
||
81 | * ipc_answer_fast(icallid, EOK, 0, 0); |
||
1392 | palkovsky | 82 | * |
2484 | jermar | 83 | * callid = async_get_call(&call); |
84 | * handle_call(callid, call); |
||
85 | * ipc_answer_fast(callid, 1, 2, 3); |
||
1407 | palkovsky | 86 | * |
2484 | jermar | 87 | * callid = async_get_call(&call); |
88 | * .... |
||
1392 | palkovsky | 89 | * } |
1404 | palkovsky | 90 | * |
1392 | palkovsky | 91 | */ |
2484 | jermar | 92 | |
1392 | palkovsky | 93 | #include <futex.h> |
94 | #include <async.h> |
||
2482 | jermar | 95 | #include <fibril.h> |
1392 | palkovsky | 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> |
||
2486 | jermar | 102 | #include <sys/time.h> |
1441 | palkovsky | 103 | #include <arch/barrier.h> |
1392 | palkovsky | 104 | |
1463 | palkovsky | 105 | atomic_t async_futex = FUTEX_INITIALIZER; |
1392 | palkovsky | 106 | static hash_table_t conn_hash_table; |
1441 | palkovsky | 107 | static LIST_INITIALIZE(timeout_list); |
1392 | palkovsky | 108 | |
109 | typedef struct { |
||
2482 | jermar | 110 | /** Expiration time for waiting fibril. */ |
111 | struct timeval expires; |
||
112 | /** If true, this struct is in the timeout list. */ |
||
113 | int inlist; |
||
1500 | palkovsky | 114 | link_t link; |
115 | |||
2482 | jermar | 116 | /** Fibril waiting for this message. */ |
117 | fid_t fid; |
||
118 | /** If this fibril is currently active. */ |
||
119 | int active; |
||
120 | /** If true, we timed out. */ |
||
121 | int timedout; |
||
1500 | palkovsky | 122 | } awaiter_t; |
123 | |||
124 | typedef struct { |
||
125 | awaiter_t wdata; |
||
126 | |||
1971 | jermar | 127 | int done; /**< If reply was received */ |
128 | ipc_call_t *dataptr; /**< Pointer where the answer data |
||
2482 | jermar | 129 | * is stored */ |
1427 | palkovsky | 130 | ipcarg_t retval; |
131 | } amsg_t; |
||
132 | |||
133 | typedef struct { |
||
1392 | palkovsky | 134 | link_t link; |
135 | ipc_callid_t callid; |
||
136 | ipc_call_t call; |
||
137 | } msg_t; |
||
138 | |||
139 | typedef struct { |
||
1500 | palkovsky | 140 | awaiter_t wdata; |
141 | |||
2482 | jermar | 142 | link_t link; /**< Hash table link. */ |
1971 | jermar | 143 | ipcarg_t in_phone_hash; /**< Incoming phone hash. */ |
2482 | jermar | 144 | link_t msg_queue; /**< Messages that should be delivered |
145 | * to this fibril. */ |
||
1392 | palkovsky | 146 | /* Structures for connection opening packet */ |
147 | ipc_callid_t callid; |
||
148 | ipc_call_t call; |
||
2482 | jermar | 149 | ipc_callid_t close_callid; /* Identification of closing packet. */ |
150 | void (*cfibril)(ipc_callid_t, ipc_call_t *); |
||
1392 | palkovsky | 151 | } connection_t; |
152 | |||
2482 | jermar | 153 | /** Identifier of the incoming connection handled by the current fibril. */ |
154 | __thread connection_t *FIBRIL_connection; |
||
1610 | palkovsky | 155 | /** If true, it is forbidden to use async_req functions and |
156 | * all preemption is disabled */ |
||
157 | __thread int in_interrupt_handler; |
||
1392 | palkovsky | 158 | |
1490 | palkovsky | 159 | static void default_client_connection(ipc_callid_t callid, ipc_call_t *call); |
1596 | palkovsky | 160 | static void default_interrupt_received(ipc_callid_t callid, ipc_call_t *call); |
1490 | palkovsky | 161 | static async_client_conn_t client_connection = default_client_connection; |
1596 | palkovsky | 162 | static async_client_conn_t interrupt_received = default_interrupt_received; |
1490 | palkovsky | 163 | |
1392 | palkovsky | 164 | /* Hash table functions */ |
1404 | palkovsky | 165 | #define CONN_HASH_TABLE_CHAINS 32 |
1392 | palkovsky | 166 | |
167 | static hash_index_t conn_hash(unsigned long *key) |
||
1351 | palkovsky | 168 | { |
1392 | palkovsky | 169 | assert(key); |
1404 | palkovsky | 170 | return ((*key) >> 4) % CONN_HASH_TABLE_CHAINS; |
1351 | palkovsky | 171 | } |
172 | |||
1392 | palkovsky | 173 | static int conn_compare(unsigned long key[], hash_count_t keys, link_t *item) |
1351 | palkovsky | 174 | { |
1392 | palkovsky | 175 | connection_t *hs; |
176 | |||
177 | hs = hash_table_get_instance(item, connection_t, link); |
||
178 | |||
179 | return key[0] == hs->in_phone_hash; |
||
1351 | palkovsky | 180 | } |
181 | |||
1392 | palkovsky | 182 | static void conn_remove(link_t *item) |
1351 | palkovsky | 183 | { |
1392 | palkovsky | 184 | free(hash_table_get_instance(item, connection_t, link)); |
1351 | palkovsky | 185 | } |
186 | |||
1392 | palkovsky | 187 | |
188 | /** Operations for NS hash table. */ |
||
189 | static hash_table_operations_t conn_hash_table_ops = { |
||
190 | .hash = conn_hash, |
||
191 | .compare = conn_compare, |
||
192 | .remove_callback = conn_remove |
||
193 | }; |
||
194 | |||
1500 | palkovsky | 195 | /** Insert sort timeout msg into timeouts list |
196 | * |
||
197 | */ |
||
198 | static void insert_timeout(awaiter_t *wd) |
||
199 | { |
||
200 | link_t *tmp; |
||
201 | awaiter_t *cur; |
||
202 | |||
203 | wd->timedout = 0; |
||
1610 | palkovsky | 204 | wd->inlist = 1; |
1500 | palkovsky | 205 | |
206 | tmp = timeout_list.next; |
||
207 | while (tmp != &timeout_list) { |
||
208 | cur = list_get_instance(tmp, awaiter_t, link); |
||
209 | if (tv_gteq(&cur->expires, &wd->expires)) |
||
210 | break; |
||
211 | tmp = tmp->next; |
||
212 | } |
||
213 | list_append(&wd->link, tmp); |
||
214 | } |
||
215 | |||
2485 | jermar | 216 | /** Try to route a call to an appropriate connection fibril |
1392 | palkovsky | 217 | * |
218 | */ |
||
219 | static int route_call(ipc_callid_t callid, ipc_call_t *call) |
||
1351 | palkovsky | 220 | { |
1392 | palkovsky | 221 | connection_t *conn; |
222 | msg_t *msg; |
||
223 | link_t *hlp; |
||
224 | unsigned long key; |
||
225 | |||
1427 | palkovsky | 226 | futex_down(&async_futex); |
1392 | palkovsky | 227 | |
228 | key = call->in_phone_hash; |
||
229 | hlp = hash_table_find(&conn_hash_table, &key); |
||
230 | if (!hlp) { |
||
1427 | palkovsky | 231 | futex_up(&async_futex); |
1392 | palkovsky | 232 | return 0; |
1351 | palkovsky | 233 | } |
1392 | palkovsky | 234 | conn = hash_table_get_instance(hlp, connection_t, link); |
1351 | palkovsky | 235 | |
1392 | palkovsky | 236 | msg = malloc(sizeof(*msg)); |
237 | msg->callid = callid; |
||
238 | msg->call = *call; |
||
239 | list_append(&msg->link, &conn->msg_queue); |
||
1648 | palkovsky | 240 | |
241 | if (IPC_GET_METHOD(*call) == IPC_M_PHONE_HUNGUP) |
||
242 | conn->close_callid = callid; |
||
1392 | palkovsky | 243 | |
1500 | palkovsky | 244 | /* If the call is waiting for event, run it */ |
245 | if (!conn->wdata.active) { |
||
246 | /* If in timeout list, remove it */ |
||
247 | if (conn->wdata.inlist) { |
||
248 | conn->wdata.inlist = 0; |
||
249 | list_remove(&conn->wdata.link); |
||
250 | } |
||
251 | conn->wdata.active = 1; |
||
2482 | jermar | 252 | fibril_add_ready(conn->wdata.fid); |
1392 | palkovsky | 253 | } |
1351 | palkovsky | 254 | |
1427 | palkovsky | 255 | futex_up(&async_futex); |
1392 | palkovsky | 256 | |
257 | return 1; |
||
258 | } |
||
259 | |||
2485 | jermar | 260 | /** Return new incoming message for the current (fibril-local) connection */ |
1500 | palkovsky | 261 | ipc_callid_t async_get_call_timeout(ipc_call_t *call, suseconds_t usecs) |
1392 | palkovsky | 262 | { |
263 | msg_t *msg; |
||
264 | ipc_callid_t callid; |
||
1536 | palkovsky | 265 | connection_t *conn; |
1392 | palkovsky | 266 | |
2482 | jermar | 267 | assert(FIBRIL_connection); |
268 | /* GCC 4.1.0 coughs on FIBRIL_connection-> dereference, |
||
1536 | palkovsky | 269 | * GCC 4.1.1 happilly puts the rdhwr instruction in delay slot. |
270 | * I would never expect to find so many errors in |
||
271 | * compiler *($&$(*&$ |
||
272 | */ |
||
2482 | jermar | 273 | conn = FIBRIL_connection; |
1466 | palkovsky | 274 | |
1427 | palkovsky | 275 | futex_down(&async_futex); |
1392 | palkovsky | 276 | |
1500 | palkovsky | 277 | if (usecs) { |
1536 | palkovsky | 278 | gettimeofday(&conn->wdata.expires, NULL); |
279 | tv_add(&conn->wdata.expires, usecs); |
||
1500 | palkovsky | 280 | } else { |
1536 | palkovsky | 281 | conn->wdata.inlist = 0; |
1500 | palkovsky | 282 | } |
1392 | palkovsky | 283 | /* If nothing in queue, wait until something appears */ |
1536 | palkovsky | 284 | while (list_empty(&conn->msg_queue)) { |
1610 | palkovsky | 285 | if (usecs) |
1536 | palkovsky | 286 | insert_timeout(&conn->wdata); |
1610 | palkovsky | 287 | |
1536 | palkovsky | 288 | conn->wdata.active = 0; |
2482 | jermar | 289 | fibril_schedule_next_adv(FIBRIL_TO_MANAGER); |
1500 | palkovsky | 290 | /* Futex is up after getting back from async_manager |
291 | * get it again */ |
||
292 | futex_down(&async_futex); |
||
2482 | jermar | 293 | if (usecs && conn->wdata.timedout && |
1536 | palkovsky | 294 | list_empty(&conn->msg_queue)) { |
1500 | palkovsky | 295 | /* If we timed out-> exit */ |
296 | futex_up(&async_futex); |
||
297 | return 0; |
||
298 | } |
||
1351 | palkovsky | 299 | } |
300 | |||
1536 | palkovsky | 301 | msg = list_get_instance(conn->msg_queue.next, msg_t, link); |
1392 | palkovsky | 302 | list_remove(&msg->link); |
303 | callid = msg->callid; |
||
304 | *call = msg->call; |
||
305 | free(msg); |
||
306 | |||
1427 | palkovsky | 307 | futex_up(&async_futex); |
1392 | palkovsky | 308 | return callid; |
1351 | palkovsky | 309 | } |
310 | |||
2485 | jermar | 311 | /** Fibril function that gets created on new connection |
1404 | palkovsky | 312 | * |
313 | * This function is defined as a weak symbol - to be redefined in |
||
314 | * user code. |
||
315 | */ |
||
1490 | palkovsky | 316 | static void default_client_connection(ipc_callid_t callid, ipc_call_t *call) |
1392 | palkovsky | 317 | { |
1404 | palkovsky | 318 | ipc_answer_fast(callid, ENOENT, 0, 0); |
1392 | palkovsky | 319 | } |
1596 | palkovsky | 320 | static void default_interrupt_received(ipc_callid_t callid, ipc_call_t *call) |
1452 | palkovsky | 321 | { |
322 | } |
||
323 | |||
2485 | jermar | 324 | /** Wrapper for client connection fibril. |
1404 | palkovsky | 325 | * |
2485 | jermar | 326 | * When new connection arrives, a fibril with this implementing function is |
327 | * created. It calls client_connection() and does the final cleanup. |
||
1404 | palkovsky | 328 | * |
2485 | jermar | 329 | * @param arg Connection structure pointer |
330 | * |
||
331 | * @return Always zero. |
||
1404 | palkovsky | 332 | */ |
2482 | jermar | 333 | static int connection_fibril(void *arg) |
1351 | palkovsky | 334 | { |
1404 | palkovsky | 335 | unsigned long key; |
336 | msg_t *msg; |
||
1648 | palkovsky | 337 | int close_answered = 0; |
1404 | palkovsky | 338 | |
2485 | jermar | 339 | /* Setup fibril-local connection pointer */ |
2482 | jermar | 340 | FIBRIL_connection = (connection_t *) arg; |
341 | FIBRIL_connection->cfibril(FIBRIL_connection->callid, |
||
342 | &FIBRIL_connection->call); |
||
1719 | decky | 343 | |
1404 | palkovsky | 344 | /* Remove myself from connection hash table */ |
1427 | palkovsky | 345 | futex_down(&async_futex); |
2482 | jermar | 346 | key = FIBRIL_connection->in_phone_hash; |
1404 | palkovsky | 347 | hash_table_remove(&conn_hash_table, &key, 1); |
1427 | palkovsky | 348 | futex_up(&async_futex); |
1719 | decky | 349 | |
1404 | palkovsky | 350 | /* Answer all remaining messages with ehangup */ |
2482 | jermar | 351 | while (!list_empty(&FIBRIL_connection->msg_queue)) { |
352 | msg = list_get_instance(FIBRIL_connection->msg_queue.next, |
||
353 | msg_t, link); |
||
1404 | palkovsky | 354 | list_remove(&msg->link); |
2482 | jermar | 355 | if (msg->callid == FIBRIL_connection->close_callid) |
1648 | palkovsky | 356 | close_answered = 1; |
1404 | palkovsky | 357 | ipc_answer_fast(msg->callid, EHANGUP, 0, 0); |
358 | free(msg); |
||
359 | } |
||
2482 | jermar | 360 | if (FIBRIL_connection->close_callid) |
361 | ipc_answer_fast(FIBRIL_connection->close_callid, 0, 0, 0); |
||
1719 | decky | 362 | |
363 | return 0; |
||
1351 | palkovsky | 364 | } |
1392 | palkovsky | 365 | |
2485 | jermar | 366 | /** Create a new fibril for a new connection. |
1392 | palkovsky | 367 | * |
2485 | jermar | 368 | * Creates new fibril for connection, fills in connection structures and inserts |
369 | * it into the hash table, so that later we can easily do routing of messages to |
||
370 | * particular fibrils. |
||
1407 | palkovsky | 371 | * |
2485 | jermar | 372 | * @param in_phone_hash Identification of the incoming connection |
373 | * @param callid Callid of the IPC_M_CONNECT_ME_TO packet |
||
374 | * @param call Call data of the opening packet |
||
375 | * @param cfibril Fibril function that should be called upon |
||
376 | * opening the connection |
||
377 | * @return New fibril id. |
||
1392 | palkovsky | 378 | */ |
2482 | jermar | 379 | fid_t async_new_connection(ipcarg_t in_phone_hash, ipc_callid_t callid, |
380 | ipc_call_t *call, void (*cfibril)(ipc_callid_t, ipc_call_t *)) |
||
1392 | palkovsky | 381 | { |
382 | connection_t *conn; |
||
383 | unsigned long key; |
||
384 | |||
385 | conn = malloc(sizeof(*conn)); |
||
386 | if (!conn) { |
||
387 | ipc_answer_fast(callid, ENOMEM, 0, 0); |
||
1407 | palkovsky | 388 | return NULL; |
1392 | palkovsky | 389 | } |
1452 | palkovsky | 390 | conn->in_phone_hash = in_phone_hash; |
1392 | palkovsky | 391 | list_initialize(&conn->msg_queue); |
392 | conn->callid = callid; |
||
1648 | palkovsky | 393 | conn->close_callid = 0; |
1453 | palkovsky | 394 | if (call) |
395 | conn->call = *call; |
||
1500 | palkovsky | 396 | conn->wdata.active = 1; /* We will activate it asap */ |
2482 | jermar | 397 | conn->cfibril = cfibril; |
1500 | palkovsky | 398 | |
2482 | jermar | 399 | conn->wdata.fid = fibril_create(connection_fibril, conn); |
400 | if (!conn->wdata.fid) { |
||
1392 | palkovsky | 401 | free(conn); |
402 | ipc_answer_fast(callid, ENOMEM, 0, 0); |
||
1407 | palkovsky | 403 | return NULL; |
1392 | palkovsky | 404 | } |
1500 | palkovsky | 405 | /* Add connection to hash table */ |
1392 | palkovsky | 406 | key = conn->in_phone_hash; |
1427 | palkovsky | 407 | futex_down(&async_futex); |
1392 | palkovsky | 408 | hash_table_insert(&conn_hash_table, &key, &conn->link); |
1427 | palkovsky | 409 | futex_up(&async_futex); |
1392 | palkovsky | 410 | |
2482 | jermar | 411 | fibril_add_ready(conn->wdata.fid); |
1407 | palkovsky | 412 | |
2482 | jermar | 413 | return conn->wdata.fid; |
1392 | palkovsky | 414 | } |
415 | |||
2485 | jermar | 416 | /** Handle a call that was received. */ |
1392 | palkovsky | 417 | static void handle_call(ipc_callid_t callid, ipc_call_t *call) |
418 | { |
||
1452 | palkovsky | 419 | /* Unrouted call - do some default behaviour */ |
1694 | palkovsky | 420 | if ((callid & IPC_CALLID_NOTIFICATION)) { |
1610 | palkovsky | 421 | in_interrupt_handler = 1; |
1596 | palkovsky | 422 | (*interrupt_received)(callid,call); |
1610 | palkovsky | 423 | in_interrupt_handler = 0; |
1452 | palkovsky | 424 | return; |
1694 | palkovsky | 425 | } |
426 | |||
427 | switch (IPC_GET_METHOD(*call)) { |
||
1392 | palkovsky | 428 | case IPC_M_CONNECT_ME_TO: |
2485 | jermar | 429 | /* Open new connection with fibril etc. */ |
2482 | jermar | 430 | async_new_connection(IPC_GET_ARG3(*call), callid, call, |
431 | client_connection); |
||
1452 | palkovsky | 432 | return; |
1392 | palkovsky | 433 | } |
1452 | palkovsky | 434 | |
435 | /* Try to route call through connection tables */ |
||
436 | if (route_call(callid, call)) |
||
437 | return; |
||
438 | |||
439 | /* Unknown call from unknown phone - hang it up */ |
||
440 | ipc_answer_fast(callid, EHANGUP, 0, 0); |
||
1392 | palkovsky | 441 | } |
442 | |||
2485 | jermar | 443 | /** Fire all timeouts that expired. */ |
1441 | palkovsky | 444 | static void handle_expired_timeouts(void) |
445 | { |
||
446 | struct timeval tv; |
||
1500 | palkovsky | 447 | awaiter_t *waiter; |
1441 | palkovsky | 448 | link_t *cur; |
449 | |||
450 | gettimeofday(&tv,NULL); |
||
451 | futex_down(&async_futex); |
||
452 | |||
453 | cur = timeout_list.next; |
||
454 | while (cur != &timeout_list) { |
||
2482 | jermar | 455 | waiter = list_get_instance(cur, awaiter_t, link); |
1500 | palkovsky | 456 | if (tv_gt(&waiter->expires, &tv)) |
1441 | palkovsky | 457 | break; |
458 | cur = cur->next; |
||
1500 | palkovsky | 459 | list_remove(&waiter->link); |
460 | waiter->inlist = 0; |
||
461 | waiter->timedout = 1; |
||
2485 | jermar | 462 | /* Redundant condition? The fibril should not |
1441 | palkovsky | 463 | * be active when it gets here. |
464 | */ |
||
1500 | palkovsky | 465 | if (!waiter->active) { |
466 | waiter->active = 1; |
||
2482 | jermar | 467 | fibril_add_ready(waiter->fid); |
1441 | palkovsky | 468 | } |
469 | } |
||
470 | |||
471 | futex_up(&async_futex); |
||
472 | } |
||
473 | |||
1392 | palkovsky | 474 | /** Endless loop dispatching incoming calls and answers */ |
1610 | palkovsky | 475 | static int async_manager_worker(void) |
1392 | palkovsky | 476 | { |
477 | ipc_call_t call; |
||
478 | ipc_callid_t callid; |
||
1435 | palkovsky | 479 | int timeout; |
1500 | palkovsky | 480 | awaiter_t *waiter; |
1441 | palkovsky | 481 | struct timeval tv; |
1392 | palkovsky | 482 | |
483 | while (1) { |
||
2482 | jermar | 484 | if (fibril_schedule_next_adv(FIBRIL_FROM_MANAGER)) { |
1719 | decky | 485 | futex_up(&async_futex); |
486 | /* async_futex is always held |
||
2485 | jermar | 487 | * when entering manager fibril |
1719 | decky | 488 | */ |
1392 | palkovsky | 489 | continue; |
490 | } |
||
1441 | palkovsky | 491 | futex_down(&async_futex); |
492 | if (!list_empty(&timeout_list)) { |
||
2482 | jermar | 493 | waiter = list_get_instance(timeout_list.next, awaiter_t, |
494 | link); |
||
495 | gettimeofday(&tv, NULL); |
||
1500 | palkovsky | 496 | if (tv_gteq(&tv, &waiter->expires)) { |
1536 | palkovsky | 497 | futex_up(&async_futex); |
1441 | palkovsky | 498 | handle_expired_timeouts(); |
499 | continue; |
||
500 | } else |
||
1500 | palkovsky | 501 | timeout = tv_sub(&waiter->expires, &tv); |
1441 | palkovsky | 502 | } else |
1435 | palkovsky | 503 | timeout = SYNCH_NO_TIMEOUT; |
1441 | palkovsky | 504 | futex_up(&async_futex); |
505 | |||
1503 | jermar | 506 | callid = ipc_wait_cycle(&call, timeout, SYNCH_FLAGS_NONE); |
1392 | palkovsky | 507 | |
1435 | palkovsky | 508 | if (!callid) { |
1441 | palkovsky | 509 | handle_expired_timeouts(); |
1435 | palkovsky | 510 | continue; |
511 | } |
||
512 | |||
1610 | palkovsky | 513 | if (callid & IPC_CALLID_ANSWERED) { |
1392 | palkovsky | 514 | continue; |
1610 | palkovsky | 515 | } |
1427 | palkovsky | 516 | |
1392 | palkovsky | 517 | handle_call(callid, &call); |
518 | } |
||
1719 | decky | 519 | |
520 | return 0; |
||
1392 | palkovsky | 521 | } |
522 | |||
2485 | jermar | 523 | /** Function to start async_manager as a standalone fibril. |
1404 | palkovsky | 524 | * |
525 | * When more kernel threads are used, one async manager should |
||
2485 | jermar | 526 | * exist per thread. |
1404 | palkovsky | 527 | */ |
2484 | jermar | 528 | static int async_manager_fibril(void *arg) |
1392 | palkovsky | 529 | { |
1719 | decky | 530 | futex_up(&async_futex); |
531 | /* async_futex is always locked when entering |
||
532 | * manager */ |
||
1610 | palkovsky | 533 | async_manager_worker(); |
1719 | decky | 534 | |
535 | return 0; |
||
1392 | palkovsky | 536 | } |
537 | |||
538 | /** Add one manager to manager list */ |
||
539 | void async_create_manager(void) |
||
540 | { |
||
2482 | jermar | 541 | fid_t fid; |
1392 | palkovsky | 542 | |
2484 | jermar | 543 | fid = fibril_create(async_manager_fibril, NULL); |
2482 | jermar | 544 | fibril_add_manager(fid); |
1392 | palkovsky | 545 | } |
546 | |||
547 | /** Remove one manager from manager list */ |
||
548 | void async_destroy_manager(void) |
||
549 | { |
||
2482 | jermar | 550 | fibril_remove_manager(); |
1392 | palkovsky | 551 | } |
552 | |||
553 | /** Initialize internal structures needed for async manager */ |
||
554 | int _async_init(void) |
||
555 | { |
||
2482 | jermar | 556 | if (!hash_table_create(&conn_hash_table, CONN_HASH_TABLE_CHAINS, 1, |
557 | &conn_hash_table_ops)) { |
||
1392 | palkovsky | 558 | printf("%s: cannot create hash table\n", "async"); |
559 | return ENOMEM; |
||
560 | } |
||
561 | |||
1719 | decky | 562 | return 0; |
1392 | palkovsky | 563 | } |
1427 | palkovsky | 564 | |
565 | /** IPC handler for messages in async framework |
||
566 | * |
||
2482 | jermar | 567 | * Notify the fibril which is waiting for this message, that it arrived |
1427 | palkovsky | 568 | */ |
2485 | jermar | 569 | static void reply_received(void *private, int retval, ipc_call_t *data) |
1427 | palkovsky | 570 | { |
571 | amsg_t *msg = (amsg_t *) private; |
||
572 | |||
573 | msg->retval = retval; |
||
574 | |||
575 | futex_down(&async_futex); |
||
576 | /* Copy data after futex_down, just in case the |
||
577 | * call was detached |
||
578 | */ |
||
579 | if (msg->dataptr) |
||
580 | *msg->dataptr = *data; |
||
1435 | palkovsky | 581 | |
1441 | palkovsky | 582 | write_barrier(); |
583 | /* Remove message from timeout list */ |
||
1500 | palkovsky | 584 | if (msg->wdata.inlist) |
585 | list_remove(&msg->wdata.link); |
||
1427 | palkovsky | 586 | msg->done = 1; |
1500 | palkovsky | 587 | if (! msg->wdata.active) { |
588 | msg->wdata.active = 1; |
||
2482 | jermar | 589 | fibril_add_ready(msg->wdata.fid); |
1427 | palkovsky | 590 | } |
591 | futex_up(&async_futex); |
||
592 | } |
||
593 | |||
594 | /** Send message and return id of the sent message |
||
595 | * |
||
596 | * The return value can be used as input for async_wait() to wait |
||
597 | * for completion. |
||
598 | */ |
||
599 | aid_t async_send_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2, |
||
2485 | jermar | 600 | ipc_call_t *dataptr) |
1427 | palkovsky | 601 | { |
602 | amsg_t *msg; |
||
603 | |||
1610 | palkovsky | 604 | if (in_interrupt_handler) { |
2482 | jermar | 605 | printf("Cannot send asynchronous request in interrupt " |
606 | "handler.\n"); |
||
1610 | palkovsky | 607 | _exit(1); |
608 | } |
||
609 | |||
1427 | palkovsky | 610 | msg = malloc(sizeof(*msg)); |
611 | msg->done = 0; |
||
612 | msg->dataptr = dataptr; |
||
1500 | palkovsky | 613 | |
614 | msg->wdata.active = 1; /* We may sleep in next method, but it |
||
615 | * will use it's own mechanism */ |
||
2482 | jermar | 616 | ipc_call_async_2(phoneid, method, arg1, arg2, msg, reply_received, 1); |
1427 | palkovsky | 617 | |
618 | return (aid_t) msg; |
||
619 | } |
||
620 | |||
1547 | palkovsky | 621 | /** Send message and return id of the sent message |
622 | * |
||
623 | * The return value can be used as input for async_wait() to wait |
||
624 | * for completion. |
||
625 | */ |
||
626 | aid_t async_send_3(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2, |
||
2485 | jermar | 627 | ipcarg_t arg3, ipc_call_t *dataptr) |
1547 | palkovsky | 628 | { |
629 | amsg_t *msg; |
||
630 | |||
1610 | palkovsky | 631 | if (in_interrupt_handler) { |
1923 | jermar | 632 | printf("Cannot send asynchronous request in interrupt handler.\n"); |
1610 | palkovsky | 633 | _exit(1); |
634 | } |
||
635 | |||
1547 | palkovsky | 636 | msg = malloc(sizeof(*msg)); |
637 | msg->done = 0; |
||
638 | msg->dataptr = dataptr; |
||
639 | |||
640 | msg->wdata.active = 1; /* We may sleep in next method, but it |
||
641 | * will use it's own mechanism */ |
||
2482 | jermar | 642 | ipc_call_async_3(phoneid, method, arg1, arg2, arg3, msg, reply_received, |
643 | 1); |
||
1547 | palkovsky | 644 | |
645 | return (aid_t) msg; |
||
646 | } |
||
647 | |||
1427 | palkovsky | 648 | /** Wait for a message sent by async framework |
649 | * |
||
2485 | jermar | 650 | * @param amsgid Message ID to wait for |
651 | * @param retval Pointer to variable where will be stored retval of the |
||
652 | * answered message. If NULL, it is ignored. |
||
1427 | palkovsky | 653 | */ |
654 | void async_wait_for(aid_t amsgid, ipcarg_t *retval) |
||
655 | { |
||
656 | amsg_t *msg = (amsg_t *) amsgid; |
||
657 | |||
658 | futex_down(&async_futex); |
||
659 | if (msg->done) { |
||
660 | futex_up(&async_futex); |
||
661 | goto done; |
||
662 | } |
||
663 | |||
2482 | jermar | 664 | msg->wdata.fid = fibril_get_id(); |
1500 | palkovsky | 665 | msg->wdata.active = 0; |
666 | msg->wdata.inlist = 0; |
||
1427 | palkovsky | 667 | /* Leave locked async_futex when entering this function */ |
2482 | jermar | 668 | fibril_schedule_next_adv(FIBRIL_TO_MANAGER); |
669 | /* futex is up automatically after fibril_schedule_next...*/ |
||
1427 | palkovsky | 670 | done: |
671 | if (retval) |
||
672 | *retval = msg->retval; |
||
673 | free(msg); |
||
674 | } |
||
1435 | palkovsky | 675 | |
1441 | palkovsky | 676 | /** Wait for a message sent by async framework with timeout |
677 | * |
||
678 | * @param amsgid Message ID to wait for |
||
679 | * @param retval Pointer to variable where will be stored retval |
||
680 | * of the answered message. If NULL, it is ignored. |
||
681 | * @param timeout Timeout in usecs |
||
682 | * @return 0 on success, ETIMEOUT if timeout expired |
||
683 | * |
||
684 | */ |
||
685 | int async_wait_timeout(aid_t amsgid, ipcarg_t *retval, suseconds_t timeout) |
||
686 | { |
||
687 | amsg_t *msg = (amsg_t *) amsgid; |
||
1435 | palkovsky | 688 | |
1532 | palkovsky | 689 | /* TODO: Let it go through the event read at least once */ |
690 | if (timeout < 0) |
||
691 | return ETIMEOUT; |
||
692 | |||
1441 | palkovsky | 693 | futex_down(&async_futex); |
694 | if (msg->done) { |
||
695 | futex_up(&async_futex); |
||
696 | goto done; |
||
697 | } |
||
1435 | palkovsky | 698 | |
1500 | palkovsky | 699 | gettimeofday(&msg->wdata.expires, NULL); |
700 | tv_add(&msg->wdata.expires, timeout); |
||
1435 | palkovsky | 701 | |
2482 | jermar | 702 | msg->wdata.fid = fibril_get_id(); |
1500 | palkovsky | 703 | msg->wdata.active = 0; |
704 | insert_timeout(&msg->wdata); |
||
705 | |||
1441 | palkovsky | 706 | /* Leave locked async_futex when entering this function */ |
2482 | jermar | 707 | fibril_schedule_next_adv(FIBRIL_TO_MANAGER); |
708 | /* futex is up automatically after fibril_schedule_next...*/ |
||
1435 | palkovsky | 709 | |
1441 | palkovsky | 710 | if (!msg->done) |
711 | return ETIMEOUT; |
||
712 | |||
713 | done: |
||
714 | if (retval) |
||
715 | *retval = msg->retval; |
||
716 | free(msg); |
||
717 | |||
718 | return 0; |
||
719 | } |
||
720 | |||
1452 | palkovsky | 721 | /** Wait specified time, but in the meantime handle incoming events |
722 | * |
||
723 | * @param timeout Time in microseconds to wait |
||
724 | */ |
||
725 | void async_usleep(suseconds_t timeout) |
||
726 | { |
||
727 | amsg_t *msg; |
||
728 | |||
1610 | palkovsky | 729 | if (in_interrupt_handler) { |
730 | printf("Cannot call async_usleep in interrupt handler.\n"); |
||
731 | _exit(1); |
||
732 | } |
||
733 | |||
1452 | palkovsky | 734 | msg = malloc(sizeof(*msg)); |
735 | if (!msg) |
||
736 | return; |
||
737 | |||
2482 | jermar | 738 | msg->wdata.fid = fibril_get_id(); |
1500 | palkovsky | 739 | msg->wdata.active = 0; |
1452 | palkovsky | 740 | |
1500 | palkovsky | 741 | gettimeofday(&msg->wdata.expires, NULL); |
742 | tv_add(&msg->wdata.expires, timeout); |
||
1452 | palkovsky | 743 | |
744 | futex_down(&async_futex); |
||
1500 | palkovsky | 745 | insert_timeout(&msg->wdata); |
2485 | jermar | 746 | /* Leave locked the async_futex when entering this function */ |
2482 | jermar | 747 | fibril_schedule_next_adv(FIBRIL_TO_MANAGER); |
2485 | jermar | 748 | /* futex is up automatically after fibril_schedule_next_adv()...*/ |
1452 | palkovsky | 749 | free(msg); |
750 | } |
||
1490 | palkovsky | 751 | |
2485 | jermar | 752 | /** Set function that is called when IPC_M_CONNECT_ME_TO is received. |
1490 | palkovsky | 753 | * |
2485 | jermar | 754 | * @param conn Function that will form a new fibril. |
1490 | palkovsky | 755 | */ |
756 | void async_set_client_connection(async_client_conn_t conn) |
||
757 | { |
||
758 | client_connection = conn; |
||
759 | } |
||
1596 | palkovsky | 760 | void async_set_interrupt_received(async_client_conn_t conn) |
761 | { |
||
762 | interrupt_received = conn; |
||
763 | } |
||
1610 | palkovsky | 764 | |
765 | /* Primitive functions for simple communication */ |
||
766 | void async_msg_3(int phoneid, ipcarg_t method, ipcarg_t arg1, |
||
767 | ipcarg_t arg2, ipcarg_t arg3) |
||
768 | { |
||
2482 | jermar | 769 | ipc_call_async_3(phoneid, method, arg1, arg2, arg3, NULL, NULL, |
770 | !in_interrupt_handler); |
||
1610 | palkovsky | 771 | } |
772 | |||
773 | void async_msg_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2) |
||
774 | { |
||
2482 | jermar | 775 | ipc_call_async_2(phoneid, method, arg1, arg2, NULL, NULL, |
776 | !in_interrupt_handler); |
||
1610 | palkovsky | 777 | } |
1653 | cejka | 778 | |
1719 | decky | 779 | /** @} |
1653 | cejka | 780 | */ |