Changes in uspace/srv/devman/main.c [9b415c9:0418050] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
r9b415c9 r0418050 43 43 #include <stdio.h> 44 44 #include <errno.h> 45 #include <str_error.h>46 45 #include <bool.h> 47 46 #include <fibril_synch.h> … … 52 51 #include <sys/stat.h> 53 52 #include <ctype.h> 54 #include <io/log.h>55 53 #include <ipc/devman.h> 56 54 #include <ipc/driver.h> … … 73 71 driver_t *driver = NULL; 74 72 75 log_msg(LVL_DEBUG, "devman_driver_register\n");73 printf(NAME ": devman_driver_register \n"); 76 74 77 75 iid = async_get_call(&icall); … … 90 88 } 91 89 92 log_msg(LVL_DEBUG, "The `%s' driver is trying to register.\n",90 printf(NAME ": the %s driver is trying to register by the service.\n", 93 91 drv_name); 94 92 … … 97 95 98 96 if (driver == NULL) { 99 log_msg(LVL_ERROR, "No driver named `%s'was found.\n", drv_name);97 printf(NAME ": no driver named %s was found.\n", drv_name); 100 98 free(drv_name); 101 99 drv_name = NULL; … … 108 106 109 107 /* Create connection to the driver. */ 110 log_msg(LVL_DEBUG, "Creating connection to the `%s' driver.\n", 111 driver->name); 108 printf(NAME ": creating connection to the %s driver.\n", driver->name); 112 109 ipc_call_t call; 113 110 ipc_callid_t callid = async_get_call(&call); … … 121 118 set_driver_phone(driver, IPC_GET_ARG5(call)); 122 119 123 log_msg(LVL_NOTE, 124 "The `%s' driver was successfully registered as running.\n", 120 printf(NAME ": the %s driver was successfully registered as running.\n", 125 121 driver->name); 126 122 … … 146 142 callid = async_get_call(&call); 147 143 if (DEVMAN_ADD_MATCH_ID != IPC_GET_IMETHOD(call)) { 148 log_msg(LVL_ERROR,149 " Invalid protocol when trying to receive match id.\n");144 printf(NAME ": ERROR: devman_receive_match_id - invalid " 145 "protocol.\n"); 150 146 async_answer_0(callid, EINVAL); 151 147 delete_match_id(match_id); … … 154 150 155 151 if (match_id == NULL) { 156 log_msg(LVL_ERROR, "Failed to allocate match id.\n"); 152 printf(NAME ": ERROR: devman_receive_match_id - failed to " 153 "allocate match id.\n"); 157 154 async_answer_0(callid, ENOMEM); 158 155 return ENOMEM; … … 168 165 if (rc != EOK) { 169 166 delete_match_id(match_id); 170 log_msg(LVL_ERROR, "Failed to receive match id string: %s.\n",171 str_error(rc));167 printf(NAME ": devman_receive_match_id - failed to receive " 168 "match id string.\n"); 172 169 return rc; 173 170 } … … 175 172 list_append(&match_id->link, &match_ids->ids); 176 173 177 log_msg(LVL_DEBUG, "Received match id `%s', score %d.\n",174 printf(NAME ": received match id '%s', score = %d \n", 178 175 match_id->id, match_id->score); 179 176 return rc; … … 231 228 if (ftype != fun_inner && ftype != fun_exposed) { 232 229 /* Unknown function type */ 233 log_msg(LVL_ERROR, 234 "Unknown function type %d provided by driver.\n", 235 (int) ftype); 230 printf(NAME ": Error, unknown function type provided by driver!\n"); 236 231 237 232 fibril_rwlock_write_unlock(&tree->rwlock); … … 270 265 fibril_rwlock_write_unlock(&tree->rwlock); 271 266 272 log_msg(LVL_DEBUG, "devman_add_function(fun=\"%s\")\n", fun->pathname);267 printf(NAME ": devman_add_function %s\n", fun->pathname); 273 268 274 269 devman_receive_match_ids(match_count, &fun->match_ids); … … 352 347 devmap_register_class_dev(class_info); 353 348 354 log_msg(LVL_NOTE, "Function `%s' added to class `%s' as `%s'.\n",355 fun->pathname, class_name, class_info->dev_name);349 printf(NAME ": function'%s' added to class '%s', class name '%s' was " 350 "asigned to it\n", fun->pathname, class_name, class_info->dev_name); 356 351 357 352 async_answer_0(callid, EOK); … … 368 363 369 364 initialize_running_driver(driver, &device_tree); 370 log_msg(LVL_DEBUG, "The `%s` driver was successfully initialized.\n",365 printf(NAME ": the %s driver was successfully initialized. \n", 371 366 driver->name); 372 367 return 0; … … 390 385 fid_t fid = fibril_create(init_running_drv, driver); 391 386 if (fid == 0) { 392 log_msg(LVL_ERROR, "Failed to create initialization fibril " \393 " for driver `%s' .\n", driver->name);387 printf(NAME ": Error creating fibril for the initialization of " 388 "the newly registered running driver.\n"); 394 389 return; 395 390 } … … 489 484 */ 490 485 if (dev == NULL) { 491 log_msg(LVL_ERROR, "IPC forwarding failed - no device or"492 " function withhandle %" PRIun " was found.\n", handle);486 printf(NAME ": devman_forward error - no device or function with " 487 "handle %" PRIun " was found.\n", handle); 493 488 async_answer_0(iid, ENOENT); 494 489 return; … … 496 491 497 492 if (fun == NULL && !drv_to_parent) { 498 log_msg(LVL_ERROR, NAME ": devman_forward error - cannot " 499 "connect to handle %" PRIun ", refers to a device.\n", 500 handle); 493 printf(NAME ": devman_forward error - cannot connect to " 494 "handle %" PRIun ", refers to a device.\n", handle); 501 495 async_answer_0(iid, ENOENT); 502 496 return; … … 519 513 520 514 if (driver == NULL) { 521 log_msg(LVL_ERROR, "IPC forwarding refused - " \522 " the device %" PRIun " is not inusable state.\n", handle);515 printf(NAME ": devman_forward error - the device is not in %" PRIun 516 " usable state.\n", handle); 523 517 async_answer_0(iid, ENOENT); 524 518 return; … … 532 526 533 527 if (driver->phone <= 0) { 534 log_msg(LVL_ERROR,535 "Could not forward to driver `%s' (phone is %d).\n",536 driver->name, (int)driver->phone);528 printf(NAME ": devman_forward: cound not forward to driver %s ", 529 driver->name); 530 printf("the driver's phone is %" PRIun ").\n", driver->phone); 537 531 async_answer_0(iid, EINVAL); 538 532 return; … … 540 534 541 535 if (fun != NULL) { 542 log_msg(LVL_DEBUG, 543 "Forwarding request for `%s' function to driver `%s'.\n", 544 fun->pathname, driver->name); 536 printf(NAME ": devman_forward: forward connection to function %s to " 537 "driver %s.\n", fun->pathname, driver->name); 545 538 } else { 546 log_msg(LVL_DEBUG, 547 "Forwarding request for `%s' device to driver `%s'.\n", 548 dev->pfun->pathname, driver->name); 539 printf(NAME ": devman_forward: forward connection to device %s to " 540 "driver %s.\n", dev->pfun->pathname, driver->name); 549 541 } 550 542 … … 578 570 async_forward_fast(iid, dev->drv->phone, DRIVER_CLIENT, fun->handle, 0, 579 571 IPC_FF_NONE); 580 log_msg(LVL_DEBUG, 581 "Forwarding devmapper request for `%s' function to driver `%s'.\n", 582 fun->pathname, dev->drv->name); 572 printf(NAME ": devman_connection_devmapper: forwarded connection to " 573 "device %s to driver %s.\n", fun->pathname, dev->drv->name); 583 574 } 584 575 … … 615 606 static bool devman_init(void) 616 607 { 617 log_msg(LVL_DEBUG, "devman_init - looking for available drivers.\n");608 printf(NAME ": devman_init - looking for available drivers.\n"); 618 609 619 610 /* Initialize list of available drivers. */ … … 621 612 if (lookup_available_drivers(&drivers_list, 622 613 DRIVER_DEFAULT_STORE) == 0) { 623 log_msg(LVL_FATAL, "no drivers found.");614 printf(NAME " no drivers found."); 624 615 return false; 625 616 } 626 617 627 log_msg(LVL_DEBUG, "devman_init- list of drivers has been initialized.\n");618 printf(NAME ": devman_init - list of drivers has been initialized.\n"); 628 619 629 620 /* Create root device node. */ 630 621 if (!init_device_tree(&device_tree, &drivers_list)) { 631 log_msg(LVL_FATAL, "Failed to initialize device tree.");622 printf(NAME " failed to initialize device tree."); 632 623 return false; 633 624 } … … 650 641 printf(NAME ": HelenOS Device Manager\n"); 651 642 652 if (log_init(NAME, LVL_ERROR) != EOK) {653 printf(NAME ": Error initializing logging subsystem.\n");654 return -1;655 }656 657 643 if (!devman_init()) { 658 log_msg(LVL_ERROR, "Error while initializing service.\n");644 printf(NAME ": Error while initializing service\n"); 659 645 return -1; 660 646 } … … 664 650 665 651 /* Register device manager at naming service. */ 666 if (service_register(SERVICE_DEVMAN) != EOK) { 667 log_msg(LVL_ERROR, "Failed registering as a service.\n"); 652 if (service_register(SERVICE_DEVMAN) != EOK) 668 653 return -1; 669 } 670 671 printf(NAME ": Accepting connections.\n"); 654 655 printf(NAME ": Accepting connections\n"); 672 656 async_manager(); 673 657
Note:
See TracChangeset
for help on using the changeset viewer.