Changeset 17aca1c in mainline for uspace/lib/c/generic/async.c
- Timestamp:
- 2011-02-04T20:56:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0397e5a4, e29e09cf
- Parents:
- e778543 (diff), 0b37882 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
re778543 r17aca1c 43 43 * framework will automatically take care of most synchronization problems. 44 44 * 45 * Default semantics:46 * - async_send_*(): Send asynchronously. If the kernel refuses to send47 * more messages, [ try to get responses from kernel, if48 * nothing found, might try synchronous ]49 *50 45 * Example of use (pseudo C): 51 46 * … … 58 53 * int fibril1(void *arg) 59 54 * { 60 * conn = ipc_connect_me_to();55 * conn = async_connect_me_to(); 61 56 * c1 = async_send(conn); 62 57 * c2 = async_send(conn); … … 77 72 * { 78 73 * if (want_refuse) { 79 * ipc_answer_0(icallid, ELIMIT);74 * async_answer_0(icallid, ELIMIT); 80 75 * return; 81 76 * } 82 * ipc_answer_0(icallid, EOK);77 * async_answer_0(icallid, EOK); 83 78 * 84 79 * callid = async_get_call(&call); 85 80 * somehow_handle_the_call(callid, call); 86 * ipc_answer_2(callid, 1, 2, 3);81 * async_answer_2(callid, 1, 2, 3); 87 82 * 88 83 * callid = async_get_call(&call); … … 92 87 */ 93 88 89 #define LIBC_ASYNC_C_ 90 #include <ipc/ipc.h> 91 #include <async.h> 92 #undef LIBC_ASYNC_C_ 93 94 94 #include <futex.h> 95 #include <async.h>96 #include <async_priv.h>97 95 #include <fibril.h> 98 96 #include <stdio.h> 99 97 #include <adt/hash_table.h> 100 98 #include <adt/list.h> 101 #include <ipc/ipc.h>102 99 #include <assert.h> 103 100 #include <errno.h> … … 105 102 #include <arch/barrier.h> 106 103 #include <bool.h> 104 #include "private/async.h" 107 105 108 106 atomic_t async_futex = FUTEX_INITIALIZER; … … 124 122 125 123 /** 126 * Structures of this type are used to group information about a call and a127 * message queue link.124 * Structures of this type are used to group information about 125 * a call and about a message queue link. 128 126 */ 129 127 typedef struct { … … 153 151 /** Link to the client tracking structure. */ 154 152 client_t *client; 155 153 156 154 /** Messages that should be delivered to this fibril. */ 157 155 link_t msg_queue; … … 170 168 171 169 /** Identifier of the incoming connection handled by the current fibril. */ 172 fibril_local connection_t *FIBRIL_connection;170 static fibril_local connection_t *FIBRIL_connection; 173 171 174 172 static void *default_client_data_constructor(void) … … 199 197 { 200 198 assert(FIBRIL_connection); 201 202 199 return FIBRIL_connection->client->data; 203 200 } 204 201 205 static void default_client_connection(ipc_callid_t callid, ipc_call_t *call); 206 static void default_interrupt_received(ipc_callid_t callid, ipc_call_t *call); 202 /** Default fibril function that gets called to handle new connection. 203 * 204 * This function is defined as a weak symbol - to be redefined in user code. 205 * 206 * @param callid Hash of the incoming call. 207 * @param call Data of the incoming call. 208 * 209 */ 210 static void default_client_connection(ipc_callid_t callid, ipc_call_t *call) 211 { 212 ipc_answer_0(callid, ENOENT); 213 } 207 214 208 215 /** … … 210 217 */ 211 218 static async_client_conn_t client_connection = default_client_connection; 219 220 /** Default fibril function that gets called to handle interrupt notifications. 221 * 222 * This function is defined as a weak symbol - to be redefined in user code. 223 * 224 * @param callid Hash of the incoming call. 225 * @param call Data of the incoming call. 226 * 227 */ 228 static void default_interrupt_received(ipc_callid_t callid, ipc_call_t *call) 229 { 230 } 212 231 213 232 /** … … 221 240 static LIST_INITIALIZE(timeout_list); 222 241 223 #define CLIENT_HASH_TABLE_BUCKETS 224 #define CONN_HASH_TABLE_BUCKETS 225 226 static hash_index_t client_hash(unsigned long *key)242 #define CLIENT_HASH_TABLE_BUCKETS 32 243 #define CONN_HASH_TABLE_BUCKETS 32 244 245 static hash_index_t client_hash(unsigned long key[]) 227 246 { 228 247 assert(key); 229 return ((( *key) >> 4) % CLIENT_HASH_TABLE_BUCKETS);248 return (((key[0]) >> 4) % CLIENT_HASH_TABLE_BUCKETS); 230 249 } 231 250 232 251 static int client_compare(unsigned long key[], hash_count_t keys, link_t *item) 233 252 { 234 client_t *cl = hash_table_get_instance(item, client_t, link);235 return (key[0] == cl ->in_task_hash);253 client_t *client = hash_table_get_instance(item, client_t, link); 254 return (key[0] == client->in_task_hash); 236 255 } 237 256 … … 254 273 * 255 274 */ 256 static hash_index_t conn_hash(unsigned long *key)275 static hash_index_t conn_hash(unsigned long key[]) 257 276 { 258 277 assert(key); 259 return ((( *key) >> 4) % CONN_HASH_TABLE_BUCKETS);278 return (((key[0]) >> 4) % CONN_HASH_TABLE_BUCKETS); 260 279 } 261 280 … … 271 290 static int conn_compare(unsigned long key[], hash_count_t keys, link_t *item) 272 291 { 273 connection_t *hs = hash_table_get_instance(item, connection_t, link); 274 return (key[0] == hs->in_phone_hash); 275 } 276 277 /** Connection hash table removal callback function. 278 * 279 * This function is called whenever a connection is removed from the connection 280 * hash table. 281 * 282 * @param item Connection hash table item being removed. 283 * 284 */ 292 connection_t *conn = hash_table_get_instance(item, connection_t, link); 293 return (key[0] == conn->in_phone_hash); 294 } 295 285 296 static void conn_remove(link_t *item) 286 297 { 287 free(hash_table_get_instance(item, connection_t, link)); 288 } 289 298 } 290 299 291 300 /** Operations for the connection hash table. */ … … 308 317 link_t *tmp = timeout_list.next; 309 318 while (tmp != &timeout_list) { 310 awaiter_t *cur ;311 312 cur = list_get_instance(tmp, awaiter_t, to_event.link);319 awaiter_t *cur 320 = list_get_instance(tmp, awaiter_t, to_event.link); 321 313 322 if (tv_gteq(&cur->to_event.expires, &wd->to_event.expires)) 314 323 break; 324 315 325 tmp = tmp->next; 316 326 } … … 329 339 * 330 340 * @return False if the call doesn't match any connection. 331 * 341 * @return True if the call was passed to the respective connection fibril. 332 342 * 333 343 */ … … 420 430 421 431 fid_t fid = fibril_create(notification_fibril, msg); 432 if (fid == 0) { 433 free(msg); 434 futex_up(&async_futex); 435 return false; 436 } 437 422 438 fibril_add_ready(fid); 423 439 … … 466 482 * the first IPC_M_PHONE_HUNGUP call and continues to 467 483 * call async_get_call_timeout(). Repeat 468 * IPC_M_PHONE_HUNGUP until the caller notices. 484 * IPC_M_PHONE_HUNGUP until the caller notices. 469 485 */ 470 486 memset(call, 0, sizeof(ipc_call_t)); … … 473 489 return conn->close_callid; 474 490 } 475 491 476 492 if (usecs) 477 493 async_insert_timeout(&conn->wdata); … … 511 527 } 512 528 513 /** Default fibril function that gets called to handle new connection.514 *515 * This function is defined as a weak symbol - to be redefined in user code.516 *517 * @param callid Hash of the incoming call.518 * @param call Data of the incoming call.519 *520 */521 static void default_client_connection(ipc_callid_t callid, ipc_call_t *call)522 {523 ipc_answer_0(callid, ENOENT);524 }525 526 /** Default fibril function that gets called to handle interrupt notifications.527 *528 * This function is defined as a weak symbol - to be redefined in user code.529 *530 * @param callid Hash of the incoming call.531 * @param call Data of the incoming call.532 *533 */534 static void default_interrupt_received(ipc_callid_t callid, ipc_call_t *call)535 {536 }537 538 529 /** Wrapper for client connection fibril. 539 530 * … … 548 539 static int connection_fibril(void *arg) 549 540 { 550 unsigned long key;551 client_t *cl;552 link_t *lnk;553 bool destroy = false;554 555 541 /* 556 542 * Setup fibril-local connection pointer. 557 543 */ 558 544 FIBRIL_connection = (connection_t *) arg; 559 545 546 futex_down(&async_futex); 547 560 548 /* 561 549 * Add our reference for the current connection in the client task … … 563 551 * hash in a new tracking structure. 564 552 */ 565 futex_down(&async_futex); 566 key = FIBRIL_connection->in_task_hash; 567 lnk = hash_table_find(&client_hash_table, &key); 553 554 unsigned long key = FIBRIL_connection->in_task_hash; 555 link_t *lnk = hash_table_find(&client_hash_table, &key); 556 557 client_t *client; 558 568 559 if (lnk) { 569 cl = hash_table_get_instance(lnk, client_t, link);570 cl ->refcnt++;560 client = hash_table_get_instance(lnk, client_t, link); 561 client->refcnt++; 571 562 } else { 572 cl = malloc(sizeof(client_t));573 if (!cl ) {563 client = malloc(sizeof(client_t)); 564 if (!client) { 574 565 ipc_answer_0(FIBRIL_connection->callid, ENOMEM); 575 566 futex_up(&async_futex); 576 567 return 0; 577 568 } 578 cl->in_task_hash = FIBRIL_connection->in_task_hash; 569 570 client->in_task_hash = FIBRIL_connection->in_task_hash; 571 579 572 async_serialize_start(); 580 cl ->data = async_client_data_create();573 client->data = async_client_data_create(); 581 574 async_serialize_end(); 582 cl->refcnt = 1; 583 hash_table_insert(&client_hash_table, &key, &cl->link); 584 } 575 576 client->refcnt = 1; 577 hash_table_insert(&client_hash_table, &key, &client->link); 578 } 579 585 580 futex_up(&async_futex); 586 587 FIBRIL_connection->client = cl ;588 581 582 FIBRIL_connection->client = client; 583 589 584 /* 590 585 * Call the connection handler function. … … 596 591 * Remove the reference for this client task connection. 597 592 */ 593 bool destroy; 594 598 595 futex_down(&async_futex); 599 if (--cl->refcnt == 0) { 596 597 if (--client->refcnt == 0) { 600 598 hash_table_remove(&client_hash_table, &key, 1); 601 599 destroy = true; 602 } 600 } else 601 destroy = false; 602 603 603 futex_up(&async_futex); 604 604 605 605 if (destroy) { 606 if (cl->data) 607 async_client_data_destroy(cl->data); 608 free(cl); 609 } 610 606 if (client->data) 607 async_client_data_destroy(client->data); 608 609 free(client); 610 } 611 611 612 /* 612 613 * Remove myself from the connection hash table. … … 621 622 */ 622 623 while (!list_empty(&FIBRIL_connection->msg_queue)) { 623 msg_t *msg ;624 625 msg = list_get_instance(FIBRIL_connection->msg_queue.next,626 msg_t, link);624 msg_t *msg = 625 list_get_instance(FIBRIL_connection->msg_queue.next, msg_t, 626 link); 627 627 628 list_remove(&msg->link); 628 629 ipc_answer_0(msg->callid, EHANGUP); … … 637 638 ipc_answer_0(FIBRIL_connection->close_callid, EOK); 638 639 640 free(FIBRIL_connection); 639 641 return 0; 640 642 } … … 667 669 if (callid) 668 670 ipc_answer_0(callid, ENOMEM); 671 669 672 return (uintptr_t) NULL; 670 673 } … … 684 687 conn->wdata.fid = fibril_create(connection_fibril, conn); 685 688 686 if ( !conn->wdata.fid) {689 if (conn->wdata.fid == 0) { 687 690 free(conn); 691 688 692 if (callid) 689 693 ipc_answer_0(callid, ENOMEM); 694 690 695 return (uintptr_t) NULL; 691 696 } … … 714 719 static void handle_call(ipc_callid_t callid, ipc_call_t *call) 715 720 { 716 /* Unrouted call - do some default behaviour*/721 /* Unrouted call - take some default action */ 717 722 if ((callid & IPC_CALLID_NOTIFICATION)) { 718 723 process_notification(callid, call); 719 goto out;724 return; 720 725 } 721 726 … … 723 728 case IPC_M_CONNECT_ME: 724 729 case IPC_M_CONNECT_ME_TO: 725 /* Open new connection with fibril etc. */730 /* Open new connection with fibril, etc. */ 726 731 async_new_connection(call->in_task_hash, IPC_GET_ARG5(*call), 727 732 callid, call, client_connection); 728 goto out;733 return; 729 734 } 730 735 731 736 /* Try to route the call through the connection hash table */ 732 737 if (route_call(callid, call)) 733 goto out;738 return; 734 739 735 740 /* Unknown call from unknown phone - hang it up */ 736 741 ipc_answer_0(callid, EHANGUP); 737 return;738 739 out:740 ;741 742 } 742 743 … … 751 752 link_t *cur = timeout_list.next; 752 753 while (cur != &timeout_list) { 753 awaiter_t *waiter ;754 755 waiter = list_get_instance(cur, awaiter_t, to_event.link);754 awaiter_t *waiter = 755 list_get_instance(cur, awaiter_t, to_event.link); 756 756 757 if (tv_gt(&waiter->to_event.expires, &tv)) 757 758 break; 758 759 759 760 cur = cur->next; 760 761 761 762 list_remove(&waiter->to_event.link); 762 763 waiter->to_event.inlist = false; … … 785 786 while (true) { 786 787 if (fibril_switch(FIBRIL_FROM_MANAGER)) { 787 futex_up(&async_futex); 788 futex_up(&async_futex); 788 789 /* 789 790 * async_futex is always held when entering a manager … … 808 809 continue; 809 810 } else 810 timeout = tv_sub(&waiter->to_event.expires, 811 &tv); 811 timeout = tv_sub(&waiter->to_event.expires, &tv); 812 812 } else 813 813 timeout = SYNCH_NO_TIMEOUT; 814 814 815 815 futex_up(&async_futex); 816 816 817 817 atomic_inc(&threads_in_ipc_wait); 818 818 … … 822 822 823 823 atomic_dec(&threads_in_ipc_wait); 824 824 825 825 if (!callid) { 826 826 handle_expired_timeouts(); … … 861 861 { 862 862 fid_t fid = fibril_create(async_manager_fibril, NULL); 863 fibril_add_manager(fid); 863 if (fid != 0) 864 fibril_add_manager(fid); 864 865 } 865 866 … … 872 873 /** Initialize the async framework. 873 874 * 874 * @return Zero on success or an error code. 875 */ 876 int __async_init(void) 875 */ 876 void __async_init(void) 877 877 { 878 878 if (!hash_table_create(&client_hash_table, CLIENT_HASH_TABLE_BUCKETS, 1, 879 &client_hash_table_ops) || !hash_table_create(&conn_hash_table, 880 CONN_HASH_TABLE_BUCKETS, 1, &conn_hash_table_ops)) { 881 return ENOMEM; 882 } 883 884 _async_sess_init(); 885 886 return 0; 879 &client_hash_table_ops)) 880 abort(); 881 882 if (!hash_table_create(&conn_hash_table, CONN_HASH_TABLE_BUCKETS, 1, 883 &conn_hash_table_ops)) 884 abort(); 887 885 } 888 886 … … 897 895 * @param retval Value returned in the answer. 898 896 * @param data Call data of the answer. 897 * 899 898 */ 900 899 static void reply_received(void *arg, int retval, ipc_call_t *data) … … 944 943 sysarg_t arg2, sysarg_t arg3, sysarg_t arg4, ipc_call_t *dataptr) 945 944 { 946 amsg_t *msg = malloc(sizeof( *msg));945 amsg_t *msg = malloc(sizeof(amsg_t)); 947 946 948 947 if (!msg) … … 953 952 954 953 msg->wdata.to_event.inlist = false; 955 /* We may sleep in the next method, but it will use its own mechanism */ 954 955 /* 956 * We may sleep in the next method, 957 * but it will use its own means 958 */ 956 959 msg->wdata.active = true; 957 960 … … 984 987 ipc_call_t *dataptr) 985 988 { 986 amsg_t *msg = malloc(sizeof( *msg));989 amsg_t *msg = malloc(sizeof(amsg_t)); 987 990 988 991 if (!msg) … … 993 996 994 997 msg->wdata.to_event.inlist = false; 995 /* We may sleep in next method, but it will use its own mechanism */ 998 999 /* 1000 * We may sleep in the next method, 1001 * but it will use its own means 1002 */ 996 1003 msg->wdata.active = true; 997 1004 … … 1092 1099 void async_usleep(suseconds_t timeout) 1093 1100 { 1094 amsg_t *msg = malloc(sizeof( *msg));1101 amsg_t *msg = malloc(sizeof(amsg_t)); 1095 1102 1096 1103 if (!msg) … … 1235 1242 } 1236 1243 1244 void async_msg_0(int phone, sysarg_t imethod) 1245 { 1246 ipc_call_async_0(phone, imethod, NULL, NULL, true); 1247 } 1248 1249 void async_msg_1(int phone, sysarg_t imethod, sysarg_t arg1) 1250 { 1251 ipc_call_async_1(phone, imethod, arg1, NULL, NULL, true); 1252 } 1253 1254 void async_msg_2(int phone, sysarg_t imethod, sysarg_t arg1, sysarg_t arg2) 1255 { 1256 ipc_call_async_2(phone, imethod, arg1, arg2, NULL, NULL, true); 1257 } 1258 1259 void async_msg_3(int phone, sysarg_t imethod, sysarg_t arg1, sysarg_t arg2, 1260 sysarg_t arg3) 1261 { 1262 ipc_call_async_3(phone, imethod, arg1, arg2, arg3, NULL, NULL, true); 1263 } 1264 1265 void async_msg_4(int phone, sysarg_t imethod, sysarg_t arg1, sysarg_t arg2, 1266 sysarg_t arg3, sysarg_t arg4) 1267 { 1268 ipc_call_async_4(phone, imethod, arg1, arg2, arg3, arg4, NULL, NULL, 1269 true); 1270 } 1271 1272 void async_msg_5(int phone, sysarg_t imethod, sysarg_t arg1, sysarg_t arg2, 1273 sysarg_t arg3, sysarg_t arg4, sysarg_t arg5) 1274 { 1275 ipc_call_async_5(phone, imethod, arg1, arg2, arg3, arg4, arg5, NULL, 1276 NULL, true); 1277 } 1278 1279 sysarg_t async_answer_0(ipc_callid_t callid, sysarg_t retval) 1280 { 1281 return ipc_answer_0(callid, retval); 1282 } 1283 1284 sysarg_t async_answer_1(ipc_callid_t callid, sysarg_t retval, sysarg_t arg1) 1285 { 1286 return ipc_answer_1(callid, retval, arg1); 1287 } 1288 1289 sysarg_t async_answer_2(ipc_callid_t callid, sysarg_t retval, sysarg_t arg1, 1290 sysarg_t arg2) 1291 { 1292 return ipc_answer_2(callid, retval, arg1, arg2); 1293 } 1294 1295 sysarg_t async_answer_3(ipc_callid_t callid, sysarg_t retval, sysarg_t arg1, 1296 sysarg_t arg2, sysarg_t arg3) 1297 { 1298 return ipc_answer_3(callid, retval, arg1, arg2, arg3); 1299 } 1300 1301 sysarg_t async_answer_4(ipc_callid_t callid, sysarg_t retval, sysarg_t arg1, 1302 sysarg_t arg2, sysarg_t arg3, sysarg_t arg4) 1303 { 1304 return ipc_answer_4(callid, retval, arg1, arg2, arg3, arg4); 1305 } 1306 1307 sysarg_t async_answer_5(ipc_callid_t callid, sysarg_t retval, sysarg_t arg1, 1308 sysarg_t arg2, sysarg_t arg3, sysarg_t arg4, sysarg_t arg5) 1309 { 1310 return ipc_answer_5(callid, retval, arg1, arg2, arg3, arg4, arg5); 1311 } 1312 1313 int async_forward_fast(ipc_callid_t callid, int phoneid, sysarg_t imethod, 1314 sysarg_t arg1, sysarg_t arg2, unsigned int mode) 1315 { 1316 return ipc_forward_fast(callid, phoneid, imethod, arg1, arg2, mode); 1317 } 1318 1319 int async_forward_slow(ipc_callid_t callid, int phoneid, sysarg_t imethod, 1320 sysarg_t arg1, sysarg_t arg2, sysarg_t arg3, sysarg_t arg4, sysarg_t arg5, 1321 unsigned int mode) 1322 { 1323 return ipc_forward_slow(callid, phoneid, imethod, arg1, arg2, arg3, arg4, 1324 arg5, mode); 1325 } 1326 1327 /** Wrapper for making IPC_M_CONNECT_TO_ME calls using the async framework. 1328 * 1329 * Ask through phone for a new connection to some service. 1330 * 1331 * @param phone Phone handle used for contacting the other side. 1332 * @param arg1 User defined argument. 1333 * @param arg2 User defined argument. 1334 * @param arg3 User defined argument. 1335 * @param client_receiver Connection handing routine. 1336 * 1337 * @return New phone handle on success or a negative error code. 1338 * 1339 */ 1340 int async_connect_to_me(int phone, sysarg_t arg1, sysarg_t arg2, 1341 sysarg_t arg3, async_client_conn_t client_receiver) 1342 { 1343 sysarg_t task_hash; 1344 sysarg_t phone_hash; 1345 int rc = async_req_3_5(phone, IPC_M_CONNECT_TO_ME, arg1, arg2, arg3, 1346 NULL, NULL, NULL, &task_hash, &phone_hash); 1347 if (rc != EOK) 1348 return rc; 1349 1350 if (client_receiver != NULL) 1351 async_new_connection(task_hash, phone_hash, 0, NULL, 1352 client_receiver); 1353 1354 return EOK; 1355 } 1356 1237 1357 /** Wrapper for making IPC_M_CONNECT_ME_TO calls using the async framework. 1238 * 1358 * 1239 1359 * Ask through phone for a new connection to some service. 1240 1360 * 1241 * @param phone idPhone handle used for contacting the other side.1242 * @param arg1 1243 * @param arg2 1244 * @param arg3 1245 * 1246 * @return 1247 * /1248 int 1249 async_connect_me_to(int phoneid, sysarg_t arg1, sysarg_t arg2, sysarg_t arg3) 1250 { 1251 int rc; 1361 * @param phone Phone handle used for contacting the other side. 1362 * @param arg1 User defined argument. 1363 * @param arg2 User defined argument. 1364 * @param arg3 User defined argument. 1365 * 1366 * @return New phone handle on success or a negative error code. 1367 * 1368 */ 1369 int async_connect_me_to(int phone, sysarg_t arg1, sysarg_t arg2, 1370 sysarg_t arg3) 1371 { 1252 1372 sysarg_t newphid; 1253 1254 rc = async_req_3_5(phoneid, IPC_M_CONNECT_ME_TO, arg1, arg2, arg3, NULL, 1255 NULL, NULL, NULL, &newphid); 1256 1257 if (rc != EOK) 1373 int rc = async_req_3_5(phone, IPC_M_CONNECT_ME_TO, arg1, arg2, arg3, 1374 NULL, NULL, NULL, NULL, &newphid); 1375 1376 if (rc != EOK) 1258 1377 return rc; 1259 1378 1260 1379 return newphid; 1261 1380 } 1262 1381 1263 1382 /** Wrapper for making IPC_M_CONNECT_ME_TO calls using the async framework. 1264 * 1383 * 1265 1384 * Ask through phone for a new connection to some service and block until 1266 1385 * success. 1267 1386 * 1268 * @param phoneid 1269 * @param arg1 1270 * @param arg2 1271 * @param arg3 1272 * 1273 * @return 1274 * /1275 int 1276 async_connect_me_to_blocking(int phoneid, sysarg_t arg1, sysarg_t arg2,1387 * @param phoneid Phone handle used for contacting the other side. 1388 * @param arg1 User defined argument. 1389 * @param arg2 User defined argument. 1390 * @param arg3 User defined argument. 1391 * 1392 * @return New phone handle on success or a negative error code. 1393 * 1394 */ 1395 int async_connect_me_to_blocking(int phoneid, sysarg_t arg1, sysarg_t arg2, 1277 1396 sysarg_t arg3) 1278 1397 { 1279 int rc;1280 1398 sysarg_t newphid; 1281 1282 rc = async_req_4_5(phoneid, IPC_M_CONNECT_ME_TO, arg1, arg2, arg3, 1399 int rc = async_req_4_5(phoneid, IPC_M_CONNECT_ME_TO, arg1, arg2, arg3, 1283 1400 IPC_FLAG_BLOCKING, NULL, NULL, NULL, NULL, &newphid); 1284 1401 1285 if (rc != EOK) 1402 if (rc != EOK) 1286 1403 return rc; 1287 1404 1288 1405 return newphid; 1289 1406 } 1290 1407 1291 /** Wrapper for making IPC_M_SHARE_IN calls using the async framework. 1292 * 1293 * @param phoneid Phone that will be used to contact the receiving side. 1294 * @param dst Destination address space area base. 1295 * @param size Size of the destination address space area. 1296 * @param arg User defined argument. 1297 * @param flags Storage where the received flags will be stored. Can be 1298 * NULL. 1299 * 1300 * @return Zero on success or a negative error code from errno.h. 1408 /** Connect to a task specified by id. 1409 * 1410 */ 1411 int async_connect_kbox(task_id_t id) 1412 { 1413 return ipc_connect_kbox(id); 1414 } 1415 1416 /** Wrapper for ipc_hangup. 1417 * 1418 * @param phone Phone handle to hung up. 1419 * 1420 * @return Zero on success or a negative error code. 1421 * 1422 */ 1423 int async_hangup(int phone) 1424 { 1425 return ipc_hangup(phone); 1426 } 1427 1428 /** Interrupt one thread of this task from waiting for IPC. */ 1429 void async_poke(void) 1430 { 1431 ipc_poke(); 1432 } 1433 1434 /** Wrapper for IPC_M_SHARE_IN calls using the async framework. 1435 * 1436 * @param phoneid Phone that will be used to contact the receiving side. 1437 * @param dst Destination address space area base. 1438 * @param size Size of the destination address space area. 1439 * @param arg User defined argument. 1440 * @param flags Storage for the received flags. Can be NULL. 1441 * 1442 * @return Zero on success or a negative error code from errno.h. 1443 * 1301 1444 */ 1302 1445 int async_share_in_start(int phoneid, void *dst, size_t size, sysarg_t arg, 1303 int *flags) 1304 { 1305 int res; 1446 unsigned int *flags) 1447 { 1306 1448 sysarg_t tmp_flags; 1307 res = async_req_3_2(phoneid, IPC_M_SHARE_IN, (sysarg_t) dst,1449 int res = async_req_3_2(phoneid, IPC_M_SHARE_IN, (sysarg_t) dst, 1308 1450 (sysarg_t) size, arg, NULL, &tmp_flags); 1451 1309 1452 if (flags) 1310 *flags = tmp_flags; 1453 *flags = (unsigned int) tmp_flags; 1454 1311 1455 return res; 1312 1456 } … … 1314 1458 /** Wrapper for receiving the IPC_M_SHARE_IN calls using the async framework. 1315 1459 * 1316 * This wrapper only makes it more comfortable to receive IPC_M_SHARE_IN calls 1317 * so that the user doesn't have to remember the meaning of each IPC argument. 1460 * This wrapper only makes it more comfortable to receive IPC_M_SHARE_IN 1461 * calls so that the user doesn't have to remember the meaning of each IPC 1462 * argument. 1318 1463 * 1319 1464 * So far, this wrapper is to be used from within a connection fibril. 1320 1465 * 1321 * @param callid Storage where the hash of the IPC_M_SHARE_IN call will 1322 * be stored. 1323 * @param size Destination address space area size. 1324 * 1325 * @return Non-zero on success, zero on failure. 1326 */ 1327 int async_share_in_receive(ipc_callid_t *callid, size_t *size) 1328 { 1329 ipc_call_t data; 1330 1466 * @param callid Storage for the hash of the IPC_M_SHARE_IN call. 1467 * @param size Destination address space area size. 1468 * 1469 * @return True on success, false on failure. 1470 * 1471 */ 1472 bool async_share_in_receive(ipc_callid_t *callid, size_t *size) 1473 { 1331 1474 assert(callid); 1332 1475 assert(size); 1333 1476 1477 ipc_call_t data; 1334 1478 *callid = async_get_call(&data); 1479 1335 1480 if (IPC_GET_IMETHOD(data) != IPC_M_SHARE_IN) 1336 return 0; 1481 return false; 1482 1337 1483 *size = (size_t) IPC_GET_ARG2(data); 1338 return 1;1484 return true; 1339 1485 } 1340 1486 1341 1487 /** Wrapper for answering the IPC_M_SHARE_IN calls using the async framework. 1342 1488 * 1343 * This wrapper only makes it more comfortable to answer IPC_M_DATA_READ calls 1344 * so that the user doesn't have to remember the meaning of each IPC argument. 1345 * 1346 * @param callid Hash of the IPC_M_DATA_READ call to answer. 1347 * @param src Source address space base. 1348 * @param flags Flags to be used for sharing. Bits can be only cleared. 1349 * 1350 * @return Zero on success or a value from @ref errno.h on failure. 1351 */ 1352 int async_share_in_finalize(ipc_callid_t callid, void *src, int flags) 1489 * This wrapper only makes it more comfortable to answer IPC_M_DATA_READ 1490 * calls so that the user doesn't have to remember the meaning of each IPC 1491 * argument. 1492 * 1493 * @param callid Hash of the IPC_M_DATA_READ call to answer. 1494 * @param src Source address space base. 1495 * @param flags Flags to be used for sharing. Bits can be only cleared. 1496 * 1497 * @return Zero on success or a value from @ref errno.h on failure. 1498 * 1499 */ 1500 int async_share_in_finalize(ipc_callid_t callid, void *src, unsigned int flags) 1353 1501 { 1354 1502 return ipc_share_in_finalize(callid, src, flags); 1355 1503 } 1356 1504 1357 /** Wrapper for making IPC_M_SHARE_OUT calls using the async framework. 1358 * 1359 * @param phoneid Phone that will be used to contact the receiving side. 1360 * @param src Source address space area base address. 1361 * @param flags Flags to be used for sharing. Bits can be only cleared. 1362 * 1363 * @return Zero on success or a negative error code from errno.h. 1364 */ 1365 int async_share_out_start(int phoneid, void *src, int flags) 1505 /** Wrapper for IPC_M_SHARE_OUT calls using the async framework. 1506 * 1507 * @param phoneid Phone that will be used to contact the receiving side. 1508 * @param src Source address space area base address. 1509 * @param flags Flags to be used for sharing. Bits can be only cleared. 1510 * 1511 * @return Zero on success or a negative error code from errno.h. 1512 * 1513 */ 1514 int async_share_out_start(int phoneid, void *src, unsigned int flags) 1366 1515 { 1367 1516 return async_req_3_0(phoneid, IPC_M_SHARE_OUT, (sysarg_t) src, 0, … … 1371 1520 /** Wrapper for receiving the IPC_M_SHARE_OUT calls using the async framework. 1372 1521 * 1373 * This wrapper only makes it more comfortable to receive IPC_M_SHARE_OUT calls 1374 * so that the user doesn't have to remember the meaning of each IPC argument. 1522 * This wrapper only makes it more comfortable to receive IPC_M_SHARE_OUT 1523 * calls so that the user doesn't have to remember the meaning of each IPC 1524 * argument. 1375 1525 * 1376 1526 * So far, this wrapper is to be used from within a connection fibril. 1377 1527 * 1378 * @param callid Storage where the hash of the IPC_M_SHARE_OUT call will 1379 * be stored. 1380 * @param size Storage where the source address space area size will be 1381 * stored. 1382 * @param flags Storage where the sharing flags will be stored. 1383 * 1384 * @return Non-zero on success, zero on failure. 1385 */ 1386 int async_share_out_receive(ipc_callid_t *callid, size_t *size, int *flags) 1387 { 1388 ipc_call_t data; 1389 1528 * @param callid Storage for the hash of the IPC_M_SHARE_OUT call. 1529 * @param size Storage for the source address space area size. 1530 * @param flags Storage for the sharing flags. 1531 * 1532 * @return True on success, false on failure. 1533 * 1534 */ 1535 bool async_share_out_receive(ipc_callid_t *callid, size_t *size, unsigned int *flags) 1536 { 1390 1537 assert(callid); 1391 1538 assert(size); 1392 1539 assert(flags); 1393 1540 1541 ipc_call_t data; 1394 1542 *callid = async_get_call(&data); 1543 1395 1544 if (IPC_GET_IMETHOD(data) != IPC_M_SHARE_OUT) 1396 return 0; 1545 return false; 1546 1397 1547 *size = (size_t) IPC_GET_ARG2(data); 1398 *flags = ( int) IPC_GET_ARG3(data);1399 return 1;1548 *flags = (unsigned int) IPC_GET_ARG3(data); 1549 return true; 1400 1550 } 1401 1551 1402 1552 /** Wrapper for answering the IPC_M_SHARE_OUT calls using the async framework. 1403 1553 * 1404 * This wrapper only makes it more comfortable to answer IPC_M_SHARE_OUT calls 1405 * so that the user doesn't have to remember the meaning of each IPC argument. 1406 * 1407 * @param callid Hash of the IPC_M_DATA_WRITE call to answer. 1408 * @param dst Destination address space area base address. 1409 * 1410 * @return Zero on success or a value from @ref errno.h on failure. 1554 * This wrapper only makes it more comfortable to answer IPC_M_SHARE_OUT 1555 * calls so that the user doesn't have to remember the meaning of each IPC 1556 * argument. 1557 * 1558 * @param callid Hash of the IPC_M_DATA_WRITE call to answer. 1559 * @param dst Destination address space area base address. 1560 * 1561 * @return Zero on success or a value from @ref errno.h on failure. 1562 * 1411 1563 */ 1412 1564 int async_share_out_finalize(ipc_callid_t callid, void *dst) … … 1415 1567 } 1416 1568 1417 1418 /** Wrapper for making IPC_M_DATA_READ calls using the async framework. 1419 * 1420 * @param phoneid Phone that will be used to contact the receiving side.1421 * @param dst Address of the beginningof the destination buffer.1422 * @param size Size of the destination buffer.1423 * 1424 * @return Zero on success or a negative error code from errno.h.1569 /** Wrapper for IPC_M_DATA_READ calls using the async framework. 1570 * 1571 * @param phoneid Phone that will be used to contact the receiving side. 1572 * @param dst Address of the beginning of the destination buffer. 1573 * @param size Size of the destination buffer. 1574 * 1575 * @return Zero on success or a negative error code from errno.h. 1576 * 1425 1577 */ 1426 1578 int async_data_read_start(int phoneid, void *dst, size_t size) … … 1432 1584 /** Wrapper for receiving the IPC_M_DATA_READ calls using the async framework. 1433 1585 * 1434 * This wrapper only makes it more comfortable to receive IPC_M_DATA_READ calls 1435 * so that the user doesn't have to remember the meaning of each IPC argument. 1586 * This wrapper only makes it more comfortable to receive IPC_M_DATA_READ 1587 * calls so that the user doesn't have to remember the meaning of each IPC 1588 * argument. 1436 1589 * 1437 1590 * So far, this wrapper is to be used from within a connection fibril. 1438 1591 * 1439 * @param callid Storage where the hash of the IPC_M_DATA_READ call will 1440 * be stored. 1441 * @param size Storage where the maximum size will be stored. Can be 1442 * NULL. 1443 * 1444 * @return Non-zero on success, zero on failure. 1445 */ 1446 int async_data_read_receive(ipc_callid_t *callid, size_t *size) 1447 { 1592 * @param callid Storage for the hash of the IPC_M_DATA_READ. 1593 * @param size Storage for the maximum size. Can be NULL. 1594 * 1595 * @return True on success, false on failure. 1596 * 1597 */ 1598 bool async_data_read_receive(ipc_callid_t *callid, size_t *size) 1599 { 1600 assert(callid); 1601 1448 1602 ipc_call_t data; 1449 1450 assert(callid);1451 1452 1603 *callid = async_get_call(&data); 1604 1453 1605 if (IPC_GET_IMETHOD(data) != IPC_M_DATA_READ) 1454 return 0; 1606 return false; 1607 1455 1608 if (size) 1456 1609 *size = (size_t) IPC_GET_ARG2(data); 1457 return 1; 1610 1611 return true; 1458 1612 } 1459 1613 1460 1614 /** Wrapper for answering the IPC_M_DATA_READ calls using the async framework. 1461 1615 * 1462 * This wrapper only makes it more comfortable to answer IPC_M_DATA_READ calls 1463 * so that the user doesn't have to remember the meaning of each IPC argument. 1464 * 1465 * @param callid Hash of the IPC_M_DATA_READ call to answer. 1466 * @param src Source address for the IPC_M_DATA_READ call. 1467 * @param size Size for the IPC_M_DATA_READ call. Can be smaller than 1468 * the maximum size announced by the sender. 1469 * 1470 * @return Zero on success or a value from @ref errno.h on failure. 1616 * This wrapper only makes it more comfortable to answer IPC_M_DATA_READ 1617 * calls so that the user doesn't have to remember the meaning of each IPC 1618 * argument. 1619 * 1620 * @param callid Hash of the IPC_M_DATA_READ call to answer. 1621 * @param src Source address for the IPC_M_DATA_READ call. 1622 * @param size Size for the IPC_M_DATA_READ call. Can be smaller than 1623 * the maximum size announced by the sender. 1624 * 1625 * @return Zero on success or a value from @ref errno.h on failure. 1626 * 1471 1627 */ 1472 1628 int async_data_read_finalize(ipc_callid_t callid, const void *src, size_t size) … … 1476 1632 1477 1633 /** Wrapper for forwarding any read request 1478 *1479 1634 * 1480 1635 */ … … 1509 1664 } 1510 1665 1511 /** Wrapper for makingIPC_M_DATA_WRITE calls using the async framework.1666 /** Wrapper for IPC_M_DATA_WRITE calls using the async framework. 1512 1667 * 1513 1668 * @param phoneid Phone that will be used to contact the receiving side. … … 1526 1681 /** Wrapper for receiving the IPC_M_DATA_WRITE calls using the async framework. 1527 1682 * 1528 * This wrapper only makes it more comfortable to receive IPC_M_DATA_WRITE calls 1529 * so that the user doesn't have to remember the meaning of each IPC argument. 1683 * This wrapper only makes it more comfortable to receive IPC_M_DATA_WRITE 1684 * calls so that the user doesn't have to remember the meaning of each IPC 1685 * argument. 1530 1686 * 1531 1687 * So far, this wrapper is to be used from within a connection fibril. 1532 1688 * 1533 * @param callid Storage where the hash of the IPC_M_DATA_WRITE call will1534 * be stored.1535 * @param size Storage where the suggested size will be stored. May be1536 * NULL1537 * 1538 * @return Non-zero on success, zero on failure.1539 * 1540 */ 1541 int async_data_write_receive(ipc_callid_t *callid, size_t *size) 1542 { 1689 * @param callid Storage for the hash of the IPC_M_DATA_WRITE. 1690 * @param size Storage for the suggested size. May be NULL. 1691 * 1692 * @return True on success, false on failure. 1693 * 1694 */ 1695 bool async_data_write_receive(ipc_callid_t *callid, size_t *size) 1696 { 1697 assert(callid); 1698 1543 1699 ipc_call_t data; 1544 1545 assert(callid);1546 1547 1700 *callid = async_get_call(&data); 1701 1548 1702 if (IPC_GET_IMETHOD(data) != IPC_M_DATA_WRITE) 1549 return 0;1703 return false; 1550 1704 1551 1705 if (size) 1552 1706 *size = (size_t) IPC_GET_ARG2(data); 1553 1707 1554 return 1;1708 return true; 1555 1709 } 1556 1710 1557 1711 /** Wrapper for answering the IPC_M_DATA_WRITE calls using the async framework. 1558 1712 * 1559 * This wrapper only makes it more comfortable to answer IPC_M_DATA_WRITE calls 1560 * so that the user doesn't have to remember the meaning of each IPC argument. 1713 * This wrapper only makes it more comfortable to answer IPC_M_DATA_WRITE 1714 * calls so that the user doesn't have to remember the meaning of each IPC 1715 * argument. 1561 1716 * 1562 1717 * @param callid Hash of the IPC_M_DATA_WRITE call to answer. … … 1654 1809 * 1655 1810 */ 1656 void async_data_write_void( const int retval)1811 void async_data_write_void(sysarg_t retval) 1657 1812 { 1658 1813 ipc_callid_t callid; … … 1662 1817 1663 1818 /** Wrapper for forwarding any data that is about to be received 1664 *1665 1819 * 1666 1820 */
Note:
See TracChangeset
for help on using the changeset viewer.