Changeset a1a101d in mainline
- Timestamp:
- 2012-08-17T16:58:51Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bc0ccab
- Parents:
- 920d0fc
- Location:
- uspace
- Files:
-
- 37 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/stdio/logger1.c
r920d0fc ra1a101d 36 36 { 37 37 for (log_level_t level = 0; level < LVL_LIMIT; level++) { 38 log_msg( level, "Testing logger, level %d.", (int) level);38 log_msg(LOG_DEFAULT, level, "Testing logger, level %d.", (int) level); 39 39 } 40 40 -
uspace/app/tester/stdio/logger2.c
r920d0fc ra1a101d 48 48 */ 49 49 for (log_level_t level = LVL_ERROR; level < LVL_LIMIT; level++) { 50 log_msg( level, "Printing level %d (%s).",50 log_msg(LOG_DEFAULT, level, "Printing level %d (%s).", 51 51 (int) level, log_level_str(level)); 52 log_ log_msg(log_alpha, level,52 log_msg(log_alpha, level, 53 53 "Printing level %d (%s) into alpha log.", 54 54 (int) level, log_level_str(level)); 55 log_ log_msg(log_bravo, level,55 log_msg(log_bravo, level, 56 56 "Printing level %d (%s) into bravo sub-log.", 57 57 (int) level, log_level_str(level)); -
uspace/drv/char/i8042/i8042.c
r920d0fc ra1a101d 302 302 const bool enabled = hw_res_enable_interrupt(parent_sess); 303 303 if (!enabled) { 304 log_msg(L VL_ERROR, "Failed to enable interrupts: %s.",304 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to enable interrupts: %s.", 305 305 ddf_dev_get_name(ddf_dev)); 306 306 rc = EIO; -
uspace/lib/c/generic/io/log.c
r920d0fc ra1a101d 192 192 * @param fmt Format string (no traling newline). 193 193 */ 194 void log_ log_msg(log_t ctx, log_level_t level, const char *fmt, ...)194 void log_msg(log_t ctx, log_level_t level, const char *fmt, ...) 195 195 { 196 196 va_list args; 197 197 198 198 va_start(args, fmt); 199 log_ log_msgv(ctx, level, fmt, args);199 log_msgv(ctx, level, fmt, args); 200 200 va_end(args); 201 201 } … … 208 208 * @param fmt Format string (no trailing newline) 209 209 */ 210 void log_ log_msgv(log_t ctx, log_level_t level, const char *fmt, va_list args)210 void log_msgv(log_t ctx, log_level_t level, const char *fmt, va_list args) 211 211 { 212 212 assert(level < LVL_LIMIT); -
uspace/lib/c/include/io/log.h
r920d0fc ra1a101d 62 62 extern log_t log_create(const char *, log_t); 63 63 64 #define log_msg(level, format, ...) \ 65 log_log_msg(LOG_DEFAULT, (level), (format), ##__VA_ARGS__) 66 #define log_msgv(level, format, args) \ 67 log_log_msgv(LOG_DEFAULT, (level), (format), (args)) 68 69 extern void log_log_msg(log_t, log_level_t, const char *, ...); 70 extern void log_log_msgv(log_t, log_level_t, const char *, va_list); 64 extern void log_msg(log_t, log_level_t, const char *, ...); 65 extern void log_msgv(log_t, log_level_t, const char *, va_list); 71 66 72 67 #endif -
uspace/lib/drv/generic/log.c
r920d0fc ra1a101d 58 58 59 59 va_start(args, fmt); 60 log_msgv( level, fmt, args);60 log_msgv(LOG_DEFAULT, level, fmt, args); 61 61 va_end(args); 62 62 } -
uspace/lib/usb/include/usb/debug.h
r920d0fc ra1a101d 59 59 60 60 #define usb_log_printf(level, format, ...) \ 61 log_msg( level, format, ##__VA_ARGS__)61 log_msg(LOG_DEFAULT, level, format, ##__VA_ARGS__) 62 62 63 63 /** Log fatal error. */ -
uspace/srv/devman/devman.c
r920d0fc ra1a101d 151 151 fibril_mutex_unlock(&drivers_list->drivers_mutex); 152 152 153 log_msg(L VL_NOTE, "Driver `%s' was added to the list of available "153 log_msg(LOG_DEFAULT, LVL_NOTE, "Driver `%s' was added to the list of available " 154 154 "drivers.", drv->name); 155 155 } … … 242 242 bool read_match_ids(const char *conf_path, match_id_list_t *ids) 243 243 { 244 log_msg(L VL_DEBUG, "read_match_ids(conf_path=\"%s\")", conf_path);244 log_msg(LOG_DEFAULT, LVL_DEBUG, "read_match_ids(conf_path=\"%s\")", conf_path); 245 245 246 246 bool suc = false; … … 252 252 fd = open(conf_path, O_RDONLY); 253 253 if (fd < 0) { 254 log_msg(L VL_ERROR, "Unable to open `%s' for reading: %s.",254 log_msg(LOG_DEFAULT, LVL_ERROR, "Unable to open `%s' for reading: %s.", 255 255 conf_path, str_error(fd)); 256 256 goto cleanup; … … 261 261 lseek(fd, 0, SEEK_SET); 262 262 if (len == 0) { 263 log_msg(L VL_ERROR, "Configuration file '%s' is empty.",263 log_msg(LOG_DEFAULT, LVL_ERROR, "Configuration file '%s' is empty.", 264 264 conf_path); 265 265 goto cleanup; … … 268 268 buf = malloc(len + 1); 269 269 if (buf == NULL) { 270 log_msg(L VL_ERROR, "Memory allocation failed when parsing file "270 log_msg(LOG_DEFAULT, LVL_ERROR, "Memory allocation failed when parsing file " 271 271 "'%s'.", conf_path); 272 272 goto cleanup; … … 275 275 ssize_t read_bytes = read_all(fd, buf, len); 276 276 if (read_bytes <= 0) { 277 log_msg(L VL_ERROR, "Unable to read file '%s' (%zd).", conf_path,277 log_msg(LOG_DEFAULT, LVL_ERROR, "Unable to read file '%s' (%zd).", conf_path, 278 278 read_bytes); 279 279 goto cleanup; … … 314 314 bool get_driver_info(const char *base_path, const char *name, driver_t *drv) 315 315 { 316 log_msg(L VL_DEBUG, "get_driver_info(base_path=\"%s\", name=\"%s\")",316 log_msg(LOG_DEFAULT, LVL_DEBUG, "get_driver_info(base_path=\"%s\", name=\"%s\")", 317 317 base_path, name); 318 318 … … 346 346 struct stat s; 347 347 if (stat(drv->binary_path, &s) == ENOENT) { /* FIXME!! */ 348 log_msg(L VL_ERROR, "Driver not found at path `%s'.",348 log_msg(LOG_DEFAULT, LVL_ERROR, "Driver not found at path `%s'.", 349 349 drv->binary_path); 350 350 goto cleanup; … … 374 374 int lookup_available_drivers(driver_list_t *drivers_list, const char *dir_path) 375 375 { 376 log_msg(L VL_DEBUG, "lookup_available_drivers(dir=\"%s\")", dir_path);376 log_msg(LOG_DEFAULT, LVL_DEBUG, "lookup_available_drivers(dir=\"%s\")", dir_path); 377 377 378 378 int drv_cnt = 0; … … 408 408 dev_node_t *dev; 409 409 410 log_msg(L VL_DEBUG, "create_root_nodes()");410 log_msg(LOG_DEFAULT, LVL_DEBUG, "create_root_nodes()"); 411 411 412 412 fibril_rwlock_write_lock(&tree->rwlock); … … 495 495 void attach_driver(dev_tree_t *tree, dev_node_t *dev, driver_t *drv) 496 496 { 497 log_msg(L VL_DEBUG, "attach_driver(dev=\"%s\",drv=\"%s\")",497 log_msg(LOG_DEFAULT, LVL_DEBUG, "attach_driver(dev=\"%s\",drv=\"%s\")", 498 498 dev->pfun->pathname, drv->name); 499 499 … … 520 520 assert(drv != NULL); 521 521 522 log_msg(L VL_DEBUG, "detach_driver(dev=\"%s\",drv=\"%s\")",522 log_msg(LOG_DEFAULT, LVL_DEBUG, "detach_driver(dev=\"%s\",drv=\"%s\")", 523 523 dev->pfun->pathname, drv->name); 524 524 … … 545 545 assert(fibril_mutex_is_locked(&drv->driver_mutex)); 546 546 547 log_msg(L VL_DEBUG, "start_driver(drv=\"%s\")", drv->name);547 log_msg(LOG_DEFAULT, LVL_DEBUG, "start_driver(drv=\"%s\")", drv->name); 548 548 549 549 rc = task_spawnl(NULL, drv->binary_path, drv->binary_path, NULL); 550 550 if (rc != EOK) { 551 log_msg(L VL_ERROR, "Spawning driver `%s' (%s) failed: %s.",551 log_msg(LOG_DEFAULT, LVL_ERROR, "Spawning driver `%s' (%s) failed: %s.", 552 552 drv->name, drv->binary_path, str_error(rc)); 553 553 return false; … … 594 594 link_t *link; 595 595 596 log_msg(L VL_DEBUG, "pass_devices_to_driver(driver=\"%s\")",596 log_msg(LOG_DEFAULT, LVL_DEBUG, "pass_devices_to_driver(driver=\"%s\")", 597 597 driver->name); 598 598 … … 614 614 } 615 615 616 log_msg(L VL_DEBUG, "pass_devices_to_driver: dev->refcnt=%d\n",616 log_msg(LOG_DEFAULT, LVL_DEBUG, "pass_devices_to_driver: dev->refcnt=%d\n", 617 617 (int)atomic_get(&dev->refcnt)); 618 618 dev_add_ref(dev); … … 650 650 * immediately and possibly started here as well. 651 651 */ 652 log_msg(L VL_DEBUG, "Driver `%s' enters running state.", driver->name);652 log_msg(LOG_DEFAULT, LVL_DEBUG, "Driver `%s' enters running state.", driver->name); 653 653 driver->state = DRIVER_RUNNING; 654 654 … … 667 667 void initialize_running_driver(driver_t *driver, dev_tree_t *tree) 668 668 { 669 log_msg(L VL_DEBUG, "initialize_running_driver(driver=\"%s\")",669 log_msg(LOG_DEFAULT, LVL_DEBUG, "initialize_running_driver(driver=\"%s\")", 670 670 driver->name); 671 671 … … 761 761 * access any structures that would affect driver_t. 762 762 */ 763 log_msg(L VL_DEBUG, "add_device(drv=\"%s\", dev=\"%s\")",763 log_msg(LOG_DEFAULT, LVL_DEBUG, "add_device(drv=\"%s\", dev=\"%s\")", 764 764 drv->name, dev->pfun->name); 765 765 … … 827 827 driver_t *drv = find_best_match_driver(drivers_list, dev); 828 828 if (drv == NULL) { 829 log_msg(L VL_ERROR, "No driver found for device `%s'.",829 log_msg(LOG_DEFAULT, LVL_ERROR, "No driver found for device `%s'.", 830 830 dev->pfun->pathname); 831 831 return false; … … 867 867 assert(dev != NULL); 868 868 869 log_msg(L VL_DEBUG, "driver_dev_remove(%p)", dev);869 log_msg(LOG_DEFAULT, LVL_DEBUG, "driver_dev_remove(%p)", dev); 870 870 871 871 fibril_rwlock_read_lock(&tree->rwlock); … … 890 890 assert(dev != NULL); 891 891 892 log_msg(L VL_DEBUG, "driver_dev_gone(%p)", dev);892 log_msg(LOG_DEFAULT, LVL_DEBUG, "driver_dev_gone(%p)", dev); 893 893 894 894 fibril_rwlock_read_lock(&tree->rwlock); … … 911 911 devman_handle_t handle; 912 912 913 log_msg(L VL_DEBUG, "driver_fun_online(%p)", fun);913 log_msg(LOG_DEFAULT, LVL_DEBUG, "driver_fun_online(%p)", fun); 914 914 915 915 fibril_rwlock_read_lock(&tree->rwlock); … … 939 939 devman_handle_t handle; 940 940 941 log_msg(L VL_DEBUG, "driver_fun_offline(%p)", fun);941 log_msg(LOG_DEFAULT, LVL_DEBUG, "driver_fun_offline(%p)", fun); 942 942 943 943 fibril_rwlock_read_lock(&tree->rwlock); … … 970 970 bool init_device_tree(dev_tree_t *tree, driver_list_t *drivers_list) 971 971 { 972 log_msg(L VL_DEBUG, "init_device_tree()");972 log_msg(LOG_DEFAULT, LVL_DEBUG, "init_device_tree()"); 973 973 974 974 tree->current_handle = 0; … … 1261 1261 fun->pathname = (char *) malloc(pathsize); 1262 1262 if (fun->pathname == NULL) { 1263 log_msg(L VL_ERROR, "Failed to allocate device path.");1263 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to allocate device path."); 1264 1264 return false; 1265 1265 } … … 1289 1289 assert(fibril_rwlock_is_write_locked(&tree->rwlock)); 1290 1290 1291 log_msg(L VL_DEBUG, "insert_dev_node(dev=%p, pfun=%p [\"%s\"])",1291 log_msg(LOG_DEFAULT, LVL_DEBUG, "insert_dev_node(dev=%p, pfun=%p [\"%s\"])", 1292 1292 dev, pfun, pfun->pathname); 1293 1293 … … 1313 1313 assert(fibril_rwlock_is_write_locked(&tree->rwlock)); 1314 1314 1315 log_msg(L VL_DEBUG, "remove_dev_node(dev=%p)", dev);1315 log_msg(LOG_DEFAULT, LVL_DEBUG, "remove_dev_node(dev=%p)", dev); 1316 1316 1317 1317 /* Remove node from the handle-to-node map. */ -
uspace/srv/devman/main.c
r920d0fc ra1a101d 73 73 char *drv_name = NULL; 74 74 75 log_msg(L VL_DEBUG, "devman_driver_register");75 log_msg(LOG_DEFAULT, LVL_DEBUG, "devman_driver_register"); 76 76 77 77 /* Get driver name. */ … … 82 82 } 83 83 84 log_msg(L VL_DEBUG, "The `%s' driver is trying to register.",84 log_msg(LOG_DEFAULT, LVL_DEBUG, "The `%s' driver is trying to register.", 85 85 drv_name); 86 86 … … 88 88 driver = find_driver(&drivers_list, drv_name); 89 89 if (driver == NULL) { 90 log_msg(L VL_ERROR, "No driver named `%s' was found.", drv_name);90 log_msg(LOG_DEFAULT, LVL_ERROR, "No driver named `%s' was found.", drv_name); 91 91 free(drv_name); 92 92 drv_name = NULL; … … 102 102 if (driver->sess) { 103 103 /* We already have a connection to the driver. */ 104 log_msg(L VL_ERROR, "Driver '%s' already started.\n",104 log_msg(LOG_DEFAULT, LVL_ERROR, "Driver '%s' already started.\n", 105 105 driver->name); 106 106 fibril_mutex_unlock(&driver->driver_mutex); … … 112 112 case DRIVER_NOT_STARTED: 113 113 /* Somebody started the driver manually. */ 114 log_msg(L VL_NOTE, "Driver '%s' started manually.\n",114 log_msg(LOG_DEFAULT, LVL_NOTE, "Driver '%s' started manually.\n", 115 115 driver->name); 116 116 driver->state = DRIVER_STARTING; … … 125 125 126 126 /* Create connection to the driver. */ 127 log_msg(L VL_DEBUG, "Creating connection to the `%s' driver.",127 log_msg(LOG_DEFAULT, LVL_DEBUG, "Creating connection to the `%s' driver.", 128 128 driver->name); 129 129 driver->sess = async_callback_receive(EXCHANGE_PARALLEL); … … 136 136 async_sess_args_set(driver->sess, DRIVER_DEVMAN, 0, 0); 137 137 138 log_msg(L VL_NOTE,138 log_msg(LOG_DEFAULT, LVL_NOTE, 139 139 "The `%s' driver was successfully registered as running.", 140 140 driver->name); … … 147 147 fid_t fid = fibril_create(init_running_drv, driver); 148 148 if (fid == 0) { 149 log_msg(L VL_ERROR, "Failed to create initialization fibril " \149 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to create initialization fibril " \ 150 150 "for driver `%s'.", driver->name); 151 151 fibril_mutex_unlock(&driver->driver_mutex); … … 176 176 callid = async_get_call(&call); 177 177 if (DEVMAN_ADD_MATCH_ID != IPC_GET_IMETHOD(call)) { 178 log_msg(L VL_ERROR,178 log_msg(LOG_DEFAULT, LVL_ERROR, 179 179 "Invalid protocol when trying to receive match id."); 180 180 async_answer_0(callid, EINVAL); … … 184 184 185 185 if (match_id == NULL) { 186 log_msg(L VL_ERROR, "Failed to allocate match id.");186 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to allocate match id."); 187 187 async_answer_0(callid, ENOMEM); 188 188 return ENOMEM; … … 198 198 if (rc != EOK) { 199 199 delete_match_id(match_id); 200 log_msg(L VL_ERROR, "Failed to receive match id string: %s.",200 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to receive match id string: %s.", 201 201 str_error(rc)); 202 202 return rc; … … 205 205 list_append(&match_id->link, &match_ids->ids); 206 206 207 log_msg(L VL_DEBUG, "Received match id `%s', score %d.",207 log_msg(LOG_DEFAULT, LVL_DEBUG, "Received match id `%s', score %d.", 208 208 match_id->id, match_id->score); 209 209 return rc; … … 248 248 if (fun->state == FUN_ON_LINE) { 249 249 fibril_rwlock_write_unlock(&device_tree.rwlock); 250 log_msg(L VL_WARN, "Function %s is already on line.",250 log_msg(LOG_DEFAULT, LVL_WARN, "Function %s is already on line.", 251 251 fun->pathname); 252 252 return EOK; … … 264 264 } 265 265 266 log_msg(L VL_DEBUG, "devman_add_function(fun=\"%s\")", fun->pathname);266 log_msg(LOG_DEFAULT, LVL_DEBUG, "devman_add_function(fun=\"%s\")", fun->pathname); 267 267 268 268 if (fun->ftype == fun_inner) { … … 282 282 fid_t assign_fibril = fibril_create(assign_driver_fibril, dev); 283 283 if (assign_fibril == 0) { 284 log_msg(L VL_ERROR, "Failed to create fibril for "284 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to create fibril for " 285 285 "assigning driver."); 286 286 /* XXX Cleanup */ … … 305 305 if (fun->state == FUN_OFF_LINE) { 306 306 fibril_rwlock_write_unlock(&device_tree.rwlock); 307 log_msg(L VL_WARN, "Function %s is already off line.",307 log_msg(LOG_DEFAULT, LVL_WARN, "Function %s is already off line.", 308 308 fun->pathname); 309 309 return EOK; … … 311 311 312 312 if (fun->ftype == fun_inner) { 313 log_msg(L VL_DEBUG, "Offlining inner function %s.",313 log_msg(LOG_DEFAULT, LVL_DEBUG, "Offlining inner function %s.", 314 314 fun->pathname); 315 315 … … 359 359 if (rc != EOK) { 360 360 fibril_rwlock_write_unlock(&device_tree.rwlock); 361 log_msg(L VL_ERROR, "Failed unregistering tree service.");361 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed unregistering tree service."); 362 362 return EIO; 363 363 } … … 391 391 if (ftype != fun_inner && ftype != fun_exposed) { 392 392 /* Unknown function type */ 393 log_msg(L VL_ERROR,393 log_msg(LOG_DEFAULT, LVL_ERROR, 394 394 "Unknown function type %d provided by driver.", 395 395 (int) ftype); … … 507 507 if (rc == EOK) { 508 508 loc_service_add_to_cat(fun->service_id, cat_id); 509 log_msg(L VL_NOTE, "Function `%s' added to category `%s'.",509 log_msg(LOG_DEFAULT, LVL_NOTE, "Function `%s' added to category `%s'.", 510 510 fun->pathname, cat_name); 511 511 } else { 512 log_msg(L VL_ERROR, "Failed adding function `%s' to category "512 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed adding function `%s' to category " 513 513 "`%s'.", fun->pathname, cat_name); 514 514 } … … 529 529 int rc; 530 530 531 log_msg(L VL_DEBUG, "devman_drv_fun_online()");531 log_msg(LOG_DEFAULT, LVL_DEBUG, "devman_drv_fun_online()"); 532 532 533 533 fun = find_fun_node(&device_tree, IPC_GET_ARG1(*icall)); … … 620 620 fibril_rwlock_write_lock(&tree->rwlock); 621 621 622 log_msg(L VL_DEBUG, "devman_remove_function(fun='%s')", fun->pathname);622 log_msg(LOG_DEFAULT, LVL_DEBUG, "devman_remove_function(fun='%s')", fun->pathname); 623 623 624 624 /* Check function state */ … … 653 653 /* Verify that driver succeeded and removed all functions */ 654 654 if (gone_rc != EOK || !list_empty(&dev->functions)) { 655 log_msg(L VL_ERROR, "Driver did not remove "655 log_msg(LOG_DEFAULT, LVL_ERROR, "Driver did not remove " 656 656 "functions for device that is gone. " 657 657 "Device node is now defunct."); … … 692 692 rc = loc_service_unregister(fun->service_id); 693 693 if (rc != EOK) { 694 log_msg(L VL_ERROR, "Failed unregistering tree "694 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed unregistering tree " 695 695 "service."); 696 696 fibril_rwlock_write_unlock(&tree->rwlock); … … 712 712 fun_del_ref(fun); 713 713 714 log_msg(L VL_DEBUG, "devman_remove_function() succeeded.");714 log_msg(LOG_DEFAULT, LVL_DEBUG, "devman_remove_function() succeeded."); 715 715 async_answer_0(callid, EOK); 716 716 } … … 726 726 727 727 initialize_running_driver(driver, &device_tree); 728 log_msg(L VL_DEBUG, "The `%s` driver was successfully initialized.",728 log_msg(LOG_DEFAULT, LVL_DEBUG, "The `%s` driver was successfully initialized.", 729 729 driver->name); 730 730 return 0; … … 742 742 client = async_get_client_data(); 743 743 if (client == NULL) { 744 log_msg(L VL_ERROR, "Failed to allocate client data.");744 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to allocate client data."); 745 745 return; 746 746 } … … 1229 1229 */ 1230 1230 if (dev == NULL) { 1231 log_msg(L VL_ERROR, "IPC forwarding failed - no device or "1231 log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding failed - no device or " 1232 1232 "function with handle %" PRIun " was found.", handle); 1233 1233 async_answer_0(iid, ENOENT); … … 1236 1236 1237 1237 if (fun == NULL && !drv_to_parent) { 1238 log_msg(L VL_ERROR, NAME ": devman_forward error - cannot "1238 log_msg(LOG_DEFAULT, LVL_ERROR, NAME ": devman_forward error - cannot " 1239 1239 "connect to handle %" PRIun ", refers to a device.", 1240 1240 handle); … … 1264 1264 1265 1265 if (driver == NULL) { 1266 log_msg(L VL_ERROR, "IPC forwarding refused - " \1266 log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - " \ 1267 1267 "the device %" PRIun " is not in usable state.", handle); 1268 1268 async_answer_0(iid, ENOENT); … … 1277 1277 1278 1278 if (!driver->sess) { 1279 log_msg(L VL_ERROR,1279 log_msg(LOG_DEFAULT, LVL_ERROR, 1280 1280 "Could not forward to driver `%s'.", driver->name); 1281 1281 async_answer_0(iid, EINVAL); … … 1284 1284 1285 1285 if (fun != NULL) { 1286 log_msg(L VL_DEBUG,1286 log_msg(LOG_DEFAULT, LVL_DEBUG, 1287 1287 "Forwarding request for `%s' function to driver `%s'.", 1288 1288 fun->pathname, driver->name); 1289 1289 } else { 1290 log_msg(L VL_DEBUG,1290 log_msg(LOG_DEFAULT, LVL_DEBUG, 1291 1291 "Forwarding request for `%s' device to driver `%s'.", 1292 1292 dev->pfun->pathname, driver->name); … … 1320 1320 1321 1321 if (fun == NULL || fun->dev == NULL || fun->dev->drv == NULL) { 1322 log_msg(L VL_WARN, "devman_connection_loc(): function "1322 log_msg(LOG_DEFAULT, LVL_WARN, "devman_connection_loc(): function " 1323 1323 "not found.\n"); 1324 1324 fibril_rwlock_read_unlock(&device_tree.rwlock); … … 1338 1338 async_exchange_end(exch); 1339 1339 1340 log_msg(L VL_DEBUG,1340 log_msg(LOG_DEFAULT, LVL_DEBUG, 1341 1341 "Forwarding loc service request for `%s' function to driver `%s'.", 1342 1342 fun->pathname, driver->name); … … 1394 1394 static bool devman_init(void) 1395 1395 { 1396 log_msg(L VL_DEBUG, "devman_init - looking for available drivers.");1396 log_msg(LOG_DEFAULT, LVL_DEBUG, "devman_init - looking for available drivers."); 1397 1397 1398 1398 /* Initialize list of available drivers. */ … … 1400 1400 if (lookup_available_drivers(&drivers_list, 1401 1401 DRIVER_DEFAULT_STORE) == 0) { 1402 log_msg(L VL_FATAL, "No drivers found.");1402 log_msg(LOG_DEFAULT, LVL_FATAL, "No drivers found."); 1403 1403 return false; 1404 1404 } 1405 1405 1406 log_msg(L VL_DEBUG, "devman_init - list of drivers has been initialized.");1406 log_msg(LOG_DEFAULT, LVL_DEBUG, "devman_init - list of drivers has been initialized."); 1407 1407 1408 1408 /* Create root device node. */ 1409 1409 if (!init_device_tree(&device_tree, &drivers_list)) { 1410 log_msg(L VL_FATAL, "Failed to initialize device tree.");1410 log_msg(LOG_DEFAULT, LVL_FATAL, "Failed to initialize device tree."); 1411 1411 return false; 1412 1412 } … … 1440 1440 1441 1441 if (!devman_init()) { 1442 log_msg(L VL_ERROR, "Error while initializing service.");1442 log_msg(LOG_DEFAULT, LVL_ERROR, "Error while initializing service."); 1443 1443 return -1; 1444 1444 } … … 1447 1447 rc = service_register(SERVICE_DEVMAN); 1448 1448 if (rc != EOK) { 1449 log_msg(L VL_ERROR, "Failed registering as a service.");1449 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering as a service."); 1450 1450 return rc; 1451 1451 } -
uspace/srv/net/ethip/arp.c
r920d0fc ra1a101d 59 59 ethip_link_addr_t *laddr; 60 60 61 log_msg(L VL_DEBUG, "arp_received()");61 log_msg(LOG_DEFAULT, LVL_DEBUG, "arp_received()"); 62 62 63 63 rc = arp_pdu_decode(frame->data, frame->size, &packet); … … 65 65 return; 66 66 67 log_msg(L VL_DEBUG, "ARP PDU decoded, opcode=%d, tpa=%x",67 log_msg(LOG_DEFAULT, LVL_DEBUG, "ARP PDU decoded, opcode=%d, tpa=%x", 68 68 packet.opcode, packet.target_proto_addr.ipv4); 69 69 70 70 laddr = ethip_nic_addr_find(nic, &packet.target_proto_addr); 71 71 if (laddr != NULL) { 72 log_msg(L VL_DEBUG, "Request/reply to my address");72 log_msg(LOG_DEFAULT, LVL_DEBUG, "Request/reply to my address"); 73 73 74 74 (void) atrans_add(&packet.sender_proto_addr, … … 122 122 size_t fsize; 123 123 124 log_msg(L VL_DEBUG, "arp_send_packet()");124 log_msg(LOG_DEFAULT, LVL_DEBUG, "arp_send_packet()"); 125 125 126 126 rc = arp_pdu_encode(packet, &pdata, &psize); -
uspace/srv/net/ethip/ethip.c
r920d0fc ra1a101d 77 77 int rc = loc_server_register(NAME); 78 78 if (rc != EOK) { 79 log_msg(L VL_ERROR, "Failed registering server.");79 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering server."); 80 80 return rc; 81 81 } … … 96 96 char *svc_name = NULL; 97 97 98 log_msg(L VL_DEBUG, "ethip_iplink_init()");98 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_iplink_init()"); 99 99 100 100 iplink_srv_init(&nic->iplink); … … 104 104 rc = asprintf(&svc_name, "net/eth%u", ++link_num); 105 105 if (rc < 0) { 106 log_msg(L VL_ERROR, "Out of memory.");106 log_msg(LOG_DEFAULT, LVL_ERROR, "Out of memory."); 107 107 goto error; 108 108 } … … 110 110 rc = loc_service_register(svc_name, &sid); 111 111 if (rc != EOK) { 112 log_msg(L VL_ERROR, "Failed registering service %s.", svc_name);112 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service %s.", svc_name); 113 113 goto error; 114 114 } … … 118 118 rc = loc_category_get_id("iplink", &iplink_cat, IPC_FLAG_BLOCKING); 119 119 if (rc != EOK) { 120 log_msg(L VL_ERROR, "Failed resolving category 'iplink'.");120 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed resolving category 'iplink'."); 121 121 goto error; 122 122 } … … 124 124 rc = loc_service_add_to_cat(sid, iplink_cat); 125 125 if (rc != EOK) { 126 log_msg(L VL_ERROR, "Failed adding %s to category.", svc_name);126 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed adding %s to category.", svc_name); 127 127 goto error; 128 128 } … … 142 142 143 143 sid = (service_id_t)IPC_GET_ARG1(*icall); 144 log_msg(L VL_DEBUG, "ethip_client_conn(%u)", (unsigned)sid);144 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_client_conn(%u)", (unsigned)sid); 145 145 nic = ethip_nic_find_by_iplink_sid(sid); 146 146 if (nic == NULL) { 147 log_msg(L VL_WARN, "Uknown service ID.");147 log_msg(LOG_DEFAULT, LVL_WARN, "Uknown service ID."); 148 148 return; 149 149 } … … 154 154 static int ethip_open(iplink_srv_t *srv) 155 155 { 156 log_msg(L VL_DEBUG, "ethip_open()");156 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_open()"); 157 157 return EOK; 158 158 } … … 160 160 static int ethip_close(iplink_srv_t *srv) 161 161 { 162 log_msg(L VL_DEBUG, "ethip_close()");162 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_close()"); 163 163 return EOK; 164 164 } … … 173 173 int rc; 174 174 175 log_msg(L VL_DEBUG, "ethip_send()");175 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_send()"); 176 176 177 177 rc = arp_translate(nic, &sdu->lsrc, &sdu->ldest, &dest_mac_addr); 178 178 if (rc != EOK) { 179 log_msg(L VL_WARN, "Failed to look up IP address 0x%" PRIx32,179 log_msg(LOG_DEFAULT, LVL_WARN, "Failed to look up IP address 0x%" PRIx32, 180 180 sdu->ldest.ipv4); 181 181 return rc; … … 200 200 int ethip_received(iplink_srv_t *srv, void *data, size_t size) 201 201 { 202 log_msg(L VL_DEBUG, "ethip_received(): srv=%p", srv);202 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_received(): srv=%p", srv); 203 203 ethip_nic_t *nic = (ethip_nic_t *)srv->arg; 204 204 eth_frame_t frame; … … 206 206 int rc; 207 207 208 log_msg(L VL_DEBUG, "ethip_received()");209 210 log_msg(L VL_DEBUG, " - eth_pdu_decode");208 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_received()"); 209 210 log_msg(LOG_DEFAULT, LVL_DEBUG, " - eth_pdu_decode"); 211 211 rc = eth_pdu_decode(data, size, &frame); 212 212 if (rc != EOK) { 213 log_msg(L VL_DEBUG, " - eth_pdu_decode failed");213 log_msg(LOG_DEFAULT, LVL_DEBUG, " - eth_pdu_decode failed"); 214 214 return rc; 215 215 } … … 220 220 break; 221 221 case ETYPE_IP: 222 log_msg(L VL_DEBUG, " - construct SDU");222 log_msg(LOG_DEFAULT, LVL_DEBUG, " - construct SDU"); 223 223 sdu.lsrc.ipv4 = (192 << 24) | (168 << 16) | (0 << 8) | 1; 224 224 sdu.ldest.ipv4 = (192 << 24) | (168 << 16) | (0 << 8) | 4; 225 225 sdu.data = frame.data; 226 226 sdu.size = frame.size; 227 log_msg(L VL_DEBUG, " - call iplink_ev_recv");227 log_msg(LOG_DEFAULT, LVL_DEBUG, " - call iplink_ev_recv"); 228 228 rc = iplink_ev_recv(&nic->iplink, &sdu); 229 229 break; 230 230 default: 231 log_msg(L VL_DEBUG, "Unknown ethertype 0x%" PRIx16,231 log_msg(LOG_DEFAULT, LVL_DEBUG, "Unknown ethertype 0x%" PRIx16, 232 232 frame.etype_len); 233 233 } … … 239 239 static int ethip_get_mtu(iplink_srv_t *srv, size_t *mtu) 240 240 { 241 log_msg(L VL_DEBUG, "ethip_get_mtu()");241 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_get_mtu()"); 242 242 *mtu = 1500; 243 243 return EOK; … … 248 248 ethip_nic_t *nic = (ethip_nic_t *)srv->arg; 249 249 250 log_msg(L VL_DEBUG, "ethip_addr_add(0x%" PRIx32 ")", addr->ipv4);250 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_addr_add(0x%" PRIx32 ")", addr->ipv4); 251 251 return ethip_nic_addr_add(nic, addr); 252 252 } … … 256 256 ethip_nic_t *nic = (ethip_nic_t *)srv->arg; 257 257 258 log_msg(L VL_DEBUG, "ethip_addr_remove(0x%" PRIx32 ")", addr->ipv4);258 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_addr_remove(0x%" PRIx32 ")", addr->ipv4); 259 259 return ethip_nic_addr_add(nic, addr); 260 260 } -
uspace/srv/net/ethip/ethip_nic.c
r920d0fc ra1a101d 68 68 rc = loc_category_get_id("nic", &iplink_cat, IPC_FLAG_BLOCKING); 69 69 if (rc != EOK) { 70 log_msg(L VL_ERROR, "Failed resolving category 'nic'.");70 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed resolving category 'nic'."); 71 71 fibril_mutex_unlock(ðip_discovery_lock); 72 72 return ENOENT; … … 75 75 rc = loc_category_get_svcs(iplink_cat, &svcs, &count); 76 76 if (rc != EOK) { 77 log_msg(L VL_ERROR, "Failed getting list of IP links.");77 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed getting list of IP links."); 78 78 fibril_mutex_unlock(ðip_discovery_lock); 79 79 return EIO; … … 93 93 94 94 if (!already_known) { 95 log_msg(L VL_DEBUG, "Found NIC '%lu'",95 log_msg(LOG_DEFAULT, LVL_DEBUG, "Found NIC '%lu'", 96 96 (unsigned long) svcs[i]); 97 97 rc = ethip_nic_open(svcs[i]); 98 98 if (rc != EOK) 99 log_msg(L VL_ERROR, "Could not open NIC.");99 log_msg(LOG_DEFAULT, LVL_ERROR, "Could not open NIC."); 100 100 } 101 101 } … … 110 110 111 111 if (nic == NULL) { 112 log_msg(L VL_ERROR, "Failed allocating NIC structure. "112 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed allocating NIC structure. " 113 113 "Out of memory."); 114 114 return NULL; … … 126 126 127 127 if (laddr == NULL) { 128 log_msg(L VL_ERROR, "Failed allocating NIC address structure. "128 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed allocating NIC address structure. " 129 129 "Out of memory."); 130 130 return NULL; … … 153 153 nic_address_t nic_address; 154 154 155 log_msg(L VL_DEBUG, "ethip_nic_open()");155 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_open()"); 156 156 ethip_nic_t *nic = ethip_nic_new(); 157 157 if (nic == NULL) … … 160 160 int rc = loc_service_get_name(sid, &nic->svc_name); 161 161 if (rc != EOK) { 162 log_msg(L VL_ERROR, "Failed getting service name.");162 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed getting service name."); 163 163 goto error; 164 164 } … … 166 166 nic->sess = loc_service_connect(EXCHANGE_SERIALIZE, sid, 0); 167 167 if (nic->sess == NULL) { 168 log_msg(L VL_ERROR, "Failed connecting '%s'", nic->svc_name);168 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed connecting '%s'", nic->svc_name); 169 169 goto error; 170 170 } … … 174 174 rc = nic_callback_create(nic->sess, ethip_nic_cb_conn, nic); 175 175 if (rc != EOK) { 176 log_msg(L VL_ERROR, "Failed creating callback connection "176 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed creating callback connection " 177 177 "from '%s'", nic->svc_name); 178 178 goto error; 179 179 } 180 180 181 log_msg(L VL_DEBUG, "Opened NIC '%s'", nic->svc_name);181 log_msg(LOG_DEFAULT, LVL_DEBUG, "Opened NIC '%s'", nic->svc_name); 182 182 list_append(&nic->nic_list, ðip_nic_list); 183 183 in_list = true; … … 189 189 rc = nic_get_address(nic->sess, &nic_address); 190 190 if (rc != EOK) { 191 log_msg(L VL_ERROR, "Error getting MAC address of NIC '%s'.",191 log_msg(LOG_DEFAULT, LVL_ERROR, "Error getting MAC address of NIC '%s'.", 192 192 nic->svc_name); 193 193 goto error; … … 198 198 rc = nic_set_state(nic->sess, NIC_STATE_ACTIVE); 199 199 if (rc != EOK) { 200 log_msg(L VL_ERROR, "Error activating NIC '%s'.",200 log_msg(LOG_DEFAULT, LVL_ERROR, "Error activating NIC '%s'.", 201 201 nic->svc_name); 202 202 goto error; 203 203 } 204 204 205 log_msg(L VL_DEBUG, "Initialized IP link service, MAC = 0x%" PRIx64,205 log_msg(LOG_DEFAULT, LVL_DEBUG, "Initialized IP link service, MAC = 0x%" PRIx64, 206 206 nic->mac_addr.addr); 207 207 … … 225 225 ipc_call_t *call) 226 226 { 227 log_msg(L VL_DEBUG, "ethip_nic_addr_changed()");227 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_addr_changed()"); 228 228 async_answer_0(callid, ENOTSUP); 229 229 } … … 236 236 size_t size; 237 237 238 log_msg(L VL_DEBUG, "ethip_nic_received() nic=%p", nic);238 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_received() nic=%p", nic); 239 239 240 240 rc = async_data_write_accept(&data, false, 0, 0, 0, &size); 241 241 if (rc != EOK) { 242 log_msg(L VL_DEBUG, "data_write_accept() failed");242 log_msg(LOG_DEFAULT, LVL_DEBUG, "data_write_accept() failed"); 243 243 return; 244 244 } 245 245 246 log_msg(L VL_DEBUG, "Ethernet PDU contents (%zu bytes)",246 log_msg(LOG_DEFAULT, LVL_DEBUG, "Ethernet PDU contents (%zu bytes)", 247 247 size); 248 248 249 log_msg(L VL_DEBUG, "call ethip_received");249 log_msg(LOG_DEFAULT, LVL_DEBUG, "call ethip_received"); 250 250 rc = ethip_received(&nic->iplink, data, size); 251 log_msg(L VL_DEBUG, "free data");251 log_msg(LOG_DEFAULT, LVL_DEBUG, "free data"); 252 252 free(data); 253 253 254 log_msg(L VL_DEBUG, "ethip_nic_received() done, rc=%d", rc);254 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_received() done, rc=%d", rc); 255 255 async_answer_0(callid, rc); 256 256 } … … 259 259 ipc_call_t *call) 260 260 { 261 log_msg(L VL_DEBUG, "ethip_nic_device_state()");261 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_device_state()"); 262 262 async_answer_0(callid, ENOTSUP); 263 263 } … … 267 267 ethip_nic_t *nic = (ethip_nic_t *)arg; 268 268 269 log_msg(L VL_DEBUG, "ethnip_nic_cb_conn()");269 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethnip_nic_cb_conn()"); 270 270 271 271 while (true) { … … 298 298 int rc = loc_register_cat_change_cb(ethip_nic_cat_change_cb); 299 299 if (rc != EOK) { 300 log_msg(L VL_ERROR, "Failed registering callback for NIC "300 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering callback for NIC " 301 301 "discovery (%d).", rc); 302 302 return rc; … … 308 308 ethip_nic_t *ethip_nic_find_by_iplink_sid(service_id_t iplink_sid) 309 309 { 310 log_msg(L VL_DEBUG, "ethip_nic_find_by_iplink_sid(%u)",310 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_find_by_iplink_sid(%u)", 311 311 (unsigned) iplink_sid); 312 312 313 313 list_foreach(ethip_nic_list, link) { 314 log_msg(L VL_DEBUG, "ethip_nic_find_by_iplink_sid - element");314 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_find_by_iplink_sid - element"); 315 315 ethip_nic_t *nic = list_get_instance(link, ethip_nic_t, 316 316 nic_list); 317 317 318 318 if (nic->iplink_sid == iplink_sid) { 319 log_msg(L VL_DEBUG, "ethip_nic_find_by_iplink_sid - found %p", nic);319 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_find_by_iplink_sid - found %p", nic); 320 320 return nic; 321 321 } 322 322 } 323 323 324 log_msg(L VL_DEBUG, "ethip_nic_find_by_iplink_sid - not found");324 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_find_by_iplink_sid - not found"); 325 325 return NULL; 326 326 } … … 329 329 { 330 330 int rc; 331 log_msg(L VL_DEBUG, "ethip_nic_send(size=%zu)", size);331 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_send(size=%zu)", size); 332 332 rc = nic_send_frame(nic->sess, data, size); 333 log_msg(L VL_DEBUG, "nic_send_frame -> %d", rc);333 log_msg(LOG_DEFAULT, LVL_DEBUG, "nic_send_frame -> %d", rc); 334 334 return rc; 335 335 } … … 339 339 ethip_link_addr_t *laddr; 340 340 341 log_msg(L VL_DEBUG, "ethip_nic_addr_add()");341 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_addr_add()"); 342 342 laddr = ethip_nic_addr_new(addr); 343 343 if (laddr == NULL) … … 352 352 ethip_link_addr_t *laddr; 353 353 354 log_msg(L VL_DEBUG, "ethip_nic_addr_remove()");354 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_addr_remove()"); 355 355 356 356 laddr = ethip_nic_addr_find(nic, addr); … … 366 366 iplink_srv_addr_t *addr) 367 367 { 368 log_msg(L VL_DEBUG, "ethip_nic_addr_find()");368 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_addr_find()"); 369 369 370 370 list_foreach(nic->addr_list, link) { -
uspace/srv/net/ethip/pdu.c
r920d0fc ra1a101d 69 69 frame->size); 70 70 71 log_msg(L VL_DEBUG, "Encoding Ethernet frame src=%llx dest=%llx etype=%x",71 log_msg(LOG_DEFAULT, LVL_DEBUG, "Encoding Ethernet frame src=%llx dest=%llx etype=%x", 72 72 frame->src, frame->dest, frame->etype_len); 73 log_msg(L VL_DEBUG, "Encoded Ethernet frame (%zu bytes)", size);73 log_msg(LOG_DEFAULT, LVL_DEBUG, "Encoded Ethernet frame (%zu bytes)", size); 74 74 75 75 *rdata = data; … … 83 83 eth_header_t *hdr; 84 84 85 log_msg(L VL_DEBUG, "eth_pdu_decode()");85 log_msg(LOG_DEFAULT, LVL_DEBUG, "eth_pdu_decode()"); 86 86 87 87 if (size < sizeof(eth_header_t)) { 88 log_msg(L VL_DEBUG, "PDU too short (%zu)", size);88 log_msg(LOG_DEFAULT, LVL_DEBUG, "PDU too short (%zu)", size); 89 89 return EINVAL; 90 90 } … … 104 104 frame->size); 105 105 106 log_msg(L VL_DEBUG, "Decoding Ethernet frame src=%llx dest=%llx etype=%x",106 log_msg(LOG_DEFAULT, LVL_DEBUG, "Decoding Ethernet frame src=%llx dest=%llx etype=%x", 107 107 frame->src, frame->dest, frame->etype_len); 108 log_msg(L VL_DEBUG, "Decoded Ethernet frame payload (%zu bytes)", frame->size);108 log_msg(LOG_DEFAULT, LVL_DEBUG, "Decoded Ethernet frame payload (%zu bytes)", frame->size); 109 109 110 110 return EOK; … … 143 143 uint16_t fopcode; 144 144 145 log_msg(L VL_DEBUG, "arp_pdu_encode()");145 log_msg(LOG_DEFAULT, LVL_DEBUG, "arp_pdu_encode()"); 146 146 147 147 size = sizeof(arp_eth_packet_fmt_t); … … 183 183 arp_eth_packet_fmt_t *pfmt; 184 184 185 log_msg(L VL_DEBUG, "arp_pdu_decode()");185 log_msg(LOG_DEFAULT, LVL_DEBUG, "arp_pdu_decode()"); 186 186 187 187 if (size < sizeof(arp_eth_packet_fmt_t)) { 188 log_msg(L VL_DEBUG, "ARP PDU too short (%zu)", size);188 log_msg(LOG_DEFAULT, LVL_DEBUG, "ARP PDU too short (%zu)", size); 189 189 return EINVAL; 190 190 } … … 193 193 194 194 if (uint16_t_be2host(pfmt->hw_addr_space) != AHRD_ETHERNET) { 195 log_msg(L VL_DEBUG, "HW address space != %u (%" PRIu16 ")",195 log_msg(LOG_DEFAULT, LVL_DEBUG, "HW address space != %u (%" PRIu16 ")", 196 196 AHRD_ETHERNET, uint16_t_be2host(pfmt->hw_addr_space)); 197 197 return EINVAL; … … 199 199 200 200 if (uint16_t_be2host(pfmt->proto_addr_space) != 0x0800) { 201 log_msg(L VL_DEBUG, "Proto address space != %u (%" PRIu16 ")",201 log_msg(LOG_DEFAULT, LVL_DEBUG, "Proto address space != %u (%" PRIu16 ")", 202 202 ETYPE_IP, uint16_t_be2host(pfmt->proto_addr_space)); 203 203 return EINVAL; … … 205 205 206 206 if (pfmt->hw_addr_size != ETH_ADDR_SIZE) { 207 log_msg(L VL_DEBUG, "HW address size != %zu (%zu)",207 log_msg(LOG_DEFAULT, LVL_DEBUG, "HW address size != %zu (%zu)", 208 208 (size_t)ETH_ADDR_SIZE, (size_t)pfmt->hw_addr_size); 209 209 return EINVAL; … … 211 211 212 212 if (pfmt->proto_addr_size != IPV4_ADDR_SIZE) { 213 log_msg(L VL_DEBUG, "Proto address size != %zu (%zu)",213 log_msg(LOG_DEFAULT, LVL_DEBUG, "Proto address size != %zu (%zu)", 214 214 (size_t)IPV4_ADDR_SIZE, (size_t)pfmt->proto_addr_size); 215 215 return EINVAL; … … 220 220 case AOP_REPLY: packet->opcode = aop_reply; break; 221 221 default: 222 log_msg(L VL_DEBUG, "Invalid ARP opcode (%" PRIu16 ")",222 log_msg(LOG_DEFAULT, LVL_DEBUG, "Invalid ARP opcode (%" PRIu16 ")", 223 223 uint16_t_be2host(pfmt->opcode)); 224 224 return EINVAL; … … 231 231 packet->target_proto_addr.ipv4 = 232 232 uint32_t_be2host(pfmt->target_proto_addr); 233 log_msg(L VL_DEBUG, "packet->tpa = %x\n", pfmt->target_proto_addr);233 log_msg(LOG_DEFAULT, LVL_DEBUG, "packet->tpa = %x\n", pfmt->target_proto_addr); 234 234 235 235 return EOK; -
uspace/srv/net/inetsrv/addrobj.c
r920d0fc ra1a101d 59 59 60 60 if (addr == NULL) { 61 log_msg(L VL_ERROR, "Failed allocating address object. "61 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed allocating address object. " 62 62 "Out of memory."); 63 63 return NULL; … … 114 114 uint32_t mask; 115 115 116 log_msg(L VL_DEBUG, "inet_addrobj_find(%x)", (unsigned)addr->ipv4);116 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_addrobj_find(%x)", (unsigned)addr->ipv4); 117 117 118 118 fibril_mutex_lock(&addr_list_lock); … … 125 125 if ((naddr->naddr.ipv4 & mask) == (addr->ipv4 & mask)) { 126 126 fibril_mutex_unlock(&addr_list_lock); 127 log_msg(L VL_DEBUG, "inet_addrobj_find: found %p",127 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_addrobj_find: found %p", 128 128 naddr); 129 129 return naddr; … … 131 131 } 132 132 133 log_msg(L VL_DEBUG, "inet_addrobj_find: Not found");133 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_addrobj_find: Not found"); 134 134 fibril_mutex_unlock(&addr_list_lock); 135 135 … … 147 147 assert(fibril_mutex_is_locked(&addr_list_lock)); 148 148 149 log_msg(L VL_DEBUG, "inet_addrobj_find_by_name_locked('%s', '%s')",149 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_addrobj_find_by_name_locked('%s', '%s')", 150 150 name, ilink->svc_name); 151 151 … … 155 155 156 156 if (naddr->ilink == ilink && str_cmp(naddr->name, name) == 0) { 157 log_msg(L VL_DEBUG, "inet_addrobj_find_by_name_locked: found %p",157 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_addrobj_find_by_name_locked: found %p", 158 158 naddr); 159 159 return naddr; … … 161 161 } 162 162 163 log_msg(L VL_DEBUG, "inet_addrobj_find_by_name_locked: Not found");163 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_addrobj_find_by_name_locked: Not found"); 164 164 165 165 return NULL; … … 177 177 inet_addrobj_t *aobj; 178 178 179 log_msg(L VL_DEBUG, "inet_addrobj_find_by_name('%s', '%s')",179 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_addrobj_find_by_name('%s', '%s')", 180 180 name, ilink->svc_name); 181 181 … … 194 194 inet_addrobj_t *inet_addrobj_get_by_id(sysarg_t id) 195 195 { 196 log_msg(L VL_DEBUG, "inet_addrobj_get_by_id(%zu)", (size_t)id);196 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_addrobj_get_by_id(%zu)", (size_t)id); 197 197 198 198 fibril_mutex_lock(&addr_list_lock); -
uspace/srv/net/inetsrv/icmp.c
r920d0fc ra1a101d 57 57 uint8_t type; 58 58 59 log_msg(L VL_DEBUG, "icmp_recv()");59 log_msg(LOG_DEFAULT, LVL_DEBUG, "icmp_recv()"); 60 60 61 61 if (dgram->size < 1) … … 84 84 int rc; 85 85 86 log_msg(L VL_DEBUG, "icmp_recv_echo_request()");86 log_msg(LOG_DEFAULT, LVL_DEBUG, "icmp_recv_echo_request()"); 87 87 88 88 if (dgram->size < sizeof(icmp_echo_t)) … … 124 124 uint16_t ident; 125 125 126 log_msg(L VL_DEBUG, "icmp_recv_echo_reply()");126 log_msg(LOG_DEFAULT, LVL_DEBUG, "icmp_recv_echo_reply()"); 127 127 128 128 if (dgram->size < sizeof(icmp_echo_t)) -
uspace/srv/net/inetsrv/inet_link.c
r920d0fc ra1a101d 64 64 int rc; 65 65 66 log_msg(L VL_DEBUG, "inet_iplink_recv()");66 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_iplink_recv()"); 67 67 rc = inet_pdu_decode(sdu->data, sdu->size, &packet); 68 68 if (rc != EOK) { 69 log_msg(L VL_DEBUG, "failed decoding PDU");69 log_msg(LOG_DEFAULT, LVL_DEBUG, "failed decoding PDU"); 70 70 return rc; 71 71 } 72 72 73 log_msg(L VL_DEBUG, "call inet_recv_packet()");73 log_msg(LOG_DEFAULT, LVL_DEBUG, "call inet_recv_packet()"); 74 74 rc = inet_recv_packet(&packet); 75 log_msg(L VL_DEBUG, "call inet_recv_packet -> %d", rc);75 log_msg(LOG_DEFAULT, LVL_DEBUG, "call inet_recv_packet -> %d", rc); 76 76 free(packet.data); 77 77 … … 91 91 rc = loc_category_get_id("iplink", &iplink_cat, IPC_FLAG_BLOCKING); 92 92 if (rc != EOK) { 93 log_msg(L VL_ERROR, "Failed resolving category 'iplink'.");93 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed resolving category 'iplink'."); 94 94 fibril_mutex_unlock(&inet_discovery_lock); 95 95 return ENOENT; … … 98 98 rc = loc_category_get_svcs(iplink_cat, &svcs, &count); 99 99 if (rc != EOK) { 100 log_msg(L VL_ERROR, "Failed getting list of IP links.");100 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed getting list of IP links."); 101 101 fibril_mutex_unlock(&inet_discovery_lock); 102 102 return EIO; … … 116 116 117 117 if (!already_known) { 118 log_msg(L VL_DEBUG, "Found IP link '%lu'",118 log_msg(LOG_DEFAULT, LVL_DEBUG, "Found IP link '%lu'", 119 119 (unsigned long) svcs[i]); 120 120 rc = inet_link_open(svcs[i]); 121 121 if (rc != EOK) 122 log_msg(L VL_ERROR, "Could not open IP link.");122 log_msg(LOG_DEFAULT, LVL_ERROR, "Could not open IP link."); 123 123 } 124 124 } … … 133 133 134 134 if (ilink == NULL) { 135 log_msg(L VL_ERROR, "Failed allocating link structure. "135 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed allocating link structure. " 136 136 "Out of memory."); 137 137 return NULL; … … 156 156 int rc; 157 157 158 log_msg(L VL_DEBUG, "inet_link_open()");158 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_link_open()"); 159 159 ilink = inet_link_new(); 160 160 if (ilink == NULL) … … 166 166 rc = loc_service_get_name(sid, &ilink->svc_name); 167 167 if (rc != EOK) { 168 log_msg(L VL_ERROR, "Failed getting service name.");168 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed getting service name."); 169 169 goto error; 170 170 } … … 172 172 ilink->sess = loc_service_connect(EXCHANGE_SERIALIZE, sid, 0); 173 173 if (ilink->sess == NULL) { 174 log_msg(L VL_ERROR, "Failed connecting '%s'", ilink->svc_name);174 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed connecting '%s'", ilink->svc_name); 175 175 goto error; 176 176 } … … 178 178 rc = iplink_open(ilink->sess, &inet_iplink_ev_ops, &ilink->iplink); 179 179 if (rc != EOK) { 180 log_msg(L VL_ERROR, "Failed opening IP link '%s'",180 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed opening IP link '%s'", 181 181 ilink->svc_name); 182 182 goto error; … … 185 185 rc = iplink_get_mtu(ilink->iplink, &ilink->def_mtu); 186 186 if (rc != EOK) { 187 log_msg(L VL_ERROR, "Failed determinning MTU of link '%s'",187 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed determinning MTU of link '%s'", 188 188 ilink->svc_name); 189 189 goto error; 190 190 } 191 191 192 log_msg(L VL_DEBUG, "Opened IP link '%s'", ilink->svc_name);192 log_msg(LOG_DEFAULT, LVL_DEBUG, "Opened IP link '%s'", ilink->svc_name); 193 193 list_append(&ilink->link_list, &inet_link_list); 194 194 … … 209 209 rc = inet_addrobj_add(addr); 210 210 if (rc != EOK) { 211 log_msg(L VL_ERROR, "Failed setting IP address on internet link.");211 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed setting IP address on internet link."); 212 212 inet_addrobj_delete(addr); 213 213 /* XXX Roll back */ … … 218 218 rc = iplink_addr_add(ilink->iplink, &iaddr); 219 219 if (rc != EOK) { 220 log_msg(L VL_ERROR, "Failed setting IP address on internet link.");220 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed setting IP address on internet link."); 221 221 inet_addrobj_remove(addr); 222 222 inet_addrobj_delete(addr); … … 245 245 rc = loc_register_cat_change_cb(inet_link_cat_change_cb); 246 246 if (rc != EOK) { 247 log_msg(L VL_ERROR, "Failed registering callback for IP link "247 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering callback for IP link " 248 248 "discovery (%d).", rc); 249 249 return rc; -
uspace/srv/net/inetsrv/inetcfg.c
r920d0fc ra1a101d 61 61 ilink = inet_link_get_by_id(link_id); 62 62 if (ilink == NULL) { 63 log_msg(L VL_DEBUG, "Link %lu not found.",63 log_msg(LOG_DEFAULT, LVL_DEBUG, "Link %lu not found.", 64 64 (unsigned long) link_id); 65 65 return ENOENT; … … 77 77 rc = inet_addrobj_add(addr); 78 78 if (rc != EOK) { 79 log_msg(L VL_DEBUG, "Duplicate address name '%s'.", addr->name);79 log_msg(LOG_DEFAULT, LVL_DEBUG, "Duplicate address name '%s'.", addr->name); 80 80 inet_addrobj_delete(addr); 81 81 return rc; … … 85 85 rc = iplink_addr_add(ilink->iplink, &iaddr); 86 86 if (rc != EOK) { 87 log_msg(L VL_ERROR, "Failed setting IP address on internet link.");87 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed setting IP address on internet link."); 88 88 inet_addrobj_remove(addr); 89 89 inet_addrobj_delete(addr); … … 130 130 ilink = inet_link_get_by_id(link_id); 131 131 if (ilink == NULL) { 132 log_msg(L VL_DEBUG, "Link %zu not found.", (size_t) link_id);132 log_msg(LOG_DEFAULT, LVL_DEBUG, "Link %zu not found.", (size_t) link_id); 133 133 return ENOENT; 134 134 } … … 136 136 addr = inet_addrobj_find_by_name(name, ilink); 137 137 if (addr == NULL) { 138 log_msg(L VL_DEBUG, "Address '%s' not found.", name);138 log_msg(LOG_DEFAULT, LVL_DEBUG, "Address '%s' not found.", name); 139 139 return ENOENT; 140 140 } … … 228 228 sroute = inet_sroute_find_by_name(name); 229 229 if (sroute == NULL) { 230 log_msg(L VL_DEBUG, "Static route '%s' not found.", name);230 log_msg(LOG_DEFAULT, LVL_DEBUG, "Static route '%s' not found.", name); 231 231 return ENOENT; 232 232 } … … 245 245 int rc; 246 246 247 log_msg(L VL_DEBUG, "inetcfg_addr_create_static_srv()");247 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_addr_create_static_srv()"); 248 248 249 249 rc = async_data_write_accept((void **) &name, true, 0, LOC_NAME_MAXLEN, … … 269 269 int rc; 270 270 271 log_msg(L VL_DEBUG, "inetcfg_addr_delete_srv()");271 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_addr_delete_srv()"); 272 272 273 273 addr_id = IPC_GET_ARG1(*call); … … 287 287 288 288 addr_id = IPC_GET_ARG1(*call); 289 log_msg(L VL_DEBUG, "inetcfg_addr_get_srv()");289 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_addr_get_srv()"); 290 290 291 291 ainfo.naddr.ipv4 = 0; … … 321 321 int rc; 322 322 323 log_msg(L VL_DEBUG, "inetcfg_addr_get_id_srv()");323 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_addr_get_id_srv()"); 324 324 325 325 link_id = IPC_GET_ARG1(*call); … … 348 348 int rc; 349 349 350 log_msg(L VL_DEBUG, "inetcfg_get_addr_list_srv()");350 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_get_addr_list_srv()"); 351 351 352 352 if (!async_data_read_receive(&rcallid, &max_size)) { … … 382 382 int rc; 383 383 384 log_msg(L VL_DEBUG, "inetcfg_get_link_list_srv()");384 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_get_link_list_srv()"); 385 385 386 386 if (!async_data_read_receive(&rcallid, &max_size)) { … … 415 415 int rc; 416 416 417 log_msg(L VL_DEBUG, "inetcfg_get_sroute_list_srv()");417 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_get_sroute_list_srv()"); 418 418 419 419 if (!async_data_read_receive(&rcallid, &max_size)) { … … 449 449 450 450 link_id = IPC_GET_ARG1(*call); 451 log_msg(L VL_DEBUG, "inetcfg_link_get_srv()");451 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_link_get_srv()"); 452 452 453 453 linfo.name = NULL; … … 482 482 int rc; 483 483 484 log_msg(L VL_DEBUG, "inetcfg_sroute_create_srv()");484 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_sroute_create_srv()"); 485 485 486 486 rc = async_data_write_accept((void **) &name, true, 0, LOC_NAME_MAXLEN, … … 506 506 int rc; 507 507 508 log_msg(L VL_DEBUG, "inetcfg_sroute_delete_srv()");508 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_sroute_delete_srv()"); 509 509 510 510 sroute_id = IPC_GET_ARG1(*call); … … 524 524 525 525 sroute_id = IPC_GET_ARG1(*call); 526 log_msg(L VL_DEBUG, "inetcfg_sroute_get_srv()");526 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_sroute_get_srv()"); 527 527 528 528 srinfo.dest.ipv4 = 0; … … 557 557 int rc; 558 558 559 log_msg(L VL_DEBUG, "inetcfg_sroute_get_id_srv()");559 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_sroute_get_id_srv()"); 560 560 561 561 rc = async_data_write_accept((void **) &name, true, 0, LOC_NAME_MAXLEN, … … 574 574 void inet_cfg_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg) 575 575 { 576 log_msg(L VL_DEBUG, "inet_cfg_conn()");576 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_cfg_conn()"); 577 577 578 578 /* Accept the connection */ -
uspace/srv/net/inetsrv/inetping.c
r920d0fc ra1a101d 76 76 client = inetping_client_find(ident); 77 77 if (client == NULL) { 78 log_msg(L VL_DEBUG, "Unknown ICMP ident. Dropping.");78 log_msg(LOG_DEFAULT, LVL_DEBUG, "Unknown ICMP ident. Dropping."); 79 79 return ENOENT; 80 80 } … … 107 107 int rc; 108 108 109 log_msg(L VL_DEBUG, "inetping_send_srv()");109 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetping_send_srv()"); 110 110 111 111 rc = async_data_write_accept((void **) &sdu.data, false, 0, 0, 0, … … 133 133 int rc; 134 134 135 log_msg(L VL_DEBUG, "inetping_get_srcaddr_srv()");135 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetping_get_srcaddr_srv()"); 136 136 137 137 remote.ipv4 = IPC_GET_ARG1(*call); … … 192 192 int rc; 193 193 194 log_msg(L VL_DEBUG, "inetping_conn()");194 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetping_conn()"); 195 195 196 196 /* Accept the connection */ -
uspace/srv/net/inetsrv/inetsrv.c
r920d0fc ra1a101d 66 66 static int inet_init(void) 67 67 { 68 log_msg(L VL_DEBUG, "inet_init()");68 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_init()"); 69 69 70 70 async_set_client_connection(inet_client_conn); … … 72 72 int rc = loc_server_register(NAME); 73 73 if (rc != EOK) { 74 log_msg(L VL_ERROR, "Failed registering server (%d).", rc);74 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering server (%d).", rc); 75 75 return EEXIST; 76 76 } … … 80 80 INET_PORT_DEFAULT); 81 81 if (rc != EOK) { 82 log_msg(L VL_ERROR, "Failed registering service (%d).", rc);82 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service (%d).", rc); 83 83 return EEXIST; 84 84 } … … 87 87 INET_PORT_CFG); 88 88 if (rc != EOK) { 89 log_msg(L VL_ERROR, "Failed registering service (%d).", rc);89 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service (%d).", rc); 90 90 return EEXIST; 91 91 } … … 94 94 INET_PORT_PING); 95 95 if (rc != EOK) { 96 log_msg(L VL_ERROR, "Failed registering service (%d).", rc);96 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service (%d).", rc); 97 97 return EEXIST; 98 98 } … … 108 108 ipc_call_t *call) 109 109 { 110 log_msg(L VL_DEBUG, "inet_callback_create_srv()");110 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_callback_create_srv()"); 111 111 112 112 async_sess_t *sess = async_callback_receive(EXCHANGE_SERIALIZE); … … 143 143 144 144 if (dir->aobj == NULL) { 145 log_msg(L VL_DEBUG, "inet_send: No route to destination.");145 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_send: No route to destination."); 146 146 return ENOENT; 147 147 } … … 194 194 int rc; 195 195 196 log_msg(L VL_DEBUG, "inet_get_srcaddr_srv()");196 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_get_srcaddr_srv()"); 197 197 198 198 remote.ipv4 = IPC_GET_ARG1(*call); … … 212 212 int rc; 213 213 214 log_msg(L VL_DEBUG, "inet_send_srv()");214 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_send_srv()"); 215 215 216 216 dgram.src.ipv4 = IPC_GET_ARG1(*call); … … 238 238 239 239 proto = IPC_GET_ARG1(*call); 240 log_msg(L VL_DEBUG, "inet_set_proto_srv(%lu)", (unsigned long) proto);240 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_set_proto_srv(%lu)", (unsigned long) proto); 241 241 242 242 if (proto > UINT8_MAX) { … … 272 272 inet_client_t client; 273 273 274 log_msg(L VL_DEBUG, "inet_default_conn()");274 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_default_conn()"); 275 275 276 276 /* Accept the connection */ … … 378 378 inet_client_t *client; 379 379 380 log_msg(L VL_DEBUG, "inet_recv_dgram_local()");380 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_recv_dgram_local()"); 381 381 382 382 /* ICMP messages are handled internally */ … … 386 386 client = inet_client_find(proto); 387 387 if (client == NULL) { 388 log_msg(L VL_DEBUG, "No client found for protocol 0x%" PRIx8,388 log_msg(LOG_DEFAULT, LVL_DEBUG, "No client found for protocol 0x%" PRIx8, 389 389 proto); 390 390 return ENOENT; -
uspace/srv/net/inetsrv/pdu.c
r920d0fc ra1a101d 204 204 uint16_t foff; 205 205 206 log_msg(L VL_DEBUG, "inet_pdu_decode()");206 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_pdu_decode()"); 207 207 208 208 if (size < sizeof(ip_header_t)) { 209 log_msg(L VL_DEBUG, "PDU too short (%zu)", size);209 log_msg(LOG_DEFAULT, LVL_DEBUG, "PDU too short (%zu)", size); 210 210 return EINVAL; 211 211 } … … 216 216 hdr->ver_ihl); 217 217 if (version != 4) { 218 log_msg(L VL_DEBUG, "Version (%d) != 4", version);218 log_msg(LOG_DEFAULT, LVL_DEBUG, "Version (%d) != 4", version); 219 219 return EINVAL; 220 220 } … … 222 222 tot_len = uint16_t_be2host(hdr->tot_len); 223 223 if (tot_len < sizeof(ip_header_t)) { 224 log_msg(L VL_DEBUG, "Total Length too small (%zu)", tot_len);224 log_msg(LOG_DEFAULT, LVL_DEBUG, "Total Length too small (%zu)", tot_len); 225 225 return EINVAL; 226 226 } 227 227 228 228 if (tot_len > size) { 229 log_msg(L VL_DEBUG, "Total Length = %zu > PDU size = %zu",229 log_msg(LOG_DEFAULT, LVL_DEBUG, "Total Length = %zu > PDU size = %zu", 230 230 tot_len, size); 231 231 return EINVAL; … … 256 256 packet->data = calloc(packet->size, 1); 257 257 if (packet->data == NULL) { 258 log_msg(L VL_WARN, "Out of memory.");258 log_msg(LOG_DEFAULT, LVL_WARN, "Out of memory."); 259 259 return ENOMEM; 260 260 } -
uspace/srv/net/inetsrv/reass.c
r920d0fc ra1a101d 86 86 int rc; 87 87 88 log_msg(L VL_DEBUG, "inet_reass_queue_packet()");88 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_reass_queue_packet()"); 89 89 90 90 fibril_mutex_lock(&reass_dgram_map_lock); … … 95 95 /* Only happens when we are out of memory */ 96 96 fibril_mutex_unlock(&reass_dgram_map_lock); 97 log_msg(L VL_DEBUG, "Allocation failed, packet dropped.");97 log_msg(LOG_DEFAULT, LVL_DEBUG, "Allocation failed, packet dropped."); 98 98 return ENOMEM; 99 99 } -
uspace/srv/net/inetsrv/sroute.c
r920d0fc ra1a101d 57 57 58 58 if (sroute == NULL) { 59 log_msg(L VL_ERROR, "Failed allocating static route object. "59 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed allocating static route object. " 60 60 "Out of memory."); 61 61 return NULL; … … 100 100 inet_sroute_t *best; 101 101 102 log_msg(L VL_DEBUG, "inet_sroute_find(%x)", (unsigned)addr->ipv4);102 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_sroute_find(%x)", (unsigned)addr->ipv4); 103 103 104 104 fibril_mutex_lock(&sroute_list_lock); … … 117 117 if ((sroute->dest.ipv4 & mask) == (addr->ipv4 & mask)) { 118 118 fibril_mutex_unlock(&sroute_list_lock); 119 log_msg(L VL_DEBUG, "inet_sroute_find: found %p",119 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_sroute_find: found %p", 120 120 sroute); 121 121 return sroute; … … 123 123 } 124 124 125 log_msg(L VL_DEBUG, "inet_sroute_find: Not found");125 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_sroute_find: Not found"); 126 126 fibril_mutex_unlock(&sroute_list_lock); 127 127 … … 136 136 inet_sroute_t *inet_sroute_find_by_name(const char *name) 137 137 { 138 log_msg(L VL_DEBUG, "inet_sroute_find_by_name('%s')",138 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_sroute_find_by_name('%s')", 139 139 name); 140 140 … … 147 147 if (str_cmp(sroute->name, name) == 0) { 148 148 fibril_mutex_unlock(&sroute_list_lock); 149 log_msg(L VL_DEBUG, "inet_sroute_find_by_name: found %p",149 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_sroute_find_by_name: found %p", 150 150 sroute); 151 151 return sroute; … … 153 153 } 154 154 155 log_msg(L VL_DEBUG, "inet_sroute_find_by_name: Not found");155 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_sroute_find_by_name: Not found"); 156 156 fibril_mutex_unlock(&sroute_list_lock); 157 157 … … 166 166 inet_sroute_t *inet_sroute_get_by_id(sysarg_t id) 167 167 { 168 log_msg(L VL_DEBUG, "inet_sroute_get_by_id(%zu)", (size_t)id);168 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_sroute_get_by_id(%zu)", (size_t)id); 169 169 170 170 fibril_mutex_lock(&sroute_list_lock); -
uspace/srv/net/loopip/loopip.c
r920d0fc ra1a101d 75 75 { 76 76 while (true) { 77 log_msg(L VL_DEBUG, "loopip_recv_fibril(): Wait for one item");77 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_recv_fibril(): Wait for one item"); 78 78 link_t *link = prodcons_consume(&loopip_rcv_queue); 79 79 rqueue_entry_t *rqe = list_get_instance(link, rqueue_entry_t, link); … … 96 96 rc = loc_server_register(NAME); 97 97 if (rc != EOK) { 98 log_msg(L VL_ERROR, "Failed registering server.");98 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering server."); 99 99 return rc; 100 100 } … … 108 108 rc = loc_service_register(svc_name, &sid); 109 109 if (rc != EOK) { 110 log_msg(L VL_ERROR, "Failed registering service %s.", svc_name);110 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service %s.", svc_name); 111 111 return rc; 112 112 } … … 114 114 rc = loc_category_get_id("iplink", &iplink_cat, IPC_FLAG_BLOCKING); 115 115 if (rc != EOK) { 116 log_msg(L VL_ERROR, "Failed resolving category 'iplink'.");116 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed resolving category 'iplink'."); 117 117 return rc; 118 118 } … … 120 120 rc = loc_service_add_to_cat(sid, iplink_cat); 121 121 if (rc != EOK) { 122 log_msg(L VL_ERROR, "Failed adding %s to category.", svc_name);122 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed adding %s to category.", svc_name); 123 123 return rc; 124 124 } … … 135 135 static void loopip_client_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg) 136 136 { 137 log_msg(L VL_DEBUG, "loopip_client_conn()");137 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_client_conn()"); 138 138 iplink_conn(iid, icall, &loopip_iplink); 139 139 } … … 141 141 static int loopip_open(iplink_srv_t *srv) 142 142 { 143 log_msg(L VL_DEBUG, "loopip_open()");143 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_open()"); 144 144 return EOK; 145 145 } … … 147 147 static int loopip_close(iplink_srv_t *srv) 148 148 { 149 log_msg(L VL_DEBUG, "loopip_close()");149 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_close()"); 150 150 return EOK; 151 151 } … … 155 155 rqueue_entry_t *rqe; 156 156 157 log_msg(L VL_DEBUG, "loopip_send()");157 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_send()"); 158 158 159 159 rqe = calloc(1, sizeof(rqueue_entry_t)); … … 184 184 static int loopip_get_mtu(iplink_srv_t *srv, size_t *mtu) 185 185 { 186 log_msg(L VL_DEBUG, "loopip_get_mtu()");186 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_get_mtu()"); 187 187 *mtu = 1500; 188 188 return EOK; … … 191 191 static int loopip_addr_add(iplink_srv_t *srv, iplink_srv_addr_t *addr) 192 192 { 193 log_msg(L VL_DEBUG, "loopip_addr_add(0x%" PRIx32 ")", addr->ipv4);193 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_addr_add(0x%" PRIx32 ")", addr->ipv4); 194 194 return EOK; 195 195 } … … 197 197 static int loopip_addr_remove(iplink_srv_t *srv, iplink_srv_addr_t *addr) 198 198 { 199 log_msg(L VL_DEBUG, "loopip_addr_remove(0x%" PRIx32 ")", addr->ipv4);199 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_addr_remove(0x%" PRIx32 ")", addr->ipv4); 200 200 return EOK; 201 201 } -
uspace/srv/net/tcp/conn.c
r920d0fc ra1a101d 164 164 static void tcp_conn_free(tcp_conn_t *conn) 165 165 { 166 log_msg(L VL_DEBUG, "%s: tcp_conn_free(%p)", conn->name, conn);166 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_conn_free(%p)", conn->name, conn); 167 167 tcp_tqueue_fini(&conn->retransmit); 168 168 … … 184 184 void tcp_conn_addref(tcp_conn_t *conn) 185 185 { 186 log_msg(L VL_DEBUG2, "%s: tcp_conn_addref(%p)", conn->name, conn);186 log_msg(LOG_DEFAULT, LVL_DEBUG2, "%s: tcp_conn_addref(%p)", conn->name, conn); 187 187 atomic_inc(&conn->refcnt); 188 188 } … … 196 196 void tcp_conn_delref(tcp_conn_t *conn) 197 197 { 198 log_msg(L VL_DEBUG2, "%s: tcp_conn_delref(%p)", conn->name, conn);198 log_msg(LOG_DEFAULT, LVL_DEBUG2, "%s: tcp_conn_delref(%p)", conn->name, conn); 199 199 200 200 if (atomic_predec(&conn->refcnt) == 0) … … 211 211 void tcp_conn_delete(tcp_conn_t *conn) 212 212 { 213 log_msg(L VL_DEBUG, "%s: tcp_conn_delete(%p)", conn->name, conn);213 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_conn_delete(%p)", conn->name, conn); 214 214 215 215 assert(conn->deleted == false); … … 245 245 tcp_cstate_t old_state; 246 246 247 log_msg(L VL_DEBUG, "tcp_conn_state_set(%p)", conn);247 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_state_set(%p)", conn); 248 248 249 249 old_state = conn->cstate; … … 253 253 /* Run user callback function */ 254 254 if (conn->cstate_cb != NULL) { 255 log_msg(L VL_DEBUG, "tcp_conn_state_set() - run user CB");255 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_state_set() - run user CB"); 256 256 conn->cstate_cb(conn, conn->cstate_cb_arg); 257 257 } else { 258 log_msg(L VL_DEBUG, "tcp_conn_state_set() - no user CB");258 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_state_set() - no user CB"); 259 259 } 260 260 … … 293 293 case st_syn_received: 294 294 case st_established: 295 log_msg(L VL_DEBUG, "%s: FIN sent -> Fin-Wait-1", conn->name);295 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: FIN sent -> Fin-Wait-1", conn->name); 296 296 tcp_conn_state_set(conn, st_fin_wait_1); 297 297 break; 298 298 case st_close_wait: 299 log_msg(L VL_DEBUG, "%s: FIN sent -> Last-Ack", conn->name);299 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: FIN sent -> Last-Ack", conn->name); 300 300 tcp_conn_state_set(conn, st_last_ack); 301 301 break; 302 302 default: 303 log_msg(L VL_ERROR, "%s: Connection state %d", conn->name,303 log_msg(LOG_DEFAULT, LVL_ERROR, "%s: Connection state %d", conn->name, 304 304 conn->cstate); 305 305 assert(false); … … 312 312 static bool tcp_socket_match(tcp_sock_t *sock, tcp_sock_t *patt) 313 313 { 314 log_msg(L VL_DEBUG2, "tcp_socket_match(sock=(%x,%u), pat=(%x,%u))",314 log_msg(LOG_DEFAULT, LVL_DEBUG2, "tcp_socket_match(sock=(%x,%u), pat=(%x,%u))", 315 315 sock->addr.ipv4, sock->port, patt->addr.ipv4, patt->port); 316 316 … … 323 323 return false; 324 324 325 log_msg(L VL_DEBUG2, " -> match");325 log_msg(LOG_DEFAULT, LVL_DEBUG2, " -> match"); 326 326 327 327 return true; … … 331 331 static bool tcp_sockpair_match(tcp_sockpair_t *sp, tcp_sockpair_t *pattern) 332 332 { 333 log_msg(L VL_DEBUG2, "tcp_sockpair_match(%p, %p)", sp, pattern);333 log_msg(LOG_DEFAULT, LVL_DEBUG2, "tcp_sockpair_match(%p, %p)", sp, pattern); 334 334 335 335 if (!tcp_socket_match(&sp->local, &pattern->local)) … … 353 353 tcp_conn_t *tcp_conn_find_ref(tcp_sockpair_t *sp) 354 354 { 355 log_msg(L VL_DEBUG, "tcp_conn_find_ref(%p)", sp);355 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_find_ref(%p)", sp); 356 356 357 357 fibril_mutex_lock(&conn_list_lock); … … 360 360 tcp_conn_t *conn = list_get_instance(link, tcp_conn_t, link); 361 361 tcp_sockpair_t *csp = &conn->ident; 362 log_msg(L VL_DEBUG2, "compare with conn (f:(%x,%u), l:(%x,%u))",362 log_msg(LOG_DEFAULT, LVL_DEBUG2, "compare with conn (f:(%x,%u), l:(%x,%u))", 363 363 csp->foreign.addr.ipv4, csp->foreign.port, 364 364 csp->local.addr.ipv4, csp->local.port); … … 380 380 static void tcp_conn_reset(tcp_conn_t *conn) 381 381 { 382 log_msg(L VL_DEBUG, "%s: tcp_conn_reset()", conn->name);382 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_conn_reset()", conn->name); 383 383 tcp_conn_state_set(conn, st_closed); 384 384 conn->reset = true; … … 398 398 { 399 399 /* TODO */ 400 log_msg(L VL_DEBUG, "%s: tcp_reset_signal()", conn->name);400 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_reset_signal()", conn->name); 401 401 } 402 402 … … 422 422 return true; 423 423 case st_closed: 424 log_msg(L VL_WARN, "state=%d", (int) conn->cstate);424 log_msg(LOG_DEFAULT, LVL_WARN, "state=%d", (int) conn->cstate); 425 425 assert(false); 426 426 } … … 436 436 static void tcp_conn_sa_listen(tcp_conn_t *conn, tcp_segment_t *seg) 437 437 { 438 log_msg(L VL_DEBUG, "tcp_conn_sa_listen(%p, %p)", conn, seg);438 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_sa_listen(%p, %p)", conn, seg); 439 439 440 440 if ((seg->ctrl & CTL_RST) != 0) { 441 log_msg(L VL_DEBUG, "Ignoring incoming RST.");441 log_msg(LOG_DEFAULT, LVL_DEBUG, "Ignoring incoming RST."); 442 442 return; 443 443 } 444 444 445 445 if ((seg->ctrl & CTL_ACK) != 0) { 446 log_msg(L VL_DEBUG, "Incoming ACK, send acceptable RST.");446 log_msg(LOG_DEFAULT, LVL_DEBUG, "Incoming ACK, send acceptable RST."); 447 447 tcp_reply_rst(&conn->ident, seg); 448 448 return; … … 450 450 451 451 if ((seg->ctrl & CTL_SYN) == 0) { 452 log_msg(L VL_DEBUG, "SYN not present. Ignoring segment.");453 return; 454 } 455 456 log_msg(L VL_DEBUG, "Got SYN, sending SYN, ACK.");452 log_msg(LOG_DEFAULT, LVL_DEBUG, "SYN not present. Ignoring segment."); 453 return; 454 } 455 456 log_msg(LOG_DEFAULT, LVL_DEBUG, "Got SYN, sending SYN, ACK."); 457 457 458 458 conn->rcv_nxt = seg->seq + 1; … … 460 460 461 461 462 log_msg(L VL_DEBUG, "rcv_nxt=%u", conn->rcv_nxt);462 log_msg(LOG_DEFAULT, LVL_DEBUG, "rcv_nxt=%u", conn->rcv_nxt); 463 463 464 464 if (seg->len > 1) 465 log_msg(L VL_WARN, "SYN combined with data, ignoring data.");465 log_msg(LOG_DEFAULT, LVL_WARN, "SYN combined with data, ignoring data."); 466 466 467 467 /* XXX select ISS */ … … 493 493 static void tcp_conn_sa_syn_sent(tcp_conn_t *conn, tcp_segment_t *seg) 494 494 { 495 log_msg(L VL_DEBUG, "tcp_conn_sa_syn_sent(%p, %p)", conn, seg);495 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_sa_syn_sent(%p, %p)", conn, seg); 496 496 497 497 if ((seg->ctrl & CTL_ACK) != 0) { 498 log_msg(L VL_DEBUG, "snd_una=%u, seg.ack=%u, snd_nxt=%u",498 log_msg(LOG_DEFAULT, LVL_DEBUG, "snd_una=%u, seg.ack=%u, snd_nxt=%u", 499 499 conn->snd_una, seg->ack, conn->snd_nxt); 500 500 if (!seq_no_ack_acceptable(conn, seg->ack)) { 501 501 if ((seg->ctrl & CTL_RST) == 0) { 502 log_msg(L VL_WARN, "ACK not acceptable, send RST");502 log_msg(LOG_DEFAULT, LVL_WARN, "ACK not acceptable, send RST"); 503 503 tcp_reply_rst(&conn->ident, seg); 504 504 } else { 505 log_msg(L VL_WARN, "RST,ACK not acceptable, drop");505 log_msg(LOG_DEFAULT, LVL_WARN, "RST,ACK not acceptable, drop"); 506 506 } 507 507 return; … … 512 512 /* If we get here, we have either an acceptable ACK or no ACK */ 513 513 if ((seg->ctrl & CTL_ACK) != 0) { 514 log_msg(L VL_DEBUG, "%s: Connection reset. -> Closed",514 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: Connection reset. -> Closed", 515 515 conn->name); 516 516 /* Reset connection */ … … 518 518 return; 519 519 } else { 520 log_msg(L VL_DEBUG, "%s: RST without ACK, drop",520 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: RST without ACK, drop", 521 521 conn->name); 522 522 return; … … 527 527 528 528 if ((seg->ctrl & CTL_SYN) == 0) { 529 log_msg(L VL_DEBUG, "No SYN bit, ignoring segment.");529 log_msg(LOG_DEFAULT, LVL_DEBUG, "No SYN bit, ignoring segment."); 530 530 return; 531 531 } … … 544 544 } 545 545 546 log_msg(L VL_DEBUG, "Sent SYN, got SYN.");546 log_msg(LOG_DEFAULT, LVL_DEBUG, "Sent SYN, got SYN."); 547 547 548 548 /* … … 551 551 * will always be accepted as new window setting. 552 552 */ 553 log_msg(L VL_DEBUG, "SND.WND := %" PRIu32 ", SND.WL1 := %" PRIu32 ", "553 log_msg(LOG_DEFAULT, LVL_DEBUG, "SND.WND := %" PRIu32 ", SND.WL1 := %" PRIu32 ", " 554 554 "SND.WL2 = %" PRIu32, seg->wnd, seg->seq, seg->seq); 555 555 conn->snd_wnd = seg->wnd; … … 558 558 559 559 if (seq_no_syn_acked(conn)) { 560 log_msg(L VL_DEBUG, "%s: syn acked -> Established", conn->name);560 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: syn acked -> Established", conn->name); 561 561 tcp_conn_state_set(conn, st_established); 562 562 tcp_tqueue_ctrl_seg(conn, CTL_ACK /* XXX */); 563 563 } else { 564 log_msg(L VL_DEBUG, "%s: syn not acked -> Syn-Received",564 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: syn not acked -> Syn-Received", 565 565 conn->name); 566 566 tcp_conn_state_set(conn, st_syn_received); … … 582 582 tcp_segment_t *pseg; 583 583 584 log_msg(L VL_DEBUG, "tcp_conn_sa_seq(%p, %p)", conn, seg);584 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_sa_seq(%p, %p)", conn, seg); 585 585 586 586 /* Discard unacceptable segments ("old duplicates") */ 587 587 if (!seq_no_segment_acceptable(conn, seg)) { 588 log_msg(L VL_DEBUG, "Replying ACK to unacceptable segment.");588 log_msg(LOG_DEFAULT, LVL_DEBUG, "Replying ACK to unacceptable segment."); 589 589 tcp_tqueue_ctrl_seg(conn, CTL_ACK); 590 590 tcp_segment_delete(seg); … … 682 682 assert(seq_no_in_rcv_wnd(conn, seg->seq)); 683 683 684 log_msg(L VL_WARN, "SYN is in receive window, should send reset. XXX");684 log_msg(LOG_DEFAULT, LVL_WARN, "SYN is in receive window, should send reset. XXX"); 685 685 686 686 /* … … 705 705 if (!seq_no_ack_acceptable(conn, seg->ack)) { 706 706 /* ACK is not acceptable, send RST. */ 707 log_msg(L VL_WARN, "Segment ACK not acceptable, sending RST.");707 log_msg(LOG_DEFAULT, LVL_WARN, "Segment ACK not acceptable, sending RST."); 708 708 tcp_reply_rst(&conn->ident, seg); 709 709 tcp_segment_delete(seg); … … 711 711 } 712 712 713 log_msg(L VL_DEBUG, "%s: SYN ACKed -> Established", conn->name);713 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: SYN ACKed -> Established", conn->name); 714 714 715 715 tcp_conn_state_set(conn, st_established); … … 730 730 static cproc_t tcp_conn_seg_proc_ack_est(tcp_conn_t *conn, tcp_segment_t *seg) 731 731 { 732 log_msg(L VL_DEBUG, "tcp_conn_seg_proc_ack_est(%p, %p)", conn, seg);733 734 log_msg(L VL_DEBUG, "SEG.ACK=%u, SND.UNA=%u, SND.NXT=%u",732 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_seg_proc_ack_est(%p, %p)", conn, seg); 733 734 log_msg(LOG_DEFAULT, LVL_DEBUG, "SEG.ACK=%u, SND.UNA=%u, SND.NXT=%u", 735 735 (unsigned)seg->ack, (unsigned)conn->snd_una, 736 736 (unsigned)conn->snd_nxt); 737 737 738 738 if (!seq_no_ack_acceptable(conn, seg->ack)) { 739 log_msg(L VL_DEBUG, "ACK not acceptable.");739 log_msg(LOG_DEFAULT, LVL_DEBUG, "ACK not acceptable."); 740 740 if (!seq_no_ack_duplicate(conn, seg->ack)) { 741 log_msg(L VL_WARN, "Not acceptable, not duplicate. "741 log_msg(LOG_DEFAULT, LVL_WARN, "Not acceptable, not duplicate. " 742 742 "Send ACK and drop."); 743 743 /* Not acceptable, not duplicate. Send ACK and drop. */ … … 746 746 return cp_done; 747 747 } else { 748 log_msg(L VL_DEBUG, "Ignoring duplicate ACK.");748 log_msg(LOG_DEFAULT, LVL_DEBUG, "Ignoring duplicate ACK."); 749 749 } 750 750 } else { … … 758 758 conn->snd_wl2 = seg->ack; 759 759 760 log_msg(L VL_DEBUG, "Updating send window, SND.WND=%" PRIu32760 log_msg(LOG_DEFAULT, LVL_DEBUG, "Updating send window, SND.WND=%" PRIu32 761 761 ", SND.WL1=%" PRIu32 ", SND.WL2=%" PRIu32, 762 762 conn->snd_wnd, conn->snd_wl1, conn->snd_wl2); … … 785 785 786 786 if (conn->fin_is_acked) { 787 log_msg(L VL_DEBUG, "%s: FIN acked -> Fin-Wait-2", conn->name);787 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: FIN acked -> Fin-Wait-2", conn->name); 788 788 tcp_conn_state_set(conn, st_fin_wait_2); 789 789 } … … 850 850 851 851 if (conn->fin_is_acked) { 852 log_msg(L VL_DEBUG, "%s: FIN acked -> Closed", conn->name);852 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: FIN acked -> Closed", conn->name); 853 853 tcp_conn_remove(conn); 854 854 tcp_conn_state_set(conn, st_closed); … … 881 881 static cproc_t tcp_conn_seg_proc_ack(tcp_conn_t *conn, tcp_segment_t *seg) 882 882 { 883 log_msg(L VL_DEBUG, "%s: tcp_conn_seg_proc_ack(%p, %p)",883 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_conn_seg_proc_ack(%p, %p)", 884 884 conn->name, conn, seg); 885 885 886 886 if ((seg->ctrl & CTL_ACK) == 0) { 887 log_msg(L VL_WARN, "Segment has no ACK. Dropping.");887 log_msg(LOG_DEFAULT, LVL_WARN, "Segment has no ACK. Dropping."); 888 888 tcp_segment_delete(seg); 889 889 return cp_done; … … 940 940 size_t xfer_size; 941 941 942 log_msg(L VL_DEBUG, "%s: tcp_conn_seg_proc_text(%p, %p)",942 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_conn_seg_proc_text(%p, %p)", 943 943 conn->name, conn, seg); 944 944 … … 982 982 fibril_condvar_broadcast(&conn->rcv_buf_cv); 983 983 984 log_msg(L VL_DEBUG, "Received %zu bytes of data.", xfer_size);984 log_msg(LOG_DEFAULT, LVL_DEBUG, "Received %zu bytes of data.", xfer_size); 985 985 986 986 /* Advance RCV.NXT */ … … 998 998 tcp_conn_trim_seg_to_wnd(conn, seg); 999 999 } else { 1000 log_msg(L VL_DEBUG, "%s: Nothing left in segment, dropping "1000 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: Nothing left in segment, dropping " 1001 1001 "(xfer_size=%zu, SEG.LEN=%zu, seg->ctrl=%u)", 1002 1002 conn->name, xfer_size, seg->len, (unsigned)seg->ctrl); … … 1018 1018 static cproc_t tcp_conn_seg_proc_fin(tcp_conn_t *conn, tcp_segment_t *seg) 1019 1019 { 1020 log_msg(L VL_DEBUG, "%s: tcp_conn_seg_proc_fin(%p, %p)",1020 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_conn_seg_proc_fin(%p, %p)", 1021 1021 conn->name, conn, seg); 1022 log_msg(L VL_DEBUG, " seg->len=%zu, seg->ctl=%u", (size_t) seg->len,1022 log_msg(LOG_DEFAULT, LVL_DEBUG, " seg->len=%zu, seg->ctl=%u", (size_t) seg->len, 1023 1023 (unsigned) seg->ctrl); 1024 1024 1025 1025 /* Only process FIN if no text is left in segment. */ 1026 1026 if (tcp_segment_text_size(seg) == 0 && (seg->ctrl & CTL_FIN) != 0) { 1027 log_msg(L VL_DEBUG, " - FIN found in segment.");1027 log_msg(LOG_DEFAULT, LVL_DEBUG, " - FIN found in segment."); 1028 1028 1029 1029 /* Send ACK */ … … 1042 1042 case st_syn_received: 1043 1043 case st_established: 1044 log_msg(L VL_DEBUG, "%s: FIN received -> Close-Wait",1044 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: FIN received -> Close-Wait", 1045 1045 conn->name); 1046 1046 tcp_conn_state_set(conn, st_close_wait); 1047 1047 break; 1048 1048 case st_fin_wait_1: 1049 log_msg(L VL_DEBUG, "%s: FIN received -> Closing",1049 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: FIN received -> Closing", 1050 1050 conn->name); 1051 1051 tcp_conn_state_set(conn, st_closing); 1052 1052 break; 1053 1053 case st_fin_wait_2: 1054 log_msg(L VL_DEBUG, "%s: FIN received -> Time-Wait",1054 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: FIN received -> Time-Wait", 1055 1055 conn->name); 1056 1056 tcp_conn_state_set(conn, st_time_wait); … … 1091 1091 static void tcp_conn_seg_process(tcp_conn_t *conn, tcp_segment_t *seg) 1092 1092 { 1093 log_msg(L VL_DEBUG, "tcp_conn_seg_process(%p, %p)", conn, seg);1093 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_seg_process(%p, %p)", conn, seg); 1094 1094 tcp_segment_dump(seg); 1095 1095 … … 1097 1097 /* XXX Permit valid ACKs, URGs and RSTs */ 1098 1098 /* if (!seq_no_segment_acceptable(conn, seg)) { 1099 log_msg(L VL_WARN, "Segment not acceptable, dropping.");1099 log_msg(LOG_DEFAULT, LVL_WARN, "Segment not acceptable, dropping."); 1100 1100 if ((seg->ctrl & CTL_RST) == 0) { 1101 1101 tcp_tqueue_ctrl_seg(conn, CTL_ACK); … … 1131 1131 */ 1132 1132 if (seg->len > 0) { 1133 log_msg(L VL_DEBUG, "Re-insert segment %p. seg->len=%zu",1133 log_msg(LOG_DEFAULT, LVL_DEBUG, "Re-insert segment %p. seg->len=%zu", 1134 1134 seg, (size_t) seg->len); 1135 1135 tcp_iqueue_insert_seg(&conn->incoming, seg); … … 1146 1146 void tcp_conn_segment_arrived(tcp_conn_t *conn, tcp_segment_t *seg) 1147 1147 { 1148 log_msg(L VL_DEBUG, "%c: tcp_conn_segment_arrived(%p)",1148 log_msg(LOG_DEFAULT, LVL_DEBUG, "%c: tcp_conn_segment_arrived(%p)", 1149 1149 conn->name, seg); 1150 1150 … … 1165 1165 tcp_conn_sa_queue(conn, seg); break; 1166 1166 case st_closed: 1167 log_msg(L VL_DEBUG, "state=%d", (int) conn->cstate);1167 log_msg(LOG_DEFAULT, LVL_DEBUG, "state=%d", (int) conn->cstate); 1168 1168 assert(false); 1169 1169 } … … 1178 1178 tcp_conn_t *conn = (tcp_conn_t *) arg; 1179 1179 1180 log_msg(L VL_DEBUG, "tw_timeout_func(%p)", conn);1180 log_msg(LOG_DEFAULT, LVL_DEBUG, "tw_timeout_func(%p)", conn); 1181 1181 1182 1182 fibril_mutex_lock(&conn->lock); 1183 1183 1184 1184 if (conn->cstate == st_closed) { 1185 log_msg(L VL_DEBUG, "Connection already closed.");1185 log_msg(LOG_DEFAULT, LVL_DEBUG, "Connection already closed."); 1186 1186 fibril_mutex_unlock(&conn->lock); 1187 1187 tcp_conn_delref(conn); … … 1189 1189 } 1190 1190 1191 log_msg(L VL_DEBUG, "%s: TW Timeout -> Closed", conn->name);1191 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: TW Timeout -> Closed", conn->name); 1192 1192 tcp_conn_remove(conn); 1193 1193 tcp_conn_state_set(conn, st_closed); … … 1240 1240 void tcp_unexpected_segment(tcp_sockpair_t *sp, tcp_segment_t *seg) 1241 1241 { 1242 log_msg(L VL_DEBUG, "tcp_unexpected_segment(%p, %p)", sp, seg);1242 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_unexpected_segment(%p, %p)", sp, seg); 1243 1243 1244 1244 if ((seg->ctrl & CTL_RST) == 0) … … 1268 1268 tcp_segment_t *rseg; 1269 1269 1270 log_msg(L VL_DEBUG, "tcp_reply_rst(%p, %p)", sp, seg);1270 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_reply_rst(%p, %p)", sp, seg); 1271 1271 1272 1272 rseg = tcp_segment_make_rst(seg); -
uspace/srv/net/tcp/iqueue.c
r920d0fc ra1a101d 67 67 tcp_iqueue_entry_t *qe; 68 68 link_t *link; 69 log_msg(L VL_DEBUG, "tcp_iqueue_insert_seg()");69 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_iqueue_insert_seg()"); 70 70 71 71 iqe = calloc(1, sizeof(tcp_iqueue_entry_t)); 72 72 if (iqe == NULL) { 73 log_msg(L VL_ERROR, "Failed allocating IQE.");73 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed allocating IQE."); 74 74 return; 75 75 } … … 108 108 link_t *link; 109 109 110 log_msg(L VL_DEBUG, "tcp_get_ready_seg()");110 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_get_ready_seg()"); 111 111 112 112 link = list_first(&iqueue->list); 113 113 if (link == NULL) { 114 log_msg(L VL_DEBUG, "iqueue is empty");114 log_msg(LOG_DEFAULT, LVL_DEBUG, "iqueue is empty"); 115 115 return ENOENT; 116 116 } … … 119 119 120 120 while (!seq_no_segment_acceptable(iqueue->conn, iqe->seg)) { 121 log_msg(L VL_DEBUG, "Skipping unacceptable segment (RCV.NXT=%"121 log_msg(LOG_DEFAULT, LVL_DEBUG, "Skipping unacceptable segment (RCV.NXT=%" 122 122 PRIu32 ", RCV.NXT+RCV.WND=%" PRIu32 ", SEG.SEQ=%" PRIu32 123 123 ", SEG.LEN=%" PRIu32 ")", iqueue->conn->rcv_nxt, … … 130 130 link = list_first(&iqueue->list); 131 131 if (link == NULL) { 132 log_msg(L VL_DEBUG, "iqueue is empty");132 log_msg(LOG_DEFAULT, LVL_DEBUG, "iqueue is empty"); 133 133 return ENOENT; 134 134 } … … 139 139 /* Do not return segments that are not ready for processing */ 140 140 if (!seq_no_segment_ready(iqueue->conn, iqe->seg)) { 141 log_msg(L VL_DEBUG, "Next segment not ready: SEG.SEQ=%u, "141 log_msg(LOG_DEFAULT, LVL_DEBUG, "Next segment not ready: SEG.SEQ=%u, " 142 142 "RCV.NXT=%u, SEG.LEN=%u", iqe->seg->seq, 143 143 iqueue->conn->rcv_nxt, iqe->seg->len); … … 145 145 } 146 146 147 log_msg(L VL_DEBUG, "Returning ready segment %p", iqe->seg);147 log_msg(LOG_DEFAULT, LVL_DEBUG, "Returning ready segment %p", iqe->seg); 148 148 list_remove(&iqe->link); 149 149 *seg = iqe->seg; -
uspace/srv/net/tcp/ncsim.c
r920d0fc ra1a101d 74 74 link_t *link; 75 75 76 log_msg(L VL_DEBUG, "tcp_ncsim_bounce_seg()");76 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_ncsim_bounce_seg()"); 77 77 tcp_rqueue_bounce_seg(sp, seg); 78 78 return; … … 80 80 if (0 /*random() % 4 == 3*/) { 81 81 /* Drop segment */ 82 log_msg(L VL_ERROR, "NCSim dropping segment");82 log_msg(LOG_DEFAULT, LVL_ERROR, "NCSim dropping segment"); 83 83 tcp_segment_delete(seg); 84 84 return; … … 87 87 sqe = calloc(1, sizeof(tcp_squeue_entry_t)); 88 88 if (sqe == NULL) { 89 log_msg(L VL_ERROR, "Failed allocating SQE.");89 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed allocating SQE."); 90 90 return; 91 91 } … … 126 126 int rc; 127 127 128 log_msg(L VL_DEBUG, "tcp_ncsim_fibril()");128 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_ncsim_fibril()"); 129 129 130 130 … … 139 139 sqe = list_get_instance(link, tcp_squeue_entry_t, link); 140 140 141 log_msg(L VL_DEBUG, "NCSim - Sleep");141 log_msg(LOG_DEFAULT, LVL_DEBUG, "NCSim - Sleep"); 142 142 rc = fibril_condvar_wait_timeout(&sim_queue_cv, 143 143 &sim_queue_lock, sqe->delay); … … 147 147 fibril_mutex_unlock(&sim_queue_lock); 148 148 149 log_msg(L VL_DEBUG, "NCSim - End Sleep");149 log_msg(LOG_DEFAULT, LVL_DEBUG, "NCSim - End Sleep"); 150 150 tcp_rqueue_bounce_seg(&sqe->sp, sqe->seg); 151 151 free(sqe); … … 161 161 fid_t fid; 162 162 163 log_msg(L VL_DEBUG, "tcp_ncsim_fibril_start()");163 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_ncsim_fibril_start()"); 164 164 165 165 fid = fibril_create(tcp_ncsim_fibril, NULL); 166 166 if (fid == 0) { 167 log_msg(L VL_ERROR, "Failed creating ncsim fibril.");167 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed creating ncsim fibril."); 168 168 return; 169 169 } -
uspace/srv/net/tcp/rqueue.c
r920d0fc ra1a101d 74 74 tcp_sockpair_t rident; 75 75 76 log_msg(L VL_DEBUG, "tcp_rqueue_bounce_seg()");76 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_rqueue_bounce_seg()"); 77 77 78 78 #ifdef BOUNCE_TRANSCODE … … 81 81 82 82 if (tcp_pdu_encode(sp, seg, &pdu) != EOK) { 83 log_msg(L VL_WARN, "Not enough memory. Segment dropped.");83 log_msg(LOG_DEFAULT, LVL_WARN, "Not enough memory. Segment dropped."); 84 84 return; 85 85 } 86 86 87 87 if (tcp_pdu_decode(pdu, &rident, &dseg) != EOK) { 88 log_msg(L VL_WARN, "Not enough memory. Segment dropped.");88 log_msg(LOG_DEFAULT, LVL_WARN, "Not enough memory. Segment dropped."); 89 89 return; 90 90 } … … 112 112 { 113 113 tcp_rqueue_entry_t *rqe; 114 log_msg(L VL_DEBUG, "tcp_rqueue_insert_seg()");114 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_rqueue_insert_seg()"); 115 115 116 116 tcp_segment_dump(seg); … … 118 118 rqe = calloc(1, sizeof(tcp_rqueue_entry_t)); 119 119 if (rqe == NULL) { 120 log_msg(L VL_ERROR, "Failed allocating RQE.");120 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed allocating RQE."); 121 121 return; 122 122 } … … 134 134 tcp_rqueue_entry_t *rqe; 135 135 136 log_msg(L VL_DEBUG, "tcp_rqueue_fibril()");136 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_rqueue_fibril()"); 137 137 138 138 while (true) { … … 152 152 fid_t fid; 153 153 154 log_msg(L VL_DEBUG, "tcp_rqueue_fibril_start()");154 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_rqueue_fibril_start()"); 155 155 156 156 fid = fibril_create(tcp_rqueue_fibril, NULL); 157 157 if (fid == 0) { 158 log_msg(L VL_ERROR, "Failed creating rqueue fibril.");158 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed creating rqueue fibril."); 159 159 return; 160 160 } -
uspace/srv/net/tcp/segment.c
r920d0fc ra1a101d 248 248 void tcp_segment_dump(tcp_segment_t *seg) 249 249 { 250 log_msg(L VL_DEBUG2, "Segment dump:");251 log_msg(L VL_DEBUG2, " - ctrl = %u", (unsigned)seg->ctrl);252 log_msg(L VL_DEBUG2, " - seq = % " PRIu32, seg->seq);253 log_msg(L VL_DEBUG2, " - ack = % " PRIu32, seg->ack);254 log_msg(L VL_DEBUG2, " - len = % " PRIu32, seg->len);255 log_msg(L VL_DEBUG2, " - wnd = % " PRIu32, seg->wnd);256 log_msg(L VL_DEBUG2, " - up = % " PRIu32, seg->up);250 log_msg(LOG_DEFAULT, LVL_DEBUG2, "Segment dump:"); 251 log_msg(LOG_DEFAULT, LVL_DEBUG2, " - ctrl = %u", (unsigned)seg->ctrl); 252 log_msg(LOG_DEFAULT, LVL_DEBUG2, " - seq = % " PRIu32, seg->seq); 253 log_msg(LOG_DEFAULT, LVL_DEBUG2, " - ack = % " PRIu32, seg->ack); 254 log_msg(LOG_DEFAULT, LVL_DEBUG2, " - len = % " PRIu32, seg->len); 255 log_msg(LOG_DEFAULT, LVL_DEBUG2, " - wnd = % " PRIu32, seg->wnd); 256 log_msg(LOG_DEFAULT, LVL_DEBUG2, " - up = % " PRIu32, seg->up); 257 257 } 258 258 -
uspace/srv/net/tcp/sock.c
r920d0fc ra1a101d 91 91 static void tcp_sock_notify_data(socket_core_t *sock_core) 92 92 { 93 log_msg(L VL_DEBUG, "tcp_sock_notify_data(%d)", sock_core->socket_id);93 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_notify_data(%d)", sock_core->socket_id); 94 94 async_exch_t *exch = async_exchange_begin(sock_core->sess); 95 95 async_msg_5(exch, NET_SOCKET_RECEIVED, (sysarg_t)sock_core->socket_id, … … 100 100 static void tcp_sock_notify_aconn(socket_core_t *lsock_core) 101 101 { 102 log_msg(L VL_DEBUG, "tcp_sock_notify_aconn(%d)", lsock_core->socket_id);102 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_notify_aconn(%d)", lsock_core->socket_id); 103 103 async_exch_t *exch = async_exchange_begin(lsock_core->sess); 104 104 async_msg_5(exch, NET_SOCKET_ACCEPTED, (sysarg_t)lsock_core->socket_id, … … 111 111 tcp_sockdata_t *sock; 112 112 113 log_msg(L VL_DEBUG, "tcp_sock_create()");113 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_create()"); 114 114 *rsock = NULL; 115 115 … … 133 133 static void tcp_sock_uncreate(tcp_sockdata_t *sock) 134 134 { 135 log_msg(L VL_DEBUG, "tcp_sock_uncreate()");135 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_uncreate()"); 136 136 free(sock); 137 137 } … … 142 142 int rc; 143 143 144 log_msg(L VL_DEBUG, "tcp_sock_finish_setup()");144 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_finish_setup()"); 145 145 146 146 sock->recv_fibril = fibril_create(tcp_sock_recv_fibril, sock); … … 171 171 ipc_call_t answer; 172 172 173 log_msg(L VL_DEBUG, "tcp_sock_socket()");173 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_socket()"); 174 174 175 175 rc = tcp_sock_create(client, &sock); … … 208 208 tcp_sockdata_t *socket; 209 209 210 log_msg(L VL_DEBUG, "tcp_sock_bind()");211 log_msg(L VL_DEBUG, " - async_data_write_accept");210 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_bind()"); 211 log_msg(LOG_DEFAULT, LVL_DEBUG, " - async_data_write_accept"); 212 212 rc = async_data_write_accept((void **) &addr, false, 0, 0, 0, &addr_len); 213 213 if (rc != EOK) { … … 216 216 } 217 217 218 log_msg(L VL_DEBUG, " - call socket_bind");218 log_msg(LOG_DEFAULT, LVL_DEBUG, " - call socket_bind"); 219 219 rc = socket_bind(&client->sockets, &gsock, SOCKET_GET_SOCKET_ID(call), 220 220 addr, addr_len, TCP_FREE_PORTS_START, TCP_FREE_PORTS_END, … … 225 225 } 226 226 227 log_msg(L VL_DEBUG, " - call socket_cores_find");227 log_msg(LOG_DEFAULT, LVL_DEBUG, " - call socket_cores_find"); 228 228 sock_core = socket_cores_find(&client->sockets, SOCKET_GET_SOCKET_ID(call)); 229 229 if (sock_core != NULL) { … … 233 233 } 234 234 235 log_msg(L VL_DEBUG, " - success");235 log_msg(LOG_DEFAULT, LVL_DEBUG, " - success"); 236 236 async_answer_0(callid, EOK); 237 237 } … … 250 250 int i; 251 251 252 log_msg(L VL_DEBUG, "tcp_sock_listen()");252 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_listen()"); 253 253 254 254 socket_id = SOCKET_GET_SOCKET_ID(call); … … 284 284 } 285 285 286 log_msg(L VL_DEBUG, " - open connections");286 log_msg(LOG_DEFAULT, LVL_DEBUG, " - open connections"); 287 287 288 288 lsocket.addr.ipv4 = TCP_IPV4_ANY; … … 337 337 tcp_sock_t fsocket; 338 338 339 log_msg(L VL_DEBUG, "tcp_sock_connect()");339 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_connect()"); 340 340 341 341 rc = async_data_write_accept((void **) &addr, false, 0, 0, 0, &addr_len); … … 377 377 fibril_mutex_unlock(&socket->lock); 378 378 async_answer_0(callid, rc); 379 log_msg(L VL_DEBUG, "tcp_sock_connect: Failed to "379 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_connect: Failed to " 380 380 "determine local address."); 381 381 return; … … 383 383 384 384 socket->laddr.ipv4 = loc_addr.ipv4; 385 log_msg(L VL_DEBUG, "Local IP address is %x", socket->laddr.ipv4);385 log_msg(LOG_DEFAULT, LVL_DEBUG, "Local IP address is %x", socket->laddr.ipv4); 386 386 } 387 387 … … 431 431 int rc; 432 432 433 log_msg(L VL_DEBUG, "tcp_sock_accept()");433 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_accept()"); 434 434 435 435 socket_id = SOCKET_GET_SOCKET_ID(call); … … 445 445 fibril_mutex_lock(&socket->lock); 446 446 447 log_msg(L VL_DEBUG, " - verify socket->conn");447 log_msg(LOG_DEFAULT, LVL_DEBUG, " - verify socket->conn"); 448 448 if (socket->conn != NULL) { 449 449 fibril_mutex_unlock(&socket->lock); … … 498 498 499 499 asocket->conn = conn; 500 log_msg(L VL_DEBUG, "tcp_sock_accept():create asocket\n");500 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_accept():create asocket\n"); 501 501 502 502 rc = tcp_sock_finish_setup(asocket, &asock_id); … … 510 510 fibril_add_ready(asocket->recv_fibril); 511 511 512 log_msg(L VL_DEBUG, "tcp_sock_accept(): find acore\n");512 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_accept(): find acore\n"); 513 513 514 514 SOCKET_SET_DATA_FRAGMENT_SIZE(answer, TCP_SOCK_FRAGMENT_SIZE); … … 521 521 522 522 /* Push one fragment notification to client's queue */ 523 log_msg(L VL_DEBUG, "tcp_sock_accept(): notify data\n");523 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_accept(): notify data\n"); 524 524 fibril_mutex_unlock(&socket->lock); 525 525 } … … 539 539 int rc; 540 540 541 log_msg(L VL_DEBUG, "tcp_sock_send()");541 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_send()"); 542 542 socket_id = SOCKET_GET_SOCKET_ID(call); 543 543 fragments = SOCKET_GET_DATA_FRAGMENTS(call); … … 611 611 static void tcp_sock_sendto(tcp_client_t *client, ipc_callid_t callid, ipc_call_t call) 612 612 { 613 log_msg(L VL_DEBUG, "tcp_sock_sendto()");613 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_sendto()"); 614 614 async_answer_0(callid, ENOTSUP); 615 615 } … … 629 629 int rc; 630 630 631 log_msg(L VL_DEBUG, "%p: tcp_sock_recv[from]()", client);631 log_msg(LOG_DEFAULT, LVL_DEBUG, "%p: tcp_sock_recv[from]()", client); 632 632 633 633 socket_id = SOCKET_GET_SOCKET_ID(call); … … 651 651 (void)flags; 652 652 653 log_msg(L VL_DEBUG, "tcp_sock_recvfrom(): lock recv_buffer_lock");653 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_recvfrom(): lock recv_buffer_lock"); 654 654 fibril_mutex_lock(&socket->recv_buffer_lock); 655 655 while (socket->recv_buffer_used == 0 && socket->recv_error == TCP_EOK) { 656 log_msg(L VL_DEBUG, "wait for recv_buffer_cv + recv_buffer_used != 0");656 log_msg(LOG_DEFAULT, LVL_DEBUG, "wait for recv_buffer_cv + recv_buffer_used != 0"); 657 657 fibril_condvar_wait(&socket->recv_buffer_cv, 658 658 &socket->recv_buffer_lock); 659 659 } 660 660 661 log_msg(L VL_DEBUG, "Got data in sock recv_buffer");661 log_msg(LOG_DEFAULT, LVL_DEBUG, "Got data in sock recv_buffer"); 662 662 663 663 data_len = socket->recv_buffer_used; … … 679 679 } 680 680 681 log_msg(L VL_DEBUG, "**** recv result -> %d", rc);681 log_msg(LOG_DEFAULT, LVL_DEBUG, "**** recv result -> %d", rc); 682 682 if (rc != EOK) { 683 683 fibril_mutex_unlock(&socket->recv_buffer_lock); … … 694 694 addr.sin_port = host2uint16_t_be(rsock->port); 695 695 696 log_msg(L VL_DEBUG, "addr read receive");696 log_msg(LOG_DEFAULT, LVL_DEBUG, "addr read receive"); 697 697 if (!async_data_read_receive(&rcallid, &addr_length)) { 698 698 fibril_mutex_unlock(&socket->recv_buffer_lock); … … 705 705 addr_length = sizeof(addr); 706 706 707 log_msg(L VL_DEBUG, "addr read finalize");707 log_msg(LOG_DEFAULT, LVL_DEBUG, "addr read finalize"); 708 708 rc = async_data_read_finalize(rcallid, &addr, addr_length); 709 709 if (rc != EOK) { … … 715 715 } 716 716 717 log_msg(L VL_DEBUG, "data read receive");717 log_msg(LOG_DEFAULT, LVL_DEBUG, "data read receive"); 718 718 if (!async_data_read_receive(&rcallid, &length)) { 719 719 fibril_mutex_unlock(&socket->recv_buffer_lock); … … 726 726 length = data_len; 727 727 728 log_msg(L VL_DEBUG, "data read finalize");728 log_msg(LOG_DEFAULT, LVL_DEBUG, "data read finalize"); 729 729 rc = async_data_read_finalize(rcallid, socket->recv_buffer, length); 730 730 731 731 socket->recv_buffer_used -= length; 732 log_msg(L VL_DEBUG, "tcp_sock_recvfrom: %zu left in buffer",732 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_recvfrom: %zu left in buffer", 733 733 socket->recv_buffer_used); 734 734 if (socket->recv_buffer_used > 0) { … … 758 758 int rc; 759 759 760 log_msg(L VL_DEBUG, "tcp_sock_close()");760 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_close()"); 761 761 socket_id = SOCKET_GET_SOCKET_ID(call); 762 762 … … 798 798 static void tcp_sock_getsockopt(tcp_client_t *client, ipc_callid_t callid, ipc_call_t call) 799 799 { 800 log_msg(L VL_DEBUG, "tcp_sock_getsockopt()");800 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_getsockopt()"); 801 801 async_answer_0(callid, ENOTSUP); 802 802 } … … 804 804 static void tcp_sock_setsockopt(tcp_client_t *client, ipc_callid_t callid, ipc_call_t call) 805 805 { 806 log_msg(L VL_DEBUG, "tcp_sock_setsockopt()");806 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_setsockopt()"); 807 807 async_answer_0(callid, ENOTSUP); 808 808 } … … 815 815 tcp_sockdata_t *socket = lconn->socket; 816 816 817 log_msg(L VL_DEBUG, "tcp_sock_cstate_cb()");817 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_cstate_cb()"); 818 818 fibril_mutex_lock(&socket->lock); 819 819 assert(conn == lconn->conn); … … 828 828 list_append(&lconn->ready_list, &socket->ready); 829 829 830 log_msg(L VL_DEBUG, "tcp_sock_cstate_cb(): notify accept");830 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_cstate_cb(): notify accept"); 831 831 832 832 /* Push one accept notification to client's queue */ … … 842 842 tcp_error_t trc; 843 843 844 log_msg(L VL_DEBUG, "tcp_sock_recv_fibril()");844 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_recv_fibril()"); 845 845 846 846 fibril_mutex_lock(&sock->recv_buffer_lock); 847 847 848 848 while (true) { 849 log_msg(L VL_DEBUG, "call tcp_uc_receive()");849 log_msg(LOG_DEFAULT, LVL_DEBUG, "call tcp_uc_receive()"); 850 850 while (sock->recv_buffer_used != 0 && sock->sock_core != NULL) 851 851 fibril_condvar_wait(&sock->recv_buffer_cv, … … 863 863 } 864 864 865 log_msg(L VL_DEBUG, "got data - broadcast recv_buffer_cv");865 log_msg(LOG_DEFAULT, LVL_DEBUG, "got data - broadcast recv_buffer_cv"); 866 866 867 867 sock->recv_buffer_used = data_len; … … 895 895 break; 896 896 897 log_msg(L VL_DEBUG, "tcp_sock_connection: METHOD=%d\n",897 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_connection: METHOD=%d\n", 898 898 (int)IPC_GET_IMETHOD(call)); 899 899 … … 940 940 941 941 /* Clean up */ 942 log_msg(L VL_DEBUG, "tcp_sock_connection: Clean up");942 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_connection: Clean up"); 943 943 async_hangup(client.sess); 944 944 socket_cores_release(NULL, &client.sockets, &gsock, tcp_free_sock_data); -
uspace/srv/net/tcp/tcp.c
r920d0fc ra1a101d 69 69 size_t pdu_raw_size; 70 70 71 log_msg(L VL_DEBUG, "tcp_inet_ev_recv()");71 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_inet_ev_recv()"); 72 72 73 73 pdu_raw = dgram->data; … … 76 76 /* Split into header and payload. */ 77 77 78 log_msg(L VL_DEBUG, "tcp_inet_ev_recv() - split header/payload");78 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_inet_ev_recv() - split header/payload"); 79 79 80 80 tcp_pdu_t *pdu; … … 84 84 85 85 if (pdu_raw_size < sizeof(tcp_header_t)) { 86 log_msg(L VL_WARN, "pdu_raw_size = %zu < sizeof(tcp_header_t) = %zu",86 log_msg(LOG_DEFAULT, LVL_WARN, "pdu_raw_size = %zu < sizeof(tcp_header_t) = %zu", 87 87 pdu_raw_size, sizeof(tcp_header_t)); 88 88 return EINVAL; … … 96 96 97 97 if (pdu_raw_size < hdr_size) { 98 log_msg(L VL_WARN, "pdu_raw_size = %zu < hdr_size = %zu",98 log_msg(LOG_DEFAULT, LVL_WARN, "pdu_raw_size = %zu < hdr_size = %zu", 99 99 pdu_raw_size, hdr_size); 100 100 return EINVAL; … … 102 102 103 103 if (hdr_size < sizeof(tcp_header_t)) { 104 log_msg(L VL_WARN, "hdr_size = %zu < sizeof(tcp_header_t) = %zu",104 log_msg(LOG_DEFAULT, LVL_WARN, "hdr_size = %zu < sizeof(tcp_header_t) = %zu", 105 105 hdr_size, sizeof(tcp_header_t)); return EINVAL; 106 106 } 107 107 108 log_msg(L VL_DEBUG, "pdu_raw_size=%zu, hdr_size=%zu",108 log_msg(LOG_DEFAULT, LVL_DEBUG, "pdu_raw_size=%zu, hdr_size=%zu", 109 109 pdu_raw_size, hdr_size); 110 110 pdu = tcp_pdu_create(pdu_raw, hdr_size, pdu_raw + hdr_size, 111 111 pdu_raw_size - hdr_size); 112 112 if (pdu == NULL) { 113 log_msg(L VL_WARN, "Failed creating PDU. Dropped.");113 log_msg(LOG_DEFAULT, LVL_WARN, "Failed creating PDU. Dropped."); 114 114 return ENOMEM; 115 115 } … … 117 117 pdu->src_addr.ipv4 = dgram->src.ipv4; 118 118 pdu->dest_addr.ipv4 = dgram->dest.ipv4; 119 log_msg(L VL_DEBUG, "src: 0x%08x, dest: 0x%08x",119 log_msg(LOG_DEFAULT, LVL_DEBUG, "src: 0x%08x, dest: 0x%08x", 120 120 pdu->src_addr.ipv4, pdu->dest_addr.ipv4); 121 121 … … 137 137 pdu_raw = malloc(pdu_raw_size); 138 138 if (pdu_raw == NULL) { 139 log_msg(L VL_ERROR, "Failed to transmit PDU. Out of memory.");139 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to transmit PDU. Out of memory."); 140 140 return; 141 141 } … … 153 153 rc = inet_send(&dgram, INET_TTL_MAX, 0); 154 154 if (rc != EOK) 155 log_msg(L VL_ERROR, "Failed to transmit PDU.");155 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to transmit PDU."); 156 156 } 157 157 … … 162 162 tcp_sockpair_t rident; 163 163 164 log_msg(L VL_DEBUG, "tcp_received_pdu()");164 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_received_pdu()"); 165 165 166 166 if (tcp_pdu_decode(pdu, &rident, &dseg) != EOK) { 167 log_msg(L VL_WARN, "Not enough memory. PDU dropped.");167 log_msg(LOG_DEFAULT, LVL_WARN, "Not enough memory. PDU dropped."); 168 168 return; 169 169 } … … 177 177 int rc; 178 178 179 log_msg(L VL_DEBUG, "tcp_init()");179 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_init()"); 180 180 181 181 tcp_rqueue_init(); … … 189 189 rc = inet_init(IP_PROTO_TCP, &tcp_inet_ev_ops); 190 190 if (rc != EOK) { 191 log_msg(L VL_ERROR, "Failed connecting to internet service.");191 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed connecting to internet service."); 192 192 return ENOENT; 193 193 } … … 195 195 rc = tcp_sock_init(); 196 196 if (rc != EOK) { 197 log_msg(L VL_ERROR, "Failed initializing socket service.");197 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing socket service."); 198 198 return ENOENT; 199 199 } -
uspace/srv/net/tcp/tqueue.c
r920d0fc ra1a101d 88 88 tcp_segment_t *seg; 89 89 90 log_msg(L VL_DEBUG, "tcp_tqueue_ctrl_seg(%p, %u)", conn, ctrl);90 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_tqueue_ctrl_seg(%p, %u)", conn, ctrl); 91 91 92 92 seg = tcp_segment_make_ctrl(ctrl); … … 99 99 tcp_tqueue_entry_t *tqe; 100 100 101 log_msg(L VL_DEBUG, "%s: tcp_tqueue_seg(%p, %p)", conn->name, conn,101 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_tqueue_seg(%p, %p)", conn->name, conn, 102 102 seg); 103 103 … … 109 109 rt_seg = tcp_segment_dup(seg); 110 110 if (rt_seg == NULL) { 111 log_msg(L VL_ERROR, "Memory allocation failed.");111 log_msg(LOG_DEFAULT, LVL_ERROR, "Memory allocation failed."); 112 112 /* XXX Handle properly */ 113 113 return; … … 116 116 tqe = calloc(1, sizeof(tcp_tqueue_entry_t)); 117 117 if (tqe == NULL) { 118 log_msg(L VL_ERROR, "Memory allocation failed.");118 log_msg(LOG_DEFAULT, LVL_ERROR, "Memory allocation failed."); 119 119 /* XXX Handle properly */ 120 120 return; … … 165 165 tcp_segment_t *seg; 166 166 167 log_msg(L VL_DEBUG, "%s: tcp_tqueue_new_data()", conn->name);167 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_tqueue_new_data()", conn->name); 168 168 169 169 /* Number of free sequence numbers in send window */ … … 172 172 173 173 xfer_seqlen = min(snd_buf_seqlen, avail_wnd); 174 log_msg(L VL_DEBUG, "%s: snd_buf_seqlen = %zu, SND.WND = %zu, "174 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: snd_buf_seqlen = %zu, SND.WND = %zu, " 175 175 "xfer_seqlen = %zu", conn->name, snd_buf_seqlen, conn->snd_wnd, 176 176 xfer_seqlen); … … 185 185 186 186 if (send_fin) { 187 log_msg(L VL_DEBUG, "%s: Sending out FIN.", conn->name);187 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: Sending out FIN.", conn->name); 188 188 /* We are sending out FIN */ 189 189 ctrl = CTL_FIN; … … 194 194 seg = tcp_segment_make_data(ctrl, conn->snd_buf, data_size); 195 195 if (seg == NULL) { 196 log_msg(L VL_ERROR, "Memory allocation failure.");196 log_msg(LOG_DEFAULT, LVL_ERROR, "Memory allocation failure."); 197 197 return; 198 198 } … … 223 223 link_t *cur, *next; 224 224 225 log_msg(L VL_DEBUG, "%s: tcp_tqueue_ack_received(%p)", conn->name,225 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_tqueue_ack_received(%p)", conn->name, 226 226 conn); 227 227 … … 239 239 240 240 if ((tqe->seg->ctrl & CTL_FIN) != 0) { 241 log_msg(L VL_DEBUG, "Fin has been acked");242 log_msg(L VL_DEBUG, "SND.UNA=%" PRIu32241 log_msg(LOG_DEFAULT, LVL_DEBUG, "Fin has been acked"); 242 log_msg(LOG_DEFAULT, LVL_DEBUG, "SND.UNA=%" PRIu32 243 243 " SEG.SEQ=%" PRIu32 " SEG.LEN=%" PRIu32, 244 244 conn->snd_una, tqe->seg->seq, tqe->seg->len); … … 267 267 void tcp_conn_transmit_segment(tcp_conn_t *conn, tcp_segment_t *seg) 268 268 { 269 log_msg(L VL_DEBUG, "%s: tcp_conn_transmit_segment(%p, %p)",269 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_conn_transmit_segment(%p, %p)", 270 270 conn->name, conn, seg); 271 271 … … 282 282 void tcp_transmit_segment(tcp_sockpair_t *sp, tcp_segment_t *seg) 283 283 { 284 log_msg(L VL_DEBUG, "tcp_transmit_segment(f:(%x,%u),l:(%x,%u), %p)",284 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_transmit_segment(f:(%x,%u),l:(%x,%u), %p)", 285 285 sp->foreign.addr.ipv4, sp->foreign.port, 286 286 sp->local.addr.ipv4, sp->local.port, seg); 287 287 288 log_msg(L VL_DEBUG, "SEG.SEQ=%" PRIu32 ", SEG.WND=%" PRIu32,288 log_msg(LOG_DEFAULT, LVL_DEBUG, "SEG.SEQ=%" PRIu32 ", SEG.WND=%" PRIu32, 289 289 seg->seq, seg->wnd); 290 290 … … 300 300 301 301 if (tcp_pdu_encode(sp, seg, &pdu) != EOK) { 302 log_msg(L VL_WARN, "Not enough memory. Segment dropped.");302 log_msg(LOG_DEFAULT, LVL_WARN, "Not enough memory. Segment dropped."); 303 303 return; 304 304 } … … 315 315 link_t *link; 316 316 317 log_msg(L VL_DEBUG, "### %s: retransmit_timeout_func(%p)", conn->name, conn);317 log_msg(LOG_DEFAULT, LVL_DEBUG, "### %s: retransmit_timeout_func(%p)", conn->name, conn); 318 318 319 319 fibril_mutex_lock(&conn->lock); 320 320 321 321 if (conn->cstate == st_closed) { 322 log_msg(L VL_DEBUG, "Connection already closed.");322 log_msg(LOG_DEFAULT, LVL_DEBUG, "Connection already closed."); 323 323 fibril_mutex_unlock(&conn->lock); 324 324 tcp_conn_delref(conn); … … 328 328 link = list_first(&conn->retransmit.list); 329 329 if (link == NULL) { 330 log_msg(L VL_DEBUG, "Nothing to retransmit");330 log_msg(LOG_DEFAULT, LVL_DEBUG, "Nothing to retransmit"); 331 331 fibril_mutex_unlock(&conn->lock); 332 332 tcp_conn_delref(conn); … … 338 338 rt_seg = tcp_segment_dup(tqe->seg); 339 339 if (rt_seg == NULL) { 340 log_msg(L VL_ERROR, "Memory allocation failed.");340 log_msg(LOG_DEFAULT, LVL_ERROR, "Memory allocation failed."); 341 341 fibril_mutex_unlock(&conn->lock); 342 342 tcp_conn_delref(conn); … … 345 345 } 346 346 347 log_msg(L VL_DEBUG, "### %s: retransmitting segment", conn->name);347 log_msg(LOG_DEFAULT, LVL_DEBUG, "### %s: retransmitting segment", conn->name); 348 348 tcp_conn_transmit_segment(tqe->conn, rt_seg); 349 349 … … 358 358 static void tcp_tqueue_timer_set(tcp_conn_t *conn) 359 359 { 360 log_msg(L VL_DEBUG, "### %s: tcp_tqueue_timer_set()", conn->name);360 log_msg(LOG_DEFAULT, LVL_DEBUG, "### %s: tcp_tqueue_timer_set()", conn->name); 361 361 362 362 /* Clear first to make sure we update refcnt correctly */ … … 371 371 static void tcp_tqueue_timer_clear(tcp_conn_t *conn) 372 372 { 373 log_msg(L VL_DEBUG, "### %s: tcp_tqueue_timer_clear()", conn->name);373 log_msg(LOG_DEFAULT, LVL_DEBUG, "### %s: tcp_tqueue_timer_clear()", conn->name); 374 374 375 375 if (fibril_timer_clear(conn->retransmit.timer) == fts_active) -
uspace/srv/net/tcp/ucall.c
r920d0fc ra1a101d 70 70 tcp_conn_t *nconn; 71 71 72 log_msg(L VL_DEBUG, "tcp_uc_open(%p, %p, %s, %s, %p)",72 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_open(%p, %p, %s, %s, %p)", 73 73 lsock, fsock, acpass == ap_active ? "active" : "passive", 74 74 oflags == tcp_open_nonblock ? "nonblock" : "none", conn); … … 88 88 89 89 /* Wait for connection to be established or reset */ 90 log_msg(L VL_DEBUG, "tcp_uc_open: Wait for connection.");90 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_open: Wait for connection."); 91 91 fibril_mutex_lock(&nconn->lock); 92 92 while (nconn->cstate == st_listen || … … 97 97 98 98 if (nconn->cstate != st_established) { 99 log_msg(L VL_DEBUG, "tcp_uc_open: Connection was reset.");99 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_open: Connection was reset."); 100 100 assert(nconn->cstate == st_closed); 101 101 fibril_mutex_unlock(&nconn->lock); … … 104 104 105 105 fibril_mutex_unlock(&nconn->lock); 106 log_msg(L VL_DEBUG, "tcp_uc_open: Connection was established.");106 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_open: Connection was established."); 107 107 108 108 *conn = nconn; 109 log_msg(L VL_DEBUG, "tcp_uc_open -> %p", nconn);109 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_open -> %p", nconn); 110 110 return TCP_EOK; 111 111 } … … 118 118 size_t xfer_size; 119 119 120 log_msg(L VL_DEBUG, "%s: tcp_uc_send()", conn->name);120 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_uc_send()", conn->name); 121 121 122 122 fibril_mutex_lock(&conn->lock); … … 141 141 buf_free = conn->snd_buf_size - conn->snd_buf_used; 142 142 while (buf_free == 0 && !conn->reset) { 143 log_msg(L VL_DEBUG, "%s: buf_free == 0, waiting.",143 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: buf_free == 0, waiting.", 144 144 conn->name); 145 145 fibril_condvar_wait(&conn->snd_buf_cv, &conn->lock); … … 175 175 size_t xfer_size; 176 176 177 log_msg(L VL_DEBUG, "%s: tcp_uc_receive()", conn->name);177 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_uc_receive()", conn->name); 178 178 179 179 fibril_mutex_lock(&conn->lock); … … 186 186 /* Wait for data to become available */ 187 187 while (conn->rcv_buf_used == 0 && !conn->rcv_buf_fin && !conn->reset) { 188 log_msg(L VL_DEBUG, "tcp_uc_receive() - wait for data");188 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_receive() - wait for data"); 189 189 fibril_condvar_wait(&conn->rcv_buf_cv, &conn->lock); 190 190 } … … 223 223 tcp_tqueue_ctrl_seg(conn, CTL_ACK); 224 224 225 log_msg(L VL_DEBUG, "%s: tcp_uc_receive() - returning %zu bytes",225 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_uc_receive() - returning %zu bytes", 226 226 conn->name, xfer_size); 227 227 … … 234 234 tcp_error_t tcp_uc_close(tcp_conn_t *conn) 235 235 { 236 log_msg(L VL_DEBUG, "%s: tcp_uc_close()", conn->name);236 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_uc_close()", conn->name); 237 237 238 238 fibril_mutex_lock(&conn->lock); … … 258 258 void tcp_uc_abort(tcp_conn_t *conn) 259 259 { 260 log_msg(L VL_DEBUG, "tcp_uc_abort()");260 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_abort()"); 261 261 } 262 262 … … 264 264 void tcp_uc_status(tcp_conn_t *conn, tcp_conn_status_t *cstatus) 265 265 { 266 log_msg(L VL_DEBUG, "tcp_uc_status()");266 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_status()"); 267 267 cstatus->cstate = conn->cstate; 268 268 } … … 276 276 void tcp_uc_delete(tcp_conn_t *conn) 277 277 { 278 log_msg(L VL_DEBUG, "tcp_uc_delete()");278 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_delete()"); 279 279 tcp_conn_delete(conn); 280 280 } … … 282 282 void tcp_uc_set_cstate_cb(tcp_conn_t *conn, tcp_cstate_cb_t cb, void *arg) 283 283 { 284 log_msg(L VL_DEBUG, "tcp_uc_set_ctate_cb(%p, %p, %p)",284 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_set_ctate_cb(%p, %p, %p)", 285 285 conn, cb, arg); 286 286 … … 298 298 tcp_conn_t *conn; 299 299 300 log_msg(L VL_DEBUG, "tcp_as_segment_arrived(f:(%x,%u), l:(%x,%u))",300 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_as_segment_arrived(f:(%x,%u), l:(%x,%u))", 301 301 sp->foreign.addr.ipv4, sp->foreign.port, 302 302 sp->local.addr.ipv4, sp->local.port); … … 304 304 conn = tcp_conn_find_ref(sp); 305 305 if (conn == NULL) { 306 log_msg(L VL_WARN, "No connection found.");306 log_msg(LOG_DEFAULT, LVL_WARN, "No connection found."); 307 307 tcp_unexpected_segment(sp, seg); 308 308 return; … … 312 312 313 313 if (conn->cstate == st_closed) { 314 log_msg(L VL_WARN, "Connection is closed.");314 log_msg(LOG_DEFAULT, LVL_WARN, "Connection is closed."); 315 315 tcp_unexpected_segment(sp, seg); 316 316 fibril_mutex_unlock(&conn->lock); … … 339 339 void tcp_to_user(void) 340 340 { 341 log_msg(L VL_DEBUG, "tcp_to_user()");341 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_to_user()"); 342 342 } 343 343 -
uspace/srv/net/udp/assoc.c
r920d0fc ra1a101d 104 104 static void udp_assoc_free(udp_assoc_t *assoc) 105 105 { 106 log_msg(L VL_DEBUG, "%s: udp_assoc_free(%p)", assoc->name, assoc);106 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: udp_assoc_free(%p)", assoc->name, assoc); 107 107 108 108 while (!list_empty(&assoc->rcv_queue)) { … … 127 127 void udp_assoc_addref(udp_assoc_t *assoc) 128 128 { 129 log_msg(L VL_DEBUG, "%s: upd_assoc_addref(%p)", assoc->name, assoc);129 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: upd_assoc_addref(%p)", assoc->name, assoc); 130 130 atomic_inc(&assoc->refcnt); 131 131 } … … 139 139 void udp_assoc_delref(udp_assoc_t *assoc) 140 140 { 141 log_msg(L VL_DEBUG, "%s: udp_assoc_delref(%p)", assoc->name, assoc);141 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: udp_assoc_delref(%p)", assoc->name, assoc); 142 142 143 143 if (atomic_predec(&assoc->refcnt) == 0) … … 154 154 void udp_assoc_delete(udp_assoc_t *assoc) 155 155 { 156 log_msg(L VL_DEBUG, "%s: udp_assoc_delete(%p)", assoc->name, assoc);156 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: udp_assoc_delete(%p)", assoc->name, assoc); 157 157 158 158 assert(assoc->deleted == false); … … 192 192 void udp_assoc_set_foreign(udp_assoc_t *assoc, udp_sock_t *fsock) 193 193 { 194 log_msg(L VL_DEBUG, "udp_assoc_set_foreign(%p, %p)", assoc, fsock);194 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_assoc_set_foreign(%p, %p)", assoc, fsock); 195 195 fibril_mutex_lock(&assoc->lock); 196 196 assoc->ident.foreign = *fsock; … … 205 205 void udp_assoc_set_local(udp_assoc_t *assoc, udp_sock_t *lsock) 206 206 { 207 log_msg(L VL_DEBUG, "udp_assoc_set_local(%p, %p)", assoc, lsock);207 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_assoc_set_local(%p, %p)", assoc, lsock); 208 208 fibril_mutex_lock(&assoc->lock); 209 209 assoc->ident.local = *lsock; … … 228 228 int rc; 229 229 230 log_msg(L VL_DEBUG, "udp_assoc_send(%p, %p, %p)",230 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_assoc_send(%p, %p, %p)", 231 231 assoc, fsock, msg); 232 232 … … 261 261 udp_rcv_queue_entry_t *rqe; 262 262 263 log_msg(L VL_DEBUG, "udp_assoc_recv()");263 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_assoc_recv()"); 264 264 265 265 fibril_mutex_lock(&assoc->lock); 266 266 while (list_empty(&assoc->rcv_queue)) { 267 log_msg(L VL_DEBUG, "udp_assoc_recv() - waiting");267 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_assoc_recv() - waiting"); 268 268 fibril_condvar_wait(&assoc->rcv_queue_cv, &assoc->lock); 269 269 } 270 270 271 log_msg(L VL_DEBUG, "udp_assoc_recv() - got a message");271 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_assoc_recv() - got a message"); 272 272 link = list_first(&assoc->rcv_queue); 273 273 rqe = list_get_instance(link, udp_rcv_queue_entry_t, link); … … 291 291 int rc; 292 292 293 log_msg(L VL_DEBUG, "udp_assoc_received(%p, %p)", rsp, msg);293 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_assoc_received(%p, %p)", rsp, msg); 294 294 295 295 assoc = udp_assoc_find_ref(rsp); 296 296 if (assoc == NULL) { 297 log_msg(L VL_DEBUG, "No association found. Message dropped.");297 log_msg(LOG_DEFAULT, LVL_DEBUG, "No association found. Message dropped."); 298 298 /* XXX Generate ICMP error. */ 299 299 /* XXX Might propagate error directly by error return. */ … … 303 303 rc = udp_assoc_queue_msg(assoc, rsp, msg); 304 304 if (rc != EOK) { 305 log_msg(L VL_DEBUG, "Out of memory. Message dropped.");305 log_msg(LOG_DEFAULT, LVL_DEBUG, "Out of memory. Message dropped."); 306 306 /* XXX Generate ICMP error? */ 307 307 } … … 313 313 udp_rcv_queue_entry_t *rqe; 314 314 315 log_msg(L VL_DEBUG, "udp_assoc_queue_msg(%p, %p, %p)",315 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_assoc_queue_msg(%p, %p, %p)", 316 316 assoc, sp, msg); 317 317 … … 336 336 static bool udp_socket_match(udp_sock_t *sock, udp_sock_t *patt) 337 337 { 338 log_msg(L VL_DEBUG, "udp_socket_match(sock=(%x,%u), pat=(%x,%u))",338 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_socket_match(sock=(%x,%u), pat=(%x,%u))", 339 339 sock->addr.ipv4, sock->port, patt->addr.ipv4, patt->port); 340 340 … … 347 347 return false; 348 348 349 log_msg(L VL_DEBUG, " -> match");349 log_msg(LOG_DEFAULT, LVL_DEBUG, " -> match"); 350 350 351 351 return true; … … 355 355 static bool udp_sockpair_match(udp_sockpair_t *sp, udp_sockpair_t *pattern) 356 356 { 357 log_msg(L VL_DEBUG, "udp_sockpair_match(%p, %p)", sp, pattern);357 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sockpair_match(%p, %p)", sp, pattern); 358 358 359 359 if (!udp_socket_match(&sp->local, &pattern->local)) … … 363 363 return false; 364 364 365 log_msg(L VL_DEBUG, "Socket pair matched.");365 log_msg(LOG_DEFAULT, LVL_DEBUG, "Socket pair matched."); 366 366 return true; 367 367 } … … 379 379 static udp_assoc_t *udp_assoc_find_ref(udp_sockpair_t *sp) 380 380 { 381 log_msg(L VL_DEBUG, "udp_assoc_find_ref(%p)", sp);381 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_assoc_find_ref(%p)", sp); 382 382 383 383 fibril_mutex_lock(&assoc_list_lock); … … 386 386 udp_assoc_t *assoc = list_get_instance(link, udp_assoc_t, link); 387 387 udp_sockpair_t *asp = &assoc->ident; 388 log_msg(L VL_DEBUG, "compare with assoc (f:(%x,%u), l:(%x,%u))",388 log_msg(LOG_DEFAULT, LVL_DEBUG, "compare with assoc (f:(%x,%u), l:(%x,%u))", 389 389 asp->foreign.addr.ipv4, asp->foreign.port, 390 390 asp->local.addr.ipv4, asp->local.port); … … 395 395 396 396 if (udp_sockpair_match(sp, asp)) { 397 log_msg(L VL_DEBUG, "Returning assoc %p", assoc);397 log_msg(LOG_DEFAULT, LVL_DEBUG, "Returning assoc %p", assoc); 398 398 udp_assoc_addref(assoc); 399 399 fibril_mutex_unlock(&assoc_list_lock); -
uspace/srv/net/udp/sock.c
r920d0fc ra1a101d 88 88 static void udp_sock_notify_data(socket_core_t *sock_core) 89 89 { 90 log_msg(L VL_DEBUG, "udp_sock_notify_data(%d)", sock_core->socket_id);90 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_notify_data(%d)", sock_core->socket_id); 91 91 async_exch_t *exch = async_exchange_begin(sock_core->sess); 92 92 async_msg_5(exch, NET_SOCKET_RECEIVED, (sysarg_t)sock_core->socket_id, … … 103 103 ipc_call_t answer; 104 104 105 log_msg(L VL_DEBUG, "udp_sock_socket()");105 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_socket()"); 106 106 sock = calloc(sizeof(udp_sockdata_t), 1); 107 107 if (sock == NULL) { … … 167 167 udp_error_t urc; 168 168 169 log_msg(L VL_DEBUG, "udp_sock_bind()");170 log_msg(L VL_DEBUG, " - async_data_write_accept");169 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_bind()"); 170 log_msg(LOG_DEFAULT, LVL_DEBUG, " - async_data_write_accept"); 171 171 172 172 addr = NULL; … … 178 178 } 179 179 180 log_msg(L VL_DEBUG, " - call socket_bind");180 log_msg(LOG_DEFAULT, LVL_DEBUG, " - call socket_bind"); 181 181 rc = socket_bind(&client->sockets, &gsock, SOCKET_GET_SOCKET_ID(call), 182 182 addr, addr_size, UDP_FREE_PORTS_START, UDP_FREE_PORTS_END, … … 192 192 } 193 193 194 log_msg(L VL_DEBUG, " - call socket_cores_find");194 log_msg(LOG_DEFAULT, LVL_DEBUG, " - call socket_cores_find"); 195 195 sock_core = socket_cores_find(&client->sockets, SOCKET_GET_SOCKET_ID(call)); 196 196 if (sock_core == NULL) { … … 222 222 } 223 223 224 log_msg(L VL_DEBUG, " - success");224 log_msg(LOG_DEFAULT, LVL_DEBUG, " - success"); 225 225 async_answer_0(callid, rc); 226 226 out: … … 231 231 static void udp_sock_listen(udp_client_t *client, ipc_callid_t callid, ipc_call_t call) 232 232 { 233 log_msg(L VL_DEBUG, "udp_sock_listen()");233 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_listen()"); 234 234 async_answer_0(callid, ENOTSUP); 235 235 } … … 237 237 static void udp_sock_connect(udp_client_t *client, ipc_callid_t callid, ipc_call_t call) 238 238 { 239 log_msg(L VL_DEBUG, "udp_sock_connect()");239 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_connect()"); 240 240 async_answer_0(callid, ENOTSUP); 241 241 } … … 243 243 static void udp_sock_accept(udp_client_t *client, ipc_callid_t callid, ipc_call_t call) 244 244 { 245 log_msg(L VL_DEBUG, "udp_sock_accept()");245 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_accept()"); 246 246 async_answer_0(callid, ENOTSUP); 247 247 } … … 264 264 int rc; 265 265 266 log_msg(L VL_DEBUG, "udp_sock_send()");266 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_send()"); 267 267 268 268 addr = NULL; … … 323 323 fibril_mutex_unlock(&socket->lock); 324 324 async_answer_0(callid, rc); 325 log_msg(L VL_DEBUG, "udp_sock_sendto: Failed to "325 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_sendto: Failed to " 326 326 "determine local address."); 327 327 return; … … 329 329 330 330 socket->assoc->ident.local.addr.ipv4 = loc_addr.ipv4; 331 log_msg(L VL_DEBUG, "Local IP address is %x",331 log_msg(LOG_DEFAULT, LVL_DEBUG, "Local IP address is %x", 332 332 socket->assoc->ident.local.addr.ipv4); 333 333 } … … 405 405 int rc; 406 406 407 log_msg(L VL_DEBUG, "%p: udp_sock_recv[from]()", client);407 log_msg(LOG_DEFAULT, LVL_DEBUG, "%p: udp_sock_recv[from]()", client); 408 408 409 409 socket_id = SOCKET_GET_SOCKET_ID(call); … … 427 427 (void)flags; 428 428 429 log_msg(L VL_DEBUG, "udp_sock_recvfrom(): lock recv_buffer lock");429 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_recvfrom(): lock recv_buffer lock"); 430 430 fibril_mutex_lock(&socket->recv_buffer_lock); 431 431 while (socket->recv_buffer_used == 0 && socket->recv_error == UDP_EOK) { 432 log_msg(L VL_DEBUG, "udp_sock_recvfrom(): wait for cv");432 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_recvfrom(): wait for cv"); 433 433 fibril_condvar_wait(&socket->recv_buffer_cv, 434 434 &socket->recv_buffer_lock); 435 435 } 436 436 437 log_msg(L VL_DEBUG, "Got data in sock recv_buffer");437 log_msg(LOG_DEFAULT, LVL_DEBUG, "Got data in sock recv_buffer"); 438 438 439 439 rsock = socket->recv_fsock; … … 441 441 urc = socket->recv_error; 442 442 443 log_msg(L VL_DEBUG, "**** recv data_len=%zu", data_len);443 log_msg(LOG_DEFAULT, LVL_DEBUG, "**** recv data_len=%zu", data_len); 444 444 445 445 switch (urc) { … … 458 458 } 459 459 460 log_msg(L VL_DEBUG, "**** udp_uc_receive -> %d", rc);460 log_msg(LOG_DEFAULT, LVL_DEBUG, "**** udp_uc_receive -> %d", rc); 461 461 if (rc != EOK) { 462 462 fibril_mutex_unlock(&socket->recv_buffer_lock); … … 472 472 addr.sin_port = host2uint16_t_be(rsock.port); 473 473 474 log_msg(L VL_DEBUG, "addr read receive");474 log_msg(LOG_DEFAULT, LVL_DEBUG, "addr read receive"); 475 475 if (!async_data_read_receive(&rcallid, &addr_length)) { 476 476 fibril_mutex_unlock(&socket->recv_buffer_lock); … … 483 483 addr_length = sizeof(addr); 484 484 485 log_msg(L VL_DEBUG, "addr read finalize");485 log_msg(LOG_DEFAULT, LVL_DEBUG, "addr read finalize"); 486 486 rc = async_data_read_finalize(rcallid, &addr, addr_length); 487 487 if (rc != EOK) { … … 493 493 } 494 494 495 log_msg(L VL_DEBUG, "data read receive");495 log_msg(LOG_DEFAULT, LVL_DEBUG, "data read receive"); 496 496 if (!async_data_read_receive(&rcallid, &length)) { 497 497 fibril_mutex_unlock(&socket->recv_buffer_lock); … … 504 504 length = data_len; 505 505 506 log_msg(L VL_DEBUG, "data read finalize");506 log_msg(LOG_DEFAULT, LVL_DEBUG, "data read finalize"); 507 507 rc = async_data_read_finalize(rcallid, socket->recv_buffer, length); 508 508 … … 510 510 rc = EOVERFLOW; 511 511 512 log_msg(L VL_DEBUG, "read_data_length <- %zu", length);512 log_msg(LOG_DEFAULT, LVL_DEBUG, "read_data_length <- %zu", length); 513 513 IPC_SET_ARG2(answer, 0); 514 514 SOCKET_SET_READ_DATA_LENGTH(answer, length); … … 531 531 int rc; 532 532 533 log_msg(L VL_DEBUG, "tcp_sock_close()");533 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_sock_close()"); 534 534 socket_id = SOCKET_GET_SOCKET_ID(call); 535 535 … … 557 557 static void udp_sock_getsockopt(udp_client_t *client, ipc_callid_t callid, ipc_call_t call) 558 558 { 559 log_msg(L VL_DEBUG, "udp_sock_getsockopt()");559 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_getsockopt()"); 560 560 async_answer_0(callid, ENOTSUP); 561 561 } … … 563 563 static void udp_sock_setsockopt(udp_client_t *client, ipc_callid_t callid, ipc_call_t call) 564 564 { 565 log_msg(L VL_DEBUG, "udp_sock_setsockopt()");565 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_setsockopt()"); 566 566 async_answer_0(callid, ENOTSUP); 567 567 } … … 574 574 size_t rcvd; 575 575 576 log_msg(L VL_DEBUG, "udp_sock_recv_fibril()");576 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_recv_fibril()"); 577 577 578 578 while (true) { 579 log_msg(L VL_DEBUG, "[] wait for rcv buffer empty()");579 log_msg(LOG_DEFAULT, LVL_DEBUG, "[] wait for rcv buffer empty()"); 580 580 fibril_mutex_lock(&sock->recv_buffer_lock); 581 581 while (sock->recv_buffer_used != 0) { … … 584 584 } 585 585 586 log_msg(L VL_DEBUG, "[] call udp_uc_receive()");586 log_msg(LOG_DEFAULT, LVL_DEBUG, "[] call udp_uc_receive()"); 587 587 urc = udp_uc_receive(sock->assoc, sock->recv_buffer, 588 588 UDP_FRAGMENT_SIZE, &rcvd, &xflags, &sock->recv_fsock); … … 597 597 } 598 598 599 log_msg(L VL_DEBUG, "[] got data - broadcast recv_buffer_cv");599 log_msg(LOG_DEFAULT, LVL_DEBUG, "[] got data - broadcast recv_buffer_cv"); 600 600 601 601 sock->recv_buffer_used = rcvd; … … 622 622 623 623 while (true) { 624 log_msg(L VL_DEBUG, "udp_sock_connection: wait");624 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_connection: wait"); 625 625 callid = async_get_call(&call); 626 626 if (!IPC_GET_IMETHOD(call)) 627 627 break; 628 628 629 log_msg(L VL_DEBUG, "udp_sock_connection: METHOD=%d",629 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_connection: METHOD=%d", 630 630 (int)IPC_GET_IMETHOD(call)); 631 631 … … 670 670 671 671 /* Clean up */ 672 log_msg(L VL_DEBUG, "udp_sock_connection: Clean up");672 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_connection: Clean up"); 673 673 async_hangup(client.sess); 674 674 socket_cores_release(NULL, &client.sockets, &gsock, udp_free_sock_data); -
uspace/srv/net/udp/ucall.c
r920d0fc ra1a101d 47 47 udp_assoc_t *nassoc; 48 48 49 log_msg(L VL_DEBUG, "udp_uc_create()");49 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_uc_create()"); 50 50 nassoc = udp_assoc_new(NULL, NULL); 51 51 if (nassoc == NULL) … … 59 59 udp_error_t udp_uc_set_foreign(udp_assoc_t *assoc, udp_sock_t *fsock) 60 60 { 61 log_msg(L VL_DEBUG, "udp_uc_set_foreign(%p, %p)", assoc, fsock);61 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_uc_set_foreign(%p, %p)", assoc, fsock); 62 62 63 63 udp_assoc_set_foreign(assoc, fsock); … … 67 67 udp_error_t udp_uc_set_local(udp_assoc_t *assoc, udp_sock_t *lsock) 68 68 { 69 log_msg(L VL_DEBUG, "udp_uc_set_local(%p, %p)", assoc, lsock);69 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_uc_set_local(%p, %p)", assoc, lsock); 70 70 71 71 udp_assoc_set_local(assoc, lsock); … … 79 79 udp_msg_t msg; 80 80 81 log_msg(L VL_DEBUG, "%s: udp_uc_send()", assoc->name);81 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: udp_uc_send()", assoc->name); 82 82 83 83 msg.data = data; … … 103 103 int rc; 104 104 105 log_msg(L VL_DEBUG, "%s: udp_uc_receive()", assoc->name);105 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: udp_uc_receive()", assoc->name); 106 106 rc = udp_assoc_recv(assoc, &msg, fsock); 107 107 switch (rc) { … … 118 118 void udp_uc_status(udp_assoc_t *assoc, udp_assoc_status_t *astatus) 119 119 { 120 log_msg(L VL_DEBUG, "udp_uc_status()");120 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_uc_status()"); 121 121 // cstatus->cstate = conn->cstate; 122 122 } … … 124 124 void udp_uc_destroy(udp_assoc_t *assoc) 125 125 { 126 log_msg(L VL_DEBUG, "udp_uc_destroy()");126 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_uc_destroy()"); 127 127 udp_assoc_remove(assoc); 128 128 udp_assoc_delete(assoc); -
uspace/srv/net/udp/udp.c
r920d0fc ra1a101d 50 50 int rc; 51 51 52 log_msg(L VL_DEBUG, "udp_init()");52 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_init()"); 53 53 54 54 rc = udp_inet_init(); 55 55 if (rc != EOK) { 56 log_msg(L VL_ERROR, "Failed connecting to internet service.");56 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed connecting to internet service."); 57 57 return ENOENT; 58 58 } … … 60 60 rc = udp_sock_init(); 61 61 if (rc != EOK) { 62 log_msg(L VL_ERROR, "Failed initializing socket service.");62 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing socket service."); 63 63 return ENOENT; 64 64 } -
uspace/srv/net/udp/udp_inet.c
r920d0fc ra1a101d 61 61 udp_pdu_t *pdu; 62 62 63 log_msg(L VL_DEBUG, "udp_inet_ev_recv()");63 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_inet_ev_recv()"); 64 64 65 65 pdu = udp_pdu_new(); … … 69 69 pdu->src.ipv4 = dgram->src.ipv4; 70 70 pdu->dest.ipv4 = dgram->dest.ipv4; 71 log_msg(L VL_DEBUG, "src: 0x%08x, dest: 0x%08x",71 log_msg(LOG_DEFAULT, LVL_DEBUG, "src: 0x%08x, dest: 0x%08x", 72 72 pdu->src.ipv4, pdu->dest.ipv4); 73 73 … … 84 84 inet_dgram_t dgram; 85 85 86 log_msg(L VL_DEBUG, "udp_transmit_pdu()");86 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_transmit_pdu()"); 87 87 88 88 dgram.src.ipv4 = pdu->src.ipv4; … … 94 94 rc = inet_send(&dgram, INET_TTL_MAX, 0); 95 95 if (rc != EOK) 96 log_msg(L VL_ERROR, "Failed to transmit PDU.");96 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to transmit PDU."); 97 97 98 98 return rc; … … 105 105 udp_sockpair_t rident; 106 106 107 log_msg(L VL_DEBUG, "udp_received_pdu()");107 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_received_pdu()"); 108 108 109 109 if (udp_pdu_decode(pdu, &rident, &dmsg) != EOK) { 110 log_msg(L VL_WARN, "Not enough memory. PDU dropped.");110 log_msg(LOG_DEFAULT, LVL_WARN, "Not enough memory. PDU dropped."); 111 111 return; 112 112 } … … 124 124 int rc; 125 125 126 log_msg(L VL_DEBUG, "udp_inet_init()");126 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_inet_init()"); 127 127 128 128 rc = inet_init(IP_PROTO_UDP, &udp_inet_ev_ops); 129 129 if (rc != EOK) { 130 log_msg(L VL_ERROR, "Failed connecting to internet service.");130 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed connecting to internet service."); 131 131 return ENOENT; 132 132 }
Note:
See TracChangeset
for help on using the changeset viewer.